styles.css 173 KB

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