styles.css 242 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145114611471148114911501151115211531154115511561157115811591160116111621163116411651166116711681169117011711172117311741175117611771178117911801181118211831184118511861187118811891190119111921193119411951196119711981199120012011202120312041205120612071208120912101211121212131214121512161217121812191220122112221223122412251226122712281229123012311232123312341235123612371238123912401241124212431244124512461247124812491250125112521253125412551256125712581259126012611262126312641265126612671268126912701271127212731274127512761277127812791280128112821283128412851286128712881289129012911292129312941295129612971298129913001301130213031304130513061307130813091310131113121313131413151316131713181319132013211322132313241325132613271328132913301331133213331334133513361337133813391340134113421343134413451346134713481349135013511352135313541355135613571358135913601361136213631364136513661367136813691370137113721373137413751376137713781379138013811382138313841385138613871388138913901391139213931394139513961397139813991400140114021403140414051406140714081409141014111412141314141415141614171418141914201421142214231424142514261427142814291430143114321433143414351436143714381439144014411442144314441445144614471448144914501451145214531454145514561457145814591460146114621463146414651466146714681469147014711472147314741475147614771478147914801481148214831484148514861487148814891490149114921493149414951496149714981499150015011502150315041505150615071508150915101511151215131514151515161517151815191520152115221523152415251526152715281529153015311532153315341535153615371538153915401541154215431544154515461547154815491550155115521553155415551556155715581559156015611562156315641565156615671568156915701571157215731574157515761577157815791580158115821583158415851586158715881589159015911592159315941595159615971598159916001601160216031604160516061607160816091610161116121613161416151616161716181619162016211622162316241625162616271628162916301631163216331634163516361637163816391640164116421643164416451646164716481649165016511652165316541655165616571658165916601661166216631664166516661667166816691670167116721673167416751676167716781679168016811682168316841685168616871688168916901691169216931694169516961697169816991700170117021703170417051706170717081709171017111712171317141715171617171718171917201721172217231724172517261727172817291730173117321733173417351736173717381739174017411742174317441745174617471748174917501751175217531754175517561757175817591760176117621763176417651766176717681769177017711772177317741775177617771778177917801781178217831784178517861787178817891790179117921793179417951796179717981799180018011802180318041805180618071808180918101811181218131814181518161817181818191820182118221823182418251826182718281829183018311832183318341835183618371838183918401841184218431844184518461847184818491850185118521853185418551856185718581859186018611862186318641865186618671868186918701871187218731874187518761877187818791880188118821883188418851886188718881889189018911892189318941895189618971898189919001901190219031904190519061907190819091910191119121913191419151916191719181919192019211922192319241925192619271928192919301931193219331934193519361937193819391940194119421943194419451946194719481949195019511952195319541955195619571958195919601961196219631964196519661967196819691970197119721973197419751976197719781979198019811982198319841985198619871988198919901991199219931994199519961997199819992000200120022003200420052006200720082009201020112012201320142015201620172018201920202021202220232024202520262027202820292030203120322033203420352036203720382039204020412042204320442045204620472048204920502051205220532054205520562057205820592060206120622063206420652066206720682069207020712072207320742075207620772078207920802081208220832084208520862087208820892090209120922093209420952096209720982099210021012102210321042105210621072108210921102111211221132114211521162117211821192120212121222123212421252126212721282129213021312132213321342135213621372138213921402141214221432144214521462147214821492150215121522153215421552156215721582159216021612162216321642165216621672168216921702171217221732174217521762177217821792180218121822183218421852186218721882189219021912192219321942195219621972198219922002201220222032204220522062207220822092210221122122213221422152216221722182219222022212222222322242225222622272228222922302231223222332234223522362237223822392240224122422243224422452246224722482249225022512252225322542255225622572258225922602261226222632264226522662267226822692270227122722273227422752276227722782279228022812282228322842285228622872288228922902291229222932294229522962297229822992300230123022303230423052306230723082309231023112312231323142315231623172318231923202321232223232324232523262327232823292330233123322333233423352336233723382339234023412342234323442345234623472348234923502351235223532354235523562357235823592360236123622363236423652366236723682369237023712372237323742375237623772378237923802381238223832384238523862387238823892390239123922393239423952396239723982399240024012402240324042405240624072408240924102411241224132414241524162417241824192420242124222423242424252426242724282429243024312432243324342435243624372438243924402441244224432444244524462447244824492450245124522453245424552456245724582459246024612462246324642465246624672468246924702471247224732474247524762477247824792480248124822483248424852486248724882489249024912492249324942495249624972498249925002501250225032504250525062507250825092510251125122513251425152516251725182519252025212522252325242525252625272528252925302531253225332534253525362537253825392540254125422543254425452546254725482549255025512552255325542555255625572558255925602561256225632564256525662567256825692570257125722573257425752576257725782579258025812582258325842585258625872588258925902591259225932594259525962597259825992600260126022603260426052606260726082609261026112612261326142615261626172618261926202621262226232624262526262627262826292630263126322633263426352636263726382639264026412642264326442645264626472648264926502651265226532654265526562657265826592660266126622663266426652666266726682669267026712672267326742675267626772678267926802681268226832684268526862687268826892690269126922693269426952696269726982699270027012702270327042705270627072708270927102711271227132714271527162717271827192720272127222723272427252726272727282729273027312732273327342735273627372738273927402741274227432744274527462747274827492750275127522753275427552756275727582759276027612762276327642765276627672768276927702771277227732774277527762777277827792780278127822783278427852786278727882789279027912792279327942795279627972798279928002801280228032804280528062807280828092810281128122813281428152816281728182819282028212822282328242825282628272828282928302831283228332834283528362837283828392840284128422843284428452846284728482849285028512852285328542855285628572858285928602861286228632864286528662867286828692870287128722873287428752876287728782879288028812882288328842885288628872888288928902891289228932894289528962897289828992900290129022903290429052906290729082909291029112912291329142915291629172918291929202921292229232924292529262927292829292930293129322933293429352936293729382939294029412942294329442945294629472948294929502951295229532954295529562957295829592960296129622963296429652966296729682969297029712972297329742975297629772978297929802981298229832984298529862987298829892990299129922993299429952996299729982999300030013002300330043005300630073008300930103011301230133014301530163017301830193020302130223023302430253026302730283029303030313032303330343035303630373038303930403041304230433044304530463047304830493050305130523053305430553056305730583059306030613062306330643065306630673068306930703071307230733074307530763077307830793080308130823083308430853086308730883089309030913092309330943095309630973098309931003101310231033104310531063107310831093110311131123113311431153116311731183119312031213122312331243125312631273128312931303131313231333134313531363137313831393140314131423143314431453146314731483149315031513152315331543155315631573158315931603161316231633164316531663167316831693170317131723173317431753176317731783179318031813182318331843185318631873188318931903191319231933194319531963197319831993200320132023203320432053206320732083209321032113212321332143215321632173218321932203221322232233224322532263227322832293230323132323233323432353236323732383239324032413242324332443245324632473248324932503251325232533254325532563257325832593260326132623263326432653266326732683269327032713272327332743275327632773278327932803281328232833284328532863287328832893290329132923293329432953296329732983299330033013302330333043305330633073308330933103311331233133314331533163317331833193320332133223323332433253326332733283329333033313332333333343335333633373338333933403341334233433344334533463347334833493350335133523353335433553356335733583359336033613362336333643365336633673368336933703371337233733374337533763377337833793380338133823383338433853386338733883389339033913392339333943395339633973398339934003401340234033404340534063407340834093410341134123413341434153416341734183419342034213422342334243425342634273428342934303431343234333434343534363437343834393440344134423443344434453446344734483449345034513452345334543455345634573458345934603461346234633464346534663467346834693470347134723473347434753476347734783479348034813482348334843485348634873488348934903491349234933494349534963497349834993500350135023503350435053506350735083509351035113512351335143515351635173518351935203521352235233524352535263527352835293530353135323533353435353536353735383539354035413542354335443545354635473548354935503551355235533554355535563557355835593560356135623563356435653566356735683569357035713572357335743575357635773578357935803581358235833584358535863587358835893590359135923593359435953596359735983599360036013602360336043605360636073608360936103611361236133614361536163617361836193620362136223623362436253626362736283629363036313632363336343635363636373638363936403641364236433644364536463647364836493650365136523653365436553656365736583659366036613662366336643665366636673668366936703671367236733674367536763677367836793680368136823683368436853686368736883689369036913692369336943695369636973698369937003701370237033704370537063707370837093710371137123713371437153716371737183719372037213722372337243725372637273728372937303731373237333734373537363737373837393740374137423743374437453746374737483749375037513752375337543755375637573758375937603761376237633764376537663767376837693770377137723773377437753776377737783779378037813782378337843785378637873788378937903791379237933794379537963797379837993800380138023803380438053806380738083809381038113812381338143815381638173818381938203821382238233824382538263827382838293830383138323833383438353836383738383839384038413842384338443845384638473848384938503851385238533854385538563857385838593860386138623863386438653866386738683869387038713872387338743875387638773878387938803881388238833884388538863887388838893890389138923893389438953896389738983899390039013902390339043905390639073908390939103911391239133914391539163917391839193920392139223923392439253926392739283929393039313932393339343935393639373938393939403941394239433944394539463947394839493950395139523953395439553956395739583959396039613962396339643965396639673968396939703971397239733974397539763977397839793980398139823983398439853986398739883989399039913992399339943995399639973998399940004001400240034004400540064007400840094010401140124013401440154016401740184019402040214022402340244025402640274028402940304031403240334034403540364037403840394040404140424043404440454046404740484049405040514052405340544055405640574058405940604061406240634064406540664067406840694070407140724073407440754076407740784079408040814082408340844085408640874088408940904091409240934094409540964097409840994100410141024103410441054106410741084109411041114112411341144115411641174118411941204121412241234124412541264127412841294130413141324133413441354136413741384139414041414142414341444145414641474148414941504151415241534154415541564157415841594160416141624163416441654166416741684169417041714172417341744175417641774178417941804181418241834184418541864187418841894190419141924193419441954196419741984199420042014202420342044205420642074208420942104211421242134214421542164217421842194220422142224223422442254226422742284229423042314232423342344235423642374238423942404241424242434244424542464247424842494250425142524253425442554256425742584259426042614262426342644265426642674268426942704271427242734274427542764277427842794280428142824283428442854286428742884289429042914292429342944295429642974298429943004301430243034304430543064307430843094310431143124313431443154316431743184319432043214322432343244325432643274328432943304331433243334334433543364337433843394340434143424343434443454346434743484349435043514352435343544355435643574358435943604361436243634364436543664367436843694370437143724373437443754376437743784379438043814382438343844385438643874388438943904391439243934394439543964397439843994400440144024403440444054406440744084409441044114412441344144415441644174418441944204421442244234424442544264427442844294430443144324433443444354436443744384439444044414442444344444445444644474448444944504451445244534454445544564457445844594460446144624463446444654466446744684469447044714472447344744475447644774478447944804481448244834484448544864487448844894490449144924493449444954496449744984499450045014502450345044505450645074508450945104511451245134514451545164517451845194520452145224523452445254526452745284529453045314532453345344535453645374538453945404541454245434544454545464547454845494550455145524553455445554556455745584559456045614562456345644565456645674568456945704571457245734574457545764577457845794580458145824583458445854586458745884589459045914592459345944595459645974598459946004601460246034604460546064607460846094610461146124613461446154616461746184619462046214622462346244625462646274628462946304631463246334634463546364637463846394640464146424643464446454646464746484649465046514652465346544655465646574658465946604661466246634664466546664667466846694670467146724673467446754676467746784679468046814682468346844685468646874688468946904691469246934694469546964697469846994700470147024703470447054706470747084709471047114712471347144715471647174718471947204721472247234724472547264727472847294730473147324733473447354736473747384739474047414742474347444745474647474748474947504751475247534754475547564757475847594760476147624763476447654766476747684769477047714772477347744775477647774778477947804781478247834784478547864787478847894790479147924793479447954796479747984799480048014802480348044805480648074808480948104811481248134814481548164817481848194820482148224823482448254826482748284829483048314832483348344835483648374838483948404841484248434844484548464847484848494850485148524853485448554856485748584859486048614862486348644865486648674868486948704871487248734874487548764877487848794880488148824883488448854886488748884889489048914892489348944895489648974898489949004901490249034904490549064907490849094910491149124913491449154916491749184919492049214922492349244925492649274928492949304931493249334934493549364937493849394940494149424943494449454946494749484949495049514952495349544955495649574958495949604961496249634964496549664967496849694970497149724973497449754976497749784979498049814982498349844985498649874988498949904991499249934994499549964997499849995000500150025003500450055006500750085009501050115012501350145015501650175018501950205021502250235024502550265027502850295030503150325033503450355036503750385039504050415042504350445045504650475048504950505051505250535054505550565057505850595060506150625063506450655066506750685069507050715072507350745075507650775078507950805081508250835084508550865087508850895090509150925093509450955096509750985099510051015102510351045105510651075108510951105111511251135114511551165117511851195120512151225123512451255126512751285129513051315132513351345135513651375138513951405141514251435144514551465147514851495150515151525153515451555156515751585159516051615162516351645165516651675168516951705171517251735174517551765177517851795180518151825183518451855186518751885189519051915192519351945195519651975198519952005201520252035204520552065207520852095210521152125213521452155216521752185219522052215222522352245225522652275228522952305231523252335234523552365237523852395240524152425243524452455246524752485249525052515252525352545255525652575258525952605261526252635264526552665267526852695270527152725273527452755276527752785279528052815282528352845285528652875288528952905291529252935294529552965297529852995300530153025303530453055306530753085309531053115312531353145315531653175318531953205321532253235324532553265327532853295330533153325333533453355336533753385339534053415342534353445345534653475348534953505351535253535354535553565357535853595360536153625363536453655366536753685369537053715372537353745375537653775378537953805381538253835384538553865387538853895390539153925393539453955396539753985399540054015402540354045405540654075408540954105411541254135414541554165417541854195420542154225423542454255426542754285429543054315432543354345435543654375438543954405441544254435444544554465447544854495450545154525453545454555456545754585459546054615462546354645465546654675468546954705471547254735474547554765477547854795480548154825483548454855486548754885489549054915492549354945495549654975498549955005501550255035504550555065507550855095510551155125513551455155516551755185519552055215522552355245525552655275528552955305531553255335534553555365537553855395540554155425543554455455546554755485549555055515552555355545555555655575558555955605561556255635564556555665567556855695570557155725573557455755576557755785579558055815582558355845585558655875588558955905591559255935594559555965597559855995600560156025603560456055606560756085609561056115612561356145615561656175618561956205621562256235624562556265627562856295630563156325633563456355636563756385639564056415642564356445645564656475648564956505651565256535654565556565657565856595660566156625663566456655666566756685669567056715672567356745675567656775678567956805681568256835684568556865687568856895690569156925693569456955696569756985699570057015702570357045705570657075708570957105711571257135714571557165717571857195720572157225723572457255726572757285729573057315732573357345735573657375738573957405741574257435744574557465747574857495750575157525753575457555756575757585759576057615762576357645765576657675768576957705771577257735774577557765777577857795780578157825783578457855786578757885789579057915792579357945795579657975798579958005801580258035804580558065807580858095810581158125813581458155816581758185819582058215822582358245825582658275828582958305831583258335834583558365837583858395840584158425843584458455846584758485849585058515852585358545855585658575858585958605861586258635864586558665867586858695870587158725873587458755876587758785879588058815882588358845885588658875888588958905891589258935894589558965897589858995900590159025903590459055906590759085909591059115912591359145915591659175918591959205921592259235924592559265927592859295930593159325933593459355936593759385939594059415942594359445945594659475948594959505951595259535954595559565957595859595960596159625963596459655966596759685969597059715972597359745975597659775978597959805981598259835984598559865987598859895990599159925993599459955996599759985999600060016002600360046005600660076008600960106011601260136014601560166017601860196020602160226023602460256026602760286029603060316032603360346035603660376038603960406041604260436044604560466047604860496050605160526053605460556056605760586059606060616062606360646065606660676068606960706071607260736074607560766077607860796080608160826083608460856086608760886089609060916092609360946095609660976098609961006101610261036104610561066107610861096110611161126113611461156116611761186119612061216122612361246125612661276128612961306131613261336134613561366137613861396140614161426143614461456146614761486149615061516152615361546155615661576158615961606161616261636164616561666167616861696170617161726173617461756176617761786179618061816182618361846185618661876188618961906191619261936194619561966197619861996200620162026203620462056206620762086209621062116212621362146215621662176218621962206221622262236224622562266227622862296230623162326233623462356236623762386239624062416242624362446245624662476248624962506251625262536254625562566257625862596260626162626263626462656266626762686269627062716272627362746275627662776278627962806281628262836284628562866287628862896290629162926293629462956296629762986299630063016302630363046305630663076308630963106311631263136314631563166317631863196320632163226323632463256326632763286329633063316332633363346335633663376338633963406341634263436344634563466347634863496350635163526353635463556356635763586359636063616362636363646365636663676368636963706371637263736374637563766377637863796380638163826383638463856386638763886389639063916392639363946395639663976398639964006401640264036404640564066407640864096410641164126413641464156416641764186419642064216422642364246425642664276428642964306431643264336434643564366437643864396440644164426443644464456446644764486449645064516452645364546455645664576458645964606461646264636464646564666467646864696470647164726473647464756476647764786479648064816482648364846485648664876488648964906491649264936494649564966497649864996500650165026503650465056506650765086509651065116512651365146515651665176518651965206521652265236524652565266527652865296530653165326533653465356536653765386539654065416542654365446545654665476548654965506551655265536554655565566557655865596560656165626563656465656566656765686569657065716572657365746575657665776578657965806581658265836584658565866587658865896590659165926593659465956596659765986599660066016602660366046605660666076608660966106611661266136614661566166617661866196620662166226623662466256626662766286629663066316632663366346635663666376638663966406641664266436644664566466647664866496650665166526653665466556656665766586659666066616662666366646665666666676668666966706671667266736674667566766677667866796680668166826683668466856686668766886689669066916692669366946695669666976698669967006701670267036704670567066707670867096710671167126713671467156716671767186719672067216722672367246725672667276728672967306731673267336734673567366737673867396740674167426743674467456746674767486749675067516752675367546755675667576758675967606761676267636764676567666767676867696770677167726773677467756776677767786779678067816782678367846785678667876788678967906791679267936794679567966797679867996800680168026803680468056806680768086809681068116812681368146815681668176818681968206821682268236824682568266827682868296830683168326833683468356836683768386839684068416842684368446845684668476848684968506851685268536854685568566857685868596860686168626863686468656866686768686869687068716872687368746875687668776878687968806881688268836884688568866887688868896890689168926893689468956896689768986899690069016902690369046905690669076908690969106911691269136914691569166917691869196920692169226923692469256926692769286929693069316932693369346935693669376938693969406941694269436944694569466947694869496950695169526953695469556956695769586959696069616962696369646965696669676968696969706971697269736974697569766977697869796980698169826983698469856986698769886989699069916992699369946995699669976998699970007001700270037004700570067007700870097010701170127013701470157016701770187019702070217022702370247025702670277028702970307031703270337034703570367037703870397040704170427043704470457046704770487049705070517052705370547055705670577058705970607061706270637064706570667067706870697070707170727073707470757076707770787079708070817082708370847085708670877088708970907091709270937094709570967097709870997100710171027103710471057106710771087109711071117112711371147115711671177118711971207121712271237124712571267127712871297130713171327133713471357136713771387139714071417142714371447145714671477148714971507151715271537154715571567157715871597160716171627163716471657166716771687169717071717172717371747175717671777178717971807181718271837184718571867187718871897190719171927193719471957196719771987199720072017202720372047205720672077208720972107211721272137214721572167217721872197220722172227223722472257226722772287229723072317232723372347235723672377238723972407241724272437244724572467247724872497250725172527253725472557256725772587259726072617262726372647265726672677268726972707271727272737274727572767277727872797280728172827283728472857286728772887289729072917292729372947295729672977298729973007301730273037304730573067307730873097310731173127313731473157316731773187319732073217322732373247325732673277328732973307331733273337334733573367337733873397340734173427343734473457346734773487349735073517352735373547355735673577358735973607361736273637364736573667367736873697370737173727373737473757376737773787379738073817382738373847385738673877388738973907391739273937394739573967397739873997400740174027403740474057406740774087409741074117412741374147415741674177418741974207421742274237424742574267427742874297430743174327433743474357436743774387439744074417442744374447445744674477448744974507451745274537454745574567457745874597460746174627463746474657466746774687469747074717472747374747475747674777478747974807481748274837484748574867487748874897490749174927493749474957496749774987499750075017502750375047505750675077508750975107511751275137514751575167517751875197520752175227523752475257526752775287529753075317532753375347535753675377538753975407541754275437544754575467547754875497550755175527553755475557556755775587559756075617562756375647565756675677568756975707571757275737574757575767577757875797580758175827583758475857586758775887589759075917592759375947595759675977598759976007601760276037604760576067607760876097610761176127613761476157616761776187619762076217622762376247625762676277628762976307631763276337634763576367637763876397640764176427643764476457646764776487649765076517652765376547655765676577658765976607661766276637664766576667667766876697670767176727673767476757676767776787679768076817682768376847685768676877688768976907691769276937694769576967697769876997700770177027703770477057706770777087709771077117712771377147715771677177718771977207721772277237724772577267727772877297730773177327733773477357736773777387739774077417742774377447745774677477748774977507751775277537754775577567757775877597760776177627763776477657766776777687769777077717772777377747775777677777778777977807781778277837784778577867787778877897790779177927793779477957796779777987799780078017802780378047805780678077808780978107811781278137814781578167817781878197820782178227823782478257826782778287829783078317832783378347835783678377838783978407841784278437844784578467847784878497850785178527853785478557856785778587859786078617862786378647865786678677868786978707871787278737874787578767877787878797880788178827883788478857886788778887889789078917892789378947895789678977898789979007901790279037904790579067907790879097910791179127913791479157916791779187919792079217922792379247925792679277928792979307931793279337934793579367937793879397940794179427943794479457946794779487949795079517952795379547955795679577958795979607961796279637964796579667967796879697970797179727973797479757976797779787979798079817982798379847985798679877988798979907991799279937994799579967997799879998000800180028003800480058006800780088009801080118012801380148015801680178018801980208021802280238024802580268027802880298030803180328033803480358036803780388039804080418042804380448045804680478048804980508051805280538054805580568057805880598060806180628063806480658066806780688069807080718072807380748075807680778078807980808081808280838084808580868087808880898090809180928093809480958096809780988099810081018102810381048105810681078108810981108111811281138114811581168117811881198120812181228123812481258126812781288129813081318132813381348135813681378138813981408141814281438144814581468147814881498150815181528153815481558156815781588159816081618162816381648165816681678168816981708171817281738174817581768177817881798180818181828183818481858186818781888189819081918192819381948195819681978198819982008201820282038204820582068207820882098210821182128213821482158216821782188219822082218222822382248225822682278228822982308231823282338234823582368237823882398240824182428243824482458246824782488249825082518252825382548255825682578258825982608261826282638264826582668267826882698270827182728273827482758276827782788279828082818282828382848285828682878288828982908291829282938294829582968297829882998300830183028303830483058306830783088309831083118312831383148315831683178318831983208321832283238324832583268327832883298330833183328333833483358336833783388339834083418342834383448345834683478348834983508351835283538354835583568357835883598360836183628363836483658366836783688369837083718372837383748375837683778378837983808381838283838384838583868387838883898390839183928393839483958396839783988399840084018402840384048405840684078408840984108411841284138414841584168417841884198420842184228423842484258426842784288429843084318432843384348435843684378438843984408441844284438444844584468447844884498450845184528453845484558456845784588459846084618462846384648465846684678468846984708471847284738474847584768477847884798480848184828483848484858486848784888489849084918492849384948495849684978498849985008501850285038504850585068507850885098510851185128513851485158516851785188519852085218522852385248525852685278528852985308531853285338534853585368537853885398540854185428543854485458546854785488549855085518552855385548555855685578558855985608561856285638564856585668567856885698570857185728573857485758576857785788579858085818582858385848585858685878588858985908591859285938594859585968597859885998600860186028603860486058606860786088609861086118612861386148615861686178618861986208621862286238624862586268627862886298630863186328633863486358636863786388639864086418642864386448645864686478648864986508651865286538654865586568657865886598660866186628663866486658666866786688669867086718672867386748675867686778678867986808681868286838684868586868687868886898690869186928693869486958696869786988699870087018702870387048705870687078708870987108711871287138714871587168717871887198720872187228723872487258726872787288729873087318732873387348735873687378738873987408741874287438744874587468747874887498750875187528753875487558756875787588759876087618762876387648765876687678768876987708771877287738774877587768777877887798780878187828783878487858786878787888789879087918792879387948795879687978798879988008801880288038804880588068807880888098810881188128813881488158816881788188819882088218822882388248825882688278828882988308831883288338834883588368837883888398840884188428843884488458846884788488849885088518852885388548855885688578858885988608861886288638864886588668867886888698870887188728873887488758876887788788879888088818882888388848885888688878888888988908891889288938894889588968897889888998900890189028903890489058906890789088909891089118912891389148915891689178918891989208921892289238924892589268927892889298930893189328933893489358936893789388939894089418942894389448945894689478948894989508951895289538954895589568957895889598960896189628963896489658966896789688969897089718972897389748975897689778978897989808981898289838984898589868987898889898990899189928993899489958996899789988999900090019002900390049005900690079008900990109011901290139014901590169017901890199020902190229023902490259026902790289029903090319032903390349035903690379038903990409041904290439044904590469047904890499050905190529053905490559056905790589059906090619062906390649065906690679068906990709071907290739074907590769077907890799080908190829083908490859086908790889089909090919092909390949095909690979098909991009101910291039104910591069107910891099110911191129113911491159116911791189119912091219122912391249125912691279128912991309131913291339134913591369137913891399140914191429143914491459146914791489149915091519152915391549155915691579158915991609161916291639164916591669167916891699170917191729173917491759176917791789179918091819182918391849185918691879188918991909191919291939194919591969197919891999200920192029203920492059206920792089209921092119212921392149215921692179218921992209221922292239224922592269227922892299230923192329233923492359236923792389239924092419242924392449245924692479248924992509251925292539254925592569257925892599260926192629263926492659266926792689269927092719272927392749275927692779278927992809281928292839284928592869287928892899290929192929293929492959296929792989299930093019302930393049305930693079308930993109311931293139314931593169317931893199320932193229323932493259326932793289329933093319332933393349335933693379338933993409341934293439344934593469347934893499350935193529353935493559356935793589359936093619362936393649365936693679368936993709371937293739374937593769377937893799380938193829383938493859386938793889389939093919392939393949395939693979398939994009401940294039404940594069407940894099410941194129413941494159416941794189419942094219422942394249425942694279428942994309431943294339434943594369437943894399440944194429443944494459446944794489449945094519452945394549455945694579458945994609461946294639464946594669467946894699470947194729473947494759476947794789479948094819482948394849485948694879488948994909491949294939494949594969497949894999500950195029503950495059506950795089509951095119512951395149515951695179518951995209521952295239524952595269527952895299530953195329533953495359536953795389539954095419542954395449545954695479548954995509551955295539554955595569557955895599560956195629563956495659566956795689569957095719572957395749575957695779578957995809581958295839584958595869587958895899590959195929593959495959596959795989599960096019602960396049605960696079608960996109611961296139614961596169617961896199620962196229623962496259626962796289629963096319632963396349635963696379638963996409641964296439644964596469647964896499650965196529653965496559656965796589659966096619662966396649665966696679668966996709671967296739674967596769677967896799680968196829683968496859686968796889689969096919692969396949695969696979698969997009701970297039704970597069707970897099710971197129713971497159716971797189719972097219722972397249725972697279728972997309731973297339734973597369737973897399740974197429743974497459746974797489749975097519752975397549755975697579758975997609761976297639764976597669767976897699770977197729773977497759776977797789779978097819782978397849785978697879788978997909791979297939794979597969797979897999800980198029803980498059806980798089809981098119812981398149815981698179818981998209821982298239824982598269827982898299830983198329833983498359836983798389839984098419842984398449845984698479848984998509851985298539854985598569857985898599860986198629863986498659866986798689869987098719872987398749875987698779878987998809881988298839884988598869887988898899890989198929893989498959896989798989899990099019902990399049905990699079908990999109911991299139914991599169917991899199920992199229923992499259926992799289929993099319932993399349935993699379938993999409941994299439944994599469947994899499950995199529953995499559956995799589959996099619962996399649965996699679968996999709971997299739974997599769977997899799980998199829983998499859986998799889989999099919992999399949995999699979998999910000100011000210003100041000510006100071000810009100101001110012100131001410015100161001710018100191002010021100221002310024100251002610027100281002910030100311003210033100341003510036100371003810039100401004110042100431004410045100461004710048100491005010051100521005310054100551005610057100581005910060100611006210063100641006510066100671006810069100701007110072100731007410075100761007710078100791008010081100821008310084100851008610087100881008910090100911009210093100941009510096100971009810099101001010110102101031010410105101061010710108101091011010111101121011310114101151011610117101181011910120101211012210123101241012510126101271012810129101301013110132101331013410135101361013710138101391014010141101421014310144101451014610147101481014910150101511015210153101541015510156101571015810159101601016110162101631016410165101661016710168101691017010171101721017310174101751017610177101781017910180101811018210183101841018510186101871018810189101901019110192101931019410195101961019710198101991020010201102021020310204102051020610207102081020910210102111021210213102141021510216102171021810219102201022110222102231022410225102261022710228102291023010231102321023310234102351023610237102381023910240102411024210243102441024510246102471024810249102501025110252102531025410255102561025710258102591026010261102621026310264102651026610267102681026910270102711027210273102741027510276102771027810279102801028110282102831028410285102861028710288102891029010291102921029310294102951029610297102981029910300103011030210303103041030510306103071030810309103101031110312103131031410315103161031710318103191032010321103221032310324103251032610327103281032910330103311033210333103341033510336103371033810339103401034110342103431034410345103461034710348103491035010351103521035310354103551035610357103581035910360103611036210363103641036510366103671036810369103701037110372103731037410375103761037710378103791038010381103821038310384103851038610387103881038910390103911039210393103941039510396103971039810399104001040110402104031040410405104061040710408104091041010411104121041310414104151041610417104181041910420104211042210423104241042510426104271042810429104301043110432104331043410435104361043710438104391044010441104421044310444104451044610447104481044910450104511045210453104541045510456104571045810459104601046110462104631046410465104661046710468104691047010471104721047310474104751047610477104781047910480104811048210483104841048510486104871048810489104901049110492104931049410495104961049710498104991050010501105021050310504105051050610507105081050910510105111051210513105141051510516105171051810519105201052110522105231052410525105261052710528105291053010531105321053310534105351053610537105381053910540105411054210543105441054510546105471054810549105501055110552105531055410555105561055710558105591056010561105621056310564105651056610567105681056910570105711057210573105741057510576105771057810579105801058110582105831058410585105861058710588105891059010591105921059310594105951059610597105981059910600106011060210603106041060510606106071060810609106101061110612106131061410615106161061710618106191062010621106221062310624106251062610627106281062910630106311063210633106341063510636106371063810639106401064110642106431064410645106461064710648106491065010651106521065310654106551065610657106581065910660106611066210663106641066510666106671066810669106701067110672106731067410675106761067710678106791068010681106821068310684106851068610687106881068910690106911069210693106941069510696106971069810699107001070110702107031070410705107061070710708107091071010711107121071310714107151071610717107181071910720107211072210723107241072510726107271072810729107301073110732107331073410735107361073710738107391074010741107421074310744107451074610747107481074910750107511075210753107541075510756107571075810759107601076110762107631076410765107661076710768107691077010771107721077310774107751077610777107781077910780107811078210783107841078510786107871078810789107901079110792107931079410795107961079710798107991080010801108021080310804108051080610807108081080910810108111081210813108141081510816108171081810819108201082110822108231082410825108261082710828108291083010831108321083310834108351083610837108381083910840108411084210843108441084510846108471084810849108501085110852108531085410855108561085710858108591086010861108621086310864108651086610867108681086910870108711087210873108741087510876108771087810879108801088110882108831088410885108861088710888108891089010891108921089310894108951089610897108981089910900109011090210903109041090510906109071090810909109101091110912109131091410915109161091710918109191092010921109221092310924109251092610927109281092910930109311093210933109341093510936109371093810939109401094110942109431094410945109461094710948109491095010951109521095310954109551095610957109581095910960109611096210963109641096510966109671096810969109701097110972109731097410975109761097710978109791098010981109821098310984109851098610987109881098910990109911099210993109941099510996109971099810999110001100111002110031100411005110061100711008110091101011011110121101311014110151101611017110181101911020110211102211023110241102511026110271102811029110301103111032110331103411035110361103711038110391104011041110421104311044110451104611047110481104911050110511105211053110541105511056110571105811059110601106111062110631106411065110661106711068110691107011071110721107311074110751107611077110781107911080110811108211083110841108511086110871108811089110901109111092110931109411095110961109711098110991110011101111021110311104111051110611107111081110911110111111111211113111141111511116111171111811119111201112111122111231112411125111261112711128111291113011131111321113311134111351113611137111381113911140111411114211143111441114511146111471114811149111501115111152111531115411155111561115711158111591116011161111621116311164111651116611167111681116911170111711117211173111741117511176111771117811179111801118111182111831118411185111861118711188111891119011191111921119311194111951119611197111981119911200112011120211203112041120511206112071120811209112101121111212112131121411215112161121711218112191122011221112221122311224112251122611227112281122911230112311123211233112341123511236112371123811239112401124111242112431124411245112461124711248112491125011251112521125311254112551125611257112581125911260112611126211263112641126511266112671126811269112701127111272112731127411275112761127711278112791128011281112821128311284112851128611287112881128911290112911129211293112941129511296112971129811299113001130111302113031130411305113061130711308113091131011311113121131311314113151131611317113181131911320113211132211323113241132511326113271132811329113301133111332113331133411335113361133711338113391134011341113421134311344113451134611347113481134911350113511135211353113541135511356113571135811359113601136111362113631136411365113661136711368113691137011371113721137311374113751137611377113781137911380113811138211383113841138511386113871138811389113901139111392113931139411395113961139711398113991140011401114021140311404114051140611407114081140911410114111141211413114141141511416114171141811419114201142111422114231142411425114261142711428114291143011431114321143311434114351143611437114381143911440114411144211443114441144511446114471144811449114501145111452114531145411455114561145711458114591146011461114621146311464114651146611467114681146911470114711147211473114741147511476114771147811479114801148111482114831148411485114861148711488114891149011491114921149311494114951149611497114981149911500115011150211503115041150511506115071150811509115101151111512115131151411515115161151711518115191152011521115221152311524115251152611527115281152911530115311153211533115341153511536115371153811539115401154111542115431154411545115461154711548115491155011551115521155311554115551155611557115581155911560115611156211563115641156511566115671156811569115701157111572115731157411575115761157711578115791158011581115821158311584115851158611587115881158911590115911159211593115941159511596115971159811599116001160111602116031160411605116061160711608116091161011611116121161311614116151161611617116181161911620116211162211623116241162511626116271162811629116301163111632116331163411635116361163711638116391164011641116421164311644116451164611647116481164911650116511165211653116541165511656116571165811659116601166111662116631166411665116661166711668116691167011671116721167311674116751167611677116781167911680116811168211683116841168511686116871168811689116901169111692116931169411695116961169711698116991170011701117021170311704117051170611707117081170911710117111171211713117141171511716117171171811719117201172111722117231172411725117261172711728117291173011731117321173311734117351173611737117381173911740117411174211743117441174511746117471174811749117501175111752117531175411755117561175711758117591176011761117621176311764117651176611767117681176911770117711177211773117741177511776117771177811779117801178111782117831178411785117861178711788117891179011791117921179311794117951179611797117981179911800118011180211803118041180511806118071180811809118101181111812118131181411815118161181711818118191182011821118221182311824118251182611827118281182911830118311183211833118341183511836118371183811839118401184111842118431184411845118461184711848118491185011851118521185311854118551185611857118581185911860118611186211863118641186511866118671186811869118701187111872118731187411875118761187711878118791188011881118821188311884118851188611887118881188911890118911189211893118941189511896118971189811899119001190111902119031190411905119061190711908119091191011911119121191311914119151191611917119181191911920119211192211923119241192511926119271192811929119301193111932119331193411935119361193711938119391194011941119421194311944119451194611947119481194911950119511195211953119541195511956119571195811959119601196111962119631196411965119661196711968119691197011971119721197311974119751197611977119781197911980119811198211983119841198511986119871198811989119901199111992119931199411995119961199711998119991200012001120021200312004120051200612007120081200912010120111201212013120141201512016120171201812019120201202112022120231202412025120261202712028120291203012031120321203312034120351203612037120381203912040120411204212043120441204512046120471204812049120501205112052120531205412055120561205712058120591206012061120621206312064120651206612067120681206912070120711207212073120741207512076120771207812079120801208112082120831208412085120861208712088120891209012091120921209312094120951209612097120981209912100121011210212103121041210512106121071210812109121101211112112121131211412115121161211712118121191212012121121221212312124121251212612127121281212912130121311213212133121341213512136121371213812139121401214112142121431214412145121461214712148121491215012151121521215312154121551215612157121581215912160121611216212163121641216512166121671216812169121701217112172121731217412175121761217712178121791218012181121821218312184121851218612187121881218912190121911219212193121941219512196121971219812199122001220112202122031220412205122061220712208122091221012211122121221312214122151221612217122181221912220122211222212223122241222512226122271222812229122301223112232122331223412235122361223712238122391224012241122421224312244122451224612247122481224912250122511225212253122541225512256122571225812259122601226112262122631226412265122661226712268122691227012271122721227312274122751227612277122781227912280122811228212283122841228512286122871228812289122901229112292122931229412295122961229712298122991230012301123021230312304123051230612307123081230912310123111231212313123141231512316123171231812319123201232112322123231232412325123261232712328123291233012331123321233312334123351233612337123381233912340123411234212343123441234512346123471234812349123501235112352123531235412355123561235712358123591236012361123621236312364123651236612367123681236912370123711237212373123741237512376123771237812379123801238112382123831238412385123861238712388123891239012391123921239312394123951239612397123981239912400124011240212403124041240512406124071240812409124101241112412124131241412415124161241712418124191242012421124221242312424124251242612427124281242912430124311243212433124341243512436124371243812439124401244112442124431244412445124461244712448124491245012451124521245312454124551245612457124581245912460124611246212463124641246512466124671246812469124701247112472124731247412475124761247712478124791248012481124821248312484124851248612487124881248912490124911249212493124941249512496124971249812499125001250112502125031250412505125061250712508125091251012511125121251312514125151251612517125181251912520125211252212523125241252512526125271252812529125301253112532125331253412535125361253712538125391254012541125421254312544125451254612547125481254912550125511255212553125541255512556125571255812559125601256112562125631256412565125661256712568125691257012571125721257312574125751257612577125781257912580125811258212583125841258512586125871258812589125901259112592125931259412595125961259712598125991260012601126021260312604126051260612607126081260912610126111261212613126141261512616126171261812619126201262112622126231262412625126261262712628126291263012631126321263312634126351263612637126381263912640126411264212643126441264512646126471264812649126501265112652126531265412655126561265712658126591266012661126621266312664126651266612667126681266912670126711267212673126741267512676126771267812679126801268112682126831268412685126861268712688126891269012691126921269312694126951269612697126981269912700127011270212703127041270512706127071270812709127101271112712127131271412715127161271712718127191272012721127221272312724127251272612727127281272912730127311273212733127341273512736127371273812739127401274112742127431274412745127461274712748127491275012751127521275312754127551275612757127581275912760127611276212763127641276512766127671276812769127701277112772127731277412775127761277712778127791278012781127821278312784127851278612787127881278912790127911279212793127941279512796127971279812799128001280112802128031280412805128061280712808128091281012811128121281312814128151281612817128181281912820128211282212823128241282512826128271282812829128301283112832128331283412835128361283712838128391284012841128421284312844128451284612847128481284912850128511285212853128541285512856128571285812859128601286112862128631286412865128661286712868128691287012871128721287312874128751287612877128781287912880128811288212883128841288512886128871288812889128901289112892128931289412895128961289712898128991290012901129021290312904129051290612907129081290912910129111291212913129141291512916129171291812919129201292112922129231292412925129261292712928129291293012931129321293312934129351293612937129381293912940129411294212943129441294512946129471294812949129501295112952129531295412955129561295712958129591296012961129621296312964129651296612967129681296912970129711297212973129741297512976129771297812979129801298112982129831298412985129861298712988129891299012991129921299312994129951299612997129981299913000130011300213003130041300513006130071300813009130101301113012130131301413015130161301713018130191302013021130221302313024130251302613027130281302913030130311303213033130341303513036130371303813039130401304113042130431304413045130461304713048130491305013051130521305313054130551305613057130581305913060130611306213063130641306513066130671306813069130701307113072130731307413075130761307713078130791308013081130821308313084130851308613087130881308913090130911309213093130941309513096130971309813099131001310113102131031310413105131061310713108131091311013111131121311313114131151311613117131181311913120131211312213123131241312513126131271312813129131301313113132131331313413135131361313713138131391314013141131421314313144131451314613147131481314913150131511315213153131541315513156131571315813159131601316113162131631316413165131661316713168131691317013171131721317313174131751317613177131781317913180131811318213183131841318513186131871318813189131901319113192131931319413195131961319713198131991320013201132021320313204132051320613207132081320913210132111321213213132141321513216132171321813219132201322113222132231322413225132261322713228132291323013231132321323313234132351323613237132381323913240132411324213243132441324513246132471324813249132501325113252132531325413255132561325713258132591326013261132621326313264132651326613267132681326913270132711327213273132741327513276132771327813279132801328113282132831328413285132861328713288132891329013291132921329313294132951329613297132981329913300133011330213303133041330513306133071330813309133101331113312133131331413315133161331713318133191332013321133221332313324133251332613327133281332913330133311333213333133341333513336133371333813339133401334113342133431334413345133461334713348133491335013351133521335313354133551335613357133581335913360133611336213363133641336513366133671336813369133701337113372133731337413375133761337713378133791338013381133821338313384133851338613387133881338913390133911339213393133941339513396133971339813399134001340113402134031340413405134061340713408134091341013411134121341313414134151341613417134181341913420134211342213423134241342513426134271342813429134301343113432134331343413435134361343713438134391344013441134421344313444134451344613447134481344913450134511345213453134541345513456134571345813459134601346113462134631346413465134661346713468134691347013471134721347313474134751347613477134781347913480134811348213483134841348513486134871348813489134901349113492134931349413495134961349713498134991350013501135021350313504135051350613507135081350913510135111351213513135141351513516135171351813519135201352113522135231352413525135261352713528135291353013531135321353313534135351353613537135381353913540135411354213543135441354513546135471354813549135501355113552135531355413555135561355713558135591356013561135621356313564135651356613567135681356913570135711357213573135741357513576135771357813579135801358113582135831358413585135861358713588135891359013591135921359313594135951359613597135981359913600136011360213603136041360513606136071360813609136101361113612136131361413615136161361713618136191362013621136221362313624136251362613627136281362913630136311363213633136341363513636136371363813639136401364113642136431364413645136461364713648136491365013651136521365313654136551365613657136581365913660136611366213663136641366513666136671366813669136701367113672136731367413675136761367713678136791368013681136821368313684136851368613687136881368913690136911369213693136941369513696136971369813699137001370113702137031370413705137061370713708137091371013711137121371313714137151371613717137181371913720137211372213723137241372513726137271372813729137301373113732137331373413735137361373713738137391374013741137421374313744137451374613747137481374913750137511375213753137541375513756137571375813759137601376113762137631376413765137661376713768137691377013771137721377313774137751377613777137781377913780137811378213783137841378513786137871378813789137901379113792137931379413795137961379713798137991380013801138021380313804138051380613807138081380913810138111381213813138141381513816138171381813819138201382113822138231382413825138261382713828138291383013831138321383313834138351383613837138381383913840138411384213843138441384513846138471384813849138501385113852138531385413855138561385713858138591386013861138621386313864138651386613867138681386913870138711387213873138741387513876138771387813879138801388113882138831388413885138861388713888138891389013891138921389313894138951389613897138981389913900139011390213903139041390513906139071390813909139101391113912139131391413915139161391713918139191392013921139221392313924139251392613927139281392913930139311393213933139341393513936139371393813939
  1. body {
  2. margin:0px;
  3. background-image:none;
  4. position:relative;
  5. left:0px;
  6. width:2620px;
  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. #u12184 {
  20. border-width:0px;
  21. position:absolute;
  22. left:0px;
  23. top:0px;
  24. width:0px;
  25. height:0px;
  26. }
  27. #u12185_div {
  28. border-width:0px;
  29. position:absolute;
  30. left:0px;
  31. top:0px;
  32. width:1000px;
  33. height:1196px;
  34. background:inherit;
  35. background-color:rgba(255, 255, 255, 1);
  36. box-sizing:border-box;
  37. border-width:1px;
  38. border-style:solid;
  39. border-color:rgba(215, 215, 215, 1);
  40. border-radius:0px;
  41. -moz-box-shadow:none;
  42. -webkit-box-shadow:none;
  43. box-shadow:none;
  44. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  45. font-weight:400;
  46. font-style:normal;
  47. font-size:14px;
  48. color:#AAAAAA;
  49. text-align:center;
  50. line-height:30px;
  51. }
  52. #u12185 {
  53. border-width:0px;
  54. position:absolute;
  55. left:1620px;
  56. top:47px;
  57. width:1000px;
  58. height:1196px;
  59. display:flex;
  60. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  61. font-weight:400;
  62. font-style:normal;
  63. font-size:14px;
  64. color:#AAAAAA;
  65. text-align:center;
  66. line-height:30px;
  67. }
  68. #u12185 .text {
  69. position:absolute;
  70. align-self:center;
  71. padding:5px 10px 5px 10px;
  72. box-sizing:border-box;
  73. width:100%;
  74. }
  75. #u12185_text {
  76. border-width:0px;
  77. word-wrap:break-word;
  78. text-transform:none;
  79. visibility:hidden;
  80. }
  81. #u12186_div {
  82. border-width:0px;
  83. position:absolute;
  84. left:0px;
  85. top:0px;
  86. width:137px;
  87. height:35px;
  88. background:inherit;
  89. background-color:rgba(255, 255, 255, 0);
  90. border:none;
  91. border-top:0px;
  92. border-right:0px;
  93. border-bottom:0px;
  94. border-radius:0px;
  95. border-top-left-radius:0px;
  96. border-bottom-left-radius:0px;
  97. -moz-box-shadow:none;
  98. -webkit-box-shadow:none;
  99. box-shadow:none;
  100. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  101. font-weight:500;
  102. font-style:normal;
  103. font-size:18px;
  104. }
  105. #u12186 {
  106. border-width:0px;
  107. position:absolute;
  108. left:1640px;
  109. top:65px;
  110. width:137px;
  111. height:35px;
  112. display:flex;
  113. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  114. font-weight:500;
  115. font-style:normal;
  116. font-size:18px;
  117. }
  118. #u12186 .text {
  119. position:absolute;
  120. align-self:center;
  121. padding:5px 10px 5px 0px;
  122. box-sizing:border-box;
  123. width:100%;
  124. }
  125. #u12186_text {
  126. border-width:0px;
  127. white-space:nowrap;
  128. text-transform:none;
  129. }
  130. #u12187 {
  131. border-width:0px;
  132. position:absolute;
  133. left:0px;
  134. top:0px;
  135. width:0px;
  136. height:0px;
  137. }
  138. #u12188_div {
  139. border-width:0px;
  140. position:absolute;
  141. left:0px;
  142. top:0px;
  143. width:40px;
  144. height:40px;
  145. background:inherit;
  146. background-color:rgba(255, 255, 255, 0);
  147. border:none;
  148. border-top:0px;
  149. border-right:0px;
  150. border-bottom:0px;
  151. border-radius:0px;
  152. border-top-left-radius:0px;
  153. border-bottom-left-radius:0px;
  154. -moz-box-shadow:none;
  155. -webkit-box-shadow:none;
  156. box-shadow:none;
  157. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  158. font-weight:500;
  159. font-style:normal;
  160. font-size:18px;
  161. text-align:center;
  162. }
  163. #u12188 {
  164. border-width:0px;
  165. position:absolute;
  166. left:2580px;
  167. top:47px;
  168. width:40px;
  169. height:40px;
  170. display:flex;
  171. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  172. font-weight:500;
  173. font-style:normal;
  174. font-size:18px;
  175. text-align:center;
  176. }
  177. #u12188 .text {
  178. position:absolute;
  179. align-self:center;
  180. padding:5px 10px 5px 0px;
  181. box-sizing:border-box;
  182. width:100%;
  183. }
  184. #u12188_text {
  185. border-width:0px;
  186. word-wrap:break-word;
  187. text-transform:none;
  188. }
  189. #u12189_img {
  190. border-width:0px;
  191. position:absolute;
  192. left:0px;
  193. top:0px;
  194. width:13px;
  195. height:13px;
  196. }
  197. #u12189 {
  198. border-width:0px;
  199. position:absolute;
  200. left:2568px;
  201. top:63px;
  202. width:13px;
  203. height:13px;
  204. display:flex;
  205. }
  206. #u12189 .text {
  207. position:absolute;
  208. align-self:center;
  209. padding:2px 2px 2px 2px;
  210. box-sizing:border-box;
  211. width:100%;
  212. }
  213. #u12189_text {
  214. border-width:0px;
  215. word-wrap:break-word;
  216. text-transform:none;
  217. visibility:hidden;
  218. }
  219. #u12190 {
  220. border-width:0px;
  221. position:absolute;
  222. left:0px;
  223. top:0px;
  224. width:0px;
  225. height:0px;
  226. }
  227. #u12191_div {
  228. border-width:0px;
  229. position:absolute;
  230. left:0px;
  231. top:0px;
  232. width:1000px;
  233. height:50px;
  234. background:inherit;
  235. background-color:rgba(255, 255, 255, 1);
  236. box-sizing:border-box;
  237. border-width:1px;
  238. border-style:solid;
  239. border-color:rgba(215, 215, 215, 1);
  240. border-radius:0px;
  241. -moz-box-shadow:none;
  242. -webkit-box-shadow:none;
  243. box-shadow:none;
  244. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  245. font-weight:400;
  246. font-style:normal;
  247. font-size:14px;
  248. color:#AAAAAA;
  249. text-align:center;
  250. line-height:30px;
  251. }
  252. #u12191 {
  253. border-width:0px;
  254. position:absolute;
  255. left:1620px;
  256. top:1193px;
  257. width:1000px;
  258. height:50px;
  259. display:flex;
  260. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  261. font-weight:400;
  262. font-style:normal;
  263. font-size:14px;
  264. color:#AAAAAA;
  265. text-align:center;
  266. line-height:30px;
  267. }
  268. #u12191 .text {
  269. position:absolute;
  270. align-self:center;
  271. padding:5px 10px 5px 10px;
  272. box-sizing:border-box;
  273. width:100%;
  274. }
  275. #u12191_text {
  276. border-width:0px;
  277. word-wrap:break-word;
  278. text-transform:none;
  279. visibility:hidden;
  280. }
  281. #u12192_div {
  282. border-width:0px;
  283. position:absolute;
  284. left:0px;
  285. top:0px;
  286. width:80px;
  287. height:30px;
  288. background:inherit;
  289. background-color:rgba(255, 255, 255, 1);
  290. box-sizing:border-box;
  291. border-width:1px;
  292. border-style:solid;
  293. border-color:rgba(121, 121, 121, 1);
  294. border-radius:4px;
  295. -moz-box-shadow:none;
  296. -webkit-box-shadow:none;
  297. box-shadow:none;
  298. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  299. font-weight:400;
  300. font-style:normal;
  301. font-size:14px;
  302. }
  303. #u12192 {
  304. border-width:0px;
  305. position:absolute;
  306. left:2520px;
  307. top:1203px;
  308. width:80px;
  309. height:30px;
  310. display:flex;
  311. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  312. font-weight:400;
  313. font-style:normal;
  314. font-size:14px;
  315. }
  316. #u12192 .text {
  317. position:absolute;
  318. align-self:center;
  319. padding:2px 2px 2px 2px;
  320. box-sizing:border-box;
  321. width:100%;
  322. }
  323. #u12192_text {
  324. border-width:0px;
  325. word-wrap:break-word;
  326. text-transform:none;
  327. }
  328. #u12193 {
  329. border-width:0px;
  330. position:absolute;
  331. left:1640px;
  332. top:170px;
  333. width:960px;
  334. height:213px;
  335. }
  336. #u12194_img {
  337. border-width:0px;
  338. position:absolute;
  339. left:0px;
  340. top:0px;
  341. width:59px;
  342. height:30px;
  343. }
  344. #u12194 {
  345. border-width:0px;
  346. position:absolute;
  347. left:0px;
  348. top:0px;
  349. width:59px;
  350. height:30px;
  351. display:flex;
  352. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  353. font-weight:400;
  354. font-style:normal;
  355. color:#FFFFFF;
  356. }
  357. #u12194 .text {
  358. position:absolute;
  359. align-self:center;
  360. padding:2px 2px 2px 2px;
  361. box-sizing:border-box;
  362. width:100%;
  363. }
  364. #u12194_text {
  365. border-width:0px;
  366. word-wrap:break-word;
  367. text-transform:none;
  368. }
  369. #u12195_img {
  370. border-width:0px;
  371. position:absolute;
  372. left:0px;
  373. top:0px;
  374. width:113px;
  375. height:30px;
  376. }
  377. #u12195 {
  378. border-width:0px;
  379. position:absolute;
  380. left:59px;
  381. top:0px;
  382. width:113px;
  383. height:30px;
  384. display:flex;
  385. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  386. font-weight:400;
  387. font-style:normal;
  388. color:#FFFFFF;
  389. }
  390. #u12195 .text {
  391. position:absolute;
  392. align-self:center;
  393. padding:2px 2px 2px 2px;
  394. box-sizing:border-box;
  395. width:100%;
  396. }
  397. #u12195_text {
  398. border-width:0px;
  399. word-wrap:break-word;
  400. text-transform:none;
  401. }
  402. #u12196_img {
  403. border-width:0px;
  404. position:absolute;
  405. left:0px;
  406. top:0px;
  407. width:113px;
  408. height:30px;
  409. }
  410. #u12196 {
  411. border-width:0px;
  412. position:absolute;
  413. left:172px;
  414. top:0px;
  415. width:113px;
  416. height:30px;
  417. display:flex;
  418. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  419. font-weight:400;
  420. font-style:normal;
  421. color:#FFFFFF;
  422. }
  423. #u12196 .text {
  424. position:absolute;
  425. align-self:center;
  426. padding:2px 2px 2px 2px;
  427. box-sizing:border-box;
  428. width:100%;
  429. }
  430. #u12196_text {
  431. border-width:0px;
  432. word-wrap:break-word;
  433. text-transform:none;
  434. }
  435. #u12197_img {
  436. border-width:0px;
  437. position:absolute;
  438. left:0px;
  439. top:0px;
  440. width:113px;
  441. height:30px;
  442. }
  443. #u12197 {
  444. border-width:0px;
  445. position:absolute;
  446. left:285px;
  447. top:0px;
  448. width:113px;
  449. height:30px;
  450. display:flex;
  451. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  452. font-weight:400;
  453. font-style:normal;
  454. color:#FFFFFF;
  455. }
  456. #u12197 .text {
  457. position:absolute;
  458. align-self:center;
  459. padding:2px 2px 2px 2px;
  460. box-sizing:border-box;
  461. width:100%;
  462. }
  463. #u12197_text {
  464. border-width:0px;
  465. word-wrap:break-word;
  466. text-transform:none;
  467. }
  468. #u12198_img {
  469. border-width:0px;
  470. position:absolute;
  471. left:0px;
  472. top:0px;
  473. width:113px;
  474. height:30px;
  475. }
  476. #u12198 {
  477. border-width:0px;
  478. position:absolute;
  479. left:398px;
  480. top:0px;
  481. width:113px;
  482. height:30px;
  483. display:flex;
  484. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  485. font-weight:400;
  486. font-style:normal;
  487. color:#FFFFFF;
  488. }
  489. #u12198 .text {
  490. position:absolute;
  491. align-self:center;
  492. padding:2px 2px 2px 2px;
  493. box-sizing:border-box;
  494. width:100%;
  495. }
  496. #u12198_text {
  497. border-width:0px;
  498. word-wrap:break-word;
  499. text-transform:none;
  500. }
  501. #u12199_img {
  502. border-width:0px;
  503. position:absolute;
  504. left:0px;
  505. top:0px;
  506. width:113px;
  507. height:30px;
  508. }
  509. #u12199 {
  510. border-width:0px;
  511. position:absolute;
  512. left:511px;
  513. top:0px;
  514. width:113px;
  515. height:30px;
  516. display:flex;
  517. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  518. font-weight:400;
  519. font-style:normal;
  520. color:#FFFFFF;
  521. }
  522. #u12199 .text {
  523. position:absolute;
  524. align-self:center;
  525. padding:2px 2px 2px 2px;
  526. box-sizing:border-box;
  527. width:100%;
  528. }
  529. #u12199_text {
  530. border-width:0px;
  531. word-wrap:break-word;
  532. text-transform:none;
  533. }
  534. #u12200_img {
  535. border-width:0px;
  536. position:absolute;
  537. left:0px;
  538. top:0px;
  539. width:113px;
  540. height:30px;
  541. }
  542. #u12200 {
  543. border-width:0px;
  544. position:absolute;
  545. left:624px;
  546. top:0px;
  547. width:113px;
  548. height:30px;
  549. display:flex;
  550. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  551. font-weight:400;
  552. font-style:normal;
  553. color:#FFFFFF;
  554. }
  555. #u12200 .text {
  556. position:absolute;
  557. align-self:center;
  558. padding:2px 2px 2px 2px;
  559. box-sizing:border-box;
  560. width:100%;
  561. }
  562. #u12200_text {
  563. border-width:0px;
  564. word-wrap:break-word;
  565. text-transform:none;
  566. }
  567. #u12201_img {
  568. border-width:0px;
  569. position:absolute;
  570. left:0px;
  571. top:0px;
  572. width:113px;
  573. height:30px;
  574. }
  575. #u12201 {
  576. border-width:0px;
  577. position:absolute;
  578. left:737px;
  579. top:0px;
  580. width:113px;
  581. height:30px;
  582. display:flex;
  583. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  584. font-weight:400;
  585. font-style:normal;
  586. color:#FFFFFF;
  587. }
  588. #u12201 .text {
  589. position:absolute;
  590. align-self:center;
  591. padding:2px 2px 2px 2px;
  592. box-sizing:border-box;
  593. width:100%;
  594. }
  595. #u12201_text {
  596. border-width:0px;
  597. word-wrap:break-word;
  598. text-transform:none;
  599. }
  600. #u12202_img {
  601. border-width:0px;
  602. position:absolute;
  603. left:0px;
  604. top:0px;
  605. width:110px;
  606. height:30px;
  607. }
  608. #u12202 {
  609. border-width:0px;
  610. position:absolute;
  611. left:850px;
  612. top:0px;
  613. width:110px;
  614. height:30px;
  615. display:flex;
  616. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  617. font-weight:400;
  618. font-style:normal;
  619. color:#FFFFFF;
  620. }
  621. #u12202 .text {
  622. position:absolute;
  623. align-self:center;
  624. padding:2px 2px 2px 2px;
  625. box-sizing:border-box;
  626. width:100%;
  627. }
  628. #u12202_text {
  629. border-width:0px;
  630. word-wrap:break-word;
  631. text-transform:none;
  632. }
  633. #u12203_img {
  634. border-width:0px;
  635. position:absolute;
  636. left:0px;
  637. top:0px;
  638. width:59px;
  639. height:40px;
  640. }
  641. #u12203 {
  642. border-width:0px;
  643. position:absolute;
  644. left:0px;
  645. top:30px;
  646. width:59px;
  647. height:40px;
  648. display:flex;
  649. }
  650. #u12203 .text {
  651. position:absolute;
  652. align-self:center;
  653. padding:2px 2px 2px 2px;
  654. box-sizing:border-box;
  655. width:100%;
  656. }
  657. #u12203_text {
  658. border-width:0px;
  659. word-wrap:break-word;
  660. text-transform:none;
  661. }
  662. #u12204_img {
  663. border-width:0px;
  664. position:absolute;
  665. left:0px;
  666. top:0px;
  667. width:113px;
  668. height:40px;
  669. }
  670. #u12204 {
  671. border-width:0px;
  672. position:absolute;
  673. left:59px;
  674. top:30px;
  675. width:113px;
  676. height:40px;
  677. display:flex;
  678. }
  679. #u12204 .text {
  680. position:absolute;
  681. align-self:center;
  682. padding:2px 2px 2px 2px;
  683. box-sizing:border-box;
  684. width:100%;
  685. }
  686. #u12204_text {
  687. border-width:0px;
  688. word-wrap:break-word;
  689. text-transform:none;
  690. }
  691. #u12205_img {
  692. border-width:0px;
  693. position:absolute;
  694. left:0px;
  695. top:0px;
  696. width:113px;
  697. height:40px;
  698. }
  699. #u12205 {
  700. border-width:0px;
  701. position:absolute;
  702. left:172px;
  703. top:30px;
  704. width:113px;
  705. height:40px;
  706. display:flex;
  707. }
  708. #u12205 .text {
  709. position:absolute;
  710. align-self:center;
  711. padding:2px 2px 2px 2px;
  712. box-sizing:border-box;
  713. width:100%;
  714. }
  715. #u12205_text {
  716. border-width:0px;
  717. word-wrap:break-word;
  718. text-transform:none;
  719. }
  720. #u12206_img {
  721. border-width:0px;
  722. position:absolute;
  723. left:0px;
  724. top:0px;
  725. width:113px;
  726. height:40px;
  727. }
  728. #u12206 {
  729. border-width:0px;
  730. position:absolute;
  731. left:285px;
  732. top:30px;
  733. width:113px;
  734. height:40px;
  735. display:flex;
  736. }
  737. #u12206 .text {
  738. position:absolute;
  739. align-self:center;
  740. padding:2px 2px 2px 2px;
  741. box-sizing:border-box;
  742. width:100%;
  743. }
  744. #u12206_text {
  745. border-width:0px;
  746. word-wrap:break-word;
  747. text-transform:none;
  748. }
  749. #u12207_img {
  750. border-width:0px;
  751. position:absolute;
  752. left:0px;
  753. top:0px;
  754. width:113px;
  755. height:40px;
  756. }
  757. #u12207 {
  758. border-width:0px;
  759. position:absolute;
  760. left:398px;
  761. top:30px;
  762. width:113px;
  763. height:40px;
  764. display:flex;
  765. }
  766. #u12207 .text {
  767. position:absolute;
  768. align-self:center;
  769. padding:2px 2px 2px 2px;
  770. box-sizing:border-box;
  771. width:100%;
  772. }
  773. #u12207_text {
  774. border-width:0px;
  775. word-wrap:break-word;
  776. text-transform:none;
  777. visibility:hidden;
  778. }
  779. #u12208_img {
  780. border-width:0px;
  781. position:absolute;
  782. left:0px;
  783. top:0px;
  784. width:113px;
  785. height:40px;
  786. }
  787. #u12208 {
  788. border-width:0px;
  789. position:absolute;
  790. left:511px;
  791. top:30px;
  792. width:113px;
  793. height:40px;
  794. display:flex;
  795. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  796. font-weight:400;
  797. font-style:normal;
  798. }
  799. #u12208 .text {
  800. position:absolute;
  801. align-self:center;
  802. padding:2px 2px 2px 2px;
  803. box-sizing:border-box;
  804. width:100%;
  805. }
  806. #u12208_text {
  807. border-width:0px;
  808. word-wrap:break-word;
  809. text-transform:none;
  810. }
  811. #u12209_img {
  812. border-width:0px;
  813. position:absolute;
  814. left:0px;
  815. top:0px;
  816. width:113px;
  817. height:40px;
  818. }
  819. #u12209 {
  820. border-width:0px;
  821. position:absolute;
  822. left:624px;
  823. top:30px;
  824. width:113px;
  825. height:40px;
  826. display:flex;
  827. }
  828. #u12209 .text {
  829. position:absolute;
  830. align-self:center;
  831. padding:2px 2px 2px 2px;
  832. box-sizing:border-box;
  833. width:100%;
  834. }
  835. #u12209_text {
  836. border-width:0px;
  837. word-wrap:break-word;
  838. text-transform:none;
  839. }
  840. #u12210_img {
  841. border-width:0px;
  842. position:absolute;
  843. left:0px;
  844. top:0px;
  845. width:113px;
  846. height:40px;
  847. }
  848. #u12210 {
  849. border-width:0px;
  850. position:absolute;
  851. left:737px;
  852. top:30px;
  853. width:113px;
  854. height:40px;
  855. display:flex;
  856. }
  857. #u12210 .text {
  858. position:absolute;
  859. align-self:center;
  860. padding:2px 2px 2px 2px;
  861. box-sizing:border-box;
  862. width:100%;
  863. }
  864. #u12210_text {
  865. border-width:0px;
  866. word-wrap:break-word;
  867. text-transform:none;
  868. }
  869. #u12211_img {
  870. border-width:0px;
  871. position:absolute;
  872. left:0px;
  873. top:0px;
  874. width:110px;
  875. height:40px;
  876. }
  877. #u12211 {
  878. border-width:0px;
  879. position:absolute;
  880. left:850px;
  881. top:30px;
  882. width:110px;
  883. height:40px;
  884. display:flex;
  885. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  886. font-weight:400;
  887. font-style:normal;
  888. color:#298FFF;
  889. }
  890. #u12211 .text {
  891. position:absolute;
  892. align-self:center;
  893. padding:2px 2px 2px 2px;
  894. box-sizing:border-box;
  895. width:100%;
  896. }
  897. #u12211_text {
  898. border-width:0px;
  899. word-wrap:break-word;
  900. text-transform:none;
  901. }
  902. #u12212_img {
  903. border-width:0px;
  904. position:absolute;
  905. left:0px;
  906. top:0px;
  907. width:59px;
  908. height:30px;
  909. }
  910. #u12212 {
  911. border-width:0px;
  912. position:absolute;
  913. left:0px;
  914. top:70px;
  915. width:59px;
  916. height:30px;
  917. display:flex;
  918. }
  919. #u12212 .text {
  920. position:absolute;
  921. align-self:center;
  922. padding:2px 2px 2px 2px;
  923. box-sizing:border-box;
  924. width:100%;
  925. }
  926. #u12212_text {
  927. border-width:0px;
  928. word-wrap:break-word;
  929. text-transform:none;
  930. }
  931. #u12213_img {
  932. border-width:0px;
  933. position:absolute;
  934. left:0px;
  935. top:0px;
  936. width:113px;
  937. height:30px;
  938. }
  939. #u12213 {
  940. border-width:0px;
  941. position:absolute;
  942. left:59px;
  943. top:70px;
  944. width:113px;
  945. height:30px;
  946. display:flex;
  947. }
  948. #u12213 .text {
  949. position:absolute;
  950. align-self:center;
  951. padding:2px 2px 2px 2px;
  952. box-sizing:border-box;
  953. width:100%;
  954. }
  955. #u12213_text {
  956. border-width:0px;
  957. word-wrap:break-word;
  958. text-transform:none;
  959. visibility:hidden;
  960. }
  961. #u12214_img {
  962. border-width:0px;
  963. position:absolute;
  964. left:0px;
  965. top:0px;
  966. width:113px;
  967. height:30px;
  968. }
  969. #u12214 {
  970. border-width:0px;
  971. position:absolute;
  972. left:172px;
  973. top:70px;
  974. width:113px;
  975. height:30px;
  976. display:flex;
  977. }
  978. #u12214 .text {
  979. position:absolute;
  980. align-self:center;
  981. padding:2px 2px 2px 2px;
  982. box-sizing:border-box;
  983. width:100%;
  984. }
  985. #u12214_text {
  986. border-width:0px;
  987. word-wrap:break-word;
  988. text-transform:none;
  989. visibility:hidden;
  990. }
  991. #u12215_img {
  992. border-width:0px;
  993. position:absolute;
  994. left:0px;
  995. top:0px;
  996. width:113px;
  997. height:30px;
  998. }
  999. #u12215 {
  1000. border-width:0px;
  1001. position:absolute;
  1002. left:285px;
  1003. top:70px;
  1004. width:113px;
  1005. height:30px;
  1006. display:flex;
  1007. }
  1008. #u12215 .text {
  1009. position:absolute;
  1010. align-self:center;
  1011. padding:2px 2px 2px 2px;
  1012. box-sizing:border-box;
  1013. width:100%;
  1014. }
  1015. #u12215_text {
  1016. border-width:0px;
  1017. word-wrap:break-word;
  1018. text-transform:none;
  1019. visibility:hidden;
  1020. }
  1021. #u12216_img {
  1022. border-width:0px;
  1023. position:absolute;
  1024. left:0px;
  1025. top:0px;
  1026. width:113px;
  1027. height:30px;
  1028. }
  1029. #u12216 {
  1030. border-width:0px;
  1031. position:absolute;
  1032. left:398px;
  1033. top:70px;
  1034. width:113px;
  1035. height:30px;
  1036. display:flex;
  1037. }
  1038. #u12216 .text {
  1039. position:absolute;
  1040. align-self:center;
  1041. padding:2px 2px 2px 2px;
  1042. box-sizing:border-box;
  1043. width:100%;
  1044. }
  1045. #u12216_text {
  1046. border-width:0px;
  1047. word-wrap:break-word;
  1048. text-transform:none;
  1049. visibility:hidden;
  1050. }
  1051. #u12217_img {
  1052. border-width:0px;
  1053. position:absolute;
  1054. left:0px;
  1055. top:0px;
  1056. width:113px;
  1057. height:30px;
  1058. }
  1059. #u12217 {
  1060. border-width:0px;
  1061. position:absolute;
  1062. left:511px;
  1063. top:70px;
  1064. width:113px;
  1065. height:30px;
  1066. display:flex;
  1067. }
  1068. #u12217 .text {
  1069. position:absolute;
  1070. align-self:center;
  1071. padding:2px 2px 2px 2px;
  1072. box-sizing:border-box;
  1073. width:100%;
  1074. }
  1075. #u12217_text {
  1076. border-width:0px;
  1077. word-wrap:break-word;
  1078. text-transform:none;
  1079. visibility:hidden;
  1080. }
  1081. #u12218_img {
  1082. border-width:0px;
  1083. position:absolute;
  1084. left:0px;
  1085. top:0px;
  1086. width:113px;
  1087. height:30px;
  1088. }
  1089. #u12218 {
  1090. border-width:0px;
  1091. position:absolute;
  1092. left:624px;
  1093. top:70px;
  1094. width:113px;
  1095. height:30px;
  1096. display:flex;
  1097. }
  1098. #u12218 .text {
  1099. position:absolute;
  1100. align-self:center;
  1101. padding:2px 2px 2px 2px;
  1102. box-sizing:border-box;
  1103. width:100%;
  1104. }
  1105. #u12218_text {
  1106. border-width:0px;
  1107. word-wrap:break-word;
  1108. text-transform:none;
  1109. visibility:hidden;
  1110. }
  1111. #u12219_img {
  1112. border-width:0px;
  1113. position:absolute;
  1114. left:0px;
  1115. top:0px;
  1116. width:113px;
  1117. height:30px;
  1118. }
  1119. #u12219 {
  1120. border-width:0px;
  1121. position:absolute;
  1122. left:737px;
  1123. top:70px;
  1124. width:113px;
  1125. height:30px;
  1126. display:flex;
  1127. }
  1128. #u12219 .text {
  1129. position:absolute;
  1130. align-self:center;
  1131. padding:2px 2px 2px 2px;
  1132. box-sizing:border-box;
  1133. width:100%;
  1134. }
  1135. #u12219_text {
  1136. border-width:0px;
  1137. word-wrap:break-word;
  1138. text-transform:none;
  1139. visibility:hidden;
  1140. }
  1141. #u12220_img {
  1142. border-width:0px;
  1143. position:absolute;
  1144. left:0px;
  1145. top:0px;
  1146. width:110px;
  1147. height:30px;
  1148. }
  1149. #u12220 {
  1150. border-width:0px;
  1151. position:absolute;
  1152. left:850px;
  1153. top:70px;
  1154. width:110px;
  1155. height:30px;
  1156. display:flex;
  1157. }
  1158. #u12220 .text {
  1159. position:absolute;
  1160. align-self:center;
  1161. padding:2px 2px 2px 2px;
  1162. box-sizing:border-box;
  1163. width:100%;
  1164. }
  1165. #u12220_text {
  1166. border-width:0px;
  1167. word-wrap:break-word;
  1168. text-transform:none;
  1169. visibility:hidden;
  1170. }
  1171. #u12221_img {
  1172. border-width:0px;
  1173. position:absolute;
  1174. left:0px;
  1175. top:0px;
  1176. width:59px;
  1177. height:30px;
  1178. }
  1179. #u12221 {
  1180. border-width:0px;
  1181. position:absolute;
  1182. left:0px;
  1183. top:100px;
  1184. width:59px;
  1185. height:30px;
  1186. display:flex;
  1187. }
  1188. #u12221 .text {
  1189. position:absolute;
  1190. align-self:center;
  1191. padding:2px 2px 2px 2px;
  1192. box-sizing:border-box;
  1193. width:100%;
  1194. }
  1195. #u12221_text {
  1196. border-width:0px;
  1197. word-wrap:break-word;
  1198. text-transform:none;
  1199. }
  1200. #u12222_img {
  1201. border-width:0px;
  1202. position:absolute;
  1203. left:0px;
  1204. top:0px;
  1205. width:113px;
  1206. height:30px;
  1207. }
  1208. #u12222 {
  1209. border-width:0px;
  1210. position:absolute;
  1211. left:59px;
  1212. top:100px;
  1213. width:113px;
  1214. height:30px;
  1215. display:flex;
  1216. }
  1217. #u12222 .text {
  1218. position:absolute;
  1219. align-self:center;
  1220. padding:2px 2px 2px 2px;
  1221. box-sizing:border-box;
  1222. width:100%;
  1223. }
  1224. #u12222_text {
  1225. border-width:0px;
  1226. word-wrap:break-word;
  1227. text-transform:none;
  1228. visibility:hidden;
  1229. }
  1230. #u12223_img {
  1231. border-width:0px;
  1232. position:absolute;
  1233. left:0px;
  1234. top:0px;
  1235. width:113px;
  1236. height:30px;
  1237. }
  1238. #u12223 {
  1239. border-width:0px;
  1240. position:absolute;
  1241. left:172px;
  1242. top:100px;
  1243. width:113px;
  1244. height:30px;
  1245. display:flex;
  1246. }
  1247. #u12223 .text {
  1248. position:absolute;
  1249. align-self:center;
  1250. padding:2px 2px 2px 2px;
  1251. box-sizing:border-box;
  1252. width:100%;
  1253. }
  1254. #u12223_text {
  1255. border-width:0px;
  1256. word-wrap:break-word;
  1257. text-transform:none;
  1258. visibility:hidden;
  1259. }
  1260. #u12224_img {
  1261. border-width:0px;
  1262. position:absolute;
  1263. left:0px;
  1264. top:0px;
  1265. width:113px;
  1266. height:30px;
  1267. }
  1268. #u12224 {
  1269. border-width:0px;
  1270. position:absolute;
  1271. left:285px;
  1272. top:100px;
  1273. width:113px;
  1274. height:30px;
  1275. display:flex;
  1276. }
  1277. #u12224 .text {
  1278. position:absolute;
  1279. align-self:center;
  1280. padding:2px 2px 2px 2px;
  1281. box-sizing:border-box;
  1282. width:100%;
  1283. }
  1284. #u12224_text {
  1285. border-width:0px;
  1286. word-wrap:break-word;
  1287. text-transform:none;
  1288. visibility:hidden;
  1289. }
  1290. #u12225_img {
  1291. border-width:0px;
  1292. position:absolute;
  1293. left:0px;
  1294. top:0px;
  1295. width:113px;
  1296. height:30px;
  1297. }
  1298. #u12225 {
  1299. border-width:0px;
  1300. position:absolute;
  1301. left:398px;
  1302. top:100px;
  1303. width:113px;
  1304. height:30px;
  1305. display:flex;
  1306. }
  1307. #u12225 .text {
  1308. position:absolute;
  1309. align-self:center;
  1310. padding:2px 2px 2px 2px;
  1311. box-sizing:border-box;
  1312. width:100%;
  1313. }
  1314. #u12225_text {
  1315. border-width:0px;
  1316. word-wrap:break-word;
  1317. text-transform:none;
  1318. visibility:hidden;
  1319. }
  1320. #u12226_img {
  1321. border-width:0px;
  1322. position:absolute;
  1323. left:0px;
  1324. top:0px;
  1325. width:113px;
  1326. height:30px;
  1327. }
  1328. #u12226 {
  1329. border-width:0px;
  1330. position:absolute;
  1331. left:511px;
  1332. top:100px;
  1333. width:113px;
  1334. height:30px;
  1335. display:flex;
  1336. }
  1337. #u12226 .text {
  1338. position:absolute;
  1339. align-self:center;
  1340. padding:2px 2px 2px 2px;
  1341. box-sizing:border-box;
  1342. width:100%;
  1343. }
  1344. #u12226_text {
  1345. border-width:0px;
  1346. word-wrap:break-word;
  1347. text-transform:none;
  1348. visibility:hidden;
  1349. }
  1350. #u12227_img {
  1351. border-width:0px;
  1352. position:absolute;
  1353. left:0px;
  1354. top:0px;
  1355. width:113px;
  1356. height:30px;
  1357. }
  1358. #u12227 {
  1359. border-width:0px;
  1360. position:absolute;
  1361. left:624px;
  1362. top:100px;
  1363. width:113px;
  1364. height:30px;
  1365. display:flex;
  1366. }
  1367. #u12227 .text {
  1368. position:absolute;
  1369. align-self:center;
  1370. padding:2px 2px 2px 2px;
  1371. box-sizing:border-box;
  1372. width:100%;
  1373. }
  1374. #u12227_text {
  1375. border-width:0px;
  1376. word-wrap:break-word;
  1377. text-transform:none;
  1378. visibility:hidden;
  1379. }
  1380. #u12228_img {
  1381. border-width:0px;
  1382. position:absolute;
  1383. left:0px;
  1384. top:0px;
  1385. width:113px;
  1386. height:30px;
  1387. }
  1388. #u12228 {
  1389. border-width:0px;
  1390. position:absolute;
  1391. left:737px;
  1392. top:100px;
  1393. width:113px;
  1394. height:30px;
  1395. display:flex;
  1396. }
  1397. #u12228 .text {
  1398. position:absolute;
  1399. align-self:center;
  1400. padding:2px 2px 2px 2px;
  1401. box-sizing:border-box;
  1402. width:100%;
  1403. }
  1404. #u12228_text {
  1405. border-width:0px;
  1406. word-wrap:break-word;
  1407. text-transform:none;
  1408. visibility:hidden;
  1409. }
  1410. #u12229_img {
  1411. border-width:0px;
  1412. position:absolute;
  1413. left:0px;
  1414. top:0px;
  1415. width:110px;
  1416. height:30px;
  1417. }
  1418. #u12229 {
  1419. border-width:0px;
  1420. position:absolute;
  1421. left:850px;
  1422. top:100px;
  1423. width:110px;
  1424. height:30px;
  1425. display:flex;
  1426. }
  1427. #u12229 .text {
  1428. position:absolute;
  1429. align-self:center;
  1430. padding:2px 2px 2px 2px;
  1431. box-sizing:border-box;
  1432. width:100%;
  1433. }
  1434. #u12229_text {
  1435. border-width:0px;
  1436. word-wrap:break-word;
  1437. text-transform:none;
  1438. visibility:hidden;
  1439. }
  1440. #u12230_img {
  1441. border-width:0px;
  1442. position:absolute;
  1443. left:0px;
  1444. top:0px;
  1445. width:59px;
  1446. height:30px;
  1447. }
  1448. #u12230 {
  1449. border-width:0px;
  1450. position:absolute;
  1451. left:0px;
  1452. top:130px;
  1453. width:59px;
  1454. height:30px;
  1455. display:flex;
  1456. }
  1457. #u12230 .text {
  1458. position:absolute;
  1459. align-self:center;
  1460. padding:2px 2px 2px 2px;
  1461. box-sizing:border-box;
  1462. width:100%;
  1463. }
  1464. #u12230_text {
  1465. border-width:0px;
  1466. word-wrap:break-word;
  1467. text-transform:none;
  1468. }
  1469. #u12231_img {
  1470. border-width:0px;
  1471. position:absolute;
  1472. left:0px;
  1473. top:0px;
  1474. width:113px;
  1475. height:30px;
  1476. }
  1477. #u12231 {
  1478. border-width:0px;
  1479. position:absolute;
  1480. left:59px;
  1481. top:130px;
  1482. width:113px;
  1483. height:30px;
  1484. display:flex;
  1485. }
  1486. #u12231 .text {
  1487. position:absolute;
  1488. align-self:center;
  1489. padding:2px 2px 2px 2px;
  1490. box-sizing:border-box;
  1491. width:100%;
  1492. }
  1493. #u12231_text {
  1494. border-width:0px;
  1495. word-wrap:break-word;
  1496. text-transform:none;
  1497. visibility:hidden;
  1498. }
  1499. #u12232_img {
  1500. border-width:0px;
  1501. position:absolute;
  1502. left:0px;
  1503. top:0px;
  1504. width:113px;
  1505. height:30px;
  1506. }
  1507. #u12232 {
  1508. border-width:0px;
  1509. position:absolute;
  1510. left:172px;
  1511. top:130px;
  1512. width:113px;
  1513. height:30px;
  1514. display:flex;
  1515. }
  1516. #u12232 .text {
  1517. position:absolute;
  1518. align-self:center;
  1519. padding:2px 2px 2px 2px;
  1520. box-sizing:border-box;
  1521. width:100%;
  1522. }
  1523. #u12232_text {
  1524. border-width:0px;
  1525. word-wrap:break-word;
  1526. text-transform:none;
  1527. visibility:hidden;
  1528. }
  1529. #u12233_img {
  1530. border-width:0px;
  1531. position:absolute;
  1532. left:0px;
  1533. top:0px;
  1534. width:113px;
  1535. height:30px;
  1536. }
  1537. #u12233 {
  1538. border-width:0px;
  1539. position:absolute;
  1540. left:285px;
  1541. top:130px;
  1542. width:113px;
  1543. height:30px;
  1544. display:flex;
  1545. }
  1546. #u12233 .text {
  1547. position:absolute;
  1548. align-self:center;
  1549. padding:2px 2px 2px 2px;
  1550. box-sizing:border-box;
  1551. width:100%;
  1552. }
  1553. #u12233_text {
  1554. border-width:0px;
  1555. word-wrap:break-word;
  1556. text-transform:none;
  1557. visibility:hidden;
  1558. }
  1559. #u12234_img {
  1560. border-width:0px;
  1561. position:absolute;
  1562. left:0px;
  1563. top:0px;
  1564. width:113px;
  1565. height:30px;
  1566. }
  1567. #u12234 {
  1568. border-width:0px;
  1569. position:absolute;
  1570. left:398px;
  1571. top:130px;
  1572. width:113px;
  1573. height:30px;
  1574. display:flex;
  1575. }
  1576. #u12234 .text {
  1577. position:absolute;
  1578. align-self:center;
  1579. padding:2px 2px 2px 2px;
  1580. box-sizing:border-box;
  1581. width:100%;
  1582. }
  1583. #u12234_text {
  1584. border-width:0px;
  1585. word-wrap:break-word;
  1586. text-transform:none;
  1587. visibility:hidden;
  1588. }
  1589. #u12235_img {
  1590. border-width:0px;
  1591. position:absolute;
  1592. left:0px;
  1593. top:0px;
  1594. width:113px;
  1595. height:30px;
  1596. }
  1597. #u12235 {
  1598. border-width:0px;
  1599. position:absolute;
  1600. left:511px;
  1601. top:130px;
  1602. width:113px;
  1603. height:30px;
  1604. display:flex;
  1605. }
  1606. #u12235 .text {
  1607. position:absolute;
  1608. align-self:center;
  1609. padding:2px 2px 2px 2px;
  1610. box-sizing:border-box;
  1611. width:100%;
  1612. }
  1613. #u12235_text {
  1614. border-width:0px;
  1615. word-wrap:break-word;
  1616. text-transform:none;
  1617. visibility:hidden;
  1618. }
  1619. #u12236_img {
  1620. border-width:0px;
  1621. position:absolute;
  1622. left:0px;
  1623. top:0px;
  1624. width:113px;
  1625. height:30px;
  1626. }
  1627. #u12236 {
  1628. border-width:0px;
  1629. position:absolute;
  1630. left:624px;
  1631. top:130px;
  1632. width:113px;
  1633. height:30px;
  1634. display:flex;
  1635. }
  1636. #u12236 .text {
  1637. position:absolute;
  1638. align-self:center;
  1639. padding:2px 2px 2px 2px;
  1640. box-sizing:border-box;
  1641. width:100%;
  1642. }
  1643. #u12236_text {
  1644. border-width:0px;
  1645. word-wrap:break-word;
  1646. text-transform:none;
  1647. visibility:hidden;
  1648. }
  1649. #u12237_img {
  1650. border-width:0px;
  1651. position:absolute;
  1652. left:0px;
  1653. top:0px;
  1654. width:113px;
  1655. height:30px;
  1656. }
  1657. #u12237 {
  1658. border-width:0px;
  1659. position:absolute;
  1660. left:737px;
  1661. top:130px;
  1662. width:113px;
  1663. height:30px;
  1664. display:flex;
  1665. }
  1666. #u12237 .text {
  1667. position:absolute;
  1668. align-self:center;
  1669. padding:2px 2px 2px 2px;
  1670. box-sizing:border-box;
  1671. width:100%;
  1672. }
  1673. #u12237_text {
  1674. border-width:0px;
  1675. word-wrap:break-word;
  1676. text-transform:none;
  1677. visibility:hidden;
  1678. }
  1679. #u12238_img {
  1680. border-width:0px;
  1681. position:absolute;
  1682. left:0px;
  1683. top:0px;
  1684. width:110px;
  1685. height:30px;
  1686. }
  1687. #u12238 {
  1688. border-width:0px;
  1689. position:absolute;
  1690. left:850px;
  1691. top:130px;
  1692. width:110px;
  1693. height:30px;
  1694. display:flex;
  1695. }
  1696. #u12238 .text {
  1697. position:absolute;
  1698. align-self:center;
  1699. padding:2px 2px 2px 2px;
  1700. box-sizing:border-box;
  1701. width:100%;
  1702. }
  1703. #u12238_text {
  1704. border-width:0px;
  1705. word-wrap:break-word;
  1706. text-transform:none;
  1707. visibility:hidden;
  1708. }
  1709. #u12239_img {
  1710. border-width:0px;
  1711. position:absolute;
  1712. left:0px;
  1713. top:0px;
  1714. width:59px;
  1715. height:30px;
  1716. }
  1717. #u12239 {
  1718. border-width:0px;
  1719. position:absolute;
  1720. left:0px;
  1721. top:160px;
  1722. width:59px;
  1723. height:30px;
  1724. display:flex;
  1725. }
  1726. #u12239 .text {
  1727. position:absolute;
  1728. align-self:center;
  1729. padding:2px 2px 2px 2px;
  1730. box-sizing:border-box;
  1731. width:100%;
  1732. }
  1733. #u12239_text {
  1734. border-width:0px;
  1735. word-wrap:break-word;
  1736. text-transform:none;
  1737. }
  1738. #u12240_img {
  1739. border-width:0px;
  1740. position:absolute;
  1741. left:0px;
  1742. top:0px;
  1743. width:113px;
  1744. height:30px;
  1745. }
  1746. #u12240 {
  1747. border-width:0px;
  1748. position:absolute;
  1749. left:59px;
  1750. top:160px;
  1751. width:113px;
  1752. height:30px;
  1753. display:flex;
  1754. }
  1755. #u12240 .text {
  1756. position:absolute;
  1757. align-self:center;
  1758. padding:2px 2px 2px 2px;
  1759. box-sizing:border-box;
  1760. width:100%;
  1761. }
  1762. #u12240_text {
  1763. border-width:0px;
  1764. word-wrap:break-word;
  1765. text-transform:none;
  1766. visibility:hidden;
  1767. }
  1768. #u12241_img {
  1769. border-width:0px;
  1770. position:absolute;
  1771. left:0px;
  1772. top:0px;
  1773. width:113px;
  1774. height:30px;
  1775. }
  1776. #u12241 {
  1777. border-width:0px;
  1778. position:absolute;
  1779. left:172px;
  1780. top:160px;
  1781. width:113px;
  1782. height:30px;
  1783. display:flex;
  1784. }
  1785. #u12241 .text {
  1786. position:absolute;
  1787. align-self:center;
  1788. padding:2px 2px 2px 2px;
  1789. box-sizing:border-box;
  1790. width:100%;
  1791. }
  1792. #u12241_text {
  1793. border-width:0px;
  1794. word-wrap:break-word;
  1795. text-transform:none;
  1796. visibility:hidden;
  1797. }
  1798. #u12242_img {
  1799. border-width:0px;
  1800. position:absolute;
  1801. left:0px;
  1802. top:0px;
  1803. width:113px;
  1804. height:30px;
  1805. }
  1806. #u12242 {
  1807. border-width:0px;
  1808. position:absolute;
  1809. left:285px;
  1810. top:160px;
  1811. width:113px;
  1812. height:30px;
  1813. display:flex;
  1814. }
  1815. #u12242 .text {
  1816. position:absolute;
  1817. align-self:center;
  1818. padding:2px 2px 2px 2px;
  1819. box-sizing:border-box;
  1820. width:100%;
  1821. }
  1822. #u12242_text {
  1823. border-width:0px;
  1824. word-wrap:break-word;
  1825. text-transform:none;
  1826. visibility:hidden;
  1827. }
  1828. #u12243_img {
  1829. border-width:0px;
  1830. position:absolute;
  1831. left:0px;
  1832. top:0px;
  1833. width:113px;
  1834. height:30px;
  1835. }
  1836. #u12243 {
  1837. border-width:0px;
  1838. position:absolute;
  1839. left:398px;
  1840. top:160px;
  1841. width:113px;
  1842. height:30px;
  1843. display:flex;
  1844. }
  1845. #u12243 .text {
  1846. position:absolute;
  1847. align-self:center;
  1848. padding:2px 2px 2px 2px;
  1849. box-sizing:border-box;
  1850. width:100%;
  1851. }
  1852. #u12243_text {
  1853. border-width:0px;
  1854. word-wrap:break-word;
  1855. text-transform:none;
  1856. visibility:hidden;
  1857. }
  1858. #u12244_img {
  1859. border-width:0px;
  1860. position:absolute;
  1861. left:0px;
  1862. top:0px;
  1863. width:113px;
  1864. height:30px;
  1865. }
  1866. #u12244 {
  1867. border-width:0px;
  1868. position:absolute;
  1869. left:511px;
  1870. top:160px;
  1871. width:113px;
  1872. height:30px;
  1873. display:flex;
  1874. }
  1875. #u12244 .text {
  1876. position:absolute;
  1877. align-self:center;
  1878. padding:2px 2px 2px 2px;
  1879. box-sizing:border-box;
  1880. width:100%;
  1881. }
  1882. #u12244_text {
  1883. border-width:0px;
  1884. word-wrap:break-word;
  1885. text-transform:none;
  1886. visibility:hidden;
  1887. }
  1888. #u12245_img {
  1889. border-width:0px;
  1890. position:absolute;
  1891. left:0px;
  1892. top:0px;
  1893. width:113px;
  1894. height:30px;
  1895. }
  1896. #u12245 {
  1897. border-width:0px;
  1898. position:absolute;
  1899. left:624px;
  1900. top:160px;
  1901. width:113px;
  1902. height:30px;
  1903. display:flex;
  1904. }
  1905. #u12245 .text {
  1906. position:absolute;
  1907. align-self:center;
  1908. padding:2px 2px 2px 2px;
  1909. box-sizing:border-box;
  1910. width:100%;
  1911. }
  1912. #u12245_text {
  1913. border-width:0px;
  1914. word-wrap:break-word;
  1915. text-transform:none;
  1916. visibility:hidden;
  1917. }
  1918. #u12246_img {
  1919. border-width:0px;
  1920. position:absolute;
  1921. left:0px;
  1922. top:0px;
  1923. width:113px;
  1924. height:30px;
  1925. }
  1926. #u12246 {
  1927. border-width:0px;
  1928. position:absolute;
  1929. left:737px;
  1930. top:160px;
  1931. width:113px;
  1932. height:30px;
  1933. display:flex;
  1934. }
  1935. #u12246 .text {
  1936. position:absolute;
  1937. align-self:center;
  1938. padding:2px 2px 2px 2px;
  1939. box-sizing:border-box;
  1940. width:100%;
  1941. }
  1942. #u12246_text {
  1943. border-width:0px;
  1944. word-wrap:break-word;
  1945. text-transform:none;
  1946. visibility:hidden;
  1947. }
  1948. #u12247_img {
  1949. border-width:0px;
  1950. position:absolute;
  1951. left:0px;
  1952. top:0px;
  1953. width:110px;
  1954. height:30px;
  1955. }
  1956. #u12247 {
  1957. border-width:0px;
  1958. position:absolute;
  1959. left:850px;
  1960. top:160px;
  1961. width:110px;
  1962. height:30px;
  1963. display:flex;
  1964. }
  1965. #u12247 .text {
  1966. position:absolute;
  1967. align-self:center;
  1968. padding:2px 2px 2px 2px;
  1969. box-sizing:border-box;
  1970. width:100%;
  1971. }
  1972. #u12247_text {
  1973. border-width:0px;
  1974. word-wrap:break-word;
  1975. text-transform:none;
  1976. visibility:hidden;
  1977. }
  1978. #u12248_img {
  1979. border-width:0px;
  1980. position:absolute;
  1981. left:0px;
  1982. top:0px;
  1983. width:59px;
  1984. height:23px;
  1985. }
  1986. #u12248 {
  1987. border-width:0px;
  1988. position:absolute;
  1989. left:0px;
  1990. top:190px;
  1991. width:59px;
  1992. height:23px;
  1993. display:flex;
  1994. }
  1995. #u12248 .text {
  1996. position:absolute;
  1997. align-self:center;
  1998. padding:2px 2px 2px 2px;
  1999. box-sizing:border-box;
  2000. width:100%;
  2001. }
  2002. #u12248_text {
  2003. border-width:0px;
  2004. word-wrap:break-word;
  2005. text-transform:none;
  2006. }
  2007. #u12249_img {
  2008. border-width:0px;
  2009. position:absolute;
  2010. left:0px;
  2011. top:0px;
  2012. width:113px;
  2013. height:23px;
  2014. }
  2015. #u12249 {
  2016. border-width:0px;
  2017. position:absolute;
  2018. left:59px;
  2019. top:190px;
  2020. width:113px;
  2021. height:23px;
  2022. display:flex;
  2023. }
  2024. #u12249 .text {
  2025. position:absolute;
  2026. align-self:center;
  2027. padding:2px 2px 2px 2px;
  2028. box-sizing:border-box;
  2029. width:100%;
  2030. }
  2031. #u12249_text {
  2032. border-width:0px;
  2033. word-wrap:break-word;
  2034. text-transform:none;
  2035. visibility:hidden;
  2036. }
  2037. #u12250_img {
  2038. border-width:0px;
  2039. position:absolute;
  2040. left:0px;
  2041. top:0px;
  2042. width:113px;
  2043. height:23px;
  2044. }
  2045. #u12250 {
  2046. border-width:0px;
  2047. position:absolute;
  2048. left:172px;
  2049. top:190px;
  2050. width:113px;
  2051. height:23px;
  2052. display:flex;
  2053. }
  2054. #u12250 .text {
  2055. position:absolute;
  2056. align-self:center;
  2057. padding:2px 2px 2px 2px;
  2058. box-sizing:border-box;
  2059. width:100%;
  2060. }
  2061. #u12250_text {
  2062. border-width:0px;
  2063. word-wrap:break-word;
  2064. text-transform:none;
  2065. visibility:hidden;
  2066. }
  2067. #u12251_img {
  2068. border-width:0px;
  2069. position:absolute;
  2070. left:0px;
  2071. top:0px;
  2072. width:113px;
  2073. height:23px;
  2074. }
  2075. #u12251 {
  2076. border-width:0px;
  2077. position:absolute;
  2078. left:285px;
  2079. top:190px;
  2080. width:113px;
  2081. height:23px;
  2082. display:flex;
  2083. }
  2084. #u12251 .text {
  2085. position:absolute;
  2086. align-self:center;
  2087. padding:2px 2px 2px 2px;
  2088. box-sizing:border-box;
  2089. width:100%;
  2090. }
  2091. #u12251_text {
  2092. border-width:0px;
  2093. word-wrap:break-word;
  2094. text-transform:none;
  2095. visibility:hidden;
  2096. }
  2097. #u12252_img {
  2098. border-width:0px;
  2099. position:absolute;
  2100. left:0px;
  2101. top:0px;
  2102. width:113px;
  2103. height:23px;
  2104. }
  2105. #u12252 {
  2106. border-width:0px;
  2107. position:absolute;
  2108. left:398px;
  2109. top:190px;
  2110. width:113px;
  2111. height:23px;
  2112. display:flex;
  2113. }
  2114. #u12252 .text {
  2115. position:absolute;
  2116. align-self:center;
  2117. padding:2px 2px 2px 2px;
  2118. box-sizing:border-box;
  2119. width:100%;
  2120. }
  2121. #u12252_text {
  2122. border-width:0px;
  2123. word-wrap:break-word;
  2124. text-transform:none;
  2125. visibility:hidden;
  2126. }
  2127. #u12253_img {
  2128. border-width:0px;
  2129. position:absolute;
  2130. left:0px;
  2131. top:0px;
  2132. width:113px;
  2133. height:23px;
  2134. }
  2135. #u12253 {
  2136. border-width:0px;
  2137. position:absolute;
  2138. left:511px;
  2139. top:190px;
  2140. width:113px;
  2141. height:23px;
  2142. display:flex;
  2143. }
  2144. #u12253 .text {
  2145. position:absolute;
  2146. align-self:center;
  2147. padding:2px 2px 2px 2px;
  2148. box-sizing:border-box;
  2149. width:100%;
  2150. }
  2151. #u12253_text {
  2152. border-width:0px;
  2153. word-wrap:break-word;
  2154. text-transform:none;
  2155. visibility:hidden;
  2156. }
  2157. #u12254_img {
  2158. border-width:0px;
  2159. position:absolute;
  2160. left:0px;
  2161. top:0px;
  2162. width:113px;
  2163. height:23px;
  2164. }
  2165. #u12254 {
  2166. border-width:0px;
  2167. position:absolute;
  2168. left:624px;
  2169. top:190px;
  2170. width:113px;
  2171. height:23px;
  2172. display:flex;
  2173. }
  2174. #u12254 .text {
  2175. position:absolute;
  2176. align-self:center;
  2177. padding:2px 2px 2px 2px;
  2178. box-sizing:border-box;
  2179. width:100%;
  2180. }
  2181. #u12254_text {
  2182. border-width:0px;
  2183. word-wrap:break-word;
  2184. text-transform:none;
  2185. visibility:hidden;
  2186. }
  2187. #u12255_img {
  2188. border-width:0px;
  2189. position:absolute;
  2190. left:0px;
  2191. top:0px;
  2192. width:113px;
  2193. height:23px;
  2194. }
  2195. #u12255 {
  2196. border-width:0px;
  2197. position:absolute;
  2198. left:737px;
  2199. top:190px;
  2200. width:113px;
  2201. height:23px;
  2202. display:flex;
  2203. }
  2204. #u12255 .text {
  2205. position:absolute;
  2206. align-self:center;
  2207. padding:2px 2px 2px 2px;
  2208. box-sizing:border-box;
  2209. width:100%;
  2210. }
  2211. #u12255_text {
  2212. border-width:0px;
  2213. word-wrap:break-word;
  2214. text-transform:none;
  2215. visibility:hidden;
  2216. }
  2217. #u12256_img {
  2218. border-width:0px;
  2219. position:absolute;
  2220. left:0px;
  2221. top:0px;
  2222. width:110px;
  2223. height:23px;
  2224. }
  2225. #u12256 {
  2226. border-width:0px;
  2227. position:absolute;
  2228. left:850px;
  2229. top:190px;
  2230. width:110px;
  2231. height:23px;
  2232. display:flex;
  2233. }
  2234. #u12256 .text {
  2235. position:absolute;
  2236. align-self:center;
  2237. padding:2px 2px 2px 2px;
  2238. box-sizing:border-box;
  2239. width:100%;
  2240. }
  2241. #u12256_text {
  2242. border-width:0px;
  2243. word-wrap:break-word;
  2244. text-transform:none;
  2245. visibility:hidden;
  2246. }
  2247. #u12257 {
  2248. border-width:0px;
  2249. position:absolute;
  2250. left:0px;
  2251. top:0px;
  2252. width:0px;
  2253. height:0px;
  2254. }
  2255. #u12258_div {
  2256. border-width:0px;
  2257. position:absolute;
  2258. left:0px;
  2259. top:0px;
  2260. width:120px;
  2261. height:30px;
  2262. background:inherit;
  2263. background-color:rgba(255, 255, 255, 1);
  2264. box-sizing:border-box;
  2265. border-width:1px;
  2266. border-style:solid;
  2267. border-color:rgba(201, 201, 201, 1);
  2268. border-radius:4px;
  2269. -moz-box-shadow:none;
  2270. -webkit-box-shadow:none;
  2271. box-shadow:none;
  2272. font-family:'Microsoft YaHei', sans-serif;
  2273. font-weight:400;
  2274. font-style:normal;
  2275. font-size:14px;
  2276. color:#CCCCCC;
  2277. text-align:left;
  2278. }
  2279. #u12258 {
  2280. border-width:0px;
  2281. position:absolute;
  2282. left:2160px;
  2283. top:120px;
  2284. width:120px;
  2285. height:30px;
  2286. display:flex;
  2287. font-family:'Microsoft YaHei', sans-serif;
  2288. font-weight:400;
  2289. font-style:normal;
  2290. font-size:14px;
  2291. color:#CCCCCC;
  2292. text-align:left;
  2293. }
  2294. #u12258 .text {
  2295. position:absolute;
  2296. align-self:center;
  2297. padding:2px 8px 2px 8px;
  2298. box-sizing:border-box;
  2299. width:100%;
  2300. }
  2301. #u12258_text {
  2302. border-width:0px;
  2303. word-wrap:break-word;
  2304. text-transform:none;
  2305. visibility:hidden;
  2306. }
  2307. #u12259_input {
  2308. position:absolute;
  2309. left:0px;
  2310. top:0px;
  2311. width:109px;
  2312. height:25px;
  2313. padding:2px 2px 2px 2px;
  2314. font-family:'Microsoft YaHei', sans-serif;
  2315. font-weight:400;
  2316. font-style:normal;
  2317. font-size:10px;
  2318. letter-spacing:normal;
  2319. color:#000000;
  2320. vertical-align:none;
  2321. text-align:left;
  2322. text-transform:none;
  2323. background-color:transparent;
  2324. border-color:transparent;
  2325. }
  2326. #u12259_input.disabled {
  2327. position:absolute;
  2328. left:0px;
  2329. top:0px;
  2330. width:109px;
  2331. height:25px;
  2332. padding:2px 2px 2px 2px;
  2333. font-family:'Microsoft YaHei', sans-serif;
  2334. font-weight:400;
  2335. font-style:normal;
  2336. font-size:10px;
  2337. letter-spacing:normal;
  2338. color:#000000;
  2339. vertical-align:none;
  2340. text-align:left;
  2341. text-transform:none;
  2342. background-color:transparent;
  2343. border-color:transparent;
  2344. }
  2345. #u12259_div {
  2346. border-width:0px;
  2347. position:absolute;
  2348. left:0px;
  2349. top:0px;
  2350. width:109px;
  2351. height:25px;
  2352. background:inherit;
  2353. background-color:rgba(255, 255, 255, 1);
  2354. border:none;
  2355. border-radius:0px;
  2356. -moz-box-shadow:none;
  2357. -webkit-box-shadow:none;
  2358. box-shadow:none;
  2359. font-family:'Microsoft YaHei', sans-serif;
  2360. font-weight:400;
  2361. font-style:normal;
  2362. font-size:10px;
  2363. }
  2364. #u12259 {
  2365. border-width:0px;
  2366. position:absolute;
  2367. left:2167px;
  2368. top:121px;
  2369. width:109px;
  2370. height:25px;
  2371. display:flex;
  2372. font-family:'Microsoft YaHei', sans-serif;
  2373. font-weight:400;
  2374. font-style:normal;
  2375. font-size:10px;
  2376. }
  2377. #u12259 .text {
  2378. position:absolute;
  2379. align-self:center;
  2380. padding:2px 2px 2px 2px;
  2381. box-sizing:border-box;
  2382. width:100%;
  2383. }
  2384. #u12259_div.disabled {
  2385. border-width:0px;
  2386. position:absolute;
  2387. left:0px;
  2388. top:0px;
  2389. width:109px;
  2390. height:25px;
  2391. background:inherit;
  2392. background-color:rgba(240, 240, 240, 1);
  2393. border:none;
  2394. border-radius:0px;
  2395. -moz-box-shadow:none;
  2396. -webkit-box-shadow:none;
  2397. box-shadow:none;
  2398. font-family:'Microsoft YaHei', sans-serif;
  2399. font-weight:400;
  2400. font-style:normal;
  2401. font-size:10px;
  2402. }
  2403. #u12259.disabled {
  2404. }
  2405. #u12260 {
  2406. border-width:0px;
  2407. position:absolute;
  2408. left:0px;
  2409. top:0px;
  2410. width:0px;
  2411. height:0px;
  2412. }
  2413. #u12261_div {
  2414. border-width:0px;
  2415. position:absolute;
  2416. left:0px;
  2417. top:0px;
  2418. width:120px;
  2419. height:30px;
  2420. background:inherit;
  2421. background-color:rgba(255, 255, 255, 1);
  2422. box-sizing:border-box;
  2423. border-width:1px;
  2424. border-style:solid;
  2425. border-color:rgba(201, 201, 201, 1);
  2426. border-radius:4px;
  2427. -moz-box-shadow:none;
  2428. -webkit-box-shadow:none;
  2429. box-shadow:none;
  2430. font-family:'Microsoft YaHei', sans-serif;
  2431. font-weight:400;
  2432. font-style:normal;
  2433. font-size:14px;
  2434. color:#CCCCCC;
  2435. text-align:left;
  2436. }
  2437. #u12261 {
  2438. border-width:0px;
  2439. position:absolute;
  2440. left:2290px;
  2441. top:120px;
  2442. width:120px;
  2443. height:30px;
  2444. display:flex;
  2445. font-family:'Microsoft YaHei', sans-serif;
  2446. font-weight:400;
  2447. font-style:normal;
  2448. font-size:14px;
  2449. color:#CCCCCC;
  2450. text-align:left;
  2451. }
  2452. #u12261 .text {
  2453. position:absolute;
  2454. align-self:center;
  2455. padding:2px 8px 2px 8px;
  2456. box-sizing:border-box;
  2457. width:100%;
  2458. }
  2459. #u12261_text {
  2460. border-width:0px;
  2461. word-wrap:break-word;
  2462. text-transform:none;
  2463. visibility:hidden;
  2464. }
  2465. #u12262_input {
  2466. position:absolute;
  2467. left:0px;
  2468. top:0px;
  2469. width:109px;
  2470. height:25px;
  2471. padding:2px 2px 2px 2px;
  2472. font-family:'Microsoft YaHei', sans-serif;
  2473. font-weight:400;
  2474. font-style:normal;
  2475. font-size:10px;
  2476. letter-spacing:normal;
  2477. color:#000000;
  2478. vertical-align:none;
  2479. text-align:left;
  2480. text-transform:none;
  2481. background-color:transparent;
  2482. border-color:transparent;
  2483. }
  2484. #u12262_input.disabled {
  2485. position:absolute;
  2486. left:0px;
  2487. top:0px;
  2488. width:109px;
  2489. height:25px;
  2490. padding:2px 2px 2px 2px;
  2491. font-family:'Microsoft YaHei', sans-serif;
  2492. font-weight:400;
  2493. font-style:normal;
  2494. font-size:10px;
  2495. letter-spacing:normal;
  2496. color:#000000;
  2497. vertical-align:none;
  2498. text-align:left;
  2499. text-transform:none;
  2500. background-color:transparent;
  2501. border-color:transparent;
  2502. }
  2503. #u12262_div {
  2504. border-width:0px;
  2505. position:absolute;
  2506. left:0px;
  2507. top:0px;
  2508. width:109px;
  2509. height:25px;
  2510. background:inherit;
  2511. background-color:rgba(255, 255, 255, 1);
  2512. border:none;
  2513. border-radius:0px;
  2514. -moz-box-shadow:none;
  2515. -webkit-box-shadow:none;
  2516. box-shadow:none;
  2517. font-family:'Microsoft YaHei', sans-serif;
  2518. font-weight:400;
  2519. font-style:normal;
  2520. font-size:10px;
  2521. }
  2522. #u12262 {
  2523. border-width:0px;
  2524. position:absolute;
  2525. left:2297px;
  2526. top:121px;
  2527. width:109px;
  2528. height:25px;
  2529. display:flex;
  2530. font-family:'Microsoft YaHei', sans-serif;
  2531. font-weight:400;
  2532. font-style:normal;
  2533. font-size:10px;
  2534. }
  2535. #u12262 .text {
  2536. position:absolute;
  2537. align-self:center;
  2538. padding:2px 2px 2px 2px;
  2539. box-sizing:border-box;
  2540. width:100%;
  2541. }
  2542. #u12262_div.disabled {
  2543. border-width:0px;
  2544. position:absolute;
  2545. left:0px;
  2546. top:0px;
  2547. width:109px;
  2548. height:25px;
  2549. background:inherit;
  2550. background-color:rgba(240, 240, 240, 1);
  2551. border:none;
  2552. border-radius:0px;
  2553. -moz-box-shadow:none;
  2554. -webkit-box-shadow:none;
  2555. box-shadow:none;
  2556. font-family:'Microsoft YaHei', sans-serif;
  2557. font-weight:400;
  2558. font-style:normal;
  2559. font-size:10px;
  2560. }
  2561. #u12262.disabled {
  2562. }
  2563. #u12263 {
  2564. border-width:0px;
  2565. position:absolute;
  2566. left:0px;
  2567. top:0px;
  2568. width:0px;
  2569. height:0px;
  2570. }
  2571. #u12264_div {
  2572. border-width:0px;
  2573. position:absolute;
  2574. left:0px;
  2575. top:0px;
  2576. width:60px;
  2577. height:30px;
  2578. background:inherit;
  2579. background-color:rgba(24, 144, 255, 1);
  2580. border:none;
  2581. border-radius:4px;
  2582. -moz-box-shadow:none;
  2583. -webkit-box-shadow:none;
  2584. box-shadow:none;
  2585. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2586. font-weight:400;
  2587. font-style:normal;
  2588. font-size:14px;
  2589. color:#FFFFFF;
  2590. }
  2591. #u12264 {
  2592. border-width:0px;
  2593. position:absolute;
  2594. left:2420px;
  2595. top:120px;
  2596. width:60px;
  2597. height:30px;
  2598. display:flex;
  2599. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2600. font-weight:400;
  2601. font-style:normal;
  2602. font-size:14px;
  2603. color:#FFFFFF;
  2604. }
  2605. #u12264 .text {
  2606. position:absolute;
  2607. align-self:center;
  2608. padding:2px 2px 2px 2px;
  2609. box-sizing:border-box;
  2610. width:100%;
  2611. }
  2612. #u12264_text {
  2613. border-width:0px;
  2614. word-wrap:break-word;
  2615. text-transform:none;
  2616. }
  2617. #u12265_div {
  2618. border-width:0px;
  2619. position:absolute;
  2620. left:0px;
  2621. top:0px;
  2622. width:60px;
  2623. height:30px;
  2624. background:inherit;
  2625. background-color:rgba(255, 255, 255, 1);
  2626. box-sizing:border-box;
  2627. border-width:1px;
  2628. border-style:solid;
  2629. border-color:rgba(170, 170, 170, 1);
  2630. border-radius:4px;
  2631. -moz-box-shadow:none;
  2632. -webkit-box-shadow:none;
  2633. box-shadow:none;
  2634. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2635. font-weight:400;
  2636. font-style:normal;
  2637. font-size:14px;
  2638. }
  2639. #u12265 {
  2640. border-width:0px;
  2641. position:absolute;
  2642. left:2490px;
  2643. top:120px;
  2644. width:60px;
  2645. height:30px;
  2646. display:flex;
  2647. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2648. font-weight:400;
  2649. font-style:normal;
  2650. font-size:14px;
  2651. }
  2652. #u12265 .text {
  2653. position:absolute;
  2654. align-self:center;
  2655. padding:2px 2px 2px 2px;
  2656. box-sizing:border-box;
  2657. width:100%;
  2658. }
  2659. #u12265_text {
  2660. border-width:0px;
  2661. word-wrap:break-word;
  2662. text-transform:none;
  2663. }
  2664. #u12266 {
  2665. border-width:0px;
  2666. position:absolute;
  2667. left:0px;
  2668. top:0px;
  2669. width:0px;
  2670. height:0px;
  2671. }
  2672. #u12267_div {
  2673. border-width:0px;
  2674. position:absolute;
  2675. left:0px;
  2676. top:0px;
  2677. width:120px;
  2678. height:30px;
  2679. background:inherit;
  2680. background-color:rgba(255, 255, 255, 1);
  2681. box-sizing:border-box;
  2682. border-width:1px;
  2683. border-style:solid;
  2684. border-color:rgba(215, 215, 215, 1);
  2685. border-radius:4px;
  2686. -moz-box-shadow:none;
  2687. -webkit-box-shadow:none;
  2688. box-shadow:none;
  2689. font-size:14px;
  2690. }
  2691. #u12267 {
  2692. border-width:0px;
  2693. position:absolute;
  2694. left:1900px;
  2695. top:120px;
  2696. width:120px;
  2697. height:30px;
  2698. display:flex;
  2699. font-size:14px;
  2700. }
  2701. #u12267 .text {
  2702. position:absolute;
  2703. align-self:center;
  2704. padding:2px 2px 2px 2px;
  2705. box-sizing:border-box;
  2706. width:100%;
  2707. }
  2708. #u12267_text {
  2709. border-width:0px;
  2710. word-wrap:break-word;
  2711. text-transform:none;
  2712. visibility:hidden;
  2713. }
  2714. #u12268_input {
  2715. position:absolute;
  2716. left:0px;
  2717. top:0px;
  2718. width:115px;
  2719. height:23px;
  2720. padding:2px 2px 2px 2px;
  2721. font-family:'ArialMT', 'Arial', sans-serif;
  2722. font-weight:400;
  2723. font-style:normal;
  2724. font-size:14px;
  2725. letter-spacing:normal;
  2726. color:#AAAAAA;
  2727. vertical-align:none;
  2728. text-align:left;
  2729. text-transform:none;
  2730. background-color:transparent;
  2731. border-color:transparent;
  2732. }
  2733. #u12268_input.disabled {
  2734. position:absolute;
  2735. left:0px;
  2736. top:0px;
  2737. width:115px;
  2738. height:23px;
  2739. padding:2px 2px 2px 2px;
  2740. font-family:'ArialMT', 'Arial', sans-serif;
  2741. font-weight:400;
  2742. font-style:normal;
  2743. font-size:14px;
  2744. letter-spacing:normal;
  2745. color:#AAAAAA;
  2746. vertical-align:none;
  2747. text-align:left;
  2748. text-transform:none;
  2749. background-color:transparent;
  2750. border-color:transparent;
  2751. }
  2752. #u12268_div {
  2753. border-width:0px;
  2754. position:absolute;
  2755. left:0px;
  2756. top:0px;
  2757. width:115px;
  2758. height:23px;
  2759. background:inherit;
  2760. background-color:rgba(255, 255, 255, 1);
  2761. border:none;
  2762. border-radius:0px;
  2763. -moz-box-shadow:none;
  2764. -webkit-box-shadow:none;
  2765. box-shadow:none;
  2766. font-size:14px;
  2767. color:#AAAAAA;
  2768. }
  2769. #u12268 {
  2770. border-width:0px;
  2771. position:absolute;
  2772. left:1903px;
  2773. top:122px;
  2774. width:115px;
  2775. height:23px;
  2776. display:flex;
  2777. font-size:14px;
  2778. color:#AAAAAA;
  2779. }
  2780. #u12268 .text {
  2781. position:absolute;
  2782. align-self:flex-start;
  2783. padding:2px 2px 2px 2px;
  2784. box-sizing:border-box;
  2785. width:100%;
  2786. }
  2787. #u12268_div.disabled {
  2788. border-width:0px;
  2789. position:absolute;
  2790. left:0px;
  2791. top:0px;
  2792. width:115px;
  2793. height:23px;
  2794. background:inherit;
  2795. background-color:rgba(240, 240, 240, 1);
  2796. border:none;
  2797. border-radius:0px;
  2798. -moz-box-shadow:none;
  2799. -webkit-box-shadow:none;
  2800. box-shadow:none;
  2801. font-size:14px;
  2802. color:#AAAAAA;
  2803. }
  2804. #u12268.disabled {
  2805. }
  2806. .u12268_input_option {
  2807. font-size:14px;
  2808. }
  2809. #u12269 {
  2810. border-width:0px;
  2811. position:absolute;
  2812. left:0px;
  2813. top:0px;
  2814. width:0px;
  2815. height:0px;
  2816. }
  2817. #u12270_div {
  2818. border-width:0px;
  2819. position:absolute;
  2820. left:0px;
  2821. top:0px;
  2822. width:120px;
  2823. height:30px;
  2824. background:inherit;
  2825. background-color:rgba(255, 255, 255, 1);
  2826. box-sizing:border-box;
  2827. border-width:1px;
  2828. border-style:solid;
  2829. border-color:rgba(215, 215, 215, 1);
  2830. border-radius:4px;
  2831. -moz-box-shadow:none;
  2832. -webkit-box-shadow:none;
  2833. box-shadow:none;
  2834. font-size:14px;
  2835. }
  2836. #u12270 {
  2837. border-width:0px;
  2838. position:absolute;
  2839. left:1770px;
  2840. top:120px;
  2841. width:120px;
  2842. height:30px;
  2843. display:flex;
  2844. font-size:14px;
  2845. }
  2846. #u12270 .text {
  2847. position:absolute;
  2848. align-self:center;
  2849. padding:2px 2px 2px 2px;
  2850. box-sizing:border-box;
  2851. width:100%;
  2852. }
  2853. #u12270_text {
  2854. border-width:0px;
  2855. word-wrap:break-word;
  2856. text-transform:none;
  2857. visibility:hidden;
  2858. }
  2859. #u12271_input {
  2860. position:absolute;
  2861. left:0px;
  2862. top:0px;
  2863. width:115px;
  2864. height:23px;
  2865. padding:2px 2px 2px 2px;
  2866. font-family:'ArialMT', 'Arial', sans-serif;
  2867. font-weight:400;
  2868. font-style:normal;
  2869. font-size:14px;
  2870. letter-spacing:normal;
  2871. color:#AAAAAA;
  2872. vertical-align:none;
  2873. text-align:left;
  2874. text-transform:none;
  2875. background-color:transparent;
  2876. border-color:transparent;
  2877. }
  2878. #u12271_input.disabled {
  2879. position:absolute;
  2880. left:0px;
  2881. top:0px;
  2882. width:115px;
  2883. height:23px;
  2884. padding:2px 2px 2px 2px;
  2885. font-family:'ArialMT', 'Arial', sans-serif;
  2886. font-weight:400;
  2887. font-style:normal;
  2888. font-size:14px;
  2889. letter-spacing:normal;
  2890. color:#AAAAAA;
  2891. vertical-align:none;
  2892. text-align:left;
  2893. text-transform:none;
  2894. background-color:transparent;
  2895. border-color:transparent;
  2896. }
  2897. #u12271_div {
  2898. border-width:0px;
  2899. position:absolute;
  2900. left:0px;
  2901. top:0px;
  2902. width:115px;
  2903. height:23px;
  2904. background:inherit;
  2905. background-color:rgba(255, 255, 255, 1);
  2906. border:none;
  2907. border-radius:0px;
  2908. -moz-box-shadow:none;
  2909. -webkit-box-shadow:none;
  2910. box-shadow:none;
  2911. font-size:14px;
  2912. color:#AAAAAA;
  2913. }
  2914. #u12271 {
  2915. border-width:0px;
  2916. position:absolute;
  2917. left:1773px;
  2918. top:122px;
  2919. width:115px;
  2920. height:23px;
  2921. display:flex;
  2922. font-size:14px;
  2923. color:#AAAAAA;
  2924. }
  2925. #u12271 .text {
  2926. position:absolute;
  2927. align-self:flex-start;
  2928. padding:2px 2px 2px 2px;
  2929. box-sizing:border-box;
  2930. width:100%;
  2931. }
  2932. #u12271_div.disabled {
  2933. border-width:0px;
  2934. position:absolute;
  2935. left:0px;
  2936. top:0px;
  2937. width:115px;
  2938. height:23px;
  2939. background:inherit;
  2940. background-color:rgba(240, 240, 240, 1);
  2941. border:none;
  2942. border-radius:0px;
  2943. -moz-box-shadow:none;
  2944. -webkit-box-shadow:none;
  2945. box-shadow:none;
  2946. font-size:14px;
  2947. color:#AAAAAA;
  2948. }
  2949. #u12271.disabled {
  2950. }
  2951. .u12271_input_option {
  2952. font-size:14px;
  2953. }
  2954. #u12272 {
  2955. border-width:0px;
  2956. position:absolute;
  2957. left:0px;
  2958. top:0px;
  2959. width:0px;
  2960. height:0px;
  2961. }
  2962. #u12273_div {
  2963. border-width:0px;
  2964. position:absolute;
  2965. left:0px;
  2966. top:0px;
  2967. width:120px;
  2968. height:30px;
  2969. background:inherit;
  2970. background-color:rgba(255, 255, 255, 1);
  2971. box-sizing:border-box;
  2972. border-width:1px;
  2973. border-style:solid;
  2974. border-color:rgba(215, 215, 215, 1);
  2975. border-radius:4px;
  2976. -moz-box-shadow:none;
  2977. -webkit-box-shadow:none;
  2978. box-shadow:none;
  2979. font-size:14px;
  2980. }
  2981. #u12273 {
  2982. border-width:0px;
  2983. position:absolute;
  2984. left:1640px;
  2985. top:120px;
  2986. width:120px;
  2987. height:30px;
  2988. display:flex;
  2989. font-size:14px;
  2990. }
  2991. #u12273 .text {
  2992. position:absolute;
  2993. align-self:center;
  2994. padding:2px 2px 2px 2px;
  2995. box-sizing:border-box;
  2996. width:100%;
  2997. }
  2998. #u12273_text {
  2999. border-width:0px;
  3000. word-wrap:break-word;
  3001. text-transform:none;
  3002. visibility:hidden;
  3003. }
  3004. #u12274_input {
  3005. position:absolute;
  3006. left:0px;
  3007. top:0px;
  3008. width:115px;
  3009. height:23px;
  3010. padding:2px 2px 2px 2px;
  3011. font-family:'ArialMT', 'Arial', sans-serif;
  3012. font-weight:400;
  3013. font-style:normal;
  3014. font-size:14px;
  3015. letter-spacing:normal;
  3016. color:#AAAAAA;
  3017. vertical-align:none;
  3018. text-align:left;
  3019. text-transform:none;
  3020. background-color:transparent;
  3021. border-color:transparent;
  3022. }
  3023. #u12274_input.disabled {
  3024. position:absolute;
  3025. left:0px;
  3026. top:0px;
  3027. width:115px;
  3028. height:23px;
  3029. padding:2px 2px 2px 2px;
  3030. font-family:'ArialMT', 'Arial', sans-serif;
  3031. font-weight:400;
  3032. font-style:normal;
  3033. font-size:14px;
  3034. letter-spacing:normal;
  3035. color:#AAAAAA;
  3036. vertical-align:none;
  3037. text-align:left;
  3038. text-transform:none;
  3039. background-color:transparent;
  3040. border-color:transparent;
  3041. }
  3042. #u12274_div {
  3043. border-width:0px;
  3044. position:absolute;
  3045. left:0px;
  3046. top:0px;
  3047. width:115px;
  3048. height:23px;
  3049. background:inherit;
  3050. background-color:rgba(255, 255, 255, 1);
  3051. border:none;
  3052. border-radius:0px;
  3053. -moz-box-shadow:none;
  3054. -webkit-box-shadow:none;
  3055. box-shadow:none;
  3056. font-size:14px;
  3057. color:#AAAAAA;
  3058. }
  3059. #u12274 {
  3060. border-width:0px;
  3061. position:absolute;
  3062. left:1643px;
  3063. top:122px;
  3064. width:115px;
  3065. height:23px;
  3066. display:flex;
  3067. font-size:14px;
  3068. color:#AAAAAA;
  3069. }
  3070. #u12274 .text {
  3071. position:absolute;
  3072. align-self:flex-start;
  3073. padding:2px 2px 2px 2px;
  3074. box-sizing:border-box;
  3075. width:100%;
  3076. }
  3077. #u12274_div.disabled {
  3078. border-width:0px;
  3079. position:absolute;
  3080. left:0px;
  3081. top:0px;
  3082. width:115px;
  3083. height:23px;
  3084. background:inherit;
  3085. background-color:rgba(240, 240, 240, 1);
  3086. border:none;
  3087. border-radius:0px;
  3088. -moz-box-shadow:none;
  3089. -webkit-box-shadow:none;
  3090. box-shadow:none;
  3091. font-size:14px;
  3092. color:#AAAAAA;
  3093. }
  3094. #u12274.disabled {
  3095. }
  3096. .u12274_input_option {
  3097. font-size:14px;
  3098. }
  3099. #u12275 {
  3100. border-width:0px;
  3101. position:absolute;
  3102. left:0px;
  3103. top:0px;
  3104. width:0px;
  3105. height:0px;
  3106. }
  3107. #u12276_div {
  3108. border-width:0px;
  3109. position:absolute;
  3110. left:0px;
  3111. top:0px;
  3112. width:120px;
  3113. height:30px;
  3114. background:inherit;
  3115. background-color:rgba(255, 255, 255, 1);
  3116. box-sizing:border-box;
  3117. border-width:1px;
  3118. border-style:solid;
  3119. border-color:rgba(201, 201, 201, 1);
  3120. border-radius:4px;
  3121. -moz-box-shadow:none;
  3122. -webkit-box-shadow:none;
  3123. box-shadow:none;
  3124. font-family:'Microsoft YaHei', sans-serif;
  3125. font-weight:400;
  3126. font-style:normal;
  3127. font-size:14px;
  3128. color:#CCCCCC;
  3129. text-align:left;
  3130. }
  3131. #u12276 {
  3132. border-width:0px;
  3133. position:absolute;
  3134. left:2030px;
  3135. top:120px;
  3136. width:120px;
  3137. height:30px;
  3138. display:flex;
  3139. font-family:'Microsoft YaHei', sans-serif;
  3140. font-weight:400;
  3141. font-style:normal;
  3142. font-size:14px;
  3143. color:#CCCCCC;
  3144. text-align:left;
  3145. }
  3146. #u12276 .text {
  3147. position:absolute;
  3148. align-self:center;
  3149. padding:2px 8px 2px 8px;
  3150. box-sizing:border-box;
  3151. width:100%;
  3152. }
  3153. #u12276_text {
  3154. border-width:0px;
  3155. word-wrap:break-word;
  3156. text-transform:none;
  3157. visibility:hidden;
  3158. }
  3159. #u12277_input {
  3160. position:absolute;
  3161. left:0px;
  3162. top:0px;
  3163. width:109px;
  3164. height:25px;
  3165. padding:2px 2px 2px 2px;
  3166. font-family:'Microsoft YaHei', sans-serif;
  3167. font-weight:400;
  3168. font-style:normal;
  3169. font-size:10px;
  3170. letter-spacing:normal;
  3171. color:#000000;
  3172. vertical-align:none;
  3173. text-align:left;
  3174. text-transform:none;
  3175. background-color:transparent;
  3176. border-color:transparent;
  3177. }
  3178. #u12277_input.disabled {
  3179. position:absolute;
  3180. left:0px;
  3181. top:0px;
  3182. width:109px;
  3183. height:25px;
  3184. padding:2px 2px 2px 2px;
  3185. font-family:'Microsoft YaHei', sans-serif;
  3186. font-weight:400;
  3187. font-style:normal;
  3188. font-size:10px;
  3189. letter-spacing:normal;
  3190. color:#000000;
  3191. vertical-align:none;
  3192. text-align:left;
  3193. text-transform:none;
  3194. background-color:transparent;
  3195. border-color:transparent;
  3196. }
  3197. #u12277_div {
  3198. border-width:0px;
  3199. position:absolute;
  3200. left:0px;
  3201. top:0px;
  3202. width:109px;
  3203. height:25px;
  3204. background:inherit;
  3205. background-color:rgba(255, 255, 255, 1);
  3206. border:none;
  3207. border-radius:0px;
  3208. -moz-box-shadow:none;
  3209. -webkit-box-shadow:none;
  3210. box-shadow:none;
  3211. font-family:'Microsoft YaHei', sans-serif;
  3212. font-weight:400;
  3213. font-style:normal;
  3214. font-size:10px;
  3215. }
  3216. #u12277 {
  3217. border-width:0px;
  3218. position:absolute;
  3219. left:2037px;
  3220. top:121px;
  3221. width:109px;
  3222. height:25px;
  3223. display:flex;
  3224. font-family:'Microsoft YaHei', sans-serif;
  3225. font-weight:400;
  3226. font-style:normal;
  3227. font-size:10px;
  3228. }
  3229. #u12277 .text {
  3230. position:absolute;
  3231. align-self:center;
  3232. padding:2px 2px 2px 2px;
  3233. box-sizing:border-box;
  3234. width:100%;
  3235. }
  3236. #u12277_div.disabled {
  3237. border-width:0px;
  3238. position:absolute;
  3239. left:0px;
  3240. top:0px;
  3241. width:109px;
  3242. height:25px;
  3243. background:inherit;
  3244. background-color:rgba(240, 240, 240, 1);
  3245. border:none;
  3246. border-radius:0px;
  3247. -moz-box-shadow:none;
  3248. -webkit-box-shadow:none;
  3249. box-shadow:none;
  3250. font-family:'Microsoft YaHei', sans-serif;
  3251. font-weight:400;
  3252. font-style:normal;
  3253. font-size:10px;
  3254. }
  3255. #u12277.disabled {
  3256. }
  3257. #u12279_div {
  3258. border-width:0px;
  3259. position:absolute;
  3260. left:0px;
  3261. top:0px;
  3262. width:1480px;
  3263. height:1200px;
  3264. background:inherit;
  3265. background-color:rgba(242, 242, 242, 1);
  3266. border:none;
  3267. border-radius:0px;
  3268. -moz-box-shadow:none;
  3269. -webkit-box-shadow:none;
  3270. box-shadow:none;
  3271. }
  3272. #u12279 {
  3273. border-width:0px;
  3274. position:absolute;
  3275. left:120px;
  3276. top:50px;
  3277. width:1480px;
  3278. height:1200px;
  3279. display:flex;
  3280. }
  3281. #u12279 .text {
  3282. position:absolute;
  3283. align-self:center;
  3284. padding:2px 2px 2px 2px;
  3285. box-sizing:border-box;
  3286. width:100%;
  3287. }
  3288. #u12279_text {
  3289. border-width:0px;
  3290. word-wrap:break-word;
  3291. text-transform:none;
  3292. visibility:hidden;
  3293. }
  3294. #u12280_div {
  3295. border-width:0px;
  3296. position:absolute;
  3297. left:0px;
  3298. top:0px;
  3299. width:129px;
  3300. height:22px;
  3301. background:inherit;
  3302. background-color:rgba(255, 255, 255, 0);
  3303. border:none;
  3304. border-radius:0px;
  3305. -moz-box-shadow:none;
  3306. -webkit-box-shadow:none;
  3307. box-shadow:none;
  3308. font-size:16px;
  3309. color:#FFFFFF;
  3310. }
  3311. #u12280 {
  3312. border-width:0px;
  3313. position:absolute;
  3314. left:49px;
  3315. top:14px;
  3316. width:129px;
  3317. height:22px;
  3318. display:flex;
  3319. font-size:16px;
  3320. color:#FFFFFF;
  3321. }
  3322. #u12280 .text {
  3323. position:absolute;
  3324. align-self:flex-start;
  3325. padding:0px 0px 0px 0px;
  3326. box-sizing:border-box;
  3327. width:100%;
  3328. }
  3329. #u12280_text {
  3330. border-width:0px;
  3331. white-space:nowrap;
  3332. text-transform:none;
  3333. }
  3334. #u12281_div {
  3335. border-width:0px;
  3336. position:absolute;
  3337. left:0px;
  3338. top:0px;
  3339. width:1600px;
  3340. height:50px;
  3341. background:inherit;
  3342. background-color:rgba(30, 42, 68, 1);
  3343. border:none;
  3344. border-radius:0px;
  3345. -moz-box-shadow:none;
  3346. -webkit-box-shadow:none;
  3347. box-shadow:none;
  3348. color:#AFB3B6;
  3349. }
  3350. #u12281 {
  3351. border-width:0px;
  3352. position:absolute;
  3353. left:0px;
  3354. top:0px;
  3355. width:1600px;
  3356. height:50px;
  3357. display:flex;
  3358. color:#AFB3B6;
  3359. }
  3360. #u12281 .text {
  3361. position:absolute;
  3362. align-self:center;
  3363. padding:2px 2px 2px 2px;
  3364. box-sizing:border-box;
  3365. width:100%;
  3366. }
  3367. #u12281_text {
  3368. border-width:0px;
  3369. word-wrap:break-word;
  3370. text-transform:none;
  3371. visibility:hidden;
  3372. }
  3373. #u12282 {
  3374. border-width:0px;
  3375. position:absolute;
  3376. left:0px;
  3377. top:0px;
  3378. width:0px;
  3379. height:0px;
  3380. }
  3381. #u12283_img {
  3382. border-width:0px;
  3383. position:absolute;
  3384. left:0px;
  3385. top:0px;
  3386. width:31px;
  3387. height:31px;
  3388. }
  3389. #u12283 {
  3390. border-width:0px;
  3391. position:absolute;
  3392. left:19px;
  3393. top:10px;
  3394. width:31px;
  3395. height:31px;
  3396. display:flex;
  3397. }
  3398. #u12283 .text {
  3399. position:absolute;
  3400. align-self:center;
  3401. padding:2px 2px 2px 2px;
  3402. box-sizing:border-box;
  3403. width:100%;
  3404. }
  3405. #u12283_text {
  3406. border-width:0px;
  3407. word-wrap:break-word;
  3408. text-transform:none;
  3409. }
  3410. #u12284_div {
  3411. border-width:0px;
  3412. position:absolute;
  3413. left:0px;
  3414. top:0px;
  3415. width:161px;
  3416. height:22px;
  3417. background:inherit;
  3418. background-color:rgba(255, 255, 255, 0);
  3419. border:none;
  3420. border-radius:0px;
  3421. -moz-box-shadow:none;
  3422. -webkit-box-shadow:none;
  3423. box-shadow:none;
  3424. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3425. font-weight:400;
  3426. font-style:normal;
  3427. font-size:16px;
  3428. color:#FFFFFF;
  3429. }
  3430. #u12284 {
  3431. border-width:0px;
  3432. position:absolute;
  3433. left:62px;
  3434. top:14px;
  3435. width:161px;
  3436. height:22px;
  3437. display:flex;
  3438. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3439. font-weight:400;
  3440. font-style:normal;
  3441. font-size:16px;
  3442. color:#FFFFFF;
  3443. }
  3444. #u12284 .text {
  3445. position:absolute;
  3446. align-self:flex-start;
  3447. padding:0px 0px 0px 0px;
  3448. box-sizing:border-box;
  3449. width:100%;
  3450. }
  3451. #u12284_text {
  3452. border-width:0px;
  3453. white-space:nowrap;
  3454. text-transform:none;
  3455. }
  3456. #u12285_div {
  3457. border-width:0px;
  3458. position:absolute;
  3459. left:0px;
  3460. top:0px;
  3461. width:120px;
  3462. height:1200px;
  3463. background:inherit;
  3464. background-color:rgba(30, 42, 68, 1);
  3465. border:none;
  3466. border-radius:0px;
  3467. -moz-box-shadow:none;
  3468. -webkit-box-shadow:none;
  3469. box-shadow:none;
  3470. color:#AFB3B6;
  3471. }
  3472. #u12285 {
  3473. border-width:0px;
  3474. position:absolute;
  3475. left:0px;
  3476. top:47px;
  3477. width:120px;
  3478. height:1200px;
  3479. display:flex;
  3480. color:#AFB3B6;
  3481. }
  3482. #u12285 .text {
  3483. position:absolute;
  3484. align-self:center;
  3485. padding:2px 2px 2px 2px;
  3486. box-sizing:border-box;
  3487. width:100%;
  3488. }
  3489. #u12285_text {
  3490. border-width:0px;
  3491. word-wrap:break-word;
  3492. text-transform:none;
  3493. visibility:hidden;
  3494. }
  3495. #u12286 {
  3496. border-width:0px;
  3497. position:absolute;
  3498. left:0px;
  3499. top:0px;
  3500. width:0px;
  3501. height:0px;
  3502. }
  3503. #u12287_div {
  3504. border-width:0px;
  3505. position:absolute;
  3506. left:0px;
  3507. top:0px;
  3508. width:33px;
  3509. height:22px;
  3510. background:inherit;
  3511. background-color:rgba(255, 255, 255, 0);
  3512. border:none;
  3513. border-radius:0px;
  3514. -moz-box-shadow:none;
  3515. -webkit-box-shadow:none;
  3516. box-shadow:none;
  3517. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3518. font-weight:400;
  3519. font-style:normal;
  3520. font-size:16px;
  3521. color:#FFFFFF;
  3522. }
  3523. #u12287 {
  3524. border-width:0px;
  3525. position:absolute;
  3526. left:39px;
  3527. top:171px;
  3528. width:33px;
  3529. height:22px;
  3530. display:flex;
  3531. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3532. font-weight:400;
  3533. font-style:normal;
  3534. font-size:16px;
  3535. color:#FFFFFF;
  3536. }
  3537. #u12287 .text {
  3538. position:absolute;
  3539. align-self:flex-start;
  3540. padding:0px 0px 0px 0px;
  3541. box-sizing:border-box;
  3542. width:100%;
  3543. }
  3544. #u12287_text {
  3545. border-width:0px;
  3546. white-space:nowrap;
  3547. text-transform:none;
  3548. }
  3549. #u12288_img {
  3550. border-width:0px;
  3551. position:absolute;
  3552. left:0px;
  3553. top:0px;
  3554. width:14px;
  3555. height:14px;
  3556. }
  3557. #u12288 {
  3558. border-width:0px;
  3559. position:absolute;
  3560. left:20px;
  3561. top:175px;
  3562. width:14px;
  3563. height:14px;
  3564. display:flex;
  3565. }
  3566. #u12288 .text {
  3567. position:absolute;
  3568. align-self:center;
  3569. padding:2px 2px 2px 2px;
  3570. box-sizing:border-box;
  3571. width:100%;
  3572. }
  3573. #u12288_text {
  3574. border-width:0px;
  3575. word-wrap:break-word;
  3576. text-transform:none;
  3577. visibility:hidden;
  3578. }
  3579. #u12289 {
  3580. border-width:0px;
  3581. position:absolute;
  3582. left:0px;
  3583. top:0px;
  3584. width:0px;
  3585. height:0px;
  3586. }
  3587. #u12290_div {
  3588. border-width:0px;
  3589. position:absolute;
  3590. left:0px;
  3591. top:0px;
  3592. width:33px;
  3593. height:22px;
  3594. background:inherit;
  3595. background-color:rgba(255, 255, 255, 0);
  3596. border:none;
  3597. border-radius:0px;
  3598. -moz-box-shadow:none;
  3599. -webkit-box-shadow:none;
  3600. box-shadow:none;
  3601. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3602. font-weight:400;
  3603. font-style:normal;
  3604. font-size:16px;
  3605. color:#FFFFFF;
  3606. }
  3607. #u12290 {
  3608. border-width:0px;
  3609. position:absolute;
  3610. left:39px;
  3611. top:381px;
  3612. width:33px;
  3613. height:22px;
  3614. display:flex;
  3615. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3616. font-weight:400;
  3617. font-style:normal;
  3618. font-size:16px;
  3619. color:#FFFFFF;
  3620. }
  3621. #u12290 .text {
  3622. position:absolute;
  3623. align-self:flex-start;
  3624. padding:0px 0px 0px 0px;
  3625. box-sizing:border-box;
  3626. width:100%;
  3627. }
  3628. #u12290_text {
  3629. border-width:0px;
  3630. white-space:nowrap;
  3631. text-transform:none;
  3632. }
  3633. #u12291_img {
  3634. border-width:0px;
  3635. position:absolute;
  3636. left:0px;
  3637. top:0px;
  3638. width:14px;
  3639. height:14px;
  3640. }
  3641. #u12291 {
  3642. border-width:0px;
  3643. position:absolute;
  3644. left:20px;
  3645. top:385px;
  3646. width:14px;
  3647. height:14px;
  3648. display:flex;
  3649. }
  3650. #u12291 .text {
  3651. position:absolute;
  3652. align-self:center;
  3653. padding:2px 2px 2px 2px;
  3654. box-sizing:border-box;
  3655. width:100%;
  3656. }
  3657. #u12291_text {
  3658. border-width:0px;
  3659. word-wrap:break-word;
  3660. text-transform:none;
  3661. visibility:hidden;
  3662. }
  3663. #u12292 {
  3664. border-width:0px;
  3665. position:absolute;
  3666. left:0px;
  3667. top:0px;
  3668. width:0px;
  3669. height:0px;
  3670. }
  3671. #u12293_div {
  3672. border-width:0px;
  3673. position:absolute;
  3674. left:0px;
  3675. top:0px;
  3676. width:49px;
  3677. height:22px;
  3678. background:inherit;
  3679. background-color:rgba(255, 255, 255, 0);
  3680. border:none;
  3681. border-radius:0px;
  3682. -moz-box-shadow:none;
  3683. -webkit-box-shadow:none;
  3684. box-shadow:none;
  3685. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3686. font-weight:400;
  3687. font-style:normal;
  3688. font-size:16px;
  3689. color:#FFFFFF;
  3690. }
  3691. #u12293 {
  3692. border-width:0px;
  3693. position:absolute;
  3694. left:39px;
  3695. top:133px;
  3696. width:49px;
  3697. height:22px;
  3698. display:flex;
  3699. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3700. font-weight:400;
  3701. font-style:normal;
  3702. font-size:16px;
  3703. color:#FFFFFF;
  3704. }
  3705. #u12293 .text {
  3706. position:absolute;
  3707. align-self:flex-start;
  3708. padding:0px 0px 0px 0px;
  3709. box-sizing:border-box;
  3710. width:100%;
  3711. }
  3712. #u12293_text {
  3713. border-width:0px;
  3714. white-space:nowrap;
  3715. text-transform:none;
  3716. }
  3717. #u12294_img {
  3718. border-width:0px;
  3719. position:absolute;
  3720. left:0px;
  3721. top:0px;
  3722. width:14px;
  3723. height:14px;
  3724. }
  3725. #u12294 {
  3726. border-width:0px;
  3727. position:absolute;
  3728. left:20px;
  3729. top:137px;
  3730. width:14px;
  3731. height:14px;
  3732. display:flex;
  3733. }
  3734. #u12294 .text {
  3735. position:absolute;
  3736. align-self:center;
  3737. padding:2px 2px 2px 2px;
  3738. box-sizing:border-box;
  3739. width:100%;
  3740. }
  3741. #u12294_text {
  3742. border-width:0px;
  3743. word-wrap:break-word;
  3744. text-transform:none;
  3745. visibility:hidden;
  3746. }
  3747. #u12295 {
  3748. border-width:0px;
  3749. position:absolute;
  3750. left:0px;
  3751. top:0px;
  3752. width:0px;
  3753. height:0px;
  3754. }
  3755. #u12296_div {
  3756. border-width:0px;
  3757. position:absolute;
  3758. left:0px;
  3759. top:0px;
  3760. width:33px;
  3761. height:22px;
  3762. background:inherit;
  3763. background-color:rgba(255, 255, 255, 0);
  3764. border:none;
  3765. border-radius:0px;
  3766. -moz-box-shadow:none;
  3767. -webkit-box-shadow:none;
  3768. box-shadow:none;
  3769. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3770. font-weight:400;
  3771. font-style:normal;
  3772. font-size:16px;
  3773. color:#FFFFFF;
  3774. }
  3775. #u12296 {
  3776. border-width:0px;
  3777. position:absolute;
  3778. left:39px;
  3779. top:423px;
  3780. width:33px;
  3781. height:22px;
  3782. display:flex;
  3783. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3784. font-weight:400;
  3785. font-style:normal;
  3786. font-size:16px;
  3787. color:#FFFFFF;
  3788. }
  3789. #u12296 .text {
  3790. position:absolute;
  3791. align-self:flex-start;
  3792. padding:0px 0px 0px 0px;
  3793. box-sizing:border-box;
  3794. width:100%;
  3795. }
  3796. #u12296_text {
  3797. border-width:0px;
  3798. white-space:nowrap;
  3799. text-transform:none;
  3800. }
  3801. #u12297_img {
  3802. border-width:0px;
  3803. position:absolute;
  3804. left:0px;
  3805. top:0px;
  3806. width:14px;
  3807. height:14px;
  3808. }
  3809. #u12297 {
  3810. border-width:0px;
  3811. position:absolute;
  3812. left:20px;
  3813. top:427px;
  3814. width:14px;
  3815. height:14px;
  3816. display:flex;
  3817. }
  3818. #u12297 .text {
  3819. position:absolute;
  3820. align-self:center;
  3821. padding:2px 2px 2px 2px;
  3822. box-sizing:border-box;
  3823. width:100%;
  3824. }
  3825. #u12297_text {
  3826. border-width:0px;
  3827. word-wrap:break-word;
  3828. text-transform:none;
  3829. visibility:hidden;
  3830. }
  3831. #u12298 {
  3832. border-width:0px;
  3833. position:absolute;
  3834. left:0px;
  3835. top:0px;
  3836. width:0px;
  3837. height:0px;
  3838. }
  3839. #u12299_div {
  3840. border-width:0px;
  3841. position:absolute;
  3842. left:0px;
  3843. top:0px;
  3844. width:33px;
  3845. height:22px;
  3846. background:inherit;
  3847. background-color:rgba(255, 255, 255, 0);
  3848. border:none;
  3849. border-radius:0px;
  3850. -moz-box-shadow:none;
  3851. -webkit-box-shadow:none;
  3852. box-shadow:none;
  3853. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3854. font-weight:400;
  3855. font-style:normal;
  3856. font-size:16px;
  3857. color:#FFFFFF;
  3858. }
  3859. #u12299 {
  3860. border-width:0px;
  3861. position:absolute;
  3862. left:39px;
  3863. top:297px;
  3864. width:33px;
  3865. height:22px;
  3866. display:flex;
  3867. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3868. font-weight:400;
  3869. font-style:normal;
  3870. font-size:16px;
  3871. color:#FFFFFF;
  3872. }
  3873. #u12299 .text {
  3874. position:absolute;
  3875. align-self:flex-start;
  3876. padding:0px 0px 0px 0px;
  3877. box-sizing:border-box;
  3878. width:100%;
  3879. }
  3880. #u12299_text {
  3881. border-width:0px;
  3882. white-space:nowrap;
  3883. text-transform:none;
  3884. }
  3885. #u12300_img {
  3886. border-width:0px;
  3887. position:absolute;
  3888. left:0px;
  3889. top:0px;
  3890. width:14px;
  3891. height:14px;
  3892. }
  3893. #u12300 {
  3894. border-width:0px;
  3895. position:absolute;
  3896. left:20px;
  3897. top:301px;
  3898. width:14px;
  3899. height:14px;
  3900. display:flex;
  3901. }
  3902. #u12300 .text {
  3903. position:absolute;
  3904. align-self:center;
  3905. padding:2px 2px 2px 2px;
  3906. box-sizing:border-box;
  3907. width:100%;
  3908. }
  3909. #u12300_text {
  3910. border-width:0px;
  3911. word-wrap:break-word;
  3912. text-transform:none;
  3913. visibility:hidden;
  3914. }
  3915. #u12301 {
  3916. border-width:0px;
  3917. position:absolute;
  3918. left:0px;
  3919. top:0px;
  3920. width:0px;
  3921. height:0px;
  3922. }
  3923. #u12302_div {
  3924. border-width:0px;
  3925. position:absolute;
  3926. left:0px;
  3927. top:0px;
  3928. width:33px;
  3929. height:22px;
  3930. background:inherit;
  3931. background-color:rgba(255, 255, 255, 0);
  3932. border:none;
  3933. border-radius:0px;
  3934. -moz-box-shadow:none;
  3935. -webkit-box-shadow:none;
  3936. box-shadow:none;
  3937. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3938. font-weight:400;
  3939. font-style:normal;
  3940. font-size:16px;
  3941. color:#FFFFFF;
  3942. }
  3943. #u12302 {
  3944. border-width:0px;
  3945. position:absolute;
  3946. left:39px;
  3947. top:213px;
  3948. width:33px;
  3949. height:22px;
  3950. display:flex;
  3951. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3952. font-weight:400;
  3953. font-style:normal;
  3954. font-size:16px;
  3955. color:#FFFFFF;
  3956. }
  3957. #u12302 .text {
  3958. position:absolute;
  3959. align-self:flex-start;
  3960. padding:0px 0px 0px 0px;
  3961. box-sizing:border-box;
  3962. width:100%;
  3963. }
  3964. #u12302_text {
  3965. border-width:0px;
  3966. white-space:nowrap;
  3967. text-transform:none;
  3968. }
  3969. #u12303_img {
  3970. border-width:0px;
  3971. position:absolute;
  3972. left:0px;
  3973. top:0px;
  3974. width:14px;
  3975. height:14px;
  3976. }
  3977. #u12303 {
  3978. border-width:0px;
  3979. position:absolute;
  3980. left:20px;
  3981. top:217px;
  3982. width:14px;
  3983. height:14px;
  3984. display:flex;
  3985. }
  3986. #u12303 .text {
  3987. position:absolute;
  3988. align-self:center;
  3989. padding:2px 2px 2px 2px;
  3990. box-sizing:border-box;
  3991. width:100%;
  3992. }
  3993. #u12303_text {
  3994. border-width:0px;
  3995. word-wrap:break-word;
  3996. text-transform:none;
  3997. visibility:hidden;
  3998. }
  3999. #u12304 {
  4000. border-width:0px;
  4001. position:absolute;
  4002. left:0px;
  4003. top:0px;
  4004. width:0px;
  4005. height:0px;
  4006. }
  4007. #u12305_div {
  4008. border-width:0px;
  4009. position:absolute;
  4010. left:0px;
  4011. top:0px;
  4012. width:33px;
  4013. height:22px;
  4014. background:inherit;
  4015. background-color:rgba(255, 255, 255, 0);
  4016. border:none;
  4017. border-radius:0px;
  4018. -moz-box-shadow:none;
  4019. -webkit-box-shadow:none;
  4020. box-shadow:none;
  4021. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4022. font-weight:400;
  4023. font-style:normal;
  4024. font-size:16px;
  4025. color:#FFFFFF;
  4026. }
  4027. #u12305 {
  4028. border-width:0px;
  4029. position:absolute;
  4030. left:39px;
  4031. top:339px;
  4032. width:33px;
  4033. height:22px;
  4034. display:flex;
  4035. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4036. font-weight:400;
  4037. font-style:normal;
  4038. font-size:16px;
  4039. color:#FFFFFF;
  4040. }
  4041. #u12305 .text {
  4042. position:absolute;
  4043. align-self:flex-start;
  4044. padding:0px 0px 0px 0px;
  4045. box-sizing:border-box;
  4046. width:100%;
  4047. }
  4048. #u12305_text {
  4049. border-width:0px;
  4050. white-space:nowrap;
  4051. text-transform:none;
  4052. }
  4053. #u12306_img {
  4054. border-width:0px;
  4055. position:absolute;
  4056. left:0px;
  4057. top:0px;
  4058. width:14px;
  4059. height:14px;
  4060. }
  4061. #u12306 {
  4062. border-width:0px;
  4063. position:absolute;
  4064. left:20px;
  4065. top:343px;
  4066. width:14px;
  4067. height:14px;
  4068. display:flex;
  4069. }
  4070. #u12306 .text {
  4071. position:absolute;
  4072. align-self:center;
  4073. padding:2px 2px 2px 2px;
  4074. box-sizing:border-box;
  4075. width:100%;
  4076. }
  4077. #u12306_text {
  4078. border-width:0px;
  4079. word-wrap:break-word;
  4080. text-transform:none;
  4081. visibility:hidden;
  4082. }
  4083. #u12307 {
  4084. border-width:0px;
  4085. position:absolute;
  4086. left:0px;
  4087. top:0px;
  4088. width:0px;
  4089. height:0px;
  4090. }
  4091. #u12308_div {
  4092. border-width:0px;
  4093. position:absolute;
  4094. left:0px;
  4095. top:0px;
  4096. width:33px;
  4097. height:22px;
  4098. background:inherit;
  4099. background-color:rgba(255, 255, 255, 0);
  4100. border:none;
  4101. border-radius:0px;
  4102. -moz-box-shadow:none;
  4103. -webkit-box-shadow:none;
  4104. box-shadow:none;
  4105. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4106. font-weight:400;
  4107. font-style:normal;
  4108. font-size:16px;
  4109. color:#FFFFFF;
  4110. }
  4111. #u12308 {
  4112. border-width:0px;
  4113. position:absolute;
  4114. left:39px;
  4115. top:465px;
  4116. width:33px;
  4117. height:22px;
  4118. display:flex;
  4119. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4120. font-weight:400;
  4121. font-style:normal;
  4122. font-size:16px;
  4123. color:#FFFFFF;
  4124. }
  4125. #u12308 .text {
  4126. position:absolute;
  4127. align-self:flex-start;
  4128. padding:0px 0px 0px 0px;
  4129. box-sizing:border-box;
  4130. width:100%;
  4131. }
  4132. #u12308_text {
  4133. border-width:0px;
  4134. white-space:nowrap;
  4135. text-transform:none;
  4136. }
  4137. #u12309_img {
  4138. border-width:0px;
  4139. position:absolute;
  4140. left:0px;
  4141. top:0px;
  4142. width:14px;
  4143. height:14px;
  4144. }
  4145. #u12309 {
  4146. border-width:0px;
  4147. position:absolute;
  4148. left:20px;
  4149. top:469px;
  4150. width:14px;
  4151. height:14px;
  4152. display:flex;
  4153. }
  4154. #u12309 .text {
  4155. position:absolute;
  4156. align-self:center;
  4157. padding:2px 2px 2px 2px;
  4158. box-sizing:border-box;
  4159. width:100%;
  4160. }
  4161. #u12309_text {
  4162. border-width:0px;
  4163. word-wrap:break-word;
  4164. text-transform:none;
  4165. visibility:hidden;
  4166. }
  4167. #u12310 {
  4168. border-width:0px;
  4169. position:absolute;
  4170. left:0px;
  4171. top:0px;
  4172. width:0px;
  4173. height:0px;
  4174. }
  4175. #u12311_div {
  4176. border-width:0px;
  4177. position:absolute;
  4178. left:0px;
  4179. top:0px;
  4180. width:29px;
  4181. height:20px;
  4182. background:inherit;
  4183. background-color:rgba(255, 255, 255, 0);
  4184. border:none;
  4185. border-radius:25px;
  4186. -moz-box-shadow:none;
  4187. -webkit-box-shadow:none;
  4188. box-shadow:none;
  4189. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4190. font-weight:400;
  4191. font-style:normal;
  4192. color:#FFFFFF;
  4193. }
  4194. #u12311 {
  4195. border-width:0px;
  4196. position:absolute;
  4197. left:52px;
  4198. top:1145px;
  4199. width:29px;
  4200. height:20px;
  4201. display:flex;
  4202. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4203. font-weight:400;
  4204. font-style:normal;
  4205. color:#FFFFFF;
  4206. }
  4207. #u12311 .text {
  4208. position:absolute;
  4209. align-self:center;
  4210. padding:0px 0px 0px 0px;
  4211. box-sizing:border-box;
  4212. width:100%;
  4213. }
  4214. #u12311_text {
  4215. border-width:0px;
  4216. white-space:nowrap;
  4217. text-transform:none;
  4218. }
  4219. #u12312_img {
  4220. border-width:0px;
  4221. position:absolute;
  4222. left:0px;
  4223. top:0px;
  4224. width:22px;
  4225. height:22px;
  4226. }
  4227. #u12312 {
  4228. border-width:0px;
  4229. position:absolute;
  4230. left:20px;
  4231. top:1144px;
  4232. width:22px;
  4233. height:22px;
  4234. display:flex;
  4235. }
  4236. #u12312 .text {
  4237. position:absolute;
  4238. align-self:center;
  4239. padding:2px 2px 2px 2px;
  4240. box-sizing:border-box;
  4241. width:100%;
  4242. }
  4243. #u12312_text {
  4244. border-width:0px;
  4245. word-wrap:break-word;
  4246. text-transform:none;
  4247. visibility:hidden;
  4248. }
  4249. #u12313 {
  4250. border-width:0px;
  4251. position:absolute;
  4252. left:0px;
  4253. top:0px;
  4254. width:0px;
  4255. height:0px;
  4256. }
  4257. #u12314_div {
  4258. border-width:0px;
  4259. position:absolute;
  4260. left:0px;
  4261. top:0px;
  4262. width:29px;
  4263. height:20px;
  4264. background:inherit;
  4265. background-color:rgba(255, 255, 255, 0);
  4266. border:none;
  4267. border-radius:25px;
  4268. -moz-box-shadow:none;
  4269. -webkit-box-shadow:none;
  4270. box-shadow:none;
  4271. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4272. font-weight:400;
  4273. font-style:normal;
  4274. color:#FFFFFF;
  4275. }
  4276. #u12314 {
  4277. border-width:0px;
  4278. position:absolute;
  4279. left:52px;
  4280. top:1187px;
  4281. width:29px;
  4282. height:20px;
  4283. display:flex;
  4284. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4285. font-weight:400;
  4286. font-style:normal;
  4287. color:#FFFFFF;
  4288. }
  4289. #u12314 .text {
  4290. position:absolute;
  4291. align-self:center;
  4292. padding:0px 0px 0px 0px;
  4293. box-sizing:border-box;
  4294. width:100%;
  4295. }
  4296. #u12314_text {
  4297. border-width:0px;
  4298. white-space:nowrap;
  4299. text-transform:none;
  4300. }
  4301. #u12315_img {
  4302. border-width:0px;
  4303. position:absolute;
  4304. left:0px;
  4305. top:0px;
  4306. width:22px;
  4307. height:22px;
  4308. }
  4309. #u12315 {
  4310. border-width:0px;
  4311. position:absolute;
  4312. left:20px;
  4313. top:1186px;
  4314. width:22px;
  4315. height:22px;
  4316. display:flex;
  4317. }
  4318. #u12315 .text {
  4319. position:absolute;
  4320. align-self:center;
  4321. padding:2px 2px 2px 2px;
  4322. box-sizing:border-box;
  4323. width:100%;
  4324. }
  4325. #u12315_text {
  4326. border-width:0px;
  4327. word-wrap:break-word;
  4328. text-transform:none;
  4329. visibility:hidden;
  4330. }
  4331. #u12316 {
  4332. border-width:0px;
  4333. position:absolute;
  4334. left:0px;
  4335. top:0px;
  4336. width:0px;
  4337. height:0px;
  4338. }
  4339. #u12317_div {
  4340. border-width:0px;
  4341. position:absolute;
  4342. left:0px;
  4343. top:0px;
  4344. width:33px;
  4345. height:22px;
  4346. background:inherit;
  4347. background-color:rgba(255, 255, 255, 0);
  4348. border:none;
  4349. border-radius:0px;
  4350. -moz-box-shadow:none;
  4351. -webkit-box-shadow:none;
  4352. box-shadow:none;
  4353. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4354. font-weight:400;
  4355. font-style:normal;
  4356. font-size:16px;
  4357. color:#FFFFFF;
  4358. }
  4359. #u12317 {
  4360. border-width:0px;
  4361. position:absolute;
  4362. left:39px;
  4363. top:255px;
  4364. width:33px;
  4365. height:22px;
  4366. display:flex;
  4367. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4368. font-weight:400;
  4369. font-style:normal;
  4370. font-size:16px;
  4371. color:#FFFFFF;
  4372. }
  4373. #u12317 .text {
  4374. position:absolute;
  4375. align-self:flex-start;
  4376. padding:0px 0px 0px 0px;
  4377. box-sizing:border-box;
  4378. width:100%;
  4379. }
  4380. #u12317_text {
  4381. border-width:0px;
  4382. white-space:nowrap;
  4383. text-transform:none;
  4384. }
  4385. #u12318_img {
  4386. border-width:0px;
  4387. position:absolute;
  4388. left:0px;
  4389. top:0px;
  4390. width:14px;
  4391. height:14px;
  4392. }
  4393. #u12318 {
  4394. border-width:0px;
  4395. position:absolute;
  4396. left:20px;
  4397. top:259px;
  4398. width:14px;
  4399. height:14px;
  4400. display:flex;
  4401. }
  4402. #u12318 .text {
  4403. position:absolute;
  4404. align-self:center;
  4405. padding:2px 2px 2px 2px;
  4406. box-sizing:border-box;
  4407. width:100%;
  4408. }
  4409. #u12318_text {
  4410. border-width:0px;
  4411. word-wrap:break-word;
  4412. text-transform:none;
  4413. visibility:hidden;
  4414. }
  4415. #u12319 {
  4416. border-width:0px;
  4417. position:absolute;
  4418. left:0px;
  4419. top:0px;
  4420. width:0px;
  4421. height:0px;
  4422. }
  4423. #u12320_input {
  4424. position:absolute;
  4425. left:0px;
  4426. top:0px;
  4427. width:214px;
  4428. height:27px;
  4429. padding:2px 2px 2px 2px;
  4430. font-family:'ArialMT', 'Arial', sans-serif;
  4431. font-weight:400;
  4432. font-style:normal;
  4433. font-size:14px;
  4434. letter-spacing:normal;
  4435. color:#FFFFFF;
  4436. vertical-align:none;
  4437. text-align:left;
  4438. text-transform:none;
  4439. background-color:transparent;
  4440. border-color:transparent;
  4441. }
  4442. #u12320_input.disabled {
  4443. position:absolute;
  4444. left:0px;
  4445. top:0px;
  4446. width:214px;
  4447. height:27px;
  4448. padding:2px 2px 2px 2px;
  4449. font-family:'ArialMT', 'Arial', sans-serif;
  4450. font-weight:400;
  4451. font-style:normal;
  4452. font-size:14px;
  4453. letter-spacing:normal;
  4454. color:#FFFFFF;
  4455. vertical-align:none;
  4456. text-align:left;
  4457. text-transform:none;
  4458. background-color:transparent;
  4459. border-color:transparent;
  4460. }
  4461. #u12320_div {
  4462. border-width:0px;
  4463. position:absolute;
  4464. left:0px;
  4465. top:0px;
  4466. width:214px;
  4467. height:27px;
  4468. background:inherit;
  4469. background-color:rgba(255, 255, 255, 0);
  4470. border:none;
  4471. border-radius:0px;
  4472. -moz-box-shadow:none;
  4473. -webkit-box-shadow:none;
  4474. box-shadow:none;
  4475. font-size:14px;
  4476. color:#FFFFFF;
  4477. }
  4478. #u12320 {
  4479. border-width:0px;
  4480. position:absolute;
  4481. left:1221px;
  4482. top:11px;
  4483. width:214px;
  4484. height:27px;
  4485. display:flex;
  4486. font-size:14px;
  4487. color:#FFFFFF;
  4488. }
  4489. #u12320 .text {
  4490. position:absolute;
  4491. align-self:flex-start;
  4492. padding:2px 2px 2px 2px;
  4493. box-sizing:border-box;
  4494. width:100%;
  4495. }
  4496. #u12320_div.disabled {
  4497. border-width:0px;
  4498. position:absolute;
  4499. left:0px;
  4500. top:0px;
  4501. width:214px;
  4502. height:27px;
  4503. background:inherit;
  4504. background-color:rgba(240, 240, 240, 1);
  4505. border:none;
  4506. border-radius:0px;
  4507. -moz-box-shadow:none;
  4508. -webkit-box-shadow:none;
  4509. box-shadow:none;
  4510. font-size:14px;
  4511. color:#FFFFFF;
  4512. }
  4513. #u12320.disabled {
  4514. }
  4515. .u12320_input_option {
  4516. font-size:14px;
  4517. }
  4518. #u12321_img {
  4519. border-width:0px;
  4520. position:absolute;
  4521. left:0px;
  4522. top:0px;
  4523. width:22px;
  4524. height:22px;
  4525. }
  4526. #u12321 {
  4527. border-width:0px;
  4528. position:absolute;
  4529. left:1194px;
  4530. top:14px;
  4531. width:22px;
  4532. height:22px;
  4533. display:flex;
  4534. }
  4535. #u12321 .text {
  4536. position:absolute;
  4537. align-self:center;
  4538. padding:2px 2px 2px 2px;
  4539. box-sizing:border-box;
  4540. width:100%;
  4541. }
  4542. #u12321_text {
  4543. border-width:0px;
  4544. word-wrap:break-word;
  4545. text-transform:none;
  4546. visibility:hidden;
  4547. }
  4548. #u12322_div {
  4549. border-width:0px;
  4550. position:absolute;
  4551. left:0px;
  4552. top:0px;
  4553. width:100px;
  4554. height:24px;
  4555. background:inherit;
  4556. background-color:rgba(242, 242, 242, 0.2);
  4557. border:none;
  4558. border-radius:25px;
  4559. -moz-box-shadow:none;
  4560. -webkit-box-shadow:none;
  4561. box-shadow:none;
  4562. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4563. font-weight:400;
  4564. font-style:normal;
  4565. color:#FFFFFF;
  4566. text-align:center;
  4567. }
  4568. #u12322 {
  4569. border-width:0px;
  4570. position:absolute;
  4571. left:1480px;
  4572. top:13px;
  4573. width:100px;
  4574. height:24px;
  4575. display:flex;
  4576. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4577. font-weight:400;
  4578. font-style:normal;
  4579. color:#FFFFFF;
  4580. text-align:center;
  4581. }
  4582. #u12322 .text {
  4583. position:absolute;
  4584. align-self:center;
  4585. padding:0px 0px 0px 0px;
  4586. box-sizing:border-box;
  4587. width:100%;
  4588. }
  4589. #u12322_text {
  4590. border-width:0px;
  4591. word-wrap:break-word;
  4592. text-transform:none;
  4593. }
  4594. #u12323_img {
  4595. border-width:0px;
  4596. position:absolute;
  4597. left:0px;
  4598. top:0px;
  4599. width:2px;
  4600. height:12px;
  4601. }
  4602. #u12323 {
  4603. border-width:0px;
  4604. position:absolute;
  4605. left:1452px;
  4606. top:19px;
  4607. width:1px;
  4608. height:11px;
  4609. display:flex;
  4610. }
  4611. #u12323 .text {
  4612. position:absolute;
  4613. align-self:center;
  4614. padding:2px 2px 2px 2px;
  4615. box-sizing:border-box;
  4616. width:100%;
  4617. }
  4618. #u12323_text {
  4619. border-width:0px;
  4620. word-wrap:break-word;
  4621. text-transform:none;
  4622. visibility:hidden;
  4623. }
  4624. #u12324 {
  4625. border-width:0px;
  4626. position:absolute;
  4627. left:0px;
  4628. top:0px;
  4629. width:0px;
  4630. height:0px;
  4631. }
  4632. #u12325_div {
  4633. border-width:0px;
  4634. position:absolute;
  4635. left:0px;
  4636. top:0px;
  4637. width:29px;
  4638. height:20px;
  4639. background:inherit;
  4640. background-color:rgba(255, 255, 255, 0);
  4641. border:none;
  4642. border-radius:25px;
  4643. -moz-box-shadow:none;
  4644. -webkit-box-shadow:none;
  4645. box-shadow:none;
  4646. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4647. font-weight:400;
  4648. font-style:normal;
  4649. color:#FFFFFF;
  4650. }
  4651. #u12325 {
  4652. border-width:0px;
  4653. position:absolute;
  4654. left:52px;
  4655. top:1082px;
  4656. width:29px;
  4657. height:20px;
  4658. display:flex;
  4659. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4660. font-weight:400;
  4661. font-style:normal;
  4662. color:#FFFFFF;
  4663. }
  4664. #u12325 .text {
  4665. position:absolute;
  4666. align-self:center;
  4667. padding:0px 0px 0px 0px;
  4668. box-sizing:border-box;
  4669. width:100%;
  4670. }
  4671. #u12325_text {
  4672. border-width:0px;
  4673. white-space:nowrap;
  4674. text-transform:none;
  4675. }
  4676. #u12326_img {
  4677. border-width:0px;
  4678. position:absolute;
  4679. left:0px;
  4680. top:0px;
  4681. width:22px;
  4682. height:22px;
  4683. }
  4684. #u12326 {
  4685. border-width:0px;
  4686. position:absolute;
  4687. left:20px;
  4688. top:1081px;
  4689. width:22px;
  4690. height:22px;
  4691. display:flex;
  4692. }
  4693. #u12326 .text {
  4694. position:absolute;
  4695. align-self:center;
  4696. padding:2px 2px 2px 2px;
  4697. box-sizing:border-box;
  4698. width:100%;
  4699. }
  4700. #u12326_text {
  4701. border-width:0px;
  4702. word-wrap:break-word;
  4703. text-transform:none;
  4704. visibility:hidden;
  4705. }
  4706. #u12327_img {
  4707. border-width:0px;
  4708. position:absolute;
  4709. left:0px;
  4710. top:0px;
  4711. width:69px;
  4712. height:2px;
  4713. }
  4714. #u12327 {
  4715. border-width:0px;
  4716. position:absolute;
  4717. left:20px;
  4718. top:1123px;
  4719. width:68px;
  4720. height:1px;
  4721. display:flex;
  4722. }
  4723. #u12327 .text {
  4724. position:absolute;
  4725. align-self:center;
  4726. padding:2px 2px 2px 2px;
  4727. box-sizing:border-box;
  4728. width:100%;
  4729. }
  4730. #u12327_text {
  4731. border-width:0px;
  4732. word-wrap:break-word;
  4733. text-transform:none;
  4734. visibility:hidden;
  4735. }
  4736. #u12328_img {
  4737. border-width:0px;
  4738. position:absolute;
  4739. left:0px;
  4740. top:0px;
  4741. width:69px;
  4742. height:2px;
  4743. }
  4744. #u12328 {
  4745. border-width:0px;
  4746. position:absolute;
  4747. left:20px;
  4748. top:1061px;
  4749. width:68px;
  4750. height:1px;
  4751. display:flex;
  4752. }
  4753. #u12328 .text {
  4754. position:absolute;
  4755. align-self:center;
  4756. padding:2px 2px 2px 2px;
  4757. box-sizing:border-box;
  4758. width:100%;
  4759. }
  4760. #u12328_text {
  4761. border-width:0px;
  4762. word-wrap:break-word;
  4763. text-transform:none;
  4764. visibility:hidden;
  4765. }
  4766. #u12329_img {
  4767. border-width:0px;
  4768. position:absolute;
  4769. left:0px;
  4770. top:0px;
  4771. width:57px;
  4772. height:2px;
  4773. }
  4774. #u12329 {
  4775. border-width:0px;
  4776. position:absolute;
  4777. left:20px;
  4778. top:112px;
  4779. width:56px;
  4780. height:1px;
  4781. display:flex;
  4782. }
  4783. #u12329 .text {
  4784. position:absolute;
  4785. align-self:center;
  4786. padding:2px 2px 2px 2px;
  4787. box-sizing:border-box;
  4788. width:100%;
  4789. }
  4790. #u12329_text {
  4791. border-width:0px;
  4792. word-wrap:break-word;
  4793. text-transform:none;
  4794. visibility:hidden;
  4795. }
  4796. #u12330 {
  4797. border-width:0px;
  4798. position:absolute;
  4799. left:0px;
  4800. top:0px;
  4801. width:0px;
  4802. height:0px;
  4803. }
  4804. #u12331_div {
  4805. border-width:0px;
  4806. position:absolute;
  4807. left:0px;
  4808. top:0px;
  4809. width:33px;
  4810. height:22px;
  4811. background:inherit;
  4812. background-color:rgba(255, 255, 255, 0);
  4813. border:none;
  4814. border-radius:0px;
  4815. -moz-box-shadow:none;
  4816. -webkit-box-shadow:none;
  4817. box-shadow:none;
  4818. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4819. font-weight:400;
  4820. font-style:normal;
  4821. font-size:16px;
  4822. color:#FFFFFF;
  4823. }
  4824. #u12331 {
  4825. border-width:0px;
  4826. position:absolute;
  4827. left:43px;
  4828. top:71px;
  4829. width:33px;
  4830. height:22px;
  4831. display:flex;
  4832. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4833. font-weight:400;
  4834. font-style:normal;
  4835. font-size:16px;
  4836. color:#FFFFFF;
  4837. }
  4838. #u12331 .text {
  4839. position:absolute;
  4840. align-self:flex-start;
  4841. padding:0px 0px 0px 0px;
  4842. box-sizing:border-box;
  4843. width:100%;
  4844. }
  4845. #u12331_text {
  4846. border-width:0px;
  4847. white-space:nowrap;
  4848. text-transform:none;
  4849. }
  4850. #u12332_img {
  4851. border-width:0px;
  4852. position:absolute;
  4853. left:0px;
  4854. top:0px;
  4855. width:18px;
  4856. height:14px;
  4857. }
  4858. #u12332 {
  4859. border-width:0px;
  4860. position:absolute;
  4861. left:20px;
  4862. top:75px;
  4863. width:18px;
  4864. height:14px;
  4865. display:flex;
  4866. }
  4867. #u12332 .text {
  4868. position:absolute;
  4869. align-self:center;
  4870. padding:2px 2px 2px 2px;
  4871. box-sizing:border-box;
  4872. width:100%;
  4873. }
  4874. #u12332_text {
  4875. border-width:0px;
  4876. word-wrap:break-word;
  4877. text-transform:none;
  4878. visibility:hidden;
  4879. }
  4880. #u12333_div {
  4881. border-width:0px;
  4882. position:absolute;
  4883. left:0px;
  4884. top:0px;
  4885. width:1259px;
  4886. height:1180px;
  4887. background:inherit;
  4888. background-color:rgba(255, 255, 255, 1);
  4889. border:none;
  4890. border-radius:0px;
  4891. -moz-box-shadow:none;
  4892. -webkit-box-shadow:none;
  4893. box-shadow:none;
  4894. }
  4895. #u12333 {
  4896. border-width:0px;
  4897. position:absolute;
  4898. left:330px;
  4899. top:50px;
  4900. width:1259px;
  4901. height:1180px;
  4902. display:flex;
  4903. }
  4904. #u12333 .text {
  4905. position:absolute;
  4906. align-self:center;
  4907. padding:2px 2px 2px 2px;
  4908. box-sizing:border-box;
  4909. width:100%;
  4910. }
  4911. #u12333_text {
  4912. border-width:0px;
  4913. word-wrap:break-word;
  4914. text-transform:none;
  4915. visibility:hidden;
  4916. }
  4917. #u12334 {
  4918. border-width:0px;
  4919. position:absolute;
  4920. left:563px;
  4921. top:332px;
  4922. width:1008px;
  4923. height:318px;
  4924. }
  4925. #u12335_img {
  4926. border-width:0px;
  4927. position:absolute;
  4928. left:0px;
  4929. top:0px;
  4930. width:91px;
  4931. height:34px;
  4932. }
  4933. #u12335 {
  4934. border-width:0px;
  4935. position:absolute;
  4936. left:0px;
  4937. top:0px;
  4938. width:91px;
  4939. height:34px;
  4940. display:flex;
  4941. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4942. font-weight:400;
  4943. font-style:normal;
  4944. font-size:12px;
  4945. color:#FFFFFF;
  4946. }
  4947. #u12335 .text {
  4948. position:absolute;
  4949. align-self:center;
  4950. padding:2px 2px 2px 0px;
  4951. box-sizing:border-box;
  4952. width:100%;
  4953. }
  4954. #u12335_text {
  4955. border-width:0px;
  4956. word-wrap:break-word;
  4957. text-transform:none;
  4958. }
  4959. #u12336_img {
  4960. border-width:0px;
  4961. position:absolute;
  4962. left:0px;
  4963. top:0px;
  4964. width:91px;
  4965. height:34px;
  4966. }
  4967. #u12336 {
  4968. border-width:0px;
  4969. position:absolute;
  4970. left:91px;
  4971. top:0px;
  4972. width:91px;
  4973. height:34px;
  4974. display:flex;
  4975. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4976. font-weight:400;
  4977. font-style:normal;
  4978. font-size:12px;
  4979. color:#FFFFFF;
  4980. }
  4981. #u12336 .text {
  4982. position:absolute;
  4983. align-self:center;
  4984. padding:2px 2px 2px 0px;
  4985. box-sizing:border-box;
  4986. width:100%;
  4987. }
  4988. #u12336_text {
  4989. border-width:0px;
  4990. word-wrap:break-word;
  4991. text-transform:none;
  4992. }
  4993. #u12337_img {
  4994. border-width:0px;
  4995. position:absolute;
  4996. left:0px;
  4997. top:0px;
  4998. width:76px;
  4999. height:34px;
  5000. }
  5001. #u12337 {
  5002. border-width:0px;
  5003. position:absolute;
  5004. left:182px;
  5005. top:0px;
  5006. width:76px;
  5007. height:34px;
  5008. display:flex;
  5009. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5010. font-weight:400;
  5011. font-style:normal;
  5012. font-size:12px;
  5013. color:#FFFFFF;
  5014. }
  5015. #u12337 .text {
  5016. position:absolute;
  5017. align-self:center;
  5018. padding:2px 2px 2px 0px;
  5019. box-sizing:border-box;
  5020. width:100%;
  5021. }
  5022. #u12337_text {
  5023. border-width:0px;
  5024. word-wrap:break-word;
  5025. text-transform:none;
  5026. }
  5027. #u12338_img {
  5028. border-width:0px;
  5029. position:absolute;
  5030. left:0px;
  5031. top:0px;
  5032. width:92px;
  5033. height:34px;
  5034. }
  5035. #u12338 {
  5036. border-width:0px;
  5037. position:absolute;
  5038. left:258px;
  5039. top:0px;
  5040. width:92px;
  5041. height:34px;
  5042. display:flex;
  5043. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5044. font-weight:400;
  5045. font-style:normal;
  5046. font-size:12px;
  5047. color:#FFFFFF;
  5048. }
  5049. #u12338 .text {
  5050. position:absolute;
  5051. align-self:center;
  5052. padding:2px 2px 2px 0px;
  5053. box-sizing:border-box;
  5054. width:100%;
  5055. }
  5056. #u12338_text {
  5057. border-width:0px;
  5058. word-wrap:break-word;
  5059. text-transform:none;
  5060. }
  5061. #u12339_img {
  5062. border-width:0px;
  5063. position:absolute;
  5064. left:0px;
  5065. top:0px;
  5066. width:88px;
  5067. height:34px;
  5068. }
  5069. #u12339 {
  5070. border-width:0px;
  5071. position:absolute;
  5072. left:350px;
  5073. top:0px;
  5074. width:88px;
  5075. height:34px;
  5076. display:flex;
  5077. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5078. font-weight:400;
  5079. font-style:normal;
  5080. font-size:12px;
  5081. color:#FFFFFF;
  5082. }
  5083. #u12339 .text {
  5084. position:absolute;
  5085. align-self:center;
  5086. padding:2px 2px 2px 0px;
  5087. box-sizing:border-box;
  5088. width:100%;
  5089. }
  5090. #u12339_text {
  5091. border-width:0px;
  5092. word-wrap:break-word;
  5093. text-transform:none;
  5094. }
  5095. #u12340_img {
  5096. border-width:0px;
  5097. position:absolute;
  5098. left:0px;
  5099. top:0px;
  5100. width:88px;
  5101. height:34px;
  5102. }
  5103. #u12340 {
  5104. border-width:0px;
  5105. position:absolute;
  5106. left:438px;
  5107. top:0px;
  5108. width:88px;
  5109. height:34px;
  5110. display:flex;
  5111. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5112. font-weight:400;
  5113. font-style:normal;
  5114. font-size:12px;
  5115. color:#FFFFFF;
  5116. }
  5117. #u12340 .text {
  5118. position:absolute;
  5119. align-self:center;
  5120. padding:2px 2px 2px 0px;
  5121. box-sizing:border-box;
  5122. width:100%;
  5123. }
  5124. #u12340_text {
  5125. border-width:0px;
  5126. word-wrap:break-word;
  5127. text-transform:none;
  5128. }
  5129. #u12341_img {
  5130. border-width:0px;
  5131. position:absolute;
  5132. left:0px;
  5133. top:0px;
  5134. width:92px;
  5135. height:34px;
  5136. }
  5137. #u12341 {
  5138. border-width:0px;
  5139. position:absolute;
  5140. left:526px;
  5141. top:0px;
  5142. width:92px;
  5143. height:34px;
  5144. display:flex;
  5145. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5146. font-weight:400;
  5147. font-style:normal;
  5148. font-size:12px;
  5149. color:#FFFFFF;
  5150. }
  5151. #u12341 .text {
  5152. position:absolute;
  5153. align-self:center;
  5154. padding:2px 2px 2px 0px;
  5155. box-sizing:border-box;
  5156. width:100%;
  5157. }
  5158. #u12341_text {
  5159. border-width:0px;
  5160. word-wrap:break-word;
  5161. text-transform:none;
  5162. }
  5163. #u12342_img {
  5164. border-width:0px;
  5165. position:absolute;
  5166. left:0px;
  5167. top:0px;
  5168. width:88px;
  5169. height:34px;
  5170. }
  5171. #u12342 {
  5172. border-width:0px;
  5173. position:absolute;
  5174. left:618px;
  5175. top:0px;
  5176. width:88px;
  5177. height:34px;
  5178. display:flex;
  5179. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5180. font-weight:400;
  5181. font-style:normal;
  5182. font-size:12px;
  5183. color:#FFFFFF;
  5184. }
  5185. #u12342 .text {
  5186. position:absolute;
  5187. align-self:center;
  5188. padding:2px 2px 2px 0px;
  5189. box-sizing:border-box;
  5190. width:100%;
  5191. }
  5192. #u12342_text {
  5193. border-width:0px;
  5194. word-wrap:break-word;
  5195. text-transform:none;
  5196. }
  5197. #u12343_img {
  5198. border-width:0px;
  5199. position:absolute;
  5200. left:0px;
  5201. top:0px;
  5202. width:88px;
  5203. height:34px;
  5204. }
  5205. #u12343 {
  5206. border-width:0px;
  5207. position:absolute;
  5208. left:706px;
  5209. top:0px;
  5210. width:88px;
  5211. height:34px;
  5212. display:flex;
  5213. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5214. font-weight:400;
  5215. font-style:normal;
  5216. font-size:12px;
  5217. color:#FFFFFF;
  5218. }
  5219. #u12343 .text {
  5220. position:absolute;
  5221. align-self:center;
  5222. padding:2px 2px 2px 0px;
  5223. box-sizing:border-box;
  5224. width:100%;
  5225. }
  5226. #u12343_text {
  5227. border-width:0px;
  5228. word-wrap:break-word;
  5229. text-transform:none;
  5230. }
  5231. #u12344_img {
  5232. border-width:0px;
  5233. position:absolute;
  5234. left:0px;
  5235. top:0px;
  5236. width:88px;
  5237. height:34px;
  5238. }
  5239. #u12344 {
  5240. border-width:0px;
  5241. position:absolute;
  5242. left:794px;
  5243. top:0px;
  5244. width:88px;
  5245. height:34px;
  5246. display:flex;
  5247. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5248. font-weight:400;
  5249. font-style:normal;
  5250. font-size:12px;
  5251. color:#FFFFFF;
  5252. }
  5253. #u12344 .text {
  5254. position:absolute;
  5255. align-self:center;
  5256. padding:2px 2px 2px 0px;
  5257. box-sizing:border-box;
  5258. width:100%;
  5259. }
  5260. #u12344_text {
  5261. border-width:0px;
  5262. word-wrap:break-word;
  5263. text-transform:none;
  5264. }
  5265. #u12345_img {
  5266. border-width:0px;
  5267. position:absolute;
  5268. left:0px;
  5269. top:0px;
  5270. width:126px;
  5271. height:34px;
  5272. }
  5273. #u12345 {
  5274. border-width:0px;
  5275. position:absolute;
  5276. left:882px;
  5277. top:0px;
  5278. width:126px;
  5279. height:34px;
  5280. display:flex;
  5281. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5282. font-weight:400;
  5283. font-style:normal;
  5284. font-size:12px;
  5285. color:#FFFFFF;
  5286. }
  5287. #u12345 .text {
  5288. position:absolute;
  5289. align-self:center;
  5290. padding:2px 2px 2px 0px;
  5291. box-sizing:border-box;
  5292. width:100%;
  5293. }
  5294. #u12345_text {
  5295. border-width:0px;
  5296. word-wrap:break-word;
  5297. text-transform:none;
  5298. }
  5299. #u12346_img {
  5300. border-width:0px;
  5301. position:absolute;
  5302. left:0px;
  5303. top:0px;
  5304. width:91px;
  5305. height:44px;
  5306. }
  5307. #u12346 {
  5308. border-width:0px;
  5309. position:absolute;
  5310. left:0px;
  5311. top:34px;
  5312. width:91px;
  5313. height:44px;
  5314. display:flex;
  5315. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5316. font-weight:400;
  5317. font-style:normal;
  5318. font-size:12px;
  5319. color:#333333;
  5320. line-height:40px;
  5321. }
  5322. #u12346 .text {
  5323. position:absolute;
  5324. align-self:center;
  5325. padding:2px 2px 2px 0px;
  5326. box-sizing:border-box;
  5327. width:100%;
  5328. }
  5329. #u12346_text {
  5330. border-width:0px;
  5331. word-wrap:break-word;
  5332. text-transform:none;
  5333. visibility:hidden;
  5334. }
  5335. #u12347_img {
  5336. border-width:0px;
  5337. position:absolute;
  5338. left:0px;
  5339. top:0px;
  5340. width:91px;
  5341. height:44px;
  5342. }
  5343. #u12347 {
  5344. border-width:0px;
  5345. position:absolute;
  5346. left:91px;
  5347. top:34px;
  5348. width:91px;
  5349. height:44px;
  5350. display:flex;
  5351. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5352. font-weight:400;
  5353. font-style:normal;
  5354. font-size:12px;
  5355. color:#333333;
  5356. line-height:40px;
  5357. }
  5358. #u12347 .text {
  5359. position:absolute;
  5360. align-self:center;
  5361. padding:2px 2px 2px 0px;
  5362. box-sizing:border-box;
  5363. width:100%;
  5364. }
  5365. #u12347_text {
  5366. border-width:0px;
  5367. word-wrap:break-word;
  5368. text-transform:none;
  5369. visibility:hidden;
  5370. }
  5371. #u12348_img {
  5372. border-width:0px;
  5373. position:absolute;
  5374. left:0px;
  5375. top:0px;
  5376. width:76px;
  5377. height:44px;
  5378. }
  5379. #u12348 {
  5380. border-width:0px;
  5381. position:absolute;
  5382. left:182px;
  5383. top:34px;
  5384. width:76px;
  5385. height:44px;
  5386. display:flex;
  5387. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5388. font-weight:400;
  5389. font-style:normal;
  5390. font-size:12px;
  5391. color:#333333;
  5392. line-height:40px;
  5393. }
  5394. #u12348 .text {
  5395. position:absolute;
  5396. align-self:center;
  5397. padding:2px 2px 2px 0px;
  5398. box-sizing:border-box;
  5399. width:100%;
  5400. }
  5401. #u12348_text {
  5402. border-width:0px;
  5403. word-wrap:break-word;
  5404. text-transform:none;
  5405. visibility:hidden;
  5406. }
  5407. #u12349_img {
  5408. border-width:0px;
  5409. position:absolute;
  5410. left:0px;
  5411. top:0px;
  5412. width:92px;
  5413. height:44px;
  5414. }
  5415. #u12349 {
  5416. border-width:0px;
  5417. position:absolute;
  5418. left:258px;
  5419. top:34px;
  5420. width:92px;
  5421. height:44px;
  5422. display:flex;
  5423. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5424. font-weight:400;
  5425. font-style:normal;
  5426. font-size:12px;
  5427. color:#333333;
  5428. line-height:40px;
  5429. }
  5430. #u12349 .text {
  5431. position:absolute;
  5432. align-self:center;
  5433. padding:2px 2px 2px 0px;
  5434. box-sizing:border-box;
  5435. width:100%;
  5436. }
  5437. #u12349_text {
  5438. border-width:0px;
  5439. word-wrap:break-word;
  5440. text-transform:none;
  5441. visibility:hidden;
  5442. }
  5443. #u12350_img {
  5444. border-width:0px;
  5445. position:absolute;
  5446. left:0px;
  5447. top:0px;
  5448. width:88px;
  5449. height:44px;
  5450. }
  5451. #u12350 {
  5452. border-width:0px;
  5453. position:absolute;
  5454. left:350px;
  5455. top:34px;
  5456. width:88px;
  5457. height:44px;
  5458. display:flex;
  5459. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5460. font-weight:400;
  5461. font-style:normal;
  5462. font-size:12px;
  5463. color:#333333;
  5464. line-height:40px;
  5465. }
  5466. #u12350 .text {
  5467. position:absolute;
  5468. align-self:center;
  5469. padding:2px 2px 2px 0px;
  5470. box-sizing:border-box;
  5471. width:100%;
  5472. }
  5473. #u12350_text {
  5474. border-width:0px;
  5475. word-wrap:break-word;
  5476. text-transform:none;
  5477. }
  5478. #u12351_img {
  5479. border-width:0px;
  5480. position:absolute;
  5481. left:0px;
  5482. top:0px;
  5483. width:88px;
  5484. height:44px;
  5485. }
  5486. #u12351 {
  5487. border-width:0px;
  5488. position:absolute;
  5489. left:438px;
  5490. top:34px;
  5491. width:88px;
  5492. height:44px;
  5493. display:flex;
  5494. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5495. font-weight:400;
  5496. font-style:normal;
  5497. font-size:12px;
  5498. color:#333333;
  5499. line-height:40px;
  5500. }
  5501. #u12351 .text {
  5502. position:absolute;
  5503. align-self:center;
  5504. padding:2px 2px 2px 0px;
  5505. box-sizing:border-box;
  5506. width:100%;
  5507. }
  5508. #u12351_text {
  5509. border-width:0px;
  5510. word-wrap:break-word;
  5511. text-transform:none;
  5512. visibility:hidden;
  5513. }
  5514. #u12352_img {
  5515. border-width:0px;
  5516. position:absolute;
  5517. left:0px;
  5518. top:0px;
  5519. width:92px;
  5520. height:44px;
  5521. }
  5522. #u12352 {
  5523. border-width:0px;
  5524. position:absolute;
  5525. left:526px;
  5526. top:34px;
  5527. width:92px;
  5528. height:44px;
  5529. display:flex;
  5530. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5531. font-weight:400;
  5532. font-style:normal;
  5533. font-size:12px;
  5534. color:#333333;
  5535. line-height:40px;
  5536. }
  5537. #u12352 .text {
  5538. position:absolute;
  5539. align-self:center;
  5540. padding:2px 2px 2px 0px;
  5541. box-sizing:border-box;
  5542. width:100%;
  5543. }
  5544. #u12352_text {
  5545. border-width:0px;
  5546. word-wrap:break-word;
  5547. text-transform:none;
  5548. visibility:hidden;
  5549. }
  5550. #u12353_img {
  5551. border-width:0px;
  5552. position:absolute;
  5553. left:0px;
  5554. top:0px;
  5555. width:88px;
  5556. height:44px;
  5557. }
  5558. #u12353 {
  5559. border-width:0px;
  5560. position:absolute;
  5561. left:618px;
  5562. top:34px;
  5563. width:88px;
  5564. height:44px;
  5565. display:flex;
  5566. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5567. font-weight:400;
  5568. font-style:normal;
  5569. font-size:12px;
  5570. color:#333333;
  5571. line-height:40px;
  5572. }
  5573. #u12353 .text {
  5574. position:absolute;
  5575. align-self:center;
  5576. padding:2px 2px 2px 0px;
  5577. box-sizing:border-box;
  5578. width:100%;
  5579. }
  5580. #u12353_text {
  5581. border-width:0px;
  5582. word-wrap:break-word;
  5583. text-transform:none;
  5584. visibility:hidden;
  5585. }
  5586. #u12354_img {
  5587. border-width:0px;
  5588. position:absolute;
  5589. left:0px;
  5590. top:0px;
  5591. width:88px;
  5592. height:44px;
  5593. }
  5594. #u12354 {
  5595. border-width:0px;
  5596. position:absolute;
  5597. left:706px;
  5598. top:34px;
  5599. width:88px;
  5600. height:44px;
  5601. display:flex;
  5602. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5603. font-weight:400;
  5604. font-style:normal;
  5605. font-size:12px;
  5606. color:#333333;
  5607. line-height:40px;
  5608. }
  5609. #u12354 .text {
  5610. position:absolute;
  5611. align-self:center;
  5612. padding:2px 2px 2px 0px;
  5613. box-sizing:border-box;
  5614. width:100%;
  5615. }
  5616. #u12354_text {
  5617. border-width:0px;
  5618. word-wrap:break-word;
  5619. text-transform:none;
  5620. visibility:hidden;
  5621. }
  5622. #u12355_img {
  5623. border-width:0px;
  5624. position:absolute;
  5625. left:0px;
  5626. top:0px;
  5627. width:88px;
  5628. height:44px;
  5629. }
  5630. #u12355 {
  5631. border-width:0px;
  5632. position:absolute;
  5633. left:794px;
  5634. top:34px;
  5635. width:88px;
  5636. height:44px;
  5637. display:flex;
  5638. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5639. font-weight:400;
  5640. font-style:normal;
  5641. font-size:12px;
  5642. color:#333333;
  5643. line-height:40px;
  5644. }
  5645. #u12355 .text {
  5646. position:absolute;
  5647. align-self:center;
  5648. padding:2px 2px 2px 0px;
  5649. box-sizing:border-box;
  5650. width:100%;
  5651. }
  5652. #u12355_text {
  5653. border-width:0px;
  5654. word-wrap:break-word;
  5655. text-transform:none;
  5656. visibility:hidden;
  5657. }
  5658. #u12356_img {
  5659. border-width:0px;
  5660. position:absolute;
  5661. left:0px;
  5662. top:0px;
  5663. width:126px;
  5664. height:44px;
  5665. }
  5666. #u12356 {
  5667. border-width:0px;
  5668. position:absolute;
  5669. left:882px;
  5670. top:34px;
  5671. width:126px;
  5672. height:44px;
  5673. display:flex;
  5674. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5675. font-weight:400;
  5676. font-style:normal;
  5677. font-size:12px;
  5678. color:#298FFF;
  5679. line-height:35px;
  5680. }
  5681. #u12356 .text {
  5682. position:absolute;
  5683. align-self:center;
  5684. padding:2px 2px 2px 0px;
  5685. box-sizing:border-box;
  5686. width:100%;
  5687. }
  5688. #u12356_text {
  5689. border-width:0px;
  5690. word-wrap:break-word;
  5691. text-transform:none;
  5692. }
  5693. #u12357_img {
  5694. border-width:0px;
  5695. position:absolute;
  5696. left:0px;
  5697. top:0px;
  5698. width:91px;
  5699. height:44px;
  5700. }
  5701. #u12357 {
  5702. border-width:0px;
  5703. position:absolute;
  5704. left:0px;
  5705. top:78px;
  5706. width:91px;
  5707. height:44px;
  5708. display:flex;
  5709. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5710. font-weight:400;
  5711. font-style:normal;
  5712. font-size:12px;
  5713. color:#333333;
  5714. line-height:40px;
  5715. }
  5716. #u12357 .text {
  5717. position:absolute;
  5718. align-self:center;
  5719. padding:2px 2px 2px 0px;
  5720. box-sizing:border-box;
  5721. width:100%;
  5722. }
  5723. #u12357_text {
  5724. border-width:0px;
  5725. word-wrap:break-word;
  5726. text-transform:none;
  5727. visibility:hidden;
  5728. }
  5729. #u12358_img {
  5730. border-width:0px;
  5731. position:absolute;
  5732. left:0px;
  5733. top:0px;
  5734. width:91px;
  5735. height:44px;
  5736. }
  5737. #u12358 {
  5738. border-width:0px;
  5739. position:absolute;
  5740. left:91px;
  5741. top:78px;
  5742. width:91px;
  5743. height:44px;
  5744. display:flex;
  5745. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5746. font-weight:400;
  5747. font-style:normal;
  5748. font-size:12px;
  5749. color:#333333;
  5750. line-height:40px;
  5751. }
  5752. #u12358 .text {
  5753. position:absolute;
  5754. align-self:center;
  5755. padding:2px 2px 2px 0px;
  5756. box-sizing:border-box;
  5757. width:100%;
  5758. }
  5759. #u12358_text {
  5760. border-width:0px;
  5761. word-wrap:break-word;
  5762. text-transform:none;
  5763. visibility:hidden;
  5764. }
  5765. #u12359_img {
  5766. border-width:0px;
  5767. position:absolute;
  5768. left:0px;
  5769. top:0px;
  5770. width:76px;
  5771. height:44px;
  5772. }
  5773. #u12359 {
  5774. border-width:0px;
  5775. position:absolute;
  5776. left:182px;
  5777. top:78px;
  5778. width:76px;
  5779. height:44px;
  5780. display:flex;
  5781. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5782. font-weight:400;
  5783. font-style:normal;
  5784. font-size:12px;
  5785. color:#333333;
  5786. line-height:40px;
  5787. }
  5788. #u12359 .text {
  5789. position:absolute;
  5790. align-self:center;
  5791. padding:2px 2px 2px 0px;
  5792. box-sizing:border-box;
  5793. width:100%;
  5794. }
  5795. #u12359_text {
  5796. border-width:0px;
  5797. word-wrap:break-word;
  5798. text-transform:none;
  5799. visibility:hidden;
  5800. }
  5801. #u12360_img {
  5802. border-width:0px;
  5803. position:absolute;
  5804. left:0px;
  5805. top:0px;
  5806. width:92px;
  5807. height:44px;
  5808. }
  5809. #u12360 {
  5810. border-width:0px;
  5811. position:absolute;
  5812. left:258px;
  5813. top:78px;
  5814. width:92px;
  5815. height:44px;
  5816. display:flex;
  5817. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5818. font-weight:400;
  5819. font-style:normal;
  5820. font-size:12px;
  5821. color:#333333;
  5822. line-height:40px;
  5823. }
  5824. #u12360 .text {
  5825. position:absolute;
  5826. align-self:center;
  5827. padding:2px 2px 2px 0px;
  5828. box-sizing:border-box;
  5829. width:100%;
  5830. }
  5831. #u12360_text {
  5832. border-width:0px;
  5833. word-wrap:break-word;
  5834. text-transform:none;
  5835. visibility:hidden;
  5836. }
  5837. #u12361_img {
  5838. border-width:0px;
  5839. position:absolute;
  5840. left:0px;
  5841. top:0px;
  5842. width:88px;
  5843. height:44px;
  5844. }
  5845. #u12361 {
  5846. border-width:0px;
  5847. position:absolute;
  5848. left:350px;
  5849. top:78px;
  5850. width:88px;
  5851. height:44px;
  5852. display:flex;
  5853. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5854. font-weight:400;
  5855. font-style:normal;
  5856. font-size:12px;
  5857. color:#333333;
  5858. line-height:40px;
  5859. }
  5860. #u12361 .text {
  5861. position:absolute;
  5862. align-self:center;
  5863. padding:2px 2px 2px 0px;
  5864. box-sizing:border-box;
  5865. width:100%;
  5866. }
  5867. #u12361_text {
  5868. border-width:0px;
  5869. word-wrap:break-word;
  5870. text-transform:none;
  5871. }
  5872. #u12362_img {
  5873. border-width:0px;
  5874. position:absolute;
  5875. left:0px;
  5876. top:0px;
  5877. width:88px;
  5878. height:44px;
  5879. }
  5880. #u12362 {
  5881. border-width:0px;
  5882. position:absolute;
  5883. left:438px;
  5884. top:78px;
  5885. width:88px;
  5886. height:44px;
  5887. display:flex;
  5888. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5889. font-weight:400;
  5890. font-style:normal;
  5891. font-size:12px;
  5892. color:#333333;
  5893. line-height:40px;
  5894. }
  5895. #u12362 .text {
  5896. position:absolute;
  5897. align-self:center;
  5898. padding:2px 2px 2px 0px;
  5899. box-sizing:border-box;
  5900. width:100%;
  5901. }
  5902. #u12362_text {
  5903. border-width:0px;
  5904. word-wrap:break-word;
  5905. text-transform:none;
  5906. visibility:hidden;
  5907. }
  5908. #u12363_img {
  5909. border-width:0px;
  5910. position:absolute;
  5911. left:0px;
  5912. top:0px;
  5913. width:92px;
  5914. height:44px;
  5915. }
  5916. #u12363 {
  5917. border-width:0px;
  5918. position:absolute;
  5919. left:526px;
  5920. top:78px;
  5921. width:92px;
  5922. height:44px;
  5923. display:flex;
  5924. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5925. font-weight:400;
  5926. font-style:normal;
  5927. font-size:12px;
  5928. color:#333333;
  5929. line-height:40px;
  5930. }
  5931. #u12363 .text {
  5932. position:absolute;
  5933. align-self:center;
  5934. padding:2px 2px 2px 0px;
  5935. box-sizing:border-box;
  5936. width:100%;
  5937. }
  5938. #u12363_text {
  5939. border-width:0px;
  5940. word-wrap:break-word;
  5941. text-transform:none;
  5942. visibility:hidden;
  5943. }
  5944. #u12364_img {
  5945. border-width:0px;
  5946. position:absolute;
  5947. left:0px;
  5948. top:0px;
  5949. width:88px;
  5950. height:44px;
  5951. }
  5952. #u12364 {
  5953. border-width:0px;
  5954. position:absolute;
  5955. left:618px;
  5956. top:78px;
  5957. width:88px;
  5958. height:44px;
  5959. display:flex;
  5960. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5961. font-weight:400;
  5962. font-style:normal;
  5963. font-size:12px;
  5964. color:#333333;
  5965. line-height:40px;
  5966. }
  5967. #u12364 .text {
  5968. position:absolute;
  5969. align-self:center;
  5970. padding:2px 2px 2px 0px;
  5971. box-sizing:border-box;
  5972. width:100%;
  5973. }
  5974. #u12364_text {
  5975. border-width:0px;
  5976. word-wrap:break-word;
  5977. text-transform:none;
  5978. visibility:hidden;
  5979. }
  5980. #u12365_img {
  5981. border-width:0px;
  5982. position:absolute;
  5983. left:0px;
  5984. top:0px;
  5985. width:88px;
  5986. height:44px;
  5987. }
  5988. #u12365 {
  5989. border-width:0px;
  5990. position:absolute;
  5991. left:706px;
  5992. top:78px;
  5993. width:88px;
  5994. height:44px;
  5995. display:flex;
  5996. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5997. font-weight:400;
  5998. font-style:normal;
  5999. font-size:12px;
  6000. color:#333333;
  6001. line-height:40px;
  6002. }
  6003. #u12365 .text {
  6004. position:absolute;
  6005. align-self:center;
  6006. padding:2px 2px 2px 0px;
  6007. box-sizing:border-box;
  6008. width:100%;
  6009. }
  6010. #u12365_text {
  6011. border-width:0px;
  6012. word-wrap:break-word;
  6013. text-transform:none;
  6014. visibility:hidden;
  6015. }
  6016. #u12366_img {
  6017. border-width:0px;
  6018. position:absolute;
  6019. left:0px;
  6020. top:0px;
  6021. width:88px;
  6022. height:44px;
  6023. }
  6024. #u12366 {
  6025. border-width:0px;
  6026. position:absolute;
  6027. left:794px;
  6028. top:78px;
  6029. width:88px;
  6030. height:44px;
  6031. display:flex;
  6032. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6033. font-weight:400;
  6034. font-style:normal;
  6035. font-size:12px;
  6036. color:#333333;
  6037. line-height:40px;
  6038. }
  6039. #u12366 .text {
  6040. position:absolute;
  6041. align-self:center;
  6042. padding:2px 2px 2px 0px;
  6043. box-sizing:border-box;
  6044. width:100%;
  6045. }
  6046. #u12366_text {
  6047. border-width:0px;
  6048. word-wrap:break-word;
  6049. text-transform:none;
  6050. visibility:hidden;
  6051. }
  6052. #u12367_img {
  6053. border-width:0px;
  6054. position:absolute;
  6055. left:0px;
  6056. top:0px;
  6057. width:126px;
  6058. height:44px;
  6059. }
  6060. #u12367 {
  6061. border-width:0px;
  6062. position:absolute;
  6063. left:882px;
  6064. top:78px;
  6065. width:126px;
  6066. height:44px;
  6067. display:flex;
  6068. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6069. font-weight:400;
  6070. font-style:normal;
  6071. font-size:12px;
  6072. color:#1890FF;
  6073. }
  6074. #u12367 .text {
  6075. position:absolute;
  6076. align-self:center;
  6077. padding:2px 2px 2px 0px;
  6078. box-sizing:border-box;
  6079. width:100%;
  6080. }
  6081. #u12367_text {
  6082. border-width:0px;
  6083. word-wrap:break-word;
  6084. text-transform:none;
  6085. visibility:hidden;
  6086. }
  6087. #u12368_img {
  6088. border-width:0px;
  6089. position:absolute;
  6090. left:0px;
  6091. top:0px;
  6092. width:91px;
  6093. height:44px;
  6094. }
  6095. #u12368 {
  6096. border-width:0px;
  6097. position:absolute;
  6098. left:0px;
  6099. top:122px;
  6100. width:91px;
  6101. height:44px;
  6102. display:flex;
  6103. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6104. font-weight:400;
  6105. font-style:normal;
  6106. font-size:12px;
  6107. color:#333333;
  6108. line-height:40px;
  6109. }
  6110. #u12368 .text {
  6111. position:absolute;
  6112. align-self:center;
  6113. padding:2px 2px 2px 0px;
  6114. box-sizing:border-box;
  6115. width:100%;
  6116. }
  6117. #u12368_text {
  6118. border-width:0px;
  6119. word-wrap:break-word;
  6120. text-transform:none;
  6121. visibility:hidden;
  6122. }
  6123. #u12369_img {
  6124. border-width:0px;
  6125. position:absolute;
  6126. left:0px;
  6127. top:0px;
  6128. width:91px;
  6129. height:44px;
  6130. }
  6131. #u12369 {
  6132. border-width:0px;
  6133. position:absolute;
  6134. left:91px;
  6135. top:122px;
  6136. width:91px;
  6137. height:44px;
  6138. display:flex;
  6139. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6140. font-weight:400;
  6141. font-style:normal;
  6142. font-size:12px;
  6143. color:#333333;
  6144. line-height:40px;
  6145. }
  6146. #u12369 .text {
  6147. position:absolute;
  6148. align-self:center;
  6149. padding:2px 2px 2px 0px;
  6150. box-sizing:border-box;
  6151. width:100%;
  6152. }
  6153. #u12369_text {
  6154. border-width:0px;
  6155. word-wrap:break-word;
  6156. text-transform:none;
  6157. visibility:hidden;
  6158. }
  6159. #u12370_img {
  6160. border-width:0px;
  6161. position:absolute;
  6162. left:0px;
  6163. top:0px;
  6164. width:76px;
  6165. height:44px;
  6166. }
  6167. #u12370 {
  6168. border-width:0px;
  6169. position:absolute;
  6170. left:182px;
  6171. top:122px;
  6172. width:76px;
  6173. height:44px;
  6174. display:flex;
  6175. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6176. font-weight:400;
  6177. font-style:normal;
  6178. font-size:12px;
  6179. color:#333333;
  6180. line-height:40px;
  6181. }
  6182. #u12370 .text {
  6183. position:absolute;
  6184. align-self:center;
  6185. padding:2px 2px 2px 0px;
  6186. box-sizing:border-box;
  6187. width:100%;
  6188. }
  6189. #u12370_text {
  6190. border-width:0px;
  6191. word-wrap:break-word;
  6192. text-transform:none;
  6193. visibility:hidden;
  6194. }
  6195. #u12371_img {
  6196. border-width:0px;
  6197. position:absolute;
  6198. left:0px;
  6199. top:0px;
  6200. width:92px;
  6201. height:44px;
  6202. }
  6203. #u12371 {
  6204. border-width:0px;
  6205. position:absolute;
  6206. left:258px;
  6207. top:122px;
  6208. width:92px;
  6209. height:44px;
  6210. display:flex;
  6211. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6212. font-weight:400;
  6213. font-style:normal;
  6214. font-size:12px;
  6215. color:#333333;
  6216. line-height:40px;
  6217. }
  6218. #u12371 .text {
  6219. position:absolute;
  6220. align-self:center;
  6221. padding:2px 2px 2px 0px;
  6222. box-sizing:border-box;
  6223. width:100%;
  6224. }
  6225. #u12371_text {
  6226. border-width:0px;
  6227. word-wrap:break-word;
  6228. text-transform:none;
  6229. visibility:hidden;
  6230. }
  6231. #u12372_img {
  6232. border-width:0px;
  6233. position:absolute;
  6234. left:0px;
  6235. top:0px;
  6236. width:88px;
  6237. height:44px;
  6238. }
  6239. #u12372 {
  6240. border-width:0px;
  6241. position:absolute;
  6242. left:350px;
  6243. top:122px;
  6244. width:88px;
  6245. height:44px;
  6246. display:flex;
  6247. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6248. font-weight:400;
  6249. font-style:normal;
  6250. font-size:12px;
  6251. color:#333333;
  6252. line-height:40px;
  6253. }
  6254. #u12372 .text {
  6255. position:absolute;
  6256. align-self:center;
  6257. padding:2px 2px 2px 0px;
  6258. box-sizing:border-box;
  6259. width:100%;
  6260. }
  6261. #u12372_text {
  6262. border-width:0px;
  6263. word-wrap:break-word;
  6264. text-transform:none;
  6265. }
  6266. #u12373_img {
  6267. border-width:0px;
  6268. position:absolute;
  6269. left:0px;
  6270. top:0px;
  6271. width:88px;
  6272. height:44px;
  6273. }
  6274. #u12373 {
  6275. border-width:0px;
  6276. position:absolute;
  6277. left:438px;
  6278. top:122px;
  6279. width:88px;
  6280. height:44px;
  6281. display:flex;
  6282. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6283. font-weight:400;
  6284. font-style:normal;
  6285. font-size:12px;
  6286. color:#333333;
  6287. line-height:40px;
  6288. }
  6289. #u12373 .text {
  6290. position:absolute;
  6291. align-self:center;
  6292. padding:2px 2px 2px 0px;
  6293. box-sizing:border-box;
  6294. width:100%;
  6295. }
  6296. #u12373_text {
  6297. border-width:0px;
  6298. word-wrap:break-word;
  6299. text-transform:none;
  6300. visibility:hidden;
  6301. }
  6302. #u12374_img {
  6303. border-width:0px;
  6304. position:absolute;
  6305. left:0px;
  6306. top:0px;
  6307. width:92px;
  6308. height:44px;
  6309. }
  6310. #u12374 {
  6311. border-width:0px;
  6312. position:absolute;
  6313. left:526px;
  6314. top:122px;
  6315. width:92px;
  6316. height:44px;
  6317. display:flex;
  6318. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6319. font-weight:400;
  6320. font-style:normal;
  6321. font-size:12px;
  6322. color:#333333;
  6323. line-height:40px;
  6324. }
  6325. #u12374 .text {
  6326. position:absolute;
  6327. align-self:center;
  6328. padding:2px 2px 2px 0px;
  6329. box-sizing:border-box;
  6330. width:100%;
  6331. }
  6332. #u12374_text {
  6333. border-width:0px;
  6334. word-wrap:break-word;
  6335. text-transform:none;
  6336. visibility:hidden;
  6337. }
  6338. #u12375_img {
  6339. border-width:0px;
  6340. position:absolute;
  6341. left:0px;
  6342. top:0px;
  6343. width:88px;
  6344. height:44px;
  6345. }
  6346. #u12375 {
  6347. border-width:0px;
  6348. position:absolute;
  6349. left:618px;
  6350. top:122px;
  6351. width:88px;
  6352. height:44px;
  6353. display:flex;
  6354. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6355. font-weight:400;
  6356. font-style:normal;
  6357. font-size:12px;
  6358. color:#333333;
  6359. line-height:40px;
  6360. }
  6361. #u12375 .text {
  6362. position:absolute;
  6363. align-self:center;
  6364. padding:2px 2px 2px 0px;
  6365. box-sizing:border-box;
  6366. width:100%;
  6367. }
  6368. #u12375_text {
  6369. border-width:0px;
  6370. word-wrap:break-word;
  6371. text-transform:none;
  6372. visibility:hidden;
  6373. }
  6374. #u12376_img {
  6375. border-width:0px;
  6376. position:absolute;
  6377. left:0px;
  6378. top:0px;
  6379. width:88px;
  6380. height:44px;
  6381. }
  6382. #u12376 {
  6383. border-width:0px;
  6384. position:absolute;
  6385. left:706px;
  6386. top:122px;
  6387. width:88px;
  6388. height:44px;
  6389. display:flex;
  6390. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6391. font-weight:400;
  6392. font-style:normal;
  6393. font-size:12px;
  6394. color:#333333;
  6395. line-height:40px;
  6396. }
  6397. #u12376 .text {
  6398. position:absolute;
  6399. align-self:center;
  6400. padding:2px 2px 2px 0px;
  6401. box-sizing:border-box;
  6402. width:100%;
  6403. }
  6404. #u12376_text {
  6405. border-width:0px;
  6406. word-wrap:break-word;
  6407. text-transform:none;
  6408. visibility:hidden;
  6409. }
  6410. #u12377_img {
  6411. border-width:0px;
  6412. position:absolute;
  6413. left:0px;
  6414. top:0px;
  6415. width:88px;
  6416. height:44px;
  6417. }
  6418. #u12377 {
  6419. border-width:0px;
  6420. position:absolute;
  6421. left:794px;
  6422. top:122px;
  6423. width:88px;
  6424. height:44px;
  6425. display:flex;
  6426. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6427. font-weight:400;
  6428. font-style:normal;
  6429. font-size:12px;
  6430. color:#333333;
  6431. line-height:40px;
  6432. }
  6433. #u12377 .text {
  6434. position:absolute;
  6435. align-self:center;
  6436. padding:2px 2px 2px 0px;
  6437. box-sizing:border-box;
  6438. width:100%;
  6439. }
  6440. #u12377_text {
  6441. border-width:0px;
  6442. word-wrap:break-word;
  6443. text-transform:none;
  6444. visibility:hidden;
  6445. }
  6446. #u12378_img {
  6447. border-width:0px;
  6448. position:absolute;
  6449. left:0px;
  6450. top:0px;
  6451. width:126px;
  6452. height:44px;
  6453. }
  6454. #u12378 {
  6455. border-width:0px;
  6456. position:absolute;
  6457. left:882px;
  6458. top:122px;
  6459. width:126px;
  6460. height:44px;
  6461. display:flex;
  6462. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6463. font-weight:400;
  6464. font-style:normal;
  6465. font-size:12px;
  6466. color:#1890FF;
  6467. }
  6468. #u12378 .text {
  6469. position:absolute;
  6470. align-self:center;
  6471. padding:2px 2px 2px 0px;
  6472. box-sizing:border-box;
  6473. width:100%;
  6474. }
  6475. #u12378_text {
  6476. border-width:0px;
  6477. word-wrap:break-word;
  6478. text-transform:none;
  6479. visibility:hidden;
  6480. }
  6481. #u12379_img {
  6482. border-width:0px;
  6483. position:absolute;
  6484. left:0px;
  6485. top:0px;
  6486. width:91px;
  6487. height:38px;
  6488. }
  6489. #u12379 {
  6490. border-width:0px;
  6491. position:absolute;
  6492. left:0px;
  6493. top:166px;
  6494. width:91px;
  6495. height:38px;
  6496. display:flex;
  6497. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  6498. font-weight:400;
  6499. font-style:normal;
  6500. font-size:12px;
  6501. color:#606266;
  6502. }
  6503. #u12379 .text {
  6504. position:absolute;
  6505. align-self:center;
  6506. padding:2px 2px 2px 0px;
  6507. box-sizing:border-box;
  6508. width:100%;
  6509. }
  6510. #u12379_text {
  6511. border-width:0px;
  6512. word-wrap:break-word;
  6513. text-transform:none;
  6514. visibility:hidden;
  6515. }
  6516. #u12380_img {
  6517. border-width:0px;
  6518. position:absolute;
  6519. left:0px;
  6520. top:0px;
  6521. width:91px;
  6522. height:38px;
  6523. }
  6524. #u12380 {
  6525. border-width:0px;
  6526. position:absolute;
  6527. left:91px;
  6528. top:166px;
  6529. width:91px;
  6530. height:38px;
  6531. display:flex;
  6532. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  6533. font-weight:400;
  6534. font-style:normal;
  6535. font-size:12px;
  6536. color:#606266;
  6537. }
  6538. #u12380 .text {
  6539. position:absolute;
  6540. align-self:center;
  6541. padding:2px 2px 2px 0px;
  6542. box-sizing:border-box;
  6543. width:100%;
  6544. }
  6545. #u12380_text {
  6546. border-width:0px;
  6547. word-wrap:break-word;
  6548. text-transform:none;
  6549. visibility:hidden;
  6550. }
  6551. #u12381_img {
  6552. border-width:0px;
  6553. position:absolute;
  6554. left:0px;
  6555. top:0px;
  6556. width:76px;
  6557. height:38px;
  6558. }
  6559. #u12381 {
  6560. border-width:0px;
  6561. position:absolute;
  6562. left:182px;
  6563. top:166px;
  6564. width:76px;
  6565. height:38px;
  6566. display:flex;
  6567. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  6568. font-weight:400;
  6569. font-style:normal;
  6570. font-size:12px;
  6571. color:#606266;
  6572. }
  6573. #u12381 .text {
  6574. position:absolute;
  6575. align-self:center;
  6576. padding:2px 2px 2px 0px;
  6577. box-sizing:border-box;
  6578. width:100%;
  6579. }
  6580. #u12381_text {
  6581. border-width:0px;
  6582. word-wrap:break-word;
  6583. text-transform:none;
  6584. visibility:hidden;
  6585. }
  6586. #u12382_img {
  6587. border-width:0px;
  6588. position:absolute;
  6589. left:0px;
  6590. top:0px;
  6591. width:92px;
  6592. height:38px;
  6593. }
  6594. #u12382 {
  6595. border-width:0px;
  6596. position:absolute;
  6597. left:258px;
  6598. top:166px;
  6599. width:92px;
  6600. height:38px;
  6601. display:flex;
  6602. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  6603. font-weight:400;
  6604. font-style:normal;
  6605. font-size:12px;
  6606. color:#606266;
  6607. }
  6608. #u12382 .text {
  6609. position:absolute;
  6610. align-self:center;
  6611. padding:2px 2px 2px 0px;
  6612. box-sizing:border-box;
  6613. width:100%;
  6614. }
  6615. #u12382_text {
  6616. border-width:0px;
  6617. word-wrap:break-word;
  6618. text-transform:none;
  6619. visibility:hidden;
  6620. }
  6621. #u12383_img {
  6622. border-width:0px;
  6623. position:absolute;
  6624. left:0px;
  6625. top:0px;
  6626. width:88px;
  6627. height:38px;
  6628. }
  6629. #u12383 {
  6630. border-width:0px;
  6631. position:absolute;
  6632. left:350px;
  6633. top:166px;
  6634. width:88px;
  6635. height:38px;
  6636. display:flex;
  6637. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6638. font-weight:400;
  6639. font-style:normal;
  6640. font-size:12px;
  6641. color:#606266;
  6642. }
  6643. #u12383 .text {
  6644. position:absolute;
  6645. align-self:center;
  6646. padding:2px 2px 2px 0px;
  6647. box-sizing:border-box;
  6648. width:100%;
  6649. }
  6650. #u12383_text {
  6651. border-width:0px;
  6652. word-wrap:break-word;
  6653. text-transform:none;
  6654. }
  6655. #u12384_img {
  6656. border-width:0px;
  6657. position:absolute;
  6658. left:0px;
  6659. top:0px;
  6660. width:88px;
  6661. height:38px;
  6662. }
  6663. #u12384 {
  6664. border-width:0px;
  6665. position:absolute;
  6666. left:438px;
  6667. top:166px;
  6668. width:88px;
  6669. height:38px;
  6670. display:flex;
  6671. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  6672. font-weight:400;
  6673. font-style:normal;
  6674. font-size:12px;
  6675. color:#606266;
  6676. }
  6677. #u12384 .text {
  6678. position:absolute;
  6679. align-self:center;
  6680. padding:2px 2px 2px 0px;
  6681. box-sizing:border-box;
  6682. width:100%;
  6683. }
  6684. #u12384_text {
  6685. border-width:0px;
  6686. word-wrap:break-word;
  6687. text-transform:none;
  6688. visibility:hidden;
  6689. }
  6690. #u12385_img {
  6691. border-width:0px;
  6692. position:absolute;
  6693. left:0px;
  6694. top:0px;
  6695. width:92px;
  6696. height:38px;
  6697. }
  6698. #u12385 {
  6699. border-width:0px;
  6700. position:absolute;
  6701. left:526px;
  6702. top:166px;
  6703. width:92px;
  6704. height:38px;
  6705. display:flex;
  6706. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  6707. font-weight:400;
  6708. font-style:normal;
  6709. font-size:12px;
  6710. color:#606266;
  6711. }
  6712. #u12385 .text {
  6713. position:absolute;
  6714. align-self:center;
  6715. padding:2px 2px 2px 0px;
  6716. box-sizing:border-box;
  6717. width:100%;
  6718. }
  6719. #u12385_text {
  6720. border-width:0px;
  6721. word-wrap:break-word;
  6722. text-transform:none;
  6723. visibility:hidden;
  6724. }
  6725. #u12386_img {
  6726. border-width:0px;
  6727. position:absolute;
  6728. left:0px;
  6729. top:0px;
  6730. width:88px;
  6731. height:38px;
  6732. }
  6733. #u12386 {
  6734. border-width:0px;
  6735. position:absolute;
  6736. left:618px;
  6737. top:166px;
  6738. width:88px;
  6739. height:38px;
  6740. display:flex;
  6741. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  6742. font-weight:400;
  6743. font-style:normal;
  6744. font-size:12px;
  6745. color:#606266;
  6746. }
  6747. #u12386 .text {
  6748. position:absolute;
  6749. align-self:center;
  6750. padding:2px 2px 2px 0px;
  6751. box-sizing:border-box;
  6752. width:100%;
  6753. }
  6754. #u12386_text {
  6755. border-width:0px;
  6756. word-wrap:break-word;
  6757. text-transform:none;
  6758. visibility:hidden;
  6759. }
  6760. #u12387_img {
  6761. border-width:0px;
  6762. position:absolute;
  6763. left:0px;
  6764. top:0px;
  6765. width:88px;
  6766. height:38px;
  6767. }
  6768. #u12387 {
  6769. border-width:0px;
  6770. position:absolute;
  6771. left:706px;
  6772. top:166px;
  6773. width:88px;
  6774. height:38px;
  6775. display:flex;
  6776. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  6777. font-weight:400;
  6778. font-style:normal;
  6779. font-size:12px;
  6780. color:#606266;
  6781. }
  6782. #u12387 .text {
  6783. position:absolute;
  6784. align-self:center;
  6785. padding:2px 2px 2px 0px;
  6786. box-sizing:border-box;
  6787. width:100%;
  6788. }
  6789. #u12387_text {
  6790. border-width:0px;
  6791. word-wrap:break-word;
  6792. text-transform:none;
  6793. visibility:hidden;
  6794. }
  6795. #u12388_img {
  6796. border-width:0px;
  6797. position:absolute;
  6798. left:0px;
  6799. top:0px;
  6800. width:88px;
  6801. height:38px;
  6802. }
  6803. #u12388 {
  6804. border-width:0px;
  6805. position:absolute;
  6806. left:794px;
  6807. top:166px;
  6808. width:88px;
  6809. height:38px;
  6810. display:flex;
  6811. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  6812. font-weight:400;
  6813. font-style:normal;
  6814. font-size:12px;
  6815. color:#606266;
  6816. }
  6817. #u12388 .text {
  6818. position:absolute;
  6819. align-self:center;
  6820. padding:2px 2px 2px 0px;
  6821. box-sizing:border-box;
  6822. width:100%;
  6823. }
  6824. #u12388_text {
  6825. border-width:0px;
  6826. word-wrap:break-word;
  6827. text-transform:none;
  6828. visibility:hidden;
  6829. }
  6830. #u12389_img {
  6831. border-width:0px;
  6832. position:absolute;
  6833. left:0px;
  6834. top:0px;
  6835. width:126px;
  6836. height:38px;
  6837. }
  6838. #u12389 {
  6839. border-width:0px;
  6840. position:absolute;
  6841. left:882px;
  6842. top:166px;
  6843. width:126px;
  6844. height:38px;
  6845. display:flex;
  6846. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  6847. font-weight:400;
  6848. font-style:normal;
  6849. font-size:12px;
  6850. color:#606266;
  6851. }
  6852. #u12389 .text {
  6853. position:absolute;
  6854. align-self:center;
  6855. padding:2px 2px 2px 0px;
  6856. box-sizing:border-box;
  6857. width:100%;
  6858. }
  6859. #u12389_text {
  6860. border-width:0px;
  6861. word-wrap:break-word;
  6862. text-transform:none;
  6863. visibility:hidden;
  6864. }
  6865. #u12390_img {
  6866. border-width:0px;
  6867. position:absolute;
  6868. left:0px;
  6869. top:0px;
  6870. width:91px;
  6871. height:38px;
  6872. }
  6873. #u12390 {
  6874. border-width:0px;
  6875. position:absolute;
  6876. left:0px;
  6877. top:204px;
  6878. width:91px;
  6879. height:38px;
  6880. display:flex;
  6881. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  6882. font-weight:400;
  6883. font-style:normal;
  6884. font-size:12px;
  6885. color:#606266;
  6886. }
  6887. #u12390 .text {
  6888. position:absolute;
  6889. align-self:center;
  6890. padding:2px 2px 2px 0px;
  6891. box-sizing:border-box;
  6892. width:100%;
  6893. }
  6894. #u12390_text {
  6895. border-width:0px;
  6896. word-wrap:break-word;
  6897. text-transform:none;
  6898. visibility:hidden;
  6899. }
  6900. #u12391_img {
  6901. border-width:0px;
  6902. position:absolute;
  6903. left:0px;
  6904. top:0px;
  6905. width:91px;
  6906. height:38px;
  6907. }
  6908. #u12391 {
  6909. border-width:0px;
  6910. position:absolute;
  6911. left:91px;
  6912. top:204px;
  6913. width:91px;
  6914. height:38px;
  6915. display:flex;
  6916. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  6917. font-weight:400;
  6918. font-style:normal;
  6919. font-size:12px;
  6920. color:#606266;
  6921. }
  6922. #u12391 .text {
  6923. position:absolute;
  6924. align-self:center;
  6925. padding:2px 2px 2px 0px;
  6926. box-sizing:border-box;
  6927. width:100%;
  6928. }
  6929. #u12391_text {
  6930. border-width:0px;
  6931. word-wrap:break-word;
  6932. text-transform:none;
  6933. visibility:hidden;
  6934. }
  6935. #u12392_img {
  6936. border-width:0px;
  6937. position:absolute;
  6938. left:0px;
  6939. top:0px;
  6940. width:76px;
  6941. height:38px;
  6942. }
  6943. #u12392 {
  6944. border-width:0px;
  6945. position:absolute;
  6946. left:182px;
  6947. top:204px;
  6948. width:76px;
  6949. height:38px;
  6950. display:flex;
  6951. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  6952. font-weight:400;
  6953. font-style:normal;
  6954. font-size:12px;
  6955. color:#606266;
  6956. }
  6957. #u12392 .text {
  6958. position:absolute;
  6959. align-self:center;
  6960. padding:2px 2px 2px 0px;
  6961. box-sizing:border-box;
  6962. width:100%;
  6963. }
  6964. #u12392_text {
  6965. border-width:0px;
  6966. word-wrap:break-word;
  6967. text-transform:none;
  6968. visibility:hidden;
  6969. }
  6970. #u12393_img {
  6971. border-width:0px;
  6972. position:absolute;
  6973. left:0px;
  6974. top:0px;
  6975. width:92px;
  6976. height:38px;
  6977. }
  6978. #u12393 {
  6979. border-width:0px;
  6980. position:absolute;
  6981. left:258px;
  6982. top:204px;
  6983. width:92px;
  6984. height:38px;
  6985. display:flex;
  6986. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  6987. font-weight:400;
  6988. font-style:normal;
  6989. font-size:12px;
  6990. color:#606266;
  6991. }
  6992. #u12393 .text {
  6993. position:absolute;
  6994. align-self:center;
  6995. padding:2px 2px 2px 0px;
  6996. box-sizing:border-box;
  6997. width:100%;
  6998. }
  6999. #u12393_text {
  7000. border-width:0px;
  7001. word-wrap:break-word;
  7002. text-transform:none;
  7003. visibility:hidden;
  7004. }
  7005. #u12394_img {
  7006. border-width:0px;
  7007. position:absolute;
  7008. left:0px;
  7009. top:0px;
  7010. width:88px;
  7011. height:38px;
  7012. }
  7013. #u12394 {
  7014. border-width:0px;
  7015. position:absolute;
  7016. left:350px;
  7017. top:204px;
  7018. width:88px;
  7019. height:38px;
  7020. display:flex;
  7021. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7022. font-weight:400;
  7023. font-style:normal;
  7024. font-size:12px;
  7025. color:#606266;
  7026. }
  7027. #u12394 .text {
  7028. position:absolute;
  7029. align-self:center;
  7030. padding:2px 2px 2px 0px;
  7031. box-sizing:border-box;
  7032. width:100%;
  7033. }
  7034. #u12394_text {
  7035. border-width:0px;
  7036. word-wrap:break-word;
  7037. text-transform:none;
  7038. visibility:hidden;
  7039. }
  7040. #u12395_img {
  7041. border-width:0px;
  7042. position:absolute;
  7043. left:0px;
  7044. top:0px;
  7045. width:88px;
  7046. height:38px;
  7047. }
  7048. #u12395 {
  7049. border-width:0px;
  7050. position:absolute;
  7051. left:438px;
  7052. top:204px;
  7053. width:88px;
  7054. height:38px;
  7055. display:flex;
  7056. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  7057. font-weight:400;
  7058. font-style:normal;
  7059. font-size:12px;
  7060. color:#606266;
  7061. }
  7062. #u12395 .text {
  7063. position:absolute;
  7064. align-self:center;
  7065. padding:2px 2px 2px 0px;
  7066. box-sizing:border-box;
  7067. width:100%;
  7068. }
  7069. #u12395_text {
  7070. border-width:0px;
  7071. word-wrap:break-word;
  7072. text-transform:none;
  7073. visibility:hidden;
  7074. }
  7075. #u12396_img {
  7076. border-width:0px;
  7077. position:absolute;
  7078. left:0px;
  7079. top:0px;
  7080. width:92px;
  7081. height:38px;
  7082. }
  7083. #u12396 {
  7084. border-width:0px;
  7085. position:absolute;
  7086. left:526px;
  7087. top:204px;
  7088. width:92px;
  7089. height:38px;
  7090. display:flex;
  7091. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  7092. font-weight:400;
  7093. font-style:normal;
  7094. font-size:12px;
  7095. color:#606266;
  7096. }
  7097. #u12396 .text {
  7098. position:absolute;
  7099. align-self:center;
  7100. padding:2px 2px 2px 0px;
  7101. box-sizing:border-box;
  7102. width:100%;
  7103. }
  7104. #u12396_text {
  7105. border-width:0px;
  7106. word-wrap:break-word;
  7107. text-transform:none;
  7108. visibility:hidden;
  7109. }
  7110. #u12397_img {
  7111. border-width:0px;
  7112. position:absolute;
  7113. left:0px;
  7114. top:0px;
  7115. width:88px;
  7116. height:38px;
  7117. }
  7118. #u12397 {
  7119. border-width:0px;
  7120. position:absolute;
  7121. left:618px;
  7122. top:204px;
  7123. width:88px;
  7124. height:38px;
  7125. display:flex;
  7126. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  7127. font-weight:400;
  7128. font-style:normal;
  7129. font-size:12px;
  7130. color:#606266;
  7131. }
  7132. #u12397 .text {
  7133. position:absolute;
  7134. align-self:center;
  7135. padding:2px 2px 2px 0px;
  7136. box-sizing:border-box;
  7137. width:100%;
  7138. }
  7139. #u12397_text {
  7140. border-width:0px;
  7141. word-wrap:break-word;
  7142. text-transform:none;
  7143. visibility:hidden;
  7144. }
  7145. #u12398_img {
  7146. border-width:0px;
  7147. position:absolute;
  7148. left:0px;
  7149. top:0px;
  7150. width:88px;
  7151. height:38px;
  7152. }
  7153. #u12398 {
  7154. border-width:0px;
  7155. position:absolute;
  7156. left:706px;
  7157. top:204px;
  7158. width:88px;
  7159. height:38px;
  7160. display:flex;
  7161. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  7162. font-weight:400;
  7163. font-style:normal;
  7164. font-size:12px;
  7165. color:#606266;
  7166. }
  7167. #u12398 .text {
  7168. position:absolute;
  7169. align-self:center;
  7170. padding:2px 2px 2px 0px;
  7171. box-sizing:border-box;
  7172. width:100%;
  7173. }
  7174. #u12398_text {
  7175. border-width:0px;
  7176. word-wrap:break-word;
  7177. text-transform:none;
  7178. visibility:hidden;
  7179. }
  7180. #u12399_img {
  7181. border-width:0px;
  7182. position:absolute;
  7183. left:0px;
  7184. top:0px;
  7185. width:88px;
  7186. height:38px;
  7187. }
  7188. #u12399 {
  7189. border-width:0px;
  7190. position:absolute;
  7191. left:794px;
  7192. top:204px;
  7193. width:88px;
  7194. height:38px;
  7195. display:flex;
  7196. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  7197. font-weight:400;
  7198. font-style:normal;
  7199. font-size:12px;
  7200. color:#606266;
  7201. }
  7202. #u12399 .text {
  7203. position:absolute;
  7204. align-self:center;
  7205. padding:2px 2px 2px 0px;
  7206. box-sizing:border-box;
  7207. width:100%;
  7208. }
  7209. #u12399_text {
  7210. border-width:0px;
  7211. word-wrap:break-word;
  7212. text-transform:none;
  7213. visibility:hidden;
  7214. }
  7215. #u12400_img {
  7216. border-width:0px;
  7217. position:absolute;
  7218. left:0px;
  7219. top:0px;
  7220. width:126px;
  7221. height:38px;
  7222. }
  7223. #u12400 {
  7224. border-width:0px;
  7225. position:absolute;
  7226. left:882px;
  7227. top:204px;
  7228. width:126px;
  7229. height:38px;
  7230. display:flex;
  7231. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  7232. font-weight:400;
  7233. font-style:normal;
  7234. font-size:12px;
  7235. color:#606266;
  7236. }
  7237. #u12400 .text {
  7238. position:absolute;
  7239. align-self:center;
  7240. padding:2px 2px 2px 0px;
  7241. box-sizing:border-box;
  7242. width:100%;
  7243. }
  7244. #u12400_text {
  7245. border-width:0px;
  7246. word-wrap:break-word;
  7247. text-transform:none;
  7248. visibility:hidden;
  7249. }
  7250. #u12401_img {
  7251. border-width:0px;
  7252. position:absolute;
  7253. left:0px;
  7254. top:0px;
  7255. width:91px;
  7256. height:38px;
  7257. }
  7258. #u12401 {
  7259. border-width:0px;
  7260. position:absolute;
  7261. left:0px;
  7262. top:242px;
  7263. width:91px;
  7264. height:38px;
  7265. display:flex;
  7266. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  7267. font-weight:400;
  7268. font-style:normal;
  7269. font-size:12px;
  7270. color:#606266;
  7271. }
  7272. #u12401 .text {
  7273. position:absolute;
  7274. align-self:center;
  7275. padding:2px 2px 2px 0px;
  7276. box-sizing:border-box;
  7277. width:100%;
  7278. }
  7279. #u12401_text {
  7280. border-width:0px;
  7281. word-wrap:break-word;
  7282. text-transform:none;
  7283. visibility:hidden;
  7284. }
  7285. #u12402_img {
  7286. border-width:0px;
  7287. position:absolute;
  7288. left:0px;
  7289. top:0px;
  7290. width:91px;
  7291. height:38px;
  7292. }
  7293. #u12402 {
  7294. border-width:0px;
  7295. position:absolute;
  7296. left:91px;
  7297. top:242px;
  7298. width:91px;
  7299. height:38px;
  7300. display:flex;
  7301. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  7302. font-weight:400;
  7303. font-style:normal;
  7304. font-size:12px;
  7305. color:#606266;
  7306. }
  7307. #u12402 .text {
  7308. position:absolute;
  7309. align-self:center;
  7310. padding:2px 2px 2px 0px;
  7311. box-sizing:border-box;
  7312. width:100%;
  7313. }
  7314. #u12402_text {
  7315. border-width:0px;
  7316. word-wrap:break-word;
  7317. text-transform:none;
  7318. visibility:hidden;
  7319. }
  7320. #u12403_img {
  7321. border-width:0px;
  7322. position:absolute;
  7323. left:0px;
  7324. top:0px;
  7325. width:76px;
  7326. height:38px;
  7327. }
  7328. #u12403 {
  7329. border-width:0px;
  7330. position:absolute;
  7331. left:182px;
  7332. top:242px;
  7333. width:76px;
  7334. height:38px;
  7335. display:flex;
  7336. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  7337. font-weight:400;
  7338. font-style:normal;
  7339. font-size:12px;
  7340. color:#606266;
  7341. }
  7342. #u12403 .text {
  7343. position:absolute;
  7344. align-self:center;
  7345. padding:2px 2px 2px 0px;
  7346. box-sizing:border-box;
  7347. width:100%;
  7348. }
  7349. #u12403_text {
  7350. border-width:0px;
  7351. word-wrap:break-word;
  7352. text-transform:none;
  7353. visibility:hidden;
  7354. }
  7355. #u12404_img {
  7356. border-width:0px;
  7357. position:absolute;
  7358. left:0px;
  7359. top:0px;
  7360. width:92px;
  7361. height:38px;
  7362. }
  7363. #u12404 {
  7364. border-width:0px;
  7365. position:absolute;
  7366. left:258px;
  7367. top:242px;
  7368. width:92px;
  7369. height:38px;
  7370. display:flex;
  7371. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  7372. font-weight:400;
  7373. font-style:normal;
  7374. font-size:12px;
  7375. color:#606266;
  7376. }
  7377. #u12404 .text {
  7378. position:absolute;
  7379. align-self:center;
  7380. padding:2px 2px 2px 0px;
  7381. box-sizing:border-box;
  7382. width:100%;
  7383. }
  7384. #u12404_text {
  7385. border-width:0px;
  7386. word-wrap:break-word;
  7387. text-transform:none;
  7388. visibility:hidden;
  7389. }
  7390. #u12405_img {
  7391. border-width:0px;
  7392. position:absolute;
  7393. left:0px;
  7394. top:0px;
  7395. width:88px;
  7396. height:38px;
  7397. }
  7398. #u12405 {
  7399. border-width:0px;
  7400. position:absolute;
  7401. left:350px;
  7402. top:242px;
  7403. width:88px;
  7404. height:38px;
  7405. display:flex;
  7406. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7407. font-weight:400;
  7408. font-style:normal;
  7409. font-size:12px;
  7410. color:#606266;
  7411. }
  7412. #u12405 .text {
  7413. position:absolute;
  7414. align-self:center;
  7415. padding:2px 2px 2px 0px;
  7416. box-sizing:border-box;
  7417. width:100%;
  7418. }
  7419. #u12405_text {
  7420. border-width:0px;
  7421. word-wrap:break-word;
  7422. text-transform:none;
  7423. visibility:hidden;
  7424. }
  7425. #u12406_img {
  7426. border-width:0px;
  7427. position:absolute;
  7428. left:0px;
  7429. top:0px;
  7430. width:88px;
  7431. height:38px;
  7432. }
  7433. #u12406 {
  7434. border-width:0px;
  7435. position:absolute;
  7436. left:438px;
  7437. top:242px;
  7438. width:88px;
  7439. height:38px;
  7440. display:flex;
  7441. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  7442. font-weight:400;
  7443. font-style:normal;
  7444. font-size:12px;
  7445. color:#606266;
  7446. }
  7447. #u12406 .text {
  7448. position:absolute;
  7449. align-self:center;
  7450. padding:2px 2px 2px 0px;
  7451. box-sizing:border-box;
  7452. width:100%;
  7453. }
  7454. #u12406_text {
  7455. border-width:0px;
  7456. word-wrap:break-word;
  7457. text-transform:none;
  7458. visibility:hidden;
  7459. }
  7460. #u12407_img {
  7461. border-width:0px;
  7462. position:absolute;
  7463. left:0px;
  7464. top:0px;
  7465. width:92px;
  7466. height:38px;
  7467. }
  7468. #u12407 {
  7469. border-width:0px;
  7470. position:absolute;
  7471. left:526px;
  7472. top:242px;
  7473. width:92px;
  7474. height:38px;
  7475. display:flex;
  7476. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  7477. font-weight:400;
  7478. font-style:normal;
  7479. font-size:12px;
  7480. color:#606266;
  7481. }
  7482. #u12407 .text {
  7483. position:absolute;
  7484. align-self:center;
  7485. padding:2px 2px 2px 0px;
  7486. box-sizing:border-box;
  7487. width:100%;
  7488. }
  7489. #u12407_text {
  7490. border-width:0px;
  7491. word-wrap:break-word;
  7492. text-transform:none;
  7493. visibility:hidden;
  7494. }
  7495. #u12408_img {
  7496. border-width:0px;
  7497. position:absolute;
  7498. left:0px;
  7499. top:0px;
  7500. width:88px;
  7501. height:38px;
  7502. }
  7503. #u12408 {
  7504. border-width:0px;
  7505. position:absolute;
  7506. left:618px;
  7507. top:242px;
  7508. width:88px;
  7509. height:38px;
  7510. display:flex;
  7511. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  7512. font-weight:400;
  7513. font-style:normal;
  7514. font-size:12px;
  7515. color:#606266;
  7516. }
  7517. #u12408 .text {
  7518. position:absolute;
  7519. align-self:center;
  7520. padding:2px 2px 2px 0px;
  7521. box-sizing:border-box;
  7522. width:100%;
  7523. }
  7524. #u12408_text {
  7525. border-width:0px;
  7526. word-wrap:break-word;
  7527. text-transform:none;
  7528. visibility:hidden;
  7529. }
  7530. #u12409_img {
  7531. border-width:0px;
  7532. position:absolute;
  7533. left:0px;
  7534. top:0px;
  7535. width:88px;
  7536. height:38px;
  7537. }
  7538. #u12409 {
  7539. border-width:0px;
  7540. position:absolute;
  7541. left:706px;
  7542. top:242px;
  7543. width:88px;
  7544. height:38px;
  7545. display:flex;
  7546. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  7547. font-weight:400;
  7548. font-style:normal;
  7549. font-size:12px;
  7550. color:#606266;
  7551. }
  7552. #u12409 .text {
  7553. position:absolute;
  7554. align-self:center;
  7555. padding:2px 2px 2px 0px;
  7556. box-sizing:border-box;
  7557. width:100%;
  7558. }
  7559. #u12409_text {
  7560. border-width:0px;
  7561. word-wrap:break-word;
  7562. text-transform:none;
  7563. visibility:hidden;
  7564. }
  7565. #u12410_img {
  7566. border-width:0px;
  7567. position:absolute;
  7568. left:0px;
  7569. top:0px;
  7570. width:88px;
  7571. height:38px;
  7572. }
  7573. #u12410 {
  7574. border-width:0px;
  7575. position:absolute;
  7576. left:794px;
  7577. top:242px;
  7578. width:88px;
  7579. height:38px;
  7580. display:flex;
  7581. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  7582. font-weight:400;
  7583. font-style:normal;
  7584. font-size:12px;
  7585. color:#606266;
  7586. }
  7587. #u12410 .text {
  7588. position:absolute;
  7589. align-self:center;
  7590. padding:2px 2px 2px 0px;
  7591. box-sizing:border-box;
  7592. width:100%;
  7593. }
  7594. #u12410_text {
  7595. border-width:0px;
  7596. word-wrap:break-word;
  7597. text-transform:none;
  7598. visibility:hidden;
  7599. }
  7600. #u12411_img {
  7601. border-width:0px;
  7602. position:absolute;
  7603. left:0px;
  7604. top:0px;
  7605. width:126px;
  7606. height:38px;
  7607. }
  7608. #u12411 {
  7609. border-width:0px;
  7610. position:absolute;
  7611. left:882px;
  7612. top:242px;
  7613. width:126px;
  7614. height:38px;
  7615. display:flex;
  7616. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  7617. font-weight:400;
  7618. font-style:normal;
  7619. font-size:12px;
  7620. color:#606266;
  7621. }
  7622. #u12411 .text {
  7623. position:absolute;
  7624. align-self:center;
  7625. padding:2px 2px 2px 0px;
  7626. box-sizing:border-box;
  7627. width:100%;
  7628. }
  7629. #u12411_text {
  7630. border-width:0px;
  7631. word-wrap:break-word;
  7632. text-transform:none;
  7633. visibility:hidden;
  7634. }
  7635. #u12412_img {
  7636. border-width:0px;
  7637. position:absolute;
  7638. left:0px;
  7639. top:0px;
  7640. width:91px;
  7641. height:38px;
  7642. }
  7643. #u12412 {
  7644. border-width:0px;
  7645. position:absolute;
  7646. left:0px;
  7647. top:280px;
  7648. width:91px;
  7649. height:38px;
  7650. display:flex;
  7651. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  7652. font-weight:400;
  7653. font-style:normal;
  7654. font-size:12px;
  7655. color:#606266;
  7656. }
  7657. #u12412 .text {
  7658. position:absolute;
  7659. align-self:center;
  7660. padding:2px 2px 2px 0px;
  7661. box-sizing:border-box;
  7662. width:100%;
  7663. }
  7664. #u12412_text {
  7665. border-width:0px;
  7666. word-wrap:break-word;
  7667. text-transform:none;
  7668. visibility:hidden;
  7669. }
  7670. #u12413_img {
  7671. border-width:0px;
  7672. position:absolute;
  7673. left:0px;
  7674. top:0px;
  7675. width:91px;
  7676. height:38px;
  7677. }
  7678. #u12413 {
  7679. border-width:0px;
  7680. position:absolute;
  7681. left:91px;
  7682. top:280px;
  7683. width:91px;
  7684. height:38px;
  7685. display:flex;
  7686. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  7687. font-weight:400;
  7688. font-style:normal;
  7689. font-size:12px;
  7690. color:#606266;
  7691. }
  7692. #u12413 .text {
  7693. position:absolute;
  7694. align-self:center;
  7695. padding:2px 2px 2px 0px;
  7696. box-sizing:border-box;
  7697. width:100%;
  7698. }
  7699. #u12413_text {
  7700. border-width:0px;
  7701. word-wrap:break-word;
  7702. text-transform:none;
  7703. visibility:hidden;
  7704. }
  7705. #u12414_img {
  7706. border-width:0px;
  7707. position:absolute;
  7708. left:0px;
  7709. top:0px;
  7710. width:76px;
  7711. height:38px;
  7712. }
  7713. #u12414 {
  7714. border-width:0px;
  7715. position:absolute;
  7716. left:182px;
  7717. top:280px;
  7718. width:76px;
  7719. height:38px;
  7720. display:flex;
  7721. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  7722. font-weight:400;
  7723. font-style:normal;
  7724. font-size:12px;
  7725. color:#606266;
  7726. }
  7727. #u12414 .text {
  7728. position:absolute;
  7729. align-self:center;
  7730. padding:2px 2px 2px 0px;
  7731. box-sizing:border-box;
  7732. width:100%;
  7733. }
  7734. #u12414_text {
  7735. border-width:0px;
  7736. word-wrap:break-word;
  7737. text-transform:none;
  7738. visibility:hidden;
  7739. }
  7740. #u12415_img {
  7741. border-width:0px;
  7742. position:absolute;
  7743. left:0px;
  7744. top:0px;
  7745. width:92px;
  7746. height:38px;
  7747. }
  7748. #u12415 {
  7749. border-width:0px;
  7750. position:absolute;
  7751. left:258px;
  7752. top:280px;
  7753. width:92px;
  7754. height:38px;
  7755. display:flex;
  7756. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  7757. font-weight:400;
  7758. font-style:normal;
  7759. font-size:12px;
  7760. color:#606266;
  7761. }
  7762. #u12415 .text {
  7763. position:absolute;
  7764. align-self:center;
  7765. padding:2px 2px 2px 0px;
  7766. box-sizing:border-box;
  7767. width:100%;
  7768. }
  7769. #u12415_text {
  7770. border-width:0px;
  7771. word-wrap:break-word;
  7772. text-transform:none;
  7773. visibility:hidden;
  7774. }
  7775. #u12416_img {
  7776. border-width:0px;
  7777. position:absolute;
  7778. left:0px;
  7779. top:0px;
  7780. width:88px;
  7781. height:38px;
  7782. }
  7783. #u12416 {
  7784. border-width:0px;
  7785. position:absolute;
  7786. left:350px;
  7787. top:280px;
  7788. width:88px;
  7789. height:38px;
  7790. display:flex;
  7791. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  7792. font-weight:400;
  7793. font-style:normal;
  7794. font-size:12px;
  7795. color:#606266;
  7796. }
  7797. #u12416 .text {
  7798. position:absolute;
  7799. align-self:center;
  7800. padding:2px 2px 2px 0px;
  7801. box-sizing:border-box;
  7802. width:100%;
  7803. }
  7804. #u12416_text {
  7805. border-width:0px;
  7806. word-wrap:break-word;
  7807. text-transform:none;
  7808. visibility:hidden;
  7809. }
  7810. #u12417_img {
  7811. border-width:0px;
  7812. position:absolute;
  7813. left:0px;
  7814. top:0px;
  7815. width:88px;
  7816. height:38px;
  7817. }
  7818. #u12417 {
  7819. border-width:0px;
  7820. position:absolute;
  7821. left:438px;
  7822. top:280px;
  7823. width:88px;
  7824. height:38px;
  7825. display:flex;
  7826. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  7827. font-weight:400;
  7828. font-style:normal;
  7829. font-size:12px;
  7830. color:#606266;
  7831. }
  7832. #u12417 .text {
  7833. position:absolute;
  7834. align-self:center;
  7835. padding:2px 2px 2px 0px;
  7836. box-sizing:border-box;
  7837. width:100%;
  7838. }
  7839. #u12417_text {
  7840. border-width:0px;
  7841. word-wrap:break-word;
  7842. text-transform:none;
  7843. visibility:hidden;
  7844. }
  7845. #u12418_img {
  7846. border-width:0px;
  7847. position:absolute;
  7848. left:0px;
  7849. top:0px;
  7850. width:92px;
  7851. height:38px;
  7852. }
  7853. #u12418 {
  7854. border-width:0px;
  7855. position:absolute;
  7856. left:526px;
  7857. top:280px;
  7858. width:92px;
  7859. height:38px;
  7860. display:flex;
  7861. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  7862. font-weight:400;
  7863. font-style:normal;
  7864. font-size:12px;
  7865. color:#606266;
  7866. }
  7867. #u12418 .text {
  7868. position:absolute;
  7869. align-self:center;
  7870. padding:2px 2px 2px 0px;
  7871. box-sizing:border-box;
  7872. width:100%;
  7873. }
  7874. #u12418_text {
  7875. border-width:0px;
  7876. word-wrap:break-word;
  7877. text-transform:none;
  7878. visibility:hidden;
  7879. }
  7880. #u12419_img {
  7881. border-width:0px;
  7882. position:absolute;
  7883. left:0px;
  7884. top:0px;
  7885. width:88px;
  7886. height:38px;
  7887. }
  7888. #u12419 {
  7889. border-width:0px;
  7890. position:absolute;
  7891. left:618px;
  7892. top:280px;
  7893. width:88px;
  7894. height:38px;
  7895. display:flex;
  7896. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  7897. font-weight:400;
  7898. font-style:normal;
  7899. font-size:12px;
  7900. color:#606266;
  7901. }
  7902. #u12419 .text {
  7903. position:absolute;
  7904. align-self:center;
  7905. padding:2px 2px 2px 0px;
  7906. box-sizing:border-box;
  7907. width:100%;
  7908. }
  7909. #u12419_text {
  7910. border-width:0px;
  7911. word-wrap:break-word;
  7912. text-transform:none;
  7913. visibility:hidden;
  7914. }
  7915. #u12420_img {
  7916. border-width:0px;
  7917. position:absolute;
  7918. left:0px;
  7919. top:0px;
  7920. width:88px;
  7921. height:38px;
  7922. }
  7923. #u12420 {
  7924. border-width:0px;
  7925. position:absolute;
  7926. left:706px;
  7927. top:280px;
  7928. width:88px;
  7929. height:38px;
  7930. display:flex;
  7931. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  7932. font-weight:400;
  7933. font-style:normal;
  7934. font-size:12px;
  7935. color:#606266;
  7936. }
  7937. #u12420 .text {
  7938. position:absolute;
  7939. align-self:center;
  7940. padding:2px 2px 2px 0px;
  7941. box-sizing:border-box;
  7942. width:100%;
  7943. }
  7944. #u12420_text {
  7945. border-width:0px;
  7946. word-wrap:break-word;
  7947. text-transform:none;
  7948. visibility:hidden;
  7949. }
  7950. #u12421_img {
  7951. border-width:0px;
  7952. position:absolute;
  7953. left:0px;
  7954. top:0px;
  7955. width:88px;
  7956. height:38px;
  7957. }
  7958. #u12421 {
  7959. border-width:0px;
  7960. position:absolute;
  7961. left:794px;
  7962. top:280px;
  7963. width:88px;
  7964. height:38px;
  7965. display:flex;
  7966. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  7967. font-weight:400;
  7968. font-style:normal;
  7969. font-size:12px;
  7970. color:#606266;
  7971. }
  7972. #u12421 .text {
  7973. position:absolute;
  7974. align-self:center;
  7975. padding:2px 2px 2px 0px;
  7976. box-sizing:border-box;
  7977. width:100%;
  7978. }
  7979. #u12421_text {
  7980. border-width:0px;
  7981. word-wrap:break-word;
  7982. text-transform:none;
  7983. visibility:hidden;
  7984. }
  7985. #u12422_img {
  7986. border-width:0px;
  7987. position:absolute;
  7988. left:0px;
  7989. top:0px;
  7990. width:126px;
  7991. height:38px;
  7992. }
  7993. #u12422 {
  7994. border-width:0px;
  7995. position:absolute;
  7996. left:882px;
  7997. top:280px;
  7998. width:126px;
  7999. height:38px;
  8000. display:flex;
  8001. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  8002. font-weight:400;
  8003. font-style:normal;
  8004. font-size:12px;
  8005. color:#606266;
  8006. }
  8007. #u12422 .text {
  8008. position:absolute;
  8009. align-self:center;
  8010. padding:2px 2px 2px 0px;
  8011. box-sizing:border-box;
  8012. width:100%;
  8013. }
  8014. #u12422_text {
  8015. border-width:0px;
  8016. word-wrap:break-word;
  8017. text-transform:none;
  8018. visibility:hidden;
  8019. }
  8020. #u12423_div {
  8021. border-width:0px;
  8022. position:absolute;
  8023. left:0px;
  8024. top:0px;
  8025. width:73px;
  8026. height:50px;
  8027. background:inherit;
  8028. background-color:rgba(255, 255, 255, 0);
  8029. border:none;
  8030. border-left:0px;
  8031. border-top:0px;
  8032. border-right:0px;
  8033. border-radius:0px;
  8034. border-bottom-right-radius:0px;
  8035. border-bottom-left-radius:0px;
  8036. -moz-box-shadow:none;
  8037. -webkit-box-shadow:none;
  8038. box-shadow:none;
  8039. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8040. font-weight:400;
  8041. font-style:normal;
  8042. font-size:18px;
  8043. }
  8044. #u12423 {
  8045. border-width:0px;
  8046. position:absolute;
  8047. left:350px;
  8048. top:50px;
  8049. width:73px;
  8050. height:50px;
  8051. display:flex;
  8052. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8053. font-weight:400;
  8054. font-style:normal;
  8055. font-size:18px;
  8056. }
  8057. #u12423 .text {
  8058. position:absolute;
  8059. align-self:center;
  8060. padding:0px 0px 0px 0px;
  8061. box-sizing:border-box;
  8062. width:100%;
  8063. }
  8064. #u12423_text {
  8065. border-width:0px;
  8066. white-space:nowrap;
  8067. text-transform:none;
  8068. }
  8069. #u12424 {
  8070. border-width:0px;
  8071. position:absolute;
  8072. left:0px;
  8073. top:0px;
  8074. width:0px;
  8075. height:0px;
  8076. }
  8077. #u12425_div {
  8078. border-width:0px;
  8079. position:absolute;
  8080. left:0px;
  8081. top:0px;
  8082. width:140px;
  8083. height:30px;
  8084. background:inherit;
  8085. background-color:rgba(255, 255, 255, 1);
  8086. box-sizing:border-box;
  8087. border-width:1px;
  8088. border-style:solid;
  8089. border-color:rgba(215, 215, 215, 1);
  8090. border-radius:4px;
  8091. -moz-box-shadow:none;
  8092. -webkit-box-shadow:none;
  8093. box-shadow:none;
  8094. font-size:14px;
  8095. }
  8096. #u12425 {
  8097. border-width:0px;
  8098. position:absolute;
  8099. left:861px;
  8100. top:239px;
  8101. width:140px;
  8102. height:30px;
  8103. display:flex;
  8104. font-size:14px;
  8105. }
  8106. #u12425 .text {
  8107. position:absolute;
  8108. align-self:center;
  8109. padding:2px 2px 2px 2px;
  8110. box-sizing:border-box;
  8111. width:100%;
  8112. }
  8113. #u12425_text {
  8114. border-width:0px;
  8115. word-wrap:break-word;
  8116. text-transform:none;
  8117. visibility:hidden;
  8118. }
  8119. #u12426_input {
  8120. position:absolute;
  8121. left:0px;
  8122. top:0px;
  8123. width:134px;
  8124. height:23px;
  8125. padding:2px 2px 2px 2px;
  8126. font-family:'ArialMT', 'Arial', sans-serif;
  8127. font-weight:400;
  8128. font-style:normal;
  8129. font-size:14px;
  8130. letter-spacing:normal;
  8131. color:#AAAAAA;
  8132. vertical-align:none;
  8133. text-align:left;
  8134. text-transform:none;
  8135. background-color:transparent;
  8136. border-color:transparent;
  8137. }
  8138. #u12426_input.disabled {
  8139. position:absolute;
  8140. left:0px;
  8141. top:0px;
  8142. width:134px;
  8143. height:23px;
  8144. padding:2px 2px 2px 2px;
  8145. font-family:'ArialMT', 'Arial', sans-serif;
  8146. font-weight:400;
  8147. font-style:normal;
  8148. font-size:14px;
  8149. letter-spacing:normal;
  8150. color:#AAAAAA;
  8151. vertical-align:none;
  8152. text-align:left;
  8153. text-transform:none;
  8154. background-color:transparent;
  8155. border-color:transparent;
  8156. }
  8157. #u12426_div {
  8158. border-width:0px;
  8159. position:absolute;
  8160. left:0px;
  8161. top:0px;
  8162. width:134px;
  8163. height:23px;
  8164. background:inherit;
  8165. background-color:rgba(255, 255, 255, 1);
  8166. border:none;
  8167. border-radius:0px;
  8168. -moz-box-shadow:none;
  8169. -webkit-box-shadow:none;
  8170. box-shadow:none;
  8171. font-size:14px;
  8172. color:#AAAAAA;
  8173. }
  8174. #u12426 {
  8175. border-width:0px;
  8176. position:absolute;
  8177. left:865px;
  8178. top:241px;
  8179. width:134px;
  8180. height:23px;
  8181. display:flex;
  8182. font-size:14px;
  8183. color:#AAAAAA;
  8184. }
  8185. #u12426 .text {
  8186. position:absolute;
  8187. align-self:flex-start;
  8188. padding:2px 2px 2px 2px;
  8189. box-sizing:border-box;
  8190. width:100%;
  8191. }
  8192. #u12426_div.disabled {
  8193. border-width:0px;
  8194. position:absolute;
  8195. left:0px;
  8196. top:0px;
  8197. width:134px;
  8198. height:23px;
  8199. background:inherit;
  8200. background-color:rgba(240, 240, 240, 1);
  8201. border:none;
  8202. border-radius:0px;
  8203. -moz-box-shadow:none;
  8204. -webkit-box-shadow:none;
  8205. box-shadow:none;
  8206. font-size:14px;
  8207. color:#AAAAAA;
  8208. }
  8209. #u12426.disabled {
  8210. }
  8211. .u12426_input_option {
  8212. font-size:14px;
  8213. }
  8214. #u12427 {
  8215. border-width:0px;
  8216. position:absolute;
  8217. left:0px;
  8218. top:0px;
  8219. width:0px;
  8220. height:0px;
  8221. }
  8222. #u12428_div {
  8223. border-width:0px;
  8224. position:absolute;
  8225. left:0px;
  8226. top:0px;
  8227. width:140px;
  8228. height:30px;
  8229. background:inherit;
  8230. background-color:rgba(255, 255, 255, 1);
  8231. box-sizing:border-box;
  8232. border-width:1px;
  8233. border-style:solid;
  8234. border-color:rgba(201, 201, 201, 1);
  8235. border-radius:4px;
  8236. -moz-box-shadow:none;
  8237. -webkit-box-shadow:none;
  8238. box-shadow:none;
  8239. font-family:'Microsoft YaHei', sans-serif;
  8240. font-weight:400;
  8241. font-style:normal;
  8242. font-size:14px;
  8243. color:#CCCCCC;
  8244. text-align:left;
  8245. }
  8246. #u12428 {
  8247. border-width:0px;
  8248. position:absolute;
  8249. left:563px;
  8250. top:239px;
  8251. width:140px;
  8252. height:30px;
  8253. display:flex;
  8254. font-family:'Microsoft YaHei', sans-serif;
  8255. font-weight:400;
  8256. font-style:normal;
  8257. font-size:14px;
  8258. color:#CCCCCC;
  8259. text-align:left;
  8260. }
  8261. #u12428 .text {
  8262. position:absolute;
  8263. align-self:center;
  8264. padding:2px 8px 2px 8px;
  8265. box-sizing:border-box;
  8266. width:100%;
  8267. }
  8268. #u12428_text {
  8269. border-width:0px;
  8270. word-wrap:break-word;
  8271. text-transform:none;
  8272. visibility:hidden;
  8273. }
  8274. #u12429_input {
  8275. position:absolute;
  8276. left:0px;
  8277. top:0px;
  8278. width:127px;
  8279. height:25px;
  8280. padding:2px 2px 2px 2px;
  8281. font-family:'Microsoft YaHei', sans-serif;
  8282. font-weight:400;
  8283. font-style:normal;
  8284. font-size:10px;
  8285. letter-spacing:normal;
  8286. color:#000000;
  8287. vertical-align:none;
  8288. text-align:left;
  8289. text-transform:none;
  8290. background-color:transparent;
  8291. border-color:transparent;
  8292. }
  8293. #u12429_input.disabled {
  8294. position:absolute;
  8295. left:0px;
  8296. top:0px;
  8297. width:127px;
  8298. height:25px;
  8299. padding:2px 2px 2px 2px;
  8300. font-family:'Microsoft YaHei', sans-serif;
  8301. font-weight:400;
  8302. font-style:normal;
  8303. font-size:10px;
  8304. letter-spacing:normal;
  8305. color:#000000;
  8306. vertical-align:none;
  8307. text-align:left;
  8308. text-transform:none;
  8309. background-color:transparent;
  8310. border-color:transparent;
  8311. }
  8312. #u12429_div {
  8313. border-width:0px;
  8314. position:absolute;
  8315. left:0px;
  8316. top:0px;
  8317. width:127px;
  8318. height:25px;
  8319. background:inherit;
  8320. background-color:rgba(255, 255, 255, 1);
  8321. border:none;
  8322. border-radius:0px;
  8323. -moz-box-shadow:none;
  8324. -webkit-box-shadow:none;
  8325. box-shadow:none;
  8326. font-family:'Microsoft YaHei', sans-serif;
  8327. font-weight:400;
  8328. font-style:normal;
  8329. font-size:10px;
  8330. }
  8331. #u12429 {
  8332. border-width:0px;
  8333. position:absolute;
  8334. left:571px;
  8335. top:240px;
  8336. width:127px;
  8337. height:25px;
  8338. display:flex;
  8339. font-family:'Microsoft YaHei', sans-serif;
  8340. font-weight:400;
  8341. font-style:normal;
  8342. font-size:10px;
  8343. }
  8344. #u12429 .text {
  8345. position:absolute;
  8346. align-self:center;
  8347. padding:2px 2px 2px 2px;
  8348. box-sizing:border-box;
  8349. width:100%;
  8350. }
  8351. #u12429_div.disabled {
  8352. border-width:0px;
  8353. position:absolute;
  8354. left:0px;
  8355. top:0px;
  8356. width:127px;
  8357. height:25px;
  8358. background:inherit;
  8359. background-color:rgba(240, 240, 240, 1);
  8360. border:none;
  8361. border-radius:0px;
  8362. -moz-box-shadow:none;
  8363. -webkit-box-shadow:none;
  8364. box-shadow:none;
  8365. font-family:'Microsoft YaHei', sans-serif;
  8366. font-weight:400;
  8367. font-style:normal;
  8368. font-size:10px;
  8369. }
  8370. #u12429.disabled {
  8371. }
  8372. #u12430 {
  8373. border-width:0px;
  8374. position:absolute;
  8375. left:0px;
  8376. top:0px;
  8377. width:0px;
  8378. height:0px;
  8379. }
  8380. #u12431_div {
  8381. border-width:0px;
  8382. position:absolute;
  8383. left:0px;
  8384. top:0px;
  8385. width:140px;
  8386. height:30px;
  8387. background:inherit;
  8388. background-color:rgba(255, 255, 255, 1);
  8389. box-sizing:border-box;
  8390. border-width:1px;
  8391. border-style:solid;
  8392. border-color:rgba(201, 201, 201, 1);
  8393. border-radius:4px;
  8394. -moz-box-shadow:none;
  8395. -webkit-box-shadow:none;
  8396. box-shadow:none;
  8397. font-family:'Microsoft YaHei', sans-serif;
  8398. font-weight:400;
  8399. font-style:normal;
  8400. font-size:14px;
  8401. color:#CCCCCC;
  8402. text-align:left;
  8403. }
  8404. #u12431 {
  8405. border-width:0px;
  8406. position:absolute;
  8407. left:713px;
  8408. top:239px;
  8409. width:140px;
  8410. height:30px;
  8411. display:flex;
  8412. font-family:'Microsoft YaHei', sans-serif;
  8413. font-weight:400;
  8414. font-style:normal;
  8415. font-size:14px;
  8416. color:#CCCCCC;
  8417. text-align:left;
  8418. }
  8419. #u12431 .text {
  8420. position:absolute;
  8421. align-self:center;
  8422. padding:2px 8px 2px 8px;
  8423. box-sizing:border-box;
  8424. width:100%;
  8425. }
  8426. #u12431_text {
  8427. border-width:0px;
  8428. word-wrap:break-word;
  8429. text-transform:none;
  8430. visibility:hidden;
  8431. }
  8432. #u12432_input {
  8433. position:absolute;
  8434. left:0px;
  8435. top:0px;
  8436. width:127px;
  8437. height:25px;
  8438. padding:2px 2px 2px 2px;
  8439. font-family:'Microsoft YaHei', sans-serif;
  8440. font-weight:400;
  8441. font-style:normal;
  8442. font-size:10px;
  8443. letter-spacing:normal;
  8444. color:#000000;
  8445. vertical-align:none;
  8446. text-align:left;
  8447. text-transform:none;
  8448. background-color:transparent;
  8449. border-color:transparent;
  8450. }
  8451. #u12432_input.disabled {
  8452. position:absolute;
  8453. left:0px;
  8454. top:0px;
  8455. width:127px;
  8456. height:25px;
  8457. padding:2px 2px 2px 2px;
  8458. font-family:'Microsoft YaHei', sans-serif;
  8459. font-weight:400;
  8460. font-style:normal;
  8461. font-size:10px;
  8462. letter-spacing:normal;
  8463. color:#000000;
  8464. vertical-align:none;
  8465. text-align:left;
  8466. text-transform:none;
  8467. background-color:transparent;
  8468. border-color:transparent;
  8469. }
  8470. #u12432_div {
  8471. border-width:0px;
  8472. position:absolute;
  8473. left:0px;
  8474. top:0px;
  8475. width:127px;
  8476. height:25px;
  8477. background:inherit;
  8478. background-color:rgba(255, 255, 255, 1);
  8479. border:none;
  8480. border-radius:0px;
  8481. -moz-box-shadow:none;
  8482. -webkit-box-shadow:none;
  8483. box-shadow:none;
  8484. font-family:'Microsoft YaHei', sans-serif;
  8485. font-weight:400;
  8486. font-style:normal;
  8487. font-size:10px;
  8488. }
  8489. #u12432 {
  8490. border-width:0px;
  8491. position:absolute;
  8492. left:721px;
  8493. top:240px;
  8494. width:127px;
  8495. height:25px;
  8496. display:flex;
  8497. font-family:'Microsoft YaHei', sans-serif;
  8498. font-weight:400;
  8499. font-style:normal;
  8500. font-size:10px;
  8501. }
  8502. #u12432 .text {
  8503. position:absolute;
  8504. align-self:center;
  8505. padding:2px 2px 2px 2px;
  8506. box-sizing:border-box;
  8507. width:100%;
  8508. }
  8509. #u12432_div.disabled {
  8510. border-width:0px;
  8511. position:absolute;
  8512. left:0px;
  8513. top:0px;
  8514. width:127px;
  8515. height:25px;
  8516. background:inherit;
  8517. background-color:rgba(240, 240, 240, 1);
  8518. border:none;
  8519. border-radius:0px;
  8520. -moz-box-shadow:none;
  8521. -webkit-box-shadow:none;
  8522. box-shadow:none;
  8523. font-family:'Microsoft YaHei', sans-serif;
  8524. font-weight:400;
  8525. font-style:normal;
  8526. font-size:10px;
  8527. }
  8528. #u12432.disabled {
  8529. }
  8530. #u12433 {
  8531. border-width:0px;
  8532. position:absolute;
  8533. left:0px;
  8534. top:0px;
  8535. width:0px;
  8536. height:0px;
  8537. }
  8538. #u12434 {
  8539. border-width:0px;
  8540. position:absolute;
  8541. left:350px;
  8542. top:241px;
  8543. width:137px;
  8544. height:500px;
  8545. }
  8546. #u12434_children {
  8547. border-width:0px;
  8548. position:absolute;
  8549. left:0px;
  8550. top:0px;
  8551. width:0px;
  8552. height:0px;
  8553. }
  8554. #u12435 {
  8555. border-width:0px;
  8556. position:absolute;
  8557. left:0px;
  8558. top:0px;
  8559. width:106px;
  8560. height:20px;
  8561. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8562. font-weight:400;
  8563. font-style:normal;
  8564. }
  8565. #u12436_img {
  8566. border-width:0px;
  8567. position:absolute;
  8568. left:0px;
  8569. top:0px;
  8570. width:9px;
  8571. height:9px;
  8572. }
  8573. #u12436 {
  8574. border-width:0px;
  8575. position:absolute;
  8576. left:6px;
  8577. top:6px;
  8578. width:9px;
  8579. height:9px;
  8580. display:flex;
  8581. }
  8582. #u12436 .text {
  8583. position:absolute;
  8584. align-self:center;
  8585. padding:2px 2px 2px 2px;
  8586. box-sizing:border-box;
  8587. width:100%;
  8588. }
  8589. #u12436_img.selected {
  8590. }
  8591. #u12436.selected {
  8592. }
  8593. #u12436_text {
  8594. border-width:0px;
  8595. word-wrap:break-word;
  8596. text-transform:none;
  8597. visibility:hidden;
  8598. }
  8599. #u12437_div {
  8600. border-width:0px;
  8601. position:absolute;
  8602. left:0px;
  8603. top:0px;
  8604. width:84px;
  8605. height:20px;
  8606. background:inherit;
  8607. background-color:rgba(255, 255, 255, 0);
  8608. border:none;
  8609. border-radius:0px;
  8610. -moz-box-shadow:none;
  8611. -webkit-box-shadow:none;
  8612. box-shadow:none;
  8613. }
  8614. #u12437 {
  8615. border-width:0px;
  8616. position:absolute;
  8617. left:22px;
  8618. top:0px;
  8619. width:84px;
  8620. height:20px;
  8621. display:flex;
  8622. }
  8623. #u12437 .text {
  8624. position:absolute;
  8625. align-self:center;
  8626. padding:2px 2px 2px 3px;
  8627. box-sizing:border-box;
  8628. width:100%;
  8629. }
  8630. #u12437_text {
  8631. border-width:0px;
  8632. white-space:nowrap;
  8633. text-transform:none;
  8634. }
  8635. #u12435_children {
  8636. border-width:0px;
  8637. position:absolute;
  8638. left:0px;
  8639. top:0px;
  8640. width:0px;
  8641. height:0px;
  8642. }
  8643. #u12438 {
  8644. border-width:0px;
  8645. position:absolute;
  8646. left:20px;
  8647. top:20px;
  8648. width:59px;
  8649. height:20px;
  8650. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8651. font-weight:400;
  8652. font-style:normal;
  8653. }
  8654. #u12439_img {
  8655. border-width:0px;
  8656. position:absolute;
  8657. left:0px;
  8658. top:0px;
  8659. width:9px;
  8660. height:9px;
  8661. }
  8662. #u12439 {
  8663. border-width:0px;
  8664. position:absolute;
  8665. left:6px;
  8666. top:6px;
  8667. width:9px;
  8668. height:9px;
  8669. display:flex;
  8670. }
  8671. #u12439 .text {
  8672. position:absolute;
  8673. align-self:center;
  8674. padding:2px 2px 2px 2px;
  8675. box-sizing:border-box;
  8676. width:100%;
  8677. }
  8678. #u12439_img.selected {
  8679. }
  8680. #u12439.selected {
  8681. }
  8682. #u12439_text {
  8683. border-width:0px;
  8684. word-wrap:break-word;
  8685. text-transform:none;
  8686. visibility:hidden;
  8687. }
  8688. #u12440_div {
  8689. border-width:0px;
  8690. position:absolute;
  8691. left:0px;
  8692. top:0px;
  8693. width:37px;
  8694. height:20px;
  8695. background:inherit;
  8696. background-color:rgba(255, 255, 255, 0);
  8697. border:none;
  8698. border-radius:0px;
  8699. -moz-box-shadow:none;
  8700. -webkit-box-shadow:none;
  8701. box-shadow:none;
  8702. }
  8703. #u12440 {
  8704. border-width:0px;
  8705. position:absolute;
  8706. left:22px;
  8707. top:0px;
  8708. width:37px;
  8709. height:20px;
  8710. display:flex;
  8711. }
  8712. #u12440 .text {
  8713. position:absolute;
  8714. align-self:center;
  8715. padding:2px 2px 2px 3px;
  8716. box-sizing:border-box;
  8717. width:100%;
  8718. }
  8719. #u12440_text {
  8720. border-width:0px;
  8721. white-space:nowrap;
  8722. text-transform:none;
  8723. }
  8724. #u12438_children {
  8725. border-width:0px;
  8726. position:absolute;
  8727. left:0px;
  8728. top:0px;
  8729. width:0px;
  8730. height:0px;
  8731. }
  8732. #u12441 {
  8733. border-width:0px;
  8734. position:absolute;
  8735. left:20px;
  8736. top:20px;
  8737. width:67px;
  8738. height:20px;
  8739. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8740. font-weight:400;
  8741. font-style:normal;
  8742. }
  8743. #u12442_img {
  8744. border-width:0px;
  8745. position:absolute;
  8746. left:0px;
  8747. top:0px;
  8748. width:9px;
  8749. height:9px;
  8750. }
  8751. #u12442 {
  8752. border-width:0px;
  8753. position:absolute;
  8754. left:6px;
  8755. top:6px;
  8756. width:9px;
  8757. height:9px;
  8758. display:flex;
  8759. }
  8760. #u12442 .text {
  8761. position:absolute;
  8762. align-self:center;
  8763. padding:2px 2px 2px 2px;
  8764. box-sizing:border-box;
  8765. width:100%;
  8766. }
  8767. #u12442_img.selected {
  8768. }
  8769. #u12442.selected {
  8770. }
  8771. #u12442_text {
  8772. border-width:0px;
  8773. word-wrap:break-word;
  8774. text-transform:none;
  8775. visibility:hidden;
  8776. }
  8777. #u12443_div {
  8778. border-width:0px;
  8779. position:absolute;
  8780. left:0px;
  8781. top:0px;
  8782. width:45px;
  8783. height:20px;
  8784. background:inherit;
  8785. background-color:rgba(255, 255, 255, 0);
  8786. border:none;
  8787. border-radius:0px;
  8788. -moz-box-shadow:none;
  8789. -webkit-box-shadow:none;
  8790. box-shadow:none;
  8791. }
  8792. #u12443 {
  8793. border-width:0px;
  8794. position:absolute;
  8795. left:22px;
  8796. top:0px;
  8797. width:45px;
  8798. height:20px;
  8799. display:flex;
  8800. }
  8801. #u12443 .text {
  8802. position:absolute;
  8803. align-self:center;
  8804. padding:2px 2px 2px 3px;
  8805. box-sizing:border-box;
  8806. width:100%;
  8807. }
  8808. #u12443_text {
  8809. border-width:0px;
  8810. white-space:nowrap;
  8811. text-transform:none;
  8812. }
  8813. #u12441_children {
  8814. border-width:0px;
  8815. position:absolute;
  8816. left:0px;
  8817. top:0px;
  8818. width:0px;
  8819. height:0px;
  8820. }
  8821. #u12444 {
  8822. border-width:0px;
  8823. position:absolute;
  8824. left:20px;
  8825. top:20px;
  8826. width:59px;
  8827. height:20px;
  8828. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8829. font-weight:400;
  8830. font-style:normal;
  8831. }
  8832. #u12445_div {
  8833. border-width:0px;
  8834. position:absolute;
  8835. left:0px;
  8836. top:0px;
  8837. width:37px;
  8838. height:20px;
  8839. background:inherit;
  8840. background-color:rgba(255, 255, 255, 0);
  8841. border:none;
  8842. border-radius:0px;
  8843. -moz-box-shadow:none;
  8844. -webkit-box-shadow:none;
  8845. box-shadow:none;
  8846. }
  8847. #u12445 {
  8848. border-width:0px;
  8849. position:absolute;
  8850. left:22px;
  8851. top:0px;
  8852. width:37px;
  8853. height:20px;
  8854. display:flex;
  8855. }
  8856. #u12445 .text {
  8857. position:absolute;
  8858. align-self:center;
  8859. padding:2px 2px 2px 3px;
  8860. box-sizing:border-box;
  8861. width:100%;
  8862. }
  8863. #u12445_text {
  8864. border-width:0px;
  8865. white-space:nowrap;
  8866. text-transform:none;
  8867. }
  8868. #u12446 {
  8869. border-width:0px;
  8870. position:absolute;
  8871. left:20px;
  8872. top:40px;
  8873. width:62px;
  8874. height:20px;
  8875. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8876. font-weight:400;
  8877. font-style:normal;
  8878. color:#1890FF;
  8879. }
  8880. #u12447_div {
  8881. border-width:0px;
  8882. position:absolute;
  8883. left:0px;
  8884. top:0px;
  8885. width:40px;
  8886. height:20px;
  8887. background:inherit;
  8888. background-color:rgba(255, 255, 255, 0);
  8889. border:none;
  8890. border-radius:0px;
  8891. -moz-box-shadow:none;
  8892. -webkit-box-shadow:none;
  8893. box-shadow:none;
  8894. }
  8895. #u12447 {
  8896. border-width:0px;
  8897. position:absolute;
  8898. left:22px;
  8899. top:0px;
  8900. width:40px;
  8901. height:20px;
  8902. display:flex;
  8903. }
  8904. #u12447 .text {
  8905. position:absolute;
  8906. align-self:center;
  8907. padding:2px 2px 2px 3px;
  8908. box-sizing:border-box;
  8909. width:100%;
  8910. }
  8911. #u12447_text {
  8912. border-width:0px;
  8913. white-space:nowrap;
  8914. text-transform:none;
  8915. }
  8916. #u12448 {
  8917. border-width:0px;
  8918. position:absolute;
  8919. left:20px;
  8920. top:60px;
  8921. width:62px;
  8922. height:20px;
  8923. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8924. font-weight:400;
  8925. font-style:normal;
  8926. }
  8927. #u12449_div {
  8928. border-width:0px;
  8929. position:absolute;
  8930. left:0px;
  8931. top:0px;
  8932. width:40px;
  8933. height:20px;
  8934. background:inherit;
  8935. background-color:rgba(255, 255, 255, 0);
  8936. border:none;
  8937. border-radius:0px;
  8938. -moz-box-shadow:none;
  8939. -webkit-box-shadow:none;
  8940. box-shadow:none;
  8941. }
  8942. #u12449 {
  8943. border-width:0px;
  8944. position:absolute;
  8945. left:22px;
  8946. top:0px;
  8947. width:40px;
  8948. height:20px;
  8949. display:flex;
  8950. }
  8951. #u12449 .text {
  8952. position:absolute;
  8953. align-self:center;
  8954. padding:2px 2px 2px 3px;
  8955. box-sizing:border-box;
  8956. width:100%;
  8957. }
  8958. #u12449_text {
  8959. border-width:0px;
  8960. white-space:nowrap;
  8961. text-transform:none;
  8962. }
  8963. #u12450 {
  8964. border-width:0px;
  8965. position:absolute;
  8966. left:20px;
  8967. top:80px;
  8968. width:62px;
  8969. height:20px;
  8970. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8971. font-weight:400;
  8972. font-style:normal;
  8973. }
  8974. #u12451_div {
  8975. border-width:0px;
  8976. position:absolute;
  8977. left:0px;
  8978. top:0px;
  8979. width:40px;
  8980. height:20px;
  8981. background:inherit;
  8982. background-color:rgba(255, 255, 255, 0);
  8983. border:none;
  8984. border-radius:0px;
  8985. -moz-box-shadow:none;
  8986. -webkit-box-shadow:none;
  8987. box-shadow:none;
  8988. }
  8989. #u12451 {
  8990. border-width:0px;
  8991. position:absolute;
  8992. left:22px;
  8993. top:0px;
  8994. width:40px;
  8995. height:20px;
  8996. display:flex;
  8997. }
  8998. #u12451 .text {
  8999. position:absolute;
  9000. align-self:center;
  9001. padding:2px 2px 2px 3px;
  9002. box-sizing:border-box;
  9003. width:100%;
  9004. }
  9005. #u12451_text {
  9006. border-width:0px;
  9007. white-space:nowrap;
  9008. text-transform:none;
  9009. }
  9010. #u12452 {
  9011. border-width:0px;
  9012. position:absolute;
  9013. left:20px;
  9014. top:100px;
  9015. width:64px;
  9016. height:20px;
  9017. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9018. font-weight:400;
  9019. font-style:normal;
  9020. }
  9021. #u12453_div {
  9022. border-width:0px;
  9023. position:absolute;
  9024. left:0px;
  9025. top:0px;
  9026. width:42px;
  9027. height:20px;
  9028. background:inherit;
  9029. background-color:rgba(255, 255, 255, 0);
  9030. border:none;
  9031. border-radius:0px;
  9032. -moz-box-shadow:none;
  9033. -webkit-box-shadow:none;
  9034. box-shadow:none;
  9035. }
  9036. #u12453 {
  9037. border-width:0px;
  9038. position:absolute;
  9039. left:22px;
  9040. top:0px;
  9041. width:42px;
  9042. height:20px;
  9043. display:flex;
  9044. }
  9045. #u12453 .text {
  9046. position:absolute;
  9047. align-self:center;
  9048. padding:2px 2px 2px 3px;
  9049. box-sizing:border-box;
  9050. width:100%;
  9051. }
  9052. #u12453_text {
  9053. border-width:0px;
  9054. white-space:nowrap;
  9055. text-transform:none;
  9056. }
  9057. #u12454 {
  9058. border-width:0px;
  9059. position:absolute;
  9060. left:20px;
  9061. top:120px;
  9062. width:54px;
  9063. height:20px;
  9064. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9065. font-weight:400;
  9066. font-style:normal;
  9067. }
  9068. #u12455_div {
  9069. border-width:0px;
  9070. position:absolute;
  9071. left:0px;
  9072. top:0px;
  9073. width:32px;
  9074. height:20px;
  9075. background:inherit;
  9076. background-color:rgba(255, 255, 255, 0);
  9077. border:none;
  9078. border-radius:0px;
  9079. -moz-box-shadow:none;
  9080. -webkit-box-shadow:none;
  9081. box-shadow:none;
  9082. }
  9083. #u12455 {
  9084. border-width:0px;
  9085. position:absolute;
  9086. left:22px;
  9087. top:0px;
  9088. width:32px;
  9089. height:20px;
  9090. display:flex;
  9091. }
  9092. #u12455 .text {
  9093. position:absolute;
  9094. align-self:center;
  9095. padding:2px 2px 2px 3px;
  9096. box-sizing:border-box;
  9097. width:100%;
  9098. }
  9099. #u12455_text {
  9100. border-width:0px;
  9101. white-space:nowrap;
  9102. text-transform:none;
  9103. }
  9104. #u12456 {
  9105. border-width:0px;
  9106. position:absolute;
  9107. left:20px;
  9108. top:160px;
  9109. width:70px;
  9110. height:20px;
  9111. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9112. font-weight:400;
  9113. font-style:normal;
  9114. }
  9115. #u12457_img {
  9116. border-width:0px;
  9117. position:absolute;
  9118. left:0px;
  9119. top:0px;
  9120. width:9px;
  9121. height:9px;
  9122. }
  9123. #u12457 {
  9124. border-width:0px;
  9125. position:absolute;
  9126. left:6px;
  9127. top:6px;
  9128. width:9px;
  9129. height:9px;
  9130. display:flex;
  9131. }
  9132. #u12457 .text {
  9133. position:absolute;
  9134. align-self:center;
  9135. padding:2px 2px 2px 2px;
  9136. box-sizing:border-box;
  9137. width:100%;
  9138. }
  9139. #u12457_img.selected {
  9140. }
  9141. #u12457.selected {
  9142. }
  9143. #u12457_text {
  9144. border-width:0px;
  9145. word-wrap:break-word;
  9146. text-transform:none;
  9147. visibility:hidden;
  9148. }
  9149. #u12458_div {
  9150. border-width:0px;
  9151. position:absolute;
  9152. left:0px;
  9153. top:0px;
  9154. width:48px;
  9155. height:20px;
  9156. background:inherit;
  9157. background-color:rgba(255, 255, 255, 0);
  9158. border:none;
  9159. border-radius:0px;
  9160. -moz-box-shadow:none;
  9161. -webkit-box-shadow:none;
  9162. box-shadow:none;
  9163. }
  9164. #u12458 {
  9165. border-width:0px;
  9166. position:absolute;
  9167. left:22px;
  9168. top:0px;
  9169. width:48px;
  9170. height:20px;
  9171. display:flex;
  9172. }
  9173. #u12458 .text {
  9174. position:absolute;
  9175. align-self:center;
  9176. padding:2px 2px 2px 3px;
  9177. box-sizing:border-box;
  9178. width:100%;
  9179. }
  9180. #u12458_text {
  9181. border-width:0px;
  9182. white-space:nowrap;
  9183. text-transform:none;
  9184. }
  9185. #u12456_children {
  9186. border-width:0px;
  9187. position:absolute;
  9188. left:0px;
  9189. top:0px;
  9190. width:0px;
  9191. height:0px;
  9192. }
  9193. #u12459 {
  9194. border-width:0px;
  9195. position:absolute;
  9196. left:20px;
  9197. top:20px;
  9198. width:59px;
  9199. height:20px;
  9200. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9201. font-weight:400;
  9202. font-style:normal;
  9203. }
  9204. #u12460_div {
  9205. border-width:0px;
  9206. position:absolute;
  9207. left:0px;
  9208. top:0px;
  9209. width:37px;
  9210. height:20px;
  9211. background:inherit;
  9212. background-color:rgba(255, 255, 255, 0);
  9213. border:none;
  9214. border-radius:0px;
  9215. -moz-box-shadow:none;
  9216. -webkit-box-shadow:none;
  9217. box-shadow:none;
  9218. }
  9219. #u12460 {
  9220. border-width:0px;
  9221. position:absolute;
  9222. left:22px;
  9223. top:0px;
  9224. width:37px;
  9225. height:20px;
  9226. display:flex;
  9227. }
  9228. #u12460 .text {
  9229. position:absolute;
  9230. align-self:center;
  9231. padding:2px 2px 2px 3px;
  9232. box-sizing:border-box;
  9233. width:100%;
  9234. }
  9235. #u12460_text {
  9236. border-width:0px;
  9237. white-space:nowrap;
  9238. text-transform:none;
  9239. }
  9240. #u12461 {
  9241. border-width:0px;
  9242. position:absolute;
  9243. left:20px;
  9244. top:40px;
  9245. width:62px;
  9246. height:20px;
  9247. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9248. font-weight:400;
  9249. font-style:normal;
  9250. }
  9251. #u12462_div {
  9252. border-width:0px;
  9253. position:absolute;
  9254. left:0px;
  9255. top:0px;
  9256. width:40px;
  9257. height:20px;
  9258. background:inherit;
  9259. background-color:rgba(255, 255, 255, 0);
  9260. border:none;
  9261. border-radius:0px;
  9262. -moz-box-shadow:none;
  9263. -webkit-box-shadow:none;
  9264. box-shadow:none;
  9265. }
  9266. #u12462 {
  9267. border-width:0px;
  9268. position:absolute;
  9269. left:22px;
  9270. top:0px;
  9271. width:40px;
  9272. height:20px;
  9273. display:flex;
  9274. }
  9275. #u12462 .text {
  9276. position:absolute;
  9277. align-self:center;
  9278. padding:2px 2px 2px 3px;
  9279. box-sizing:border-box;
  9280. width:100%;
  9281. }
  9282. #u12462_text {
  9283. border-width:0px;
  9284. white-space:nowrap;
  9285. text-transform:none;
  9286. }
  9287. #u12463 {
  9288. border-width:0px;
  9289. position:absolute;
  9290. left:20px;
  9291. top:60px;
  9292. width:62px;
  9293. height:20px;
  9294. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9295. font-weight:400;
  9296. font-style:normal;
  9297. }
  9298. #u12464_div {
  9299. border-width:0px;
  9300. position:absolute;
  9301. left:0px;
  9302. top:0px;
  9303. width:40px;
  9304. height:20px;
  9305. background:inherit;
  9306. background-color:rgba(255, 255, 255, 0);
  9307. border:none;
  9308. border-radius:0px;
  9309. -moz-box-shadow:none;
  9310. -webkit-box-shadow:none;
  9311. box-shadow:none;
  9312. }
  9313. #u12464 {
  9314. border-width:0px;
  9315. position:absolute;
  9316. left:22px;
  9317. top:0px;
  9318. width:40px;
  9319. height:20px;
  9320. display:flex;
  9321. }
  9322. #u12464 .text {
  9323. position:absolute;
  9324. align-self:center;
  9325. padding:2px 2px 2px 3px;
  9326. box-sizing:border-box;
  9327. width:100%;
  9328. }
  9329. #u12464_text {
  9330. border-width:0px;
  9331. white-space:nowrap;
  9332. text-transform:none;
  9333. }
  9334. #u12465 {
  9335. border-width:0px;
  9336. position:absolute;
  9337. left:20px;
  9338. top:80px;
  9339. width:62px;
  9340. height:20px;
  9341. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9342. font-weight:400;
  9343. font-style:normal;
  9344. }
  9345. #u12466_div {
  9346. border-width:0px;
  9347. position:absolute;
  9348. left:0px;
  9349. top:0px;
  9350. width:40px;
  9351. height:20px;
  9352. background:inherit;
  9353. background-color:rgba(255, 255, 255, 0);
  9354. border:none;
  9355. border-radius:0px;
  9356. -moz-box-shadow:none;
  9357. -webkit-box-shadow:none;
  9358. box-shadow:none;
  9359. }
  9360. #u12466 {
  9361. border-width:0px;
  9362. position:absolute;
  9363. left:22px;
  9364. top:0px;
  9365. width:40px;
  9366. height:20px;
  9367. display:flex;
  9368. }
  9369. #u12466 .text {
  9370. position:absolute;
  9371. align-self:center;
  9372. padding:2px 2px 2px 3px;
  9373. box-sizing:border-box;
  9374. width:100%;
  9375. }
  9376. #u12466_text {
  9377. border-width:0px;
  9378. white-space:nowrap;
  9379. text-transform:none;
  9380. }
  9381. #u12467 {
  9382. border-width:0px;
  9383. position:absolute;
  9384. left:20px;
  9385. top:100px;
  9386. width:64px;
  9387. height:20px;
  9388. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9389. font-weight:400;
  9390. font-style:normal;
  9391. }
  9392. #u12468_div {
  9393. border-width:0px;
  9394. position:absolute;
  9395. left:0px;
  9396. top:0px;
  9397. width:42px;
  9398. height:20px;
  9399. background:inherit;
  9400. background-color:rgba(255, 255, 255, 0);
  9401. border:none;
  9402. border-radius:0px;
  9403. -moz-box-shadow:none;
  9404. -webkit-box-shadow:none;
  9405. box-shadow:none;
  9406. }
  9407. #u12468 {
  9408. border-width:0px;
  9409. position:absolute;
  9410. left:22px;
  9411. top:0px;
  9412. width:42px;
  9413. height:20px;
  9414. display:flex;
  9415. }
  9416. #u12468 .text {
  9417. position:absolute;
  9418. align-self:center;
  9419. padding:2px 2px 2px 3px;
  9420. box-sizing:border-box;
  9421. width:100%;
  9422. }
  9423. #u12468_text {
  9424. border-width:0px;
  9425. white-space:nowrap;
  9426. text-transform:none;
  9427. }
  9428. #u12469 {
  9429. border-width:0px;
  9430. position:absolute;
  9431. left:20px;
  9432. top:120px;
  9433. width:54px;
  9434. height:20px;
  9435. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9436. font-weight:400;
  9437. font-style:normal;
  9438. }
  9439. #u12470_div {
  9440. border-width:0px;
  9441. position:absolute;
  9442. left:0px;
  9443. top:0px;
  9444. width:32px;
  9445. height:20px;
  9446. background:inherit;
  9447. background-color:rgba(255, 255, 255, 0);
  9448. border:none;
  9449. border-radius:0px;
  9450. -moz-box-shadow:none;
  9451. -webkit-box-shadow:none;
  9452. box-shadow:none;
  9453. }
  9454. #u12470 {
  9455. border-width:0px;
  9456. position:absolute;
  9457. left:22px;
  9458. top:0px;
  9459. width:32px;
  9460. height:20px;
  9461. display:flex;
  9462. }
  9463. #u12470 .text {
  9464. position:absolute;
  9465. align-self:center;
  9466. padding:2px 2px 2px 3px;
  9467. box-sizing:border-box;
  9468. width:100%;
  9469. }
  9470. #u12470_text {
  9471. border-width:0px;
  9472. white-space:nowrap;
  9473. text-transform:none;
  9474. }
  9475. #u12471 {
  9476. border-width:0px;
  9477. position:absolute;
  9478. left:20px;
  9479. top:320px;
  9480. width:62px;
  9481. height:20px;
  9482. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9483. font-weight:400;
  9484. font-style:normal;
  9485. }
  9486. #u12472_img {
  9487. border-width:0px;
  9488. position:absolute;
  9489. left:0px;
  9490. top:0px;
  9491. width:9px;
  9492. height:9px;
  9493. }
  9494. #u12472 {
  9495. border-width:0px;
  9496. position:absolute;
  9497. left:6px;
  9498. top:6px;
  9499. width:9px;
  9500. height:9px;
  9501. display:flex;
  9502. }
  9503. #u12472 .text {
  9504. position:absolute;
  9505. align-self:center;
  9506. padding:2px 2px 2px 2px;
  9507. box-sizing:border-box;
  9508. width:100%;
  9509. }
  9510. #u12472_img.selected {
  9511. }
  9512. #u12472.selected {
  9513. }
  9514. #u12472_text {
  9515. border-width:0px;
  9516. word-wrap:break-word;
  9517. text-transform:none;
  9518. visibility:hidden;
  9519. }
  9520. #u12473_div {
  9521. border-width:0px;
  9522. position:absolute;
  9523. left:0px;
  9524. top:0px;
  9525. width:40px;
  9526. height:20px;
  9527. background:inherit;
  9528. background-color:rgba(255, 255, 255, 0);
  9529. border:none;
  9530. border-radius:0px;
  9531. -moz-box-shadow:none;
  9532. -webkit-box-shadow:none;
  9533. box-shadow:none;
  9534. }
  9535. #u12473 {
  9536. border-width:0px;
  9537. position:absolute;
  9538. left:22px;
  9539. top:0px;
  9540. width:40px;
  9541. height:20px;
  9542. display:flex;
  9543. }
  9544. #u12473 .text {
  9545. position:absolute;
  9546. align-self:center;
  9547. padding:2px 2px 2px 3px;
  9548. box-sizing:border-box;
  9549. width:100%;
  9550. }
  9551. #u12473_text {
  9552. border-width:0px;
  9553. white-space:nowrap;
  9554. text-transform:none;
  9555. }
  9556. #u12471_children {
  9557. border-width:0px;
  9558. position:absolute;
  9559. left:0px;
  9560. top:0px;
  9561. width:0px;
  9562. height:0px;
  9563. }
  9564. #u12474 {
  9565. border-width:0px;
  9566. position:absolute;
  9567. left:20px;
  9568. top:20px;
  9569. width:59px;
  9570. height:20px;
  9571. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9572. font-weight:400;
  9573. font-style:normal;
  9574. }
  9575. #u12475_div {
  9576. border-width:0px;
  9577. position:absolute;
  9578. left:0px;
  9579. top:0px;
  9580. width:37px;
  9581. height:20px;
  9582. background:inherit;
  9583. background-color:rgba(255, 255, 255, 0);
  9584. border:none;
  9585. border-radius:0px;
  9586. -moz-box-shadow:none;
  9587. -webkit-box-shadow:none;
  9588. box-shadow:none;
  9589. }
  9590. #u12475 {
  9591. border-width:0px;
  9592. position:absolute;
  9593. left:22px;
  9594. top:0px;
  9595. width:37px;
  9596. height:20px;
  9597. display:flex;
  9598. }
  9599. #u12475 .text {
  9600. position:absolute;
  9601. align-self:center;
  9602. padding:2px 2px 2px 3px;
  9603. box-sizing:border-box;
  9604. width:100%;
  9605. }
  9606. #u12475_text {
  9607. border-width:0px;
  9608. white-space:nowrap;
  9609. text-transform:none;
  9610. }
  9611. #u12476 {
  9612. border-width:0px;
  9613. position:absolute;
  9614. left:20px;
  9615. top:40px;
  9616. width:62px;
  9617. height:20px;
  9618. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9619. font-weight:400;
  9620. font-style:normal;
  9621. }
  9622. #u12477_div {
  9623. border-width:0px;
  9624. position:absolute;
  9625. left:0px;
  9626. top:0px;
  9627. width:40px;
  9628. height:20px;
  9629. background:inherit;
  9630. background-color:rgba(255, 255, 255, 0);
  9631. border:none;
  9632. border-radius:0px;
  9633. -moz-box-shadow:none;
  9634. -webkit-box-shadow:none;
  9635. box-shadow:none;
  9636. }
  9637. #u12477 {
  9638. border-width:0px;
  9639. position:absolute;
  9640. left:22px;
  9641. top:0px;
  9642. width:40px;
  9643. height:20px;
  9644. display:flex;
  9645. }
  9646. #u12477 .text {
  9647. position:absolute;
  9648. align-self:center;
  9649. padding:2px 2px 2px 3px;
  9650. box-sizing:border-box;
  9651. width:100%;
  9652. }
  9653. #u12477_text {
  9654. border-width:0px;
  9655. white-space:nowrap;
  9656. text-transform:none;
  9657. }
  9658. #u12478 {
  9659. border-width:0px;
  9660. position:absolute;
  9661. left:20px;
  9662. top:60px;
  9663. width:62px;
  9664. height:20px;
  9665. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9666. font-weight:400;
  9667. font-style:normal;
  9668. }
  9669. #u12479_div {
  9670. border-width:0px;
  9671. position:absolute;
  9672. left:0px;
  9673. top:0px;
  9674. width:40px;
  9675. height:20px;
  9676. background:inherit;
  9677. background-color:rgba(255, 255, 255, 0);
  9678. border:none;
  9679. border-radius:0px;
  9680. -moz-box-shadow:none;
  9681. -webkit-box-shadow:none;
  9682. box-shadow:none;
  9683. }
  9684. #u12479 {
  9685. border-width:0px;
  9686. position:absolute;
  9687. left:22px;
  9688. top:0px;
  9689. width:40px;
  9690. height:20px;
  9691. display:flex;
  9692. }
  9693. #u12479 .text {
  9694. position:absolute;
  9695. align-self:center;
  9696. padding:2px 2px 2px 3px;
  9697. box-sizing:border-box;
  9698. width:100%;
  9699. }
  9700. #u12479_text {
  9701. border-width:0px;
  9702. white-space:nowrap;
  9703. text-transform:none;
  9704. }
  9705. #u12480 {
  9706. border-width:0px;
  9707. position:absolute;
  9708. left:20px;
  9709. top:80px;
  9710. width:64px;
  9711. height:20px;
  9712. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9713. font-weight:400;
  9714. font-style:normal;
  9715. }
  9716. #u12481_div {
  9717. border-width:0px;
  9718. position:absolute;
  9719. left:0px;
  9720. top:0px;
  9721. width:42px;
  9722. height:20px;
  9723. background:inherit;
  9724. background-color:rgba(255, 255, 255, 0);
  9725. border:none;
  9726. border-radius:0px;
  9727. -moz-box-shadow:none;
  9728. -webkit-box-shadow:none;
  9729. box-shadow:none;
  9730. }
  9731. #u12481 {
  9732. border-width:0px;
  9733. position:absolute;
  9734. left:22px;
  9735. top:0px;
  9736. width:42px;
  9737. height:20px;
  9738. display:flex;
  9739. }
  9740. #u12481 .text {
  9741. position:absolute;
  9742. align-self:center;
  9743. padding:2px 2px 2px 3px;
  9744. box-sizing:border-box;
  9745. width:100%;
  9746. }
  9747. #u12481_text {
  9748. border-width:0px;
  9749. white-space:nowrap;
  9750. text-transform:none;
  9751. }
  9752. #u12482 {
  9753. border-width:0px;
  9754. position:absolute;
  9755. left:20px;
  9756. top:100px;
  9757. width:54px;
  9758. height:20px;
  9759. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9760. font-weight:400;
  9761. font-style:normal;
  9762. }
  9763. #u12483_div {
  9764. border-width:0px;
  9765. position:absolute;
  9766. left:0px;
  9767. top:0px;
  9768. width:32px;
  9769. height:20px;
  9770. background:inherit;
  9771. background-color:rgba(255, 255, 255, 0);
  9772. border:none;
  9773. border-radius:0px;
  9774. -moz-box-shadow:none;
  9775. -webkit-box-shadow:none;
  9776. box-shadow:none;
  9777. }
  9778. #u12483 {
  9779. border-width:0px;
  9780. position:absolute;
  9781. left:22px;
  9782. top:0px;
  9783. width:32px;
  9784. height:20px;
  9785. display:flex;
  9786. }
  9787. #u12483 .text {
  9788. position:absolute;
  9789. align-self:center;
  9790. padding:2px 2px 2px 3px;
  9791. box-sizing:border-box;
  9792. width:100%;
  9793. }
  9794. #u12483_text {
  9795. border-width:0px;
  9796. white-space:nowrap;
  9797. text-transform:none;
  9798. }
  9799. #u12484 {
  9800. border-width:0px;
  9801. position:absolute;
  9802. left:20px;
  9803. top:440px;
  9804. width:62px;
  9805. height:20px;
  9806. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9807. font-weight:400;
  9808. font-style:normal;
  9809. }
  9810. #u12485_img {
  9811. border-width:0px;
  9812. position:absolute;
  9813. left:0px;
  9814. top:0px;
  9815. width:9px;
  9816. height:9px;
  9817. }
  9818. #u12485 {
  9819. border-width:0px;
  9820. position:absolute;
  9821. left:6px;
  9822. top:6px;
  9823. width:9px;
  9824. height:9px;
  9825. display:flex;
  9826. }
  9827. #u12485 .text {
  9828. position:absolute;
  9829. align-self:center;
  9830. padding:2px 2px 2px 2px;
  9831. box-sizing:border-box;
  9832. width:100%;
  9833. }
  9834. #u12485_img.selected {
  9835. }
  9836. #u12485.selected {
  9837. }
  9838. #u12485_text {
  9839. border-width:0px;
  9840. word-wrap:break-word;
  9841. text-transform:none;
  9842. visibility:hidden;
  9843. }
  9844. #u12486_div {
  9845. border-width:0px;
  9846. position:absolute;
  9847. left:0px;
  9848. top:0px;
  9849. width:40px;
  9850. height:20px;
  9851. background:inherit;
  9852. background-color:rgba(255, 255, 255, 0);
  9853. border:none;
  9854. border-radius:0px;
  9855. -moz-box-shadow:none;
  9856. -webkit-box-shadow:none;
  9857. box-shadow:none;
  9858. }
  9859. #u12486 {
  9860. border-width:0px;
  9861. position:absolute;
  9862. left:22px;
  9863. top:0px;
  9864. width:40px;
  9865. height:20px;
  9866. display:flex;
  9867. }
  9868. #u12486 .text {
  9869. position:absolute;
  9870. align-self:center;
  9871. padding:2px 2px 2px 3px;
  9872. box-sizing:border-box;
  9873. width:100%;
  9874. }
  9875. #u12486_text {
  9876. border-width:0px;
  9877. white-space:nowrap;
  9878. text-transform:none;
  9879. }
  9880. #u12484_children {
  9881. border-width:0px;
  9882. position:absolute;
  9883. left:0px;
  9884. top:0px;
  9885. width:0px;
  9886. height:0px;
  9887. }
  9888. #u12487 {
  9889. border-width:0px;
  9890. position:absolute;
  9891. left:20px;
  9892. top:20px;
  9893. width:97px;
  9894. height:20px;
  9895. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9896. font-weight:400;
  9897. font-style:normal;
  9898. }
  9899. #u12488_div {
  9900. border-width:0px;
  9901. position:absolute;
  9902. left:0px;
  9903. top:0px;
  9904. width:75px;
  9905. height:20px;
  9906. background:inherit;
  9907. background-color:rgba(255, 255, 255, 0);
  9908. border:none;
  9909. border-radius:0px;
  9910. -moz-box-shadow:none;
  9911. -webkit-box-shadow:none;
  9912. box-shadow:none;
  9913. }
  9914. #u12488 {
  9915. border-width:0px;
  9916. position:absolute;
  9917. left:22px;
  9918. top:0px;
  9919. width:75px;
  9920. height:20px;
  9921. display:flex;
  9922. }
  9923. #u12488 .text {
  9924. position:absolute;
  9925. align-self:center;
  9926. padding:2px 2px 2px 3px;
  9927. box-sizing:border-box;
  9928. width:100%;
  9929. }
  9930. #u12488_text {
  9931. border-width:0px;
  9932. white-space:nowrap;
  9933. text-transform:none;
  9934. }
  9935. #u12489 {
  9936. border-width:0px;
  9937. position:absolute;
  9938. left:20px;
  9939. top:40px;
  9940. width:97px;
  9941. height:20px;
  9942. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9943. font-weight:400;
  9944. font-style:normal;
  9945. }
  9946. #u12490_div {
  9947. border-width:0px;
  9948. position:absolute;
  9949. left:0px;
  9950. top:0px;
  9951. width:75px;
  9952. height:20px;
  9953. background:inherit;
  9954. background-color:rgba(255, 255, 255, 0);
  9955. border:none;
  9956. border-radius:0px;
  9957. -moz-box-shadow:none;
  9958. -webkit-box-shadow:none;
  9959. box-shadow:none;
  9960. }
  9961. #u12490 {
  9962. border-width:0px;
  9963. position:absolute;
  9964. left:22px;
  9965. top:0px;
  9966. width:75px;
  9967. height:20px;
  9968. display:flex;
  9969. }
  9970. #u12490 .text {
  9971. position:absolute;
  9972. align-self:center;
  9973. padding:2px 2px 2px 3px;
  9974. box-sizing:border-box;
  9975. width:100%;
  9976. }
  9977. #u12490_text {
  9978. border-width:0px;
  9979. white-space:nowrap;
  9980. text-transform:none;
  9981. }
  9982. #u12491 {
  9983. border-width:0px;
  9984. position:absolute;
  9985. left:0px;
  9986. top:0px;
  9987. width:0px;
  9988. height:0px;
  9989. }
  9990. #u12492_div {
  9991. border-width:0px;
  9992. position:absolute;
  9993. left:0px;
  9994. top:0px;
  9995. width:170px;
  9996. height:30px;
  9997. background:inherit;
  9998. background-color:rgba(255, 255, 255, 1);
  9999. box-sizing:border-box;
  10000. border-width:1px;
  10001. border-style:solid;
  10002. border-color:rgba(242, 242, 242, 1);
  10003. border-radius:4px;
  10004. -moz-box-shadow:none;
  10005. -webkit-box-shadow:none;
  10006. box-shadow:none;
  10007. font-family:'Microsoft YaHei', sans-serif;
  10008. font-weight:400;
  10009. font-style:normal;
  10010. font-size:14px;
  10011. color:#CCCCCC;
  10012. text-align:left;
  10013. }
  10014. #u12492 {
  10015. border-width:0px;
  10016. position:absolute;
  10017. left:350px;
  10018. top:199px;
  10019. width:170px;
  10020. height:30px;
  10021. display:flex;
  10022. font-family:'Microsoft YaHei', sans-serif;
  10023. font-weight:400;
  10024. font-style:normal;
  10025. font-size:14px;
  10026. color:#CCCCCC;
  10027. text-align:left;
  10028. }
  10029. #u12492 .text {
  10030. position:absolute;
  10031. align-self:center;
  10032. padding:2px 8px 2px 8px;
  10033. box-sizing:border-box;
  10034. width:100%;
  10035. }
  10036. #u12492_text {
  10037. border-width:0px;
  10038. word-wrap:break-word;
  10039. text-transform:none;
  10040. visibility:hidden;
  10041. }
  10042. #u12493_input {
  10043. position:absolute;
  10044. left:0px;
  10045. top:0px;
  10046. width:133px;
  10047. height:26px;
  10048. padding:2px 2px 2px 2px;
  10049. font-family:'Microsoft YaHei', sans-serif;
  10050. font-weight:400;
  10051. font-style:normal;
  10052. font-size:14px;
  10053. letter-spacing:normal;
  10054. color:#000000;
  10055. vertical-align:none;
  10056. text-align:left;
  10057. text-transform:none;
  10058. background-color:transparent;
  10059. border-color:transparent;
  10060. }
  10061. #u12493_input.disabled {
  10062. position:absolute;
  10063. left:0px;
  10064. top:0px;
  10065. width:133px;
  10066. height:26px;
  10067. padding:2px 2px 2px 2px;
  10068. font-family:'Microsoft YaHei', sans-serif;
  10069. font-weight:400;
  10070. font-style:normal;
  10071. font-size:14px;
  10072. letter-spacing:normal;
  10073. color:#000000;
  10074. vertical-align:none;
  10075. text-align:left;
  10076. text-transform:none;
  10077. background-color:transparent;
  10078. border-color:transparent;
  10079. }
  10080. #u12493_div {
  10081. border-width:0px;
  10082. position:absolute;
  10083. left:0px;
  10084. top:0px;
  10085. width:133px;
  10086. height:26px;
  10087. background:inherit;
  10088. background-color:rgba(255, 255, 255, 1);
  10089. border:none;
  10090. border-radius:0px;
  10091. -moz-box-shadow:none;
  10092. -webkit-box-shadow:none;
  10093. box-shadow:none;
  10094. font-family:'Microsoft YaHei', sans-serif;
  10095. font-weight:400;
  10096. font-style:normal;
  10097. font-size:14px;
  10098. }
  10099. #u12493 {
  10100. border-width:0px;
  10101. position:absolute;
  10102. left:355px;
  10103. top:201px;
  10104. width:133px;
  10105. height:26px;
  10106. display:flex;
  10107. font-family:'Microsoft YaHei', sans-serif;
  10108. font-weight:400;
  10109. font-style:normal;
  10110. font-size:14px;
  10111. }
  10112. #u12493 .text {
  10113. position:absolute;
  10114. align-self:center;
  10115. padding:2px 2px 2px 2px;
  10116. box-sizing:border-box;
  10117. width:100%;
  10118. }
  10119. #u12493_div.disabled {
  10120. border-width:0px;
  10121. position:absolute;
  10122. left:0px;
  10123. top:0px;
  10124. width:133px;
  10125. height:26px;
  10126. background:inherit;
  10127. background-color:rgba(240, 240, 240, 1);
  10128. border:none;
  10129. border-radius:0px;
  10130. -moz-box-shadow:none;
  10131. -webkit-box-shadow:none;
  10132. box-shadow:none;
  10133. font-family:'Microsoft YaHei', sans-serif;
  10134. font-weight:400;
  10135. font-style:normal;
  10136. font-size:14px;
  10137. }
  10138. #u12493.disabled {
  10139. }
  10140. #u12494_img {
  10141. border-width:0px;
  10142. position:absolute;
  10143. left:0px;
  10144. top:0px;
  10145. width:14px;
  10146. height:14px;
  10147. }
  10148. #u12494 {
  10149. border-width:0px;
  10150. position:absolute;
  10151. left:496px;
  10152. top:208px;
  10153. width:14px;
  10154. height:14px;
  10155. display:flex;
  10156. }
  10157. #u12494 .text {
  10158. position:absolute;
  10159. align-self:center;
  10160. padding:2px 2px 2px 2px;
  10161. box-sizing:border-box;
  10162. width:100%;
  10163. }
  10164. #u12494_text {
  10165. border-width:0px;
  10166. word-wrap:break-word;
  10167. text-transform:none;
  10168. visibility:hidden;
  10169. }
  10170. #u12495 {
  10171. border-width:0px;
  10172. position:absolute;
  10173. left:0px;
  10174. top:0px;
  10175. width:0px;
  10176. height:0px;
  10177. }
  10178. #u12496_div {
  10179. border-width:0px;
  10180. position:absolute;
  10181. left:0px;
  10182. top:0px;
  10183. width:109px;
  10184. height:30px;
  10185. background:inherit;
  10186. background-color:rgba(255, 255, 255, 0);
  10187. border:none;
  10188. border-radius:0px;
  10189. -moz-box-shadow:none;
  10190. -webkit-box-shadow:none;
  10191. box-shadow:none;
  10192. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10193. font-weight:400;
  10194. font-style:normal;
  10195. font-size:18px;
  10196. color:#000000;
  10197. line-height:30px;
  10198. }
  10199. #u12496 {
  10200. border-width:0px;
  10201. position:absolute;
  10202. left:350px;
  10203. top:160px;
  10204. width:109px;
  10205. height:30px;
  10206. display:flex;
  10207. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10208. font-weight:400;
  10209. font-style:normal;
  10210. font-size:18px;
  10211. color:#000000;
  10212. line-height:30px;
  10213. }
  10214. #u12496 .text {
  10215. position:absolute;
  10216. align-self:flex-start;
  10217. padding:0px 0px 0px 0px;
  10218. box-sizing:border-box;
  10219. width:100%;
  10220. }
  10221. #u12496_text {
  10222. border-width:0px;
  10223. white-space:nowrap;
  10224. text-transform:none;
  10225. }
  10226. #u12497_img {
  10227. border-width:0px;
  10228. position:absolute;
  10229. left:0px;
  10230. top:0px;
  10231. width:12px;
  10232. height:7px;
  10233. }
  10234. #u12497 {
  10235. border-width:0px;
  10236. position:absolute;
  10237. left:471px;
  10238. top:171px;
  10239. width:12px;
  10240. height:7px;
  10241. display:flex;
  10242. }
  10243. #u12497 .text {
  10244. position:absolute;
  10245. align-self:center;
  10246. padding:2px 2px 2px 2px;
  10247. box-sizing:border-box;
  10248. width:100%;
  10249. }
  10250. #u12497_text {
  10251. border-width:0px;
  10252. word-wrap:break-word;
  10253. text-transform:none;
  10254. visibility:hidden;
  10255. }
  10256. #u12498_div {
  10257. border-width:0px;
  10258. position:absolute;
  10259. left:0px;
  10260. top:0px;
  10261. width:145px;
  10262. height:30px;
  10263. background:inherit;
  10264. background-color:rgba(255, 255, 255, 0);
  10265. border:none;
  10266. border-radius:0px;
  10267. -moz-box-shadow:none;
  10268. -webkit-box-shadow:none;
  10269. box-shadow:none;
  10270. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10271. font-weight:400;
  10272. font-style:normal;
  10273. font-size:18px;
  10274. color:#000000;
  10275. line-height:30px;
  10276. }
  10277. #u12498 {
  10278. border-width:0px;
  10279. position:absolute;
  10280. left:563px;
  10281. top:160px;
  10282. width:145px;
  10283. height:30px;
  10284. display:flex;
  10285. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10286. font-weight:400;
  10287. font-style:normal;
  10288. font-size:18px;
  10289. color:#000000;
  10290. line-height:30px;
  10291. }
  10292. #u12498 .text {
  10293. position:absolute;
  10294. align-self:flex-start;
  10295. padding:0px 0px 0px 0px;
  10296. box-sizing:border-box;
  10297. width:100%;
  10298. }
  10299. #u12498_text {
  10300. border-width:0px;
  10301. white-space:nowrap;
  10302. text-transform:none;
  10303. }
  10304. #u12499 {
  10305. border-width:0px;
  10306. position:absolute;
  10307. left:0px;
  10308. top:0px;
  10309. width:0px;
  10310. height:0px;
  10311. }
  10312. #u12500_div {
  10313. border-width:0px;
  10314. position:absolute;
  10315. left:0px;
  10316. top:0px;
  10317. width:140px;
  10318. height:30px;
  10319. background:inherit;
  10320. background-color:rgba(255, 255, 255, 1);
  10321. box-sizing:border-box;
  10322. border-width:1px;
  10323. border-style:solid;
  10324. border-color:rgba(215, 215, 215, 1);
  10325. border-radius:4px;
  10326. -moz-box-shadow:none;
  10327. -webkit-box-shadow:none;
  10328. box-shadow:none;
  10329. font-size:14px;
  10330. }
  10331. #u12500 {
  10332. border-width:0px;
  10333. position:absolute;
  10334. left:1161px;
  10335. top:199px;
  10336. width:140px;
  10337. height:30px;
  10338. display:flex;
  10339. font-size:14px;
  10340. }
  10341. #u12500 .text {
  10342. position:absolute;
  10343. align-self:center;
  10344. padding:2px 2px 2px 2px;
  10345. box-sizing:border-box;
  10346. width:100%;
  10347. }
  10348. #u12500_text {
  10349. border-width:0px;
  10350. word-wrap:break-word;
  10351. text-transform:none;
  10352. visibility:hidden;
  10353. }
  10354. #u12501_input {
  10355. position:absolute;
  10356. left:0px;
  10357. top:0px;
  10358. width:134px;
  10359. height:23px;
  10360. padding:2px 2px 2px 2px;
  10361. font-family:'ArialMT', 'Arial', sans-serif;
  10362. font-weight:400;
  10363. font-style:normal;
  10364. font-size:14px;
  10365. letter-spacing:normal;
  10366. color:#AAAAAA;
  10367. vertical-align:none;
  10368. text-align:left;
  10369. text-transform:none;
  10370. background-color:transparent;
  10371. border-color:transparent;
  10372. }
  10373. #u12501_input.disabled {
  10374. position:absolute;
  10375. left:0px;
  10376. top:0px;
  10377. width:134px;
  10378. height:23px;
  10379. padding:2px 2px 2px 2px;
  10380. font-family:'ArialMT', 'Arial', sans-serif;
  10381. font-weight:400;
  10382. font-style:normal;
  10383. font-size:14px;
  10384. letter-spacing:normal;
  10385. color:#AAAAAA;
  10386. vertical-align:none;
  10387. text-align:left;
  10388. text-transform:none;
  10389. background-color:transparent;
  10390. border-color:transparent;
  10391. }
  10392. #u12501_div {
  10393. border-width:0px;
  10394. position:absolute;
  10395. left:0px;
  10396. top:0px;
  10397. width:134px;
  10398. height:23px;
  10399. background:inherit;
  10400. background-color:rgba(255, 255, 255, 1);
  10401. border:none;
  10402. border-radius:0px;
  10403. -moz-box-shadow:none;
  10404. -webkit-box-shadow:none;
  10405. box-shadow:none;
  10406. font-size:14px;
  10407. color:#AAAAAA;
  10408. }
  10409. #u12501 {
  10410. border-width:0px;
  10411. position:absolute;
  10412. left:1165px;
  10413. top:201px;
  10414. width:134px;
  10415. height:23px;
  10416. display:flex;
  10417. font-size:14px;
  10418. color:#AAAAAA;
  10419. }
  10420. #u12501 .text {
  10421. position:absolute;
  10422. align-self:flex-start;
  10423. padding:2px 2px 2px 2px;
  10424. box-sizing:border-box;
  10425. width:100%;
  10426. }
  10427. #u12501_div.disabled {
  10428. border-width:0px;
  10429. position:absolute;
  10430. left:0px;
  10431. top:0px;
  10432. width:134px;
  10433. height:23px;
  10434. background:inherit;
  10435. background-color:rgba(240, 240, 240, 1);
  10436. border:none;
  10437. border-radius:0px;
  10438. -moz-box-shadow:none;
  10439. -webkit-box-shadow:none;
  10440. box-shadow:none;
  10441. font-size:14px;
  10442. color:#AAAAAA;
  10443. }
  10444. #u12501.disabled {
  10445. }
  10446. .u12501_input_option {
  10447. font-size:14px;
  10448. }
  10449. #u12502_div {
  10450. border-width:0px;
  10451. position:absolute;
  10452. left:0px;
  10453. top:0px;
  10454. width:60px;
  10455. height:30px;
  10456. background:inherit;
  10457. background-color:rgba(255, 255, 255, 1);
  10458. box-sizing:border-box;
  10459. border-width:1px;
  10460. border-style:solid;
  10461. border-color:rgba(170, 170, 170, 1);
  10462. border-radius:4px;
  10463. -moz-box-shadow:none;
  10464. -webkit-box-shadow:none;
  10465. box-shadow:none;
  10466. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10467. font-weight:400;
  10468. font-style:normal;
  10469. font-size:14px;
  10470. }
  10471. #u12502 {
  10472. border-width:0px;
  10473. position:absolute;
  10474. left:1508px;
  10475. top:60px;
  10476. width:60px;
  10477. height:30px;
  10478. display:flex;
  10479. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10480. font-weight:400;
  10481. font-style:normal;
  10482. font-size:14px;
  10483. }
  10484. #u12502 .text {
  10485. position:absolute;
  10486. align-self:center;
  10487. padding:2px 2px 2px 2px;
  10488. box-sizing:border-box;
  10489. width:100%;
  10490. }
  10491. #u12502_text {
  10492. border-width:0px;
  10493. word-wrap:break-word;
  10494. text-transform:none;
  10495. }
  10496. #u12503 {
  10497. border-width:0px;
  10498. position:absolute;
  10499. left:0px;
  10500. top:0px;
  10501. width:0px;
  10502. height:0px;
  10503. }
  10504. #u12504_div {
  10505. border-width:0px;
  10506. position:absolute;
  10507. left:0px;
  10508. top:0px;
  10509. width:80px;
  10510. height:100px;
  10511. background:inherit;
  10512. background-color:rgba(255, 255, 255, 1);
  10513. box-sizing:border-box;
  10514. border-width:1px;
  10515. border-style:solid;
  10516. border-color:rgba(242, 242, 242, 1);
  10517. border-radius:4px;
  10518. -moz-box-shadow:0px 0px 5px rgba(0, 0, 0, 0.349019607843137);
  10519. -webkit-box-shadow:0px 0px 5px rgba(0, 0, 0, 0.349019607843137);
  10520. box-shadow:0px 0px 5px rgba(0, 0, 0, 0.349019607843137);
  10521. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10522. font-weight:400;
  10523. font-style:normal;
  10524. font-size:14px;
  10525. text-align:left;
  10526. }
  10527. #u12504 {
  10528. border-width:0px;
  10529. position:absolute;
  10530. left:1488px;
  10531. top:401px;
  10532. width:80px;
  10533. height:100px;
  10534. display:flex;
  10535. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10536. font-weight:400;
  10537. font-style:normal;
  10538. font-size:14px;
  10539. text-align:left;
  10540. }
  10541. #u12504 .text {
  10542. position:absolute;
  10543. align-self:center;
  10544. padding:2px 2px 2px 2px;
  10545. box-sizing:border-box;
  10546. width:100%;
  10547. }
  10548. #u12504_text {
  10549. border-width:0px;
  10550. word-wrap:break-word;
  10551. text-transform:none;
  10552. visibility:hidden;
  10553. }
  10554. #u12505_div {
  10555. border-width:0px;
  10556. position:absolute;
  10557. left:0px;
  10558. top:0px;
  10559. width:66px;
  10560. height:40px;
  10561. background:inherit;
  10562. background-color:rgba(255, 255, 255, 1);
  10563. border:none;
  10564. border-left:0px;
  10565. border-top:0px;
  10566. border-right:0px;
  10567. border-radius:0px;
  10568. border-bottom-right-radius:0px;
  10569. border-bottom-left-radius:0px;
  10570. -moz-box-shadow:none;
  10571. -webkit-box-shadow:none;
  10572. box-shadow:none;
  10573. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10574. font-weight:400;
  10575. font-style:normal;
  10576. font-size:14px;
  10577. }
  10578. #u12505 {
  10579. border-width:0px;
  10580. position:absolute;
  10581. left:1494px;
  10582. top:451px;
  10583. width:66px;
  10584. height:40px;
  10585. display:flex;
  10586. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10587. font-weight:400;
  10588. font-style:normal;
  10589. font-size:14px;
  10590. }
  10591. #u12505 .text {
  10592. position:absolute;
  10593. align-self:center;
  10594. padding:2px 2px 2px 2px;
  10595. box-sizing:border-box;
  10596. width:100%;
  10597. }
  10598. #u12505_text {
  10599. border-width:0px;
  10600. word-wrap:break-word;
  10601. text-transform:none;
  10602. }
  10603. #u12506_div {
  10604. border-width:0px;
  10605. position:absolute;
  10606. left:0px;
  10607. top:0px;
  10608. width:66px;
  10609. height:40px;
  10610. background:inherit;
  10611. background-color:rgba(255, 255, 255, 1);
  10612. box-sizing:border-box;
  10613. border-width:1px;
  10614. border-style:solid;
  10615. border-color:rgba(215, 215, 215, 1);
  10616. border-left:0px;
  10617. border-top:0px;
  10618. border-right:0px;
  10619. border-radius:0px;
  10620. border-bottom-right-radius:0px;
  10621. border-bottom-left-radius:0px;
  10622. -moz-box-shadow:none;
  10623. -webkit-box-shadow:none;
  10624. box-shadow:none;
  10625. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10626. font-weight:400;
  10627. font-style:normal;
  10628. font-size:14px;
  10629. }
  10630. #u12506 {
  10631. border-width:0px;
  10632. position:absolute;
  10633. left:1494px;
  10634. top:411px;
  10635. width:66px;
  10636. height:40px;
  10637. display:flex;
  10638. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10639. font-weight:400;
  10640. font-style:normal;
  10641. font-size:14px;
  10642. }
  10643. #u12506 .text {
  10644. position:absolute;
  10645. align-self:center;
  10646. padding:2px 2px 2px 2px;
  10647. box-sizing:border-box;
  10648. width:100%;
  10649. }
  10650. #u12506_text {
  10651. border-width:0px;
  10652. word-wrap:break-word;
  10653. text-transform:none;
  10654. }
  10655. #u12508 {
  10656. border-width:0px;
  10657. position:absolute;
  10658. left:0px;
  10659. top:0px;
  10660. width:0px;
  10661. height:0px;
  10662. }
  10663. #u12509_div {
  10664. border-width:0px;
  10665. position:absolute;
  10666. left:0px;
  10667. top:0px;
  10668. width:200px;
  10669. height:1190px;
  10670. background:inherit;
  10671. background-color:rgba(255, 255, 255, 1);
  10672. border:none;
  10673. border-radius:0px;
  10674. -moz-box-shadow:none;
  10675. -webkit-box-shadow:none;
  10676. box-shadow:none;
  10677. }
  10678. #u12509 {
  10679. border-width:0px;
  10680. position:absolute;
  10681. left:120px;
  10682. top:50px;
  10683. width:200px;
  10684. height:1190px;
  10685. display:flex;
  10686. }
  10687. #u12509 .text {
  10688. position:absolute;
  10689. align-self:center;
  10690. padding:2px 2px 2px 2px;
  10691. box-sizing:border-box;
  10692. width:100%;
  10693. }
  10694. #u12509_text {
  10695. border-width:0px;
  10696. word-wrap:break-word;
  10697. text-transform:none;
  10698. visibility:hidden;
  10699. }
  10700. #u12510_div {
  10701. border-width:0px;
  10702. position:absolute;
  10703. left:0px;
  10704. top:0px;
  10705. width:200px;
  10706. height:60px;
  10707. background:inherit;
  10708. background-color:rgba(224, 231, 247, 1);
  10709. border:none;
  10710. border-radius:0px;
  10711. -moz-box-shadow:none;
  10712. -webkit-box-shadow:none;
  10713. box-shadow:none;
  10714. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  10715. font-weight:500;
  10716. font-style:normal;
  10717. font-size:18px;
  10718. }
  10719. #u12510 {
  10720. border-width:0px;
  10721. position:absolute;
  10722. left:120px;
  10723. top:50px;
  10724. width:200px;
  10725. height:60px;
  10726. display:flex;
  10727. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  10728. font-weight:500;
  10729. font-style:normal;
  10730. font-size:18px;
  10731. }
  10732. #u12510 .text {
  10733. position:absolute;
  10734. align-self:center;
  10735. padding:0px 0px 0px 20px;
  10736. box-sizing:border-box;
  10737. width:100%;
  10738. }
  10739. #u12510_text {
  10740. border-width:0px;
  10741. word-wrap:break-word;
  10742. text-transform:none;
  10743. }
  10744. #u12511_div {
  10745. border-width:0px;
  10746. position:absolute;
  10747. left:0px;
  10748. top:0px;
  10749. width:65px;
  10750. height:22px;
  10751. background:inherit;
  10752. background-color:rgba(255, 255, 255, 0);
  10753. border:none;
  10754. border-radius:0px;
  10755. -moz-box-shadow:none;
  10756. -webkit-box-shadow:none;
  10757. box-shadow:none;
  10758. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10759. font-weight:400;
  10760. font-style:normal;
  10761. font-size:16px;
  10762. }
  10763. #u12511 {
  10764. border-width:0px;
  10765. position:absolute;
  10766. left:145px;
  10767. top:536px;
  10768. width:65px;
  10769. height:22px;
  10770. display:flex;
  10771. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10772. font-weight:400;
  10773. font-style:normal;
  10774. font-size:16px;
  10775. }
  10776. #u12511 .text {
  10777. position:absolute;
  10778. align-self:flex-start;
  10779. padding:0px 0px 0px 0px;
  10780. box-sizing:border-box;
  10781. width:100%;
  10782. }
  10783. #u12511_text {
  10784. border-width:0px;
  10785. white-space:nowrap;
  10786. text-transform:none;
  10787. }
  10788. #u12512_div {
  10789. border-width:0px;
  10790. position:absolute;
  10791. left:0px;
  10792. top:0px;
  10793. width:49px;
  10794. height:17px;
  10795. background:inherit;
  10796. background-color:rgba(255, 255, 255, 0);
  10797. border:none;
  10798. border-radius:0px;
  10799. -moz-box-shadow:none;
  10800. -webkit-box-shadow:none;
  10801. box-shadow:none;
  10802. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10803. font-weight:400;
  10804. font-style:normal;
  10805. font-size:12px;
  10806. color:#AAAAAA;
  10807. }
  10808. #u12512 {
  10809. border-width:0px;
  10810. position:absolute;
  10811. left:143px;
  10812. top:499px;
  10813. width:49px;
  10814. height:17px;
  10815. display:flex;
  10816. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10817. font-weight:400;
  10818. font-style:normal;
  10819. font-size:12px;
  10820. color:#AAAAAA;
  10821. }
  10822. #u12512 .text {
  10823. position:absolute;
  10824. align-self:flex-start;
  10825. padding:0px 0px 0px 0px;
  10826. box-sizing:border-box;
  10827. width:100%;
  10828. }
  10829. #u12512_text {
  10830. border-width:0px;
  10831. white-space:nowrap;
  10832. text-transform:none;
  10833. }
  10834. #u12513_div {
  10835. border-width:0px;
  10836. position:absolute;
  10837. left:0px;
  10838. top:0px;
  10839. width:49px;
  10840. height:17px;
  10841. background:inherit;
  10842. background-color:rgba(255, 255, 255, 0);
  10843. border:none;
  10844. border-radius:0px;
  10845. -moz-box-shadow:none;
  10846. -webkit-box-shadow:none;
  10847. box-shadow:none;
  10848. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10849. font-weight:400;
  10850. font-style:normal;
  10851. font-size:12px;
  10852. color:#AAAAAA;
  10853. }
  10854. #u12513 {
  10855. border-width:0px;
  10856. position:absolute;
  10857. left:144px;
  10858. top:131px;
  10859. width:49px;
  10860. height:17px;
  10861. display:flex;
  10862. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10863. font-weight:400;
  10864. font-style:normal;
  10865. font-size:12px;
  10866. color:#AAAAAA;
  10867. }
  10868. #u12513 .text {
  10869. position:absolute;
  10870. align-self:flex-start;
  10871. padding:0px 0px 0px 0px;
  10872. box-sizing:border-box;
  10873. width:100%;
  10874. }
  10875. #u12513_text {
  10876. border-width:0px;
  10877. white-space:nowrap;
  10878. text-transform:none;
  10879. }
  10880. #u12514_div {
  10881. border-width:0px;
  10882. position:absolute;
  10883. left:0px;
  10884. top:0px;
  10885. width:65px;
  10886. height:22px;
  10887. background:inherit;
  10888. background-color:rgba(255, 255, 255, 0);
  10889. border:none;
  10890. border-radius:0px;
  10891. -moz-box-shadow:none;
  10892. -webkit-box-shadow:none;
  10893. box-shadow:none;
  10894. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10895. font-weight:400;
  10896. font-style:normal;
  10897. font-size:16px;
  10898. }
  10899. #u12514 {
  10900. border-width:0px;
  10901. position:absolute;
  10902. left:146px;
  10903. top:168px;
  10904. width:65px;
  10905. height:22px;
  10906. display:flex;
  10907. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10908. font-weight:400;
  10909. font-style:normal;
  10910. font-size:16px;
  10911. }
  10912. #u12514 .text {
  10913. position:absolute;
  10914. align-self:flex-start;
  10915. padding:0px 0px 0px 0px;
  10916. box-sizing:border-box;
  10917. width:100%;
  10918. }
  10919. #u12514_text {
  10920. border-width:0px;
  10921. white-space:nowrap;
  10922. text-transform:none;
  10923. }
  10924. #u12515_img {
  10925. border-width:0px;
  10926. position:absolute;
  10927. left:0px;
  10928. top:0px;
  10929. width:201px;
  10930. height:2px;
  10931. }
  10932. #u12515 {
  10933. border-width:0px;
  10934. position:absolute;
  10935. left:120px;
  10936. top:478px;
  10937. width:200px;
  10938. height:1px;
  10939. display:flex;
  10940. }
  10941. #u12515 .text {
  10942. position:absolute;
  10943. align-self:center;
  10944. padding:2px 2px 2px 2px;
  10945. box-sizing:border-box;
  10946. width:100%;
  10947. }
  10948. #u12515_text {
  10949. border-width:0px;
  10950. word-wrap:break-word;
  10951. text-transform:none;
  10952. visibility:hidden;
  10953. }
  10954. #u12516_div {
  10955. border-width:0px;
  10956. position:absolute;
  10957. left:0px;
  10958. top:0px;
  10959. width:65px;
  10960. height:22px;
  10961. background:inherit;
  10962. background-color:rgba(255, 255, 255, 0);
  10963. border:none;
  10964. border-radius:0px;
  10965. -moz-box-shadow:none;
  10966. -webkit-box-shadow:none;
  10967. box-shadow:none;
  10968. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10969. font-weight:400;
  10970. font-style:normal;
  10971. font-size:16px;
  10972. }
  10973. #u12516 {
  10974. border-width:0px;
  10975. position:absolute;
  10976. left:145px;
  10977. top:578px;
  10978. width:65px;
  10979. height:22px;
  10980. display:flex;
  10981. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10982. font-weight:400;
  10983. font-style:normal;
  10984. font-size:16px;
  10985. }
  10986. #u12516 .text {
  10987. position:absolute;
  10988. align-self:flex-start;
  10989. padding:0px 0px 0px 0px;
  10990. box-sizing:border-box;
  10991. width:100%;
  10992. }
  10993. #u12516_text {
  10994. border-width:0px;
  10995. white-space:nowrap;
  10996. text-transform:none;
  10997. }
  10998. #u12517_div {
  10999. border-width:0px;
  11000. position:absolute;
  11001. left:0px;
  11002. top:0px;
  11003. width:49px;
  11004. height:17px;
  11005. background:inherit;
  11006. background-color:rgba(255, 255, 255, 0);
  11007. border:none;
  11008. border-radius:0px;
  11009. -moz-box-shadow:none;
  11010. -webkit-box-shadow:none;
  11011. box-shadow:none;
  11012. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11013. font-weight:400;
  11014. font-style:normal;
  11015. font-size:12px;
  11016. color:#AAAAAA;
  11017. }
  11018. #u12517 {
  11019. border-width:0px;
  11020. position:absolute;
  11021. left:144px;
  11022. top:315px;
  11023. width:49px;
  11024. height:17px;
  11025. display:flex;
  11026. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11027. font-weight:400;
  11028. font-style:normal;
  11029. font-size:12px;
  11030. color:#AAAAAA;
  11031. }
  11032. #u12517 .text {
  11033. position:absolute;
  11034. align-self:flex-start;
  11035. padding:0px 0px 0px 0px;
  11036. box-sizing:border-box;
  11037. width:100%;
  11038. }
  11039. #u12517_text {
  11040. border-width:0px;
  11041. white-space:nowrap;
  11042. text-transform:none;
  11043. }
  11044. #u12518_img {
  11045. border-width:0px;
  11046. position:absolute;
  11047. left:0px;
  11048. top:0px;
  11049. width:201px;
  11050. height:2px;
  11051. }
  11052. #u12518 {
  11053. border-width:0px;
  11054. position:absolute;
  11055. left:121px;
  11056. top:294px;
  11057. width:200px;
  11058. height:1px;
  11059. display:flex;
  11060. }
  11061. #u12518 .text {
  11062. position:absolute;
  11063. align-self:center;
  11064. padding:2px 2px 2px 2px;
  11065. box-sizing:border-box;
  11066. width:100%;
  11067. }
  11068. #u12518_text {
  11069. border-width:0px;
  11070. word-wrap:break-word;
  11071. text-transform:none;
  11072. visibility:hidden;
  11073. }
  11074. #u12519_div {
  11075. border-width:0px;
  11076. position:absolute;
  11077. left:0px;
  11078. top:0px;
  11079. width:65px;
  11080. height:22px;
  11081. background:inherit;
  11082. background-color:rgba(255, 255, 255, 0);
  11083. border:none;
  11084. border-radius:0px;
  11085. -moz-box-shadow:none;
  11086. -webkit-box-shadow:none;
  11087. box-shadow:none;
  11088. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11089. font-weight:400;
  11090. font-style:normal;
  11091. font-size:16px;
  11092. }
  11093. #u12519 {
  11094. border-width:0px;
  11095. position:absolute;
  11096. left:146px;
  11097. top:352px;
  11098. width:65px;
  11099. height:22px;
  11100. display:flex;
  11101. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11102. font-weight:400;
  11103. font-style:normal;
  11104. font-size:16px;
  11105. }
  11106. #u12519 .text {
  11107. position:absolute;
  11108. align-self:flex-start;
  11109. padding:0px 0px 0px 0px;
  11110. box-sizing:border-box;
  11111. width:100%;
  11112. }
  11113. #u12519_text {
  11114. border-width:0px;
  11115. white-space:nowrap;
  11116. text-transform:none;
  11117. }
  11118. #u12520_div {
  11119. border-width:0px;
  11120. position:absolute;
  11121. left:0px;
  11122. top:0px;
  11123. width:65px;
  11124. height:22px;
  11125. background:inherit;
  11126. background-color:rgba(255, 255, 255, 0);
  11127. border:none;
  11128. border-radius:0px;
  11129. -moz-box-shadow:none;
  11130. -webkit-box-shadow:none;
  11131. box-shadow:none;
  11132. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11133. font-weight:400;
  11134. font-style:normal;
  11135. font-size:16px;
  11136. }
  11137. #u12520 {
  11138. border-width:0px;
  11139. position:absolute;
  11140. left:146px;
  11141. top:394px;
  11142. width:65px;
  11143. height:22px;
  11144. display:flex;
  11145. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11146. font-weight:400;
  11147. font-style:normal;
  11148. font-size:16px;
  11149. }
  11150. #u12520 .text {
  11151. position:absolute;
  11152. align-self:flex-start;
  11153. padding:0px 0px 0px 0px;
  11154. box-sizing:border-box;
  11155. width:100%;
  11156. }
  11157. #u12520_text {
  11158. border-width:0px;
  11159. white-space:nowrap;
  11160. text-transform:none;
  11161. }
  11162. #u12521_div {
  11163. border-width:0px;
  11164. position:absolute;
  11165. left:0px;
  11166. top:0px;
  11167. width:65px;
  11168. height:22px;
  11169. background:inherit;
  11170. background-color:rgba(255, 255, 255, 0);
  11171. border:none;
  11172. border-radius:0px;
  11173. -moz-box-shadow:none;
  11174. -webkit-box-shadow:none;
  11175. box-shadow:none;
  11176. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11177. font-weight:400;
  11178. font-style:normal;
  11179. font-size:16px;
  11180. }
  11181. #u12521 {
  11182. border-width:0px;
  11183. position:absolute;
  11184. left:145px;
  11185. top:886px;
  11186. width:65px;
  11187. height:22px;
  11188. display:flex;
  11189. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11190. font-weight:400;
  11191. font-style:normal;
  11192. font-size:16px;
  11193. }
  11194. #u12521 .text {
  11195. position:absolute;
  11196. align-self:flex-start;
  11197. padding:0px 0px 0px 0px;
  11198. box-sizing:border-box;
  11199. width:100%;
  11200. }
  11201. #u12521_text {
  11202. border-width:0px;
  11203. white-space:nowrap;
  11204. text-transform:none;
  11205. }
  11206. #u12522_div {
  11207. border-width:0px;
  11208. position:absolute;
  11209. left:0px;
  11210. top:0px;
  11211. width:97px;
  11212. height:22px;
  11213. background:inherit;
  11214. background-color:rgba(255, 255, 255, 0);
  11215. border:none;
  11216. border-radius:0px;
  11217. -moz-box-shadow:none;
  11218. -webkit-box-shadow:none;
  11219. box-shadow:none;
  11220. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11221. font-weight:400;
  11222. font-style:normal;
  11223. font-size:16px;
  11224. }
  11225. #u12522 {
  11226. border-width:0px;
  11227. position:absolute;
  11228. left:145px;
  11229. top:678px;
  11230. width:97px;
  11231. height:22px;
  11232. display:flex;
  11233. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11234. font-weight:400;
  11235. font-style:normal;
  11236. font-size:16px;
  11237. }
  11238. #u12522 .text {
  11239. position:absolute;
  11240. align-self:flex-start;
  11241. padding:0px 0px 0px 0px;
  11242. box-sizing:border-box;
  11243. width:100%;
  11244. }
  11245. #u12522_text {
  11246. border-width:0px;
  11247. white-space:nowrap;
  11248. text-transform:none;
  11249. }
  11250. #u12523_div {
  11251. border-width:0px;
  11252. position:absolute;
  11253. left:0px;
  11254. top:0px;
  11255. width:49px;
  11256. height:17px;
  11257. background:inherit;
  11258. background-color:rgba(255, 255, 255, 0);
  11259. border:none;
  11260. border-radius:0px;
  11261. -moz-box-shadow:none;
  11262. -webkit-box-shadow:none;
  11263. box-shadow:none;
  11264. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11265. font-weight:400;
  11266. font-style:normal;
  11267. font-size:12px;
  11268. color:#AAAAAA;
  11269. }
  11270. #u12523 {
  11271. border-width:0px;
  11272. position:absolute;
  11273. left:143px;
  11274. top:641px;
  11275. width:49px;
  11276. height:17px;
  11277. display:flex;
  11278. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11279. font-weight:400;
  11280. font-style:normal;
  11281. font-size:12px;
  11282. color:#AAAAAA;
  11283. }
  11284. #u12523 .text {
  11285. position:absolute;
  11286. align-self:flex-start;
  11287. padding:0px 0px 0px 0px;
  11288. box-sizing:border-box;
  11289. width:100%;
  11290. }
  11291. #u12523_text {
  11292. border-width:0px;
  11293. white-space:nowrap;
  11294. text-transform:none;
  11295. }
  11296. #u12524_img {
  11297. border-width:0px;
  11298. position:absolute;
  11299. left:0px;
  11300. top:0px;
  11301. width:201px;
  11302. height:2px;
  11303. }
  11304. #u12524 {
  11305. border-width:0px;
  11306. position:absolute;
  11307. left:120px;
  11308. top:620px;
  11309. width:200px;
  11310. height:1px;
  11311. display:flex;
  11312. }
  11313. #u12524 .text {
  11314. position:absolute;
  11315. align-self:center;
  11316. padding:2px 2px 2px 2px;
  11317. box-sizing:border-box;
  11318. width:100%;
  11319. }
  11320. #u12524_text {
  11321. border-width:0px;
  11322. word-wrap:break-word;
  11323. text-transform:none;
  11324. visibility:hidden;
  11325. }
  11326. #u12525_div {
  11327. border-width:0px;
  11328. position:absolute;
  11329. left:0px;
  11330. top:0px;
  11331. width:97px;
  11332. height:22px;
  11333. background:inherit;
  11334. background-color:rgba(255, 255, 255, 0);
  11335. border:none;
  11336. border-radius:0px;
  11337. -moz-box-shadow:none;
  11338. -webkit-box-shadow:none;
  11339. box-shadow:none;
  11340. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11341. font-weight:400;
  11342. font-style:normal;
  11343. font-size:16px;
  11344. }
  11345. #u12525 {
  11346. border-width:0px;
  11347. position:absolute;
  11348. left:145px;
  11349. top:760px;
  11350. width:97px;
  11351. height:22px;
  11352. display:flex;
  11353. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11354. font-weight:400;
  11355. font-style:normal;
  11356. font-size:16px;
  11357. }
  11358. #u12525 .text {
  11359. position:absolute;
  11360. align-self:flex-start;
  11361. padding:0px 0px 0px 0px;
  11362. box-sizing:border-box;
  11363. width:100%;
  11364. }
  11365. #u12525_text {
  11366. border-width:0px;
  11367. white-space:nowrap;
  11368. text-transform:none;
  11369. }
  11370. #u12526_div {
  11371. border-width:0px;
  11372. position:absolute;
  11373. left:0px;
  11374. top:0px;
  11375. width:97px;
  11376. height:22px;
  11377. background:inherit;
  11378. background-color:rgba(255, 255, 255, 0);
  11379. border:none;
  11380. border-radius:0px;
  11381. -moz-box-shadow:none;
  11382. -webkit-box-shadow:none;
  11383. box-shadow:none;
  11384. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11385. font-weight:400;
  11386. font-style:normal;
  11387. font-size:16px;
  11388. }
  11389. #u12526 {
  11390. border-width:0px;
  11391. position:absolute;
  11392. left:145px;
  11393. top:802px;
  11394. width:97px;
  11395. height:22px;
  11396. display:flex;
  11397. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11398. font-weight:400;
  11399. font-style:normal;
  11400. font-size:16px;
  11401. }
  11402. #u12526 .text {
  11403. position:absolute;
  11404. align-self:flex-start;
  11405. padding:0px 0px 0px 0px;
  11406. box-sizing:border-box;
  11407. width:100%;
  11408. }
  11409. #u12526_text {
  11410. border-width:0px;
  11411. white-space:nowrap;
  11412. text-transform:none;
  11413. }
  11414. #u12527_div {
  11415. border-width:0px;
  11416. position:absolute;
  11417. left:0px;
  11418. top:0px;
  11419. width:65px;
  11420. height:22px;
  11421. background:inherit;
  11422. background-color:rgba(255, 255, 255, 0);
  11423. border:none;
  11424. border-radius:0px;
  11425. -moz-box-shadow:none;
  11426. -webkit-box-shadow:none;
  11427. box-shadow:none;
  11428. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11429. font-weight:400;
  11430. font-style:normal;
  11431. font-size:16px;
  11432. }
  11433. #u12527 {
  11434. border-width:0px;
  11435. position:absolute;
  11436. left:145px;
  11437. top:986px;
  11438. width:65px;
  11439. height:22px;
  11440. display:flex;
  11441. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11442. font-weight:400;
  11443. font-style:normal;
  11444. font-size:16px;
  11445. }
  11446. #u12527 .text {
  11447. position:absolute;
  11448. align-self:flex-start;
  11449. padding:0px 0px 0px 0px;
  11450. box-sizing:border-box;
  11451. width:100%;
  11452. }
  11453. #u12527_text {
  11454. border-width:0px;
  11455. white-space:nowrap;
  11456. text-transform:none;
  11457. }
  11458. #u12528_div {
  11459. border-width:0px;
  11460. position:absolute;
  11461. left:0px;
  11462. top:0px;
  11463. width:49px;
  11464. height:17px;
  11465. background:inherit;
  11466. background-color:rgba(255, 255, 255, 0);
  11467. border:none;
  11468. border-radius:0px;
  11469. -moz-box-shadow:none;
  11470. -webkit-box-shadow:none;
  11471. box-shadow:none;
  11472. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11473. font-weight:400;
  11474. font-style:normal;
  11475. font-size:12px;
  11476. color:#AAAAAA;
  11477. }
  11478. #u12528 {
  11479. border-width:0px;
  11480. position:absolute;
  11481. left:143px;
  11482. top:949px;
  11483. width:49px;
  11484. height:17px;
  11485. display:flex;
  11486. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11487. font-weight:400;
  11488. font-style:normal;
  11489. font-size:12px;
  11490. color:#AAAAAA;
  11491. }
  11492. #u12528 .text {
  11493. position:absolute;
  11494. align-self:flex-start;
  11495. padding:0px 0px 0px 0px;
  11496. box-sizing:border-box;
  11497. width:100%;
  11498. }
  11499. #u12528_text {
  11500. border-width:0px;
  11501. white-space:nowrap;
  11502. text-transform:none;
  11503. }
  11504. #u12529_img {
  11505. border-width:0px;
  11506. position:absolute;
  11507. left:0px;
  11508. top:0px;
  11509. width:201px;
  11510. height:2px;
  11511. }
  11512. #u12529 {
  11513. border-width:0px;
  11514. position:absolute;
  11515. left:120px;
  11516. top:928px;
  11517. width:200px;
  11518. height:1px;
  11519. display:flex;
  11520. }
  11521. #u12529 .text {
  11522. position:absolute;
  11523. align-self:center;
  11524. padding:2px 2px 2px 2px;
  11525. box-sizing:border-box;
  11526. width:100%;
  11527. }
  11528. #u12529_text {
  11529. border-width:0px;
  11530. word-wrap:break-word;
  11531. text-transform:none;
  11532. visibility:hidden;
  11533. }
  11534. #u12530_div {
  11535. border-width:0px;
  11536. position:absolute;
  11537. left:0px;
  11538. top:0px;
  11539. width:65px;
  11540. height:22px;
  11541. background:inherit;
  11542. background-color:rgba(255, 255, 255, 0);
  11543. border:none;
  11544. border-radius:0px;
  11545. -moz-box-shadow:none;
  11546. -webkit-box-shadow:none;
  11547. box-shadow:none;
  11548. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11549. font-weight:400;
  11550. font-style:normal;
  11551. font-size:16px;
  11552. }
  11553. #u12530 {
  11554. border-width:0px;
  11555. position:absolute;
  11556. left:145px;
  11557. top:1028px;
  11558. width:65px;
  11559. height:22px;
  11560. display:flex;
  11561. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11562. font-weight:400;
  11563. font-style:normal;
  11564. font-size:16px;
  11565. }
  11566. #u12530 .text {
  11567. position:absolute;
  11568. align-self:flex-start;
  11569. padding:0px 0px 0px 0px;
  11570. box-sizing:border-box;
  11571. width:100%;
  11572. }
  11573. #u12530_text {
  11574. border-width:0px;
  11575. white-space:nowrap;
  11576. text-transform:none;
  11577. }
  11578. #u12531_div {
  11579. border-width:0px;
  11580. position:absolute;
  11581. left:0px;
  11582. top:0px;
  11583. width:97px;
  11584. height:22px;
  11585. background:inherit;
  11586. background-color:rgba(255, 255, 255, 0);
  11587. border:none;
  11588. border-radius:0px;
  11589. -moz-box-shadow:none;
  11590. -webkit-box-shadow:none;
  11591. box-shadow:none;
  11592. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11593. font-weight:400;
  11594. font-style:normal;
  11595. font-size:16px;
  11596. }
  11597. #u12531 {
  11598. border-width:0px;
  11599. position:absolute;
  11600. left:145px;
  11601. top:844px;
  11602. width:97px;
  11603. height:22px;
  11604. display:flex;
  11605. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11606. font-weight:400;
  11607. font-style:normal;
  11608. font-size:16px;
  11609. }
  11610. #u12531 .text {
  11611. position:absolute;
  11612. align-self:flex-start;
  11613. padding:0px 0px 0px 0px;
  11614. box-sizing:border-box;
  11615. width:100%;
  11616. }
  11617. #u12531_text {
  11618. border-width:0px;
  11619. white-space:nowrap;
  11620. text-transform:none;
  11621. }
  11622. #u12532_div {
  11623. border-width:0px;
  11624. position:absolute;
  11625. left:0px;
  11626. top:0px;
  11627. width:81px;
  11628. height:22px;
  11629. background:inherit;
  11630. background-color:rgba(255, 255, 255, 0);
  11631. border:none;
  11632. border-radius:0px;
  11633. -moz-box-shadow:none;
  11634. -webkit-box-shadow:none;
  11635. box-shadow:none;
  11636. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11637. font-weight:400;
  11638. font-style:normal;
  11639. font-size:16px;
  11640. }
  11641. #u12532 {
  11642. border-width:0px;
  11643. position:absolute;
  11644. left:146px;
  11645. top:436px;
  11646. width:81px;
  11647. height:22px;
  11648. display:flex;
  11649. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11650. font-weight:400;
  11651. font-style:normal;
  11652. font-size:16px;
  11653. }
  11654. #u12532 .text {
  11655. position:absolute;
  11656. align-self:flex-start;
  11657. padding:0px 0px 0px 0px;
  11658. box-sizing:border-box;
  11659. width:100%;
  11660. }
  11661. #u12532_text {
  11662. border-width:0px;
  11663. white-space:nowrap;
  11664. text-transform:none;
  11665. }
  11666. #u12533_div {
  11667. border-width:0px;
  11668. position:absolute;
  11669. left:0px;
  11670. top:0px;
  11671. width:97px;
  11672. height:22px;
  11673. background:inherit;
  11674. background-color:rgba(255, 255, 255, 0);
  11675. border:none;
  11676. border-radius:0px;
  11677. -moz-box-shadow:none;
  11678. -webkit-box-shadow:none;
  11679. box-shadow:none;
  11680. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11681. font-weight:400;
  11682. font-style:normal;
  11683. font-size:16px;
  11684. }
  11685. #u12533 {
  11686. border-width:0px;
  11687. position:absolute;
  11688. left:145px;
  11689. top:720px;
  11690. width:97px;
  11691. height:22px;
  11692. display:flex;
  11693. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11694. font-weight:400;
  11695. font-style:normal;
  11696. font-size:16px;
  11697. }
  11698. #u12533 .text {
  11699. position:absolute;
  11700. align-self:flex-start;
  11701. padding:0px 0px 0px 0px;
  11702. box-sizing:border-box;
  11703. width:100%;
  11704. }
  11705. #u12533_text {
  11706. border-width:0px;
  11707. white-space:nowrap;
  11708. text-transform:none;
  11709. }
  11710. #u12534_div {
  11711. border-width:0px;
  11712. position:absolute;
  11713. left:0px;
  11714. top:0px;
  11715. width:65px;
  11716. height:22px;
  11717. background:inherit;
  11718. background-color:rgba(255, 255, 255, 0);
  11719. border:none;
  11720. border-radius:0px;
  11721. -moz-box-shadow:none;
  11722. -webkit-box-shadow:none;
  11723. box-shadow:none;
  11724. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11725. font-weight:400;
  11726. font-style:normal;
  11727. font-size:16px;
  11728. }
  11729. #u12534 {
  11730. border-width:0px;
  11731. position:absolute;
  11732. left:145px;
  11733. top:210px;
  11734. width:65px;
  11735. height:22px;
  11736. display:flex;
  11737. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11738. font-weight:400;
  11739. font-style:normal;
  11740. font-size:16px;
  11741. }
  11742. #u12534 .text {
  11743. position:absolute;
  11744. align-self:flex-start;
  11745. padding:0px 0px 0px 0px;
  11746. box-sizing:border-box;
  11747. width:100%;
  11748. }
  11749. #u12534_text {
  11750. border-width:0px;
  11751. white-space:nowrap;
  11752. text-transform:none;
  11753. }
  11754. #u12535_div {
  11755. border-width:0px;
  11756. position:absolute;
  11757. left:0px;
  11758. top:0px;
  11759. width:65px;
  11760. height:22px;
  11761. background:inherit;
  11762. background-color:rgba(255, 255, 255, 0);
  11763. border:none;
  11764. border-radius:0px;
  11765. -moz-box-shadow:none;
  11766. -webkit-box-shadow:none;
  11767. box-shadow:none;
  11768. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11769. font-weight:400;
  11770. font-style:normal;
  11771. font-size:16px;
  11772. }
  11773. #u12535 {
  11774. border-width:0px;
  11775. position:absolute;
  11776. left:146px;
  11777. top:252px;
  11778. width:65px;
  11779. height:22px;
  11780. display:flex;
  11781. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11782. font-weight:400;
  11783. font-style:normal;
  11784. font-size:16px;
  11785. }
  11786. #u12535 .text {
  11787. position:absolute;
  11788. align-self:flex-start;
  11789. padding:0px 0px 0px 0px;
  11790. box-sizing:border-box;
  11791. width:100%;
  11792. }
  11793. #u12535_text {
  11794. border-width:0px;
  11795. white-space:nowrap;
  11796. text-transform:none;
  11797. }
  11798. #u12536 {
  11799. border-width:0px;
  11800. position:absolute;
  11801. left:0px;
  11802. top:0px;
  11803. width:0px;
  11804. height:0px;
  11805. }
  11806. #u12537_div {
  11807. border-width:0px;
  11808. position:absolute;
  11809. left:0px;
  11810. top:0px;
  11811. width:140px;
  11812. height:30px;
  11813. background:inherit;
  11814. background-color:rgba(255, 255, 255, 1);
  11815. box-sizing:border-box;
  11816. border-width:1px;
  11817. border-style:solid;
  11818. border-color:rgba(201, 201, 201, 1);
  11819. border-radius:4px;
  11820. -moz-box-shadow:none;
  11821. -webkit-box-shadow:none;
  11822. box-shadow:none;
  11823. font-family:'Microsoft YaHei', sans-serif;
  11824. font-weight:400;
  11825. font-style:normal;
  11826. font-size:14px;
  11827. color:#CCCCCC;
  11828. text-align:left;
  11829. }
  11830. #u12537 {
  11831. border-width:0px;
  11832. position:absolute;
  11833. left:1311px;
  11834. top:199px;
  11835. width:140px;
  11836. height:30px;
  11837. display:flex;
  11838. font-family:'Microsoft YaHei', sans-serif;
  11839. font-weight:400;
  11840. font-style:normal;
  11841. font-size:14px;
  11842. color:#CCCCCC;
  11843. text-align:left;
  11844. }
  11845. #u12537 .text {
  11846. position:absolute;
  11847. align-self:center;
  11848. padding:2px 8px 2px 8px;
  11849. box-sizing:border-box;
  11850. width:100%;
  11851. }
  11852. #u12537_text {
  11853. border-width:0px;
  11854. word-wrap:break-word;
  11855. text-transform:none;
  11856. visibility:hidden;
  11857. }
  11858. #u12538_input {
  11859. position:absolute;
  11860. left:0px;
  11861. top:0px;
  11862. width:127px;
  11863. height:25px;
  11864. padding:2px 2px 2px 2px;
  11865. font-family:'Microsoft YaHei', sans-serif;
  11866. font-weight:400;
  11867. font-style:normal;
  11868. font-size:10px;
  11869. letter-spacing:normal;
  11870. color:#000000;
  11871. vertical-align:none;
  11872. text-align:left;
  11873. text-transform:none;
  11874. background-color:transparent;
  11875. border-color:transparent;
  11876. }
  11877. #u12538_input.disabled {
  11878. position:absolute;
  11879. left:0px;
  11880. top:0px;
  11881. width:127px;
  11882. height:25px;
  11883. padding:2px 2px 2px 2px;
  11884. font-family:'Microsoft YaHei', sans-serif;
  11885. font-weight:400;
  11886. font-style:normal;
  11887. font-size:10px;
  11888. letter-spacing:normal;
  11889. color:#000000;
  11890. vertical-align:none;
  11891. text-align:left;
  11892. text-transform:none;
  11893. background-color:transparent;
  11894. border-color:transparent;
  11895. }
  11896. #u12538_div {
  11897. border-width:0px;
  11898. position:absolute;
  11899. left:0px;
  11900. top:0px;
  11901. width:127px;
  11902. height:25px;
  11903. background:inherit;
  11904. background-color:rgba(255, 255, 255, 1);
  11905. border:none;
  11906. border-radius:0px;
  11907. -moz-box-shadow:none;
  11908. -webkit-box-shadow:none;
  11909. box-shadow:none;
  11910. font-family:'Microsoft YaHei', sans-serif;
  11911. font-weight:400;
  11912. font-style:normal;
  11913. font-size:10px;
  11914. }
  11915. #u12538 {
  11916. border-width:0px;
  11917. position:absolute;
  11918. left:1319px;
  11919. top:200px;
  11920. width:127px;
  11921. height:25px;
  11922. display:flex;
  11923. font-family:'Microsoft YaHei', sans-serif;
  11924. font-weight:400;
  11925. font-style:normal;
  11926. font-size:10px;
  11927. }
  11928. #u12538 .text {
  11929. position:absolute;
  11930. align-self:center;
  11931. padding:2px 2px 2px 2px;
  11932. box-sizing:border-box;
  11933. width:100%;
  11934. }
  11935. #u12538_div.disabled {
  11936. border-width:0px;
  11937. position:absolute;
  11938. left:0px;
  11939. top:0px;
  11940. width:127px;
  11941. height:25px;
  11942. background:inherit;
  11943. background-color:rgba(240, 240, 240, 1);
  11944. border:none;
  11945. border-radius:0px;
  11946. -moz-box-shadow:none;
  11947. -webkit-box-shadow:none;
  11948. box-shadow:none;
  11949. font-family:'Microsoft YaHei', sans-serif;
  11950. font-weight:400;
  11951. font-style:normal;
  11952. font-size:10px;
  11953. }
  11954. #u12538.disabled {
  11955. }
  11956. #u12539_div {
  11957. border-width:0px;
  11958. position:absolute;
  11959. left:0px;
  11960. top:0px;
  11961. width:813px;
  11962. height:20px;
  11963. background:inherit;
  11964. background-color:rgba(255, 255, 255, 0);
  11965. border:none;
  11966. border-left:0px;
  11967. border-top:0px;
  11968. border-right:0px;
  11969. border-radius:0px;
  11970. border-bottom-right-radius:0px;
  11971. border-bottom-left-radius:0px;
  11972. -moz-box-shadow:none;
  11973. -webkit-box-shadow:none;
  11974. box-shadow:none;
  11975. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11976. font-weight:400;
  11977. font-style:normal;
  11978. font-size:14px;
  11979. color:#7F7F7F;
  11980. }
  11981. #u12539 {
  11982. border-width:0px;
  11983. position:absolute;
  11984. left:352px;
  11985. top:110px;
  11986. width:813px;
  11987. height:20px;
  11988. display:flex;
  11989. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11990. font-weight:400;
  11991. font-style:normal;
  11992. font-size:14px;
  11993. color:#7F7F7F;
  11994. }
  11995. #u12539 .text {
  11996. position:absolute;
  11997. align-self:center;
  11998. padding:0px 0px 0px 0px;
  11999. box-sizing:border-box;
  12000. width:100%;
  12001. }
  12002. #u12539_text {
  12003. border-width:0px;
  12004. white-space:nowrap;
  12005. text-transform:none;
  12006. }
  12007. #u12540 {
  12008. border-width:0px;
  12009. position:absolute;
  12010. left:0px;
  12011. top:0px;
  12012. width:0px;
  12013. height:0px;
  12014. }
  12015. #u12541 {
  12016. border-width:0px;
  12017. position:absolute;
  12018. left:0px;
  12019. top:0px;
  12020. width:0px;
  12021. height:0px;
  12022. }
  12023. #u12542_div {
  12024. border-width:0px;
  12025. position:absolute;
  12026. left:0px;
  12027. top:0px;
  12028. width:380px;
  12029. height:160px;
  12030. background:inherit;
  12031. background-color:rgba(255, 255, 255, 1);
  12032. box-sizing:border-box;
  12033. border-width:1px;
  12034. border-style:solid;
  12035. border-color:rgba(242, 242, 242, 1);
  12036. border-radius:4px;
  12037. -moz-box-shadow:0px 4px 12px rgba(0, 0, 0, 0.447058823529412);
  12038. -webkit-box-shadow:0px 4px 12px rgba(0, 0, 0, 0.447058823529412);
  12039. box-shadow:0px 4px 12px rgba(0, 0, 0, 0.447058823529412);
  12040. font-family:'Microsoft YaHei', sans-serif;
  12041. font-weight:400;
  12042. font-style:normal;
  12043. }
  12044. #u12542 {
  12045. border-width:0px;
  12046. position:absolute;
  12047. left:760px;
  12048. top:727px;
  12049. width:380px;
  12050. height:160px;
  12051. display:flex;
  12052. font-family:'Microsoft YaHei', sans-serif;
  12053. font-weight:400;
  12054. font-style:normal;
  12055. }
  12056. #u12542 .text {
  12057. position:absolute;
  12058. align-self:center;
  12059. padding:2px 2px 2px 2px;
  12060. box-sizing:border-box;
  12061. width:100%;
  12062. }
  12063. #u12542_text {
  12064. border-width:0px;
  12065. word-wrap:break-word;
  12066. text-transform:none;
  12067. visibility:hidden;
  12068. }
  12069. #u12543_div {
  12070. border-width:0px;
  12071. position:absolute;
  12072. left:0px;
  12073. top:0px;
  12074. width:163px;
  12075. height:21px;
  12076. background:inherit;
  12077. background-color:rgba(255, 255, 255, 0);
  12078. border:none;
  12079. border-radius:0px;
  12080. -moz-box-shadow:none;
  12081. -webkit-box-shadow:none;
  12082. box-shadow:none;
  12083. font-family:'PingFangSC-Semibold', 'PingFang SC Semibold', 'PingFang SC', sans-serif;
  12084. font-weight:650;
  12085. font-style:normal;
  12086. font-size:18px;
  12087. color:#000000;
  12088. line-height:22px;
  12089. }
  12090. #u12543 {
  12091. border-width:0px;
  12092. position:absolute;
  12093. left:820px;
  12094. top:752px;
  12095. width:163px;
  12096. height:21px;
  12097. display:flex;
  12098. font-family:'PingFangSC-Semibold', 'PingFang SC Semibold', 'PingFang SC', sans-serif;
  12099. font-weight:650;
  12100. font-style:normal;
  12101. font-size:18px;
  12102. color:#000000;
  12103. line-height:22px;
  12104. }
  12105. #u12543 .text {
  12106. position:absolute;
  12107. align-self:flex-start;
  12108. padding:0px 0px 0px 0px;
  12109. box-sizing:border-box;
  12110. width:100%;
  12111. }
  12112. #u12543_text {
  12113. border-width:0px;
  12114. white-space:nowrap;
  12115. text-transform:none;
  12116. }
  12117. #u12544_div {
  12118. border-width:0px;
  12119. position:absolute;
  12120. left:0px;
  12121. top:0px;
  12122. width:61px;
  12123. height:32px;
  12124. background:inherit;
  12125. background-color:rgba(24, 144, 255, 1);
  12126. border:none;
  12127. border-radius:4px;
  12128. -moz-box-shadow:none;
  12129. -webkit-box-shadow:none;
  12130. box-shadow:none;
  12131. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  12132. font-weight:400;
  12133. font-style:normal;
  12134. font-size:14px;
  12135. color:#FFFFFF;
  12136. }
  12137. #u12544 {
  12138. border-width:0px;
  12139. position:absolute;
  12140. left:1059px;
  12141. top:839px;
  12142. width:61px;
  12143. height:32px;
  12144. display:flex;
  12145. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  12146. font-weight:400;
  12147. font-style:normal;
  12148. font-size:14px;
  12149. color:#FFFFFF;
  12150. }
  12151. #u12544 .text {
  12152. position:absolute;
  12153. align-self:center;
  12154. padding:2px 16px 2px 16px;
  12155. box-sizing:border-box;
  12156. width:100%;
  12157. }
  12158. #u12544_text {
  12159. border-width:0px;
  12160. white-space:nowrap;
  12161. text-transform:none;
  12162. }
  12163. #u12545_img {
  12164. border-width:0px;
  12165. position:absolute;
  12166. left:0px;
  12167. top:0px;
  12168. width:20px;
  12169. height:20px;
  12170. }
  12171. #u12545 {
  12172. border-width:0px;
  12173. position:absolute;
  12174. left:789px;
  12175. top:756px;
  12176. width:20px;
  12177. height:20px;
  12178. display:flex;
  12179. }
  12180. #u12545 .text {
  12181. position:absolute;
  12182. align-self:center;
  12183. padding:2px 2px 2px 2px;
  12184. box-sizing:border-box;
  12185. width:100%;
  12186. }
  12187. #u12545_text {
  12188. border-width:0px;
  12189. word-wrap:break-word;
  12190. text-transform:none;
  12191. visibility:hidden;
  12192. }
  12193. #u12546_div {
  12194. border-width:0px;
  12195. position:absolute;
  12196. left:0px;
  12197. top:0px;
  12198. width:300px;
  12199. height:44px;
  12200. background:inherit;
  12201. background-color:rgba(255, 255, 255, 0);
  12202. border:none;
  12203. border-radius:0px;
  12204. -moz-box-shadow:none;
  12205. -webkit-box-shadow:none;
  12206. box-shadow:none;
  12207. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  12208. font-weight:400;
  12209. font-style:normal;
  12210. font-size:14px;
  12211. color:#7F7F7F;
  12212. line-height:22px;
  12213. }
  12214. #u12546 {
  12215. border-width:0px;
  12216. position:absolute;
  12217. left:820px;
  12218. top:786px;
  12219. width:300px;
  12220. height:44px;
  12221. display:flex;
  12222. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  12223. font-weight:400;
  12224. font-style:normal;
  12225. font-size:14px;
  12226. color:#7F7F7F;
  12227. line-height:22px;
  12228. }
  12229. #u12546 .text {
  12230. position:absolute;
  12231. align-self:flex-start;
  12232. padding:0px 0px 0px 0px;
  12233. box-sizing:border-box;
  12234. width:100%;
  12235. }
  12236. #u12546_text {
  12237. border-width:0px;
  12238. word-wrap:break-word;
  12239. text-transform:none;
  12240. }
  12241. #u12547_div {
  12242. border-width:0px;
  12243. position:absolute;
  12244. left:0px;
  12245. top:0px;
  12246. width:66px;
  12247. height:32px;
  12248. background:inherit;
  12249. background-color:rgba(255, 255, 255, 1);
  12250. box-sizing:border-box;
  12251. border-width:1px;
  12252. border-style:solid;
  12253. border-color:rgba(217, 217, 217, 1);
  12254. border-radius:4px;
  12255. -moz-box-shadow:none;
  12256. -webkit-box-shadow:none;
  12257. box-shadow:none;
  12258. font-family:'Microsoft YaHei', sans-serif;
  12259. font-weight:400;
  12260. font-style:normal;
  12261. font-size:14px;
  12262. color:rgba(0, 0, 0, 0.647058823529412);
  12263. line-height:21px;
  12264. }
  12265. #u12547 {
  12266. border-width:0px;
  12267. position:absolute;
  12268. left:976px;
  12269. top:839px;
  12270. width:66px;
  12271. height:32px;
  12272. display:flex;
  12273. font-family:'Microsoft YaHei', sans-serif;
  12274. font-weight:400;
  12275. font-style:normal;
  12276. font-size:14px;
  12277. color:rgba(0, 0, 0, 0.647058823529412);
  12278. line-height:21px;
  12279. }
  12280. #u12547 .text {
  12281. position:absolute;
  12282. align-self:center;
  12283. padding:2px 16px 2px 16px;
  12284. box-sizing:border-box;
  12285. width:100%;
  12286. }
  12287. #u12547_text {
  12288. border-width:0px;
  12289. white-space:nowrap;
  12290. text-transform:none;
  12291. }
  12292. #u12548 {
  12293. border-width:0px;
  12294. position:absolute;
  12295. left:0px;
  12296. top:0px;
  12297. width:0px;
  12298. height:0px;
  12299. }
  12300. #u12549 {
  12301. border-width:0px;
  12302. position:absolute;
  12303. left:0px;
  12304. top:0px;
  12305. width:0px;
  12306. height:0px;
  12307. }
  12308. #u12550_div {
  12309. border-width:0px;
  12310. position:absolute;
  12311. left:0px;
  12312. top:0px;
  12313. width:380px;
  12314. height:160px;
  12315. background:inherit;
  12316. background-color:rgba(255, 255, 255, 1);
  12317. box-sizing:border-box;
  12318. border-width:1px;
  12319. border-style:solid;
  12320. border-color:rgba(242, 242, 242, 1);
  12321. border-radius:4px;
  12322. -moz-box-shadow:0px 4px 12px rgba(0, 0, 0, 0.447058823529412);
  12323. -webkit-box-shadow:0px 4px 12px rgba(0, 0, 0, 0.447058823529412);
  12324. box-shadow:0px 4px 12px rgba(0, 0, 0, 0.447058823529412);
  12325. font-family:'Microsoft YaHei', sans-serif;
  12326. font-weight:400;
  12327. font-style:normal;
  12328. }
  12329. #u12550 {
  12330. border-width:0px;
  12331. position:absolute;
  12332. left:1160px;
  12333. top:727px;
  12334. width:380px;
  12335. height:160px;
  12336. display:flex;
  12337. font-family:'Microsoft YaHei', sans-serif;
  12338. font-weight:400;
  12339. font-style:normal;
  12340. }
  12341. #u12550 .text {
  12342. position:absolute;
  12343. align-self:center;
  12344. padding:2px 2px 2px 2px;
  12345. box-sizing:border-box;
  12346. width:100%;
  12347. }
  12348. #u12550_text {
  12349. border-width:0px;
  12350. word-wrap:break-word;
  12351. text-transform:none;
  12352. visibility:hidden;
  12353. }
  12354. #u12551_div {
  12355. border-width:0px;
  12356. position:absolute;
  12357. left:0px;
  12358. top:0px;
  12359. width:91px;
  12360. height:21px;
  12361. background:inherit;
  12362. background-color:rgba(255, 255, 255, 0);
  12363. border:none;
  12364. border-radius:0px;
  12365. -moz-box-shadow:none;
  12366. -webkit-box-shadow:none;
  12367. box-shadow:none;
  12368. font-family:'PingFangSC-Semibold', 'PingFang SC Semibold', 'PingFang SC', sans-serif;
  12369. font-weight:650;
  12370. font-style:normal;
  12371. font-size:18px;
  12372. color:#000000;
  12373. line-height:22px;
  12374. }
  12375. #u12551 {
  12376. border-width:0px;
  12377. position:absolute;
  12378. left:1220px;
  12379. top:752px;
  12380. width:91px;
  12381. height:21px;
  12382. display:flex;
  12383. font-family:'PingFangSC-Semibold', 'PingFang SC Semibold', 'PingFang SC', sans-serif;
  12384. font-weight:650;
  12385. font-style:normal;
  12386. font-size:18px;
  12387. color:#000000;
  12388. line-height:22px;
  12389. }
  12390. #u12551 .text {
  12391. position:absolute;
  12392. align-self:flex-start;
  12393. padding:0px 0px 0px 0px;
  12394. box-sizing:border-box;
  12395. width:100%;
  12396. }
  12397. #u12551_text {
  12398. border-width:0px;
  12399. white-space:nowrap;
  12400. text-transform:none;
  12401. }
  12402. #u12552_div {
  12403. border-width:0px;
  12404. position:absolute;
  12405. left:0px;
  12406. top:0px;
  12407. width:61px;
  12408. height:32px;
  12409. background:inherit;
  12410. background-color:rgba(24, 144, 255, 1);
  12411. border:none;
  12412. border-radius:4px;
  12413. -moz-box-shadow:none;
  12414. -webkit-box-shadow:none;
  12415. box-shadow:none;
  12416. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  12417. font-weight:400;
  12418. font-style:normal;
  12419. font-size:14px;
  12420. color:#FFFFFF;
  12421. }
  12422. #u12552 {
  12423. border-width:0px;
  12424. position:absolute;
  12425. left:1459px;
  12426. top:839px;
  12427. width:61px;
  12428. height:32px;
  12429. display:flex;
  12430. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  12431. font-weight:400;
  12432. font-style:normal;
  12433. font-size:14px;
  12434. color:#FFFFFF;
  12435. }
  12436. #u12552 .text {
  12437. position:absolute;
  12438. align-self:center;
  12439. padding:2px 16px 2px 16px;
  12440. box-sizing:border-box;
  12441. width:100%;
  12442. }
  12443. #u12552_text {
  12444. border-width:0px;
  12445. white-space:nowrap;
  12446. text-transform:none;
  12447. }
  12448. #u12553_div {
  12449. border-width:0px;
  12450. position:absolute;
  12451. left:0px;
  12452. top:0px;
  12453. width:300px;
  12454. height:44px;
  12455. background:inherit;
  12456. background-color:rgba(255, 255, 255, 0);
  12457. border:none;
  12458. border-radius:0px;
  12459. -moz-box-shadow:none;
  12460. -webkit-box-shadow:none;
  12461. box-shadow:none;
  12462. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  12463. font-weight:400;
  12464. font-style:normal;
  12465. font-size:14px;
  12466. color:#7F7F7F;
  12467. line-height:22px;
  12468. }
  12469. #u12553 {
  12470. border-width:0px;
  12471. position:absolute;
  12472. left:1220px;
  12473. top:786px;
  12474. width:300px;
  12475. height:44px;
  12476. display:flex;
  12477. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  12478. font-weight:400;
  12479. font-style:normal;
  12480. font-size:14px;
  12481. color:#7F7F7F;
  12482. line-height:22px;
  12483. }
  12484. #u12553 .text {
  12485. position:absolute;
  12486. align-self:flex-start;
  12487. padding:0px 0px 0px 0px;
  12488. box-sizing:border-box;
  12489. width:100%;
  12490. }
  12491. #u12553_text {
  12492. border-width:0px;
  12493. word-wrap:break-word;
  12494. text-transform:none;
  12495. }
  12496. #u12554_img {
  12497. border-width:0px;
  12498. position:absolute;
  12499. left:0px;
  12500. top:0px;
  12501. width:20px;
  12502. height:20px;
  12503. }
  12504. #u12554 {
  12505. border-width:0px;
  12506. position:absolute;
  12507. left:1189px;
  12508. top:752px;
  12509. width:20px;
  12510. height:20px;
  12511. display:flex;
  12512. }
  12513. #u12554 .text {
  12514. position:absolute;
  12515. align-self:center;
  12516. padding:2px 2px 2px 2px;
  12517. box-sizing:border-box;
  12518. width:100%;
  12519. }
  12520. #u12554_text {
  12521. border-width:0px;
  12522. word-wrap:break-word;
  12523. text-transform:none;
  12524. visibility:hidden;
  12525. }
  12526. #u12555_div {
  12527. border-width:0px;
  12528. position:absolute;
  12529. left:0px;
  12530. top:0px;
  12531. width:680px;
  12532. height:61px;
  12533. background:inherit;
  12534. background-color:rgba(255, 255, 255, 0);
  12535. border:none;
  12536. border-top:0px;
  12537. border-right:0px;
  12538. border-bottom:0px;
  12539. border-radius:0px;
  12540. border-top-left-radius:0px;
  12541. border-bottom-left-radius:0px;
  12542. -moz-box-shadow:none;
  12543. -webkit-box-shadow:none;
  12544. box-shadow:none;
  12545. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  12546. font-weight:400;
  12547. font-style:normal;
  12548. font-size:12px;
  12549. color:#D9001B;
  12550. }
  12551. #u12555 {
  12552. border-width:0px;
  12553. position:absolute;
  12554. left:760px;
  12555. top:661px;
  12556. width:680px;
  12557. height:61px;
  12558. display:flex;
  12559. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  12560. font-weight:400;
  12561. font-style:normal;
  12562. font-size:12px;
  12563. color:#D9001B;
  12564. }
  12565. #u12555 .text {
  12566. position:absolute;
  12567. align-self:center;
  12568. padding:5px 0px 5px 0px;
  12569. box-sizing:border-box;
  12570. width:100%;
  12571. }
  12572. #u12555_text {
  12573. border-width:0px;
  12574. white-space:nowrap;
  12575. text-transform:none;
  12576. }
  12577. #u12556_div {
  12578. border-width:0px;
  12579. position:absolute;
  12580. left:0px;
  12581. top:0px;
  12582. width:60px;
  12583. height:30px;
  12584. background:inherit;
  12585. background-color:rgba(24, 144, 255, 1);
  12586. border:none;
  12587. border-radius:4px;
  12588. -moz-box-shadow:none;
  12589. -webkit-box-shadow:none;
  12590. box-shadow:none;
  12591. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  12592. font-weight:400;
  12593. font-style:normal;
  12594. font-size:14px;
  12595. color:#FFFFFF;
  12596. }
  12597. #u12556 {
  12598. border-width:0px;
  12599. position:absolute;
  12600. left:563px;
  12601. top:291px;
  12602. width:60px;
  12603. height:30px;
  12604. display:flex;
  12605. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  12606. font-weight:400;
  12607. font-style:normal;
  12608. font-size:14px;
  12609. color:#FFFFFF;
  12610. }
  12611. #u12556 .text {
  12612. position:absolute;
  12613. align-self:center;
  12614. padding:2px 2px 2px 2px;
  12615. box-sizing:border-box;
  12616. width:100%;
  12617. }
  12618. #u12556_text {
  12619. border-width:0px;
  12620. word-wrap:break-word;
  12621. text-transform:none;
  12622. }
  12623. #u12557_div {
  12624. border-width:0px;
  12625. position:absolute;
  12626. left:0px;
  12627. top:0px;
  12628. width:55px;
  12629. height:30px;
  12630. background:inherit;
  12631. background-color:rgba(255, 255, 255, 1);
  12632. box-sizing:border-box;
  12633. border-width:1px;
  12634. border-style:solid;
  12635. border-color:rgba(170, 170, 170, 1);
  12636. border-radius:4px;
  12637. -moz-box-shadow:none;
  12638. -webkit-box-shadow:none;
  12639. box-shadow:none;
  12640. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  12641. font-weight:400;
  12642. font-style:normal;
  12643. font-size:12px;
  12644. color:#555555;
  12645. }
  12646. #u12557 {
  12647. border-width:0px;
  12648. position:absolute;
  12649. left:702px;
  12650. top:291px;
  12651. width:55px;
  12652. height:30px;
  12653. display:flex;
  12654. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  12655. font-weight:400;
  12656. font-style:normal;
  12657. font-size:12px;
  12658. color:#555555;
  12659. }
  12660. #u12557 .text {
  12661. position:absolute;
  12662. align-self:center;
  12663. padding:5px 15px 5px 15px;
  12664. box-sizing:border-box;
  12665. width:100%;
  12666. }
  12667. #u12557_text {
  12668. border-width:0px;
  12669. white-space:nowrap;
  12670. text-transform:none;
  12671. }
  12672. #u12558_div {
  12673. border-width:0px;
  12674. position:absolute;
  12675. left:0px;
  12676. top:0px;
  12677. width:59px;
  12678. height:30px;
  12679. background:inherit;
  12680. background-color:rgba(255, 255, 255, 1);
  12681. box-sizing:border-box;
  12682. border-width:1px;
  12683. border-style:solid;
  12684. border-color:rgba(170, 170, 170, 1);
  12685. border-radius:4px;
  12686. -moz-box-shadow:none;
  12687. -webkit-box-shadow:none;
  12688. box-shadow:none;
  12689. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  12690. font-weight:400;
  12691. font-style:normal;
  12692. font-size:14px;
  12693. color:#555555;
  12694. }
  12695. #u12558 {
  12696. border-width:0px;
  12697. position:absolute;
  12698. left:633px;
  12699. top:291px;
  12700. width:59px;
  12701. height:30px;
  12702. display:flex;
  12703. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  12704. font-weight:400;
  12705. font-style:normal;
  12706. font-size:14px;
  12707. color:#555555;
  12708. }
  12709. #u12558 .text {
  12710. position:absolute;
  12711. align-self:center;
  12712. padding:5px 15px 5px 15px;
  12713. box-sizing:border-box;
  12714. width:100%;
  12715. }
  12716. #u12558_text {
  12717. border-width:0px;
  12718. white-space:nowrap;
  12719. text-transform:none;
  12720. }
  12721. #u12559_div {
  12722. border-width:0px;
  12723. position:absolute;
  12724. left:0px;
  12725. top:0px;
  12726. width:115px;
  12727. height:30px;
  12728. background:inherit;
  12729. background-color:rgba(255, 255, 255, 1);
  12730. border:none;
  12731. border-radius:4px;
  12732. -moz-box-shadow:none;
  12733. -webkit-box-shadow:none;
  12734. box-shadow:none;
  12735. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  12736. font-weight:400;
  12737. font-style:normal;
  12738. font-size:12px;
  12739. text-decoration:underline ;
  12740. color:#298FFF;
  12741. }
  12742. #u12559 {
  12743. border-width:0px;
  12744. position:absolute;
  12745. left:1445px;
  12746. top:292px;
  12747. width:115px;
  12748. height:30px;
  12749. display:flex;
  12750. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  12751. font-weight:400;
  12752. font-style:normal;
  12753. font-size:12px;
  12754. text-decoration:underline ;
  12755. color:#298FFF;
  12756. }
  12757. #u12559 .text {
  12758. position:absolute;
  12759. align-self:center;
  12760. padding:5px 15px 5px 15px;
  12761. box-sizing:border-box;
  12762. width:100%;
  12763. }
  12764. #u12559_text {
  12765. border-width:0px;
  12766. white-space:nowrap;
  12767. text-transform:none;
  12768. }
  12769. #u12560 {
  12770. border-width:0px;
  12771. position:absolute;
  12772. left:1503px;
  12773. top:292px;
  12774. width:0px;
  12775. height:0px;
  12776. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  12777. font-weight:400;
  12778. font-style:normal;
  12779. font-size:12px;
  12780. color:#333333;
  12781. }
  12782. #u12560_seg0 {
  12783. border-width:0px;
  12784. position:absolute;
  12785. left:-5px;
  12786. top:-171px;
  12787. width:10px;
  12788. height:171px;
  12789. }
  12790. #u12560_seg1 {
  12791. border-width:0px;
  12792. position:absolute;
  12793. left:-5px;
  12794. top:-171px;
  12795. width:148px;
  12796. height:10px;
  12797. }
  12798. #u12560_seg2 {
  12799. border-width:0px;
  12800. position:absolute;
  12801. left:126px;
  12802. top:-182px;
  12803. width:32px;
  12804. height:32px;
  12805. }
  12806. #u12560_text {
  12807. border-width:0px;
  12808. position:absolute;
  12809. left:-50px;
  12810. top:-162px;
  12811. width:100px;
  12812. word-wrap:break-word;
  12813. text-transform:none;
  12814. visibility:hidden;
  12815. }
  12816. #u12561 {
  12817. border-width:0px;
  12818. position:absolute;
  12819. left:0px;
  12820. top:0px;
  12821. width:0px;
  12822. height:0px;
  12823. }
  12824. #u12562 {
  12825. border-width:0px;
  12826. position:absolute;
  12827. left:0px;
  12828. top:0px;
  12829. width:0px;
  12830. height:0px;
  12831. }
  12832. #u12563_div {
  12833. border-width:0px;
  12834. position:absolute;
  12835. left:0px;
  12836. top:0px;
  12837. width:380px;
  12838. height:160px;
  12839. background:inherit;
  12840. background-color:rgba(255, 255, 255, 1);
  12841. box-sizing:border-box;
  12842. border-width:1px;
  12843. border-style:solid;
  12844. border-color:rgba(242, 242, 242, 1);
  12845. border-radius:4px;
  12846. -moz-box-shadow:0px 4px 12px rgba(0, 0, 0, 0.447058823529412);
  12847. -webkit-box-shadow:0px 4px 12px rgba(0, 0, 0, 0.447058823529412);
  12848. box-shadow:0px 4px 12px rgba(0, 0, 0, 0.447058823529412);
  12849. font-family:'Microsoft YaHei', sans-serif;
  12850. font-weight:400;
  12851. font-style:normal;
  12852. }
  12853. #u12563 {
  12854. border-width:0px;
  12855. position:absolute;
  12856. left:1955px;
  12857. top:368px;
  12858. width:380px;
  12859. height:160px;
  12860. display:flex;
  12861. font-family:'Microsoft YaHei', sans-serif;
  12862. font-weight:400;
  12863. font-style:normal;
  12864. }
  12865. #u12563 .text {
  12866. position:absolute;
  12867. align-self:center;
  12868. padding:2px 2px 2px 2px;
  12869. box-sizing:border-box;
  12870. width:100%;
  12871. }
  12872. #u12563_text {
  12873. border-width:0px;
  12874. word-wrap:break-word;
  12875. text-transform:none;
  12876. visibility:hidden;
  12877. }
  12878. #u12564_div {
  12879. border-width:0px;
  12880. position:absolute;
  12881. left:0px;
  12882. top:0px;
  12883. width:217px;
  12884. height:21px;
  12885. background:inherit;
  12886. background-color:rgba(255, 255, 255, 0);
  12887. border:none;
  12888. border-radius:0px;
  12889. -moz-box-shadow:none;
  12890. -webkit-box-shadow:none;
  12891. box-shadow:none;
  12892. font-family:'PingFangSC-Semibold', 'PingFang SC Semibold', 'PingFang SC', sans-serif;
  12893. font-weight:650;
  12894. font-style:normal;
  12895. font-size:18px;
  12896. color:#000000;
  12897. line-height:22px;
  12898. }
  12899. #u12564 {
  12900. border-width:0px;
  12901. position:absolute;
  12902. left:2015px;
  12903. top:393px;
  12904. width:217px;
  12905. height:21px;
  12906. display:flex;
  12907. font-family:'PingFangSC-Semibold', 'PingFang SC Semibold', 'PingFang SC', sans-serif;
  12908. font-weight:650;
  12909. font-style:normal;
  12910. font-size:18px;
  12911. color:#000000;
  12912. line-height:22px;
  12913. }
  12914. #u12564 .text {
  12915. position:absolute;
  12916. align-self:flex-start;
  12917. padding:0px 0px 0px 0px;
  12918. box-sizing:border-box;
  12919. width:100%;
  12920. }
  12921. #u12564_text {
  12922. border-width:0px;
  12923. white-space:nowrap;
  12924. text-transform:none;
  12925. }
  12926. #u12565_div {
  12927. border-width:0px;
  12928. position:absolute;
  12929. left:0px;
  12930. top:0px;
  12931. width:61px;
  12932. height:32px;
  12933. background:inherit;
  12934. background-color:rgba(24, 144, 255, 1);
  12935. border:none;
  12936. border-radius:4px;
  12937. -moz-box-shadow:none;
  12938. -webkit-box-shadow:none;
  12939. box-shadow:none;
  12940. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  12941. font-weight:400;
  12942. font-style:normal;
  12943. font-size:14px;
  12944. color:#FFFFFF;
  12945. }
  12946. #u12565 {
  12947. border-width:0px;
  12948. position:absolute;
  12949. left:2254px;
  12950. top:480px;
  12951. width:61px;
  12952. height:32px;
  12953. display:flex;
  12954. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  12955. font-weight:400;
  12956. font-style:normal;
  12957. font-size:14px;
  12958. color:#FFFFFF;
  12959. }
  12960. #u12565 .text {
  12961. position:absolute;
  12962. align-self:center;
  12963. padding:2px 16px 2px 16px;
  12964. box-sizing:border-box;
  12965. width:100%;
  12966. }
  12967. #u12565_text {
  12968. border-width:0px;
  12969. white-space:nowrap;
  12970. text-transform:none;
  12971. }
  12972. #u12566_img {
  12973. border-width:0px;
  12974. position:absolute;
  12975. left:0px;
  12976. top:0px;
  12977. width:20px;
  12978. height:20px;
  12979. }
  12980. #u12566 {
  12981. border-width:0px;
  12982. position:absolute;
  12983. left:1984px;
  12984. top:397px;
  12985. width:20px;
  12986. height:20px;
  12987. display:flex;
  12988. }
  12989. #u12566 .text {
  12990. position:absolute;
  12991. align-self:center;
  12992. padding:2px 2px 2px 2px;
  12993. box-sizing:border-box;
  12994. width:100%;
  12995. }
  12996. #u12566_text {
  12997. border-width:0px;
  12998. word-wrap:break-word;
  12999. text-transform:none;
  13000. visibility:hidden;
  13001. }
  13002. #u12567_div {
  13003. border-width:0px;
  13004. position:absolute;
  13005. left:0px;
  13006. top:0px;
  13007. width:300px;
  13008. height:44px;
  13009. background:inherit;
  13010. background-color:rgba(255, 255, 255, 0);
  13011. border:none;
  13012. border-radius:0px;
  13013. -moz-box-shadow:none;
  13014. -webkit-box-shadow:none;
  13015. box-shadow:none;
  13016. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  13017. font-weight:400;
  13018. font-style:normal;
  13019. font-size:14px;
  13020. color:#7F7F7F;
  13021. line-height:22px;
  13022. }
  13023. #u12567 {
  13024. border-width:0px;
  13025. position:absolute;
  13026. left:2015px;
  13027. top:427px;
  13028. width:300px;
  13029. height:44px;
  13030. display:flex;
  13031. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  13032. font-weight:400;
  13033. font-style:normal;
  13034. font-size:14px;
  13035. color:#7F7F7F;
  13036. line-height:22px;
  13037. }
  13038. #u12567 .text {
  13039. position:absolute;
  13040. align-self:flex-start;
  13041. padding:0px 0px 0px 0px;
  13042. box-sizing:border-box;
  13043. width:100%;
  13044. }
  13045. #u12567_text {
  13046. border-width:0px;
  13047. word-wrap:break-word;
  13048. text-transform:none;
  13049. }
  13050. #u12568_div {
  13051. border-width:0px;
  13052. position:absolute;
  13053. left:0px;
  13054. top:0px;
  13055. width:66px;
  13056. height:32px;
  13057. background:inherit;
  13058. background-color:rgba(255, 255, 255, 1);
  13059. box-sizing:border-box;
  13060. border-width:1px;
  13061. border-style:solid;
  13062. border-color:rgba(217, 217, 217, 1);
  13063. border-radius:4px;
  13064. -moz-box-shadow:none;
  13065. -webkit-box-shadow:none;
  13066. box-shadow:none;
  13067. font-family:'Microsoft YaHei', sans-serif;
  13068. font-weight:400;
  13069. font-style:normal;
  13070. font-size:14px;
  13071. color:rgba(0, 0, 0, 0.647058823529412);
  13072. line-height:21px;
  13073. }
  13074. #u12568 {
  13075. border-width:0px;
  13076. position:absolute;
  13077. left:2171px;
  13078. top:480px;
  13079. width:66px;
  13080. height:32px;
  13081. display:flex;
  13082. font-family:'Microsoft YaHei', sans-serif;
  13083. font-weight:400;
  13084. font-style:normal;
  13085. font-size:14px;
  13086. color:rgba(0, 0, 0, 0.647058823529412);
  13087. line-height:21px;
  13088. }
  13089. #u12568 .text {
  13090. position:absolute;
  13091. align-self:center;
  13092. padding:2px 16px 2px 16px;
  13093. box-sizing:border-box;
  13094. width:100%;
  13095. }
  13096. #u12568_text {
  13097. border-width:0px;
  13098. white-space:nowrap;
  13099. text-transform:none;
  13100. }
  13101. #u12569 {
  13102. border-width:0px;
  13103. position:absolute;
  13104. left:0px;
  13105. top:0px;
  13106. width:0px;
  13107. height:0px;
  13108. }
  13109. #u12570_div {
  13110. border-width:0px;
  13111. position:absolute;
  13112. left:0px;
  13113. top:0px;
  13114. width:60px;
  13115. height:30px;
  13116. background:inherit;
  13117. background-color:rgba(24, 144, 255, 1);
  13118. border:none;
  13119. border-radius:4px;
  13120. -moz-box-shadow:none;
  13121. -webkit-box-shadow:none;
  13122. box-shadow:none;
  13123. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  13124. font-weight:400;
  13125. font-style:normal;
  13126. font-size:14px;
  13127. color:#FFFFFF;
  13128. }
  13129. #u12570 {
  13130. border-width:0px;
  13131. position:absolute;
  13132. left:1161px;
  13133. top:240px;
  13134. width:60px;
  13135. height:30px;
  13136. display:flex;
  13137. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  13138. font-weight:400;
  13139. font-style:normal;
  13140. font-size:14px;
  13141. color:#FFFFFF;
  13142. }
  13143. #u12570 .text {
  13144. position:absolute;
  13145. align-self:center;
  13146. padding:2px 2px 2px 2px;
  13147. box-sizing:border-box;
  13148. width:100%;
  13149. }
  13150. #u12570_text {
  13151. border-width:0px;
  13152. word-wrap:break-word;
  13153. text-transform:none;
  13154. }
  13155. #u12571_div {
  13156. border-width:0px;
  13157. position:absolute;
  13158. left:0px;
  13159. top:0px;
  13160. width:60px;
  13161. height:30px;
  13162. background:inherit;
  13163. background-color:rgba(255, 255, 255, 1);
  13164. box-sizing:border-box;
  13165. border-width:1px;
  13166. border-style:solid;
  13167. border-color:rgba(170, 170, 170, 1);
  13168. border-radius:4px;
  13169. -moz-box-shadow:none;
  13170. -webkit-box-shadow:none;
  13171. box-shadow:none;
  13172. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  13173. font-weight:400;
  13174. font-style:normal;
  13175. font-size:14px;
  13176. }
  13177. #u12571 {
  13178. border-width:0px;
  13179. position:absolute;
  13180. left:1231px;
  13181. top:240px;
  13182. width:60px;
  13183. height:30px;
  13184. display:flex;
  13185. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  13186. font-weight:400;
  13187. font-style:normal;
  13188. font-size:14px;
  13189. }
  13190. #u12571 .text {
  13191. position:absolute;
  13192. align-self:center;
  13193. padding:2px 2px 2px 2px;
  13194. box-sizing:border-box;
  13195. width:100%;
  13196. }
  13197. #u12571_text {
  13198. border-width:0px;
  13199. word-wrap:break-word;
  13200. text-transform:none;
  13201. }
  13202. #u12572 {
  13203. border-width:0px;
  13204. position:absolute;
  13205. left:0px;
  13206. top:0px;
  13207. width:0px;
  13208. height:0px;
  13209. }
  13210. #u12573_div {
  13211. border-width:0px;
  13212. position:absolute;
  13213. left:0px;
  13214. top:0px;
  13215. width:140px;
  13216. height:30px;
  13217. background:inherit;
  13218. background-color:rgba(255, 255, 255, 1);
  13219. box-sizing:border-box;
  13220. border-width:1px;
  13221. border-style:solid;
  13222. border-color:rgba(215, 215, 215, 1);
  13223. border-radius:4px;
  13224. -moz-box-shadow:none;
  13225. -webkit-box-shadow:none;
  13226. box-shadow:none;
  13227. font-size:14px;
  13228. }
  13229. #u12573 {
  13230. border-width:0px;
  13231. position:absolute;
  13232. left:711px;
  13233. top:199px;
  13234. width:140px;
  13235. height:30px;
  13236. display:flex;
  13237. font-size:14px;
  13238. }
  13239. #u12573 .text {
  13240. position:absolute;
  13241. align-self:center;
  13242. padding:2px 2px 2px 2px;
  13243. box-sizing:border-box;
  13244. width:100%;
  13245. }
  13246. #u12573_text {
  13247. border-width:0px;
  13248. word-wrap:break-word;
  13249. text-transform:none;
  13250. visibility:hidden;
  13251. }
  13252. #u12574_input {
  13253. position:absolute;
  13254. left:0px;
  13255. top:0px;
  13256. width:134px;
  13257. height:23px;
  13258. padding:2px 2px 2px 2px;
  13259. font-family:'ArialMT', 'Arial', sans-serif;
  13260. font-weight:400;
  13261. font-style:normal;
  13262. font-size:14px;
  13263. letter-spacing:normal;
  13264. color:#AAAAAA;
  13265. vertical-align:none;
  13266. text-align:left;
  13267. text-transform:none;
  13268. background-color:transparent;
  13269. border-color:transparent;
  13270. }
  13271. #u12574_input.disabled {
  13272. position:absolute;
  13273. left:0px;
  13274. top:0px;
  13275. width:134px;
  13276. height:23px;
  13277. padding:2px 2px 2px 2px;
  13278. font-family:'ArialMT', 'Arial', sans-serif;
  13279. font-weight:400;
  13280. font-style:normal;
  13281. font-size:14px;
  13282. letter-spacing:normal;
  13283. color:#AAAAAA;
  13284. vertical-align:none;
  13285. text-align:left;
  13286. text-transform:none;
  13287. background-color:transparent;
  13288. border-color:transparent;
  13289. }
  13290. #u12574_div {
  13291. border-width:0px;
  13292. position:absolute;
  13293. left:0px;
  13294. top:0px;
  13295. width:134px;
  13296. height:23px;
  13297. background:inherit;
  13298. background-color:rgba(255, 255, 255, 1);
  13299. border:none;
  13300. border-radius:0px;
  13301. -moz-box-shadow:none;
  13302. -webkit-box-shadow:none;
  13303. box-shadow:none;
  13304. font-size:14px;
  13305. color:#AAAAAA;
  13306. }
  13307. #u12574 {
  13308. border-width:0px;
  13309. position:absolute;
  13310. left:715px;
  13311. top:201px;
  13312. width:134px;
  13313. height:23px;
  13314. display:flex;
  13315. font-size:14px;
  13316. color:#AAAAAA;
  13317. }
  13318. #u12574 .text {
  13319. position:absolute;
  13320. align-self:flex-start;
  13321. padding:2px 2px 2px 2px;
  13322. box-sizing:border-box;
  13323. width:100%;
  13324. }
  13325. #u12574_div.disabled {
  13326. border-width:0px;
  13327. position:absolute;
  13328. left:0px;
  13329. top:0px;
  13330. width:134px;
  13331. height:23px;
  13332. background:inherit;
  13333. background-color:rgba(240, 240, 240, 1);
  13334. border:none;
  13335. border-radius:0px;
  13336. -moz-box-shadow:none;
  13337. -webkit-box-shadow:none;
  13338. box-shadow:none;
  13339. font-size:14px;
  13340. color:#AAAAAA;
  13341. }
  13342. #u12574.disabled {
  13343. }
  13344. .u12574_input_option {
  13345. font-size:14px;
  13346. }
  13347. #u12575 {
  13348. border-width:0px;
  13349. position:absolute;
  13350. left:0px;
  13351. top:0px;
  13352. width:0px;
  13353. height:0px;
  13354. }
  13355. #u12576_div {
  13356. border-width:0px;
  13357. position:absolute;
  13358. left:0px;
  13359. top:0px;
  13360. width:140px;
  13361. height:30px;
  13362. background:inherit;
  13363. background-color:rgba(255, 255, 255, 1);
  13364. box-sizing:border-box;
  13365. border-width:1px;
  13366. border-style:solid;
  13367. border-color:rgba(201, 201, 201, 1);
  13368. border-radius:4px;
  13369. -moz-box-shadow:none;
  13370. -webkit-box-shadow:none;
  13371. box-shadow:none;
  13372. font-family:'Microsoft YaHei', sans-serif;
  13373. font-weight:400;
  13374. font-style:normal;
  13375. font-size:14px;
  13376. color:#CCCCCC;
  13377. text-align:left;
  13378. }
  13379. #u12576 {
  13380. border-width:0px;
  13381. position:absolute;
  13382. left:1011px;
  13383. top:239px;
  13384. width:140px;
  13385. height:30px;
  13386. display:flex;
  13387. font-family:'Microsoft YaHei', sans-serif;
  13388. font-weight:400;
  13389. font-style:normal;
  13390. font-size:14px;
  13391. color:#CCCCCC;
  13392. text-align:left;
  13393. }
  13394. #u12576 .text {
  13395. position:absolute;
  13396. align-self:center;
  13397. padding:2px 8px 2px 8px;
  13398. box-sizing:border-box;
  13399. width:100%;
  13400. }
  13401. #u12576_text {
  13402. border-width:0px;
  13403. word-wrap:break-word;
  13404. text-transform:none;
  13405. visibility:hidden;
  13406. }
  13407. #u12577_input {
  13408. position:absolute;
  13409. left:0px;
  13410. top:0px;
  13411. width:127px;
  13412. height:25px;
  13413. padding:2px 2px 2px 2px;
  13414. font-family:'Microsoft YaHei', sans-serif;
  13415. font-weight:400;
  13416. font-style:normal;
  13417. font-size:10px;
  13418. letter-spacing:normal;
  13419. color:#000000;
  13420. vertical-align:none;
  13421. text-align:left;
  13422. text-transform:none;
  13423. background-color:transparent;
  13424. border-color:transparent;
  13425. }
  13426. #u12577_input.disabled {
  13427. position:absolute;
  13428. left:0px;
  13429. top:0px;
  13430. width:127px;
  13431. height:25px;
  13432. padding:2px 2px 2px 2px;
  13433. font-family:'Microsoft YaHei', sans-serif;
  13434. font-weight:400;
  13435. font-style:normal;
  13436. font-size:10px;
  13437. letter-spacing:normal;
  13438. color:#000000;
  13439. vertical-align:none;
  13440. text-align:left;
  13441. text-transform:none;
  13442. background-color:transparent;
  13443. border-color:transparent;
  13444. }
  13445. #u12577_div {
  13446. border-width:0px;
  13447. position:absolute;
  13448. left:0px;
  13449. top:0px;
  13450. width:127px;
  13451. height:25px;
  13452. background:inherit;
  13453. background-color:rgba(255, 255, 255, 1);
  13454. border:none;
  13455. border-radius:0px;
  13456. -moz-box-shadow:none;
  13457. -webkit-box-shadow:none;
  13458. box-shadow:none;
  13459. font-family:'Microsoft YaHei', sans-serif;
  13460. font-weight:400;
  13461. font-style:normal;
  13462. font-size:10px;
  13463. }
  13464. #u12577 {
  13465. border-width:0px;
  13466. position:absolute;
  13467. left:1019px;
  13468. top:240px;
  13469. width:127px;
  13470. height:25px;
  13471. display:flex;
  13472. font-family:'Microsoft YaHei', sans-serif;
  13473. font-weight:400;
  13474. font-style:normal;
  13475. font-size:10px;
  13476. }
  13477. #u12577 .text {
  13478. position:absolute;
  13479. align-self:center;
  13480. padding:2px 2px 2px 2px;
  13481. box-sizing:border-box;
  13482. width:100%;
  13483. }
  13484. #u12577_div.disabled {
  13485. border-width:0px;
  13486. position:absolute;
  13487. left:0px;
  13488. top:0px;
  13489. width:127px;
  13490. height:25px;
  13491. background:inherit;
  13492. background-color:rgba(240, 240, 240, 1);
  13493. border:none;
  13494. border-radius:0px;
  13495. -moz-box-shadow:none;
  13496. -webkit-box-shadow:none;
  13497. box-shadow:none;
  13498. font-family:'Microsoft YaHei', sans-serif;
  13499. font-weight:400;
  13500. font-style:normal;
  13501. font-size:10px;
  13502. }
  13503. #u12577.disabled {
  13504. }
  13505. #u12578 {
  13506. border-width:0px;
  13507. position:absolute;
  13508. left:0px;
  13509. top:0px;
  13510. width:0px;
  13511. height:0px;
  13512. }
  13513. #u12579_div {
  13514. border-width:0px;
  13515. position:absolute;
  13516. left:0px;
  13517. top:0px;
  13518. width:140px;
  13519. height:30px;
  13520. background:inherit;
  13521. background-color:rgba(242, 242, 242, 1);
  13522. box-sizing:border-box;
  13523. border-width:1px;
  13524. border-style:solid;
  13525. border-color:rgba(215, 215, 215, 1);
  13526. border-radius:4px;
  13527. -moz-box-shadow:none;
  13528. -webkit-box-shadow:none;
  13529. box-shadow:none;
  13530. font-size:14px;
  13531. }
  13532. #u12579 {
  13533. border-width:0px;
  13534. position:absolute;
  13535. left:563px;
  13536. top:199px;
  13537. width:140px;
  13538. height:30px;
  13539. display:flex;
  13540. font-size:14px;
  13541. }
  13542. #u12579 .text {
  13543. position:absolute;
  13544. align-self:center;
  13545. padding:2px 2px 2px 2px;
  13546. box-sizing:border-box;
  13547. width:100%;
  13548. }
  13549. #u12579_text {
  13550. border-width:0px;
  13551. word-wrap:break-word;
  13552. text-transform:none;
  13553. visibility:hidden;
  13554. }
  13555. #u12580_input {
  13556. position:absolute;
  13557. left:0px;
  13558. top:0px;
  13559. width:134px;
  13560. height:23px;
  13561. padding:2px 2px 2px 2px;
  13562. font-family:'ArialMT', 'Arial', sans-serif;
  13563. font-weight:400;
  13564. font-style:normal;
  13565. font-size:14px;
  13566. letter-spacing:normal;
  13567. color:#AAAAAA;
  13568. vertical-align:none;
  13569. text-align:left;
  13570. text-transform:none;
  13571. background-color:transparent;
  13572. border-color:transparent;
  13573. }
  13574. #u12580_input.disabled {
  13575. position:absolute;
  13576. left:0px;
  13577. top:0px;
  13578. width:134px;
  13579. height:23px;
  13580. padding:2px 2px 2px 2px;
  13581. font-family:'ArialMT', 'Arial', sans-serif;
  13582. font-weight:400;
  13583. font-style:normal;
  13584. font-size:14px;
  13585. letter-spacing:normal;
  13586. color:#AAAAAA;
  13587. vertical-align:none;
  13588. text-align:left;
  13589. text-transform:none;
  13590. background-color:transparent;
  13591. border-color:transparent;
  13592. }
  13593. #u12580_div {
  13594. border-width:0px;
  13595. position:absolute;
  13596. left:0px;
  13597. top:0px;
  13598. width:134px;
  13599. height:23px;
  13600. background:inherit;
  13601. background-color:rgba(242, 242, 242, 1);
  13602. border:none;
  13603. border-radius:0px;
  13604. -moz-box-shadow:none;
  13605. -webkit-box-shadow:none;
  13606. box-shadow:none;
  13607. font-size:14px;
  13608. color:#AAAAAA;
  13609. }
  13610. #u12580 {
  13611. border-width:0px;
  13612. position:absolute;
  13613. left:567px;
  13614. top:201px;
  13615. width:134px;
  13616. height:23px;
  13617. display:flex;
  13618. font-size:14px;
  13619. color:#AAAAAA;
  13620. }
  13621. #u12580 .text {
  13622. position:absolute;
  13623. align-self:flex-start;
  13624. padding:2px 2px 2px 2px;
  13625. box-sizing:border-box;
  13626. width:100%;
  13627. }
  13628. #u12580_div.disabled {
  13629. border-width:0px;
  13630. position:absolute;
  13631. left:0px;
  13632. top:0px;
  13633. width:134px;
  13634. height:23px;
  13635. background:inherit;
  13636. background-color:rgba(240, 240, 240, 1);
  13637. border:none;
  13638. border-radius:0px;
  13639. -moz-box-shadow:none;
  13640. -webkit-box-shadow:none;
  13641. box-shadow:none;
  13642. font-size:14px;
  13643. color:#AAAAAA;
  13644. }
  13645. #u12580.disabled {
  13646. }
  13647. .u12580_input_option {
  13648. font-size:14px;
  13649. }
  13650. #u12581 {
  13651. border-width:0px;
  13652. position:absolute;
  13653. left:0px;
  13654. top:0px;
  13655. width:0px;
  13656. height:0px;
  13657. }
  13658. #u12582_div {
  13659. border-width:0px;
  13660. position:absolute;
  13661. left:0px;
  13662. top:0px;
  13663. width:140px;
  13664. height:30px;
  13665. background:inherit;
  13666. background-color:rgba(255, 255, 255, 1);
  13667. box-sizing:border-box;
  13668. border-width:1px;
  13669. border-style:solid;
  13670. border-color:rgba(215, 215, 215, 1);
  13671. border-radius:4px;
  13672. -moz-box-shadow:none;
  13673. -webkit-box-shadow:none;
  13674. box-shadow:none;
  13675. font-size:14px;
  13676. }
  13677. #u12582 {
  13678. border-width:0px;
  13679. position:absolute;
  13680. left:861px;
  13681. top:199px;
  13682. width:140px;
  13683. height:30px;
  13684. display:flex;
  13685. font-size:14px;
  13686. }
  13687. #u12582 .text {
  13688. position:absolute;
  13689. align-self:center;
  13690. padding:2px 2px 2px 2px;
  13691. box-sizing:border-box;
  13692. width:100%;
  13693. }
  13694. #u12582_text {
  13695. border-width:0px;
  13696. word-wrap:break-word;
  13697. text-transform:none;
  13698. visibility:hidden;
  13699. }
  13700. #u12583_input {
  13701. position:absolute;
  13702. left:0px;
  13703. top:0px;
  13704. width:134px;
  13705. height:23px;
  13706. padding:2px 2px 2px 2px;
  13707. font-family:'ArialMT', 'Arial', sans-serif;
  13708. font-weight:400;
  13709. font-style:normal;
  13710. font-size:14px;
  13711. letter-spacing:normal;
  13712. color:#AAAAAA;
  13713. vertical-align:none;
  13714. text-align:left;
  13715. text-transform:none;
  13716. background-color:transparent;
  13717. border-color:transparent;
  13718. }
  13719. #u12583_input.disabled {
  13720. position:absolute;
  13721. left:0px;
  13722. top:0px;
  13723. width:134px;
  13724. height:23px;
  13725. padding:2px 2px 2px 2px;
  13726. font-family:'ArialMT', 'Arial', sans-serif;
  13727. font-weight:400;
  13728. font-style:normal;
  13729. font-size:14px;
  13730. letter-spacing:normal;
  13731. color:#AAAAAA;
  13732. vertical-align:none;
  13733. text-align:left;
  13734. text-transform:none;
  13735. background-color:transparent;
  13736. border-color:transparent;
  13737. }
  13738. #u12583_div {
  13739. border-width:0px;
  13740. position:absolute;
  13741. left:0px;
  13742. top:0px;
  13743. width:134px;
  13744. height:23px;
  13745. background:inherit;
  13746. background-color:rgba(255, 255, 255, 1);
  13747. border:none;
  13748. border-radius:0px;
  13749. -moz-box-shadow:none;
  13750. -webkit-box-shadow:none;
  13751. box-shadow:none;
  13752. font-size:14px;
  13753. color:#AAAAAA;
  13754. }
  13755. #u12583 {
  13756. border-width:0px;
  13757. position:absolute;
  13758. left:865px;
  13759. top:201px;
  13760. width:134px;
  13761. height:23px;
  13762. display:flex;
  13763. font-size:14px;
  13764. color:#AAAAAA;
  13765. }
  13766. #u12583 .text {
  13767. position:absolute;
  13768. align-self:flex-start;
  13769. padding:2px 2px 2px 2px;
  13770. box-sizing:border-box;
  13771. width:100%;
  13772. }
  13773. #u12583_div.disabled {
  13774. border-width:0px;
  13775. position:absolute;
  13776. left:0px;
  13777. top:0px;
  13778. width:134px;
  13779. height:23px;
  13780. background:inherit;
  13781. background-color:rgba(240, 240, 240, 1);
  13782. border:none;
  13783. border-radius:0px;
  13784. -moz-box-shadow:none;
  13785. -webkit-box-shadow:none;
  13786. box-shadow:none;
  13787. font-size:14px;
  13788. color:#AAAAAA;
  13789. }
  13790. #u12583.disabled {
  13791. }
  13792. .u12583_input_option {
  13793. font-size:14px;
  13794. }
  13795. #u12584 {
  13796. border-width:0px;
  13797. position:absolute;
  13798. left:0px;
  13799. top:0px;
  13800. width:0px;
  13801. height:0px;
  13802. }
  13803. #u12585_div {
  13804. border-width:0px;
  13805. position:absolute;
  13806. left:0px;
  13807. top:0px;
  13808. width:140px;
  13809. height:30px;
  13810. background:inherit;
  13811. background-color:rgba(255, 255, 255, 1);
  13812. box-sizing:border-box;
  13813. border-width:1px;
  13814. border-style:solid;
  13815. border-color:rgba(215, 215, 215, 1);
  13816. border-radius:4px;
  13817. -moz-box-shadow:none;
  13818. -webkit-box-shadow:none;
  13819. box-shadow:none;
  13820. font-size:14px;
  13821. }
  13822. #u12585 {
  13823. border-width:0px;
  13824. position:absolute;
  13825. left:1011px;
  13826. top:199px;
  13827. width:140px;
  13828. height:30px;
  13829. display:flex;
  13830. font-size:14px;
  13831. }
  13832. #u12585 .text {
  13833. position:absolute;
  13834. align-self:center;
  13835. padding:2px 2px 2px 2px;
  13836. box-sizing:border-box;
  13837. width:100%;
  13838. }
  13839. #u12585_text {
  13840. border-width:0px;
  13841. word-wrap:break-word;
  13842. text-transform:none;
  13843. visibility:hidden;
  13844. }
  13845. #u12586_input {
  13846. position:absolute;
  13847. left:0px;
  13848. top:0px;
  13849. width:134px;
  13850. height:23px;
  13851. padding:2px 2px 2px 2px;
  13852. font-family:'ArialMT', 'Arial', sans-serif;
  13853. font-weight:400;
  13854. font-style:normal;
  13855. font-size:14px;
  13856. letter-spacing:normal;
  13857. color:#AAAAAA;
  13858. vertical-align:none;
  13859. text-align:left;
  13860. text-transform:none;
  13861. background-color:transparent;
  13862. border-color:transparent;
  13863. }
  13864. #u12586_input.disabled {
  13865. position:absolute;
  13866. left:0px;
  13867. top:0px;
  13868. width:134px;
  13869. height:23px;
  13870. padding:2px 2px 2px 2px;
  13871. font-family:'ArialMT', 'Arial', sans-serif;
  13872. font-weight:400;
  13873. font-style:normal;
  13874. font-size:14px;
  13875. letter-spacing:normal;
  13876. color:#AAAAAA;
  13877. vertical-align:none;
  13878. text-align:left;
  13879. text-transform:none;
  13880. background-color:transparent;
  13881. border-color:transparent;
  13882. }
  13883. #u12586_div {
  13884. border-width:0px;
  13885. position:absolute;
  13886. left:0px;
  13887. top:0px;
  13888. width:134px;
  13889. height:23px;
  13890. background:inherit;
  13891. background-color:rgba(255, 255, 255, 1);
  13892. border:none;
  13893. border-radius:0px;
  13894. -moz-box-shadow:none;
  13895. -webkit-box-shadow:none;
  13896. box-shadow:none;
  13897. font-size:14px;
  13898. color:#AAAAAA;
  13899. }
  13900. #u12586 {
  13901. border-width:0px;
  13902. position:absolute;
  13903. left:1015px;
  13904. top:201px;
  13905. width:134px;
  13906. height:23px;
  13907. display:flex;
  13908. font-size:14px;
  13909. color:#AAAAAA;
  13910. }
  13911. #u12586 .text {
  13912. position:absolute;
  13913. align-self:flex-start;
  13914. padding:2px 2px 2px 2px;
  13915. box-sizing:border-box;
  13916. width:100%;
  13917. }
  13918. #u12586_div.disabled {
  13919. border-width:0px;
  13920. position:absolute;
  13921. left:0px;
  13922. top:0px;
  13923. width:134px;
  13924. height:23px;
  13925. background:inherit;
  13926. background-color:rgba(240, 240, 240, 1);
  13927. border:none;
  13928. border-radius:0px;
  13929. -moz-box-shadow:none;
  13930. -webkit-box-shadow:none;
  13931. box-shadow:none;
  13932. font-size:14px;
  13933. color:#AAAAAA;
  13934. }
  13935. #u12586.disabled {
  13936. }
  13937. .u12586_input_option {
  13938. font-size:14px;
  13939. }