styles.css 175 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145114611471148114911501151115211531154115511561157115811591160116111621163116411651166116711681169117011711172117311741175117611771178117911801181118211831184118511861187118811891190119111921193119411951196119711981199120012011202120312041205120612071208120912101211121212131214121512161217121812191220122112221223122412251226122712281229123012311232123312341235123612371238123912401241124212431244124512461247124812491250125112521253125412551256125712581259126012611262126312641265126612671268126912701271127212731274127512761277127812791280128112821283128412851286128712881289129012911292129312941295129612971298129913001301130213031304130513061307130813091310131113121313131413151316131713181319132013211322132313241325132613271328132913301331133213331334133513361337133813391340134113421343134413451346134713481349135013511352135313541355135613571358135913601361136213631364136513661367136813691370137113721373137413751376137713781379138013811382138313841385138613871388138913901391139213931394139513961397139813991400140114021403140414051406140714081409141014111412141314141415141614171418141914201421142214231424142514261427142814291430143114321433143414351436143714381439144014411442144314441445144614471448144914501451145214531454145514561457145814591460146114621463146414651466146714681469147014711472147314741475147614771478147914801481148214831484148514861487148814891490149114921493149414951496149714981499150015011502150315041505150615071508150915101511151215131514151515161517151815191520152115221523152415251526152715281529153015311532153315341535153615371538153915401541154215431544154515461547154815491550155115521553155415551556155715581559156015611562156315641565156615671568156915701571157215731574157515761577157815791580158115821583158415851586158715881589159015911592159315941595159615971598159916001601160216031604160516061607160816091610161116121613161416151616161716181619162016211622162316241625162616271628162916301631163216331634163516361637163816391640164116421643164416451646164716481649165016511652165316541655165616571658165916601661166216631664166516661667166816691670167116721673167416751676167716781679168016811682168316841685168616871688168916901691169216931694169516961697169816991700170117021703170417051706170717081709171017111712171317141715171617171718171917201721172217231724172517261727172817291730173117321733173417351736173717381739174017411742174317441745174617471748174917501751175217531754175517561757175817591760176117621763176417651766176717681769177017711772177317741775177617771778177917801781178217831784178517861787178817891790179117921793179417951796179717981799180018011802180318041805180618071808180918101811181218131814181518161817181818191820182118221823182418251826182718281829183018311832183318341835183618371838183918401841184218431844184518461847184818491850185118521853185418551856185718581859186018611862186318641865186618671868186918701871187218731874187518761877187818791880188118821883188418851886188718881889189018911892189318941895189618971898189919001901190219031904190519061907190819091910191119121913191419151916191719181919192019211922192319241925192619271928192919301931193219331934193519361937193819391940194119421943194419451946194719481949195019511952195319541955195619571958195919601961196219631964196519661967196819691970197119721973197419751976197719781979198019811982198319841985198619871988198919901991199219931994199519961997199819992000200120022003200420052006200720082009201020112012201320142015201620172018201920202021202220232024202520262027202820292030203120322033203420352036203720382039204020412042204320442045204620472048204920502051205220532054205520562057205820592060206120622063206420652066206720682069207020712072207320742075207620772078207920802081208220832084208520862087208820892090209120922093209420952096209720982099210021012102210321042105210621072108210921102111211221132114211521162117211821192120212121222123212421252126212721282129213021312132213321342135213621372138213921402141214221432144214521462147214821492150215121522153215421552156215721582159216021612162216321642165216621672168216921702171217221732174217521762177217821792180218121822183218421852186218721882189219021912192219321942195219621972198219922002201220222032204220522062207220822092210221122122213221422152216221722182219222022212222222322242225222622272228222922302231223222332234223522362237223822392240224122422243224422452246224722482249225022512252225322542255225622572258225922602261226222632264226522662267226822692270227122722273227422752276227722782279228022812282228322842285228622872288228922902291229222932294229522962297229822992300230123022303230423052306230723082309231023112312231323142315231623172318231923202321232223232324232523262327232823292330233123322333233423352336233723382339234023412342234323442345234623472348234923502351235223532354235523562357235823592360236123622363236423652366236723682369237023712372237323742375237623772378237923802381238223832384238523862387238823892390239123922393239423952396239723982399240024012402240324042405240624072408240924102411241224132414241524162417241824192420242124222423242424252426242724282429243024312432243324342435243624372438243924402441244224432444244524462447244824492450245124522453245424552456245724582459246024612462246324642465246624672468246924702471247224732474247524762477247824792480248124822483248424852486248724882489249024912492249324942495249624972498249925002501250225032504250525062507250825092510251125122513251425152516251725182519252025212522252325242525252625272528252925302531253225332534253525362537253825392540254125422543254425452546254725482549255025512552255325542555255625572558255925602561256225632564256525662567256825692570257125722573257425752576257725782579258025812582258325842585258625872588258925902591259225932594259525962597259825992600260126022603260426052606260726082609261026112612261326142615261626172618261926202621262226232624262526262627262826292630263126322633263426352636263726382639264026412642264326442645264626472648264926502651265226532654265526562657265826592660266126622663266426652666266726682669267026712672267326742675267626772678267926802681268226832684268526862687268826892690269126922693269426952696269726982699270027012702270327042705270627072708270927102711271227132714271527162717271827192720272127222723272427252726272727282729273027312732273327342735273627372738273927402741274227432744274527462747274827492750275127522753275427552756275727582759276027612762276327642765276627672768276927702771277227732774277527762777277827792780278127822783278427852786278727882789279027912792279327942795279627972798279928002801280228032804280528062807280828092810281128122813281428152816281728182819282028212822282328242825282628272828282928302831283228332834283528362837283828392840284128422843284428452846284728482849285028512852285328542855285628572858285928602861286228632864286528662867286828692870287128722873287428752876287728782879288028812882288328842885288628872888288928902891289228932894289528962897289828992900290129022903290429052906290729082909291029112912291329142915291629172918291929202921292229232924292529262927292829292930293129322933293429352936293729382939294029412942294329442945294629472948294929502951295229532954295529562957295829592960296129622963296429652966296729682969297029712972297329742975297629772978297929802981298229832984298529862987298829892990299129922993299429952996299729982999300030013002300330043005300630073008300930103011301230133014301530163017301830193020302130223023302430253026302730283029303030313032303330343035303630373038303930403041304230433044304530463047304830493050305130523053305430553056305730583059306030613062306330643065306630673068306930703071307230733074307530763077307830793080308130823083308430853086308730883089309030913092309330943095309630973098309931003101310231033104310531063107310831093110311131123113311431153116311731183119312031213122312331243125312631273128312931303131313231333134313531363137313831393140314131423143314431453146314731483149315031513152315331543155315631573158315931603161316231633164316531663167316831693170317131723173317431753176317731783179318031813182318331843185318631873188318931903191319231933194319531963197319831993200320132023203320432053206320732083209321032113212321332143215321632173218321932203221322232233224322532263227322832293230323132323233323432353236323732383239324032413242324332443245324632473248324932503251325232533254325532563257325832593260326132623263326432653266326732683269327032713272327332743275327632773278327932803281328232833284328532863287328832893290329132923293329432953296329732983299330033013302330333043305330633073308330933103311331233133314331533163317331833193320332133223323332433253326332733283329333033313332333333343335333633373338333933403341334233433344334533463347334833493350335133523353335433553356335733583359336033613362336333643365336633673368336933703371337233733374337533763377337833793380338133823383338433853386338733883389339033913392339333943395339633973398339934003401340234033404340534063407340834093410341134123413341434153416341734183419342034213422342334243425342634273428342934303431343234333434343534363437343834393440344134423443344434453446344734483449345034513452345334543455345634573458345934603461346234633464346534663467346834693470347134723473347434753476347734783479348034813482348334843485348634873488348934903491349234933494349534963497349834993500350135023503350435053506350735083509351035113512351335143515351635173518351935203521352235233524352535263527352835293530353135323533353435353536353735383539354035413542354335443545354635473548354935503551355235533554355535563557355835593560356135623563356435653566356735683569357035713572357335743575357635773578357935803581358235833584358535863587358835893590359135923593359435953596359735983599360036013602360336043605360636073608360936103611361236133614361536163617361836193620362136223623362436253626362736283629363036313632363336343635363636373638363936403641364236433644364536463647364836493650365136523653365436553656365736583659366036613662366336643665366636673668366936703671367236733674367536763677367836793680368136823683368436853686368736883689369036913692369336943695369636973698369937003701370237033704370537063707370837093710371137123713371437153716371737183719372037213722372337243725372637273728372937303731373237333734373537363737373837393740374137423743374437453746374737483749375037513752375337543755375637573758375937603761376237633764376537663767376837693770377137723773377437753776377737783779378037813782378337843785378637873788378937903791379237933794379537963797379837993800380138023803380438053806380738083809381038113812381338143815381638173818381938203821382238233824382538263827382838293830383138323833383438353836383738383839384038413842384338443845384638473848384938503851385238533854385538563857385838593860386138623863386438653866386738683869387038713872387338743875387638773878387938803881388238833884388538863887388838893890389138923893389438953896389738983899390039013902390339043905390639073908390939103911391239133914391539163917391839193920392139223923392439253926392739283929393039313932393339343935393639373938393939403941394239433944394539463947394839493950395139523953395439553956395739583959396039613962396339643965396639673968396939703971397239733974397539763977397839793980398139823983398439853986398739883989399039913992399339943995399639973998399940004001400240034004400540064007400840094010401140124013401440154016401740184019402040214022402340244025402640274028402940304031403240334034403540364037403840394040404140424043404440454046404740484049405040514052405340544055405640574058405940604061406240634064406540664067406840694070407140724073407440754076407740784079408040814082408340844085408640874088408940904091409240934094409540964097409840994100410141024103410441054106410741084109411041114112411341144115411641174118411941204121412241234124412541264127412841294130413141324133413441354136413741384139414041414142414341444145414641474148414941504151415241534154415541564157415841594160416141624163416441654166416741684169417041714172417341744175417641774178417941804181418241834184418541864187418841894190419141924193419441954196419741984199420042014202420342044205420642074208420942104211421242134214421542164217421842194220422142224223422442254226422742284229423042314232423342344235423642374238423942404241424242434244424542464247424842494250425142524253425442554256425742584259426042614262426342644265426642674268426942704271427242734274427542764277427842794280428142824283428442854286428742884289429042914292429342944295429642974298429943004301430243034304430543064307430843094310431143124313431443154316431743184319432043214322432343244325432643274328432943304331433243334334433543364337433843394340434143424343434443454346434743484349435043514352435343544355435643574358435943604361436243634364436543664367436843694370437143724373437443754376437743784379438043814382438343844385438643874388438943904391439243934394439543964397439843994400440144024403440444054406440744084409441044114412441344144415441644174418441944204421442244234424442544264427442844294430443144324433443444354436443744384439444044414442444344444445444644474448444944504451445244534454445544564457445844594460446144624463446444654466446744684469447044714472447344744475447644774478447944804481448244834484448544864487448844894490449144924493449444954496449744984499450045014502450345044505450645074508450945104511451245134514451545164517451845194520452145224523452445254526452745284529453045314532453345344535453645374538453945404541454245434544454545464547454845494550455145524553455445554556455745584559456045614562456345644565456645674568456945704571457245734574457545764577457845794580458145824583458445854586458745884589459045914592459345944595459645974598459946004601460246034604460546064607460846094610461146124613461446154616461746184619462046214622462346244625462646274628462946304631463246334634463546364637463846394640464146424643464446454646464746484649465046514652465346544655465646574658465946604661466246634664466546664667466846694670467146724673467446754676467746784679468046814682468346844685468646874688468946904691469246934694469546964697469846994700470147024703470447054706470747084709471047114712471347144715471647174718471947204721472247234724472547264727472847294730473147324733473447354736473747384739474047414742474347444745474647474748474947504751475247534754475547564757475847594760476147624763476447654766476747684769477047714772477347744775477647774778477947804781478247834784478547864787478847894790479147924793479447954796479747984799480048014802480348044805480648074808480948104811481248134814481548164817481848194820482148224823482448254826482748284829483048314832483348344835483648374838483948404841484248434844484548464847484848494850485148524853485448554856485748584859486048614862486348644865486648674868486948704871487248734874487548764877487848794880488148824883488448854886488748884889489048914892489348944895489648974898489949004901490249034904490549064907490849094910491149124913491449154916491749184919492049214922492349244925492649274928492949304931493249334934493549364937493849394940494149424943494449454946494749484949495049514952495349544955495649574958495949604961496249634964496549664967496849694970497149724973497449754976497749784979498049814982498349844985498649874988498949904991499249934994499549964997499849995000500150025003500450055006500750085009501050115012501350145015501650175018501950205021502250235024502550265027502850295030503150325033503450355036503750385039504050415042504350445045504650475048504950505051505250535054505550565057505850595060506150625063506450655066506750685069507050715072507350745075507650775078507950805081508250835084508550865087508850895090509150925093509450955096509750985099510051015102510351045105510651075108510951105111511251135114511551165117511851195120512151225123512451255126512751285129513051315132513351345135513651375138513951405141514251435144514551465147514851495150515151525153515451555156515751585159516051615162516351645165516651675168516951705171517251735174517551765177517851795180518151825183518451855186518751885189519051915192519351945195519651975198519952005201520252035204520552065207520852095210521152125213521452155216521752185219522052215222522352245225522652275228522952305231523252335234523552365237523852395240524152425243524452455246524752485249525052515252525352545255525652575258525952605261526252635264526552665267526852695270527152725273527452755276527752785279528052815282528352845285528652875288528952905291529252935294529552965297529852995300530153025303530453055306530753085309531053115312531353145315531653175318531953205321532253235324532553265327532853295330533153325333533453355336533753385339534053415342534353445345534653475348534953505351535253535354535553565357535853595360536153625363536453655366536753685369537053715372537353745375537653775378537953805381538253835384538553865387538853895390539153925393539453955396539753985399540054015402540354045405540654075408540954105411541254135414541554165417541854195420542154225423542454255426542754285429543054315432543354345435543654375438543954405441544254435444544554465447544854495450545154525453545454555456545754585459546054615462546354645465546654675468546954705471547254735474547554765477547854795480548154825483548454855486548754885489549054915492549354945495549654975498549955005501550255035504550555065507550855095510551155125513551455155516551755185519552055215522552355245525552655275528552955305531553255335534553555365537553855395540554155425543554455455546554755485549555055515552555355545555555655575558555955605561556255635564556555665567556855695570557155725573557455755576557755785579558055815582558355845585558655875588558955905591559255935594559555965597559855995600560156025603560456055606560756085609561056115612561356145615561656175618561956205621562256235624562556265627562856295630563156325633563456355636563756385639564056415642564356445645564656475648564956505651565256535654565556565657565856595660566156625663566456655666566756685669567056715672567356745675567656775678567956805681568256835684568556865687568856895690569156925693569456955696569756985699570057015702570357045705570657075708570957105711571257135714571557165717571857195720572157225723572457255726572757285729573057315732573357345735573657375738573957405741574257435744574557465747574857495750575157525753575457555756575757585759576057615762576357645765576657675768576957705771577257735774577557765777577857795780578157825783578457855786578757885789579057915792579357945795579657975798579958005801580258035804580558065807580858095810581158125813581458155816581758185819582058215822582358245825582658275828582958305831583258335834583558365837583858395840584158425843584458455846584758485849585058515852585358545855585658575858585958605861586258635864586558665867586858695870587158725873587458755876587758785879588058815882588358845885588658875888588958905891589258935894589558965897589858995900590159025903590459055906590759085909591059115912591359145915591659175918591959205921592259235924592559265927592859295930593159325933593459355936593759385939594059415942594359445945594659475948594959505951595259535954595559565957595859595960596159625963596459655966596759685969597059715972597359745975597659775978597959805981598259835984598559865987598859895990599159925993599459955996599759985999600060016002600360046005600660076008600960106011601260136014601560166017601860196020602160226023602460256026602760286029603060316032603360346035603660376038603960406041604260436044604560466047604860496050605160526053605460556056605760586059606060616062606360646065606660676068606960706071607260736074607560766077607860796080608160826083608460856086608760886089609060916092609360946095609660976098609961006101610261036104610561066107610861096110611161126113611461156116611761186119612061216122612361246125612661276128612961306131613261336134613561366137613861396140614161426143614461456146614761486149615061516152615361546155615661576158615961606161616261636164616561666167616861696170617161726173617461756176617761786179618061816182618361846185618661876188618961906191619261936194619561966197619861996200620162026203620462056206620762086209621062116212621362146215621662176218621962206221622262236224622562266227622862296230623162326233623462356236623762386239624062416242624362446245624662476248624962506251625262536254625562566257625862596260626162626263626462656266626762686269627062716272627362746275627662776278627962806281628262836284628562866287628862896290629162926293629462956296629762986299630063016302630363046305630663076308630963106311631263136314631563166317631863196320632163226323632463256326632763286329633063316332633363346335633663376338633963406341634263436344634563466347634863496350635163526353635463556356635763586359636063616362636363646365636663676368636963706371637263736374637563766377637863796380638163826383638463856386638763886389639063916392639363946395639663976398639964006401640264036404640564066407640864096410641164126413641464156416641764186419642064216422642364246425642664276428642964306431643264336434643564366437643864396440644164426443644464456446644764486449645064516452645364546455645664576458645964606461646264636464646564666467646864696470647164726473647464756476647764786479648064816482648364846485648664876488648964906491649264936494649564966497649864996500650165026503650465056506650765086509651065116512651365146515651665176518651965206521652265236524652565266527652865296530653165326533653465356536653765386539654065416542654365446545654665476548654965506551655265536554655565566557655865596560656165626563656465656566656765686569657065716572657365746575657665776578657965806581658265836584658565866587658865896590659165926593659465956596659765986599660066016602660366046605660666076608660966106611661266136614661566166617661866196620662166226623662466256626662766286629663066316632663366346635663666376638663966406641664266436644664566466647664866496650665166526653665466556656665766586659666066616662666366646665666666676668666966706671667266736674667566766677667866796680668166826683668466856686668766886689669066916692669366946695669666976698669967006701670267036704670567066707670867096710671167126713671467156716671767186719672067216722672367246725672667276728672967306731673267336734673567366737673867396740674167426743674467456746674767486749675067516752675367546755675667576758675967606761676267636764676567666767676867696770677167726773677467756776677767786779678067816782678367846785678667876788678967906791679267936794679567966797679867996800680168026803680468056806680768086809681068116812681368146815681668176818681968206821682268236824682568266827682868296830683168326833683468356836683768386839684068416842684368446845684668476848684968506851685268536854685568566857685868596860686168626863686468656866686768686869687068716872687368746875687668776878687968806881688268836884688568866887688868896890689168926893689468956896689768986899690069016902690369046905690669076908690969106911691269136914691569166917691869196920692169226923692469256926692769286929693069316932693369346935693669376938693969406941694269436944694569466947694869496950695169526953695469556956695769586959696069616962696369646965696669676968696969706971697269736974697569766977697869796980698169826983698469856986698769886989699069916992699369946995699669976998699970007001700270037004700570067007700870097010701170127013701470157016701770187019702070217022702370247025702670277028702970307031703270337034703570367037703870397040704170427043704470457046704770487049705070517052705370547055705670577058705970607061706270637064706570667067706870697070707170727073707470757076707770787079708070817082708370847085708670877088708970907091709270937094709570967097709870997100710171027103710471057106710771087109711071117112711371147115711671177118711971207121712271237124712571267127712871297130713171327133713471357136713771387139714071417142714371447145714671477148714971507151715271537154715571567157715871597160716171627163716471657166716771687169717071717172717371747175717671777178717971807181718271837184718571867187718871897190719171927193719471957196719771987199720072017202720372047205720672077208720972107211721272137214721572167217721872197220722172227223722472257226722772287229723072317232723372347235723672377238723972407241724272437244724572467247724872497250725172527253725472557256725772587259726072617262726372647265726672677268726972707271727272737274727572767277727872797280728172827283728472857286728772887289729072917292729372947295729672977298729973007301730273037304730573067307730873097310731173127313731473157316731773187319732073217322732373247325732673277328732973307331733273337334733573367337733873397340734173427343734473457346734773487349735073517352735373547355735673577358735973607361736273637364736573667367736873697370737173727373737473757376737773787379738073817382738373847385738673877388738973907391739273937394739573967397739873997400740174027403740474057406740774087409741074117412741374147415741674177418741974207421742274237424742574267427742874297430743174327433743474357436743774387439744074417442744374447445744674477448744974507451745274537454745574567457745874597460746174627463746474657466746774687469747074717472747374747475747674777478747974807481748274837484748574867487748874897490749174927493749474957496749774987499750075017502750375047505750675077508750975107511751275137514751575167517751875197520752175227523752475257526752775287529753075317532753375347535753675377538753975407541754275437544754575467547754875497550755175527553755475557556755775587559756075617562756375647565756675677568756975707571757275737574757575767577757875797580758175827583758475857586758775887589759075917592759375947595759675977598759976007601760276037604760576067607760876097610761176127613761476157616761776187619762076217622762376247625762676277628762976307631763276337634763576367637763876397640764176427643764476457646764776487649765076517652765376547655765676577658765976607661766276637664766576667667766876697670767176727673767476757676767776787679768076817682768376847685768676877688768976907691769276937694769576967697769876997700770177027703770477057706770777087709771077117712771377147715771677177718771977207721772277237724772577267727772877297730773177327733773477357736773777387739774077417742774377447745774677477748774977507751775277537754775577567757775877597760776177627763776477657766776777687769777077717772777377747775777677777778777977807781778277837784778577867787778877897790779177927793779477957796779777987799780078017802780378047805780678077808780978107811781278137814781578167817781878197820782178227823782478257826782778287829783078317832783378347835783678377838783978407841784278437844784578467847784878497850785178527853785478557856785778587859786078617862786378647865786678677868786978707871787278737874787578767877787878797880788178827883788478857886788778887889789078917892789378947895789678977898789979007901790279037904790579067907790879097910791179127913791479157916791779187919792079217922792379247925792679277928792979307931793279337934793579367937793879397940794179427943794479457946794779487949795079517952795379547955795679577958795979607961796279637964796579667967796879697970797179727973797479757976797779787979798079817982798379847985798679877988798979907991799279937994799579967997799879998000800180028003800480058006800780088009801080118012801380148015801680178018801980208021802280238024802580268027802880298030803180328033803480358036803780388039804080418042804380448045804680478048804980508051805280538054805580568057805880598060806180628063806480658066806780688069807080718072807380748075807680778078807980808081808280838084808580868087808880898090809180928093809480958096809780988099810081018102810381048105810681078108810981108111811281138114811581168117811881198120812181228123812481258126812781288129813081318132813381348135813681378138813981408141814281438144814581468147814881498150815181528153815481558156815781588159816081618162816381648165816681678168816981708171817281738174817581768177817881798180818181828183818481858186818781888189819081918192819381948195819681978198819982008201820282038204820582068207820882098210821182128213821482158216821782188219822082218222822382248225822682278228822982308231823282338234823582368237823882398240824182428243824482458246824782488249825082518252825382548255825682578258825982608261826282638264826582668267826882698270827182728273827482758276827782788279828082818282828382848285828682878288828982908291829282938294829582968297829882998300830183028303830483058306830783088309831083118312831383148315831683178318831983208321832283238324832583268327832883298330833183328333833483358336833783388339834083418342834383448345834683478348834983508351835283538354835583568357835883598360836183628363836483658366836783688369837083718372837383748375837683778378837983808381838283838384838583868387838883898390839183928393839483958396839783988399840084018402840384048405840684078408840984108411841284138414841584168417841884198420842184228423842484258426842784288429843084318432843384348435843684378438843984408441844284438444844584468447844884498450845184528453845484558456845784588459846084618462846384648465846684678468846984708471847284738474847584768477847884798480848184828483848484858486848784888489849084918492849384948495849684978498849985008501850285038504850585068507850885098510851185128513851485158516851785188519852085218522852385248525852685278528852985308531853285338534853585368537853885398540854185428543854485458546854785488549855085518552855385548555855685578558855985608561856285638564856585668567856885698570857185728573857485758576857785788579858085818582858385848585858685878588858985908591859285938594859585968597859885998600860186028603860486058606860786088609861086118612861386148615861686178618861986208621862286238624862586268627862886298630863186328633863486358636863786388639864086418642864386448645864686478648864986508651865286538654865586568657865886598660866186628663866486658666866786688669867086718672867386748675867686778678867986808681868286838684868586868687868886898690869186928693869486958696869786988699870087018702870387048705870687078708870987108711871287138714871587168717871887198720872187228723872487258726872787288729873087318732873387348735873687378738873987408741874287438744874587468747874887498750875187528753875487558756875787588759876087618762876387648765876687678768876987708771877287738774877587768777877887798780878187828783878487858786878787888789879087918792879387948795879687978798879988008801880288038804880588068807880888098810881188128813881488158816881788188819882088218822882388248825882688278828882988308831883288338834883588368837883888398840884188428843884488458846884788488849885088518852885388548855885688578858885988608861886288638864886588668867886888698870887188728873887488758876887788788879888088818882888388848885888688878888888988908891889288938894889588968897889888998900890189028903890489058906890789088909891089118912891389148915891689178918891989208921892289238924892589268927892889298930893189328933893489358936893789388939894089418942894389448945894689478948894989508951895289538954895589568957895889598960896189628963896489658966896789688969897089718972897389748975897689778978897989808981898289838984898589868987898889898990899189928993899489958996899789988999900090019002900390049005900690079008900990109011901290139014901590169017901890199020902190229023902490259026902790289029903090319032903390349035903690379038903990409041904290439044904590469047904890499050905190529053905490559056905790589059906090619062906390649065906690679068906990709071907290739074907590769077907890799080908190829083908490859086908790889089909090919092909390949095909690979098909991009101910291039104910591069107910891099110911191129113911491159116911791189119912091219122912391249125912691279128912991309131913291339134913591369137913891399140914191429143914491459146914791489149915091519152915391549155915691579158915991609161916291639164916591669167916891699170917191729173917491759176917791789179918091819182918391849185918691879188918991909191919291939194919591969197919891999200920192029203920492059206920792089209921092119212921392149215921692179218921992209221922292239224922592269227922892299230923192329233923492359236923792389239924092419242924392449245924692479248924992509251925292539254925592569257925892599260926192629263926492659266926792689269927092719272927392749275927692779278927992809281928292839284928592869287928892899290929192929293929492959296929792989299930093019302930393049305930693079308930993109311931293139314931593169317931893199320932193229323932493259326932793289329933093319332933393349335933693379338933993409341934293439344934593469347934893499350935193529353935493559356935793589359936093619362936393649365936693679368936993709371937293739374937593769377937893799380938193829383938493859386938793889389939093919392939393949395939693979398939994009401940294039404940594069407940894099410941194129413941494159416941794189419942094219422942394249425942694279428942994309431943294339434943594369437943894399440944194429443944494459446944794489449945094519452945394549455945694579458945994609461946294639464946594669467946894699470947194729473947494759476947794789479948094819482948394849485948694879488948994909491949294939494949594969497949894999500950195029503950495059506950795089509951095119512951395149515951695179518951995209521952295239524952595269527952895299530953195329533953495359536953795389539954095419542954395449545954695479548954995509551955295539554955595569557955895599560956195629563956495659566956795689569957095719572957395749575957695779578957995809581958295839584958595869587958895899590959195929593959495959596959795989599960096019602960396049605960696079608960996109611961296139614961596169617961896199620962196229623962496259626962796289629963096319632963396349635963696379638963996409641964296439644964596469647964896499650965196529653965496559656965796589659966096619662966396649665966696679668966996709671967296739674967596769677967896799680968196829683968496859686968796889689969096919692969396949695969696979698969997009701970297039704970597069707970897099710971197129713971497159716971797189719972097219722972397249725972697279728972997309731973297339734973597369737973897399740974197429743974497459746974797489749975097519752975397549755975697579758975997609761976297639764
  1. body {
  2. margin:0px;
  3. background-image:none;
  4. position:relative;
  5. left:0px;
  6. width:3348px;
  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. #u4360_div {
  20. border-width:0px;
  21. position:absolute;
  22. left:0px;
  23. top:0px;
  24. width:1480px;
  25. height:1197px;
  26. background:inherit;
  27. background-color:rgba(242, 242, 242, 1);
  28. border:none;
  29. border-radius:0px;
  30. -moz-box-shadow:none;
  31. -webkit-box-shadow:none;
  32. box-shadow:none;
  33. }
  34. #u4360 {
  35. border-width:0px;
  36. position:absolute;
  37. left:120px;
  38. top:50px;
  39. width:1480px;
  40. height:1197px;
  41. display:flex;
  42. }
  43. #u4360 .text {
  44. position:absolute;
  45. align-self:center;
  46. padding:2px 2px 2px 2px;
  47. box-sizing:border-box;
  48. width:100%;
  49. }
  50. #u4360_text {
  51. border-width:0px;
  52. word-wrap:break-word;
  53. text-transform:none;
  54. visibility:hidden;
  55. }
  56. #u4361_div {
  57. border-width:0px;
  58. position:absolute;
  59. left:0px;
  60. top:0px;
  61. width:129px;
  62. height:22px;
  63. background:inherit;
  64. background-color:rgba(255, 255, 255, 0);
  65. border:none;
  66. border-radius:0px;
  67. -moz-box-shadow:none;
  68. -webkit-box-shadow:none;
  69. box-shadow:none;
  70. font-size:16px;
  71. color:#FFFFFF;
  72. }
  73. #u4361 {
  74. border-width:0px;
  75. position:absolute;
  76. left:49px;
  77. top:14px;
  78. width:129px;
  79. height:22px;
  80. display:flex;
  81. font-size:16px;
  82. color:#FFFFFF;
  83. }
  84. #u4361 .text {
  85. position:absolute;
  86. align-self:flex-start;
  87. padding:0px 0px 0px 0px;
  88. box-sizing:border-box;
  89. width:100%;
  90. }
  91. #u4361_text {
  92. border-width:0px;
  93. white-space:nowrap;
  94. text-transform:none;
  95. }
  96. #u4362_div {
  97. border-width:0px;
  98. position:absolute;
  99. left:0px;
  100. top:0px;
  101. width:1600px;
  102. height:50px;
  103. background:inherit;
  104. background-color:rgba(30, 42, 68, 1);
  105. border:none;
  106. border-radius:0px;
  107. -moz-box-shadow:none;
  108. -webkit-box-shadow:none;
  109. box-shadow:none;
  110. color:#AFB3B6;
  111. }
  112. #u4362 {
  113. border-width:0px;
  114. position:absolute;
  115. left:0px;
  116. top:0px;
  117. width:1600px;
  118. height:50px;
  119. display:flex;
  120. color:#AFB3B6;
  121. }
  122. #u4362 .text {
  123. position:absolute;
  124. align-self:center;
  125. padding:2px 2px 2px 2px;
  126. box-sizing:border-box;
  127. width:100%;
  128. }
  129. #u4362_text {
  130. border-width:0px;
  131. word-wrap:break-word;
  132. text-transform:none;
  133. visibility:hidden;
  134. }
  135. #u4363 {
  136. border-width:0px;
  137. position:absolute;
  138. left:0px;
  139. top:0px;
  140. width:0px;
  141. height:0px;
  142. }
  143. #u4364_img {
  144. border-width:0px;
  145. position:absolute;
  146. left:0px;
  147. top:0px;
  148. width:31px;
  149. height:31px;
  150. }
  151. #u4364 {
  152. border-width:0px;
  153. position:absolute;
  154. left:19px;
  155. top:10px;
  156. width:31px;
  157. height:31px;
  158. display:flex;
  159. }
  160. #u4364 .text {
  161. position:absolute;
  162. align-self:center;
  163. padding:2px 2px 2px 2px;
  164. box-sizing:border-box;
  165. width:100%;
  166. }
  167. #u4364_text {
  168. border-width:0px;
  169. word-wrap:break-word;
  170. text-transform:none;
  171. }
  172. #u4365_div {
  173. border-width:0px;
  174. position:absolute;
  175. left:0px;
  176. top:0px;
  177. width:161px;
  178. height:22px;
  179. background:inherit;
  180. background-color:rgba(255, 255, 255, 0);
  181. border:none;
  182. border-radius:0px;
  183. -moz-box-shadow:none;
  184. -webkit-box-shadow:none;
  185. box-shadow:none;
  186. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  187. font-weight:400;
  188. font-style:normal;
  189. font-size:16px;
  190. color:#FFFFFF;
  191. }
  192. #u4365 {
  193. border-width:0px;
  194. position:absolute;
  195. left:62px;
  196. top:14px;
  197. width:161px;
  198. height:22px;
  199. display:flex;
  200. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  201. font-weight:400;
  202. font-style:normal;
  203. font-size:16px;
  204. color:#FFFFFF;
  205. }
  206. #u4365 .text {
  207. position:absolute;
  208. align-self:flex-start;
  209. padding:0px 0px 0px 0px;
  210. box-sizing:border-box;
  211. width:100%;
  212. }
  213. #u4365_text {
  214. border-width:0px;
  215. white-space:nowrap;
  216. text-transform:none;
  217. }
  218. #u4366_div {
  219. border-width:0px;
  220. position:absolute;
  221. left:0px;
  222. top:0px;
  223. width:120px;
  224. height:1200px;
  225. background:inherit;
  226. background-color:rgba(30, 42, 68, 1);
  227. border:none;
  228. border-radius:0px;
  229. -moz-box-shadow:none;
  230. -webkit-box-shadow:none;
  231. box-shadow:none;
  232. color:#AFB3B6;
  233. }
  234. #u4366 {
  235. border-width:0px;
  236. position:absolute;
  237. left:0px;
  238. top:47px;
  239. width:120px;
  240. height:1200px;
  241. display:flex;
  242. color:#AFB3B6;
  243. }
  244. #u4366 .text {
  245. position:absolute;
  246. align-self:center;
  247. padding:2px 2px 2px 2px;
  248. box-sizing:border-box;
  249. width:100%;
  250. }
  251. #u4366_text {
  252. border-width:0px;
  253. word-wrap:break-word;
  254. text-transform:none;
  255. visibility:hidden;
  256. }
  257. #u4367 {
  258. border-width:0px;
  259. position:absolute;
  260. left:0px;
  261. top:0px;
  262. width:0px;
  263. height:0px;
  264. }
  265. #u4368_input {
  266. position:absolute;
  267. left:0px;
  268. top:0px;
  269. width:214px;
  270. height:27px;
  271. padding:2px 2px 2px 2px;
  272. font-family:'ArialMT', 'Arial', sans-serif;
  273. font-weight:400;
  274. font-style:normal;
  275. font-size:14px;
  276. letter-spacing:normal;
  277. color:#FFFFFF;
  278. vertical-align:none;
  279. text-align:left;
  280. text-transform:none;
  281. background-color:transparent;
  282. border-color:transparent;
  283. }
  284. #u4368_input.disabled {
  285. position:absolute;
  286. left:0px;
  287. top:0px;
  288. width:214px;
  289. height:27px;
  290. padding:2px 2px 2px 2px;
  291. font-family:'ArialMT', 'Arial', sans-serif;
  292. font-weight:400;
  293. font-style:normal;
  294. font-size:14px;
  295. letter-spacing:normal;
  296. color:#FFFFFF;
  297. vertical-align:none;
  298. text-align:left;
  299. text-transform:none;
  300. background-color:transparent;
  301. border-color:transparent;
  302. }
  303. #u4368_div {
  304. border-width:0px;
  305. position:absolute;
  306. left:0px;
  307. top:0px;
  308. width:214px;
  309. height:27px;
  310. background:inherit;
  311. background-color:rgba(255, 255, 255, 0);
  312. border:none;
  313. border-radius:0px;
  314. -moz-box-shadow:none;
  315. -webkit-box-shadow:none;
  316. box-shadow:none;
  317. font-size:14px;
  318. color:#FFFFFF;
  319. }
  320. #u4368 {
  321. border-width:0px;
  322. position:absolute;
  323. left:1089px;
  324. top:10px;
  325. width:214px;
  326. height:27px;
  327. display:flex;
  328. font-size:14px;
  329. color:#FFFFFF;
  330. }
  331. #u4368 .text {
  332. position:absolute;
  333. align-self:flex-start;
  334. padding:2px 2px 2px 2px;
  335. box-sizing:border-box;
  336. width:100%;
  337. }
  338. #u4368_div.disabled {
  339. border-width:0px;
  340. position:absolute;
  341. left:0px;
  342. top:0px;
  343. width:214px;
  344. height:27px;
  345. background:inherit;
  346. background-color:rgba(240, 240, 240, 1);
  347. border:none;
  348. border-radius:0px;
  349. -moz-box-shadow:none;
  350. -webkit-box-shadow:none;
  351. box-shadow:none;
  352. font-size:14px;
  353. color:#FFFFFF;
  354. }
  355. #u4368.disabled {
  356. }
  357. .u4368_input_option {
  358. font-size:14px;
  359. }
  360. #u4369_img {
  361. border-width:0px;
  362. position:absolute;
  363. left:0px;
  364. top:0px;
  365. width:22px;
  366. height:22px;
  367. }
  368. #u4369 {
  369. border-width:0px;
  370. position:absolute;
  371. left:1062px;
  372. top:15px;
  373. width:22px;
  374. height:22px;
  375. display:flex;
  376. }
  377. #u4369 .text {
  378. position:absolute;
  379. align-self:center;
  380. padding:2px 2px 2px 2px;
  381. box-sizing:border-box;
  382. width:100%;
  383. }
  384. #u4369_text {
  385. border-width:0px;
  386. word-wrap:break-word;
  387. text-transform:none;
  388. visibility:hidden;
  389. }
  390. #u4370_div {
  391. border-width:0px;
  392. position:absolute;
  393. left:0px;
  394. top:0px;
  395. width:100px;
  396. height:24px;
  397. background:inherit;
  398. background-color:rgba(242, 242, 242, 0.2);
  399. border:none;
  400. border-radius:25px;
  401. -moz-box-shadow:none;
  402. -webkit-box-shadow:none;
  403. box-shadow:none;
  404. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  405. font-weight:400;
  406. font-style:normal;
  407. color:#FFFFFF;
  408. text-align:center;
  409. }
  410. #u4370 {
  411. border-width:0px;
  412. position:absolute;
  413. left:1350px;
  414. top:12px;
  415. width:100px;
  416. height:24px;
  417. display:flex;
  418. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  419. font-weight:400;
  420. font-style:normal;
  421. color:#FFFFFF;
  422. text-align:center;
  423. }
  424. #u4370 .text {
  425. position:absolute;
  426. align-self:center;
  427. padding:0px 0px 0px 0px;
  428. box-sizing:border-box;
  429. width:100%;
  430. }
  431. #u4370_text {
  432. border-width:0px;
  433. word-wrap:break-word;
  434. text-transform:none;
  435. }
  436. #u4371_div {
  437. border-width:0px;
  438. position:absolute;
  439. left:0px;
  440. top:0px;
  441. width:120px;
  442. height:24px;
  443. background:inherit;
  444. background-color:rgba(242, 242, 242, 0.2);
  445. border:none;
  446. border-radius:25px;
  447. -moz-box-shadow:none;
  448. -webkit-box-shadow:none;
  449. box-shadow:none;
  450. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  451. font-weight:400;
  452. font-style:normal;
  453. color:#FFFFFF;
  454. text-align:center;
  455. }
  456. #u4371 {
  457. border-width:0px;
  458. position:absolute;
  459. left:1460px;
  460. top:12px;
  461. width:120px;
  462. height:24px;
  463. display:flex;
  464. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  465. font-weight:400;
  466. font-style:normal;
  467. color:#FFFFFF;
  468. text-align:center;
  469. }
  470. #u4371 .text {
  471. position:absolute;
  472. align-self:center;
  473. padding:0px 0px 0px 0px;
  474. box-sizing:border-box;
  475. width:100%;
  476. }
  477. #u4371_text {
  478. border-width:0px;
  479. word-wrap:break-word;
  480. text-transform:none;
  481. }
  482. #u4372 {
  483. border-width:0px;
  484. position:absolute;
  485. left:0px;
  486. top:0px;
  487. width:0px;
  488. height:0px;
  489. }
  490. #u4373_div {
  491. border-width:0px;
  492. position:absolute;
  493. left:0px;
  494. top:0px;
  495. width:33px;
  496. height:22px;
  497. background:inherit;
  498. background-color:rgba(255, 255, 255, 0);
  499. border:none;
  500. border-radius:0px;
  501. -moz-box-shadow:none;
  502. -webkit-box-shadow:none;
  503. box-shadow:none;
  504. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  505. font-weight:400;
  506. font-style:normal;
  507. font-size:16px;
  508. color:#FFFFFF;
  509. }
  510. #u4373 {
  511. border-width:0px;
  512. position:absolute;
  513. left:39px;
  514. top:71px;
  515. width:33px;
  516. height:22px;
  517. display:flex;
  518. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  519. font-weight:400;
  520. font-style:normal;
  521. font-size:16px;
  522. color:#FFFFFF;
  523. }
  524. #u4373 .text {
  525. position:absolute;
  526. align-self:flex-start;
  527. padding:0px 0px 0px 0px;
  528. box-sizing:border-box;
  529. width:100%;
  530. }
  531. #u4373_text {
  532. border-width:0px;
  533. white-space:nowrap;
  534. text-transform:none;
  535. }
  536. #u4374_img {
  537. border-width:0px;
  538. position:absolute;
  539. left:0px;
  540. top:0px;
  541. width:14px;
  542. height:14px;
  543. }
  544. #u4374 {
  545. border-width:0px;
  546. position:absolute;
  547. left:20px;
  548. top:75px;
  549. width:14px;
  550. height:14px;
  551. display:flex;
  552. }
  553. #u4374 .text {
  554. position:absolute;
  555. align-self:center;
  556. padding:2px 2px 2px 2px;
  557. box-sizing:border-box;
  558. width:100%;
  559. }
  560. #u4374_text {
  561. border-width:0px;
  562. word-wrap:break-word;
  563. text-transform:none;
  564. visibility:hidden;
  565. }
  566. #u4375 {
  567. border-width:0px;
  568. position:absolute;
  569. left:0px;
  570. top:0px;
  571. width:0px;
  572. height:0px;
  573. }
  574. #u4376_div {
  575. border-width:0px;
  576. position:absolute;
  577. left:0px;
  578. top:0px;
  579. width:33px;
  580. height:22px;
  581. background:inherit;
  582. background-color:rgba(255, 255, 255, 0);
  583. border:none;
  584. border-radius:0px;
  585. -moz-box-shadow:none;
  586. -webkit-box-shadow:none;
  587. box-shadow:none;
  588. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  589. font-weight:400;
  590. font-style:normal;
  591. font-size:16px;
  592. color:#FFFFFF;
  593. }
  594. #u4376 {
  595. border-width:0px;
  596. position:absolute;
  597. left:39px;
  598. top:147px;
  599. width:33px;
  600. height:22px;
  601. display:flex;
  602. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  603. font-weight:400;
  604. font-style:normal;
  605. font-size:16px;
  606. color:#FFFFFF;
  607. }
  608. #u4376 .text {
  609. position:absolute;
  610. align-self:flex-start;
  611. padding:0px 0px 0px 0px;
  612. box-sizing:border-box;
  613. width:100%;
  614. }
  615. #u4376_text {
  616. border-width:0px;
  617. white-space:nowrap;
  618. text-transform:none;
  619. }
  620. #u4377_img {
  621. border-width:0px;
  622. position:absolute;
  623. left:0px;
  624. top:0px;
  625. width:14px;
  626. height:14px;
  627. }
  628. #u4377 {
  629. border-width:0px;
  630. position:absolute;
  631. left:20px;
  632. top:151px;
  633. width:14px;
  634. height:14px;
  635. display:flex;
  636. }
  637. #u4377 .text {
  638. position:absolute;
  639. align-self:center;
  640. padding:2px 2px 2px 2px;
  641. box-sizing:border-box;
  642. width:100%;
  643. }
  644. #u4377_text {
  645. border-width:0px;
  646. word-wrap:break-word;
  647. text-transform:none;
  648. visibility:hidden;
  649. }
  650. #u4378 {
  651. border-width:0px;
  652. position:absolute;
  653. left:0px;
  654. top:0px;
  655. width:0px;
  656. height:0px;
  657. }
  658. #u4379_div {
  659. border-width:0px;
  660. position:absolute;
  661. left:0px;
  662. top:0px;
  663. width:33px;
  664. height:22px;
  665. background:inherit;
  666. background-color:rgba(255, 255, 255, 0);
  667. border:none;
  668. border-radius:0px;
  669. -moz-box-shadow:none;
  670. -webkit-box-shadow:none;
  671. box-shadow:none;
  672. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  673. font-weight:400;
  674. font-style:normal;
  675. font-size:16px;
  676. color:#FFFFFF;
  677. }
  678. #u4379 {
  679. border-width:0px;
  680. position:absolute;
  681. left:39px;
  682. top:397px;
  683. width:33px;
  684. height:22px;
  685. display:flex;
  686. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  687. font-weight:400;
  688. font-style:normal;
  689. font-size:16px;
  690. color:#FFFFFF;
  691. }
  692. #u4379 .text {
  693. position:absolute;
  694. align-self:flex-start;
  695. padding:0px 0px 0px 0px;
  696. box-sizing:border-box;
  697. width:100%;
  698. }
  699. #u4379_text {
  700. border-width:0px;
  701. white-space:nowrap;
  702. text-transform:none;
  703. }
  704. #u4380_img {
  705. border-width:0px;
  706. position:absolute;
  707. left:0px;
  708. top:0px;
  709. width:14px;
  710. height:14px;
  711. }
  712. #u4380 {
  713. border-width:0px;
  714. position:absolute;
  715. left:20px;
  716. top:401px;
  717. width:14px;
  718. height:14px;
  719. display:flex;
  720. }
  721. #u4380 .text {
  722. position:absolute;
  723. align-self:center;
  724. padding:2px 2px 2px 2px;
  725. box-sizing:border-box;
  726. width:100%;
  727. }
  728. #u4380_text {
  729. border-width:0px;
  730. word-wrap:break-word;
  731. text-transform:none;
  732. visibility:hidden;
  733. }
  734. #u4381 {
  735. border-width:0px;
  736. position:absolute;
  737. left:0px;
  738. top:0px;
  739. width:0px;
  740. height:0px;
  741. }
  742. #u4382_div {
  743. border-width:0px;
  744. position:absolute;
  745. left:0px;
  746. top:0px;
  747. width:49px;
  748. height:22px;
  749. background:inherit;
  750. background-color:rgba(255, 255, 255, 0);
  751. border:none;
  752. border-radius:0px;
  753. -moz-box-shadow:none;
  754. -webkit-box-shadow:none;
  755. box-shadow:none;
  756. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  757. font-weight:400;
  758. font-style:normal;
  759. font-size:16px;
  760. color:#FFFFFF;
  761. }
  762. #u4382 {
  763. border-width:0px;
  764. position:absolute;
  765. left:39px;
  766. top:109px;
  767. width:49px;
  768. height:22px;
  769. display:flex;
  770. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  771. font-weight:400;
  772. font-style:normal;
  773. font-size:16px;
  774. color:#FFFFFF;
  775. }
  776. #u4382 .text {
  777. position:absolute;
  778. align-self:flex-start;
  779. padding:0px 0px 0px 0px;
  780. box-sizing:border-box;
  781. width:100%;
  782. }
  783. #u4382_text {
  784. border-width:0px;
  785. white-space:nowrap;
  786. text-transform:none;
  787. }
  788. #u4383_img {
  789. border-width:0px;
  790. position:absolute;
  791. left:0px;
  792. top:0px;
  793. width:14px;
  794. height:14px;
  795. }
  796. #u4383 {
  797. border-width:0px;
  798. position:absolute;
  799. left:20px;
  800. top:113px;
  801. width:14px;
  802. height:14px;
  803. display:flex;
  804. }
  805. #u4383 .text {
  806. position:absolute;
  807. align-self:center;
  808. padding:2px 2px 2px 2px;
  809. box-sizing:border-box;
  810. width:100%;
  811. }
  812. #u4383_text {
  813. border-width:0px;
  814. word-wrap:break-word;
  815. text-transform:none;
  816. visibility:hidden;
  817. }
  818. #u4384 {
  819. border-width:0px;
  820. position:absolute;
  821. left:0px;
  822. top:0px;
  823. width:0px;
  824. height:0px;
  825. }
  826. #u4385_div {
  827. border-width:0px;
  828. position:absolute;
  829. left:0px;
  830. top:0px;
  831. width:33px;
  832. height:22px;
  833. background:inherit;
  834. background-color:rgba(255, 255, 255, 0);
  835. border:none;
  836. border-radius:0px;
  837. -moz-box-shadow:none;
  838. -webkit-box-shadow:none;
  839. box-shadow:none;
  840. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  841. font-weight:400;
  842. font-style:normal;
  843. font-size:16px;
  844. color:#FFFFFF;
  845. }
  846. #u4385 {
  847. border-width:0px;
  848. position:absolute;
  849. left:39px;
  850. top:439px;
  851. width:33px;
  852. height:22px;
  853. display:flex;
  854. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  855. font-weight:400;
  856. font-style:normal;
  857. font-size:16px;
  858. color:#FFFFFF;
  859. }
  860. #u4385 .text {
  861. position:absolute;
  862. align-self:flex-start;
  863. padding:0px 0px 0px 0px;
  864. box-sizing:border-box;
  865. width:100%;
  866. }
  867. #u4385_text {
  868. border-width:0px;
  869. white-space:nowrap;
  870. text-transform:none;
  871. }
  872. #u4386_img {
  873. border-width:0px;
  874. position:absolute;
  875. left:0px;
  876. top:0px;
  877. width:14px;
  878. height:14px;
  879. }
  880. #u4386 {
  881. border-width:0px;
  882. position:absolute;
  883. left:20px;
  884. top:443px;
  885. width:14px;
  886. height:14px;
  887. display:flex;
  888. }
  889. #u4386 .text {
  890. position:absolute;
  891. align-self:center;
  892. padding:2px 2px 2px 2px;
  893. box-sizing:border-box;
  894. width:100%;
  895. }
  896. #u4386_text {
  897. border-width:0px;
  898. word-wrap:break-word;
  899. text-transform:none;
  900. visibility:hidden;
  901. }
  902. #u4387 {
  903. border-width:0px;
  904. position:absolute;
  905. left:0px;
  906. top:0px;
  907. width:0px;
  908. height:0px;
  909. }
  910. #u4388_div {
  911. border-width:0px;
  912. position:absolute;
  913. left:0px;
  914. top:0px;
  915. width:33px;
  916. height:22px;
  917. background:inherit;
  918. background-color:rgba(255, 255, 255, 0);
  919. border:none;
  920. border-radius:0px;
  921. -moz-box-shadow:none;
  922. -webkit-box-shadow:none;
  923. box-shadow:none;
  924. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  925. font-weight:400;
  926. font-style:normal;
  927. font-size:16px;
  928. color:#FFFFFF;
  929. }
  930. #u4388 {
  931. border-width:0px;
  932. position:absolute;
  933. left:39px;
  934. top:313px;
  935. width:33px;
  936. height:22px;
  937. display:flex;
  938. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  939. font-weight:400;
  940. font-style:normal;
  941. font-size:16px;
  942. color:#FFFFFF;
  943. }
  944. #u4388 .text {
  945. position:absolute;
  946. align-self:flex-start;
  947. padding:0px 0px 0px 0px;
  948. box-sizing:border-box;
  949. width:100%;
  950. }
  951. #u4388_text {
  952. border-width:0px;
  953. white-space:nowrap;
  954. text-transform:none;
  955. }
  956. #u4389_img {
  957. border-width:0px;
  958. position:absolute;
  959. left:0px;
  960. top:0px;
  961. width:14px;
  962. height:14px;
  963. }
  964. #u4389 {
  965. border-width:0px;
  966. position:absolute;
  967. left:20px;
  968. top:317px;
  969. width:14px;
  970. height:14px;
  971. display:flex;
  972. }
  973. #u4389 .text {
  974. position:absolute;
  975. align-self:center;
  976. padding:2px 2px 2px 2px;
  977. box-sizing:border-box;
  978. width:100%;
  979. }
  980. #u4389_text {
  981. border-width:0px;
  982. word-wrap:break-word;
  983. text-transform:none;
  984. visibility:hidden;
  985. }
  986. #u4390 {
  987. border-width:0px;
  988. position:absolute;
  989. left:0px;
  990. top:0px;
  991. width:0px;
  992. height:0px;
  993. }
  994. #u4391_div {
  995. border-width:0px;
  996. position:absolute;
  997. left:0px;
  998. top:0px;
  999. width:33px;
  1000. height:22px;
  1001. background:inherit;
  1002. background-color:rgba(255, 255, 255, 0);
  1003. border:none;
  1004. border-radius:0px;
  1005. -moz-box-shadow:none;
  1006. -webkit-box-shadow:none;
  1007. box-shadow:none;
  1008. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1009. font-weight:400;
  1010. font-style:normal;
  1011. font-size:16px;
  1012. color:#FFFFFF;
  1013. }
  1014. #u4391 {
  1015. border-width:0px;
  1016. position:absolute;
  1017. left:39px;
  1018. top:189px;
  1019. width:33px;
  1020. height:22px;
  1021. display:flex;
  1022. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1023. font-weight:400;
  1024. font-style:normal;
  1025. font-size:16px;
  1026. color:#FFFFFF;
  1027. }
  1028. #u4391 .text {
  1029. position:absolute;
  1030. align-self:flex-start;
  1031. padding:0px 0px 0px 0px;
  1032. box-sizing:border-box;
  1033. width:100%;
  1034. }
  1035. #u4391_text {
  1036. border-width:0px;
  1037. white-space:nowrap;
  1038. text-transform:none;
  1039. }
  1040. #u4392_img {
  1041. border-width:0px;
  1042. position:absolute;
  1043. left:0px;
  1044. top:0px;
  1045. width:14px;
  1046. height:14px;
  1047. }
  1048. #u4392 {
  1049. border-width:0px;
  1050. position:absolute;
  1051. left:20px;
  1052. top:193px;
  1053. width:14px;
  1054. height:14px;
  1055. display:flex;
  1056. }
  1057. #u4392 .text {
  1058. position:absolute;
  1059. align-self:center;
  1060. padding:2px 2px 2px 2px;
  1061. box-sizing:border-box;
  1062. width:100%;
  1063. }
  1064. #u4392_text {
  1065. border-width:0px;
  1066. word-wrap:break-word;
  1067. text-transform:none;
  1068. visibility:hidden;
  1069. }
  1070. #u4393 {
  1071. border-width:0px;
  1072. position:absolute;
  1073. left:0px;
  1074. top:0px;
  1075. width:0px;
  1076. height:0px;
  1077. }
  1078. #u4394_div {
  1079. border-width:0px;
  1080. position:absolute;
  1081. left:0px;
  1082. top:0px;
  1083. width:33px;
  1084. height:22px;
  1085. background:inherit;
  1086. background-color:rgba(255, 255, 255, 0);
  1087. border:none;
  1088. border-radius:0px;
  1089. -moz-box-shadow:none;
  1090. -webkit-box-shadow:none;
  1091. box-shadow:none;
  1092. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1093. font-weight:400;
  1094. font-style:normal;
  1095. font-size:16px;
  1096. color:#FFFFFF;
  1097. }
  1098. #u4394 {
  1099. border-width:0px;
  1100. position:absolute;
  1101. left:39px;
  1102. top:355px;
  1103. width:33px;
  1104. height:22px;
  1105. display:flex;
  1106. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1107. font-weight:400;
  1108. font-style:normal;
  1109. font-size:16px;
  1110. color:#FFFFFF;
  1111. }
  1112. #u4394 .text {
  1113. position:absolute;
  1114. align-self:flex-start;
  1115. padding:0px 0px 0px 0px;
  1116. box-sizing:border-box;
  1117. width:100%;
  1118. }
  1119. #u4394_text {
  1120. border-width:0px;
  1121. white-space:nowrap;
  1122. text-transform:none;
  1123. }
  1124. #u4395_img {
  1125. border-width:0px;
  1126. position:absolute;
  1127. left:0px;
  1128. top:0px;
  1129. width:14px;
  1130. height:14px;
  1131. }
  1132. #u4395 {
  1133. border-width:0px;
  1134. position:absolute;
  1135. left:20px;
  1136. top:359px;
  1137. width:14px;
  1138. height:14px;
  1139. display:flex;
  1140. }
  1141. #u4395 .text {
  1142. position:absolute;
  1143. align-self:center;
  1144. padding:2px 2px 2px 2px;
  1145. box-sizing:border-box;
  1146. width:100%;
  1147. }
  1148. #u4395_text {
  1149. border-width:0px;
  1150. word-wrap:break-word;
  1151. text-transform:none;
  1152. visibility:hidden;
  1153. }
  1154. #u4396 {
  1155. border-width:0px;
  1156. position:absolute;
  1157. left:0px;
  1158. top:0px;
  1159. width:0px;
  1160. height:0px;
  1161. }
  1162. #u4397_div {
  1163. border-width:0px;
  1164. position:absolute;
  1165. left:0px;
  1166. top:0px;
  1167. width:33px;
  1168. height:22px;
  1169. background:inherit;
  1170. background-color:rgba(255, 255, 255, 0);
  1171. border:none;
  1172. border-radius:0px;
  1173. -moz-box-shadow:none;
  1174. -webkit-box-shadow:none;
  1175. box-shadow:none;
  1176. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1177. font-weight:400;
  1178. font-style:normal;
  1179. font-size:16px;
  1180. color:#FFFFFF;
  1181. }
  1182. #u4397 {
  1183. border-width:0px;
  1184. position:absolute;
  1185. left:39px;
  1186. top:481px;
  1187. width:33px;
  1188. height:22px;
  1189. display:flex;
  1190. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1191. font-weight:400;
  1192. font-style:normal;
  1193. font-size:16px;
  1194. color:#FFFFFF;
  1195. }
  1196. #u4397 .text {
  1197. position:absolute;
  1198. align-self:flex-start;
  1199. padding:0px 0px 0px 0px;
  1200. box-sizing:border-box;
  1201. width:100%;
  1202. }
  1203. #u4397_text {
  1204. border-width:0px;
  1205. white-space:nowrap;
  1206. text-transform:none;
  1207. }
  1208. #u4398_img {
  1209. border-width:0px;
  1210. position:absolute;
  1211. left:0px;
  1212. top:0px;
  1213. width:14px;
  1214. height:14px;
  1215. }
  1216. #u4398 {
  1217. border-width:0px;
  1218. position:absolute;
  1219. left:20px;
  1220. top:485px;
  1221. width:14px;
  1222. height:14px;
  1223. display:flex;
  1224. }
  1225. #u4398 .text {
  1226. position:absolute;
  1227. align-self:center;
  1228. padding:2px 2px 2px 2px;
  1229. box-sizing:border-box;
  1230. width:100%;
  1231. }
  1232. #u4398_text {
  1233. border-width:0px;
  1234. word-wrap:break-word;
  1235. text-transform:none;
  1236. visibility:hidden;
  1237. }
  1238. #u4399 {
  1239. border-width:0px;
  1240. position:absolute;
  1241. left:0px;
  1242. top:0px;
  1243. width:0px;
  1244. height:0px;
  1245. }
  1246. #u4400_div {
  1247. border-width:0px;
  1248. position:absolute;
  1249. left:0px;
  1250. top:0px;
  1251. width:33px;
  1252. height:22px;
  1253. background:inherit;
  1254. background-color:rgba(255, 255, 255, 0);
  1255. border:none;
  1256. border-radius:0px;
  1257. -moz-box-shadow:none;
  1258. -webkit-box-shadow:none;
  1259. box-shadow:none;
  1260. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1261. font-weight:400;
  1262. font-style:normal;
  1263. font-size:16px;
  1264. color:#FFFFFF;
  1265. }
  1266. #u4400 {
  1267. border-width:0px;
  1268. position:absolute;
  1269. left:39px;
  1270. top:523px;
  1271. width:33px;
  1272. height:22px;
  1273. display:flex;
  1274. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1275. font-weight:400;
  1276. font-style:normal;
  1277. font-size:16px;
  1278. color:#FFFFFF;
  1279. }
  1280. #u4400 .text {
  1281. position:absolute;
  1282. align-self:flex-start;
  1283. padding:0px 0px 0px 0px;
  1284. box-sizing:border-box;
  1285. width:100%;
  1286. }
  1287. #u4400_text {
  1288. border-width:0px;
  1289. white-space:nowrap;
  1290. text-transform:none;
  1291. }
  1292. #u4401_img {
  1293. border-width:0px;
  1294. position:absolute;
  1295. left:0px;
  1296. top:0px;
  1297. width:14px;
  1298. height:14px;
  1299. }
  1300. #u4401 {
  1301. border-width:0px;
  1302. position:absolute;
  1303. left:20px;
  1304. top:527px;
  1305. width:14px;
  1306. height:14px;
  1307. display:flex;
  1308. }
  1309. #u4401 .text {
  1310. position:absolute;
  1311. align-self:center;
  1312. padding:2px 2px 2px 2px;
  1313. box-sizing:border-box;
  1314. width:100%;
  1315. }
  1316. #u4401_text {
  1317. border-width:0px;
  1318. word-wrap:break-word;
  1319. text-transform:none;
  1320. visibility:hidden;
  1321. }
  1322. #u4402_div {
  1323. border-width:0px;
  1324. position:absolute;
  1325. left:0px;
  1326. top:0px;
  1327. width:29px;
  1328. height:20px;
  1329. background:inherit;
  1330. background-color:rgba(255, 255, 255, 0);
  1331. border:none;
  1332. border-radius:25px;
  1333. -moz-box-shadow:none;
  1334. -webkit-box-shadow:none;
  1335. box-shadow:none;
  1336. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1337. font-weight:400;
  1338. font-style:normal;
  1339. color:#FFFFFF;
  1340. }
  1341. #u4402 {
  1342. border-width:0px;
  1343. position:absolute;
  1344. left:52px;
  1345. top:1145px;
  1346. width:29px;
  1347. height:20px;
  1348. display:flex;
  1349. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1350. font-weight:400;
  1351. font-style:normal;
  1352. color:#FFFFFF;
  1353. }
  1354. #u4402 .text {
  1355. position:absolute;
  1356. align-self:center;
  1357. padding:0px 0px 0px 0px;
  1358. box-sizing:border-box;
  1359. width:100%;
  1360. }
  1361. #u4402_text {
  1362. border-width:0px;
  1363. white-space:nowrap;
  1364. text-transform:none;
  1365. }
  1366. #u4403_img {
  1367. border-width:0px;
  1368. position:absolute;
  1369. left:0px;
  1370. top:0px;
  1371. width:22px;
  1372. height:22px;
  1373. }
  1374. #u4403 {
  1375. border-width:0px;
  1376. position:absolute;
  1377. left:20px;
  1378. top:1144px;
  1379. width:22px;
  1380. height:22px;
  1381. display:flex;
  1382. }
  1383. #u4403 .text {
  1384. position:absolute;
  1385. align-self:center;
  1386. padding:2px 2px 2px 2px;
  1387. box-sizing:border-box;
  1388. width:100%;
  1389. }
  1390. #u4403_text {
  1391. border-width:0px;
  1392. word-wrap:break-word;
  1393. text-transform:none;
  1394. visibility:hidden;
  1395. }
  1396. #u4404_div {
  1397. border-width:0px;
  1398. position:absolute;
  1399. left:0px;
  1400. top:0px;
  1401. width:29px;
  1402. height:20px;
  1403. background:inherit;
  1404. background-color:rgba(255, 255, 255, 0);
  1405. border:none;
  1406. border-radius:25px;
  1407. -moz-box-shadow:none;
  1408. -webkit-box-shadow:none;
  1409. box-shadow:none;
  1410. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1411. font-weight:400;
  1412. font-style:normal;
  1413. color:#FFFFFF;
  1414. }
  1415. #u4404 {
  1416. border-width:0px;
  1417. position:absolute;
  1418. left:52px;
  1419. top:1187px;
  1420. width:29px;
  1421. height:20px;
  1422. display:flex;
  1423. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1424. font-weight:400;
  1425. font-style:normal;
  1426. color:#FFFFFF;
  1427. }
  1428. #u4404 .text {
  1429. position:absolute;
  1430. align-self:center;
  1431. padding:0px 0px 0px 0px;
  1432. box-sizing:border-box;
  1433. width:100%;
  1434. }
  1435. #u4404_text {
  1436. border-width:0px;
  1437. white-space:nowrap;
  1438. text-transform:none;
  1439. }
  1440. #u4405_img {
  1441. border-width:0px;
  1442. position:absolute;
  1443. left:0px;
  1444. top:0px;
  1445. width:22px;
  1446. height:22px;
  1447. }
  1448. #u4405 {
  1449. border-width:0px;
  1450. position:absolute;
  1451. left:20px;
  1452. top:1186px;
  1453. width:22px;
  1454. height:22px;
  1455. display:flex;
  1456. }
  1457. #u4405 .text {
  1458. position:absolute;
  1459. align-self:center;
  1460. padding:2px 2px 2px 2px;
  1461. box-sizing:border-box;
  1462. width:100%;
  1463. }
  1464. #u4405_text {
  1465. border-width:0px;
  1466. word-wrap:break-word;
  1467. text-transform:none;
  1468. visibility:hidden;
  1469. }
  1470. #u4406 {
  1471. border-width:0px;
  1472. position:absolute;
  1473. left:0px;
  1474. top:0px;
  1475. width:0px;
  1476. height:0px;
  1477. }
  1478. #u4407_div {
  1479. border-width:0px;
  1480. position:absolute;
  1481. left:0px;
  1482. top:0px;
  1483. width:33px;
  1484. height:22px;
  1485. background:inherit;
  1486. background-color:rgba(255, 255, 255, 0);
  1487. border:none;
  1488. border-radius:0px;
  1489. -moz-box-shadow:none;
  1490. -webkit-box-shadow:none;
  1491. box-shadow:none;
  1492. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1493. font-weight:400;
  1494. font-style:normal;
  1495. font-size:16px;
  1496. color:#FFFFFF;
  1497. }
  1498. #u4407 {
  1499. border-width:0px;
  1500. position:absolute;
  1501. left:39px;
  1502. top:231px;
  1503. width:33px;
  1504. height:22px;
  1505. display:flex;
  1506. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1507. font-weight:400;
  1508. font-style:normal;
  1509. font-size:16px;
  1510. color:#FFFFFF;
  1511. }
  1512. #u4407 .text {
  1513. position:absolute;
  1514. align-self:flex-start;
  1515. padding:0px 0px 0px 0px;
  1516. box-sizing:border-box;
  1517. width:100%;
  1518. }
  1519. #u4407_text {
  1520. border-width:0px;
  1521. white-space:nowrap;
  1522. text-transform:none;
  1523. }
  1524. #u4408_img {
  1525. border-width:0px;
  1526. position:absolute;
  1527. left:0px;
  1528. top:0px;
  1529. width:14px;
  1530. height:14px;
  1531. }
  1532. #u4408 {
  1533. border-width:0px;
  1534. position:absolute;
  1535. left:20px;
  1536. top:235px;
  1537. width:14px;
  1538. height:14px;
  1539. display:flex;
  1540. }
  1541. #u4408 .text {
  1542. position:absolute;
  1543. align-self:center;
  1544. padding:2px 2px 2px 2px;
  1545. box-sizing:border-box;
  1546. width:100%;
  1547. }
  1548. #u4408_text {
  1549. border-width:0px;
  1550. word-wrap:break-word;
  1551. text-transform:none;
  1552. visibility:hidden;
  1553. }
  1554. #u4409 {
  1555. border-width:0px;
  1556. position:absolute;
  1557. left:0px;
  1558. top:0px;
  1559. width:0px;
  1560. height:0px;
  1561. }
  1562. #u4410_div {
  1563. border-width:0px;
  1564. position:absolute;
  1565. left:0px;
  1566. top:0px;
  1567. width:33px;
  1568. height:22px;
  1569. background:inherit;
  1570. background-color:rgba(255, 255, 255, 0);
  1571. border:none;
  1572. border-radius:0px;
  1573. -moz-box-shadow:none;
  1574. -webkit-box-shadow:none;
  1575. box-shadow:none;
  1576. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1577. font-weight:400;
  1578. font-style:normal;
  1579. font-size:16px;
  1580. color:#FFFFFF;
  1581. }
  1582. #u4410 {
  1583. border-width:0px;
  1584. position:absolute;
  1585. left:39px;
  1586. top:565px;
  1587. width:33px;
  1588. height:22px;
  1589. display:flex;
  1590. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1591. font-weight:400;
  1592. font-style:normal;
  1593. font-size:16px;
  1594. color:#FFFFFF;
  1595. }
  1596. #u4410 .text {
  1597. position:absolute;
  1598. align-self:flex-start;
  1599. padding:0px 0px 0px 0px;
  1600. box-sizing:border-box;
  1601. width:100%;
  1602. }
  1603. #u4410_text {
  1604. border-width:0px;
  1605. white-space:nowrap;
  1606. text-transform:none;
  1607. }
  1608. #u4411_img {
  1609. border-width:0px;
  1610. position:absolute;
  1611. left:0px;
  1612. top:0px;
  1613. width:14px;
  1614. height:14px;
  1615. }
  1616. #u4411 {
  1617. border-width:0px;
  1618. position:absolute;
  1619. left:20px;
  1620. top:569px;
  1621. width:14px;
  1622. height:14px;
  1623. display:flex;
  1624. }
  1625. #u4411 .text {
  1626. position:absolute;
  1627. align-self:center;
  1628. padding:2px 2px 2px 2px;
  1629. box-sizing:border-box;
  1630. width:100%;
  1631. }
  1632. #u4411_text {
  1633. border-width:0px;
  1634. word-wrap:break-word;
  1635. text-transform:none;
  1636. visibility:hidden;
  1637. }
  1638. #u4412 {
  1639. border-width:0px;
  1640. position:absolute;
  1641. left:0px;
  1642. top:0px;
  1643. width:0px;
  1644. height:0px;
  1645. }
  1646. #u4413_div {
  1647. border-width:0px;
  1648. position:absolute;
  1649. left:0px;
  1650. top:0px;
  1651. width:33px;
  1652. height:22px;
  1653. background:inherit;
  1654. background-color:rgba(255, 255, 255, 0);
  1655. border:none;
  1656. border-radius:0px;
  1657. -moz-box-shadow:none;
  1658. -webkit-box-shadow:none;
  1659. box-shadow:none;
  1660. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1661. font-weight:400;
  1662. font-style:normal;
  1663. font-size:16px;
  1664. color:#FFFFFF;
  1665. }
  1666. #u4413 {
  1667. border-width:0px;
  1668. position:absolute;
  1669. left:39px;
  1670. top:273px;
  1671. width:33px;
  1672. height:22px;
  1673. display:flex;
  1674. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1675. font-weight:400;
  1676. font-style:normal;
  1677. font-size:16px;
  1678. color:#FFFFFF;
  1679. }
  1680. #u4413 .text {
  1681. position:absolute;
  1682. align-self:flex-start;
  1683. padding:0px 0px 0px 0px;
  1684. box-sizing:border-box;
  1685. width:100%;
  1686. }
  1687. #u4413_text {
  1688. border-width:0px;
  1689. white-space:nowrap;
  1690. text-transform:none;
  1691. }
  1692. #u4414_img {
  1693. border-width:0px;
  1694. position:absolute;
  1695. left:0px;
  1696. top:0px;
  1697. width:14px;
  1698. height:14px;
  1699. }
  1700. #u4414 {
  1701. border-width:0px;
  1702. position:absolute;
  1703. left:20px;
  1704. top:277px;
  1705. width:14px;
  1706. height:14px;
  1707. display:flex;
  1708. }
  1709. #u4414 .text {
  1710. position:absolute;
  1711. align-self:center;
  1712. padding:2px 2px 2px 2px;
  1713. box-sizing:border-box;
  1714. width:100%;
  1715. }
  1716. #u4414_text {
  1717. border-width:0px;
  1718. word-wrap:break-word;
  1719. text-transform:none;
  1720. visibility:hidden;
  1721. }
  1722. #u4415_div {
  1723. border-width:0px;
  1724. position:absolute;
  1725. left:0px;
  1726. top:0px;
  1727. width:1260px;
  1728. height:1180px;
  1729. background:inherit;
  1730. background-color:rgba(255, 255, 255, 1);
  1731. border:none;
  1732. border-radius:0px;
  1733. -moz-box-shadow:none;
  1734. -webkit-box-shadow:none;
  1735. box-shadow:none;
  1736. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1737. font-weight:400;
  1738. font-style:normal;
  1739. font-size:12px;
  1740. color:#FFFFFF;
  1741. text-align:left;
  1742. }
  1743. #u4415 {
  1744. border-width:0px;
  1745. position:absolute;
  1746. left:330px;
  1747. top:50px;
  1748. width:1260px;
  1749. height:1180px;
  1750. display:flex;
  1751. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1752. font-weight:400;
  1753. font-style:normal;
  1754. font-size:12px;
  1755. color:#FFFFFF;
  1756. text-align:left;
  1757. }
  1758. #u4415 .text {
  1759. position:absolute;
  1760. align-self:center;
  1761. padding:2px 2px 2px 50px;
  1762. box-sizing:border-box;
  1763. width:100%;
  1764. }
  1765. #u4415_text {
  1766. border-width:0px;
  1767. word-wrap:break-word;
  1768. text-transform:none;
  1769. visibility:hidden;
  1770. }
  1771. #u4416_div {
  1772. border-width:0px;
  1773. position:absolute;
  1774. left:0px;
  1775. top:0px;
  1776. width:73px;
  1777. height:50px;
  1778. background:inherit;
  1779. background-color:rgba(255, 255, 255, 0);
  1780. border:none;
  1781. border-left:0px;
  1782. border-top:0px;
  1783. border-right:0px;
  1784. border-radius:0px;
  1785. border-bottom-right-radius:0px;
  1786. border-bottom-left-radius:0px;
  1787. -moz-box-shadow:none;
  1788. -webkit-box-shadow:none;
  1789. box-shadow:none;
  1790. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1791. font-weight:400;
  1792. font-style:normal;
  1793. font-size:18px;
  1794. }
  1795. #u4416 {
  1796. border-width:0px;
  1797. position:absolute;
  1798. left:349px;
  1799. top:50px;
  1800. width:73px;
  1801. height:50px;
  1802. display:flex;
  1803. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1804. font-weight:400;
  1805. font-style:normal;
  1806. font-size:18px;
  1807. }
  1808. #u4416 .text {
  1809. position:absolute;
  1810. align-self:center;
  1811. padding:0px 0px 0px 0px;
  1812. box-sizing:border-box;
  1813. width:100%;
  1814. }
  1815. #u4416_text {
  1816. border-width:0px;
  1817. white-space:nowrap;
  1818. text-transform:none;
  1819. }
  1820. #u4417 {
  1821. border-width:0px;
  1822. position:absolute;
  1823. left:350px;
  1824. top:199px;
  1825. width:1220px;
  1826. height:322px;
  1827. }
  1828. #u4418_img {
  1829. border-width:0px;
  1830. position:absolute;
  1831. left:0px;
  1832. top:0px;
  1833. width:135px;
  1834. height:38px;
  1835. }
  1836. #u4418 {
  1837. border-width:0px;
  1838. position:absolute;
  1839. left:0px;
  1840. top:0px;
  1841. width:135px;
  1842. height:38px;
  1843. display:flex;
  1844. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1845. font-weight:400;
  1846. font-style:normal;
  1847. font-size:12px;
  1848. color:#FFFFFF;
  1849. }
  1850. #u4418 .text {
  1851. position:absolute;
  1852. align-self:center;
  1853. padding:2px 2px 2px 0px;
  1854. box-sizing:border-box;
  1855. width:100%;
  1856. }
  1857. #u4418_text {
  1858. border-width:0px;
  1859. word-wrap:break-word;
  1860. text-transform:none;
  1861. }
  1862. #u4419_img {
  1863. border-width:0px;
  1864. position:absolute;
  1865. left:0px;
  1866. top:0px;
  1867. width:543px;
  1868. height:38px;
  1869. }
  1870. #u4419 {
  1871. border-width:0px;
  1872. position:absolute;
  1873. left:135px;
  1874. top:0px;
  1875. width:543px;
  1876. height:38px;
  1877. display:flex;
  1878. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1879. font-weight:400;
  1880. font-style:normal;
  1881. font-size:12px;
  1882. color:#FFFFFF;
  1883. }
  1884. #u4419 .text {
  1885. position:absolute;
  1886. align-self:center;
  1887. padding:2px 2px 2px 0px;
  1888. box-sizing:border-box;
  1889. width:100%;
  1890. }
  1891. #u4419_text {
  1892. border-width:0px;
  1893. word-wrap:break-word;
  1894. text-transform:none;
  1895. }
  1896. #u4420_img {
  1897. border-width:0px;
  1898. position:absolute;
  1899. left:0px;
  1900. top:0px;
  1901. width:135px;
  1902. height:38px;
  1903. }
  1904. #u4420 {
  1905. border-width:0px;
  1906. position:absolute;
  1907. left:678px;
  1908. top:0px;
  1909. width:135px;
  1910. height:38px;
  1911. display:flex;
  1912. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1913. font-weight:400;
  1914. font-style:normal;
  1915. font-size:12px;
  1916. color:#FFFFFF;
  1917. }
  1918. #u4420 .text {
  1919. position:absolute;
  1920. align-self:center;
  1921. padding:2px 2px 2px 0px;
  1922. box-sizing:border-box;
  1923. width:100%;
  1924. }
  1925. #u4420_text {
  1926. border-width:0px;
  1927. word-wrap:break-word;
  1928. text-transform:none;
  1929. }
  1930. #u4421_img {
  1931. border-width:0px;
  1932. position:absolute;
  1933. left:0px;
  1934. top:0px;
  1935. width:135px;
  1936. height:38px;
  1937. }
  1938. #u4421 {
  1939. border-width:0px;
  1940. position:absolute;
  1941. left:813px;
  1942. top:0px;
  1943. width:135px;
  1944. height:38px;
  1945. display:flex;
  1946. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1947. font-weight:400;
  1948. font-style:normal;
  1949. font-size:12px;
  1950. color:#FFFFFF;
  1951. }
  1952. #u4421 .text {
  1953. position:absolute;
  1954. align-self:center;
  1955. padding:2px 2px 2px 0px;
  1956. box-sizing:border-box;
  1957. width:100%;
  1958. }
  1959. #u4421_text {
  1960. border-width:0px;
  1961. word-wrap:break-word;
  1962. text-transform:none;
  1963. }
  1964. #u4422_img {
  1965. border-width:0px;
  1966. position:absolute;
  1967. left:0px;
  1968. top:0px;
  1969. width:135px;
  1970. height:38px;
  1971. }
  1972. #u4422 {
  1973. border-width:0px;
  1974. position:absolute;
  1975. left:948px;
  1976. top:0px;
  1977. width:135px;
  1978. height:38px;
  1979. display:flex;
  1980. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1981. font-weight:400;
  1982. font-style:normal;
  1983. font-size:12px;
  1984. color:#FFFFFF;
  1985. }
  1986. #u4422 .text {
  1987. position:absolute;
  1988. align-self:center;
  1989. padding:2px 2px 2px 0px;
  1990. box-sizing:border-box;
  1991. width:100%;
  1992. }
  1993. #u4422_text {
  1994. border-width:0px;
  1995. word-wrap:break-word;
  1996. text-transform:none;
  1997. }
  1998. #u4423_img {
  1999. border-width:0px;
  2000. position:absolute;
  2001. left:0px;
  2002. top:0px;
  2003. width:137px;
  2004. height:38px;
  2005. }
  2006. #u4423 {
  2007. border-width:0px;
  2008. position:absolute;
  2009. left:1083px;
  2010. top:0px;
  2011. width:137px;
  2012. height:38px;
  2013. display:flex;
  2014. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2015. font-weight:400;
  2016. font-style:normal;
  2017. font-size:12px;
  2018. color:#FFFFFF;
  2019. }
  2020. #u4423 .text {
  2021. position:absolute;
  2022. align-self:center;
  2023. padding:2px 2px 2px 0px;
  2024. box-sizing:border-box;
  2025. width:100%;
  2026. }
  2027. #u4423_text {
  2028. border-width:0px;
  2029. word-wrap:break-word;
  2030. text-transform:none;
  2031. }
  2032. #u4424_img {
  2033. border-width:0px;
  2034. position:absolute;
  2035. left:0px;
  2036. top:0px;
  2037. width:135px;
  2038. height:38px;
  2039. }
  2040. #u4424 {
  2041. border-width:0px;
  2042. position:absolute;
  2043. left:0px;
  2044. top:38px;
  2045. width:135px;
  2046. height:38px;
  2047. display:flex;
  2048. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2049. font-weight:400;
  2050. font-style:normal;
  2051. font-size:12px;
  2052. color:#333333;
  2053. }
  2054. #u4424 .text {
  2055. position:absolute;
  2056. align-self:center;
  2057. padding:2px 2px 2px 0px;
  2058. box-sizing:border-box;
  2059. width:100%;
  2060. }
  2061. #u4424_text {
  2062. border-width:0px;
  2063. word-wrap:break-word;
  2064. text-transform:none;
  2065. visibility:hidden;
  2066. }
  2067. #u4425_img {
  2068. border-width:0px;
  2069. position:absolute;
  2070. left:0px;
  2071. top:0px;
  2072. width:543px;
  2073. height:38px;
  2074. }
  2075. #u4425 {
  2076. border-width:0px;
  2077. position:absolute;
  2078. left:135px;
  2079. top:38px;
  2080. width:543px;
  2081. height:38px;
  2082. display:flex;
  2083. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2084. font-weight:400;
  2085. font-style:normal;
  2086. font-size:12px;
  2087. color:#333333;
  2088. }
  2089. #u4425 .text {
  2090. position:absolute;
  2091. align-self:center;
  2092. padding:2px 2px 2px 0px;
  2093. box-sizing:border-box;
  2094. width:100%;
  2095. }
  2096. #u4425_text {
  2097. border-width:0px;
  2098. word-wrap:break-word;
  2099. text-transform:none;
  2100. visibility:hidden;
  2101. }
  2102. #u4426_img {
  2103. border-width:0px;
  2104. position:absolute;
  2105. left:0px;
  2106. top:0px;
  2107. width:135px;
  2108. height:38px;
  2109. }
  2110. #u4426 {
  2111. border-width:0px;
  2112. position:absolute;
  2113. left:678px;
  2114. top:38px;
  2115. width:135px;
  2116. height:38px;
  2117. display:flex;
  2118. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2119. font-weight:400;
  2120. font-style:normal;
  2121. font-size:12px;
  2122. color:#333333;
  2123. }
  2124. #u4426 .text {
  2125. position:absolute;
  2126. align-self:center;
  2127. padding:2px 2px 2px 0px;
  2128. box-sizing:border-box;
  2129. width:100%;
  2130. }
  2131. #u4426_text {
  2132. border-width:0px;
  2133. word-wrap:break-word;
  2134. text-transform:none;
  2135. }
  2136. #u4427_img {
  2137. border-width:0px;
  2138. position:absolute;
  2139. left:0px;
  2140. top:0px;
  2141. width:135px;
  2142. height:38px;
  2143. }
  2144. #u4427 {
  2145. border-width:0px;
  2146. position:absolute;
  2147. left:813px;
  2148. top:38px;
  2149. width:135px;
  2150. height:38px;
  2151. display:flex;
  2152. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2153. font-weight:400;
  2154. font-style:normal;
  2155. font-size:12px;
  2156. color:#333333;
  2157. }
  2158. #u4427 .text {
  2159. position:absolute;
  2160. align-self:center;
  2161. padding:2px 2px 2px 0px;
  2162. box-sizing:border-box;
  2163. width:100%;
  2164. }
  2165. #u4427_text {
  2166. border-width:0px;
  2167. word-wrap:break-word;
  2168. text-transform:none;
  2169. visibility:hidden;
  2170. }
  2171. #u4428_img {
  2172. border-width:0px;
  2173. position:absolute;
  2174. left:0px;
  2175. top:0px;
  2176. width:135px;
  2177. height:38px;
  2178. }
  2179. #u4428 {
  2180. border-width:0px;
  2181. position:absolute;
  2182. left:948px;
  2183. top:38px;
  2184. width:135px;
  2185. height:38px;
  2186. display:flex;
  2187. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2188. font-weight:400;
  2189. font-style:normal;
  2190. font-size:12px;
  2191. color:#333333;
  2192. }
  2193. #u4428 .text {
  2194. position:absolute;
  2195. align-self:center;
  2196. padding:2px 2px 2px 0px;
  2197. box-sizing:border-box;
  2198. width:100%;
  2199. }
  2200. #u4428_text {
  2201. border-width:0px;
  2202. word-wrap:break-word;
  2203. text-transform:none;
  2204. visibility:hidden;
  2205. }
  2206. #u4429_img {
  2207. border-width:0px;
  2208. position:absolute;
  2209. left:0px;
  2210. top:0px;
  2211. width:137px;
  2212. height:38px;
  2213. }
  2214. #u4429 {
  2215. border-width:0px;
  2216. position:absolute;
  2217. left:1083px;
  2218. top:38px;
  2219. width:137px;
  2220. height:38px;
  2221. display:flex;
  2222. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2223. font-weight:400;
  2224. font-style:normal;
  2225. font-size:12px;
  2226. color:#0089FE;
  2227. }
  2228. #u4429 .text {
  2229. position:absolute;
  2230. align-self:center;
  2231. padding:2px 2px 2px 0px;
  2232. box-sizing:border-box;
  2233. width:100%;
  2234. }
  2235. #u4429_text {
  2236. border-width:0px;
  2237. word-wrap:break-word;
  2238. text-transform:none;
  2239. }
  2240. #u4430_img {
  2241. border-width:0px;
  2242. position:absolute;
  2243. left:0px;
  2244. top:0px;
  2245. width:135px;
  2246. height:38px;
  2247. }
  2248. #u4430 {
  2249. border-width:0px;
  2250. position:absolute;
  2251. left:0px;
  2252. top:76px;
  2253. width:135px;
  2254. height:38px;
  2255. display:flex;
  2256. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2257. font-weight:400;
  2258. font-style:normal;
  2259. font-size:12px;
  2260. color:#333333;
  2261. }
  2262. #u4430 .text {
  2263. position:absolute;
  2264. align-self:center;
  2265. padding:2px 2px 2px 0px;
  2266. box-sizing:border-box;
  2267. width:100%;
  2268. }
  2269. #u4430_text {
  2270. border-width:0px;
  2271. word-wrap:break-word;
  2272. text-transform:none;
  2273. visibility:hidden;
  2274. }
  2275. #u4431_img {
  2276. border-width:0px;
  2277. position:absolute;
  2278. left:0px;
  2279. top:0px;
  2280. width:543px;
  2281. height:38px;
  2282. }
  2283. #u4431 {
  2284. border-width:0px;
  2285. position:absolute;
  2286. left:135px;
  2287. top:76px;
  2288. width:543px;
  2289. height:38px;
  2290. display:flex;
  2291. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2292. font-weight:400;
  2293. font-style:normal;
  2294. font-size:12px;
  2295. color:#333333;
  2296. }
  2297. #u4431 .text {
  2298. position:absolute;
  2299. align-self:center;
  2300. padding:2px 2px 2px 0px;
  2301. box-sizing:border-box;
  2302. width:100%;
  2303. }
  2304. #u4431_text {
  2305. border-width:0px;
  2306. word-wrap:break-word;
  2307. text-transform:none;
  2308. visibility:hidden;
  2309. }
  2310. #u4432_img {
  2311. border-width:0px;
  2312. position:absolute;
  2313. left:0px;
  2314. top:0px;
  2315. width:135px;
  2316. height:38px;
  2317. }
  2318. #u4432 {
  2319. border-width:0px;
  2320. position:absolute;
  2321. left:678px;
  2322. top:76px;
  2323. width:135px;
  2324. height:38px;
  2325. display:flex;
  2326. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2327. font-weight:400;
  2328. font-style:normal;
  2329. font-size:12px;
  2330. color:#333333;
  2331. }
  2332. #u4432 .text {
  2333. position:absolute;
  2334. align-self:center;
  2335. padding:2px 2px 2px 0px;
  2336. box-sizing:border-box;
  2337. width:100%;
  2338. }
  2339. #u4432_text {
  2340. border-width:0px;
  2341. word-wrap:break-word;
  2342. text-transform:none;
  2343. }
  2344. #u4433_img {
  2345. border-width:0px;
  2346. position:absolute;
  2347. left:0px;
  2348. top:0px;
  2349. width:135px;
  2350. height:38px;
  2351. }
  2352. #u4433 {
  2353. border-width:0px;
  2354. position:absolute;
  2355. left:813px;
  2356. top:76px;
  2357. width:135px;
  2358. height:38px;
  2359. display:flex;
  2360. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2361. font-weight:400;
  2362. font-style:normal;
  2363. font-size:12px;
  2364. color:#333333;
  2365. }
  2366. #u4433 .text {
  2367. position:absolute;
  2368. align-self:center;
  2369. padding:2px 2px 2px 0px;
  2370. box-sizing:border-box;
  2371. width:100%;
  2372. }
  2373. #u4433_text {
  2374. border-width:0px;
  2375. word-wrap:break-word;
  2376. text-transform:none;
  2377. visibility:hidden;
  2378. }
  2379. #u4434_img {
  2380. border-width:0px;
  2381. position:absolute;
  2382. left:0px;
  2383. top:0px;
  2384. width:135px;
  2385. height:38px;
  2386. }
  2387. #u4434 {
  2388. border-width:0px;
  2389. position:absolute;
  2390. left:948px;
  2391. top:76px;
  2392. width:135px;
  2393. height:38px;
  2394. display:flex;
  2395. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2396. font-weight:400;
  2397. font-style:normal;
  2398. font-size:12px;
  2399. color:#333333;
  2400. }
  2401. #u4434 .text {
  2402. position:absolute;
  2403. align-self:center;
  2404. padding:2px 2px 2px 0px;
  2405. box-sizing:border-box;
  2406. width:100%;
  2407. }
  2408. #u4434_text {
  2409. border-width:0px;
  2410. word-wrap:break-word;
  2411. text-transform:none;
  2412. visibility:hidden;
  2413. }
  2414. #u4435_img {
  2415. border-width:0px;
  2416. position:absolute;
  2417. left:0px;
  2418. top:0px;
  2419. width:137px;
  2420. height:38px;
  2421. }
  2422. #u4435 {
  2423. border-width:0px;
  2424. position:absolute;
  2425. left:1083px;
  2426. top:76px;
  2427. width:137px;
  2428. height:38px;
  2429. display:flex;
  2430. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2431. font-weight:400;
  2432. font-style:normal;
  2433. font-size:12px;
  2434. }
  2435. #u4435 .text {
  2436. position:absolute;
  2437. align-self:center;
  2438. padding:2px 2px 2px 0px;
  2439. box-sizing:border-box;
  2440. width:100%;
  2441. }
  2442. #u4435_text {
  2443. border-width:0px;
  2444. word-wrap:break-word;
  2445. text-transform:none;
  2446. }
  2447. #u4436_img {
  2448. border-width:0px;
  2449. position:absolute;
  2450. left:0px;
  2451. top:0px;
  2452. width:135px;
  2453. height:38px;
  2454. }
  2455. #u4436 {
  2456. border-width:0px;
  2457. position:absolute;
  2458. left:0px;
  2459. top:114px;
  2460. width:135px;
  2461. height:38px;
  2462. display:flex;
  2463. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2464. font-weight:400;
  2465. font-style:normal;
  2466. font-size:12px;
  2467. color:#333333;
  2468. }
  2469. #u4436 .text {
  2470. position:absolute;
  2471. align-self:center;
  2472. padding:2px 2px 2px 0px;
  2473. box-sizing:border-box;
  2474. width:100%;
  2475. }
  2476. #u4436_text {
  2477. border-width:0px;
  2478. word-wrap:break-word;
  2479. text-transform:none;
  2480. visibility:hidden;
  2481. }
  2482. #u4437_img {
  2483. border-width:0px;
  2484. position:absolute;
  2485. left:0px;
  2486. top:0px;
  2487. width:543px;
  2488. height:38px;
  2489. }
  2490. #u4437 {
  2491. border-width:0px;
  2492. position:absolute;
  2493. left:135px;
  2494. top:114px;
  2495. width:543px;
  2496. height:38px;
  2497. display:flex;
  2498. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2499. font-weight:400;
  2500. font-style:normal;
  2501. font-size:12px;
  2502. color:#333333;
  2503. }
  2504. #u4437 .text {
  2505. position:absolute;
  2506. align-self:center;
  2507. padding:2px 2px 2px 0px;
  2508. box-sizing:border-box;
  2509. width:100%;
  2510. }
  2511. #u4437_text {
  2512. border-width:0px;
  2513. word-wrap:break-word;
  2514. text-transform:none;
  2515. visibility:hidden;
  2516. }
  2517. #u4438_img {
  2518. border-width:0px;
  2519. position:absolute;
  2520. left:0px;
  2521. top:0px;
  2522. width:135px;
  2523. height:38px;
  2524. }
  2525. #u4438 {
  2526. border-width:0px;
  2527. position:absolute;
  2528. left:678px;
  2529. top:114px;
  2530. width:135px;
  2531. height:38px;
  2532. display:flex;
  2533. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2534. font-weight:400;
  2535. font-style:normal;
  2536. font-size:12px;
  2537. color:#333333;
  2538. }
  2539. #u4438 .text {
  2540. position:absolute;
  2541. align-self:center;
  2542. padding:2px 2px 2px 0px;
  2543. box-sizing:border-box;
  2544. width:100%;
  2545. }
  2546. #u4438_text {
  2547. border-width:0px;
  2548. word-wrap:break-word;
  2549. text-transform:none;
  2550. visibility:hidden;
  2551. }
  2552. #u4439_img {
  2553. border-width:0px;
  2554. position:absolute;
  2555. left:0px;
  2556. top:0px;
  2557. width:135px;
  2558. height:38px;
  2559. }
  2560. #u4439 {
  2561. border-width:0px;
  2562. position:absolute;
  2563. left:813px;
  2564. top:114px;
  2565. width:135px;
  2566. height:38px;
  2567. display:flex;
  2568. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2569. font-weight:400;
  2570. font-style:normal;
  2571. font-size:12px;
  2572. color:#333333;
  2573. }
  2574. #u4439 .text {
  2575. position:absolute;
  2576. align-self:center;
  2577. padding:2px 2px 2px 0px;
  2578. box-sizing:border-box;
  2579. width:100%;
  2580. }
  2581. #u4439_text {
  2582. border-width:0px;
  2583. word-wrap:break-word;
  2584. text-transform:none;
  2585. visibility:hidden;
  2586. }
  2587. #u4440_img {
  2588. border-width:0px;
  2589. position:absolute;
  2590. left:0px;
  2591. top:0px;
  2592. width:135px;
  2593. height:38px;
  2594. }
  2595. #u4440 {
  2596. border-width:0px;
  2597. position:absolute;
  2598. left:948px;
  2599. top:114px;
  2600. width:135px;
  2601. height:38px;
  2602. display:flex;
  2603. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2604. font-weight:400;
  2605. font-style:normal;
  2606. font-size:12px;
  2607. color:#333333;
  2608. }
  2609. #u4440 .text {
  2610. position:absolute;
  2611. align-self:center;
  2612. padding:2px 2px 2px 0px;
  2613. box-sizing:border-box;
  2614. width:100%;
  2615. }
  2616. #u4440_text {
  2617. border-width:0px;
  2618. word-wrap:break-word;
  2619. text-transform:none;
  2620. visibility:hidden;
  2621. }
  2622. #u4441_img {
  2623. border-width:0px;
  2624. position:absolute;
  2625. left:0px;
  2626. top:0px;
  2627. width:137px;
  2628. height:38px;
  2629. }
  2630. #u4441 {
  2631. border-width:0px;
  2632. position:absolute;
  2633. left:1083px;
  2634. top:114px;
  2635. width:137px;
  2636. height:38px;
  2637. display:flex;
  2638. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2639. font-weight:400;
  2640. font-style:normal;
  2641. font-size:12px;
  2642. color:#0089FE;
  2643. }
  2644. #u4441 .text {
  2645. position:absolute;
  2646. align-self:center;
  2647. padding:2px 2px 2px 0px;
  2648. box-sizing:border-box;
  2649. width:100%;
  2650. }
  2651. #u4441_text {
  2652. border-width:0px;
  2653. word-wrap:break-word;
  2654. text-transform:none;
  2655. visibility:hidden;
  2656. }
  2657. #u4442_img {
  2658. border-width:0px;
  2659. position:absolute;
  2660. left:0px;
  2661. top:0px;
  2662. width:135px;
  2663. height:38px;
  2664. }
  2665. #u4442 {
  2666. border-width:0px;
  2667. position:absolute;
  2668. left:0px;
  2669. top:152px;
  2670. width:135px;
  2671. height:38px;
  2672. display:flex;
  2673. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2674. font-weight:400;
  2675. font-style:normal;
  2676. font-size:12px;
  2677. color:#333333;
  2678. }
  2679. #u4442 .text {
  2680. position:absolute;
  2681. align-self:center;
  2682. padding:2px 2px 2px 0px;
  2683. box-sizing:border-box;
  2684. width:100%;
  2685. }
  2686. #u4442_text {
  2687. border-width:0px;
  2688. word-wrap:break-word;
  2689. text-transform:none;
  2690. visibility:hidden;
  2691. }
  2692. #u4443_img {
  2693. border-width:0px;
  2694. position:absolute;
  2695. left:0px;
  2696. top:0px;
  2697. width:543px;
  2698. height:38px;
  2699. }
  2700. #u4443 {
  2701. border-width:0px;
  2702. position:absolute;
  2703. left:135px;
  2704. top:152px;
  2705. width:543px;
  2706. height:38px;
  2707. display:flex;
  2708. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2709. font-weight:400;
  2710. font-style:normal;
  2711. font-size:12px;
  2712. color:#333333;
  2713. }
  2714. #u4443 .text {
  2715. position:absolute;
  2716. align-self:center;
  2717. padding:2px 2px 2px 0px;
  2718. box-sizing:border-box;
  2719. width:100%;
  2720. }
  2721. #u4443_text {
  2722. border-width:0px;
  2723. word-wrap:break-word;
  2724. text-transform:none;
  2725. visibility:hidden;
  2726. }
  2727. #u4444_img {
  2728. border-width:0px;
  2729. position:absolute;
  2730. left:0px;
  2731. top:0px;
  2732. width:135px;
  2733. height:38px;
  2734. }
  2735. #u4444 {
  2736. border-width:0px;
  2737. position:absolute;
  2738. left:678px;
  2739. top:152px;
  2740. width:135px;
  2741. height:38px;
  2742. display:flex;
  2743. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2744. font-weight:400;
  2745. font-style:normal;
  2746. font-size:12px;
  2747. color:#333333;
  2748. }
  2749. #u4444 .text {
  2750. position:absolute;
  2751. align-self:center;
  2752. padding:2px 2px 2px 0px;
  2753. box-sizing:border-box;
  2754. width:100%;
  2755. }
  2756. #u4444_text {
  2757. border-width:0px;
  2758. word-wrap:break-word;
  2759. text-transform:none;
  2760. visibility:hidden;
  2761. }
  2762. #u4445_img {
  2763. border-width:0px;
  2764. position:absolute;
  2765. left:0px;
  2766. top:0px;
  2767. width:135px;
  2768. height:38px;
  2769. }
  2770. #u4445 {
  2771. border-width:0px;
  2772. position:absolute;
  2773. left:813px;
  2774. top:152px;
  2775. width:135px;
  2776. height:38px;
  2777. display:flex;
  2778. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2779. font-weight:400;
  2780. font-style:normal;
  2781. font-size:12px;
  2782. color:#333333;
  2783. }
  2784. #u4445 .text {
  2785. position:absolute;
  2786. align-self:center;
  2787. padding:2px 2px 2px 0px;
  2788. box-sizing:border-box;
  2789. width:100%;
  2790. }
  2791. #u4445_text {
  2792. border-width:0px;
  2793. word-wrap:break-word;
  2794. text-transform:none;
  2795. visibility:hidden;
  2796. }
  2797. #u4446_img {
  2798. border-width:0px;
  2799. position:absolute;
  2800. left:0px;
  2801. top:0px;
  2802. width:135px;
  2803. height:38px;
  2804. }
  2805. #u4446 {
  2806. border-width:0px;
  2807. position:absolute;
  2808. left:948px;
  2809. top:152px;
  2810. width:135px;
  2811. height:38px;
  2812. display:flex;
  2813. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2814. font-weight:400;
  2815. font-style:normal;
  2816. font-size:12px;
  2817. color:#333333;
  2818. }
  2819. #u4446 .text {
  2820. position:absolute;
  2821. align-self:center;
  2822. padding:2px 2px 2px 0px;
  2823. box-sizing:border-box;
  2824. width:100%;
  2825. }
  2826. #u4446_text {
  2827. border-width:0px;
  2828. word-wrap:break-word;
  2829. text-transform:none;
  2830. visibility:hidden;
  2831. }
  2832. #u4447_img {
  2833. border-width:0px;
  2834. position:absolute;
  2835. left:0px;
  2836. top:0px;
  2837. width:137px;
  2838. height:38px;
  2839. }
  2840. #u4447 {
  2841. border-width:0px;
  2842. position:absolute;
  2843. left:1083px;
  2844. top:152px;
  2845. width:137px;
  2846. height:38px;
  2847. display:flex;
  2848. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2849. font-weight:400;
  2850. font-style:normal;
  2851. font-size:12px;
  2852. color:#AAAAAA;
  2853. }
  2854. #u4447 .text {
  2855. position:absolute;
  2856. align-self:center;
  2857. padding:2px 2px 2px 0px;
  2858. box-sizing:border-box;
  2859. width:100%;
  2860. }
  2861. #u4447_text {
  2862. border-width:0px;
  2863. word-wrap:break-word;
  2864. text-transform:none;
  2865. visibility:hidden;
  2866. }
  2867. #u4448_img {
  2868. border-width:0px;
  2869. position:absolute;
  2870. left:0px;
  2871. top:0px;
  2872. width:135px;
  2873. height:35px;
  2874. }
  2875. #u4448 {
  2876. border-width:0px;
  2877. position:absolute;
  2878. left:0px;
  2879. top:190px;
  2880. width:135px;
  2881. height:35px;
  2882. display:flex;
  2883. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2884. font-weight:400;
  2885. font-style:normal;
  2886. font-size:12px;
  2887. color:#333333;
  2888. }
  2889. #u4448 .text {
  2890. position:absolute;
  2891. align-self:center;
  2892. padding:2px 2px 2px 0px;
  2893. box-sizing:border-box;
  2894. width:100%;
  2895. }
  2896. #u4448_text {
  2897. border-width:0px;
  2898. word-wrap:break-word;
  2899. text-transform:none;
  2900. visibility:hidden;
  2901. }
  2902. #u4449_img {
  2903. border-width:0px;
  2904. position:absolute;
  2905. left:0px;
  2906. top:0px;
  2907. width:543px;
  2908. height:35px;
  2909. }
  2910. #u4449 {
  2911. border-width:0px;
  2912. position:absolute;
  2913. left:135px;
  2914. top:190px;
  2915. width:543px;
  2916. height:35px;
  2917. display:flex;
  2918. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2919. font-weight:400;
  2920. font-style:normal;
  2921. font-size:12px;
  2922. color:#333333;
  2923. }
  2924. #u4449 .text {
  2925. position:absolute;
  2926. align-self:center;
  2927. padding:2px 2px 2px 0px;
  2928. box-sizing:border-box;
  2929. width:100%;
  2930. }
  2931. #u4449_text {
  2932. border-width:0px;
  2933. word-wrap:break-word;
  2934. text-transform:none;
  2935. visibility:hidden;
  2936. }
  2937. #u4450_img {
  2938. border-width:0px;
  2939. position:absolute;
  2940. left:0px;
  2941. top:0px;
  2942. width:135px;
  2943. height:35px;
  2944. }
  2945. #u4450 {
  2946. border-width:0px;
  2947. position:absolute;
  2948. left:678px;
  2949. top:190px;
  2950. width:135px;
  2951. height:35px;
  2952. display:flex;
  2953. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2954. font-weight:400;
  2955. font-style:normal;
  2956. font-size:12px;
  2957. color:#333333;
  2958. }
  2959. #u4450 .text {
  2960. position:absolute;
  2961. align-self:center;
  2962. padding:2px 2px 2px 0px;
  2963. box-sizing:border-box;
  2964. width:100%;
  2965. }
  2966. #u4450_text {
  2967. border-width:0px;
  2968. word-wrap:break-word;
  2969. text-transform:none;
  2970. visibility:hidden;
  2971. }
  2972. #u4451_img {
  2973. border-width:0px;
  2974. position:absolute;
  2975. left:0px;
  2976. top:0px;
  2977. width:135px;
  2978. height:35px;
  2979. }
  2980. #u4451 {
  2981. border-width:0px;
  2982. position:absolute;
  2983. left:813px;
  2984. top:190px;
  2985. width:135px;
  2986. height:35px;
  2987. display:flex;
  2988. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2989. font-weight:400;
  2990. font-style:normal;
  2991. font-size:12px;
  2992. color:#333333;
  2993. }
  2994. #u4451 .text {
  2995. position:absolute;
  2996. align-self:center;
  2997. padding:2px 2px 2px 0px;
  2998. box-sizing:border-box;
  2999. width:100%;
  3000. }
  3001. #u4451_text {
  3002. border-width:0px;
  3003. word-wrap:break-word;
  3004. text-transform:none;
  3005. visibility:hidden;
  3006. }
  3007. #u4452_img {
  3008. border-width:0px;
  3009. position:absolute;
  3010. left:0px;
  3011. top:0px;
  3012. width:135px;
  3013. height:35px;
  3014. }
  3015. #u4452 {
  3016. border-width:0px;
  3017. position:absolute;
  3018. left:948px;
  3019. top:190px;
  3020. width:135px;
  3021. height:35px;
  3022. display:flex;
  3023. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3024. font-weight:400;
  3025. font-style:normal;
  3026. font-size:12px;
  3027. color:#333333;
  3028. }
  3029. #u4452 .text {
  3030. position:absolute;
  3031. align-self:center;
  3032. padding:2px 2px 2px 0px;
  3033. box-sizing:border-box;
  3034. width:100%;
  3035. }
  3036. #u4452_text {
  3037. border-width:0px;
  3038. word-wrap:break-word;
  3039. text-transform:none;
  3040. visibility:hidden;
  3041. }
  3042. #u4453_img {
  3043. border-width:0px;
  3044. position:absolute;
  3045. left:0px;
  3046. top:0px;
  3047. width:137px;
  3048. height:35px;
  3049. }
  3050. #u4453 {
  3051. border-width:0px;
  3052. position:absolute;
  3053. left:1083px;
  3054. top:190px;
  3055. width:137px;
  3056. height:35px;
  3057. display:flex;
  3058. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3059. font-weight:400;
  3060. font-style:normal;
  3061. font-size:12px;
  3062. color:#AAAAAA;
  3063. }
  3064. #u4453 .text {
  3065. position:absolute;
  3066. align-self:center;
  3067. padding:2px 2px 2px 0px;
  3068. box-sizing:border-box;
  3069. width:100%;
  3070. }
  3071. #u4453_text {
  3072. border-width:0px;
  3073. word-wrap:break-word;
  3074. text-transform:none;
  3075. visibility:hidden;
  3076. }
  3077. #u4454_img {
  3078. border-width:0px;
  3079. position:absolute;
  3080. left:0px;
  3081. top:0px;
  3082. width:135px;
  3083. height:35px;
  3084. }
  3085. #u4454 {
  3086. border-width:0px;
  3087. position:absolute;
  3088. left:0px;
  3089. top:225px;
  3090. width:135px;
  3091. height:35px;
  3092. display:flex;
  3093. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3094. font-weight:400;
  3095. font-style:normal;
  3096. font-size:12px;
  3097. color:#333333;
  3098. }
  3099. #u4454 .text {
  3100. position:absolute;
  3101. align-self:center;
  3102. padding:2px 2px 2px 0px;
  3103. box-sizing:border-box;
  3104. width:100%;
  3105. }
  3106. #u4454_text {
  3107. border-width:0px;
  3108. word-wrap:break-word;
  3109. text-transform:none;
  3110. visibility:hidden;
  3111. }
  3112. #u4455_img {
  3113. border-width:0px;
  3114. position:absolute;
  3115. left:0px;
  3116. top:0px;
  3117. width:543px;
  3118. height:35px;
  3119. }
  3120. #u4455 {
  3121. border-width:0px;
  3122. position:absolute;
  3123. left:135px;
  3124. top:225px;
  3125. width:543px;
  3126. height:35px;
  3127. display:flex;
  3128. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3129. font-weight:400;
  3130. font-style:normal;
  3131. font-size:12px;
  3132. color:#333333;
  3133. }
  3134. #u4455 .text {
  3135. position:absolute;
  3136. align-self:center;
  3137. padding:2px 2px 2px 0px;
  3138. box-sizing:border-box;
  3139. width:100%;
  3140. }
  3141. #u4455_text {
  3142. border-width:0px;
  3143. word-wrap:break-word;
  3144. text-transform:none;
  3145. visibility:hidden;
  3146. }
  3147. #u4456_img {
  3148. border-width:0px;
  3149. position:absolute;
  3150. left:0px;
  3151. top:0px;
  3152. width:135px;
  3153. height:35px;
  3154. }
  3155. #u4456 {
  3156. border-width:0px;
  3157. position:absolute;
  3158. left:678px;
  3159. top:225px;
  3160. width:135px;
  3161. height:35px;
  3162. display:flex;
  3163. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3164. font-weight:400;
  3165. font-style:normal;
  3166. font-size:12px;
  3167. color:#333333;
  3168. }
  3169. #u4456 .text {
  3170. position:absolute;
  3171. align-self:center;
  3172. padding:2px 2px 2px 0px;
  3173. box-sizing:border-box;
  3174. width:100%;
  3175. }
  3176. #u4456_text {
  3177. border-width:0px;
  3178. word-wrap:break-word;
  3179. text-transform:none;
  3180. visibility:hidden;
  3181. }
  3182. #u4457_img {
  3183. border-width:0px;
  3184. position:absolute;
  3185. left:0px;
  3186. top:0px;
  3187. width:135px;
  3188. height:35px;
  3189. }
  3190. #u4457 {
  3191. border-width:0px;
  3192. position:absolute;
  3193. left:813px;
  3194. top:225px;
  3195. width:135px;
  3196. height:35px;
  3197. display:flex;
  3198. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3199. font-weight:400;
  3200. font-style:normal;
  3201. font-size:12px;
  3202. color:#333333;
  3203. }
  3204. #u4457 .text {
  3205. position:absolute;
  3206. align-self:center;
  3207. padding:2px 2px 2px 0px;
  3208. box-sizing:border-box;
  3209. width:100%;
  3210. }
  3211. #u4457_text {
  3212. border-width:0px;
  3213. word-wrap:break-word;
  3214. text-transform:none;
  3215. visibility:hidden;
  3216. }
  3217. #u4458_img {
  3218. border-width:0px;
  3219. position:absolute;
  3220. left:0px;
  3221. top:0px;
  3222. width:135px;
  3223. height:35px;
  3224. }
  3225. #u4458 {
  3226. border-width:0px;
  3227. position:absolute;
  3228. left:948px;
  3229. top:225px;
  3230. width:135px;
  3231. height:35px;
  3232. display:flex;
  3233. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3234. font-weight:400;
  3235. font-style:normal;
  3236. font-size:12px;
  3237. color:#333333;
  3238. }
  3239. #u4458 .text {
  3240. position:absolute;
  3241. align-self:center;
  3242. padding:2px 2px 2px 0px;
  3243. box-sizing:border-box;
  3244. width:100%;
  3245. }
  3246. #u4458_text {
  3247. border-width:0px;
  3248. word-wrap:break-word;
  3249. text-transform:none;
  3250. visibility:hidden;
  3251. }
  3252. #u4459_img {
  3253. border-width:0px;
  3254. position:absolute;
  3255. left:0px;
  3256. top:0px;
  3257. width:137px;
  3258. height:35px;
  3259. }
  3260. #u4459 {
  3261. border-width:0px;
  3262. position:absolute;
  3263. left:1083px;
  3264. top:225px;
  3265. width:137px;
  3266. height:35px;
  3267. display:flex;
  3268. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3269. font-weight:400;
  3270. font-style:normal;
  3271. font-size:12px;
  3272. color:#333333;
  3273. }
  3274. #u4459 .text {
  3275. position:absolute;
  3276. align-self:center;
  3277. padding:2px 2px 2px 0px;
  3278. box-sizing:border-box;
  3279. width:100%;
  3280. }
  3281. #u4459_text {
  3282. border-width:0px;
  3283. word-wrap:break-word;
  3284. text-transform:none;
  3285. visibility:hidden;
  3286. }
  3287. #u4460_img {
  3288. border-width:0px;
  3289. position:absolute;
  3290. left:0px;
  3291. top:0px;
  3292. width:135px;
  3293. height:32px;
  3294. }
  3295. #u4460 {
  3296. border-width:0px;
  3297. position:absolute;
  3298. left:0px;
  3299. top:260px;
  3300. width:135px;
  3301. height:32px;
  3302. display:flex;
  3303. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3304. font-weight:400;
  3305. font-style:normal;
  3306. font-size:12px;
  3307. color:#333333;
  3308. }
  3309. #u4460 .text {
  3310. position:absolute;
  3311. align-self:center;
  3312. padding:2px 2px 2px 0px;
  3313. box-sizing:border-box;
  3314. width:100%;
  3315. }
  3316. #u4460_text {
  3317. border-width:0px;
  3318. word-wrap:break-word;
  3319. text-transform:none;
  3320. visibility:hidden;
  3321. }
  3322. #u4461_img {
  3323. border-width:0px;
  3324. position:absolute;
  3325. left:0px;
  3326. top:0px;
  3327. width:543px;
  3328. height:32px;
  3329. }
  3330. #u4461 {
  3331. border-width:0px;
  3332. position:absolute;
  3333. left:135px;
  3334. top:260px;
  3335. width:543px;
  3336. height:32px;
  3337. display:flex;
  3338. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3339. font-weight:400;
  3340. font-style:normal;
  3341. font-size:12px;
  3342. color:#333333;
  3343. }
  3344. #u4461 .text {
  3345. position:absolute;
  3346. align-self:center;
  3347. padding:2px 2px 2px 0px;
  3348. box-sizing:border-box;
  3349. width:100%;
  3350. }
  3351. #u4461_text {
  3352. border-width:0px;
  3353. word-wrap:break-word;
  3354. text-transform:none;
  3355. visibility:hidden;
  3356. }
  3357. #u4462_img {
  3358. border-width:0px;
  3359. position:absolute;
  3360. left:0px;
  3361. top:0px;
  3362. width:135px;
  3363. height:32px;
  3364. }
  3365. #u4462 {
  3366. border-width:0px;
  3367. position:absolute;
  3368. left:678px;
  3369. top:260px;
  3370. width:135px;
  3371. height:32px;
  3372. display:flex;
  3373. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3374. font-weight:400;
  3375. font-style:normal;
  3376. font-size:12px;
  3377. color:#333333;
  3378. }
  3379. #u4462 .text {
  3380. position:absolute;
  3381. align-self:center;
  3382. padding:2px 2px 2px 0px;
  3383. box-sizing:border-box;
  3384. width:100%;
  3385. }
  3386. #u4462_text {
  3387. border-width:0px;
  3388. word-wrap:break-word;
  3389. text-transform:none;
  3390. visibility:hidden;
  3391. }
  3392. #u4463_img {
  3393. border-width:0px;
  3394. position:absolute;
  3395. left:0px;
  3396. top:0px;
  3397. width:135px;
  3398. height:32px;
  3399. }
  3400. #u4463 {
  3401. border-width:0px;
  3402. position:absolute;
  3403. left:813px;
  3404. top:260px;
  3405. width:135px;
  3406. height:32px;
  3407. display:flex;
  3408. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3409. font-weight:400;
  3410. font-style:normal;
  3411. font-size:12px;
  3412. color:#333333;
  3413. }
  3414. #u4463 .text {
  3415. position:absolute;
  3416. align-self:center;
  3417. padding:2px 2px 2px 0px;
  3418. box-sizing:border-box;
  3419. width:100%;
  3420. }
  3421. #u4463_text {
  3422. border-width:0px;
  3423. word-wrap:break-word;
  3424. text-transform:none;
  3425. visibility:hidden;
  3426. }
  3427. #u4464_img {
  3428. border-width:0px;
  3429. position:absolute;
  3430. left:0px;
  3431. top:0px;
  3432. width:135px;
  3433. height:32px;
  3434. }
  3435. #u4464 {
  3436. border-width:0px;
  3437. position:absolute;
  3438. left:948px;
  3439. top:260px;
  3440. width:135px;
  3441. height:32px;
  3442. display:flex;
  3443. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3444. font-weight:400;
  3445. font-style:normal;
  3446. font-size:12px;
  3447. color:#333333;
  3448. }
  3449. #u4464 .text {
  3450. position:absolute;
  3451. align-self:center;
  3452. padding:2px 2px 2px 0px;
  3453. box-sizing:border-box;
  3454. width:100%;
  3455. }
  3456. #u4464_text {
  3457. border-width:0px;
  3458. word-wrap:break-word;
  3459. text-transform:none;
  3460. visibility:hidden;
  3461. }
  3462. #u4465_img {
  3463. border-width:0px;
  3464. position:absolute;
  3465. left:0px;
  3466. top:0px;
  3467. width:137px;
  3468. height:32px;
  3469. }
  3470. #u4465 {
  3471. border-width:0px;
  3472. position:absolute;
  3473. left:1083px;
  3474. top:260px;
  3475. width:137px;
  3476. height:32px;
  3477. display:flex;
  3478. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3479. font-weight:400;
  3480. font-style:normal;
  3481. font-size:12px;
  3482. color:#333333;
  3483. }
  3484. #u4465 .text {
  3485. position:absolute;
  3486. align-self:center;
  3487. padding:2px 2px 2px 0px;
  3488. box-sizing:border-box;
  3489. width:100%;
  3490. }
  3491. #u4465_text {
  3492. border-width:0px;
  3493. word-wrap:break-word;
  3494. text-transform:none;
  3495. visibility:hidden;
  3496. }
  3497. #u4466_img {
  3498. border-width:0px;
  3499. position:absolute;
  3500. left:0px;
  3501. top:0px;
  3502. width:135px;
  3503. height:30px;
  3504. }
  3505. #u4466 {
  3506. border-width:0px;
  3507. position:absolute;
  3508. left:0px;
  3509. top:292px;
  3510. width:135px;
  3511. height:30px;
  3512. display:flex;
  3513. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3514. font-weight:400;
  3515. font-style:normal;
  3516. font-size:12px;
  3517. color:#333333;
  3518. }
  3519. #u4466 .text {
  3520. position:absolute;
  3521. align-self:center;
  3522. padding:2px 2px 2px 0px;
  3523. box-sizing:border-box;
  3524. width:100%;
  3525. }
  3526. #u4466_text {
  3527. border-width:0px;
  3528. word-wrap:break-word;
  3529. text-transform:none;
  3530. visibility:hidden;
  3531. }
  3532. #u4467_img {
  3533. border-width:0px;
  3534. position:absolute;
  3535. left:0px;
  3536. top:0px;
  3537. width:543px;
  3538. height:30px;
  3539. }
  3540. #u4467 {
  3541. border-width:0px;
  3542. position:absolute;
  3543. left:135px;
  3544. top:292px;
  3545. width:543px;
  3546. height:30px;
  3547. display:flex;
  3548. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3549. font-weight:400;
  3550. font-style:normal;
  3551. font-size:12px;
  3552. color:#333333;
  3553. }
  3554. #u4467 .text {
  3555. position:absolute;
  3556. align-self:center;
  3557. padding:2px 2px 2px 0px;
  3558. box-sizing:border-box;
  3559. width:100%;
  3560. }
  3561. #u4467_text {
  3562. border-width:0px;
  3563. word-wrap:break-word;
  3564. text-transform:none;
  3565. visibility:hidden;
  3566. }
  3567. #u4468_img {
  3568. border-width:0px;
  3569. position:absolute;
  3570. left:0px;
  3571. top:0px;
  3572. width:135px;
  3573. height:30px;
  3574. }
  3575. #u4468 {
  3576. border-width:0px;
  3577. position:absolute;
  3578. left:678px;
  3579. top:292px;
  3580. width:135px;
  3581. height:30px;
  3582. display:flex;
  3583. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3584. font-weight:400;
  3585. font-style:normal;
  3586. font-size:12px;
  3587. color:#333333;
  3588. }
  3589. #u4468 .text {
  3590. position:absolute;
  3591. align-self:center;
  3592. padding:2px 2px 2px 0px;
  3593. box-sizing:border-box;
  3594. width:100%;
  3595. }
  3596. #u4468_text {
  3597. border-width:0px;
  3598. word-wrap:break-word;
  3599. text-transform:none;
  3600. visibility:hidden;
  3601. }
  3602. #u4469_img {
  3603. border-width:0px;
  3604. position:absolute;
  3605. left:0px;
  3606. top:0px;
  3607. width:135px;
  3608. height:30px;
  3609. }
  3610. #u4469 {
  3611. border-width:0px;
  3612. position:absolute;
  3613. left:813px;
  3614. top:292px;
  3615. width:135px;
  3616. height:30px;
  3617. display:flex;
  3618. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3619. font-weight:400;
  3620. font-style:normal;
  3621. font-size:12px;
  3622. color:#333333;
  3623. }
  3624. #u4469 .text {
  3625. position:absolute;
  3626. align-self:center;
  3627. padding:2px 2px 2px 0px;
  3628. box-sizing:border-box;
  3629. width:100%;
  3630. }
  3631. #u4469_text {
  3632. border-width:0px;
  3633. word-wrap:break-word;
  3634. text-transform:none;
  3635. visibility:hidden;
  3636. }
  3637. #u4470_img {
  3638. border-width:0px;
  3639. position:absolute;
  3640. left:0px;
  3641. top:0px;
  3642. width:135px;
  3643. height:30px;
  3644. }
  3645. #u4470 {
  3646. border-width:0px;
  3647. position:absolute;
  3648. left:948px;
  3649. top:292px;
  3650. width:135px;
  3651. height:30px;
  3652. display:flex;
  3653. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3654. font-weight:400;
  3655. font-style:normal;
  3656. font-size:12px;
  3657. color:#333333;
  3658. }
  3659. #u4470 .text {
  3660. position:absolute;
  3661. align-self:center;
  3662. padding:2px 2px 2px 0px;
  3663. box-sizing:border-box;
  3664. width:100%;
  3665. }
  3666. #u4470_text {
  3667. border-width:0px;
  3668. word-wrap:break-word;
  3669. text-transform:none;
  3670. visibility:hidden;
  3671. }
  3672. #u4471_img {
  3673. border-width:0px;
  3674. position:absolute;
  3675. left:0px;
  3676. top:0px;
  3677. width:137px;
  3678. height:30px;
  3679. }
  3680. #u4471 {
  3681. border-width:0px;
  3682. position:absolute;
  3683. left:1083px;
  3684. top:292px;
  3685. width:137px;
  3686. height:30px;
  3687. display:flex;
  3688. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3689. font-weight:400;
  3690. font-style:normal;
  3691. font-size:12px;
  3692. color:#333333;
  3693. }
  3694. #u4471 .text {
  3695. position:absolute;
  3696. align-self:center;
  3697. padding:2px 2px 2px 0px;
  3698. box-sizing:border-box;
  3699. width:100%;
  3700. }
  3701. #u4471_text {
  3702. border-width:0px;
  3703. word-wrap:break-word;
  3704. text-transform:none;
  3705. visibility:hidden;
  3706. }
  3707. #u4472 {
  3708. border-width:0px;
  3709. position:absolute;
  3710. left:0px;
  3711. top:0px;
  3712. width:0px;
  3713. height:0px;
  3714. }
  3715. #u4473_div {
  3716. border-width:0px;
  3717. position:absolute;
  3718. left:0px;
  3719. top:0px;
  3720. width:140px;
  3721. height:28px;
  3722. background:inherit;
  3723. background-color:rgba(255, 255, 255, 1);
  3724. box-sizing:border-box;
  3725. border-width:1px;
  3726. border-style:solid;
  3727. border-color:rgba(201, 201, 201, 1);
  3728. border-radius:4px;
  3729. -moz-box-shadow:none;
  3730. -webkit-box-shadow:none;
  3731. box-shadow:none;
  3732. font-family:'Microsoft YaHei', sans-serif;
  3733. font-weight:400;
  3734. font-style:normal;
  3735. font-size:14px;
  3736. color:#CCCCCC;
  3737. text-align:left;
  3738. }
  3739. #u4473 {
  3740. border-width:0px;
  3741. position:absolute;
  3742. left:1254px;
  3743. top:111px;
  3744. width:140px;
  3745. height:28px;
  3746. display:flex;
  3747. font-family:'Microsoft YaHei', sans-serif;
  3748. font-weight:400;
  3749. font-style:normal;
  3750. font-size:14px;
  3751. color:#CCCCCC;
  3752. text-align:left;
  3753. }
  3754. #u4473 .text {
  3755. position:absolute;
  3756. align-self:center;
  3757. padding:2px 8px 2px 8px;
  3758. box-sizing:border-box;
  3759. width:100%;
  3760. }
  3761. #u4473_text {
  3762. border-width:0px;
  3763. word-wrap:break-word;
  3764. text-transform:none;
  3765. visibility:hidden;
  3766. }
  3767. #u4474_input {
  3768. position:absolute;
  3769. left:0px;
  3770. top:0px;
  3771. width:114px;
  3772. height:26px;
  3773. padding:2px 2px 2px 2px;
  3774. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3775. font-weight:400;
  3776. font-style:normal;
  3777. font-size:14px;
  3778. letter-spacing:normal;
  3779. color:#000000;
  3780. vertical-align:none;
  3781. text-align:left;
  3782. text-transform:none;
  3783. background-color:transparent;
  3784. border-color:transparent;
  3785. }
  3786. #u4474_input.disabled {
  3787. position:absolute;
  3788. left:0px;
  3789. top:0px;
  3790. width:114px;
  3791. height:26px;
  3792. padding:2px 2px 2px 2px;
  3793. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3794. font-weight:400;
  3795. font-style:normal;
  3796. font-size:14px;
  3797. letter-spacing:normal;
  3798. color:#000000;
  3799. vertical-align:none;
  3800. text-align:left;
  3801. text-transform:none;
  3802. background-color:transparent;
  3803. border-color:transparent;
  3804. }
  3805. #u4474_div {
  3806. border-width:0px;
  3807. position:absolute;
  3808. left:0px;
  3809. top:0px;
  3810. width:114px;
  3811. height:26px;
  3812. background:inherit;
  3813. background-color:rgba(255, 255, 255, 1);
  3814. border:none;
  3815. border-radius:0px;
  3816. -moz-box-shadow:none;
  3817. -webkit-box-shadow:none;
  3818. box-shadow:none;
  3819. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3820. font-weight:400;
  3821. font-style:normal;
  3822. font-size:14px;
  3823. }
  3824. #u4474 {
  3825. border-width:0px;
  3826. position:absolute;
  3827. left:1260px;
  3828. top:112px;
  3829. width:114px;
  3830. height:26px;
  3831. display:flex;
  3832. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3833. font-weight:400;
  3834. font-style:normal;
  3835. font-size:14px;
  3836. }
  3837. #u4474 .text {
  3838. position:absolute;
  3839. align-self:center;
  3840. padding:2px 2px 2px 2px;
  3841. box-sizing:border-box;
  3842. width:100%;
  3843. }
  3844. #u4474_div.disabled {
  3845. border-width:0px;
  3846. position:absolute;
  3847. left:0px;
  3848. top:0px;
  3849. width:114px;
  3850. height:26px;
  3851. background:inherit;
  3852. background-color:rgba(240, 240, 240, 1);
  3853. border:none;
  3854. border-radius:0px;
  3855. -moz-box-shadow:none;
  3856. -webkit-box-shadow:none;
  3857. box-shadow:none;
  3858. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3859. font-weight:400;
  3860. font-style:normal;
  3861. font-size:14px;
  3862. }
  3863. #u4474.disabled {
  3864. }
  3865. #u4475_img {
  3866. border-width:0px;
  3867. position:absolute;
  3868. left:0px;
  3869. top:0px;
  3870. width:13px;
  3871. height:15px;
  3872. }
  3873. #u4475 {
  3874. border-width:0px;
  3875. position:absolute;
  3876. left:1374px;
  3877. top:118px;
  3878. width:13px;
  3879. height:15px;
  3880. display:flex;
  3881. }
  3882. #u4475 .text {
  3883. position:absolute;
  3884. align-self:center;
  3885. padding:2px 2px 2px 2px;
  3886. box-sizing:border-box;
  3887. width:100%;
  3888. }
  3889. #u4475_text {
  3890. border-width:0px;
  3891. word-wrap:break-word;
  3892. text-transform:none;
  3893. visibility:hidden;
  3894. }
  3895. #u4476_div {
  3896. border-width:0px;
  3897. position:absolute;
  3898. left:0px;
  3899. top:0px;
  3900. width:80px;
  3901. height:30px;
  3902. background:inherit;
  3903. background-color:rgba(24, 144, 255, 1);
  3904. box-sizing:border-box;
  3905. border-width:1px;
  3906. border-style:solid;
  3907. border-color:rgba(0, 153, 255, 1);
  3908. border-radius:4px;
  3909. -moz-box-shadow:none;
  3910. -webkit-box-shadow:none;
  3911. box-shadow:none;
  3912. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3913. font-weight:400;
  3914. font-style:normal;
  3915. font-size:14px;
  3916. color:#FFFFFF;
  3917. }
  3918. #u4476 {
  3919. border-width:0px;
  3920. position:absolute;
  3921. left:350px;
  3922. top:161px;
  3923. width:80px;
  3924. height:30px;
  3925. display:flex;
  3926. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3927. font-weight:400;
  3928. font-style:normal;
  3929. font-size:14px;
  3930. color:#FFFFFF;
  3931. }
  3932. #u4476 .text {
  3933. position:absolute;
  3934. align-self:center;
  3935. padding:5px 0px 5px 0px;
  3936. box-sizing:border-box;
  3937. width:100%;
  3938. }
  3939. #u4476_text {
  3940. border-width:0px;
  3941. word-wrap:break-word;
  3942. text-transform:none;
  3943. }
  3944. #u4477 {
  3945. border-width:0px;
  3946. position:absolute;
  3947. left:0px;
  3948. top:0px;
  3949. width:0px;
  3950. height:0px;
  3951. }
  3952. #u4478_div {
  3953. border-width:0px;
  3954. position:absolute;
  3955. left:0px;
  3956. top:0px;
  3957. width:140px;
  3958. height:30px;
  3959. background:inherit;
  3960. background-color:rgba(255, 255, 255, 1);
  3961. box-sizing:border-box;
  3962. border-width:1px;
  3963. border-style:solid;
  3964. border-color:rgba(201, 201, 201, 1);
  3965. border-radius:4px;
  3966. -moz-box-shadow:none;
  3967. -webkit-box-shadow:none;
  3968. box-shadow:none;
  3969. font-family:'Microsoft YaHei', sans-serif;
  3970. font-weight:400;
  3971. font-style:normal;
  3972. font-size:14px;
  3973. color:#CCCCCC;
  3974. text-align:left;
  3975. }
  3976. #u4478 {
  3977. border-width:0px;
  3978. position:absolute;
  3979. left:804px;
  3980. top:110px;
  3981. width:140px;
  3982. height:30px;
  3983. display:flex;
  3984. font-family:'Microsoft YaHei', sans-serif;
  3985. font-weight:400;
  3986. font-style:normal;
  3987. font-size:14px;
  3988. color:#CCCCCC;
  3989. text-align:left;
  3990. }
  3991. #u4478 .text {
  3992. position:absolute;
  3993. align-self:center;
  3994. padding:2px 8px 2px 8px;
  3995. box-sizing:border-box;
  3996. width:100%;
  3997. }
  3998. #u4478_text {
  3999. border-width:0px;
  4000. word-wrap:break-word;
  4001. text-transform:none;
  4002. visibility:hidden;
  4003. }
  4004. #u4479_input {
  4005. position:absolute;
  4006. left:0px;
  4007. top:0px;
  4008. width:127px;
  4009. height:25px;
  4010. padding:2px 2px 2px 2px;
  4011. font-family:'Microsoft YaHei', sans-serif;
  4012. font-weight:400;
  4013. font-style:normal;
  4014. font-size:10px;
  4015. letter-spacing:normal;
  4016. color:#000000;
  4017. vertical-align:none;
  4018. text-align:left;
  4019. text-transform:none;
  4020. background-color:transparent;
  4021. border-color:transparent;
  4022. }
  4023. #u4479_input.disabled {
  4024. position:absolute;
  4025. left:0px;
  4026. top:0px;
  4027. width:127px;
  4028. height:25px;
  4029. padding:2px 2px 2px 2px;
  4030. font-family:'Microsoft YaHei', sans-serif;
  4031. font-weight:400;
  4032. font-style:normal;
  4033. font-size:10px;
  4034. letter-spacing:normal;
  4035. color:#000000;
  4036. vertical-align:none;
  4037. text-align:left;
  4038. text-transform:none;
  4039. background-color:transparent;
  4040. border-color:transparent;
  4041. }
  4042. #u4479_div {
  4043. border-width:0px;
  4044. position:absolute;
  4045. left:0px;
  4046. top:0px;
  4047. width:127px;
  4048. height:25px;
  4049. background:inherit;
  4050. background-color:rgba(255, 255, 255, 1);
  4051. border:none;
  4052. border-radius:0px;
  4053. -moz-box-shadow:none;
  4054. -webkit-box-shadow:none;
  4055. box-shadow:none;
  4056. font-family:'Microsoft YaHei', sans-serif;
  4057. font-weight:400;
  4058. font-style:normal;
  4059. font-size:10px;
  4060. }
  4061. #u4479 {
  4062. border-width:0px;
  4063. position:absolute;
  4064. left:812px;
  4065. top:111px;
  4066. width:127px;
  4067. height:25px;
  4068. display:flex;
  4069. font-family:'Microsoft YaHei', sans-serif;
  4070. font-weight:400;
  4071. font-style:normal;
  4072. font-size:10px;
  4073. }
  4074. #u4479 .text {
  4075. position:absolute;
  4076. align-self:center;
  4077. padding:2px 2px 2px 2px;
  4078. box-sizing:border-box;
  4079. width:100%;
  4080. }
  4081. #u4479_div.disabled {
  4082. border-width:0px;
  4083. position:absolute;
  4084. left:0px;
  4085. top:0px;
  4086. width:127px;
  4087. height:25px;
  4088. background:inherit;
  4089. background-color:rgba(240, 240, 240, 1);
  4090. border:none;
  4091. border-radius:0px;
  4092. -moz-box-shadow:none;
  4093. -webkit-box-shadow:none;
  4094. box-shadow:none;
  4095. font-family:'Microsoft YaHei', sans-serif;
  4096. font-weight:400;
  4097. font-style:normal;
  4098. font-size:10px;
  4099. }
  4100. #u4479.disabled {
  4101. }
  4102. #u4480 {
  4103. border-width:0px;
  4104. position:absolute;
  4105. left:0px;
  4106. top:0px;
  4107. width:0px;
  4108. height:0px;
  4109. }
  4110. #u4481_div {
  4111. border-width:0px;
  4112. position:absolute;
  4113. left:0px;
  4114. top:0px;
  4115. width:140px;
  4116. height:30px;
  4117. background:inherit;
  4118. background-color:rgba(255, 255, 255, 1);
  4119. box-sizing:border-box;
  4120. border-width:1px;
  4121. border-style:solid;
  4122. border-color:rgba(215, 215, 215, 1);
  4123. border-radius:4px;
  4124. -moz-box-shadow:none;
  4125. -webkit-box-shadow:none;
  4126. box-shadow:none;
  4127. font-size:11px;
  4128. }
  4129. #u4481 {
  4130. border-width:0px;
  4131. position:absolute;
  4132. left:654px;
  4133. top:110px;
  4134. width:140px;
  4135. height:30px;
  4136. display:flex;
  4137. font-size:11px;
  4138. }
  4139. #u4481 .text {
  4140. position:absolute;
  4141. align-self:center;
  4142. padding:2px 2px 2px 2px;
  4143. box-sizing:border-box;
  4144. width:100%;
  4145. }
  4146. #u4481_text {
  4147. border-width:0px;
  4148. word-wrap:break-word;
  4149. text-transform:none;
  4150. visibility:hidden;
  4151. }
  4152. #u4482_input {
  4153. position:absolute;
  4154. left:0px;
  4155. top:0px;
  4156. width:126px;
  4157. height:23px;
  4158. padding:2px 2px 2px 2px;
  4159. font-family:'ArialMT', 'Arial', sans-serif;
  4160. font-weight:400;
  4161. font-style:normal;
  4162. font-size:11px;
  4163. letter-spacing:normal;
  4164. color:#AAAAAA;
  4165. vertical-align:none;
  4166. text-align:left;
  4167. text-transform:none;
  4168. background-color:transparent;
  4169. border-color:transparent;
  4170. }
  4171. #u4482_input.disabled {
  4172. position:absolute;
  4173. left:0px;
  4174. top:0px;
  4175. width:126px;
  4176. height:23px;
  4177. padding:2px 2px 2px 2px;
  4178. font-family:'ArialMT', 'Arial', sans-serif;
  4179. font-weight:400;
  4180. font-style:normal;
  4181. font-size:11px;
  4182. letter-spacing:normal;
  4183. color:#AAAAAA;
  4184. vertical-align:none;
  4185. text-align:left;
  4186. text-transform:none;
  4187. background-color:transparent;
  4188. border-color:transparent;
  4189. }
  4190. #u4482_div {
  4191. border-width:0px;
  4192. position:absolute;
  4193. left:0px;
  4194. top:0px;
  4195. width:126px;
  4196. height:23px;
  4197. background:inherit;
  4198. background-color:rgba(255, 255, 255, 1);
  4199. border:none;
  4200. border-radius:0px;
  4201. -moz-box-shadow:none;
  4202. -webkit-box-shadow:none;
  4203. box-shadow:none;
  4204. font-size:11px;
  4205. color:#AAAAAA;
  4206. }
  4207. #u4482 {
  4208. border-width:0px;
  4209. position:absolute;
  4210. left:661px;
  4211. top:112px;
  4212. width:126px;
  4213. height:23px;
  4214. display:flex;
  4215. font-size:11px;
  4216. color:#AAAAAA;
  4217. }
  4218. #u4482 .text {
  4219. position:absolute;
  4220. align-self:flex-start;
  4221. padding:2px 2px 2px 2px;
  4222. box-sizing:border-box;
  4223. width:100%;
  4224. }
  4225. #u4482_div.disabled {
  4226. border-width:0px;
  4227. position:absolute;
  4228. left:0px;
  4229. top:0px;
  4230. width:126px;
  4231. height:23px;
  4232. background:inherit;
  4233. background-color:rgba(240, 240, 240, 1);
  4234. border:none;
  4235. border-radius:0px;
  4236. -moz-box-shadow:none;
  4237. -webkit-box-shadow:none;
  4238. box-shadow:none;
  4239. font-size:11px;
  4240. color:#AAAAAA;
  4241. }
  4242. #u4482.disabled {
  4243. }
  4244. .u4482_input_option {
  4245. font-size:11px;
  4246. }
  4247. #u4483 {
  4248. border-width:0px;
  4249. position:absolute;
  4250. left:0px;
  4251. top:0px;
  4252. width:0px;
  4253. height:0px;
  4254. }
  4255. #u4484_div {
  4256. border-width:0px;
  4257. position:absolute;
  4258. left:0px;
  4259. top:0px;
  4260. width:100px;
  4261. height:140px;
  4262. background:inherit;
  4263. background-color:rgba(255, 255, 255, 1);
  4264. box-sizing:border-box;
  4265. border-width:1px;
  4266. border-style:solid;
  4267. border-color:rgba(242, 242, 242, 1);
  4268. border-radius:4px;
  4269. -moz-box-shadow:0px 0px 5px rgba(0, 0, 0, 0.349019607843137);
  4270. -webkit-box-shadow:0px 0px 5px rgba(0, 0, 0, 0.349019607843137);
  4271. box-shadow:0px 0px 5px rgba(0, 0, 0, 0.349019607843137);
  4272. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4273. font-weight:400;
  4274. font-style:normal;
  4275. font-size:14px;
  4276. text-align:left;
  4277. }
  4278. #u4484 {
  4279. border-width:0px;
  4280. position:absolute;
  4281. left:1439px;
  4282. top:303px;
  4283. width:100px;
  4284. height:140px;
  4285. display:flex;
  4286. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4287. font-weight:400;
  4288. font-style:normal;
  4289. font-size:14px;
  4290. text-align:left;
  4291. }
  4292. #u4484 .text {
  4293. position:absolute;
  4294. align-self:center;
  4295. padding:2px 2px 2px 2px;
  4296. box-sizing:border-box;
  4297. width:100%;
  4298. }
  4299. #u4484_text {
  4300. border-width:0px;
  4301. word-wrap:break-word;
  4302. text-transform:none;
  4303. visibility:hidden;
  4304. }
  4305. #u4485_div {
  4306. border-width:0px;
  4307. position:absolute;
  4308. left:0px;
  4309. top:0px;
  4310. width:85px;
  4311. height:40px;
  4312. background:inherit;
  4313. background-color:rgba(255, 255, 255, 1);
  4314. box-sizing:border-box;
  4315. border-width:1px;
  4316. border-style:solid;
  4317. border-color:rgba(215, 215, 215, 1);
  4318. border-left:0px;
  4319. border-top:0px;
  4320. border-right:0px;
  4321. border-radius:0px;
  4322. border-bottom-right-radius:0px;
  4323. border-bottom-left-radius:0px;
  4324. -moz-box-shadow:none;
  4325. -webkit-box-shadow:none;
  4326. box-shadow:none;
  4327. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4328. font-weight:400;
  4329. font-style:normal;
  4330. font-size:14px;
  4331. }
  4332. #u4485 {
  4333. border-width:0px;
  4334. position:absolute;
  4335. left:1447px;
  4336. top:313px;
  4337. width:85px;
  4338. height:40px;
  4339. display:flex;
  4340. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4341. font-weight:400;
  4342. font-style:normal;
  4343. font-size:14px;
  4344. }
  4345. #u4485 .text {
  4346. position:absolute;
  4347. align-self:center;
  4348. padding:2px 2px 2px 2px;
  4349. box-sizing:border-box;
  4350. width:100%;
  4351. }
  4352. #u4485_text {
  4353. border-width:0px;
  4354. word-wrap:break-word;
  4355. text-transform:none;
  4356. }
  4357. #u4486_div {
  4358. border-width:0px;
  4359. position:absolute;
  4360. left:0px;
  4361. top:0px;
  4362. width:85px;
  4363. height:40px;
  4364. background:inherit;
  4365. background-color:rgba(255, 255, 255, 1);
  4366. border:none;
  4367. border-left:0px;
  4368. border-top:0px;
  4369. border-right:0px;
  4370. border-radius:0px;
  4371. border-bottom-right-radius:0px;
  4372. border-bottom-left-radius:0px;
  4373. -moz-box-shadow:none;
  4374. -webkit-box-shadow:none;
  4375. box-shadow:none;
  4376. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4377. font-weight:400;
  4378. font-style:normal;
  4379. font-size:14px;
  4380. color:#D9001B;
  4381. }
  4382. #u4486 {
  4383. border-width:0px;
  4384. position:absolute;
  4385. left:1447px;
  4386. top:393px;
  4387. width:85px;
  4388. height:40px;
  4389. display:flex;
  4390. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4391. font-weight:400;
  4392. font-style:normal;
  4393. font-size:14px;
  4394. color:#D9001B;
  4395. }
  4396. #u4486 .text {
  4397. position:absolute;
  4398. align-self:center;
  4399. padding:2px 2px 2px 2px;
  4400. box-sizing:border-box;
  4401. width:100%;
  4402. }
  4403. #u4486_text {
  4404. border-width:0px;
  4405. word-wrap:break-word;
  4406. text-transform:none;
  4407. }
  4408. #u4487_div {
  4409. border-width:0px;
  4410. position:absolute;
  4411. left:0px;
  4412. top:0px;
  4413. width:85px;
  4414. height:40px;
  4415. background:inherit;
  4416. background-color:rgba(255, 255, 255, 1);
  4417. box-sizing:border-box;
  4418. border-width:1px;
  4419. border-style:solid;
  4420. border-color:rgba(215, 215, 215, 1);
  4421. border-left:0px;
  4422. border-top:0px;
  4423. border-right:0px;
  4424. border-radius:0px;
  4425. border-bottom-right-radius:0px;
  4426. border-bottom-left-radius:0px;
  4427. -moz-box-shadow:none;
  4428. -webkit-box-shadow:none;
  4429. box-shadow:none;
  4430. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4431. font-weight:400;
  4432. font-style:normal;
  4433. font-size:14px;
  4434. }
  4435. #u4487 {
  4436. border-width:0px;
  4437. position:absolute;
  4438. left:1447px;
  4439. top:353px;
  4440. width:85px;
  4441. height:40px;
  4442. display:flex;
  4443. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4444. font-weight:400;
  4445. font-style:normal;
  4446. font-size:14px;
  4447. }
  4448. #u4487 .text {
  4449. position:absolute;
  4450. align-self:center;
  4451. padding:2px 2px 2px 2px;
  4452. box-sizing:border-box;
  4453. width:100%;
  4454. }
  4455. #u4487_text {
  4456. border-width:0px;
  4457. word-wrap:break-word;
  4458. text-transform:none;
  4459. }
  4460. #u4488 {
  4461. border-width:0px;
  4462. position:absolute;
  4463. left:0px;
  4464. top:0px;
  4465. width:0px;
  4466. height:0px;
  4467. }
  4468. #u4489_div {
  4469. border-width:0px;
  4470. position:absolute;
  4471. left:0px;
  4472. top:0px;
  4473. width:140px;
  4474. height:30px;
  4475. background:inherit;
  4476. background-color:rgba(255, 255, 255, 1);
  4477. box-sizing:border-box;
  4478. border-width:1px;
  4479. border-style:solid;
  4480. border-color:rgba(215, 215, 215, 1);
  4481. border-radius:4px;
  4482. -moz-box-shadow:none;
  4483. -webkit-box-shadow:none;
  4484. box-shadow:none;
  4485. font-size:11px;
  4486. }
  4487. #u4489 {
  4488. border-width:0px;
  4489. position:absolute;
  4490. left:954px;
  4491. top:110px;
  4492. width:140px;
  4493. height:30px;
  4494. display:flex;
  4495. font-size:11px;
  4496. }
  4497. #u4489 .text {
  4498. position:absolute;
  4499. align-self:center;
  4500. padding:2px 2px 2px 2px;
  4501. box-sizing:border-box;
  4502. width:100%;
  4503. }
  4504. #u4489_text {
  4505. border-width:0px;
  4506. word-wrap:break-word;
  4507. text-transform:none;
  4508. visibility:hidden;
  4509. }
  4510. #u4490_input {
  4511. position:absolute;
  4512. left:0px;
  4513. top:0px;
  4514. width:126px;
  4515. height:23px;
  4516. padding:2px 2px 2px 2px;
  4517. font-family:'ArialMT', 'Arial', sans-serif;
  4518. font-weight:400;
  4519. font-style:normal;
  4520. font-size:11px;
  4521. letter-spacing:normal;
  4522. color:#AAAAAA;
  4523. vertical-align:none;
  4524. text-align:left;
  4525. text-transform:none;
  4526. background-color:transparent;
  4527. border-color:transparent;
  4528. }
  4529. #u4490_input.disabled {
  4530. position:absolute;
  4531. left:0px;
  4532. top:0px;
  4533. width:126px;
  4534. height:23px;
  4535. padding:2px 2px 2px 2px;
  4536. font-family:'ArialMT', 'Arial', sans-serif;
  4537. font-weight:400;
  4538. font-style:normal;
  4539. font-size:11px;
  4540. letter-spacing:normal;
  4541. color:#AAAAAA;
  4542. vertical-align:none;
  4543. text-align:left;
  4544. text-transform:none;
  4545. background-color:transparent;
  4546. border-color:transparent;
  4547. }
  4548. #u4490_div {
  4549. border-width:0px;
  4550. position:absolute;
  4551. left:0px;
  4552. top:0px;
  4553. width:126px;
  4554. height:23px;
  4555. background:inherit;
  4556. background-color:rgba(255, 255, 255, 1);
  4557. border:none;
  4558. border-radius:0px;
  4559. -moz-box-shadow:none;
  4560. -webkit-box-shadow:none;
  4561. box-shadow:none;
  4562. font-size:11px;
  4563. color:#AAAAAA;
  4564. }
  4565. #u4490 {
  4566. border-width:0px;
  4567. position:absolute;
  4568. left:961px;
  4569. top:112px;
  4570. width:126px;
  4571. height:23px;
  4572. display:flex;
  4573. font-size:11px;
  4574. color:#AAAAAA;
  4575. }
  4576. #u4490 .text {
  4577. position:absolute;
  4578. align-self:flex-start;
  4579. padding:2px 2px 2px 2px;
  4580. box-sizing:border-box;
  4581. width:100%;
  4582. }
  4583. #u4490_div.disabled {
  4584. border-width:0px;
  4585. position:absolute;
  4586. left:0px;
  4587. top:0px;
  4588. width:126px;
  4589. height:23px;
  4590. background:inherit;
  4591. background-color:rgba(240, 240, 240, 1);
  4592. border:none;
  4593. border-radius:0px;
  4594. -moz-box-shadow:none;
  4595. -webkit-box-shadow:none;
  4596. box-shadow:none;
  4597. font-size:11px;
  4598. color:#AAAAAA;
  4599. }
  4600. #u4490.disabled {
  4601. }
  4602. .u4490_input_option {
  4603. font-size:11px;
  4604. }
  4605. #u4491 {
  4606. border-width:0px;
  4607. position:absolute;
  4608. left:0px;
  4609. top:0px;
  4610. width:0px;
  4611. height:0px;
  4612. }
  4613. #u4492_div {
  4614. border-width:0px;
  4615. position:absolute;
  4616. left:0px;
  4617. top:0px;
  4618. width:140px;
  4619. height:30px;
  4620. background:inherit;
  4621. background-color:rgba(255, 255, 255, 1);
  4622. box-sizing:border-box;
  4623. border-width:1px;
  4624. border-style:solid;
  4625. border-color:rgba(201, 201, 201, 1);
  4626. border-radius:4px;
  4627. -moz-box-shadow:none;
  4628. -webkit-box-shadow:none;
  4629. box-shadow:none;
  4630. font-family:'Microsoft YaHei', sans-serif;
  4631. font-weight:400;
  4632. font-style:normal;
  4633. font-size:14px;
  4634. color:#CCCCCC;
  4635. text-align:left;
  4636. }
  4637. #u4492 {
  4638. border-width:0px;
  4639. position:absolute;
  4640. left:1104px;
  4641. top:110px;
  4642. width:140px;
  4643. height:30px;
  4644. display:flex;
  4645. font-family:'Microsoft YaHei', sans-serif;
  4646. font-weight:400;
  4647. font-style:normal;
  4648. font-size:14px;
  4649. color:#CCCCCC;
  4650. text-align:left;
  4651. }
  4652. #u4492 .text {
  4653. position:absolute;
  4654. align-self:center;
  4655. padding:2px 8px 2px 8px;
  4656. box-sizing:border-box;
  4657. width:100%;
  4658. }
  4659. #u4492_text {
  4660. border-width:0px;
  4661. word-wrap:break-word;
  4662. text-transform:none;
  4663. visibility:hidden;
  4664. }
  4665. #u4493_input {
  4666. position:absolute;
  4667. left:0px;
  4668. top:0px;
  4669. width:127px;
  4670. height:25px;
  4671. padding:2px 2px 2px 2px;
  4672. font-family:'Microsoft YaHei', sans-serif;
  4673. font-weight:400;
  4674. font-style:normal;
  4675. font-size:10px;
  4676. letter-spacing:normal;
  4677. color:#000000;
  4678. vertical-align:none;
  4679. text-align:left;
  4680. text-transform:none;
  4681. background-color:transparent;
  4682. border-color:transparent;
  4683. }
  4684. #u4493_input.disabled {
  4685. position:absolute;
  4686. left:0px;
  4687. top:0px;
  4688. width:127px;
  4689. height:25px;
  4690. padding:2px 2px 2px 2px;
  4691. font-family:'Microsoft YaHei', sans-serif;
  4692. font-weight:400;
  4693. font-style:normal;
  4694. font-size:10px;
  4695. letter-spacing:normal;
  4696. color:#000000;
  4697. vertical-align:none;
  4698. text-align:left;
  4699. text-transform:none;
  4700. background-color:transparent;
  4701. border-color:transparent;
  4702. }
  4703. #u4493_div {
  4704. border-width:0px;
  4705. position:absolute;
  4706. left:0px;
  4707. top:0px;
  4708. width:127px;
  4709. height:25px;
  4710. background:inherit;
  4711. background-color:rgba(255, 255, 255, 1);
  4712. border:none;
  4713. border-radius:0px;
  4714. -moz-box-shadow:none;
  4715. -webkit-box-shadow:none;
  4716. box-shadow:none;
  4717. font-family:'Microsoft YaHei', sans-serif;
  4718. font-weight:400;
  4719. font-style:normal;
  4720. font-size:10px;
  4721. }
  4722. #u4493 {
  4723. border-width:0px;
  4724. position:absolute;
  4725. left:1112px;
  4726. top:111px;
  4727. width:127px;
  4728. height:25px;
  4729. display:flex;
  4730. font-family:'Microsoft YaHei', sans-serif;
  4731. font-weight:400;
  4732. font-style:normal;
  4733. font-size:10px;
  4734. }
  4735. #u4493 .text {
  4736. position:absolute;
  4737. align-self:center;
  4738. padding:2px 2px 2px 2px;
  4739. box-sizing:border-box;
  4740. width:100%;
  4741. }
  4742. #u4493_div.disabled {
  4743. border-width:0px;
  4744. position:absolute;
  4745. left:0px;
  4746. top:0px;
  4747. width:127px;
  4748. height:25px;
  4749. background:inherit;
  4750. background-color:rgba(240, 240, 240, 1);
  4751. border:none;
  4752. border-radius:0px;
  4753. -moz-box-shadow:none;
  4754. -webkit-box-shadow:none;
  4755. box-shadow:none;
  4756. font-family:'Microsoft YaHei', sans-serif;
  4757. font-weight:400;
  4758. font-style:normal;
  4759. font-size:10px;
  4760. }
  4761. #u4493.disabled {
  4762. }
  4763. #u4494 {
  4764. border-width:0px;
  4765. position:absolute;
  4766. left:0px;
  4767. top:0px;
  4768. width:0px;
  4769. height:0px;
  4770. }
  4771. #u4495_div {
  4772. border-width:0px;
  4773. position:absolute;
  4774. left:0px;
  4775. top:0px;
  4776. width:140px;
  4777. height:30px;
  4778. background:inherit;
  4779. background-color:rgba(255, 255, 255, 1);
  4780. box-sizing:border-box;
  4781. border-width:1px;
  4782. border-style:solid;
  4783. border-color:rgba(215, 215, 215, 1);
  4784. border-radius:4px;
  4785. -moz-box-shadow:none;
  4786. -webkit-box-shadow:none;
  4787. box-shadow:none;
  4788. font-size:11px;
  4789. }
  4790. #u4495 {
  4791. border-width:0px;
  4792. position:absolute;
  4793. left:354px;
  4794. top:110px;
  4795. width:140px;
  4796. height:30px;
  4797. display:flex;
  4798. font-size:11px;
  4799. }
  4800. #u4495 .text {
  4801. position:absolute;
  4802. align-self:center;
  4803. padding:2px 2px 2px 2px;
  4804. box-sizing:border-box;
  4805. width:100%;
  4806. }
  4807. #u4495_text {
  4808. border-width:0px;
  4809. word-wrap:break-word;
  4810. text-transform:none;
  4811. visibility:hidden;
  4812. }
  4813. #u4496_input {
  4814. position:absolute;
  4815. left:0px;
  4816. top:0px;
  4817. width:126px;
  4818. height:23px;
  4819. padding:2px 2px 2px 2px;
  4820. font-family:'ArialMT', 'Arial', sans-serif;
  4821. font-weight:400;
  4822. font-style:normal;
  4823. font-size:11px;
  4824. letter-spacing:normal;
  4825. color:#AAAAAA;
  4826. vertical-align:none;
  4827. text-align:left;
  4828. text-transform:none;
  4829. background-color:transparent;
  4830. border-color:transparent;
  4831. }
  4832. #u4496_input.disabled {
  4833. position:absolute;
  4834. left:0px;
  4835. top:0px;
  4836. width:126px;
  4837. height:23px;
  4838. padding:2px 2px 2px 2px;
  4839. font-family:'ArialMT', 'Arial', sans-serif;
  4840. font-weight:400;
  4841. font-style:normal;
  4842. font-size:11px;
  4843. letter-spacing:normal;
  4844. color:#AAAAAA;
  4845. vertical-align:none;
  4846. text-align:left;
  4847. text-transform:none;
  4848. background-color:transparent;
  4849. border-color:transparent;
  4850. }
  4851. #u4496_div {
  4852. border-width:0px;
  4853. position:absolute;
  4854. left:0px;
  4855. top:0px;
  4856. width:126px;
  4857. height:23px;
  4858. background:inherit;
  4859. background-color:rgba(255, 255, 255, 1);
  4860. border:none;
  4861. border-radius:0px;
  4862. -moz-box-shadow:none;
  4863. -webkit-box-shadow:none;
  4864. box-shadow:none;
  4865. font-size:11px;
  4866. color:#AAAAAA;
  4867. }
  4868. #u4496 {
  4869. border-width:0px;
  4870. position:absolute;
  4871. left:361px;
  4872. top:112px;
  4873. width:126px;
  4874. height:23px;
  4875. display:flex;
  4876. font-size:11px;
  4877. color:#AAAAAA;
  4878. }
  4879. #u4496 .text {
  4880. position:absolute;
  4881. align-self:flex-start;
  4882. padding:2px 2px 2px 2px;
  4883. box-sizing:border-box;
  4884. width:100%;
  4885. }
  4886. #u4496_div.disabled {
  4887. border-width:0px;
  4888. position:absolute;
  4889. left:0px;
  4890. top:0px;
  4891. width:126px;
  4892. height:23px;
  4893. background:inherit;
  4894. background-color:rgba(240, 240, 240, 1);
  4895. border:none;
  4896. border-radius:0px;
  4897. -moz-box-shadow:none;
  4898. -webkit-box-shadow:none;
  4899. box-shadow:none;
  4900. font-size:11px;
  4901. color:#AAAAAA;
  4902. }
  4903. #u4496.disabled {
  4904. }
  4905. .u4496_input_option {
  4906. font-size:11px;
  4907. }
  4908. #u4497 {
  4909. border-width:0px;
  4910. position:absolute;
  4911. left:0px;
  4912. top:0px;
  4913. width:0px;
  4914. height:0px;
  4915. }
  4916. #u4498_div {
  4917. border-width:0px;
  4918. position:absolute;
  4919. left:0px;
  4920. top:0px;
  4921. width:59px;
  4922. height:30px;
  4923. background:inherit;
  4924. background-color:rgba(24, 144, 255, 1);
  4925. box-sizing:border-box;
  4926. border-width:1px;
  4927. border-style:solid;
  4928. border-color:rgba(0, 153, 255, 1);
  4929. border-radius:4px;
  4930. -moz-box-shadow:none;
  4931. -webkit-box-shadow:none;
  4932. box-shadow:none;
  4933. font-family:'Microsoft YaHei', sans-serif;
  4934. font-weight:400;
  4935. font-style:normal;
  4936. font-size:14px;
  4937. color:#FFFFFF;
  4938. }
  4939. #u4498 {
  4940. border-width:0px;
  4941. position:absolute;
  4942. left:1404px;
  4943. top:110px;
  4944. width:59px;
  4945. height:30px;
  4946. display:flex;
  4947. font-family:'Microsoft YaHei', sans-serif;
  4948. font-weight:400;
  4949. font-style:normal;
  4950. font-size:14px;
  4951. color:#FFFFFF;
  4952. }
  4953. #u4498 .text {
  4954. position:absolute;
  4955. align-self:center;
  4956. padding:5px 15px 5px 15px;
  4957. box-sizing:border-box;
  4958. width:100%;
  4959. }
  4960. #u4498_text {
  4961. border-width:0px;
  4962. white-space:nowrap;
  4963. text-transform:none;
  4964. }
  4965. #u4499_div {
  4966. border-width:0px;
  4967. position:absolute;
  4968. left:0px;
  4969. top:0px;
  4970. width:55px;
  4971. height:30px;
  4972. background:inherit;
  4973. background-color:rgba(255, 255, 255, 1);
  4974. box-sizing:border-box;
  4975. border-width:1px;
  4976. border-style:solid;
  4977. border-color:rgba(170, 170, 170, 1);
  4978. border-radius:4px;
  4979. -moz-box-shadow:none;
  4980. -webkit-box-shadow:none;
  4981. box-shadow:none;
  4982. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4983. font-weight:400;
  4984. font-style:normal;
  4985. font-size:12px;
  4986. color:#555555;
  4987. }
  4988. #u4499 {
  4989. border-width:0px;
  4990. position:absolute;
  4991. left:1473px;
  4992. top:110px;
  4993. width:55px;
  4994. height:30px;
  4995. display:flex;
  4996. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4997. font-weight:400;
  4998. font-style:normal;
  4999. font-size:12px;
  5000. color:#555555;
  5001. }
  5002. #u4499 .text {
  5003. position:absolute;
  5004. align-self:center;
  5005. padding:5px 15px 5px 15px;
  5006. box-sizing:border-box;
  5007. width:100%;
  5008. }
  5009. #u4499_text {
  5010. border-width:0px;
  5011. white-space:nowrap;
  5012. text-transform:none;
  5013. }
  5014. #u4500 {
  5015. border-width:0px;
  5016. position:absolute;
  5017. left:0px;
  5018. top:0px;
  5019. width:0px;
  5020. height:0px;
  5021. }
  5022. #u4501_div {
  5023. border-width:0px;
  5024. position:absolute;
  5025. left:0px;
  5026. top:0px;
  5027. width:140px;
  5028. height:30px;
  5029. background:inherit;
  5030. background-color:rgba(255, 255, 255, 1);
  5031. box-sizing:border-box;
  5032. border-width:1px;
  5033. border-style:solid;
  5034. border-color:rgba(215, 215, 215, 1);
  5035. border-radius:4px;
  5036. -moz-box-shadow:none;
  5037. -webkit-box-shadow:none;
  5038. box-shadow:none;
  5039. font-size:11px;
  5040. }
  5041. #u4501 {
  5042. border-width:0px;
  5043. position:absolute;
  5044. left:504px;
  5045. top:110px;
  5046. width:140px;
  5047. height:30px;
  5048. display:flex;
  5049. font-size:11px;
  5050. }
  5051. #u4501 .text {
  5052. position:absolute;
  5053. align-self:center;
  5054. padding:2px 2px 2px 2px;
  5055. box-sizing:border-box;
  5056. width:100%;
  5057. }
  5058. #u4501_text {
  5059. border-width:0px;
  5060. word-wrap:break-word;
  5061. text-transform:none;
  5062. visibility:hidden;
  5063. }
  5064. #u4502_input {
  5065. position:absolute;
  5066. left:0px;
  5067. top:0px;
  5068. width:126px;
  5069. height:23px;
  5070. padding:2px 2px 2px 2px;
  5071. font-family:'ArialMT', 'Arial', sans-serif;
  5072. font-weight:400;
  5073. font-style:normal;
  5074. font-size:11px;
  5075. letter-spacing:normal;
  5076. color:#AAAAAA;
  5077. vertical-align:none;
  5078. text-align:left;
  5079. text-transform:none;
  5080. background-color:transparent;
  5081. border-color:transparent;
  5082. }
  5083. #u4502_input.disabled {
  5084. position:absolute;
  5085. left:0px;
  5086. top:0px;
  5087. width:126px;
  5088. height:23px;
  5089. padding:2px 2px 2px 2px;
  5090. font-family:'ArialMT', 'Arial', sans-serif;
  5091. font-weight:400;
  5092. font-style:normal;
  5093. font-size:11px;
  5094. letter-spacing:normal;
  5095. color:#AAAAAA;
  5096. vertical-align:none;
  5097. text-align:left;
  5098. text-transform:none;
  5099. background-color:transparent;
  5100. border-color:transparent;
  5101. }
  5102. #u4502_div {
  5103. border-width:0px;
  5104. position:absolute;
  5105. left:0px;
  5106. top:0px;
  5107. width:126px;
  5108. height:23px;
  5109. background:inherit;
  5110. background-color:rgba(255, 255, 255, 1);
  5111. border:none;
  5112. border-radius:0px;
  5113. -moz-box-shadow:none;
  5114. -webkit-box-shadow:none;
  5115. box-shadow:none;
  5116. font-size:11px;
  5117. color:#AAAAAA;
  5118. }
  5119. #u4502 {
  5120. border-width:0px;
  5121. position:absolute;
  5122. left:511px;
  5123. top:112px;
  5124. width:126px;
  5125. height:23px;
  5126. display:flex;
  5127. font-size:11px;
  5128. color:#AAAAAA;
  5129. }
  5130. #u4502 .text {
  5131. position:absolute;
  5132. align-self:flex-start;
  5133. padding:2px 2px 2px 2px;
  5134. box-sizing:border-box;
  5135. width:100%;
  5136. }
  5137. #u4502_div.disabled {
  5138. border-width:0px;
  5139. position:absolute;
  5140. left:0px;
  5141. top:0px;
  5142. width:126px;
  5143. height:23px;
  5144. background:inherit;
  5145. background-color:rgba(240, 240, 240, 1);
  5146. border:none;
  5147. border-radius:0px;
  5148. -moz-box-shadow:none;
  5149. -webkit-box-shadow:none;
  5150. box-shadow:none;
  5151. font-size:11px;
  5152. color:#AAAAAA;
  5153. }
  5154. #u4502.disabled {
  5155. }
  5156. .u4502_input_option {
  5157. font-size:11px;
  5158. }
  5159. #u4503 {
  5160. border-width:0px;
  5161. position:absolute;
  5162. left:0px;
  5163. top:0px;
  5164. width:0px;
  5165. height:0px;
  5166. }
  5167. #u4504_div {
  5168. border-width:0px;
  5169. position:absolute;
  5170. left:0px;
  5171. top:0px;
  5172. width:800px;
  5173. height:1199px;
  5174. background:inherit;
  5175. background-color:rgba(255, 255, 255, 1);
  5176. box-sizing:border-box;
  5177. border-width:1px;
  5178. border-style:solid;
  5179. border-color:rgba(215, 215, 215, 1);
  5180. border-radius:0px;
  5181. -moz-box-shadow:none;
  5182. -webkit-box-shadow:none;
  5183. box-shadow:none;
  5184. }
  5185. #u4504 {
  5186. border-width:0px;
  5187. position:absolute;
  5188. left:1661px;
  5189. top:44px;
  5190. width:800px;
  5191. height:1199px;
  5192. display:flex;
  5193. }
  5194. #u4504 .text {
  5195. position:absolute;
  5196. align-self:center;
  5197. padding:2px 2px 2px 2px;
  5198. box-sizing:border-box;
  5199. width:100%;
  5200. }
  5201. #u4504_text {
  5202. border-width:0px;
  5203. word-wrap:break-word;
  5204. text-transform:none;
  5205. visibility:hidden;
  5206. }
  5207. #u4505_div {
  5208. border-width:0px;
  5209. position:absolute;
  5210. left:0px;
  5211. top:0px;
  5212. width:73px;
  5213. height:30px;
  5214. background:inherit;
  5215. background-color:rgba(255, 255, 255, 0);
  5216. border:none;
  5217. border-radius:0px;
  5218. -moz-box-shadow:none;
  5219. -webkit-box-shadow:none;
  5220. box-shadow:none;
  5221. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5222. font-weight:400;
  5223. font-style:normal;
  5224. font-size:18px;
  5225. color:#000000;
  5226. line-height:30px;
  5227. }
  5228. #u4505 {
  5229. border-width:0px;
  5230. position:absolute;
  5231. left:1681px;
  5232. top:66px;
  5233. width:73px;
  5234. height:30px;
  5235. display:flex;
  5236. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5237. font-weight:400;
  5238. font-style:normal;
  5239. font-size:18px;
  5240. color:#000000;
  5241. line-height:30px;
  5242. }
  5243. #u4505 .text {
  5244. position:absolute;
  5245. align-self:flex-start;
  5246. padding:0px 0px 0px 0px;
  5247. box-sizing:border-box;
  5248. width:100%;
  5249. }
  5250. #u4505_text {
  5251. border-width:0px;
  5252. white-space:nowrap;
  5253. text-transform:none;
  5254. }
  5255. #u4506 {
  5256. border-width:0px;
  5257. position:absolute;
  5258. left:0px;
  5259. top:0px;
  5260. width:0px;
  5261. height:0px;
  5262. }
  5263. #u4507_div {
  5264. border-width:0px;
  5265. position:absolute;
  5266. left:0px;
  5267. top:0px;
  5268. width:40px;
  5269. height:40px;
  5270. background:inherit;
  5271. background-color:rgba(255, 255, 255, 0);
  5272. border:none;
  5273. border-top:0px;
  5274. border-right:0px;
  5275. border-bottom:0px;
  5276. border-radius:0px;
  5277. border-top-left-radius:0px;
  5278. border-bottom-left-radius:0px;
  5279. -moz-box-shadow:none;
  5280. -webkit-box-shadow:none;
  5281. box-shadow:none;
  5282. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  5283. font-weight:500;
  5284. font-style:normal;
  5285. font-size:18px;
  5286. text-align:center;
  5287. }
  5288. #u4507 {
  5289. border-width:0px;
  5290. position:absolute;
  5291. left:2421px;
  5292. top:44px;
  5293. width:40px;
  5294. height:40px;
  5295. display:flex;
  5296. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  5297. font-weight:500;
  5298. font-style:normal;
  5299. font-size:18px;
  5300. text-align:center;
  5301. }
  5302. #u4507 .text {
  5303. position:absolute;
  5304. align-self:center;
  5305. padding:5px 10px 5px 0px;
  5306. box-sizing:border-box;
  5307. width:100%;
  5308. }
  5309. #u4507_text {
  5310. border-width:0px;
  5311. word-wrap:break-word;
  5312. text-transform:none;
  5313. }
  5314. #u4508_img {
  5315. border-width:0px;
  5316. position:absolute;
  5317. left:0px;
  5318. top:0px;
  5319. width:13px;
  5320. height:13px;
  5321. }
  5322. #u4508 {
  5323. border-width:0px;
  5324. position:absolute;
  5325. left:2408px;
  5326. top:58px;
  5327. width:13px;
  5328. height:13px;
  5329. display:flex;
  5330. }
  5331. #u4508 .text {
  5332. position:absolute;
  5333. align-self:center;
  5334. padding:2px 2px 2px 2px;
  5335. box-sizing:border-box;
  5336. width:100%;
  5337. }
  5338. #u4508_text {
  5339. border-width:0px;
  5340. word-wrap:break-word;
  5341. text-transform:none;
  5342. visibility:hidden;
  5343. }
  5344. #u4509 {
  5345. border-width:0px;
  5346. position:absolute;
  5347. left:0px;
  5348. top:0px;
  5349. width:0px;
  5350. height:0px;
  5351. }
  5352. #u4510_div {
  5353. border-width:0px;
  5354. position:absolute;
  5355. left:0px;
  5356. top:0px;
  5357. width:800px;
  5358. height:60px;
  5359. background:inherit;
  5360. background-color:rgba(255, 255, 255, 1);
  5361. box-sizing:border-box;
  5362. border-width:1px;
  5363. border-style:solid;
  5364. border-color:rgba(215, 215, 215, 1);
  5365. border-radius:0px;
  5366. -moz-box-shadow:none;
  5367. -webkit-box-shadow:none;
  5368. box-shadow:none;
  5369. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5370. font-weight:400;
  5371. font-style:normal;
  5372. font-size:14px;
  5373. color:#AAAAAA;
  5374. text-align:center;
  5375. line-height:30px;
  5376. }
  5377. #u4510 {
  5378. border-width:0px;
  5379. position:absolute;
  5380. left:1661px;
  5381. top:1183px;
  5382. width:800px;
  5383. height:60px;
  5384. display:flex;
  5385. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5386. font-weight:400;
  5387. font-style:normal;
  5388. font-size:14px;
  5389. color:#AAAAAA;
  5390. text-align:center;
  5391. line-height:30px;
  5392. }
  5393. #u4510 .text {
  5394. position:absolute;
  5395. align-self:center;
  5396. padding:5px 10px 5px 10px;
  5397. box-sizing:border-box;
  5398. width:100%;
  5399. }
  5400. #u4510_text {
  5401. border-width:0px;
  5402. word-wrap:break-word;
  5403. text-transform:none;
  5404. visibility:hidden;
  5405. }
  5406. #u4511_div {
  5407. border-width:0px;
  5408. position:absolute;
  5409. left:0px;
  5410. top:0px;
  5411. width:80px;
  5412. height:30px;
  5413. background:inherit;
  5414. background-color:rgba(24, 144, 255, 1);
  5415. border:none;
  5416. border-radius:4px;
  5417. -moz-box-shadow:none;
  5418. -webkit-box-shadow:none;
  5419. box-shadow:none;
  5420. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5421. font-weight:400;
  5422. font-style:normal;
  5423. font-size:14px;
  5424. color:#FFFFFF;
  5425. }
  5426. #u4511 {
  5427. border-width:0px;
  5428. position:absolute;
  5429. left:2336px;
  5430. top:1198px;
  5431. width:80px;
  5432. height:30px;
  5433. display:flex;
  5434. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5435. font-weight:400;
  5436. font-style:normal;
  5437. font-size:14px;
  5438. color:#FFFFFF;
  5439. }
  5440. #u4511 .text {
  5441. position:absolute;
  5442. align-self:center;
  5443. padding:2px 2px 2px 2px;
  5444. box-sizing:border-box;
  5445. width:100%;
  5446. }
  5447. #u4511_text {
  5448. border-width:0px;
  5449. word-wrap:break-word;
  5450. text-transform:none;
  5451. }
  5452. #u4512_div {
  5453. border-width:0px;
  5454. position:absolute;
  5455. left:0px;
  5456. top:0px;
  5457. width:80px;
  5458. height:30px;
  5459. background:inherit;
  5460. background-color:rgba(255, 255, 255, 1);
  5461. box-sizing:border-box;
  5462. border-width:1px;
  5463. border-style:solid;
  5464. border-color:rgba(170, 170, 170, 1);
  5465. border-radius:4px;
  5466. -moz-box-shadow:none;
  5467. -webkit-box-shadow:none;
  5468. box-shadow:none;
  5469. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5470. font-weight:400;
  5471. font-style:normal;
  5472. font-size:14px;
  5473. }
  5474. #u4512 {
  5475. border-width:0px;
  5476. position:absolute;
  5477. left:2246px;
  5478. top:1198px;
  5479. width:80px;
  5480. height:30px;
  5481. display:flex;
  5482. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5483. font-weight:400;
  5484. font-style:normal;
  5485. font-size:14px;
  5486. }
  5487. #u4512 .text {
  5488. position:absolute;
  5489. align-self:center;
  5490. padding:2px 2px 2px 2px;
  5491. box-sizing:border-box;
  5492. width:100%;
  5493. }
  5494. #u4512_text {
  5495. border-width:0px;
  5496. word-wrap:break-word;
  5497. text-transform:none;
  5498. }
  5499. #u4513 {
  5500. border-width:0px;
  5501. position:absolute;
  5502. left:0px;
  5503. top:0px;
  5504. width:0px;
  5505. height:0px;
  5506. }
  5507. #u4514_div {
  5508. border-width:0px;
  5509. position:absolute;
  5510. left:0px;
  5511. top:0px;
  5512. width:598px;
  5513. height:40px;
  5514. background:inherit;
  5515. background-color:rgba(255, 255, 255, 1);
  5516. box-sizing:border-box;
  5517. border-width:1px;
  5518. border-style:solid;
  5519. border-color:rgba(170, 170, 170, 1);
  5520. border-radius:4px;
  5521. -moz-box-shadow:none;
  5522. -webkit-box-shadow:none;
  5523. box-shadow:none;
  5524. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5525. font-weight:400;
  5526. font-style:normal;
  5527. text-align:left;
  5528. }
  5529. #u4514 {
  5530. border-width:0px;
  5531. position:absolute;
  5532. left:1791px;
  5533. top:351px;
  5534. width:598px;
  5535. height:40px;
  5536. display:flex;
  5537. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5538. font-weight:400;
  5539. font-style:normal;
  5540. text-align:left;
  5541. }
  5542. #u4514 .text {
  5543. position:absolute;
  5544. align-self:center;
  5545. padding:2px 2px 2px 10px;
  5546. box-sizing:border-box;
  5547. width:100%;
  5548. }
  5549. #u4514_text {
  5550. border-width:0px;
  5551. word-wrap:break-word;
  5552. text-transform:none;
  5553. visibility:hidden;
  5554. }
  5555. #u4515_input {
  5556. position:absolute;
  5557. left:0px;
  5558. top:0px;
  5559. width:374px;
  5560. height:31px;
  5561. padding:2px 2px 2px 2px;
  5562. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5563. font-weight:400;
  5564. font-style:normal;
  5565. font-size:13px;
  5566. letter-spacing:normal;
  5567. color:#AAAAAA;
  5568. vertical-align:none;
  5569. text-align:left;
  5570. text-transform:none;
  5571. background-color:transparent;
  5572. border-color:transparent;
  5573. }
  5574. #u4515_input.disabled {
  5575. position:absolute;
  5576. left:0px;
  5577. top:0px;
  5578. width:374px;
  5579. height:31px;
  5580. padding:2px 2px 2px 2px;
  5581. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5582. font-weight:400;
  5583. font-style:normal;
  5584. font-size:13px;
  5585. letter-spacing:normal;
  5586. color:#AAAAAA;
  5587. vertical-align:none;
  5588. text-align:left;
  5589. text-transform:none;
  5590. background-color:transparent;
  5591. border-color:transparent;
  5592. }
  5593. #u4515_div {
  5594. border-width:0px;
  5595. position:absolute;
  5596. left:0px;
  5597. top:0px;
  5598. width:374px;
  5599. height:31px;
  5600. background:inherit;
  5601. background-color:rgba(255, 255, 255, 0);
  5602. border:none;
  5603. border-radius:0px;
  5604. -moz-box-shadow:none;
  5605. -webkit-box-shadow:none;
  5606. box-shadow:none;
  5607. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5608. font-weight:400;
  5609. font-style:normal;
  5610. color:#AAAAAA;
  5611. }
  5612. #u4515 {
  5613. border-width:0px;
  5614. position:absolute;
  5615. left:1801px;
  5616. top:356px;
  5617. width:374px;
  5618. height:31px;
  5619. display:flex;
  5620. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5621. font-weight:400;
  5622. font-style:normal;
  5623. color:#AAAAAA;
  5624. }
  5625. #u4515 .text {
  5626. position:absolute;
  5627. align-self:center;
  5628. padding:2px 2px 2px 2px;
  5629. box-sizing:border-box;
  5630. width:100%;
  5631. }
  5632. #u4515_div.disabled {
  5633. border-width:0px;
  5634. position:absolute;
  5635. left:0px;
  5636. top:0px;
  5637. width:374px;
  5638. height:31px;
  5639. background:inherit;
  5640. background-color:rgba(240, 240, 240, 1);
  5641. border:none;
  5642. border-radius:0px;
  5643. -moz-box-shadow:none;
  5644. -webkit-box-shadow:none;
  5645. box-shadow:none;
  5646. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5647. font-weight:400;
  5648. font-style:normal;
  5649. color:#AAAAAA;
  5650. }
  5651. #u4515.disabled {
  5652. }
  5653. #u4516_div {
  5654. border-width:0px;
  5655. position:absolute;
  5656. left:0px;
  5657. top:0px;
  5658. width:78px;
  5659. height:30px;
  5660. background:inherit;
  5661. background-color:rgba(255, 255, 255, 0);
  5662. border:none;
  5663. border-top:0px;
  5664. border-right:0px;
  5665. border-bottom:0px;
  5666. border-radius:0px;
  5667. border-top-left-radius:0px;
  5668. border-bottom-left-radius:0px;
  5669. -moz-box-shadow:none;
  5670. -webkit-box-shadow:none;
  5671. box-shadow:none;
  5672. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5673. font-weight:400;
  5674. font-style:normal;
  5675. font-size:14px;
  5676. }
  5677. #u4516 {
  5678. border-width:0px;
  5679. position:absolute;
  5680. left:1704px;
  5681. top:356px;
  5682. width:78px;
  5683. height:30px;
  5684. display:flex;
  5685. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5686. font-weight:400;
  5687. font-style:normal;
  5688. font-size:14px;
  5689. }
  5690. #u4516 .text {
  5691. position:absolute;
  5692. align-self:center;
  5693. padding:5px 0px 5px 0px;
  5694. box-sizing:border-box;
  5695. width:100%;
  5696. }
  5697. #u4516_text {
  5698. border-width:0px;
  5699. white-space:nowrap;
  5700. text-transform:none;
  5701. }
  5702. #u4517 {
  5703. border-width:0px;
  5704. position:absolute;
  5705. left:0px;
  5706. top:0px;
  5707. width:0px;
  5708. height:0px;
  5709. }
  5710. #u4518_div {
  5711. border-width:0px;
  5712. position:absolute;
  5713. left:0px;
  5714. top:0px;
  5715. width:597px;
  5716. height:40px;
  5717. background:inherit;
  5718. background-color:rgba(255, 255, 255, 1);
  5719. box-sizing:border-box;
  5720. border-width:1px;
  5721. border-style:solid;
  5722. border-color:rgba(170, 170, 170, 1);
  5723. border-radius:4px;
  5724. -moz-box-shadow:none;
  5725. -webkit-box-shadow:none;
  5726. box-shadow:none;
  5727. }
  5728. #u4518 {
  5729. border-width:0px;
  5730. position:absolute;
  5731. left:1793px;
  5732. top:885px;
  5733. width:597px;
  5734. height:40px;
  5735. display:flex;
  5736. }
  5737. #u4518 .text {
  5738. position:absolute;
  5739. align-self:center;
  5740. padding:2px 2px 2px 0px;
  5741. box-sizing:border-box;
  5742. width:100%;
  5743. }
  5744. #u4518_text {
  5745. border-width:0px;
  5746. word-wrap:break-word;
  5747. text-transform:none;
  5748. visibility:hidden;
  5749. }
  5750. #u4519_input {
  5751. position:absolute;
  5752. left:0px;
  5753. top:0px;
  5754. width:565px;
  5755. height:30px;
  5756. padding:2px 2px 2px 0px;
  5757. font-family:'ArialMT', 'Arial', sans-serif;
  5758. font-weight:400;
  5759. font-style:normal;
  5760. font-size:13px;
  5761. letter-spacing:normal;
  5762. color:#AAAAAA;
  5763. vertical-align:none;
  5764. text-align:left;
  5765. text-transform:none;
  5766. background-color:transparent;
  5767. border-color:transparent;
  5768. }
  5769. #u4519_input.disabled {
  5770. position:absolute;
  5771. left:0px;
  5772. top:0px;
  5773. width:565px;
  5774. height:30px;
  5775. padding:2px 2px 2px 0px;
  5776. font-family:'ArialMT', 'Arial', sans-serif;
  5777. font-weight:400;
  5778. font-style:normal;
  5779. font-size:13px;
  5780. letter-spacing:normal;
  5781. color:#AAAAAA;
  5782. vertical-align:none;
  5783. text-align:left;
  5784. text-transform:none;
  5785. background-color:transparent;
  5786. border-color:transparent;
  5787. }
  5788. #u4519_div {
  5789. border-width:0px;
  5790. position:absolute;
  5791. left:0px;
  5792. top:0px;
  5793. width:565px;
  5794. height:30px;
  5795. background:inherit;
  5796. background-color:rgba(255, 255, 255, 1);
  5797. border:none;
  5798. border-radius:0px;
  5799. -moz-box-shadow:none;
  5800. -webkit-box-shadow:none;
  5801. box-shadow:none;
  5802. color:#AAAAAA;
  5803. }
  5804. #u4519 {
  5805. border-width:0px;
  5806. position:absolute;
  5807. left:1809px;
  5808. top:889px;
  5809. width:565px;
  5810. height:30px;
  5811. display:flex;
  5812. color:#AAAAAA;
  5813. }
  5814. #u4519 .text {
  5815. position:absolute;
  5816. align-self:flex-start;
  5817. padding:2px 2px 2px 0px;
  5818. box-sizing:border-box;
  5819. width:100%;
  5820. }
  5821. #u4519_div.disabled {
  5822. border-width:0px;
  5823. position:absolute;
  5824. left:0px;
  5825. top:0px;
  5826. width:565px;
  5827. height:30px;
  5828. background:inherit;
  5829. background-color:rgba(240, 240, 240, 1);
  5830. border:none;
  5831. border-radius:0px;
  5832. -moz-box-shadow:none;
  5833. -webkit-box-shadow:none;
  5834. box-shadow:none;
  5835. color:#AAAAAA;
  5836. }
  5837. #u4519.disabled {
  5838. }
  5839. .u4519_input_option {
  5840. }
  5841. #u4520_div {
  5842. border-width:0px;
  5843. position:absolute;
  5844. left:0px;
  5845. top:0px;
  5846. width:71px;
  5847. height:30px;
  5848. background:inherit;
  5849. background-color:rgba(255, 255, 255, 0);
  5850. border:none;
  5851. border-top:0px;
  5852. border-right:0px;
  5853. border-bottom:0px;
  5854. border-radius:0px;
  5855. border-top-left-radius:0px;
  5856. border-bottom-left-radius:0px;
  5857. -moz-box-shadow:none;
  5858. -webkit-box-shadow:none;
  5859. box-shadow:none;
  5860. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5861. font-weight:400;
  5862. font-style:normal;
  5863. font-size:14px;
  5864. text-align:right;
  5865. }
  5866. #u4520 {
  5867. border-width:0px;
  5868. position:absolute;
  5869. left:1711px;
  5870. top:890px;
  5871. width:71px;
  5872. height:30px;
  5873. display:flex;
  5874. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5875. font-weight:400;
  5876. font-style:normal;
  5877. font-size:14px;
  5878. text-align:right;
  5879. }
  5880. #u4520 .text {
  5881. position:absolute;
  5882. align-self:center;
  5883. padding:5px 0px 5px 0px;
  5884. box-sizing:border-box;
  5885. width:100%;
  5886. }
  5887. #u4520_text {
  5888. border-width:0px;
  5889. white-space:nowrap;
  5890. text-transform:none;
  5891. }
  5892. #u4521_div {
  5893. border-width:0px;
  5894. position:absolute;
  5895. left:0px;
  5896. top:0px;
  5897. width:71px;
  5898. height:30px;
  5899. background:inherit;
  5900. background-color:rgba(255, 255, 255, 0);
  5901. border:none;
  5902. border-top:0px;
  5903. border-right:0px;
  5904. border-bottom:0px;
  5905. border-radius:0px;
  5906. border-top-left-radius:0px;
  5907. border-bottom-left-radius:0px;
  5908. -moz-box-shadow:none;
  5909. -webkit-box-shadow:none;
  5910. box-shadow:none;
  5911. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5912. font-weight:400;
  5913. font-style:normal;
  5914. font-size:14px;
  5915. text-align:right;
  5916. }
  5917. #u4521 {
  5918. border-width:0px;
  5919. position:absolute;
  5920. left:1711px;
  5921. top:938px;
  5922. width:71px;
  5923. height:30px;
  5924. display:flex;
  5925. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5926. font-weight:400;
  5927. font-style:normal;
  5928. font-size:14px;
  5929. text-align:right;
  5930. }
  5931. #u4521 .text {
  5932. position:absolute;
  5933. align-self:center;
  5934. padding:5px 0px 5px 0px;
  5935. box-sizing:border-box;
  5936. width:100%;
  5937. }
  5938. #u4521_text {
  5939. border-width:0px;
  5940. white-space:nowrap;
  5941. text-transform:none;
  5942. }
  5943. #u4522 {
  5944. border-width:0px;
  5945. position:absolute;
  5946. left:0px;
  5947. top:0px;
  5948. width:0px;
  5949. height:0px;
  5950. }
  5951. #u4523_div {
  5952. border-width:0px;
  5953. position:absolute;
  5954. left:0px;
  5955. top:0px;
  5956. width:597px;
  5957. height:80px;
  5958. background:inherit;
  5959. background-color:rgba(255, 255, 255, 1);
  5960. box-sizing:border-box;
  5961. border-width:1px;
  5962. border-style:solid;
  5963. border-color:rgba(201, 201, 201, 1);
  5964. border-radius:4px;
  5965. -moz-box-shadow:none;
  5966. -webkit-box-shadow:none;
  5967. box-shadow:none;
  5968. font-family:'Microsoft YaHei', sans-serif;
  5969. font-weight:400;
  5970. font-style:normal;
  5971. font-size:14px;
  5972. color:#CCCCCC;
  5973. text-align:left;
  5974. }
  5975. #u4523 {
  5976. border-width:0px;
  5977. position:absolute;
  5978. left:1793px;
  5979. top:401px;
  5980. width:597px;
  5981. height:80px;
  5982. display:flex;
  5983. font-family:'Microsoft YaHei', sans-serif;
  5984. font-weight:400;
  5985. font-style:normal;
  5986. font-size:14px;
  5987. color:#CCCCCC;
  5988. text-align:left;
  5989. }
  5990. #u4523 .text {
  5991. position:absolute;
  5992. align-self:center;
  5993. padding:2px 8px 2px 8px;
  5994. box-sizing:border-box;
  5995. width:100%;
  5996. }
  5997. #u4523_text {
  5998. border-width:0px;
  5999. word-wrap:break-word;
  6000. text-transform:none;
  6001. visibility:hidden;
  6002. }
  6003. #u4524_input {
  6004. position:absolute;
  6005. left:0px;
  6006. top:0px;
  6007. width:567px;
  6008. height:60px;
  6009. padding:2px 2px 2px 2px;
  6010. font-family:'ArialMT', 'Arial', sans-serif;
  6011. font-weight:400;
  6012. font-style:normal;
  6013. font-size:13px;
  6014. letter-spacing:normal;
  6015. color:#000000;
  6016. vertical-align:none;
  6017. text-align:left;
  6018. text-transform:none;
  6019. background-color:transparent;
  6020. border-color:transparent;
  6021. resize:none;
  6022. }
  6023. #u4524_input.disabled {
  6024. position:absolute;
  6025. left:0px;
  6026. top:0px;
  6027. width:567px;
  6028. height:60px;
  6029. padding:2px 2px 2px 2px;
  6030. font-family:'ArialMT', 'Arial', sans-serif;
  6031. font-weight:400;
  6032. font-style:normal;
  6033. font-size:13px;
  6034. letter-spacing:normal;
  6035. color:#000000;
  6036. vertical-align:none;
  6037. text-align:left;
  6038. text-transform:none;
  6039. background-color:transparent;
  6040. border-color:transparent;
  6041. resize:none;
  6042. }
  6043. #u4524_div {
  6044. border-width:0px;
  6045. position:absolute;
  6046. left:0px;
  6047. top:0px;
  6048. width:567px;
  6049. height:60px;
  6050. background:inherit;
  6051. background-color:rgba(255, 255, 255, 1);
  6052. border:none;
  6053. border-radius:0px;
  6054. -moz-box-shadow:none;
  6055. -webkit-box-shadow:none;
  6056. box-shadow:none;
  6057. }
  6058. #u4524 {
  6059. border-width:0px;
  6060. position:absolute;
  6061. left:1807px;
  6062. top:411px;
  6063. width:567px;
  6064. height:60px;
  6065. display:flex;
  6066. }
  6067. #u4524 .text {
  6068. position:absolute;
  6069. align-self:flex-start;
  6070. padding:2px 2px 2px 2px;
  6071. box-sizing:border-box;
  6072. width:100%;
  6073. }
  6074. #u4524_div.disabled {
  6075. border-width:0px;
  6076. position:absolute;
  6077. left:0px;
  6078. top:0px;
  6079. width:567px;
  6080. height:60px;
  6081. background:inherit;
  6082. background-color:rgba(240, 240, 240, 1);
  6083. border:none;
  6084. border-radius:0px;
  6085. -moz-box-shadow:none;
  6086. -webkit-box-shadow:none;
  6087. box-shadow:none;
  6088. }
  6089. #u4524.disabled {
  6090. }
  6091. #u4525_div {
  6092. border-width:0px;
  6093. position:absolute;
  6094. left:0px;
  6095. top:0px;
  6096. width:95px;
  6097. height:24px;
  6098. background:inherit;
  6099. background-color:rgba(255, 255, 255, 0);
  6100. border:none;
  6101. border-top:0px;
  6102. border-right:0px;
  6103. border-bottom:0px;
  6104. border-radius:0px;
  6105. border-top-left-radius:0px;
  6106. border-bottom-left-radius:0px;
  6107. -moz-box-shadow:none;
  6108. -webkit-box-shadow:none;
  6109. box-shadow:none;
  6110. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6111. font-weight:400;
  6112. font-style:normal;
  6113. font-size:10px;
  6114. color:#7F7F7F;
  6115. text-align:right;
  6116. }
  6117. #u4525 {
  6118. border-width:0px;
  6119. position:absolute;
  6120. left:2295px;
  6121. top:454px;
  6122. width:95px;
  6123. height:24px;
  6124. display:flex;
  6125. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6126. font-weight:400;
  6127. font-style:normal;
  6128. font-size:10px;
  6129. color:#7F7F7F;
  6130. text-align:right;
  6131. }
  6132. #u4525 .text {
  6133. position:absolute;
  6134. align-self:center;
  6135. padding:5px 10px 5px 0px;
  6136. box-sizing:border-box;
  6137. width:100%;
  6138. }
  6139. #u4525_text {
  6140. border-width:0px;
  6141. word-wrap:break-word;
  6142. text-transform:none;
  6143. }
  6144. #u4526_div {
  6145. border-width:0px;
  6146. position:absolute;
  6147. left:0px;
  6148. top:0px;
  6149. width:43px;
  6150. height:30px;
  6151. background:inherit;
  6152. background-color:rgba(255, 255, 255, 0);
  6153. border:none;
  6154. border-top:0px;
  6155. border-right:0px;
  6156. border-bottom:0px;
  6157. border-radius:0px;
  6158. border-top-left-radius:0px;
  6159. border-bottom-left-radius:0px;
  6160. -moz-box-shadow:none;
  6161. -webkit-box-shadow:none;
  6162. box-shadow:none;
  6163. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6164. font-weight:400;
  6165. font-style:normal;
  6166. font-size:14px;
  6167. text-align:right;
  6168. }
  6169. #u4526 {
  6170. border-width:0px;
  6171. position:absolute;
  6172. left:1739px;
  6173. top:411px;
  6174. width:43px;
  6175. height:30px;
  6176. display:flex;
  6177. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6178. font-weight:400;
  6179. font-style:normal;
  6180. font-size:14px;
  6181. text-align:right;
  6182. }
  6183. #u4526 .text {
  6184. position:absolute;
  6185. align-self:center;
  6186. padding:5px 0px 5px 0px;
  6187. box-sizing:border-box;
  6188. width:100%;
  6189. }
  6190. #u4526_text {
  6191. border-width:0px;
  6192. white-space:nowrap;
  6193. text-transform:none;
  6194. }
  6195. #u4527 {
  6196. border-width:0px;
  6197. position:absolute;
  6198. left:0px;
  6199. top:0px;
  6200. width:0px;
  6201. height:0px;
  6202. }
  6203. #u4528_div {
  6204. border-width:0px;
  6205. position:absolute;
  6206. left:0px;
  6207. top:0px;
  6208. width:597px;
  6209. height:40px;
  6210. background:inherit;
  6211. background-color:rgba(255, 255, 255, 1);
  6212. box-sizing:border-box;
  6213. border-width:1px;
  6214. border-style:solid;
  6215. border-color:rgba(170, 170, 170, 1);
  6216. border-radius:4px;
  6217. -moz-box-shadow:none;
  6218. -webkit-box-shadow:none;
  6219. box-shadow:none;
  6220. }
  6221. #u4528 {
  6222. border-width:0px;
  6223. position:absolute;
  6224. left:1793px;
  6225. top:933px;
  6226. width:597px;
  6227. height:40px;
  6228. display:flex;
  6229. }
  6230. #u4528 .text {
  6231. position:absolute;
  6232. align-self:center;
  6233. padding:2px 2px 2px 0px;
  6234. box-sizing:border-box;
  6235. width:100%;
  6236. }
  6237. #u4528_text {
  6238. border-width:0px;
  6239. word-wrap:break-word;
  6240. text-transform:none;
  6241. visibility:hidden;
  6242. }
  6243. #u4529_input {
  6244. position:absolute;
  6245. left:0px;
  6246. top:0px;
  6247. width:565px;
  6248. height:30px;
  6249. padding:2px 2px 2px 0px;
  6250. font-family:'ArialMT', 'Arial', sans-serif;
  6251. font-weight:400;
  6252. font-style:normal;
  6253. font-size:13px;
  6254. letter-spacing:normal;
  6255. color:#AAAAAA;
  6256. vertical-align:none;
  6257. text-align:left;
  6258. text-transform:none;
  6259. background-color:transparent;
  6260. border-color:transparent;
  6261. }
  6262. #u4529_input.disabled {
  6263. position:absolute;
  6264. left:0px;
  6265. top:0px;
  6266. width:565px;
  6267. height:30px;
  6268. padding:2px 2px 2px 0px;
  6269. font-family:'ArialMT', 'Arial', sans-serif;
  6270. font-weight:400;
  6271. font-style:normal;
  6272. font-size:13px;
  6273. letter-spacing:normal;
  6274. color:#AAAAAA;
  6275. vertical-align:none;
  6276. text-align:left;
  6277. text-transform:none;
  6278. background-color:transparent;
  6279. border-color:transparent;
  6280. }
  6281. #u4529_div {
  6282. border-width:0px;
  6283. position:absolute;
  6284. left:0px;
  6285. top:0px;
  6286. width:565px;
  6287. height:30px;
  6288. background:inherit;
  6289. background-color:rgba(255, 255, 255, 1);
  6290. border:none;
  6291. border-radius:0px;
  6292. -moz-box-shadow:none;
  6293. -webkit-box-shadow:none;
  6294. box-shadow:none;
  6295. color:#AAAAAA;
  6296. }
  6297. #u4529 {
  6298. border-width:0px;
  6299. position:absolute;
  6300. left:1809px;
  6301. top:937px;
  6302. width:565px;
  6303. height:30px;
  6304. display:flex;
  6305. color:#AAAAAA;
  6306. }
  6307. #u4529 .text {
  6308. position:absolute;
  6309. align-self:flex-start;
  6310. padding:2px 2px 2px 0px;
  6311. box-sizing:border-box;
  6312. width:100%;
  6313. }
  6314. #u4529_div.disabled {
  6315. border-width:0px;
  6316. position:absolute;
  6317. left:0px;
  6318. top:0px;
  6319. width:565px;
  6320. height:30px;
  6321. background:inherit;
  6322. background-color:rgba(240, 240, 240, 1);
  6323. border:none;
  6324. border-radius:0px;
  6325. -moz-box-shadow:none;
  6326. -webkit-box-shadow:none;
  6327. box-shadow:none;
  6328. color:#AAAAAA;
  6329. }
  6330. #u4529.disabled {
  6331. }
  6332. .u4529_input_option {
  6333. }
  6334. #u4530 {
  6335. border-width:0px;
  6336. position:absolute;
  6337. left:0px;
  6338. top:0px;
  6339. width:0px;
  6340. height:0px;
  6341. }
  6342. #u4531_div {
  6343. border-width:0px;
  6344. position:absolute;
  6345. left:0px;
  6346. top:0px;
  6347. width:200px;
  6348. height:130px;
  6349. background:inherit;
  6350. background-color:rgba(255, 255, 255, 1);
  6351. box-sizing:border-box;
  6352. border-width:1px;
  6353. border-style:solid;
  6354. border-color:rgba(215, 215, 215, 1);
  6355. border-radius:4px;
  6356. -moz-box-shadow:none;
  6357. -webkit-box-shadow:none;
  6358. box-shadow:none;
  6359. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6360. font-weight:400;
  6361. font-style:normal;
  6362. font-size:40px;
  6363. color:#CCCCCC;
  6364. }
  6365. #u4531 {
  6366. border-width:0px;
  6367. position:absolute;
  6368. left:1792px;
  6369. top:211px;
  6370. width:200px;
  6371. height:130px;
  6372. display:flex;
  6373. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6374. font-weight:400;
  6375. font-style:normal;
  6376. font-size:40px;
  6377. color:#CCCCCC;
  6378. }
  6379. #u4531 .text {
  6380. position:absolute;
  6381. align-self:center;
  6382. padding:2px 8px 2px 8px;
  6383. box-sizing:border-box;
  6384. width:100%;
  6385. }
  6386. #u4531_text {
  6387. border-width:0px;
  6388. word-wrap:break-word;
  6389. text-transform:none;
  6390. }
  6391. #u4532_div {
  6392. border-width:0px;
  6393. position:absolute;
  6394. left:0px;
  6395. top:0px;
  6396. width:381px;
  6397. height:50px;
  6398. background:inherit;
  6399. background-color:rgba(255, 255, 255, 0);
  6400. border:none;
  6401. border-top:0px;
  6402. border-right:0px;
  6403. border-bottom:0px;
  6404. border-radius:0px;
  6405. border-top-left-radius:0px;
  6406. border-bottom-left-radius:0px;
  6407. -moz-box-shadow:none;
  6408. -webkit-box-shadow:none;
  6409. box-shadow:none;
  6410. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6411. font-weight:400;
  6412. font-style:normal;
  6413. font-size:14px;
  6414. color:#BCBCBC;
  6415. }
  6416. #u4532 {
  6417. border-width:0px;
  6418. position:absolute;
  6419. left:2009px;
  6420. top:226px;
  6421. width:381px;
  6422. height:50px;
  6423. display:flex;
  6424. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6425. font-weight:400;
  6426. font-style:normal;
  6427. font-size:14px;
  6428. color:#BCBCBC;
  6429. }
  6430. #u4532 .text {
  6431. position:absolute;
  6432. align-self:center;
  6433. padding:5px 10px 5px 0px;
  6434. box-sizing:border-box;
  6435. width:100%;
  6436. }
  6437. #u4532_text {
  6438. border-width:0px;
  6439. word-wrap:break-word;
  6440. text-transform:none;
  6441. }
  6442. #u4533_div {
  6443. border-width:0px;
  6444. position:absolute;
  6445. left:0px;
  6446. top:0px;
  6447. width:43px;
  6448. height:30px;
  6449. background:inherit;
  6450. background-color:rgba(255, 255, 255, 0);
  6451. border:none;
  6452. border-top:0px;
  6453. border-right:0px;
  6454. border-bottom:0px;
  6455. border-radius:0px;
  6456. border-top-left-radius:0px;
  6457. border-bottom-left-radius:0px;
  6458. -moz-box-shadow:none;
  6459. -webkit-box-shadow:none;
  6460. box-shadow:none;
  6461. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6462. font-weight:400;
  6463. font-style:normal;
  6464. font-size:14px;
  6465. text-align:right;
  6466. }
  6467. #u4533 {
  6468. border-width:0px;
  6469. position:absolute;
  6470. left:1738px;
  6471. top:211px;
  6472. width:43px;
  6473. height:30px;
  6474. display:flex;
  6475. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6476. font-weight:400;
  6477. font-style:normal;
  6478. font-size:14px;
  6479. text-align:right;
  6480. }
  6481. #u4533 .text {
  6482. position:absolute;
  6483. align-self:center;
  6484. padding:5px 0px 5px 0px;
  6485. box-sizing:border-box;
  6486. width:100%;
  6487. }
  6488. #u4533_text {
  6489. border-width:0px;
  6490. white-space:nowrap;
  6491. text-transform:none;
  6492. }
  6493. #u4534_div {
  6494. border-width:0px;
  6495. position:absolute;
  6496. left:0px;
  6497. top:0px;
  6498. width:78px;
  6499. height:30px;
  6500. background:inherit;
  6501. background-color:rgba(255, 255, 255, 0);
  6502. border:none;
  6503. border-top:0px;
  6504. border-right:0px;
  6505. border-bottom:0px;
  6506. border-radius:0px;
  6507. border-top-left-radius:0px;
  6508. border-bottom-left-radius:0px;
  6509. -moz-box-shadow:none;
  6510. -webkit-box-shadow:none;
  6511. box-shadow:none;
  6512. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6513. font-weight:400;
  6514. font-style:normal;
  6515. font-size:14px;
  6516. text-align:right;
  6517. }
  6518. #u4534 {
  6519. border-width:0px;
  6520. position:absolute;
  6521. left:1704px;
  6522. top:492px;
  6523. width:78px;
  6524. height:30px;
  6525. display:flex;
  6526. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6527. font-weight:400;
  6528. font-style:normal;
  6529. font-size:14px;
  6530. text-align:right;
  6531. }
  6532. #u4534 .text {
  6533. position:absolute;
  6534. align-self:center;
  6535. padding:5px 0px 5px 0px;
  6536. box-sizing:border-box;
  6537. width:100%;
  6538. }
  6539. #u4534_text {
  6540. border-width:0px;
  6541. white-space:nowrap;
  6542. text-transform:none;
  6543. }
  6544. #u4535_img {
  6545. border-width:0px;
  6546. position:absolute;
  6547. left:0px;
  6548. top:0px;
  6549. width:603px;
  6550. height:292px;
  6551. }
  6552. #u4535 {
  6553. border-width:0px;
  6554. position:absolute;
  6555. left:1793px;
  6556. top:491px;
  6557. width:603px;
  6558. height:292px;
  6559. display:flex;
  6560. font-family:'Microsoft YaHei', sans-serif;
  6561. font-weight:400;
  6562. font-style:normal;
  6563. font-size:14px;
  6564. }
  6565. #u4535 .text {
  6566. position:absolute;
  6567. align-self:center;
  6568. padding:2px 2px 2px 2px;
  6569. box-sizing:border-box;
  6570. width:100%;
  6571. }
  6572. #u4535_text {
  6573. border-width:0px;
  6574. word-wrap:break-word;
  6575. text-transform:none;
  6576. visibility:hidden;
  6577. }
  6578. #u4536 {
  6579. border-width:0px;
  6580. position:absolute;
  6581. left:0px;
  6582. top:0px;
  6583. width:0px;
  6584. height:0px;
  6585. }
  6586. #u4537_div {
  6587. border-width:0px;
  6588. position:absolute;
  6589. left:0px;
  6590. top:0px;
  6591. width:160px;
  6592. height:30px;
  6593. background:inherit;
  6594. background-color:rgba(255, 255, 255, 1);
  6595. box-sizing:border-box;
  6596. border-width:1px;
  6597. border-style:solid;
  6598. border-color:rgba(201, 201, 201, 1);
  6599. border-radius:0px;
  6600. -moz-box-shadow:none;
  6601. -webkit-box-shadow:none;
  6602. box-shadow:none;
  6603. font-family:'Microsoft YaHei', sans-serif;
  6604. font-weight:400;
  6605. font-style:normal;
  6606. font-size:12px;
  6607. color:#666666;
  6608. text-align:left;
  6609. }
  6610. #u4537 {
  6611. border-width:0px;
  6612. position:absolute;
  6613. left:1795px;
  6614. top:793px;
  6615. width:160px;
  6616. height:30px;
  6617. display:flex;
  6618. font-family:'Microsoft YaHei', sans-serif;
  6619. font-weight:400;
  6620. font-style:normal;
  6621. font-size:12px;
  6622. color:#666666;
  6623. text-align:left;
  6624. }
  6625. #u4537 .text {
  6626. position:absolute;
  6627. align-self:center;
  6628. padding:2px 2px 2px 2px;
  6629. box-sizing:border-box;
  6630. width:100%;
  6631. }
  6632. #u4537_text {
  6633. border-width:0px;
  6634. word-wrap:break-word;
  6635. text-transform:none;
  6636. visibility:hidden;
  6637. }
  6638. #u4538_input {
  6639. position:absolute;
  6640. left:0px;
  6641. top:0px;
  6642. width:119px;
  6643. height:25px;
  6644. padding:2px 2px 2px 2px;
  6645. font-family:'Microsoft YaHei', sans-serif;
  6646. font-weight:400;
  6647. font-style:normal;
  6648. font-size:12px;
  6649. letter-spacing:normal;
  6650. color:#666666;
  6651. vertical-align:none;
  6652. text-align:left;
  6653. text-transform:none;
  6654. background-color:transparent;
  6655. border-color:transparent;
  6656. }
  6657. #u4538_input.disabled {
  6658. position:absolute;
  6659. left:0px;
  6660. top:0px;
  6661. width:119px;
  6662. height:25px;
  6663. padding:2px 2px 2px 2px;
  6664. font-family:'Microsoft YaHei', sans-serif;
  6665. font-weight:400;
  6666. font-style:normal;
  6667. font-size:12px;
  6668. letter-spacing:normal;
  6669. color:#666666;
  6670. vertical-align:none;
  6671. text-align:left;
  6672. text-transform:none;
  6673. background-color:transparent;
  6674. border-color:transparent;
  6675. }
  6676. #u4538_div {
  6677. border-width:0px;
  6678. position:absolute;
  6679. left:0px;
  6680. top:0px;
  6681. width:119px;
  6682. height:25px;
  6683. background:inherit;
  6684. background-color:rgba(255, 255, 255, 1);
  6685. border:none;
  6686. border-radius:0px;
  6687. -moz-box-shadow:none;
  6688. -webkit-box-shadow:none;
  6689. box-shadow:none;
  6690. font-family:'Microsoft YaHei', sans-serif;
  6691. font-weight:400;
  6692. font-style:normal;
  6693. font-size:12px;
  6694. color:#666666;
  6695. }
  6696. #u4538 {
  6697. border-width:0px;
  6698. position:absolute;
  6699. left:1804px;
  6700. top:796px;
  6701. width:119px;
  6702. height:25px;
  6703. display:flex;
  6704. font-family:'Microsoft YaHei', sans-serif;
  6705. font-weight:400;
  6706. font-style:normal;
  6707. font-size:12px;
  6708. color:#666666;
  6709. }
  6710. #u4538 .text {
  6711. position:absolute;
  6712. align-self:center;
  6713. padding:2px 2px 2px 2px;
  6714. box-sizing:border-box;
  6715. width:100%;
  6716. }
  6717. #u4538_div.disabled {
  6718. border-width:0px;
  6719. position:absolute;
  6720. left:0px;
  6721. top:0px;
  6722. width:119px;
  6723. height:25px;
  6724. background:inherit;
  6725. background-color:rgba(240, 240, 240, 1);
  6726. border:none;
  6727. border-radius:0px;
  6728. -moz-box-shadow:none;
  6729. -webkit-box-shadow:none;
  6730. box-shadow:none;
  6731. font-family:'Microsoft YaHei', sans-serif;
  6732. font-weight:400;
  6733. font-style:normal;
  6734. font-size:12px;
  6735. color:#666666;
  6736. }
  6737. #u4538.disabled {
  6738. }
  6739. #u4539_div {
  6740. border-width:0px;
  6741. position:absolute;
  6742. left:0px;
  6743. top:0px;
  6744. width:72px;
  6745. height:30px;
  6746. background:inherit;
  6747. background-color:rgba(107, 107, 107, 1);
  6748. border:none;
  6749. border-radius:0px;
  6750. -moz-box-shadow:none;
  6751. -webkit-box-shadow:none;
  6752. box-shadow:none;
  6753. font-family:'Microsoft YaHei', sans-serif;
  6754. font-weight:400;
  6755. font-style:normal;
  6756. font-size:14px;
  6757. color:#FFFFFF;
  6758. }
  6759. #u4539 {
  6760. border-width:0px;
  6761. position:absolute;
  6762. left:1965px;
  6763. top:793px;
  6764. width:72px;
  6765. height:30px;
  6766. display:flex;
  6767. font-family:'Microsoft YaHei', sans-serif;
  6768. font-weight:400;
  6769. font-style:normal;
  6770. font-size:14px;
  6771. color:#FFFFFF;
  6772. }
  6773. #u4539 .text {
  6774. position:absolute;
  6775. align-self:center;
  6776. padding:2px 2px 2px 2px;
  6777. box-sizing:border-box;
  6778. width:100%;
  6779. }
  6780. #u4539_text {
  6781. border-width:0px;
  6782. word-wrap:break-word;
  6783. text-transform:none;
  6784. }
  6785. #u4540_div {
  6786. border-width:0px;
  6787. position:absolute;
  6788. left:0px;
  6789. top:0px;
  6790. width:71px;
  6791. height:20px;
  6792. background:inherit;
  6793. background-color:rgba(255, 255, 255, 0);
  6794. border:none;
  6795. border-radius:0px;
  6796. -moz-box-shadow:none;
  6797. -webkit-box-shadow:none;
  6798. box-shadow:none;
  6799. font-family:'Microsoft YaHei', sans-serif;
  6800. font-weight:400;
  6801. font-style:normal;
  6802. font-size:14px;
  6803. text-align:right;
  6804. }
  6805. #u4540 {
  6806. border-width:0px;
  6807. position:absolute;
  6808. left:1714px;
  6809. top:796px;
  6810. width:71px;
  6811. height:20px;
  6812. display:flex;
  6813. font-family:'Microsoft YaHei', sans-serif;
  6814. font-weight:400;
  6815. font-style:normal;
  6816. font-size:14px;
  6817. text-align:right;
  6818. }
  6819. #u4540 .text {
  6820. position:absolute;
  6821. align-self:flex-start;
  6822. padding:0px 0px 0px 0px;
  6823. box-sizing:border-box;
  6824. width:100%;
  6825. }
  6826. #u4540_text {
  6827. border-width:0px;
  6828. white-space:nowrap;
  6829. text-transform:none;
  6830. }
  6831. #u4541 {
  6832. border-width:0px;
  6833. position:absolute;
  6834. left:0px;
  6835. top:0px;
  6836. width:0px;
  6837. height:0px;
  6838. }
  6839. #u4542_div {
  6840. border-width:0px;
  6841. position:absolute;
  6842. left:0px;
  6843. top:0px;
  6844. width:100px;
  6845. height:30px;
  6846. background:inherit;
  6847. background-color:rgba(255, 255, 255, 1);
  6848. box-sizing:border-box;
  6849. border-width:1px;
  6850. border-style:solid;
  6851. border-color:rgba(228, 228, 228, 1);
  6852. border-radius:0px;
  6853. -moz-box-shadow:none;
  6854. -webkit-box-shadow:none;
  6855. box-shadow:none;
  6856. }
  6857. #u4542 {
  6858. border-width:0px;
  6859. position:absolute;
  6860. left:1795px;
  6861. top:835px;
  6862. width:100px;
  6863. height:30px;
  6864. display:flex;
  6865. }
  6866. #u4542 .text {
  6867. position:absolute;
  6868. align-self:center;
  6869. padding:2px 2px 2px 2px;
  6870. box-sizing:border-box;
  6871. width:100%;
  6872. }
  6873. #u4542_text {
  6874. border-width:0px;
  6875. word-wrap:break-word;
  6876. text-transform:none;
  6877. visibility:hidden;
  6878. }
  6879. #u4543_div {
  6880. border-width:0px;
  6881. position:absolute;
  6882. left:0px;
  6883. top:0px;
  6884. width:57px;
  6885. height:20px;
  6886. background:inherit;
  6887. background-color:rgba(255, 255, 255, 0);
  6888. border:none;
  6889. border-radius:0px;
  6890. -moz-box-shadow:none;
  6891. -webkit-box-shadow:none;
  6892. box-shadow:none;
  6893. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6894. font-weight:400;
  6895. font-style:normal;
  6896. font-size:14px;
  6897. }
  6898. #u4543 {
  6899. border-width:0px;
  6900. position:absolute;
  6901. left:1803px;
  6902. top:840px;
  6903. width:57px;
  6904. height:20px;
  6905. display:flex;
  6906. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6907. font-weight:400;
  6908. font-style:normal;
  6909. font-size:14px;
  6910. }
  6911. #u4543 .text {
  6912. position:absolute;
  6913. align-self:flex-start;
  6914. padding:0px 0px 0px 0px;
  6915. box-sizing:border-box;
  6916. width:100%;
  6917. }
  6918. #u4543_text {
  6919. border-width:0px;
  6920. white-space:nowrap;
  6921. text-transform:none;
  6922. }
  6923. #u4544_img {
  6924. border-width:0px;
  6925. position:absolute;
  6926. left:0px;
  6927. top:0px;
  6928. width:11px;
  6929. height:11px;
  6930. }
  6931. #u4544 {
  6932. border-width:0px;
  6933. position:absolute;
  6934. left:1873px;
  6935. top:845px;
  6936. width:11px;
  6937. height:11px;
  6938. display:flex;
  6939. }
  6940. #u4544 .text {
  6941. position:absolute;
  6942. align-self:center;
  6943. padding:2px 2px 2px 2px;
  6944. box-sizing:border-box;
  6945. width:100%;
  6946. }
  6947. #u4544_text {
  6948. border-width:0px;
  6949. word-wrap:break-word;
  6950. text-transform:none;
  6951. visibility:hidden;
  6952. }
  6953. #u4545 {
  6954. border-width:0px;
  6955. position:absolute;
  6956. left:0px;
  6957. top:0px;
  6958. width:0px;
  6959. height:0px;
  6960. }
  6961. #u4546_div {
  6962. border-width:0px;
  6963. position:absolute;
  6964. left:0px;
  6965. top:0px;
  6966. width:597px;
  6967. height:40px;
  6968. background:inherit;
  6969. background-color:rgba(255, 255, 255, 1);
  6970. box-sizing:border-box;
  6971. border-width:1px;
  6972. border-style:solid;
  6973. border-color:rgba(170, 170, 170, 1);
  6974. border-radius:4px;
  6975. -moz-box-shadow:none;
  6976. -webkit-box-shadow:none;
  6977. box-shadow:none;
  6978. }
  6979. #u4546 {
  6980. border-width:0px;
  6981. position:absolute;
  6982. left:1792px;
  6983. top:121px;
  6984. width:597px;
  6985. height:40px;
  6986. display:flex;
  6987. }
  6988. #u4546 .text {
  6989. position:absolute;
  6990. align-self:center;
  6991. padding:2px 2px 2px 0px;
  6992. box-sizing:border-box;
  6993. width:100%;
  6994. }
  6995. #u4546_text {
  6996. border-width:0px;
  6997. word-wrap:break-word;
  6998. text-transform:none;
  6999. visibility:hidden;
  7000. }
  7001. #u4547_input {
  7002. position:absolute;
  7003. left:0px;
  7004. top:0px;
  7005. width:567px;
  7006. height:30px;
  7007. padding:2px 2px 2px 0px;
  7008. font-family:'ArialMT', 'Arial', sans-serif;
  7009. font-weight:400;
  7010. font-style:normal;
  7011. font-size:13px;
  7012. letter-spacing:normal;
  7013. color:#AAAAAA;
  7014. vertical-align:none;
  7015. text-align:left;
  7016. text-transform:none;
  7017. background-color:transparent;
  7018. border-color:transparent;
  7019. }
  7020. #u4547_input.disabled {
  7021. position:absolute;
  7022. left:0px;
  7023. top:0px;
  7024. width:567px;
  7025. height:30px;
  7026. padding:2px 2px 2px 0px;
  7027. font-family:'ArialMT', 'Arial', sans-serif;
  7028. font-weight:400;
  7029. font-style:normal;
  7030. font-size:13px;
  7031. letter-spacing:normal;
  7032. color:#AAAAAA;
  7033. vertical-align:none;
  7034. text-align:left;
  7035. text-transform:none;
  7036. background-color:transparent;
  7037. border-color:transparent;
  7038. }
  7039. #u4547_div {
  7040. border-width:0px;
  7041. position:absolute;
  7042. left:0px;
  7043. top:0px;
  7044. width:567px;
  7045. height:30px;
  7046. background:inherit;
  7047. background-color:rgba(255, 255, 255, 1);
  7048. border:none;
  7049. border-radius:0px;
  7050. -moz-box-shadow:none;
  7051. -webkit-box-shadow:none;
  7052. box-shadow:none;
  7053. color:#AAAAAA;
  7054. }
  7055. #u4547 {
  7056. border-width:0px;
  7057. position:absolute;
  7058. left:1806px;
  7059. top:125px;
  7060. width:567px;
  7061. height:30px;
  7062. display:flex;
  7063. color:#AAAAAA;
  7064. }
  7065. #u4547 .text {
  7066. position:absolute;
  7067. align-self:flex-start;
  7068. padding:2px 2px 2px 0px;
  7069. box-sizing:border-box;
  7070. width:100%;
  7071. }
  7072. #u4547_div.disabled {
  7073. border-width:0px;
  7074. position:absolute;
  7075. left:0px;
  7076. top:0px;
  7077. width:567px;
  7078. height:30px;
  7079. background:inherit;
  7080. background-color:rgba(240, 240, 240, 1);
  7081. border:none;
  7082. border-radius:0px;
  7083. -moz-box-shadow:none;
  7084. -webkit-box-shadow:none;
  7085. box-shadow:none;
  7086. color:#AAAAAA;
  7087. }
  7088. #u4547.disabled {
  7089. }
  7090. .u4547_input_option {
  7091. }
  7092. #u4548_div {
  7093. border-width:0px;
  7094. position:absolute;
  7095. left:0px;
  7096. top:0px;
  7097. width:78px;
  7098. height:30px;
  7099. background:inherit;
  7100. background-color:rgba(255, 255, 255, 0);
  7101. border:none;
  7102. border-top:0px;
  7103. border-right:0px;
  7104. border-bottom:0px;
  7105. border-radius:0px;
  7106. border-top-left-radius:0px;
  7107. border-bottom-left-radius:0px;
  7108. -moz-box-shadow:none;
  7109. -webkit-box-shadow:none;
  7110. box-shadow:none;
  7111. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7112. font-weight:400;
  7113. font-style:normal;
  7114. font-size:14px;
  7115. text-align:right;
  7116. }
  7117. #u4548 {
  7118. border-width:0px;
  7119. position:absolute;
  7120. left:1704px;
  7121. top:170px;
  7122. width:78px;
  7123. height:30px;
  7124. display:flex;
  7125. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7126. font-weight:400;
  7127. font-style:normal;
  7128. font-size:14px;
  7129. text-align:right;
  7130. }
  7131. #u4548 .text {
  7132. position:absolute;
  7133. align-self:center;
  7134. padding:5px 0px 5px 0px;
  7135. box-sizing:border-box;
  7136. width:100%;
  7137. }
  7138. #u4548_text {
  7139. border-width:0px;
  7140. white-space:nowrap;
  7141. text-transform:none;
  7142. }
  7143. #u4549 label {
  7144. left:0px;
  7145. width:100%;
  7146. }
  7147. #u4549_img {
  7148. border-width:0px;
  7149. position:absolute;
  7150. left:0px;
  7151. top:3px;
  7152. width:12px;
  7153. height:12px;
  7154. }
  7155. #u4549 {
  7156. border-width:0px;
  7157. position:absolute;
  7158. left:1793px;
  7159. top:178px;
  7160. width:100px;
  7161. height:18px;
  7162. display:flex;
  7163. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7164. font-weight:400;
  7165. font-style:normal;
  7166. }
  7167. #u4549 .text {
  7168. position:absolute;
  7169. align-self:center;
  7170. padding:0px 2px 0px 2px;
  7171. box-sizing:border-box;
  7172. }
  7173. #u4549_img.selected {
  7174. }
  7175. #u4549.selected {
  7176. }
  7177. #u4549_img.disabled {
  7178. }
  7179. #u4549.disabled {
  7180. }
  7181. #u4549_img.selectedDisabled {
  7182. }
  7183. #u4549.selectedDisabled {
  7184. }
  7185. #u4549_text {
  7186. border-width:0px;
  7187. position:absolute;
  7188. left:14px;
  7189. top:0px;
  7190. width:84px;
  7191. word-wrap:break-word;
  7192. text-transform:none;
  7193. }
  7194. #u4549_input {
  7195. border-width:0px;
  7196. position:absolute;
  7197. left:0px;
  7198. top:0px;
  7199. width:0px;
  7200. height:0px;
  7201. opacity:0;
  7202. }
  7203. #u4550 label {
  7204. left:0px;
  7205. width:100%;
  7206. }
  7207. #u4550_img {
  7208. border-width:0px;
  7209. position:absolute;
  7210. left:0px;
  7211. top:3px;
  7212. width:12px;
  7213. height:12px;
  7214. }
  7215. #u4550 {
  7216. border-width:0px;
  7217. position:absolute;
  7218. left:1893px;
  7219. top:178px;
  7220. width:100px;
  7221. height:18px;
  7222. display:flex;
  7223. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7224. font-weight:400;
  7225. font-style:normal;
  7226. }
  7227. #u4550 .text {
  7228. position:absolute;
  7229. align-self:center;
  7230. padding:0px 2px 0px 2px;
  7231. box-sizing:border-box;
  7232. }
  7233. #u4550_img.selected {
  7234. }
  7235. #u4550.selected {
  7236. }
  7237. #u4550_img.disabled {
  7238. }
  7239. #u4550.disabled {
  7240. }
  7241. #u4550_img.selectedDisabled {
  7242. }
  7243. #u4550.selectedDisabled {
  7244. }
  7245. #u4550_text {
  7246. border-width:0px;
  7247. position:absolute;
  7248. left:14px;
  7249. top:0px;
  7250. width:84px;
  7251. word-wrap:break-word;
  7252. text-transform:none;
  7253. }
  7254. #u4550_input {
  7255. border-width:0px;
  7256. position:absolute;
  7257. left:0px;
  7258. top:0px;
  7259. width:0px;
  7260. height:0px;
  7261. opacity:0;
  7262. }
  7263. #u4551 label {
  7264. left:0px;
  7265. width:100%;
  7266. }
  7267. #u4551_img {
  7268. border-width:0px;
  7269. position:absolute;
  7270. left:0px;
  7271. top:3px;
  7272. width:12px;
  7273. height:12px;
  7274. }
  7275. #u4551 {
  7276. border-width:0px;
  7277. position:absolute;
  7278. left:2013px;
  7279. top:178px;
  7280. width:100px;
  7281. height:18px;
  7282. display:flex;
  7283. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7284. font-weight:400;
  7285. font-style:normal;
  7286. }
  7287. #u4551 .text {
  7288. position:absolute;
  7289. align-self:center;
  7290. padding:0px 2px 0px 2px;
  7291. box-sizing:border-box;
  7292. }
  7293. #u4551_img.selected {
  7294. }
  7295. #u4551.selected {
  7296. }
  7297. #u4551_img.disabled {
  7298. }
  7299. #u4551.disabled {
  7300. }
  7301. #u4551_img.selectedDisabled {
  7302. }
  7303. #u4551.selectedDisabled {
  7304. }
  7305. #u4551_text {
  7306. border-width:0px;
  7307. position:absolute;
  7308. left:14px;
  7309. top:0px;
  7310. width:84px;
  7311. word-wrap:break-word;
  7312. text-transform:none;
  7313. }
  7314. #u4551_input {
  7315. border-width:0px;
  7316. position:absolute;
  7317. left:0px;
  7318. top:0px;
  7319. width:0px;
  7320. height:0px;
  7321. opacity:0;
  7322. }
  7323. #u4552_div {
  7324. border-width:0px;
  7325. position:absolute;
  7326. left:0px;
  7327. top:0px;
  7328. width:78px;
  7329. height:30px;
  7330. background:inherit;
  7331. background-color:rgba(255, 255, 255, 0);
  7332. border:none;
  7333. border-top:0px;
  7334. border-right:0px;
  7335. border-bottom:0px;
  7336. border-radius:0px;
  7337. border-top-left-radius:0px;
  7338. border-bottom-left-radius:0px;
  7339. -moz-box-shadow:none;
  7340. -webkit-box-shadow:none;
  7341. box-shadow:none;
  7342. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7343. font-weight:400;
  7344. font-style:normal;
  7345. font-size:14px;
  7346. text-align:right;
  7347. }
  7348. #u4552 {
  7349. border-width:0px;
  7350. position:absolute;
  7351. left:1704px;
  7352. top:126px;
  7353. width:78px;
  7354. height:30px;
  7355. display:flex;
  7356. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7357. font-weight:400;
  7358. font-style:normal;
  7359. font-size:14px;
  7360. text-align:right;
  7361. }
  7362. #u4552 .text {
  7363. position:absolute;
  7364. align-self:center;
  7365. padding:5px 0px 5px 0px;
  7366. box-sizing:border-box;
  7367. width:100%;
  7368. }
  7369. #u4552_text {
  7370. border-width:0px;
  7371. white-space:nowrap;
  7372. text-transform:none;
  7373. }
  7374. #u4553 {
  7375. border-width:0px;
  7376. position:absolute;
  7377. left:0px;
  7378. top:0px;
  7379. width:0px;
  7380. height:0px;
  7381. }
  7382. #u4554_div {
  7383. border-width:0px;
  7384. position:absolute;
  7385. left:0px;
  7386. top:0px;
  7387. width:860px;
  7388. height:1214px;
  7389. background:inherit;
  7390. background-color:rgba(255, 255, 255, 1);
  7391. box-sizing:border-box;
  7392. border-width:1px;
  7393. border-style:solid;
  7394. border-color:rgba(215, 215, 215, 1);
  7395. border-radius:0px;
  7396. -moz-box-shadow:none;
  7397. -webkit-box-shadow:none;
  7398. box-shadow:none;
  7399. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7400. font-weight:400;
  7401. font-style:normal;
  7402. font-size:14px;
  7403. color:#AAAAAA;
  7404. text-align:center;
  7405. line-height:30px;
  7406. }
  7407. #u4554 {
  7408. border-width:0px;
  7409. position:absolute;
  7410. left:2488px;
  7411. top:44px;
  7412. width:860px;
  7413. height:1214px;
  7414. display:flex;
  7415. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7416. font-weight:400;
  7417. font-style:normal;
  7418. font-size:14px;
  7419. color:#AAAAAA;
  7420. text-align:center;
  7421. line-height:30px;
  7422. }
  7423. #u4554 .text {
  7424. position:absolute;
  7425. align-self:center;
  7426. padding:5px 10px 5px 10px;
  7427. box-sizing:border-box;
  7428. width:100%;
  7429. }
  7430. #u4554_text {
  7431. border-width:0px;
  7432. word-wrap:break-word;
  7433. text-transform:none;
  7434. visibility:hidden;
  7435. }
  7436. #u4555_div {
  7437. border-width:0px;
  7438. position:absolute;
  7439. left:0px;
  7440. top:0px;
  7441. width:83px;
  7442. height:35px;
  7443. background:inherit;
  7444. background-color:rgba(255, 255, 255, 0);
  7445. border:none;
  7446. border-top:0px;
  7447. border-right:0px;
  7448. border-bottom:0px;
  7449. border-radius:0px;
  7450. border-top-left-radius:0px;
  7451. border-bottom-left-radius:0px;
  7452. -moz-box-shadow:none;
  7453. -webkit-box-shadow:none;
  7454. box-shadow:none;
  7455. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  7456. font-weight:500;
  7457. font-style:normal;
  7458. font-size:18px;
  7459. }
  7460. #u4555 {
  7461. border-width:0px;
  7462. position:absolute;
  7463. left:2508px;
  7464. top:62px;
  7465. width:83px;
  7466. height:35px;
  7467. display:flex;
  7468. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  7469. font-weight:500;
  7470. font-style:normal;
  7471. font-size:18px;
  7472. }
  7473. #u4555 .text {
  7474. position:absolute;
  7475. align-self:center;
  7476. padding:5px 10px 5px 0px;
  7477. box-sizing:border-box;
  7478. width:100%;
  7479. }
  7480. #u4555_text {
  7481. border-width:0px;
  7482. white-space:nowrap;
  7483. text-transform:none;
  7484. }
  7485. #u4556 {
  7486. border-width:0px;
  7487. position:absolute;
  7488. left:0px;
  7489. top:0px;
  7490. width:0px;
  7491. height:0px;
  7492. }
  7493. #u4557_div {
  7494. border-width:0px;
  7495. position:absolute;
  7496. left:0px;
  7497. top:0px;
  7498. width:40px;
  7499. height:40px;
  7500. background:inherit;
  7501. background-color:rgba(255, 255, 255, 0);
  7502. border:none;
  7503. border-top:0px;
  7504. border-right:0px;
  7505. border-bottom:0px;
  7506. border-radius:0px;
  7507. border-top-left-radius:0px;
  7508. border-bottom-left-radius:0px;
  7509. -moz-box-shadow:none;
  7510. -webkit-box-shadow:none;
  7511. box-shadow:none;
  7512. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  7513. font-weight:500;
  7514. font-style:normal;
  7515. font-size:14px;
  7516. text-align:center;
  7517. }
  7518. #u4557 {
  7519. border-width:0px;
  7520. position:absolute;
  7521. left:3308px;
  7522. top:44px;
  7523. width:40px;
  7524. height:40px;
  7525. display:flex;
  7526. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  7527. font-weight:500;
  7528. font-style:normal;
  7529. font-size:14px;
  7530. text-align:center;
  7531. }
  7532. #u4557 .text {
  7533. position:absolute;
  7534. align-self:center;
  7535. padding:5px 10px 5px 0px;
  7536. box-sizing:border-box;
  7537. width:100%;
  7538. }
  7539. #u4557_text {
  7540. border-width:0px;
  7541. word-wrap:break-word;
  7542. text-transform:none;
  7543. }
  7544. #u4558_img {
  7545. border-width:0px;
  7546. position:absolute;
  7547. left:0px;
  7548. top:0px;
  7549. width:13px;
  7550. height:13px;
  7551. }
  7552. #u4558 {
  7553. border-width:0px;
  7554. position:absolute;
  7555. left:3296px;
  7556. top:60px;
  7557. width:13px;
  7558. height:13px;
  7559. display:flex;
  7560. font-size:14px;
  7561. }
  7562. #u4558 .text {
  7563. position:absolute;
  7564. align-self:center;
  7565. padding:2px 2px 2px 2px;
  7566. box-sizing:border-box;
  7567. width:100%;
  7568. }
  7569. #u4558_text {
  7570. border-width:0px;
  7571. word-wrap:break-word;
  7572. text-transform:none;
  7573. visibility:hidden;
  7574. }
  7575. #u4559_div {
  7576. border-width:0px;
  7577. position:absolute;
  7578. left:0px;
  7579. top:0px;
  7580. width:81px;
  7581. height:50px;
  7582. background:inherit;
  7583. background-color:rgba(255, 255, 255, 0);
  7584. border:none;
  7585. border-top:0px;
  7586. border-right:0px;
  7587. border-bottom:0px;
  7588. border-radius:0px;
  7589. border-top-left-radius:0px;
  7590. border-bottom-left-radius:0px;
  7591. -moz-box-shadow:none;
  7592. -webkit-box-shadow:none;
  7593. box-shadow:none;
  7594. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7595. font-weight:400;
  7596. font-style:normal;
  7597. font-size:14px;
  7598. color:#7F7F7F;
  7599. text-align:right;
  7600. line-height:40px;
  7601. }
  7602. #u4559 {
  7603. border-width:0px;
  7604. position:absolute;
  7605. left:2531px;
  7606. top:117px;
  7607. width:81px;
  7608. height:50px;
  7609. display:flex;
  7610. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7611. font-weight:400;
  7612. font-style:normal;
  7613. font-size:14px;
  7614. color:#7F7F7F;
  7615. text-align:right;
  7616. line-height:40px;
  7617. }
  7618. #u4559 .text {
  7619. position:absolute;
  7620. align-self:flex-start;
  7621. padding:5px 10px 5px 0px;
  7622. box-sizing:border-box;
  7623. width:100%;
  7624. }
  7625. #u4559_text {
  7626. border-width:0px;
  7627. white-space:nowrap;
  7628. text-transform:none;
  7629. }
  7630. #u4560_div {
  7631. border-width:0px;
  7632. position:absolute;
  7633. left:0px;
  7634. top:0px;
  7635. width:67px;
  7636. height:50px;
  7637. background:inherit;
  7638. background-color:rgba(255, 255, 255, 0);
  7639. border:none;
  7640. border-top:0px;
  7641. border-right:0px;
  7642. border-bottom:0px;
  7643. border-radius:0px;
  7644. border-top-left-radius:0px;
  7645. border-bottom-left-radius:0px;
  7646. -moz-box-shadow:none;
  7647. -webkit-box-shadow:none;
  7648. box-shadow:none;
  7649. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7650. font-weight:400;
  7651. font-style:normal;
  7652. font-size:14px;
  7653. line-height:40px;
  7654. }
  7655. #u4560 {
  7656. border-width:0px;
  7657. position:absolute;
  7658. left:2612px;
  7659. top:117px;
  7660. width:67px;
  7661. height:50px;
  7662. display:flex;
  7663. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7664. font-weight:400;
  7665. font-style:normal;
  7666. font-size:14px;
  7667. line-height:40px;
  7668. }
  7669. #u4560 .text {
  7670. position:absolute;
  7671. align-self:flex-start;
  7672. padding:5px 10px 5px 0px;
  7673. box-sizing:border-box;
  7674. width:100%;
  7675. }
  7676. #u4560_text {
  7677. border-width:0px;
  7678. white-space:nowrap;
  7679. text-transform:none;
  7680. }
  7681. #u4561_div {
  7682. border-width:0px;
  7683. position:absolute;
  7684. left:0px;
  7685. top:0px;
  7686. width:43px;
  7687. height:40px;
  7688. background:inherit;
  7689. background-color:rgba(255, 255, 255, 0);
  7690. border:none;
  7691. border-top:0px;
  7692. border-right:0px;
  7693. border-bottom:0px;
  7694. border-radius:0px;
  7695. border-top-left-radius:0px;
  7696. border-bottom-left-radius:0px;
  7697. -moz-box-shadow:none;
  7698. -webkit-box-shadow:none;
  7699. box-shadow:none;
  7700. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7701. font-weight:400;
  7702. font-style:normal;
  7703. font-size:14px;
  7704. color:#7F7F7F;
  7705. text-align:right;
  7706. line-height:40px;
  7707. }
  7708. #u4561 {
  7709. border-width:0px;
  7710. position:absolute;
  7711. left:2549px;
  7712. top:314px;
  7713. width:43px;
  7714. height:40px;
  7715. display:flex;
  7716. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7717. font-weight:400;
  7718. font-style:normal;
  7719. font-size:14px;
  7720. color:#7F7F7F;
  7721. text-align:right;
  7722. line-height:40px;
  7723. }
  7724. #u4561 .text {
  7725. position:absolute;
  7726. align-self:flex-start;
  7727. padding:0px 0px 0px 0px;
  7728. box-sizing:border-box;
  7729. width:100%;
  7730. }
  7731. #u4561_text {
  7732. border-width:0px;
  7733. white-space:nowrap;
  7734. text-transform:none;
  7735. }
  7736. #u4562_div {
  7737. border-width:0px;
  7738. position:absolute;
  7739. left:0px;
  7740. top:0px;
  7741. width:300px;
  7742. height:40px;
  7743. background:inherit;
  7744. background-color:rgba(255, 255, 255, 0);
  7745. border:none;
  7746. border-top:0px;
  7747. border-right:0px;
  7748. border-bottom:0px;
  7749. border-radius:0px;
  7750. border-top-left-radius:0px;
  7751. border-bottom-left-radius:0px;
  7752. -moz-box-shadow:none;
  7753. -webkit-box-shadow:none;
  7754. box-shadow:none;
  7755. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  7756. font-weight:500;
  7757. font-style:normal;
  7758. font-size:14px;
  7759. line-height:30px;
  7760. }
  7761. #u4562 {
  7762. border-width:0px;
  7763. position:absolute;
  7764. left:2618px;
  7765. top:314px;
  7766. width:300px;
  7767. height:40px;
  7768. display:flex;
  7769. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  7770. font-weight:500;
  7771. font-style:normal;
  7772. font-size:14px;
  7773. line-height:30px;
  7774. }
  7775. #u4562 .text {
  7776. position:absolute;
  7777. align-self:flex-start;
  7778. padding:5px 10px 5px 0px;
  7779. box-sizing:border-box;
  7780. width:100%;
  7781. }
  7782. #u4562_text {
  7783. border-width:0px;
  7784. white-space:nowrap;
  7785. text-transform:none;
  7786. }
  7787. #u4563_div {
  7788. border-width:0px;
  7789. position:absolute;
  7790. left:0px;
  7791. top:0px;
  7792. width:81px;
  7793. height:50px;
  7794. background:inherit;
  7795. background-color:rgba(255, 255, 255, 0);
  7796. border:none;
  7797. border-top:0px;
  7798. border-right:0px;
  7799. border-bottom:0px;
  7800. border-radius:0px;
  7801. border-top-left-radius:0px;
  7802. border-bottom-left-radius:0px;
  7803. -moz-box-shadow:none;
  7804. -webkit-box-shadow:none;
  7805. box-shadow:none;
  7806. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7807. font-weight:400;
  7808. font-style:normal;
  7809. font-size:14px;
  7810. color:#7F7F7F;
  7811. text-align:right;
  7812. line-height:40px;
  7813. }
  7814. #u4563 {
  7815. border-width:0px;
  7816. position:absolute;
  7817. left:2531px;
  7818. top:167px;
  7819. width:81px;
  7820. height:50px;
  7821. display:flex;
  7822. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7823. font-weight:400;
  7824. font-style:normal;
  7825. font-size:14px;
  7826. color:#7F7F7F;
  7827. text-align:right;
  7828. line-height:40px;
  7829. }
  7830. #u4563 .text {
  7831. position:absolute;
  7832. align-self:flex-start;
  7833. padding:5px 10px 5px 0px;
  7834. box-sizing:border-box;
  7835. width:100%;
  7836. }
  7837. #u4563_text {
  7838. border-width:0px;
  7839. white-space:nowrap;
  7840. text-transform:none;
  7841. }
  7842. #u4564_div {
  7843. border-width:0px;
  7844. position:absolute;
  7845. left:0px;
  7846. top:0px;
  7847. width:148px;
  7848. height:50px;
  7849. background:inherit;
  7850. background-color:rgba(255, 255, 255, 0);
  7851. border:none;
  7852. border-top:0px;
  7853. border-right:0px;
  7854. border-bottom:0px;
  7855. border-radius:0px;
  7856. border-top-left-radius:0px;
  7857. border-bottom-left-radius:0px;
  7858. -moz-box-shadow:none;
  7859. -webkit-box-shadow:none;
  7860. box-shadow:none;
  7861. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7862. font-weight:400;
  7863. font-style:normal;
  7864. font-size:14px;
  7865. line-height:40px;
  7866. }
  7867. #u4564 {
  7868. border-width:0px;
  7869. position:absolute;
  7870. left:2612px;
  7871. top:167px;
  7872. width:148px;
  7873. height:50px;
  7874. display:flex;
  7875. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7876. font-weight:400;
  7877. font-style:normal;
  7878. font-size:14px;
  7879. line-height:40px;
  7880. }
  7881. #u4564 .text {
  7882. position:absolute;
  7883. align-self:flex-start;
  7884. padding:5px 10px 5px 0px;
  7885. box-sizing:border-box;
  7886. width:100%;
  7887. }
  7888. #u4564_text {
  7889. border-width:0px;
  7890. white-space:nowrap;
  7891. text-transform:none;
  7892. }
  7893. #u4565_div {
  7894. border-width:0px;
  7895. position:absolute;
  7896. left:0px;
  7897. top:0px;
  7898. width:81px;
  7899. height:50px;
  7900. background:inherit;
  7901. background-color:rgba(255, 255, 255, 0);
  7902. border:none;
  7903. border-top:0px;
  7904. border-right:0px;
  7905. border-bottom:0px;
  7906. border-radius:0px;
  7907. border-top-left-radius:0px;
  7908. border-bottom-left-radius:0px;
  7909. -moz-box-shadow:none;
  7910. -webkit-box-shadow:none;
  7911. box-shadow:none;
  7912. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7913. font-weight:400;
  7914. font-style:normal;
  7915. font-size:14px;
  7916. color:#7F7F7F;
  7917. text-align:right;
  7918. line-height:40px;
  7919. }
  7920. #u4565 {
  7921. border-width:0px;
  7922. position:absolute;
  7923. left:2905px;
  7924. top:175px;
  7925. width:81px;
  7926. height:50px;
  7927. display:flex;
  7928. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7929. font-weight:400;
  7930. font-style:normal;
  7931. font-size:14px;
  7932. color:#7F7F7F;
  7933. text-align:right;
  7934. line-height:40px;
  7935. }
  7936. #u4565 .text {
  7937. position:absolute;
  7938. align-self:flex-start;
  7939. padding:5px 10px 5px 0px;
  7940. box-sizing:border-box;
  7941. width:100%;
  7942. }
  7943. #u4565_text {
  7944. border-width:0px;
  7945. white-space:nowrap;
  7946. text-transform:none;
  7947. }
  7948. #u4566_div {
  7949. border-width:0px;
  7950. position:absolute;
  7951. left:0px;
  7952. top:0px;
  7953. width:146px;
  7954. height:50px;
  7955. background:inherit;
  7956. background-color:rgba(255, 255, 255, 0);
  7957. border:none;
  7958. border-top:0px;
  7959. border-right:0px;
  7960. border-bottom:0px;
  7961. border-radius:0px;
  7962. border-top-left-radius:0px;
  7963. border-bottom-left-radius:0px;
  7964. -moz-box-shadow:none;
  7965. -webkit-box-shadow:none;
  7966. box-shadow:none;
  7967. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7968. font-weight:400;
  7969. font-style:normal;
  7970. font-size:14px;
  7971. line-height:40px;
  7972. }
  7973. #u4566 {
  7974. border-width:0px;
  7975. position:absolute;
  7976. left:2986px;
  7977. top:175px;
  7978. width:146px;
  7979. height:50px;
  7980. display:flex;
  7981. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7982. font-weight:400;
  7983. font-style:normal;
  7984. font-size:14px;
  7985. line-height:40px;
  7986. }
  7987. #u4566 .text {
  7988. position:absolute;
  7989. align-self:flex-start;
  7990. padding:5px 10px 5px 0px;
  7991. box-sizing:border-box;
  7992. width:100%;
  7993. }
  7994. #u4566_text {
  7995. border-width:0px;
  7996. white-space:nowrap;
  7997. text-transform:none;
  7998. }
  7999. #u4567_div {
  8000. border-width:0px;
  8001. position:absolute;
  8002. left:0px;
  8003. top:0px;
  8004. width:81px;
  8005. height:50px;
  8006. background:inherit;
  8007. background-color:rgba(255, 255, 255, 0);
  8008. border:none;
  8009. border-top:0px;
  8010. border-right:0px;
  8011. border-bottom:0px;
  8012. border-radius:0px;
  8013. border-top-left-radius:0px;
  8014. border-bottom-left-radius:0px;
  8015. -moz-box-shadow:none;
  8016. -webkit-box-shadow:none;
  8017. box-shadow:none;
  8018. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8019. font-weight:400;
  8020. font-style:normal;
  8021. font-size:14px;
  8022. color:#7F7F7F;
  8023. text-align:right;
  8024. line-height:40px;
  8025. }
  8026. #u4567 {
  8027. border-width:0px;
  8028. position:absolute;
  8029. left:2919px;
  8030. top:125px;
  8031. width:81px;
  8032. height:50px;
  8033. display:flex;
  8034. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8035. font-weight:400;
  8036. font-style:normal;
  8037. font-size:14px;
  8038. color:#7F7F7F;
  8039. text-align:right;
  8040. line-height:40px;
  8041. }
  8042. #u4567 .text {
  8043. position:absolute;
  8044. align-self:flex-start;
  8045. padding:5px 10px 5px 0px;
  8046. box-sizing:border-box;
  8047. width:100%;
  8048. }
  8049. #u4567_text {
  8050. border-width:0px;
  8051. white-space:nowrap;
  8052. text-transform:none;
  8053. }
  8054. #u4568_div {
  8055. border-width:0px;
  8056. position:absolute;
  8057. left:0px;
  8058. top:0px;
  8059. width:132px;
  8060. height:50px;
  8061. background:inherit;
  8062. background-color:rgba(255, 255, 255, 0);
  8063. border:none;
  8064. border-top:0px;
  8065. border-right:0px;
  8066. border-bottom:0px;
  8067. border-radius:0px;
  8068. border-top-left-radius:0px;
  8069. border-bottom-left-radius:0px;
  8070. -moz-box-shadow:none;
  8071. -webkit-box-shadow:none;
  8072. box-shadow:none;
  8073. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8074. font-weight:400;
  8075. font-style:normal;
  8076. font-size:14px;
  8077. line-height:40px;
  8078. }
  8079. #u4568 {
  8080. border-width:0px;
  8081. position:absolute;
  8082. left:3000px;
  8083. top:125px;
  8084. width:132px;
  8085. height:50px;
  8086. display:flex;
  8087. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8088. font-weight:400;
  8089. font-style:normal;
  8090. font-size:14px;
  8091. line-height:40px;
  8092. }
  8093. #u4568 .text {
  8094. position:absolute;
  8095. align-self:flex-start;
  8096. padding:5px 10px 5px 0px;
  8097. box-sizing:border-box;
  8098. width:100%;
  8099. }
  8100. #u4568_text {
  8101. border-width:0px;
  8102. white-space:nowrap;
  8103. text-transform:none;
  8104. }
  8105. #u4569_div {
  8106. border-width:0px;
  8107. position:absolute;
  8108. left:0px;
  8109. top:0px;
  8110. width:43px;
  8111. height:40px;
  8112. background:inherit;
  8113. background-color:rgba(255, 255, 255, 0);
  8114. border:none;
  8115. border-top:0px;
  8116. border-right:0px;
  8117. border-bottom:0px;
  8118. border-radius:0px;
  8119. border-top-left-radius:0px;
  8120. border-bottom-left-radius:0px;
  8121. -moz-box-shadow:none;
  8122. -webkit-box-shadow:none;
  8123. box-shadow:none;
  8124. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8125. font-weight:400;
  8126. font-style:normal;
  8127. font-size:14px;
  8128. color:#7F7F7F;
  8129. text-align:right;
  8130. line-height:40px;
  8131. }
  8132. #u4569 {
  8133. border-width:0px;
  8134. position:absolute;
  8135. left:2549px;
  8136. top:593px;
  8137. width:43px;
  8138. height:40px;
  8139. display:flex;
  8140. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8141. font-weight:400;
  8142. font-style:normal;
  8143. font-size:14px;
  8144. color:#7F7F7F;
  8145. text-align:right;
  8146. line-height:40px;
  8147. }
  8148. #u4569 .text {
  8149. position:absolute;
  8150. align-self:flex-start;
  8151. padding:0px 0px 0px 0px;
  8152. box-sizing:border-box;
  8153. width:100%;
  8154. }
  8155. #u4569_text {
  8156. border-width:0px;
  8157. white-space:nowrap;
  8158. text-transform:none;
  8159. }
  8160. #u4570_div {
  8161. border-width:0px;
  8162. position:absolute;
  8163. left:0px;
  8164. top:0px;
  8165. width:716px;
  8166. height:35px;
  8167. background:inherit;
  8168. background-color:rgba(255, 255, 255, 0);
  8169. border:none;
  8170. border-top:0px;
  8171. border-right:0px;
  8172. border-bottom:0px;
  8173. border-radius:0px;
  8174. border-top-left-radius:0px;
  8175. border-bottom-left-radius:0px;
  8176. -moz-box-shadow:none;
  8177. -webkit-box-shadow:none;
  8178. box-shadow:none;
  8179. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8180. font-weight:400;
  8181. font-style:normal;
  8182. font-size:14px;
  8183. line-height:25px;
  8184. }
  8185. #u4570 {
  8186. border-width:0px;
  8187. position:absolute;
  8188. left:2620px;
  8189. top:593px;
  8190. width:716px;
  8191. height:35px;
  8192. display:flex;
  8193. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8194. font-weight:400;
  8195. font-style:normal;
  8196. font-size:14px;
  8197. line-height:25px;
  8198. }
  8199. #u4570 .text {
  8200. position:absolute;
  8201. align-self:flex-start;
  8202. padding:5px 10px 5px 0px;
  8203. box-sizing:border-box;
  8204. width:100%;
  8205. }
  8206. #u4570_text {
  8207. border-width:0px;
  8208. word-wrap:break-word;
  8209. text-transform:none;
  8210. }
  8211. #u4571_div {
  8212. border-width:0px;
  8213. position:absolute;
  8214. left:0px;
  8215. top:0px;
  8216. width:43px;
  8217. height:40px;
  8218. background:inherit;
  8219. background-color:rgba(255, 255, 255, 0);
  8220. border:none;
  8221. border-top:0px;
  8222. border-right:0px;
  8223. border-bottom:0px;
  8224. border-radius:0px;
  8225. border-top-left-radius:0px;
  8226. border-bottom-left-radius:0px;
  8227. -moz-box-shadow:none;
  8228. -webkit-box-shadow:none;
  8229. box-shadow:none;
  8230. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8231. font-weight:400;
  8232. font-style:normal;
  8233. font-size:14px;
  8234. color:#7F7F7F;
  8235. text-align:right;
  8236. line-height:40px;
  8237. }
  8238. #u4571 {
  8239. border-width:0px;
  8240. position:absolute;
  8241. left:2549px;
  8242. top:364px;
  8243. width:43px;
  8244. height:40px;
  8245. display:flex;
  8246. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8247. font-weight:400;
  8248. font-style:normal;
  8249. font-size:14px;
  8250. color:#7F7F7F;
  8251. text-align:right;
  8252. line-height:40px;
  8253. }
  8254. #u4571 .text {
  8255. position:absolute;
  8256. align-self:flex-start;
  8257. padding:0px 0px 0px 0px;
  8258. box-sizing:border-box;
  8259. width:100%;
  8260. }
  8261. #u4571_text {
  8262. border-width:0px;
  8263. white-space:nowrap;
  8264. text-transform:none;
  8265. }
  8266. #u4572_img {
  8267. border-width:0px;
  8268. position:absolute;
  8269. left:0px;
  8270. top:0px;
  8271. width:181px;
  8272. height:119px;
  8273. }
  8274. #u4572 {
  8275. border-width:0px;
  8276. position:absolute;
  8277. left:2618px;
  8278. top:364px;
  8279. width:181px;
  8280. height:119px;
  8281. display:flex;
  8282. }
  8283. #u4572 .text {
  8284. position:absolute;
  8285. align-self:center;
  8286. padding:2px 2px 2px 2px;
  8287. box-sizing:border-box;
  8288. width:100%;
  8289. }
  8290. #u4572_text {
  8291. border-width:0px;
  8292. word-wrap:break-word;
  8293. text-transform:none;
  8294. visibility:hidden;
  8295. }
  8296. #u4573_img {
  8297. border-width:0px;
  8298. position:absolute;
  8299. left:0px;
  8300. top:0px;
  8301. width:766px;
  8302. height:2px;
  8303. }
  8304. #u4573 {
  8305. border-width:0px;
  8306. position:absolute;
  8307. left:2531px;
  8308. top:233px;
  8309. width:765px;
  8310. height:1px;
  8311. display:flex;
  8312. }
  8313. #u4573 .text {
  8314. position:absolute;
  8315. align-self:center;
  8316. padding:2px 2px 2px 2px;
  8317. box-sizing:border-box;
  8318. width:100%;
  8319. }
  8320. #u4573_text {
  8321. border-width:0px;
  8322. word-wrap:break-word;
  8323. text-transform:none;
  8324. visibility:hidden;
  8325. }
  8326. #u4574_div {
  8327. border-width:0px;
  8328. position:absolute;
  8329. left:0px;
  8330. top:0px;
  8331. width:83px;
  8332. height:50px;
  8333. background:inherit;
  8334. background-color:rgba(255, 255, 255, 0);
  8335. border:none;
  8336. border-top:0px;
  8337. border-right:0px;
  8338. border-bottom:0px;
  8339. border-radius:0px;
  8340. border-top-left-radius:0px;
  8341. border-bottom-left-radius:0px;
  8342. -moz-box-shadow:none;
  8343. -webkit-box-shadow:none;
  8344. box-shadow:none;
  8345. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  8346. font-weight:500;
  8347. font-style:normal;
  8348. font-size:18px;
  8349. line-height:40px;
  8350. }
  8351. #u4574 {
  8352. border-width:0px;
  8353. position:absolute;
  8354. left:2531px;
  8355. top:254px;
  8356. width:83px;
  8357. height:50px;
  8358. display:flex;
  8359. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  8360. font-weight:500;
  8361. font-style:normal;
  8362. font-size:18px;
  8363. line-height:40px;
  8364. }
  8365. #u4574 .text {
  8366. position:absolute;
  8367. align-self:flex-start;
  8368. padding:5px 10px 5px 0px;
  8369. box-sizing:border-box;
  8370. width:100%;
  8371. }
  8372. #u4574_text {
  8373. border-width:0px;
  8374. white-space:nowrap;
  8375. text-transform:none;
  8376. }
  8377. #u4575_div {
  8378. border-width:0px;
  8379. position:absolute;
  8380. left:0px;
  8381. top:0px;
  8382. width:43px;
  8383. height:40px;
  8384. background:inherit;
  8385. background-color:rgba(255, 255, 255, 0);
  8386. border:none;
  8387. border-top:0px;
  8388. border-right:0px;
  8389. border-bottom:0px;
  8390. border-radius:0px;
  8391. border-top-left-radius:0px;
  8392. border-bottom-left-radius:0px;
  8393. -moz-box-shadow:none;
  8394. -webkit-box-shadow:none;
  8395. box-shadow:none;
  8396. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8397. font-weight:400;
  8398. font-style:normal;
  8399. font-size:14px;
  8400. color:#7F7F7F;
  8401. text-align:right;
  8402. line-height:40px;
  8403. }
  8404. #u4575 {
  8405. border-width:0px;
  8406. position:absolute;
  8407. left:2549px;
  8408. top:493px;
  8409. width:43px;
  8410. height:40px;
  8411. display:flex;
  8412. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8413. font-weight:400;
  8414. font-style:normal;
  8415. font-size:14px;
  8416. color:#7F7F7F;
  8417. text-align:right;
  8418. line-height:40px;
  8419. }
  8420. #u4575 .text {
  8421. position:absolute;
  8422. align-self:flex-start;
  8423. padding:0px 0px 0px 0px;
  8424. box-sizing:border-box;
  8425. width:100%;
  8426. }
  8427. #u4575_text {
  8428. border-width:0px;
  8429. white-space:nowrap;
  8430. text-transform:none;
  8431. }
  8432. #u4576_div {
  8433. border-width:0px;
  8434. position:absolute;
  8435. left:0px;
  8436. top:0px;
  8437. width:676px;
  8438. height:35px;
  8439. background:inherit;
  8440. background-color:rgba(255, 255, 255, 0);
  8441. border:none;
  8442. border-top:0px;
  8443. border-right:0px;
  8444. border-bottom:0px;
  8445. border-radius:0px;
  8446. border-top-left-radius:0px;
  8447. border-bottom-left-radius:0px;
  8448. -moz-box-shadow:none;
  8449. -webkit-box-shadow:none;
  8450. box-shadow:none;
  8451. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8452. font-weight:400;
  8453. font-style:normal;
  8454. font-size:14px;
  8455. line-height:25px;
  8456. }
  8457. #u4576 {
  8458. border-width:0px;
  8459. position:absolute;
  8460. left:2620px;
  8461. top:493px;
  8462. width:676px;
  8463. height:35px;
  8464. display:flex;
  8465. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8466. font-weight:400;
  8467. font-style:normal;
  8468. font-size:14px;
  8469. line-height:25px;
  8470. }
  8471. #u4576 .text {
  8472. position:absolute;
  8473. align-self:flex-start;
  8474. padding:5px 10px 5px 0px;
  8475. box-sizing:border-box;
  8476. width:100%;
  8477. }
  8478. #u4576_text {
  8479. border-width:0px;
  8480. word-wrap:break-word;
  8481. text-transform:none;
  8482. }
  8483. #u4577_div {
  8484. border-width:0px;
  8485. position:absolute;
  8486. left:0px;
  8487. top:0px;
  8488. width:43px;
  8489. height:40px;
  8490. background:inherit;
  8491. background-color:rgba(255, 255, 255, 0);
  8492. border:none;
  8493. border-top:0px;
  8494. border-right:0px;
  8495. border-bottom:0px;
  8496. border-radius:0px;
  8497. border-top-left-radius:0px;
  8498. border-bottom-left-radius:0px;
  8499. -moz-box-shadow:none;
  8500. -webkit-box-shadow:none;
  8501. box-shadow:none;
  8502. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8503. font-weight:400;
  8504. font-style:normal;
  8505. font-size:14px;
  8506. color:#7F7F7F;
  8507. text-align:right;
  8508. line-height:40px;
  8509. }
  8510. #u4577 {
  8511. border-width:0px;
  8512. position:absolute;
  8513. left:2549px;
  8514. top:543px;
  8515. width:43px;
  8516. height:40px;
  8517. display:flex;
  8518. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8519. font-weight:400;
  8520. font-style:normal;
  8521. font-size:14px;
  8522. color:#7F7F7F;
  8523. text-align:right;
  8524. line-height:40px;
  8525. }
  8526. #u4577 .text {
  8527. position:absolute;
  8528. align-self:flex-start;
  8529. padding:0px 0px 0px 0px;
  8530. box-sizing:border-box;
  8531. width:100%;
  8532. }
  8533. #u4577_text {
  8534. border-width:0px;
  8535. white-space:nowrap;
  8536. text-transform:none;
  8537. }
  8538. #u4578 {
  8539. border-width:0px;
  8540. position:absolute;
  8541. left:0px;
  8542. top:0px;
  8543. width:0px;
  8544. height:0px;
  8545. }
  8546. #u4579_div {
  8547. border-width:0px;
  8548. position:absolute;
  8549. left:0px;
  8550. top:0px;
  8551. width:58px;
  8552. height:30px;
  8553. background:inherit;
  8554. background-color:rgba(245, 154, 35, 1);
  8555. border:none;
  8556. border-radius:28px;
  8557. -moz-box-shadow:none;
  8558. -webkit-box-shadow:none;
  8559. box-shadow:none;
  8560. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8561. font-weight:400;
  8562. font-style:normal;
  8563. font-size:14px;
  8564. color:#FFFFFF;
  8565. text-align:center;
  8566. }
  8567. #u4579 {
  8568. border-width:0px;
  8569. position:absolute;
  8570. left:2937px;
  8571. top:319px;
  8572. width:58px;
  8573. height:30px;
  8574. display:flex;
  8575. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8576. font-weight:400;
  8577. font-style:normal;
  8578. font-size:14px;
  8579. color:#FFFFFF;
  8580. text-align:center;
  8581. }
  8582. #u4579 .text {
  8583. position:absolute;
  8584. align-self:flex-start;
  8585. padding:5px 0px 5px 0px;
  8586. box-sizing:border-box;
  8587. width:100%;
  8588. }
  8589. #u4579_text {
  8590. border-width:0px;
  8591. word-wrap:break-word;
  8592. text-transform:none;
  8593. }
  8594. #u4580_div {
  8595. border-width:0px;
  8596. position:absolute;
  8597. left:0px;
  8598. top:0px;
  8599. width:676px;
  8600. height:35px;
  8601. background:inherit;
  8602. background-color:rgba(255, 255, 255, 0);
  8603. border:none;
  8604. border-top:0px;
  8605. border-right:0px;
  8606. border-bottom:0px;
  8607. border-radius:0px;
  8608. border-top-left-radius:0px;
  8609. border-bottom-left-radius:0px;
  8610. -moz-box-shadow:none;
  8611. -webkit-box-shadow:none;
  8612. box-shadow:none;
  8613. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8614. font-weight:400;
  8615. font-style:normal;
  8616. font-size:14px;
  8617. line-height:25px;
  8618. }
  8619. #u4580 {
  8620. border-width:0px;
  8621. position:absolute;
  8622. left:2620px;
  8623. top:543px;
  8624. width:676px;
  8625. height:35px;
  8626. display:flex;
  8627. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8628. font-weight:400;
  8629. font-style:normal;
  8630. font-size:14px;
  8631. line-height:25px;
  8632. }
  8633. #u4580 .text {
  8634. position:absolute;
  8635. align-self:flex-start;
  8636. padding:5px 10px 5px 0px;
  8637. box-sizing:border-box;
  8638. width:100%;
  8639. }
  8640. #u4580_text {
  8641. border-width:0px;
  8642. word-wrap:break-word;
  8643. text-transform:none;
  8644. }
  8645. #u4581 {
  8646. border-width:0px;
  8647. position:absolute;
  8648. left:0px;
  8649. top:0px;
  8650. width:0px;
  8651. height:0px;
  8652. }
  8653. #u4582_div {
  8654. border-width:0px;
  8655. position:absolute;
  8656. left:0px;
  8657. top:0px;
  8658. width:860px;
  8659. height:60px;
  8660. background:inherit;
  8661. background-color:rgba(255, 255, 255, 1);
  8662. box-sizing:border-box;
  8663. border-width:1px;
  8664. border-style:solid;
  8665. border-color:rgba(215, 215, 215, 1);
  8666. border-radius:0px;
  8667. -moz-box-shadow:none;
  8668. -webkit-box-shadow:none;
  8669. box-shadow:none;
  8670. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8671. font-weight:400;
  8672. font-style:normal;
  8673. font-size:14px;
  8674. color:#AAAAAA;
  8675. text-align:center;
  8676. line-height:30px;
  8677. }
  8678. #u4582 {
  8679. border-width:0px;
  8680. position:absolute;
  8681. left:2488px;
  8682. top:1198px;
  8683. width:860px;
  8684. height:60px;
  8685. display:flex;
  8686. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8687. font-weight:400;
  8688. font-style:normal;
  8689. font-size:14px;
  8690. color:#AAAAAA;
  8691. text-align:center;
  8692. line-height:30px;
  8693. }
  8694. #u4582 .text {
  8695. position:absolute;
  8696. align-self:center;
  8697. padding:5px 10px 5px 10px;
  8698. box-sizing:border-box;
  8699. width:100%;
  8700. }
  8701. #u4582_text {
  8702. border-width:0px;
  8703. word-wrap:break-word;
  8704. text-transform:none;
  8705. visibility:hidden;
  8706. }
  8707. #u4583_div {
  8708. border-width:0px;
  8709. position:absolute;
  8710. left:0px;
  8711. top:0px;
  8712. width:80px;
  8713. height:30px;
  8714. background:inherit;
  8715. background-color:rgba(255, 255, 255, 1);
  8716. box-sizing:border-box;
  8717. border-width:1px;
  8718. border-style:solid;
  8719. border-color:rgba(170, 170, 170, 1);
  8720. border-radius:4px;
  8721. -moz-box-shadow:none;
  8722. -webkit-box-shadow:none;
  8723. box-shadow:none;
  8724. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8725. font-weight:400;
  8726. font-style:normal;
  8727. font-size:14px;
  8728. }
  8729. #u4583 {
  8730. border-width:0px;
  8731. position:absolute;
  8732. left:3248px;
  8733. top:1213px;
  8734. width:80px;
  8735. height:30px;
  8736. display:flex;
  8737. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8738. font-weight:400;
  8739. font-style:normal;
  8740. font-size:14px;
  8741. }
  8742. #u4583 .text {
  8743. position:absolute;
  8744. align-self:center;
  8745. padding:2px 2px 2px 2px;
  8746. box-sizing:border-box;
  8747. width:100%;
  8748. }
  8749. #u4583_text {
  8750. border-width:0px;
  8751. word-wrap:break-word;
  8752. text-transform:none;
  8753. }
  8754. #u4584 {
  8755. border-width:0px;
  8756. position:absolute;
  8757. left:0px;
  8758. top:0px;
  8759. width:0px;
  8760. height:0px;
  8761. }
  8762. #u4585_div {
  8763. border-width:0px;
  8764. position:absolute;
  8765. left:0px;
  8766. top:0px;
  8767. width:200px;
  8768. height:1187px;
  8769. background:inherit;
  8770. background-color:rgba(255, 255, 255, 1);
  8771. border:none;
  8772. border-radius:0px;
  8773. -moz-box-shadow:none;
  8774. -webkit-box-shadow:none;
  8775. box-shadow:none;
  8776. }
  8777. #u4585 {
  8778. border-width:0px;
  8779. position:absolute;
  8780. left:120px;
  8781. top:50px;
  8782. width:200px;
  8783. height:1187px;
  8784. display:flex;
  8785. }
  8786. #u4585 .text {
  8787. position:absolute;
  8788. align-self:center;
  8789. padding:2px 2px 2px 2px;
  8790. box-sizing:border-box;
  8791. width:100%;
  8792. }
  8793. #u4585_text {
  8794. border-width:0px;
  8795. word-wrap:break-word;
  8796. text-transform:none;
  8797. visibility:hidden;
  8798. }
  8799. #u4586_div {
  8800. border-width:0px;
  8801. position:absolute;
  8802. left:0px;
  8803. top:0px;
  8804. width:200px;
  8805. height:60px;
  8806. background:inherit;
  8807. background-color:rgba(224, 231, 247, 1);
  8808. border:none;
  8809. border-radius:0px;
  8810. -moz-box-shadow:none;
  8811. -webkit-box-shadow:none;
  8812. box-shadow:none;
  8813. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  8814. font-weight:500;
  8815. font-style:normal;
  8816. font-size:18px;
  8817. }
  8818. #u4586 {
  8819. border-width:0px;
  8820. position:absolute;
  8821. left:120px;
  8822. top:50px;
  8823. width:200px;
  8824. height:60px;
  8825. display:flex;
  8826. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  8827. font-weight:500;
  8828. font-style:normal;
  8829. font-size:18px;
  8830. }
  8831. #u4586 .text {
  8832. position:absolute;
  8833. align-self:center;
  8834. padding:0px 0px 0px 20px;
  8835. box-sizing:border-box;
  8836. width:100%;
  8837. }
  8838. #u4586_text {
  8839. border-width:0px;
  8840. word-wrap:break-word;
  8841. text-transform:none;
  8842. }
  8843. #u4587_div {
  8844. border-width:0px;
  8845. position:absolute;
  8846. left:0px;
  8847. top:0px;
  8848. width:97px;
  8849. height:22px;
  8850. background:inherit;
  8851. background-color:rgba(255, 255, 255, 0);
  8852. border:none;
  8853. border-radius:0px;
  8854. -moz-box-shadow:none;
  8855. -webkit-box-shadow:none;
  8856. box-shadow:none;
  8857. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8858. font-weight:400;
  8859. font-style:normal;
  8860. font-size:16px;
  8861. }
  8862. #u4587 {
  8863. border-width:0px;
  8864. position:absolute;
  8865. left:147px;
  8866. top:167px;
  8867. width:97px;
  8868. height:22px;
  8869. display:flex;
  8870. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8871. font-weight:400;
  8872. font-style:normal;
  8873. font-size:16px;
  8874. }
  8875. #u4587 .text {
  8876. position:absolute;
  8877. align-self:flex-start;
  8878. padding:0px 0px 0px 0px;
  8879. box-sizing:border-box;
  8880. width:100%;
  8881. }
  8882. #u4587_text {
  8883. border-width:0px;
  8884. word-wrap:break-word;
  8885. text-transform:none;
  8886. }
  8887. #u4588_img {
  8888. border-width:0px;
  8889. position:absolute;
  8890. left:0px;
  8891. top:0px;
  8892. width:201px;
  8893. height:2px;
  8894. }
  8895. #u4588 {
  8896. border-width:0px;
  8897. position:absolute;
  8898. left:120px;
  8899. top:255px;
  8900. width:200px;
  8901. height:1px;
  8902. display:flex;
  8903. }
  8904. #u4588 .text {
  8905. position:absolute;
  8906. align-self:center;
  8907. padding:2px 2px 2px 2px;
  8908. box-sizing:border-box;
  8909. width:100%;
  8910. }
  8911. #u4588_text {
  8912. border-width:0px;
  8913. word-wrap:break-word;
  8914. text-transform:none;
  8915. visibility:hidden;
  8916. }
  8917. #u4589_div {
  8918. border-width:0px;
  8919. position:absolute;
  8920. left:0px;
  8921. top:0px;
  8922. width:65px;
  8923. height:22px;
  8924. background:inherit;
  8925. background-color:rgba(255, 255, 255, 0);
  8926. border:none;
  8927. border-radius:0px;
  8928. -moz-box-shadow:none;
  8929. -webkit-box-shadow:none;
  8930. box-shadow:none;
  8931. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8932. font-weight:400;
  8933. font-style:normal;
  8934. font-size:16px;
  8935. }
  8936. #u4589 {
  8937. border-width:0px;
  8938. position:absolute;
  8939. left:147px;
  8940. top:208px;
  8941. width:65px;
  8942. height:22px;
  8943. display:flex;
  8944. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8945. font-weight:400;
  8946. font-style:normal;
  8947. font-size:16px;
  8948. }
  8949. #u4589 .text {
  8950. position:absolute;
  8951. align-self:flex-start;
  8952. padding:0px 0px 0px 0px;
  8953. box-sizing:border-box;
  8954. width:100%;
  8955. }
  8956. #u4589_text {
  8957. border-width:0px;
  8958. white-space:nowrap;
  8959. text-transform:none;
  8960. }
  8961. #u4590_img {
  8962. border-width:0px;
  8963. position:absolute;
  8964. left:0px;
  8965. top:0px;
  8966. width:201px;
  8967. height:2px;
  8968. }
  8969. #u4590 {
  8970. border-width:0px;
  8971. position:absolute;
  8972. left:120px;
  8973. top:583px;
  8974. width:200px;
  8975. height:1px;
  8976. display:flex;
  8977. }
  8978. #u4590 .text {
  8979. position:absolute;
  8980. align-self:center;
  8981. padding:2px 2px 2px 2px;
  8982. box-sizing:border-box;
  8983. width:100%;
  8984. }
  8985. #u4590_text {
  8986. border-width:0px;
  8987. word-wrap:break-word;
  8988. text-transform:none;
  8989. visibility:hidden;
  8990. }
  8991. #u4591_div {
  8992. border-width:0px;
  8993. position:absolute;
  8994. left:0px;
  8995. top:0px;
  8996. width:65px;
  8997. height:22px;
  8998. background:inherit;
  8999. background-color:rgba(255, 255, 255, 0);
  9000. border:none;
  9001. border-radius:0px;
  9002. -moz-box-shadow:none;
  9003. -webkit-box-shadow:none;
  9004. box-shadow:none;
  9005. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9006. font-weight:400;
  9007. font-style:normal;
  9008. font-size:16px;
  9009. }
  9010. #u4591 {
  9011. border-width:0px;
  9012. position:absolute;
  9013. left:147px;
  9014. top:640px;
  9015. width:65px;
  9016. height:22px;
  9017. display:flex;
  9018. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9019. font-weight:400;
  9020. font-style:normal;
  9021. font-size:16px;
  9022. }
  9023. #u4591 .text {
  9024. position:absolute;
  9025. align-self:flex-start;
  9026. padding:0px 0px 0px 0px;
  9027. box-sizing:border-box;
  9028. width:100%;
  9029. }
  9030. #u4591_text {
  9031. border-width:0px;
  9032. white-space:nowrap;
  9033. text-transform:none;
  9034. }
  9035. #u4592_div {
  9036. border-width:0px;
  9037. position:absolute;
  9038. left:0px;
  9039. top:0px;
  9040. width:49px;
  9041. height:17px;
  9042. background:inherit;
  9043. background-color:rgba(255, 255, 255, 0);
  9044. border:none;
  9045. border-radius:0px;
  9046. -moz-box-shadow:none;
  9047. -webkit-box-shadow:none;
  9048. box-shadow:none;
  9049. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9050. font-weight:400;
  9051. font-style:normal;
  9052. font-size:12px;
  9053. color:#AAAAAA;
  9054. }
  9055. #u4592 {
  9056. border-width:0px;
  9057. position:absolute;
  9058. left:147px;
  9059. top:603px;
  9060. width:49px;
  9061. height:17px;
  9062. display:flex;
  9063. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9064. font-weight:400;
  9065. font-style:normal;
  9066. font-size:12px;
  9067. color:#AAAAAA;
  9068. }
  9069. #u4592 .text {
  9070. position:absolute;
  9071. align-self:flex-start;
  9072. padding:0px 0px 0px 0px;
  9073. box-sizing:border-box;
  9074. width:100%;
  9075. }
  9076. #u4592_text {
  9077. border-width:0px;
  9078. white-space:nowrap;
  9079. text-transform:none;
  9080. }
  9081. #u4593_div {
  9082. border-width:0px;
  9083. position:absolute;
  9084. left:0px;
  9085. top:0px;
  9086. width:65px;
  9087. height:22px;
  9088. background:inherit;
  9089. background-color:rgba(255, 255, 255, 0);
  9090. border:none;
  9091. border-radius:0px;
  9092. -moz-box-shadow:none;
  9093. -webkit-box-shadow:none;
  9094. box-shadow:none;
  9095. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9096. font-weight:400;
  9097. font-style:normal;
  9098. font-size:16px;
  9099. }
  9100. #u4593 {
  9101. border-width:0px;
  9102. position:absolute;
  9103. left:147px;
  9104. top:312px;
  9105. width:65px;
  9106. height:22px;
  9107. display:flex;
  9108. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9109. font-weight:400;
  9110. font-style:normal;
  9111. font-size:16px;
  9112. }
  9113. #u4593 .text {
  9114. position:absolute;
  9115. align-self:flex-start;
  9116. padding:0px 0px 0px 0px;
  9117. box-sizing:border-box;
  9118. width:100%;
  9119. }
  9120. #u4593_text {
  9121. border-width:0px;
  9122. white-space:nowrap;
  9123. text-transform:none;
  9124. }
  9125. #u4594_div {
  9126. border-width:0px;
  9127. position:absolute;
  9128. left:0px;
  9129. top:0px;
  9130. width:49px;
  9131. height:17px;
  9132. background:inherit;
  9133. background-color:rgba(255, 255, 255, 0);
  9134. border:none;
  9135. border-radius:0px;
  9136. -moz-box-shadow:none;
  9137. -webkit-box-shadow:none;
  9138. box-shadow:none;
  9139. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9140. font-weight:400;
  9141. font-style:normal;
  9142. font-size:12px;
  9143. color:#AAAAAA;
  9144. }
  9145. #u4594 {
  9146. border-width:0px;
  9147. position:absolute;
  9148. left:147px;
  9149. top:275px;
  9150. width:49px;
  9151. height:17px;
  9152. display:flex;
  9153. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9154. font-weight:400;
  9155. font-style:normal;
  9156. font-size:12px;
  9157. color:#AAAAAA;
  9158. }
  9159. #u4594 .text {
  9160. position:absolute;
  9161. align-self:flex-start;
  9162. padding:0px 0px 0px 0px;
  9163. box-sizing:border-box;
  9164. width:100%;
  9165. }
  9166. #u4594_text {
  9167. border-width:0px;
  9168. white-space:nowrap;
  9169. text-transform:none;
  9170. }
  9171. #u4595_div {
  9172. border-width:0px;
  9173. position:absolute;
  9174. left:0px;
  9175. top:0px;
  9176. width:65px;
  9177. height:22px;
  9178. background:inherit;
  9179. background-color:rgba(255, 255, 255, 0);
  9180. border:none;
  9181. border-radius:0px;
  9182. -moz-box-shadow:none;
  9183. -webkit-box-shadow:none;
  9184. box-shadow:none;
  9185. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9186. font-weight:400;
  9187. font-style:normal;
  9188. font-size:16px;
  9189. }
  9190. #u4595 {
  9191. border-width:0px;
  9192. position:absolute;
  9193. left:147px;
  9194. top:724px;
  9195. width:65px;
  9196. height:22px;
  9197. display:flex;
  9198. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9199. font-weight:400;
  9200. font-style:normal;
  9201. font-size:16px;
  9202. }
  9203. #u4595 .text {
  9204. position:absolute;
  9205. align-self:flex-start;
  9206. padding:0px 0px 0px 0px;
  9207. box-sizing:border-box;
  9208. width:100%;
  9209. }
  9210. #u4595_text {
  9211. border-width:0px;
  9212. white-space:nowrap;
  9213. text-transform:none;
  9214. }
  9215. #u4596_div {
  9216. border-width:0px;
  9217. position:absolute;
  9218. left:0px;
  9219. top:0px;
  9220. width:49px;
  9221. height:17px;
  9222. background:inherit;
  9223. background-color:rgba(255, 255, 255, 0);
  9224. border:none;
  9225. border-radius:0px;
  9226. -moz-box-shadow:none;
  9227. -webkit-box-shadow:none;
  9228. box-shadow:none;
  9229. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9230. font-weight:400;
  9231. font-style:normal;
  9232. font-size:12px;
  9233. color:#AAAAAA;
  9234. }
  9235. #u4596 {
  9236. border-width:0px;
  9237. position:absolute;
  9238. left:147px;
  9239. top:130px;
  9240. width:49px;
  9241. height:17px;
  9242. display:flex;
  9243. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9244. font-weight:400;
  9245. font-style:normal;
  9246. font-size:12px;
  9247. color:#AAAAAA;
  9248. }
  9249. #u4596 .text {
  9250. position:absolute;
  9251. align-self:flex-start;
  9252. padding:0px 0px 0px 0px;
  9253. box-sizing:border-box;
  9254. width:100%;
  9255. }
  9256. #u4596_text {
  9257. border-width:0px;
  9258. white-space:nowrap;
  9259. text-transform:none;
  9260. }
  9261. #u4597_img {
  9262. border-width:0px;
  9263. position:absolute;
  9264. left:0px;
  9265. top:0px;
  9266. width:201px;
  9267. height:2px;
  9268. }
  9269. #u4597 {
  9270. border-width:0px;
  9271. position:absolute;
  9272. left:120px;
  9273. top:857px;
  9274. width:200px;
  9275. height:1px;
  9276. display:flex;
  9277. }
  9278. #u4597 .text {
  9279. position:absolute;
  9280. align-self:center;
  9281. padding:2px 2px 2px 2px;
  9282. box-sizing:border-box;
  9283. width:100%;
  9284. }
  9285. #u4597_text {
  9286. border-width:0px;
  9287. word-wrap:break-word;
  9288. text-transform:none;
  9289. visibility:hidden;
  9290. }
  9291. #u4598_div {
  9292. border-width:0px;
  9293. position:absolute;
  9294. left:0px;
  9295. top:0px;
  9296. width:65px;
  9297. height:22px;
  9298. background:inherit;
  9299. background-color:rgba(255, 255, 255, 0);
  9300. border:none;
  9301. border-radius:0px;
  9302. -moz-box-shadow:none;
  9303. -webkit-box-shadow:none;
  9304. box-shadow:none;
  9305. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9306. font-weight:400;
  9307. font-style:normal;
  9308. font-size:16px;
  9309. }
  9310. #u4598 {
  9311. border-width:0px;
  9312. position:absolute;
  9313. left:147px;
  9314. top:914px;
  9315. width:65px;
  9316. height:22px;
  9317. display:flex;
  9318. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9319. font-weight:400;
  9320. font-style:normal;
  9321. font-size:16px;
  9322. }
  9323. #u4598 .text {
  9324. position:absolute;
  9325. align-self:flex-start;
  9326. padding:0px 0px 0px 0px;
  9327. box-sizing:border-box;
  9328. width:100%;
  9329. }
  9330. #u4598_text {
  9331. border-width:0px;
  9332. white-space:nowrap;
  9333. text-transform:none;
  9334. }
  9335. #u4599_div {
  9336. border-width:0px;
  9337. position:absolute;
  9338. left:0px;
  9339. top:0px;
  9340. width:49px;
  9341. height:17px;
  9342. background:inherit;
  9343. background-color:rgba(255, 255, 255, 0);
  9344. border:none;
  9345. border-radius:0px;
  9346. -moz-box-shadow:none;
  9347. -webkit-box-shadow:none;
  9348. box-shadow:none;
  9349. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9350. font-weight:400;
  9351. font-style:normal;
  9352. font-size:12px;
  9353. color:#AAAAAA;
  9354. }
  9355. #u4599 {
  9356. border-width:0px;
  9357. position:absolute;
  9358. left:147px;
  9359. top:877px;
  9360. width:49px;
  9361. height:17px;
  9362. display:flex;
  9363. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9364. font-weight:400;
  9365. font-style:normal;
  9366. font-size:12px;
  9367. color:#AAAAAA;
  9368. }
  9369. #u4599 .text {
  9370. position:absolute;
  9371. align-self:flex-start;
  9372. padding:0px 0px 0px 0px;
  9373. box-sizing:border-box;
  9374. width:100%;
  9375. }
  9376. #u4599_text {
  9377. border-width:0px;
  9378. white-space:nowrap;
  9379. text-transform:none;
  9380. }
  9381. #u4600_div {
  9382. border-width:0px;
  9383. position:absolute;
  9384. left:0px;
  9385. top:0px;
  9386. width:65px;
  9387. height:22px;
  9388. background:inherit;
  9389. background-color:rgba(255, 255, 255, 0);
  9390. border:none;
  9391. border-radius:0px;
  9392. -moz-box-shadow:none;
  9393. -webkit-box-shadow:none;
  9394. box-shadow:none;
  9395. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9396. font-weight:400;
  9397. font-style:normal;
  9398. font-size:16px;
  9399. }
  9400. #u4600 {
  9401. border-width:0px;
  9402. position:absolute;
  9403. left:147px;
  9404. top:806px;
  9405. width:65px;
  9406. height:22px;
  9407. display:flex;
  9408. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9409. font-weight:400;
  9410. font-style:normal;
  9411. font-size:16px;
  9412. }
  9413. #u4600 .text {
  9414. position:absolute;
  9415. align-self:flex-start;
  9416. padding:0px 0px 0px 0px;
  9417. box-sizing:border-box;
  9418. width:100%;
  9419. }
  9420. #u4600_text {
  9421. border-width:0px;
  9422. white-space:nowrap;
  9423. text-transform:none;
  9424. }
  9425. #u4601_img {
  9426. border-width:0px;
  9427. position:absolute;
  9428. left:0px;
  9429. top:0px;
  9430. width:201px;
  9431. height:2px;
  9432. }
  9433. #u4601 {
  9434. border-width:0px;
  9435. position:absolute;
  9436. left:120px;
  9437. top:435px;
  9438. width:200px;
  9439. height:1px;
  9440. display:flex;
  9441. }
  9442. #u4601 .text {
  9443. position:absolute;
  9444. align-self:center;
  9445. padding:2px 2px 2px 2px;
  9446. box-sizing:border-box;
  9447. width:100%;
  9448. }
  9449. #u4601_text {
  9450. border-width:0px;
  9451. word-wrap:break-word;
  9452. text-transform:none;
  9453. visibility:hidden;
  9454. }
  9455. #u4602_div {
  9456. border-width:0px;
  9457. position:absolute;
  9458. left:0px;
  9459. top:0px;
  9460. width:65px;
  9461. height:22px;
  9462. background:inherit;
  9463. background-color:rgba(255, 255, 255, 0);
  9464. border:none;
  9465. border-radius:0px;
  9466. -moz-box-shadow:none;
  9467. -webkit-box-shadow:none;
  9468. box-shadow:none;
  9469. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9470. font-weight:400;
  9471. font-style:normal;
  9472. font-size:16px;
  9473. }
  9474. #u4602 {
  9475. border-width:0px;
  9476. position:absolute;
  9477. left:147px;
  9478. top:492px;
  9479. width:65px;
  9480. height:22px;
  9481. display:flex;
  9482. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9483. font-weight:400;
  9484. font-style:normal;
  9485. font-size:16px;
  9486. }
  9487. #u4602 .text {
  9488. position:absolute;
  9489. align-self:flex-start;
  9490. padding:0px 0px 0px 0px;
  9491. box-sizing:border-box;
  9492. width:100%;
  9493. }
  9494. #u4602_text {
  9495. border-width:0px;
  9496. white-space:nowrap;
  9497. text-transform:none;
  9498. }
  9499. #u4603_div {
  9500. border-width:0px;
  9501. position:absolute;
  9502. left:0px;
  9503. top:0px;
  9504. width:49px;
  9505. height:17px;
  9506. background:inherit;
  9507. background-color:rgba(255, 255, 255, 0);
  9508. border:none;
  9509. border-radius:0px;
  9510. -moz-box-shadow:none;
  9511. -webkit-box-shadow:none;
  9512. box-shadow:none;
  9513. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9514. font-weight:400;
  9515. font-style:normal;
  9516. font-size:12px;
  9517. color:#AAAAAA;
  9518. }
  9519. #u4603 {
  9520. border-width:0px;
  9521. position:absolute;
  9522. left:147px;
  9523. top:455px;
  9524. width:49px;
  9525. height:17px;
  9526. display:flex;
  9527. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9528. font-weight:400;
  9529. font-style:normal;
  9530. font-size:12px;
  9531. color:#AAAAAA;
  9532. }
  9533. #u4603 .text {
  9534. position:absolute;
  9535. align-self:flex-start;
  9536. padding:0px 0px 0px 0px;
  9537. box-sizing:border-box;
  9538. width:100%;
  9539. }
  9540. #u4603_text {
  9541. border-width:0px;
  9542. white-space:nowrap;
  9543. text-transform:none;
  9544. }
  9545. #u4604_div {
  9546. border-width:0px;
  9547. position:absolute;
  9548. left:0px;
  9549. top:0px;
  9550. width:97px;
  9551. height:22px;
  9552. background:inherit;
  9553. background-color:rgba(255, 255, 255, 0);
  9554. border:none;
  9555. border-radius:0px;
  9556. -moz-box-shadow:none;
  9557. -webkit-box-shadow:none;
  9558. box-shadow:none;
  9559. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9560. font-weight:400;
  9561. font-style:normal;
  9562. font-size:16px;
  9563. }
  9564. #u4604 {
  9565. border-width:0px;
  9566. position:absolute;
  9567. left:147px;
  9568. top:533px;
  9569. width:97px;
  9570. height:22px;
  9571. display:flex;
  9572. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9573. font-weight:400;
  9574. font-style:normal;
  9575. font-size:16px;
  9576. }
  9577. #u4604 .text {
  9578. position:absolute;
  9579. align-self:flex-start;
  9580. padding:0px 0px 0px 0px;
  9581. box-sizing:border-box;
  9582. width:100%;
  9583. }
  9584. #u4604_text {
  9585. border-width:0px;
  9586. word-wrap:break-word;
  9587. text-transform:none;
  9588. }
  9589. #u4605_div {
  9590. border-width:0px;
  9591. position:absolute;
  9592. left:0px;
  9593. top:0px;
  9594. width:65px;
  9595. height:22px;
  9596. background:inherit;
  9597. background-color:rgba(255, 255, 255, 0);
  9598. border:none;
  9599. border-radius:0px;
  9600. -moz-box-shadow:none;
  9601. -webkit-box-shadow:none;
  9602. box-shadow:none;
  9603. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9604. font-weight:400;
  9605. font-style:normal;
  9606. font-size:16px;
  9607. }
  9608. #u4605 {
  9609. border-width:0px;
  9610. position:absolute;
  9611. left:147px;
  9612. top:354px;
  9613. width:65px;
  9614. height:22px;
  9615. display:flex;
  9616. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9617. font-weight:400;
  9618. font-style:normal;
  9619. font-size:16px;
  9620. }
  9621. #u4605 .text {
  9622. position:absolute;
  9623. align-self:flex-start;
  9624. padding:0px 0px 0px 0px;
  9625. box-sizing:border-box;
  9626. width:100%;
  9627. }
  9628. #u4605_text {
  9629. border-width:0px;
  9630. white-space:nowrap;
  9631. text-transform:none;
  9632. }
  9633. #u4606_div {
  9634. border-width:0px;
  9635. position:absolute;
  9636. left:0px;
  9637. top:0px;
  9638. width:65px;
  9639. height:22px;
  9640. background:inherit;
  9641. background-color:rgba(255, 255, 255, 0);
  9642. border:none;
  9643. border-radius:0px;
  9644. -moz-box-shadow:none;
  9645. -webkit-box-shadow:none;
  9646. box-shadow:none;
  9647. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9648. font-weight:400;
  9649. font-style:normal;
  9650. font-size:16px;
  9651. }
  9652. #u4606 {
  9653. border-width:0px;
  9654. position:absolute;
  9655. left:147px;
  9656. top:682px;
  9657. width:65px;
  9658. height:22px;
  9659. display:flex;
  9660. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9661. font-weight:400;
  9662. font-style:normal;
  9663. font-size:16px;
  9664. }
  9665. #u4606 .text {
  9666. position:absolute;
  9667. align-self:flex-start;
  9668. padding:0px 0px 0px 0px;
  9669. box-sizing:border-box;
  9670. width:100%;
  9671. }
  9672. #u4606_text {
  9673. border-width:0px;
  9674. white-space:nowrap;
  9675. text-transform:none;
  9676. }
  9677. #u4607_div {
  9678. border-width:0px;
  9679. position:absolute;
  9680. left:0px;
  9681. top:0px;
  9682. width:65px;
  9683. height:22px;
  9684. background:inherit;
  9685. background-color:rgba(255, 255, 255, 0);
  9686. border:none;
  9687. border-radius:0px;
  9688. -moz-box-shadow:none;
  9689. -webkit-box-shadow:none;
  9690. box-shadow:none;
  9691. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9692. font-weight:400;
  9693. font-style:normal;
  9694. font-size:16px;
  9695. }
  9696. #u4607 {
  9697. border-width:0px;
  9698. position:absolute;
  9699. left:147px;
  9700. top:765px;
  9701. width:65px;
  9702. height:22px;
  9703. display:flex;
  9704. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9705. font-weight:400;
  9706. font-style:normal;
  9707. font-size:16px;
  9708. }
  9709. #u4607 .text {
  9710. position:absolute;
  9711. align-self:flex-start;
  9712. padding:0px 0px 0px 0px;
  9713. box-sizing:border-box;
  9714. width:100%;
  9715. }
  9716. #u4607_text {
  9717. border-width:0px;
  9718. white-space:nowrap;
  9719. text-transform:none;
  9720. }
  9721. #u4608_div {
  9722. border-width:0px;
  9723. position:absolute;
  9724. left:0px;
  9725. top:0px;
  9726. width:65px;
  9727. height:22px;
  9728. background:inherit;
  9729. background-color:rgba(255, 255, 255, 0);
  9730. border:none;
  9731. border-radius:0px;
  9732. -moz-box-shadow:none;
  9733. -webkit-box-shadow:none;
  9734. box-shadow:none;
  9735. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9736. font-weight:400;
  9737. font-style:normal;
  9738. font-size:16px;
  9739. }
  9740. #u4608 {
  9741. border-width:0px;
  9742. position:absolute;
  9743. left:147px;
  9744. top:396px;
  9745. width:65px;
  9746. height:22px;
  9747. display:flex;
  9748. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9749. font-weight:400;
  9750. font-style:normal;
  9751. font-size:16px;
  9752. }
  9753. #u4608 .text {
  9754. position:absolute;
  9755. align-self:flex-start;
  9756. padding:0px 0px 0px 0px;
  9757. box-sizing:border-box;
  9758. width:100%;
  9759. }
  9760. #u4608_text {
  9761. border-width:0px;
  9762. white-space:nowrap;
  9763. text-transform:none;
  9764. }