styles.css 204 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145114611471148114911501151115211531154115511561157115811591160116111621163116411651166116711681169117011711172117311741175117611771178117911801181118211831184118511861187118811891190119111921193119411951196119711981199120012011202120312041205120612071208120912101211121212131214121512161217121812191220122112221223122412251226122712281229123012311232123312341235123612371238123912401241124212431244124512461247124812491250125112521253125412551256125712581259126012611262126312641265126612671268126912701271127212731274127512761277127812791280128112821283128412851286128712881289129012911292129312941295129612971298129913001301130213031304130513061307130813091310131113121313131413151316131713181319132013211322132313241325132613271328132913301331133213331334133513361337133813391340134113421343134413451346134713481349135013511352135313541355135613571358135913601361136213631364136513661367136813691370137113721373137413751376137713781379138013811382138313841385138613871388138913901391139213931394139513961397139813991400140114021403140414051406140714081409141014111412141314141415141614171418141914201421142214231424142514261427142814291430143114321433143414351436143714381439144014411442144314441445144614471448144914501451145214531454145514561457145814591460146114621463146414651466146714681469147014711472147314741475147614771478147914801481148214831484148514861487148814891490149114921493149414951496149714981499150015011502150315041505150615071508150915101511151215131514151515161517151815191520152115221523152415251526152715281529153015311532153315341535153615371538153915401541154215431544154515461547154815491550155115521553155415551556155715581559156015611562156315641565156615671568156915701571157215731574157515761577157815791580158115821583158415851586158715881589159015911592159315941595159615971598159916001601160216031604160516061607160816091610161116121613161416151616161716181619162016211622162316241625162616271628162916301631163216331634163516361637163816391640164116421643164416451646164716481649165016511652165316541655165616571658165916601661166216631664166516661667166816691670167116721673167416751676167716781679168016811682168316841685168616871688168916901691169216931694169516961697169816991700170117021703170417051706170717081709171017111712171317141715171617171718171917201721172217231724172517261727172817291730173117321733173417351736173717381739174017411742174317441745174617471748174917501751175217531754175517561757175817591760176117621763176417651766176717681769177017711772177317741775177617771778177917801781178217831784178517861787178817891790179117921793179417951796179717981799180018011802180318041805180618071808180918101811181218131814181518161817181818191820182118221823182418251826182718281829183018311832183318341835183618371838183918401841184218431844184518461847184818491850185118521853185418551856185718581859186018611862186318641865186618671868186918701871187218731874187518761877187818791880188118821883188418851886188718881889189018911892189318941895189618971898189919001901190219031904190519061907190819091910191119121913191419151916191719181919192019211922192319241925192619271928192919301931193219331934193519361937193819391940194119421943194419451946194719481949195019511952195319541955195619571958195919601961196219631964196519661967196819691970197119721973197419751976197719781979198019811982198319841985198619871988198919901991199219931994199519961997199819992000200120022003200420052006200720082009201020112012201320142015201620172018201920202021202220232024202520262027202820292030203120322033203420352036203720382039204020412042204320442045204620472048204920502051205220532054205520562057205820592060206120622063206420652066206720682069207020712072207320742075207620772078207920802081208220832084208520862087208820892090209120922093209420952096209720982099210021012102210321042105210621072108210921102111211221132114211521162117211821192120212121222123212421252126212721282129213021312132213321342135213621372138213921402141214221432144214521462147214821492150215121522153215421552156215721582159216021612162216321642165216621672168216921702171217221732174217521762177217821792180218121822183218421852186218721882189219021912192219321942195219621972198219922002201220222032204220522062207220822092210221122122213221422152216221722182219222022212222222322242225222622272228222922302231223222332234223522362237223822392240224122422243224422452246224722482249225022512252225322542255225622572258225922602261226222632264226522662267226822692270227122722273227422752276227722782279228022812282228322842285228622872288228922902291229222932294229522962297229822992300230123022303230423052306230723082309231023112312231323142315231623172318231923202321232223232324232523262327232823292330233123322333233423352336233723382339234023412342234323442345234623472348234923502351235223532354235523562357235823592360236123622363236423652366236723682369237023712372237323742375237623772378237923802381238223832384238523862387238823892390239123922393239423952396239723982399240024012402240324042405240624072408240924102411241224132414241524162417241824192420242124222423242424252426242724282429243024312432243324342435243624372438243924402441244224432444244524462447244824492450245124522453245424552456245724582459246024612462246324642465246624672468246924702471247224732474247524762477247824792480248124822483248424852486248724882489249024912492249324942495249624972498249925002501250225032504250525062507250825092510251125122513251425152516251725182519252025212522252325242525252625272528252925302531253225332534253525362537253825392540254125422543254425452546254725482549255025512552255325542555255625572558255925602561256225632564256525662567256825692570257125722573257425752576257725782579258025812582258325842585258625872588258925902591259225932594259525962597259825992600260126022603260426052606260726082609261026112612261326142615261626172618261926202621262226232624262526262627262826292630263126322633263426352636263726382639264026412642264326442645264626472648264926502651265226532654265526562657265826592660266126622663266426652666266726682669267026712672267326742675267626772678267926802681268226832684268526862687268826892690269126922693269426952696269726982699270027012702270327042705270627072708270927102711271227132714271527162717271827192720272127222723272427252726272727282729273027312732273327342735273627372738273927402741274227432744274527462747274827492750275127522753275427552756275727582759276027612762276327642765276627672768276927702771277227732774277527762777277827792780278127822783278427852786278727882789279027912792279327942795279627972798279928002801280228032804280528062807280828092810281128122813281428152816281728182819282028212822282328242825282628272828282928302831283228332834283528362837283828392840284128422843284428452846284728482849285028512852285328542855285628572858285928602861286228632864286528662867286828692870287128722873287428752876287728782879288028812882288328842885288628872888288928902891289228932894289528962897289828992900290129022903290429052906290729082909291029112912291329142915291629172918291929202921292229232924292529262927292829292930293129322933293429352936293729382939294029412942294329442945294629472948294929502951295229532954295529562957295829592960296129622963296429652966296729682969297029712972297329742975297629772978297929802981298229832984298529862987298829892990299129922993299429952996299729982999300030013002300330043005300630073008300930103011301230133014301530163017301830193020302130223023302430253026302730283029303030313032303330343035303630373038303930403041304230433044304530463047304830493050305130523053305430553056305730583059306030613062306330643065306630673068306930703071307230733074307530763077307830793080308130823083308430853086308730883089309030913092309330943095309630973098309931003101310231033104310531063107310831093110311131123113311431153116311731183119312031213122312331243125312631273128312931303131313231333134313531363137313831393140314131423143314431453146314731483149315031513152315331543155315631573158315931603161316231633164316531663167316831693170317131723173317431753176317731783179318031813182318331843185318631873188318931903191319231933194319531963197319831993200320132023203320432053206320732083209321032113212321332143215321632173218321932203221322232233224322532263227322832293230323132323233323432353236323732383239324032413242324332443245324632473248324932503251325232533254325532563257325832593260326132623263326432653266326732683269327032713272327332743275327632773278327932803281328232833284328532863287328832893290329132923293329432953296329732983299330033013302330333043305330633073308330933103311331233133314331533163317331833193320332133223323332433253326332733283329333033313332333333343335333633373338333933403341334233433344334533463347334833493350335133523353335433553356335733583359336033613362336333643365336633673368336933703371337233733374337533763377337833793380338133823383338433853386338733883389339033913392339333943395339633973398339934003401340234033404340534063407340834093410341134123413341434153416341734183419342034213422342334243425342634273428342934303431343234333434343534363437343834393440344134423443344434453446344734483449345034513452345334543455345634573458345934603461346234633464346534663467346834693470347134723473347434753476347734783479348034813482348334843485348634873488348934903491349234933494349534963497349834993500350135023503350435053506350735083509351035113512351335143515351635173518351935203521352235233524352535263527352835293530353135323533353435353536353735383539354035413542354335443545354635473548354935503551355235533554355535563557355835593560356135623563356435653566356735683569357035713572357335743575357635773578357935803581358235833584358535863587358835893590359135923593359435953596359735983599360036013602360336043605360636073608360936103611361236133614361536163617361836193620362136223623362436253626362736283629363036313632363336343635363636373638363936403641364236433644364536463647364836493650365136523653365436553656365736583659366036613662366336643665366636673668366936703671367236733674367536763677367836793680368136823683368436853686368736883689369036913692369336943695369636973698369937003701370237033704370537063707370837093710371137123713371437153716371737183719372037213722372337243725372637273728372937303731373237333734373537363737373837393740374137423743374437453746374737483749375037513752375337543755375637573758375937603761376237633764376537663767376837693770377137723773377437753776377737783779378037813782378337843785378637873788378937903791379237933794379537963797379837993800380138023803380438053806380738083809381038113812381338143815381638173818381938203821382238233824382538263827382838293830383138323833383438353836383738383839384038413842384338443845384638473848384938503851385238533854385538563857385838593860386138623863386438653866386738683869387038713872387338743875387638773878387938803881388238833884388538863887388838893890389138923893389438953896389738983899390039013902390339043905390639073908390939103911391239133914391539163917391839193920392139223923392439253926392739283929393039313932393339343935393639373938393939403941394239433944394539463947394839493950395139523953395439553956395739583959396039613962396339643965396639673968396939703971397239733974397539763977397839793980398139823983398439853986398739883989399039913992399339943995399639973998399940004001400240034004400540064007400840094010401140124013401440154016401740184019402040214022402340244025402640274028402940304031403240334034403540364037403840394040404140424043404440454046404740484049405040514052405340544055405640574058405940604061406240634064406540664067406840694070407140724073407440754076407740784079408040814082408340844085408640874088408940904091409240934094409540964097409840994100410141024103410441054106410741084109411041114112411341144115411641174118411941204121412241234124412541264127412841294130413141324133413441354136413741384139414041414142414341444145414641474148414941504151415241534154415541564157415841594160416141624163416441654166416741684169417041714172417341744175417641774178417941804181418241834184418541864187418841894190419141924193419441954196419741984199420042014202420342044205420642074208420942104211421242134214421542164217421842194220422142224223422442254226422742284229423042314232423342344235423642374238423942404241424242434244424542464247424842494250425142524253425442554256425742584259426042614262426342644265426642674268426942704271427242734274427542764277427842794280428142824283428442854286428742884289429042914292429342944295429642974298429943004301430243034304430543064307430843094310431143124313431443154316431743184319432043214322432343244325432643274328432943304331433243334334433543364337433843394340434143424343434443454346434743484349435043514352435343544355435643574358435943604361436243634364436543664367436843694370437143724373437443754376437743784379438043814382438343844385438643874388438943904391439243934394439543964397439843994400440144024403440444054406440744084409441044114412441344144415441644174418441944204421442244234424442544264427442844294430443144324433443444354436443744384439444044414442444344444445444644474448444944504451445244534454445544564457445844594460446144624463446444654466446744684469447044714472447344744475447644774478447944804481448244834484448544864487448844894490449144924493449444954496449744984499450045014502450345044505450645074508450945104511451245134514451545164517451845194520452145224523452445254526452745284529453045314532453345344535453645374538453945404541454245434544454545464547454845494550455145524553455445554556455745584559456045614562456345644565456645674568456945704571457245734574457545764577457845794580458145824583458445854586458745884589459045914592459345944595459645974598459946004601460246034604460546064607460846094610461146124613461446154616461746184619462046214622462346244625462646274628462946304631463246334634463546364637463846394640464146424643464446454646464746484649465046514652465346544655465646574658465946604661466246634664466546664667466846694670467146724673467446754676467746784679468046814682468346844685468646874688468946904691469246934694469546964697469846994700470147024703470447054706470747084709471047114712471347144715471647174718471947204721472247234724472547264727472847294730473147324733473447354736473747384739474047414742474347444745474647474748474947504751475247534754475547564757475847594760476147624763476447654766476747684769477047714772477347744775477647774778477947804781478247834784478547864787478847894790479147924793479447954796479747984799480048014802480348044805480648074808480948104811481248134814481548164817481848194820482148224823482448254826482748284829483048314832483348344835483648374838483948404841484248434844484548464847484848494850485148524853485448554856485748584859486048614862486348644865486648674868486948704871487248734874487548764877487848794880488148824883488448854886488748884889489048914892489348944895489648974898489949004901490249034904490549064907490849094910491149124913491449154916491749184919492049214922492349244925492649274928492949304931493249334934493549364937493849394940494149424943494449454946494749484949495049514952495349544955495649574958495949604961496249634964496549664967496849694970497149724973497449754976497749784979498049814982498349844985498649874988498949904991499249934994499549964997499849995000500150025003500450055006500750085009501050115012501350145015501650175018501950205021502250235024502550265027502850295030503150325033503450355036503750385039504050415042504350445045504650475048504950505051505250535054505550565057505850595060506150625063506450655066506750685069507050715072507350745075507650775078507950805081508250835084508550865087508850895090509150925093509450955096509750985099510051015102510351045105510651075108510951105111511251135114511551165117511851195120512151225123512451255126512751285129513051315132513351345135513651375138513951405141514251435144514551465147514851495150515151525153515451555156515751585159516051615162516351645165516651675168516951705171517251735174517551765177517851795180518151825183518451855186518751885189519051915192519351945195519651975198519952005201520252035204520552065207520852095210521152125213521452155216521752185219522052215222522352245225522652275228522952305231523252335234523552365237523852395240524152425243524452455246524752485249525052515252525352545255525652575258525952605261526252635264526552665267526852695270527152725273527452755276527752785279528052815282528352845285528652875288528952905291529252935294529552965297529852995300530153025303530453055306530753085309531053115312531353145315531653175318531953205321532253235324532553265327532853295330533153325333533453355336533753385339534053415342534353445345534653475348534953505351535253535354535553565357535853595360536153625363536453655366536753685369537053715372537353745375537653775378537953805381538253835384538553865387538853895390539153925393539453955396539753985399540054015402540354045405540654075408540954105411541254135414541554165417541854195420542154225423542454255426542754285429543054315432543354345435543654375438543954405441544254435444544554465447544854495450545154525453545454555456545754585459546054615462546354645465546654675468546954705471547254735474547554765477547854795480548154825483548454855486548754885489549054915492549354945495549654975498549955005501550255035504550555065507550855095510551155125513551455155516551755185519552055215522552355245525552655275528552955305531553255335534553555365537553855395540554155425543554455455546554755485549555055515552555355545555555655575558555955605561556255635564556555665567556855695570557155725573557455755576557755785579558055815582558355845585558655875588558955905591559255935594559555965597559855995600560156025603560456055606560756085609561056115612561356145615561656175618561956205621562256235624562556265627562856295630563156325633563456355636563756385639564056415642564356445645564656475648564956505651565256535654565556565657565856595660566156625663566456655666566756685669567056715672567356745675567656775678567956805681568256835684568556865687568856895690569156925693569456955696569756985699570057015702570357045705570657075708570957105711571257135714571557165717571857195720572157225723572457255726572757285729573057315732573357345735573657375738573957405741574257435744574557465747574857495750575157525753575457555756575757585759576057615762576357645765576657675768576957705771577257735774577557765777577857795780578157825783578457855786578757885789579057915792579357945795579657975798579958005801580258035804580558065807580858095810581158125813581458155816581758185819582058215822582358245825582658275828582958305831583258335834583558365837583858395840584158425843584458455846584758485849585058515852585358545855585658575858585958605861586258635864586558665867586858695870587158725873587458755876587758785879588058815882588358845885588658875888588958905891589258935894589558965897589858995900590159025903590459055906590759085909591059115912591359145915591659175918591959205921592259235924592559265927592859295930593159325933593459355936593759385939594059415942594359445945594659475948594959505951595259535954595559565957595859595960596159625963596459655966596759685969597059715972597359745975597659775978597959805981598259835984598559865987598859895990599159925993599459955996599759985999600060016002600360046005600660076008600960106011601260136014601560166017601860196020602160226023602460256026602760286029603060316032603360346035603660376038603960406041604260436044604560466047604860496050605160526053605460556056605760586059606060616062606360646065606660676068606960706071607260736074607560766077607860796080608160826083608460856086608760886089609060916092609360946095609660976098609961006101610261036104610561066107610861096110611161126113611461156116611761186119612061216122612361246125612661276128612961306131613261336134613561366137613861396140614161426143614461456146614761486149615061516152615361546155615661576158615961606161616261636164616561666167616861696170617161726173617461756176617761786179618061816182618361846185618661876188618961906191619261936194619561966197619861996200620162026203620462056206620762086209621062116212621362146215621662176218621962206221622262236224622562266227622862296230623162326233623462356236623762386239624062416242624362446245624662476248624962506251625262536254625562566257625862596260626162626263626462656266626762686269627062716272627362746275627662776278627962806281628262836284628562866287628862896290629162926293629462956296629762986299630063016302630363046305630663076308630963106311631263136314631563166317631863196320632163226323632463256326632763286329633063316332633363346335633663376338633963406341634263436344634563466347634863496350635163526353635463556356635763586359636063616362636363646365636663676368636963706371637263736374637563766377637863796380638163826383638463856386638763886389639063916392639363946395639663976398639964006401640264036404640564066407640864096410641164126413641464156416641764186419642064216422642364246425642664276428642964306431643264336434643564366437643864396440644164426443644464456446644764486449645064516452645364546455645664576458645964606461646264636464646564666467646864696470647164726473647464756476647764786479648064816482648364846485648664876488648964906491649264936494649564966497649864996500650165026503650465056506650765086509651065116512651365146515651665176518651965206521652265236524652565266527652865296530653165326533653465356536653765386539654065416542654365446545654665476548654965506551655265536554655565566557655865596560656165626563656465656566656765686569657065716572657365746575657665776578657965806581658265836584658565866587658865896590659165926593659465956596659765986599660066016602660366046605660666076608660966106611661266136614661566166617661866196620662166226623662466256626662766286629663066316632663366346635663666376638663966406641664266436644664566466647664866496650665166526653665466556656665766586659666066616662666366646665666666676668666966706671667266736674667566766677667866796680668166826683668466856686668766886689669066916692669366946695669666976698669967006701670267036704670567066707670867096710671167126713671467156716671767186719672067216722672367246725672667276728672967306731673267336734673567366737673867396740674167426743674467456746674767486749675067516752675367546755675667576758675967606761676267636764676567666767676867696770677167726773677467756776677767786779678067816782678367846785678667876788678967906791679267936794679567966797679867996800680168026803680468056806680768086809681068116812681368146815681668176818681968206821682268236824682568266827682868296830683168326833683468356836683768386839684068416842684368446845684668476848684968506851685268536854685568566857685868596860686168626863686468656866686768686869687068716872687368746875687668776878687968806881688268836884688568866887688868896890689168926893689468956896689768986899690069016902690369046905690669076908690969106911691269136914691569166917691869196920692169226923692469256926692769286929693069316932693369346935693669376938693969406941694269436944694569466947694869496950695169526953695469556956695769586959696069616962696369646965696669676968696969706971697269736974697569766977697869796980698169826983698469856986698769886989699069916992699369946995699669976998699970007001700270037004700570067007700870097010701170127013701470157016701770187019702070217022702370247025702670277028702970307031703270337034703570367037703870397040704170427043704470457046704770487049705070517052705370547055705670577058705970607061706270637064706570667067706870697070707170727073707470757076707770787079708070817082708370847085708670877088708970907091709270937094709570967097709870997100710171027103710471057106710771087109711071117112711371147115711671177118711971207121712271237124712571267127712871297130713171327133713471357136713771387139714071417142714371447145714671477148714971507151715271537154715571567157715871597160716171627163716471657166716771687169717071717172717371747175717671777178717971807181718271837184718571867187718871897190719171927193719471957196719771987199720072017202720372047205720672077208720972107211721272137214721572167217721872197220722172227223722472257226722772287229723072317232723372347235723672377238723972407241724272437244724572467247724872497250725172527253725472557256725772587259726072617262726372647265726672677268726972707271727272737274727572767277727872797280728172827283728472857286728772887289729072917292729372947295729672977298729973007301730273037304730573067307730873097310731173127313731473157316731773187319732073217322732373247325732673277328732973307331733273337334733573367337733873397340734173427343734473457346734773487349735073517352735373547355735673577358735973607361736273637364736573667367736873697370737173727373737473757376737773787379738073817382738373847385738673877388738973907391739273937394739573967397739873997400740174027403740474057406740774087409741074117412741374147415741674177418741974207421742274237424742574267427742874297430743174327433743474357436743774387439744074417442744374447445744674477448744974507451745274537454745574567457745874597460746174627463746474657466746774687469747074717472747374747475747674777478747974807481748274837484748574867487748874897490749174927493749474957496749774987499750075017502750375047505750675077508750975107511751275137514751575167517751875197520752175227523752475257526752775287529753075317532753375347535753675377538753975407541754275437544754575467547754875497550755175527553755475557556755775587559756075617562756375647565756675677568756975707571757275737574757575767577757875797580758175827583758475857586758775887589759075917592759375947595759675977598759976007601760276037604760576067607760876097610761176127613761476157616761776187619762076217622762376247625762676277628762976307631763276337634763576367637763876397640764176427643764476457646764776487649765076517652765376547655765676577658765976607661766276637664766576667667766876697670767176727673767476757676767776787679768076817682768376847685768676877688768976907691769276937694769576967697769876997700770177027703770477057706770777087709771077117712771377147715771677177718771977207721772277237724772577267727772877297730773177327733773477357736773777387739774077417742774377447745774677477748774977507751775277537754775577567757775877597760776177627763776477657766776777687769777077717772777377747775777677777778777977807781778277837784778577867787778877897790779177927793779477957796779777987799780078017802780378047805780678077808780978107811781278137814781578167817781878197820782178227823782478257826782778287829783078317832783378347835783678377838783978407841784278437844784578467847784878497850785178527853785478557856785778587859786078617862786378647865786678677868786978707871787278737874787578767877787878797880788178827883788478857886788778887889789078917892789378947895789678977898789979007901790279037904790579067907790879097910791179127913791479157916791779187919792079217922792379247925792679277928792979307931793279337934793579367937793879397940794179427943794479457946794779487949795079517952795379547955795679577958795979607961796279637964796579667967796879697970797179727973797479757976797779787979798079817982798379847985798679877988798979907991799279937994799579967997799879998000800180028003800480058006800780088009801080118012801380148015801680178018801980208021802280238024802580268027802880298030803180328033803480358036803780388039804080418042804380448045804680478048804980508051805280538054805580568057805880598060806180628063806480658066806780688069807080718072807380748075807680778078807980808081808280838084808580868087808880898090809180928093809480958096809780988099810081018102810381048105810681078108810981108111811281138114811581168117811881198120812181228123812481258126812781288129813081318132813381348135813681378138813981408141814281438144814581468147814881498150815181528153815481558156815781588159816081618162816381648165816681678168816981708171817281738174817581768177817881798180818181828183818481858186818781888189819081918192819381948195819681978198819982008201820282038204820582068207820882098210821182128213821482158216821782188219822082218222822382248225822682278228822982308231823282338234823582368237823882398240824182428243824482458246824782488249825082518252825382548255825682578258825982608261826282638264826582668267826882698270827182728273827482758276827782788279828082818282828382848285828682878288828982908291829282938294829582968297829882998300830183028303830483058306830783088309831083118312831383148315831683178318831983208321832283238324832583268327832883298330833183328333833483358336833783388339834083418342834383448345834683478348834983508351835283538354835583568357835883598360836183628363836483658366836783688369837083718372837383748375837683778378837983808381838283838384838583868387838883898390839183928393839483958396839783988399840084018402840384048405840684078408840984108411841284138414841584168417841884198420842184228423842484258426842784288429843084318432843384348435843684378438843984408441844284438444844584468447844884498450845184528453845484558456845784588459846084618462846384648465846684678468846984708471847284738474847584768477847884798480848184828483848484858486848784888489849084918492849384948495849684978498849985008501850285038504850585068507850885098510851185128513851485158516851785188519852085218522852385248525852685278528852985308531853285338534853585368537853885398540854185428543854485458546854785488549855085518552855385548555855685578558855985608561856285638564856585668567856885698570857185728573857485758576857785788579858085818582858385848585858685878588858985908591859285938594859585968597859885998600860186028603860486058606860786088609861086118612861386148615861686178618861986208621862286238624862586268627862886298630863186328633863486358636863786388639864086418642864386448645864686478648864986508651865286538654865586568657865886598660866186628663866486658666866786688669867086718672867386748675867686778678867986808681868286838684868586868687868886898690869186928693869486958696869786988699870087018702870387048705870687078708870987108711871287138714871587168717871887198720872187228723872487258726872787288729873087318732873387348735873687378738873987408741874287438744874587468747874887498750875187528753875487558756875787588759876087618762876387648765876687678768876987708771877287738774877587768777877887798780878187828783878487858786878787888789879087918792879387948795879687978798879988008801880288038804880588068807880888098810881188128813881488158816881788188819882088218822882388248825882688278828882988308831883288338834883588368837883888398840884188428843884488458846884788488849885088518852885388548855885688578858885988608861886288638864886588668867886888698870887188728873887488758876887788788879888088818882888388848885888688878888888988908891889288938894889588968897889888998900890189028903890489058906890789088909891089118912891389148915891689178918891989208921892289238924892589268927892889298930893189328933893489358936893789388939894089418942894389448945894689478948894989508951895289538954895589568957895889598960896189628963896489658966896789688969897089718972897389748975897689778978897989808981898289838984898589868987898889898990899189928993899489958996899789988999900090019002900390049005900690079008900990109011901290139014901590169017901890199020902190229023902490259026902790289029903090319032903390349035903690379038903990409041904290439044904590469047904890499050905190529053905490559056905790589059906090619062906390649065906690679068906990709071907290739074907590769077907890799080908190829083908490859086908790889089909090919092909390949095909690979098909991009101910291039104910591069107910891099110911191129113911491159116911791189119912091219122912391249125912691279128912991309131913291339134913591369137913891399140914191429143914491459146914791489149915091519152915391549155915691579158915991609161916291639164916591669167916891699170917191729173917491759176917791789179918091819182918391849185918691879188918991909191919291939194919591969197919891999200920192029203920492059206920792089209921092119212921392149215921692179218921992209221922292239224922592269227922892299230923192329233923492359236923792389239924092419242924392449245924692479248924992509251925292539254925592569257925892599260926192629263926492659266926792689269927092719272927392749275927692779278927992809281928292839284928592869287928892899290929192929293929492959296929792989299930093019302930393049305930693079308930993109311931293139314931593169317931893199320932193229323932493259326932793289329933093319332933393349335933693379338933993409341934293439344934593469347934893499350935193529353935493559356935793589359936093619362936393649365936693679368936993709371937293739374937593769377937893799380938193829383938493859386938793889389939093919392939393949395939693979398939994009401940294039404940594069407940894099410941194129413941494159416941794189419942094219422942394249425942694279428942994309431943294339434943594369437943894399440944194429443944494459446944794489449945094519452945394549455945694579458945994609461946294639464946594669467946894699470947194729473947494759476947794789479948094819482948394849485948694879488948994909491949294939494949594969497949894999500950195029503950495059506950795089509951095119512951395149515951695179518951995209521952295239524952595269527952895299530953195329533953495359536953795389539954095419542954395449545954695479548954995509551955295539554955595569557955895599560956195629563956495659566956795689569957095719572957395749575957695779578957995809581958295839584958595869587958895899590959195929593959495959596959795989599960096019602960396049605960696079608960996109611961296139614961596169617961896199620962196229623962496259626962796289629963096319632963396349635963696379638963996409641964296439644964596469647964896499650965196529653965496559656965796589659966096619662966396649665966696679668966996709671967296739674967596769677967896799680968196829683968496859686968796889689969096919692969396949695969696979698969997009701970297039704970597069707970897099710971197129713971497159716971797189719972097219722972397249725972697279728972997309731973297339734973597369737973897399740974197429743974497459746974797489749975097519752975397549755975697579758975997609761976297639764976597669767976897699770977197729773977497759776977797789779978097819782978397849785978697879788978997909791979297939794979597969797979897999800980198029803980498059806980798089809981098119812981398149815981698179818981998209821982298239824982598269827982898299830983198329833983498359836983798389839984098419842984398449845984698479848984998509851985298539854985598569857985898599860986198629863986498659866986798689869987098719872987398749875987698779878987998809881988298839884988598869887988898899890989198929893989498959896989798989899990099019902990399049905990699079908990999109911991299139914991599169917991899199920992199229923992499259926992799289929993099319932993399349935993699379938993999409941994299439944994599469947994899499950995199529953995499559956995799589959996099619962996399649965996699679968996999709971997299739974997599769977997899799980998199829983998499859986998799889989999099919992999399949995999699979998999910000100011000210003100041000510006100071000810009100101001110012100131001410015100161001710018100191002010021100221002310024100251002610027100281002910030100311003210033100341003510036100371003810039100401004110042100431004410045100461004710048100491005010051100521005310054100551005610057100581005910060100611006210063100641006510066100671006810069100701007110072100731007410075100761007710078100791008010081100821008310084100851008610087100881008910090100911009210093100941009510096100971009810099101001010110102101031010410105101061010710108101091011010111101121011310114101151011610117101181011910120101211012210123101241012510126101271012810129101301013110132101331013410135101361013710138101391014010141101421014310144101451014610147101481014910150101511015210153101541015510156101571015810159101601016110162101631016410165101661016710168101691017010171101721017310174101751017610177101781017910180101811018210183101841018510186101871018810189101901019110192101931019410195101961019710198101991020010201102021020310204102051020610207102081020910210102111021210213102141021510216102171021810219102201022110222102231022410225102261022710228102291023010231102321023310234102351023610237102381023910240102411024210243102441024510246102471024810249102501025110252102531025410255102561025710258102591026010261102621026310264102651026610267102681026910270102711027210273102741027510276102771027810279102801028110282102831028410285102861028710288102891029010291102921029310294102951029610297102981029910300103011030210303103041030510306103071030810309103101031110312103131031410315103161031710318103191032010321103221032310324103251032610327103281032910330103311033210333103341033510336103371033810339103401034110342103431034410345103461034710348103491035010351103521035310354103551035610357103581035910360103611036210363103641036510366103671036810369103701037110372103731037410375103761037710378103791038010381103821038310384103851038610387103881038910390103911039210393103941039510396103971039810399104001040110402104031040410405104061040710408104091041010411104121041310414104151041610417104181041910420104211042210423104241042510426104271042810429104301043110432104331043410435104361043710438104391044010441104421044310444104451044610447104481044910450104511045210453104541045510456104571045810459104601046110462104631046410465104661046710468104691047010471104721047310474104751047610477104781047910480104811048210483104841048510486104871048810489104901049110492104931049410495104961049710498104991050010501105021050310504105051050610507105081050910510105111051210513105141051510516105171051810519105201052110522105231052410525105261052710528105291053010531105321053310534105351053610537105381053910540105411054210543105441054510546105471054810549105501055110552105531055410555105561055710558105591056010561105621056310564105651056610567105681056910570105711057210573105741057510576105771057810579105801058110582105831058410585105861058710588105891059010591105921059310594105951059610597105981059910600106011060210603106041060510606106071060810609106101061110612106131061410615106161061710618106191062010621106221062310624106251062610627106281062910630106311063210633106341063510636106371063810639106401064110642106431064410645106461064710648106491065010651106521065310654106551065610657106581065910660106611066210663106641066510666106671066810669106701067110672106731067410675106761067710678106791068010681106821068310684106851068610687106881068910690106911069210693106941069510696106971069810699107001070110702107031070410705107061070710708107091071010711107121071310714107151071610717107181071910720107211072210723107241072510726107271072810729107301073110732107331073410735107361073710738107391074010741107421074310744107451074610747107481074910750107511075210753107541075510756107571075810759107601076110762107631076410765107661076710768107691077010771107721077310774107751077610777107781077910780107811078210783107841078510786107871078810789107901079110792107931079410795107961079710798107991080010801108021080310804108051080610807108081080910810108111081210813108141081510816108171081810819108201082110822108231082410825108261082710828108291083010831108321083310834108351083610837108381083910840108411084210843108441084510846108471084810849108501085110852108531085410855108561085710858108591086010861108621086310864108651086610867108681086910870108711087210873108741087510876108771087810879108801088110882108831088410885108861088710888108891089010891108921089310894108951089610897108981089910900109011090210903109041090510906109071090810909109101091110912109131091410915109161091710918109191092010921109221092310924109251092610927109281092910930109311093210933109341093510936109371093810939109401094110942109431094410945109461094710948109491095010951109521095310954109551095610957109581095910960109611096210963109641096510966109671096810969109701097110972109731097410975109761097710978109791098010981109821098310984109851098610987109881098910990109911099210993109941099510996109971099810999110001100111002110031100411005110061100711008110091101011011110121101311014110151101611017110181101911020110211102211023110241102511026110271102811029110301103111032110331103411035110361103711038110391104011041110421104311044110451104611047110481104911050110511105211053110541105511056110571105811059110601106111062110631106411065110661106711068110691107011071110721107311074110751107611077110781107911080110811108211083110841108511086110871108811089110901109111092110931109411095110961109711098110991110011101111021110311104111051110611107111081110911110111111111211113111141111511116111171111811119111201112111122111231112411125111261112711128111291113011131111321113311134111351113611137111381113911140111411114211143111441114511146111471114811149111501115111152111531115411155111561115711158111591116011161111621116311164111651116611167111681116911170111711117211173111741117511176111771117811179111801118111182111831118411185111861118711188111891119011191111921119311194111951119611197111981119911200112011120211203112041120511206112071120811209112101121111212112131121411215112161121711218112191122011221112221122311224112251122611227112281122911230112311123211233112341123511236112371123811239112401124111242112431124411245112461124711248112491125011251112521125311254112551125611257112581125911260112611126211263112641126511266112671126811269112701127111272112731127411275112761127711278112791128011281112821128311284112851128611287112881128911290112911129211293112941129511296112971129811299113001130111302113031130411305113061130711308113091131011311113121131311314113151131611317113181131911320113211132211323113241132511326113271132811329113301133111332113331133411335113361133711338113391134011341113421134311344113451134611347113481134911350113511135211353113541135511356113571135811359113601136111362113631136411365
  1. body {
  2. margin:0px;
  3. background-image:none;
  4. position:relative;
  5. left:0px;
  6. width:2258px;
  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. #u7814_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. #u7814 {
  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. #u7814 .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. #u7814_text {
  55. border-width:0px;
  56. white-space:nowrap;
  57. text-transform:none;
  58. }
  59. #u7815_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. #u7815 {
  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. #u7815 .text {
  86. position:absolute;
  87. align-self:center;
  88. padding:2px 2px 2px 2px;
  89. box-sizing:border-box;
  90. width:100%;
  91. }
  92. #u7815_text {
  93. border-width:0px;
  94. word-wrap:break-word;
  95. text-transform:none;
  96. visibility:hidden;
  97. }
  98. #u7816 {
  99. border-width:0px;
  100. position:absolute;
  101. left:0px;
  102. top:0px;
  103. width:0px;
  104. height:0px;
  105. }
  106. #u7817_img {
  107. border-width:0px;
  108. position:absolute;
  109. left:0px;
  110. top:0px;
  111. width:31px;
  112. height:31px;
  113. }
  114. #u7817 {
  115. border-width:0px;
  116. position:absolute;
  117. left:19px;
  118. top:10px;
  119. width:31px;
  120. height:31px;
  121. display:flex;
  122. }
  123. #u7817 .text {
  124. position:absolute;
  125. align-self:center;
  126. padding:2px 2px 2px 2px;
  127. box-sizing:border-box;
  128. width:100%;
  129. }
  130. #u7817_text {
  131. border-width:0px;
  132. word-wrap:break-word;
  133. text-transform:none;
  134. }
  135. #u7818_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. #u7818 {
  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. #u7818 .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. #u7818_text {
  177. border-width:0px;
  178. white-space:nowrap;
  179. text-transform:none;
  180. }
  181. #u7819_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. #u7819 {
  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. #u7819 .text {
  208. position:absolute;
  209. align-self:center;
  210. padding:2px 2px 2px 2px;
  211. box-sizing:border-box;
  212. width:100%;
  213. }
  214. #u7819_text {
  215. border-width:0px;
  216. word-wrap:break-word;
  217. text-transform:none;
  218. visibility:hidden;
  219. }
  220. #u7820_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. #u7820 {
  236. border-width:0px;
  237. position:absolute;
  238. left:120px;
  239. top:50px;
  240. width:1480px;
  241. height:1200px;
  242. display:flex;
  243. }
  244. #u7820 .text {
  245. position:absolute;
  246. align-self:center;
  247. padding:2px 2px 2px 2px;
  248. box-sizing:border-box;
  249. width:100%;
  250. }
  251. #u7820_text {
  252. border-width:0px;
  253. word-wrap:break-word;
  254. text-transform:none;
  255. visibility:hidden;
  256. }
  257. #u7821 {
  258. border-width:0px;
  259. position:absolute;
  260. left:0px;
  261. top:0px;
  262. width:0px;
  263. height:0px;
  264. }
  265. #u7822_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. #u7822 {
  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. #u7822 .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. #u7822_text {
  307. border-width:0px;
  308. white-space:nowrap;
  309. text-transform:none;
  310. }
  311. #u7823_img {
  312. border-width:0px;
  313. position:absolute;
  314. left:0px;
  315. top:0px;
  316. width:14px;
  317. height:14px;
  318. }
  319. #u7823 {
  320. border-width:0px;
  321. position:absolute;
  322. left:20px;
  323. top:71px;
  324. width:14px;
  325. height:14px;
  326. display:flex;
  327. }
  328. #u7823 .text {
  329. position:absolute;
  330. align-self:center;
  331. padding:2px 2px 2px 2px;
  332. box-sizing:border-box;
  333. width:100%;
  334. }
  335. #u7823_text {
  336. border-width:0px;
  337. word-wrap:break-word;
  338. text-transform:none;
  339. visibility:hidden;
  340. }
  341. #u7824 {
  342. border-width:0px;
  343. position:absolute;
  344. left:0px;
  345. top:0px;
  346. width:0px;
  347. height:0px;
  348. }
  349. #u7825_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. #u7825 {
  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. #u7825 .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. #u7825_text {
  391. border-width:0px;
  392. white-space:nowrap;
  393. text-transform:none;
  394. }
  395. #u7826_img {
  396. border-width:0px;
  397. position:absolute;
  398. left:0px;
  399. top:0px;
  400. width:14px;
  401. height:14px;
  402. }
  403. #u7826 {
  404. border-width:0px;
  405. position:absolute;
  406. left:20px;
  407. top:113px;
  408. width:14px;
  409. height:14px;
  410. display:flex;
  411. }
  412. #u7826 .text {
  413. position:absolute;
  414. align-self:center;
  415. padding:2px 2px 2px 2px;
  416. box-sizing:border-box;
  417. width:100%;
  418. }
  419. #u7826_text {
  420. border-width:0px;
  421. word-wrap:break-word;
  422. text-transform:none;
  423. visibility:hidden;
  424. }
  425. #u7827 {
  426. border-width:0px;
  427. position:absolute;
  428. left:0px;
  429. top:0px;
  430. width:0px;
  431. height:0px;
  432. }
  433. #u7828_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. #u7828 {
  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. #u7828 .text {
  466. position:absolute;
  467. align-self:center;
  468. padding:0px 0px 0px 0px;
  469. box-sizing:border-box;
  470. width:100%;
  471. }
  472. #u7828_text {
  473. border-width:0px;
  474. white-space:nowrap;
  475. text-transform:none;
  476. }
  477. #u7829_img {
  478. border-width:0px;
  479. position:absolute;
  480. left:0px;
  481. top:0px;
  482. width:22px;
  483. height:22px;
  484. }
  485. #u7829 {
  486. border-width:0px;
  487. position:absolute;
  488. left:27px;
  489. top:1140px;
  490. width:22px;
  491. height:22px;
  492. display:flex;
  493. }
  494. #u7829 .text {
  495. position:absolute;
  496. align-self:center;
  497. padding:2px 2px 2px 2px;
  498. box-sizing:border-box;
  499. width:100%;
  500. }
  501. #u7829_text {
  502. border-width:0px;
  503. word-wrap:break-word;
  504. text-transform:none;
  505. visibility:hidden;
  506. }
  507. #u7830 {
  508. border-width:0px;
  509. position:absolute;
  510. left:0px;
  511. top:0px;
  512. width:0px;
  513. height:0px;
  514. }
  515. #u7831_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. #u7831 {
  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. #u7831 .text {
  548. position:absolute;
  549. align-self:center;
  550. padding:0px 0px 0px 0px;
  551. box-sizing:border-box;
  552. width:100%;
  553. }
  554. #u7831_text {
  555. border-width:0px;
  556. white-space:nowrap;
  557. text-transform:none;
  558. }
  559. #u7832_img {
  560. border-width:0px;
  561. position:absolute;
  562. left:0px;
  563. top:0px;
  564. width:22px;
  565. height:22px;
  566. }
  567. #u7832 {
  568. border-width:0px;
  569. position:absolute;
  570. left:27px;
  571. top:1182px;
  572. width:22px;
  573. height:22px;
  574. display:flex;
  575. }
  576. #u7832 .text {
  577. position:absolute;
  578. align-self:center;
  579. padding:2px 2px 2px 2px;
  580. box-sizing:border-box;
  581. width:100%;
  582. }
  583. #u7832_text {
  584. border-width:0px;
  585. word-wrap:break-word;
  586. text-transform:none;
  587. visibility:hidden;
  588. }
  589. #u7833 {
  590. border-width:0px;
  591. position:absolute;
  592. left:0px;
  593. top:0px;
  594. width:0px;
  595. height:0px;
  596. }
  597. #u7834_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. #u7834 {
  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. #u7834 .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. #u7834_text {
  639. border-width:0px;
  640. white-space:nowrap;
  641. text-transform:none;
  642. }
  643. #u7835_img {
  644. border-width:0px;
  645. position:absolute;
  646. left:0px;
  647. top:0px;
  648. width:14px;
  649. height:14px;
  650. }
  651. #u7835 {
  652. border-width:0px;
  653. position:absolute;
  654. left:20px;
  655. top:281px;
  656. width:14px;
  657. height:14px;
  658. display:flex;
  659. }
  660. #u7835 .text {
  661. position:absolute;
  662. align-self:center;
  663. padding:2px 2px 2px 2px;
  664. box-sizing:border-box;
  665. width:100%;
  666. }
  667. #u7835_text {
  668. border-width:0px;
  669. word-wrap:break-word;
  670. text-transform:none;
  671. visibility:hidden;
  672. }
  673. #u7836 {
  674. border-width:0px;
  675. position:absolute;
  676. left:0px;
  677. top:0px;
  678. width:0px;
  679. height:0px;
  680. }
  681. #u7837_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. #u7837 {
  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. #u7837 .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. #u7837_text {
  723. border-width:0px;
  724. white-space:nowrap;
  725. text-transform:none;
  726. }
  727. #u7838_img {
  728. border-width:0px;
  729. position:absolute;
  730. left:0px;
  731. top:0px;
  732. width:14px;
  733. height:14px;
  734. }
  735. #u7838 {
  736. border-width:0px;
  737. position:absolute;
  738. left:20px;
  739. top:239px;
  740. width:14px;
  741. height:14px;
  742. display:flex;
  743. }
  744. #u7838 .text {
  745. position:absolute;
  746. align-self:center;
  747. padding:2px 2px 2px 2px;
  748. box-sizing:border-box;
  749. width:100%;
  750. }
  751. #u7838_text {
  752. border-width:0px;
  753. word-wrap:break-word;
  754. text-transform:none;
  755. visibility:hidden;
  756. }
  757. #u7839 {
  758. border-width:0px;
  759. position:absolute;
  760. left:0px;
  761. top:0px;
  762. width:0px;
  763. height:0px;
  764. }
  765. #u7840_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. #u7840 {
  786. border-width:0px;
  787. position:absolute;
  788. left:39px;
  789. top:403px;
  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. #u7840 .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. #u7840_text {
  807. border-width:0px;
  808. white-space:nowrap;
  809. text-transform:none;
  810. }
  811. #u7841_img {
  812. border-width:0px;
  813. position:absolute;
  814. left:0px;
  815. top:0px;
  816. width:14px;
  817. height:14px;
  818. }
  819. #u7841 {
  820. border-width:0px;
  821. position:absolute;
  822. left:20px;
  823. top:407px;
  824. width:14px;
  825. height:14px;
  826. display:flex;
  827. }
  828. #u7841 .text {
  829. position:absolute;
  830. align-self:center;
  831. padding:2px 2px 2px 2px;
  832. box-sizing:border-box;
  833. width:100%;
  834. }
  835. #u7841_text {
  836. border-width:0px;
  837. word-wrap:break-word;
  838. text-transform:none;
  839. visibility:hidden;
  840. }
  841. #u7842 {
  842. border-width:0px;
  843. position:absolute;
  844. left:0px;
  845. top:0px;
  846. width:0px;
  847. height:0px;
  848. }
  849. #u7843_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. #u7843 {
  870. border-width:0px;
  871. position:absolute;
  872. left:39px;
  873. top:445px;
  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. #u7843 .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. #u7843_text {
  891. border-width:0px;
  892. white-space:nowrap;
  893. text-transform:none;
  894. }
  895. #u7844_img {
  896. border-width:0px;
  897. position:absolute;
  898. left:0px;
  899. top:0px;
  900. width:14px;
  901. height:14px;
  902. }
  903. #u7844 {
  904. border-width:0px;
  905. position:absolute;
  906. left:20px;
  907. top:449px;
  908. width:14px;
  909. height:14px;
  910. display:flex;
  911. }
  912. #u7844 .text {
  913. position:absolute;
  914. align-self:center;
  915. padding:2px 2px 2px 2px;
  916. box-sizing:border-box;
  917. width:100%;
  918. }
  919. #u7844_text {
  920. border-width:0px;
  921. word-wrap:break-word;
  922. text-transform:none;
  923. visibility:hidden;
  924. }
  925. #u7845 {
  926. border-width:0px;
  927. position:absolute;
  928. left:0px;
  929. top:0px;
  930. width:0px;
  931. height:0px;
  932. }
  933. #u7846_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. #u7846 {
  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. #u7846 .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. #u7846_text {
  975. border-width:0px;
  976. white-space:nowrap;
  977. text-transform:none;
  978. }
  979. #u7847_img {
  980. border-width:0px;
  981. position:absolute;
  982. left:0px;
  983. top:0px;
  984. width:14px;
  985. height:14px;
  986. }
  987. #u7847 {
  988. border-width:0px;
  989. position:absolute;
  990. left:20px;
  991. top:575px;
  992. width:14px;
  993. height:14px;
  994. display:flex;
  995. }
  996. #u7847 .text {
  997. position:absolute;
  998. align-self:center;
  999. padding:2px 2px 2px 2px;
  1000. box-sizing:border-box;
  1001. width:100%;
  1002. }
  1003. #u7847_text {
  1004. border-width:0px;
  1005. word-wrap:break-word;
  1006. text-transform:none;
  1007. visibility:hidden;
  1008. }
  1009. #u7848 {
  1010. border-width:0px;
  1011. position:absolute;
  1012. left:0px;
  1013. top:0px;
  1014. width:0px;
  1015. height:0px;
  1016. }
  1017. #u7849_div {
  1018. border-width:0px;
  1019. position:absolute;
  1020. left:0px;
  1021. top:0px;
  1022. width:33px;
  1023. height:22px;
  1024. background:inherit;
  1025. background-color:rgba(255, 255, 255, 0);
  1026. border:none;
  1027. border-radius:0px;
  1028. -moz-box-shadow:none;
  1029. -webkit-box-shadow:none;
  1030. box-shadow:none;
  1031. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1032. font-weight:400;
  1033. font-style:normal;
  1034. font-size:16px;
  1035. color:#FFFFFF;
  1036. }
  1037. #u7849 {
  1038. border-width:0px;
  1039. position:absolute;
  1040. left:39px;
  1041. top:529px;
  1042. width:33px;
  1043. height:22px;
  1044. display:flex;
  1045. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1046. font-weight:400;
  1047. font-style:normal;
  1048. font-size:16px;
  1049. color:#FFFFFF;
  1050. }
  1051. #u7849 .text {
  1052. position:absolute;
  1053. align-self:flex-start;
  1054. padding:0px 0px 0px 0px;
  1055. box-sizing:border-box;
  1056. width:100%;
  1057. }
  1058. #u7849_text {
  1059. border-width:0px;
  1060. white-space:nowrap;
  1061. text-transform:none;
  1062. }
  1063. #u7850_img {
  1064. border-width:0px;
  1065. position:absolute;
  1066. left:0px;
  1067. top:0px;
  1068. width:14px;
  1069. height:14px;
  1070. }
  1071. #u7850 {
  1072. border-width:0px;
  1073. position:absolute;
  1074. left:20px;
  1075. top:533px;
  1076. width:14px;
  1077. height:14px;
  1078. display:flex;
  1079. }
  1080. #u7850 .text {
  1081. position:absolute;
  1082. align-self:center;
  1083. padding:2px 2px 2px 2px;
  1084. box-sizing:border-box;
  1085. width:100%;
  1086. }
  1087. #u7850_text {
  1088. border-width:0px;
  1089. word-wrap:break-word;
  1090. text-transform:none;
  1091. visibility:hidden;
  1092. }
  1093. #u7851_input {
  1094. position:absolute;
  1095. left:0px;
  1096. top:0px;
  1097. width:214px;
  1098. height:27px;
  1099. padding:2px 2px 2px 2px;
  1100. font-family:'ArialMT', 'Arial', sans-serif;
  1101. font-weight:400;
  1102. font-style:normal;
  1103. font-size:14px;
  1104. letter-spacing:normal;
  1105. color:#FFFFFF;
  1106. vertical-align:none;
  1107. text-align:left;
  1108. text-transform:none;
  1109. background-color:transparent;
  1110. border-color:transparent;
  1111. }
  1112. #u7851_input.disabled {
  1113. position:absolute;
  1114. left:0px;
  1115. top:0px;
  1116. width:214px;
  1117. height:27px;
  1118. padding:2px 2px 2px 2px;
  1119. font-family:'ArialMT', 'Arial', sans-serif;
  1120. font-weight:400;
  1121. font-style:normal;
  1122. font-size:14px;
  1123. letter-spacing:normal;
  1124. color:#FFFFFF;
  1125. vertical-align:none;
  1126. text-align:left;
  1127. text-transform:none;
  1128. background-color:transparent;
  1129. border-color:transparent;
  1130. }
  1131. #u7851_div {
  1132. border-width:0px;
  1133. position:absolute;
  1134. left:0px;
  1135. top:0px;
  1136. width:214px;
  1137. height:27px;
  1138. background:inherit;
  1139. background-color:rgba(255, 255, 255, 0);
  1140. border:none;
  1141. border-radius:0px;
  1142. -moz-box-shadow:none;
  1143. -webkit-box-shadow:none;
  1144. box-shadow:none;
  1145. font-size:14px;
  1146. color:#FFFFFF;
  1147. }
  1148. #u7851 {
  1149. border-width:0px;
  1150. position:absolute;
  1151. left:1221px;
  1152. top:10px;
  1153. width:214px;
  1154. height:27px;
  1155. display:flex;
  1156. font-size:14px;
  1157. color:#FFFFFF;
  1158. }
  1159. #u7851 .text {
  1160. position:absolute;
  1161. align-self:flex-start;
  1162. padding:2px 2px 2px 2px;
  1163. box-sizing:border-box;
  1164. width:100%;
  1165. }
  1166. #u7851_div.disabled {
  1167. border-width:0px;
  1168. position:absolute;
  1169. left:0px;
  1170. top:0px;
  1171. width:214px;
  1172. height:27px;
  1173. background:inherit;
  1174. background-color:rgba(240, 240, 240, 1);
  1175. border:none;
  1176. border-radius:0px;
  1177. -moz-box-shadow:none;
  1178. -webkit-box-shadow:none;
  1179. box-shadow:none;
  1180. font-size:14px;
  1181. color:#FFFFFF;
  1182. }
  1183. #u7851.disabled {
  1184. }
  1185. .u7851_input_option {
  1186. font-size:14px;
  1187. }
  1188. #u7852_img {
  1189. border-width:0px;
  1190. position:absolute;
  1191. left:0px;
  1192. top:0px;
  1193. width:22px;
  1194. height:22px;
  1195. }
  1196. #u7852 {
  1197. border-width:0px;
  1198. position:absolute;
  1199. left:1194px;
  1200. top:15px;
  1201. width:22px;
  1202. height:22px;
  1203. display:flex;
  1204. }
  1205. #u7852 .text {
  1206. position:absolute;
  1207. align-self:center;
  1208. padding:2px 2px 2px 2px;
  1209. box-sizing:border-box;
  1210. width:100%;
  1211. }
  1212. #u7852_text {
  1213. border-width:0px;
  1214. word-wrap:break-word;
  1215. text-transform:none;
  1216. visibility:hidden;
  1217. }
  1218. #u7853_div {
  1219. border-width:0px;
  1220. position:absolute;
  1221. left:0px;
  1222. top:0px;
  1223. width:100px;
  1224. height:24px;
  1225. background:inherit;
  1226. background-color:rgba(242, 242, 242, 0.2);
  1227. border:none;
  1228. border-radius:25px;
  1229. -moz-box-shadow:none;
  1230. -webkit-box-shadow:none;
  1231. box-shadow:none;
  1232. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1233. font-weight:400;
  1234. font-style:normal;
  1235. color:#FFFFFF;
  1236. text-align:center;
  1237. }
  1238. #u7853 {
  1239. border-width:0px;
  1240. position:absolute;
  1241. left:1480px;
  1242. top:12px;
  1243. width:100px;
  1244. height:24px;
  1245. display:flex;
  1246. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1247. font-weight:400;
  1248. font-style:normal;
  1249. color:#FFFFFF;
  1250. text-align:center;
  1251. }
  1252. #u7853 .text {
  1253. position:absolute;
  1254. align-self:center;
  1255. padding:0px 0px 0px 0px;
  1256. box-sizing:border-box;
  1257. width:100%;
  1258. }
  1259. #u7853_text {
  1260. border-width:0px;
  1261. word-wrap:break-word;
  1262. text-transform:none;
  1263. }
  1264. #u7854_img {
  1265. border-width:0px;
  1266. position:absolute;
  1267. left:0px;
  1268. top:0px;
  1269. width:2px;
  1270. height:12px;
  1271. }
  1272. #u7854 {
  1273. border-width:0px;
  1274. position:absolute;
  1275. left:1452px;
  1276. top:19px;
  1277. width:1px;
  1278. height:11px;
  1279. display:flex;
  1280. }
  1281. #u7854 .text {
  1282. position:absolute;
  1283. align-self:center;
  1284. padding:2px 2px 2px 2px;
  1285. box-sizing:border-box;
  1286. width:100%;
  1287. }
  1288. #u7854_text {
  1289. border-width:0px;
  1290. word-wrap:break-word;
  1291. text-transform:none;
  1292. visibility:hidden;
  1293. }
  1294. #u7855 {
  1295. border-width:0px;
  1296. position:absolute;
  1297. left:0px;
  1298. top:0px;
  1299. width:0px;
  1300. height:0px;
  1301. }
  1302. #u7856_div {
  1303. border-width:0px;
  1304. position:absolute;
  1305. left:0px;
  1306. top:0px;
  1307. width:33px;
  1308. height:22px;
  1309. background:inherit;
  1310. background-color:rgba(255, 255, 255, 0);
  1311. border:none;
  1312. border-radius:0px;
  1313. -moz-box-shadow:none;
  1314. -webkit-box-shadow:none;
  1315. box-shadow:none;
  1316. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1317. font-weight:400;
  1318. font-style:normal;
  1319. font-size:16px;
  1320. color:#FFFFFF;
  1321. }
  1322. #u7856 {
  1323. border-width:0px;
  1324. position:absolute;
  1325. left:39px;
  1326. top:319px;
  1327. width:33px;
  1328. height:22px;
  1329. display:flex;
  1330. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1331. font-weight:400;
  1332. font-style:normal;
  1333. font-size:16px;
  1334. color:#FFFFFF;
  1335. }
  1336. #u7856 .text {
  1337. position:absolute;
  1338. align-self:flex-start;
  1339. padding:0px 0px 0px 0px;
  1340. box-sizing:border-box;
  1341. width:100%;
  1342. }
  1343. #u7856_text {
  1344. border-width:0px;
  1345. white-space:nowrap;
  1346. text-transform:none;
  1347. }
  1348. #u7857_img {
  1349. border-width:0px;
  1350. position:absolute;
  1351. left:0px;
  1352. top:0px;
  1353. width:14px;
  1354. height:14px;
  1355. }
  1356. #u7857 {
  1357. border-width:0px;
  1358. position:absolute;
  1359. left:20px;
  1360. top:323px;
  1361. width:14px;
  1362. height:14px;
  1363. display:flex;
  1364. }
  1365. #u7857 .text {
  1366. position:absolute;
  1367. align-self:center;
  1368. padding:2px 2px 2px 2px;
  1369. box-sizing:border-box;
  1370. width:100%;
  1371. }
  1372. #u7857_text {
  1373. border-width:0px;
  1374. word-wrap:break-word;
  1375. text-transform:none;
  1376. visibility:hidden;
  1377. }
  1378. #u7858 {
  1379. border-width:0px;
  1380. position:absolute;
  1381. left:0px;
  1382. top:0px;
  1383. width:0px;
  1384. height:0px;
  1385. }
  1386. #u7859_div {
  1387. border-width:0px;
  1388. position:absolute;
  1389. left:0px;
  1390. top:0px;
  1391. width:33px;
  1392. height:22px;
  1393. background:inherit;
  1394. background-color:rgba(255, 255, 255, 0);
  1395. border:none;
  1396. border-radius:0px;
  1397. -moz-box-shadow:none;
  1398. -webkit-box-shadow:none;
  1399. box-shadow:none;
  1400. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1401. font-weight:400;
  1402. font-style:normal;
  1403. font-size:16px;
  1404. color:#FFFFFF;
  1405. }
  1406. #u7859 {
  1407. border-width:0px;
  1408. position:absolute;
  1409. left:39px;
  1410. top:361px;
  1411. width:33px;
  1412. height:22px;
  1413. display:flex;
  1414. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1415. font-weight:400;
  1416. font-style:normal;
  1417. font-size:16px;
  1418. color:#FFFFFF;
  1419. }
  1420. #u7859 .text {
  1421. position:absolute;
  1422. align-self:flex-start;
  1423. padding:0px 0px 0px 0px;
  1424. box-sizing:border-box;
  1425. width:100%;
  1426. }
  1427. #u7859_text {
  1428. border-width:0px;
  1429. white-space:nowrap;
  1430. text-transform:none;
  1431. }
  1432. #u7860_img {
  1433. border-width:0px;
  1434. position:absolute;
  1435. left:0px;
  1436. top:0px;
  1437. width:14px;
  1438. height:14px;
  1439. }
  1440. #u7860 {
  1441. border-width:0px;
  1442. position:absolute;
  1443. left:20px;
  1444. top:365px;
  1445. width:14px;
  1446. height:14px;
  1447. display:flex;
  1448. }
  1449. #u7860 .text {
  1450. position:absolute;
  1451. align-self:center;
  1452. padding:2px 2px 2px 2px;
  1453. box-sizing:border-box;
  1454. width:100%;
  1455. }
  1456. #u7860_text {
  1457. border-width:0px;
  1458. word-wrap:break-word;
  1459. text-transform:none;
  1460. visibility:hidden;
  1461. }
  1462. #u7861 {
  1463. border-width:0px;
  1464. position:absolute;
  1465. left:0px;
  1466. top:0px;
  1467. width:0px;
  1468. height:0px;
  1469. }
  1470. #u7862_div {
  1471. border-width:0px;
  1472. position:absolute;
  1473. left:0px;
  1474. top:0px;
  1475. width:33px;
  1476. height:22px;
  1477. background:inherit;
  1478. background-color:rgba(255, 255, 255, 0);
  1479. border:none;
  1480. border-radius:0px;
  1481. -moz-box-shadow:none;
  1482. -webkit-box-shadow:none;
  1483. box-shadow:none;
  1484. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1485. font-weight:400;
  1486. font-style:normal;
  1487. font-size:16px;
  1488. color:#FFFFFF;
  1489. }
  1490. #u7862 {
  1491. border-width:0px;
  1492. position:absolute;
  1493. left:39px;
  1494. top:151px;
  1495. width:33px;
  1496. height:22px;
  1497. display:flex;
  1498. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1499. font-weight:400;
  1500. font-style:normal;
  1501. font-size:16px;
  1502. color:#FFFFFF;
  1503. }
  1504. #u7862 .text {
  1505. position:absolute;
  1506. align-self:flex-start;
  1507. padding:0px 0px 0px 0px;
  1508. box-sizing:border-box;
  1509. width:100%;
  1510. }
  1511. #u7862_text {
  1512. border-width:0px;
  1513. white-space:nowrap;
  1514. text-transform:none;
  1515. }
  1516. #u7863_img {
  1517. border-width:0px;
  1518. position:absolute;
  1519. left:0px;
  1520. top:0px;
  1521. width:14px;
  1522. height:14px;
  1523. }
  1524. #u7863 {
  1525. border-width:0px;
  1526. position:absolute;
  1527. left:20px;
  1528. top:155px;
  1529. width:14px;
  1530. height:14px;
  1531. display:flex;
  1532. }
  1533. #u7863 .text {
  1534. position:absolute;
  1535. align-self:center;
  1536. padding:2px 2px 2px 2px;
  1537. box-sizing:border-box;
  1538. width:100%;
  1539. }
  1540. #u7863_text {
  1541. border-width:0px;
  1542. word-wrap:break-word;
  1543. text-transform:none;
  1544. visibility:hidden;
  1545. }
  1546. #u7864 {
  1547. border-width:0px;
  1548. position:absolute;
  1549. left:0px;
  1550. top:0px;
  1551. width:0px;
  1552. height:0px;
  1553. }
  1554. #u7865_div {
  1555. border-width:0px;
  1556. position:absolute;
  1557. left:0px;
  1558. top:0px;
  1559. width:33px;
  1560. height:22px;
  1561. background:inherit;
  1562. background-color:rgba(255, 255, 255, 0);
  1563. border:none;
  1564. border-radius:0px;
  1565. -moz-box-shadow:none;
  1566. -webkit-box-shadow:none;
  1567. box-shadow:none;
  1568. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1569. font-weight:400;
  1570. font-style:normal;
  1571. font-size:16px;
  1572. color:#FFFFFF;
  1573. }
  1574. #u7865 {
  1575. border-width:0px;
  1576. position:absolute;
  1577. left:39px;
  1578. top:487px;
  1579. width:33px;
  1580. height:22px;
  1581. display:flex;
  1582. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1583. font-weight:400;
  1584. font-style:normal;
  1585. font-size:16px;
  1586. color:#FFFFFF;
  1587. }
  1588. #u7865 .text {
  1589. position:absolute;
  1590. align-self:flex-start;
  1591. padding:0px 0px 0px 0px;
  1592. box-sizing:border-box;
  1593. width:100%;
  1594. }
  1595. #u7865_text {
  1596. border-width:0px;
  1597. white-space:nowrap;
  1598. text-transform:none;
  1599. }
  1600. #u7866_img {
  1601. border-width:0px;
  1602. position:absolute;
  1603. left:0px;
  1604. top:0px;
  1605. width:14px;
  1606. height:14px;
  1607. }
  1608. #u7866 {
  1609. border-width:0px;
  1610. position:absolute;
  1611. left:20px;
  1612. top:491px;
  1613. width:14px;
  1614. height:14px;
  1615. display:flex;
  1616. }
  1617. #u7866 .text {
  1618. position:absolute;
  1619. align-self:center;
  1620. padding:2px 2px 2px 2px;
  1621. box-sizing:border-box;
  1622. width:100%;
  1623. }
  1624. #u7866_text {
  1625. border-width:0px;
  1626. word-wrap:break-word;
  1627. text-transform:none;
  1628. visibility:hidden;
  1629. }
  1630. #u7867 {
  1631. border-width:0px;
  1632. position:absolute;
  1633. left:0px;
  1634. top:0px;
  1635. width:0px;
  1636. height:0px;
  1637. }
  1638. #u7868_div {
  1639. border-width:0px;
  1640. position:absolute;
  1641. left:0px;
  1642. top:0px;
  1643. width:33px;
  1644. height:22px;
  1645. background:inherit;
  1646. background-color:rgba(255, 255, 255, 0);
  1647. border:none;
  1648. border-radius:0px;
  1649. -moz-box-shadow:none;
  1650. -webkit-box-shadow:none;
  1651. box-shadow:none;
  1652. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1653. font-weight:400;
  1654. font-style:normal;
  1655. font-size:16px;
  1656. color:#FFFFFF;
  1657. }
  1658. #u7868 {
  1659. border-width:0px;
  1660. position:absolute;
  1661. left:39px;
  1662. top:193px;
  1663. width:33px;
  1664. height:22px;
  1665. display:flex;
  1666. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1667. font-weight:400;
  1668. font-style:normal;
  1669. font-size:16px;
  1670. color:#FFFFFF;
  1671. }
  1672. #u7868 .text {
  1673. position:absolute;
  1674. align-self:flex-start;
  1675. padding:0px 0px 0px 0px;
  1676. box-sizing:border-box;
  1677. width:100%;
  1678. }
  1679. #u7868_text {
  1680. border-width:0px;
  1681. white-space:nowrap;
  1682. text-transform:none;
  1683. }
  1684. #u7869_img {
  1685. border-width:0px;
  1686. position:absolute;
  1687. left:0px;
  1688. top:0px;
  1689. width:14px;
  1690. height:14px;
  1691. }
  1692. #u7869 {
  1693. border-width:0px;
  1694. position:absolute;
  1695. left:20px;
  1696. top:197px;
  1697. width:14px;
  1698. height:14px;
  1699. display:flex;
  1700. }
  1701. #u7869 .text {
  1702. position:absolute;
  1703. align-self:center;
  1704. padding:2px 2px 2px 2px;
  1705. box-sizing:border-box;
  1706. width:100%;
  1707. }
  1708. #u7869_text {
  1709. border-width:0px;
  1710. word-wrap:break-word;
  1711. text-transform:none;
  1712. visibility:hidden;
  1713. }
  1714. #u7870 {
  1715. border-width:0px;
  1716. position:absolute;
  1717. left:0px;
  1718. top:0px;
  1719. width:0px;
  1720. height:0px;
  1721. }
  1722. #u7871_div {
  1723. border-width:0px;
  1724. position:absolute;
  1725. left:0px;
  1726. top:0px;
  1727. width:1259px;
  1728. height:1180px;
  1729. background:inherit;
  1730. background-color:rgba(255, 255, 255, 1);
  1731. border:none;
  1732. border-radius:0px;
  1733. -moz-box-shadow:0px 0px 3px rgba(127, 127, 127, 0.349019607843137);
  1734. -webkit-box-shadow:0px 0px 3px rgba(127, 127, 127, 0.349019607843137);
  1735. box-shadow:0px 0px 3px rgba(127, 127, 127, 0.349019607843137);
  1736. }
  1737. #u7871 {
  1738. border-width:0px;
  1739. position:absolute;
  1740. left:330px;
  1741. top:50px;
  1742. width:1259px;
  1743. height:1180px;
  1744. display:flex;
  1745. }
  1746. #u7871 .text {
  1747. position:absolute;
  1748. align-self:center;
  1749. padding:2px 2px 2px 2px;
  1750. box-sizing:border-box;
  1751. width:100%;
  1752. }
  1753. #u7871_text {
  1754. border-width:0px;
  1755. word-wrap:break-word;
  1756. text-transform:none;
  1757. visibility:hidden;
  1758. }
  1759. #u7872_div {
  1760. border-width:0px;
  1761. position:absolute;
  1762. left:0px;
  1763. top:0px;
  1764. width:150px;
  1765. height:50px;
  1766. background:inherit;
  1767. background-color:rgba(255, 255, 255, 0);
  1768. border:none;
  1769. border-left:0px;
  1770. border-top:0px;
  1771. border-right:0px;
  1772. border-radius:0px;
  1773. border-bottom-right-radius:0px;
  1774. border-bottom-left-radius:0px;
  1775. -moz-box-shadow:none;
  1776. -webkit-box-shadow:none;
  1777. box-shadow:none;
  1778. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  1779. font-weight:500;
  1780. font-style:normal;
  1781. font-size:18px;
  1782. }
  1783. #u7872 {
  1784. border-width:0px;
  1785. position:absolute;
  1786. left:350px;
  1787. top:50px;
  1788. width:150px;
  1789. height:50px;
  1790. display:flex;
  1791. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  1792. font-weight:500;
  1793. font-style:normal;
  1794. font-size:18px;
  1795. }
  1796. #u7872 .text {
  1797. position:absolute;
  1798. align-self:center;
  1799. padding:0px 0px 0px 0px;
  1800. box-sizing:border-box;
  1801. width:100%;
  1802. }
  1803. #u7872_text {
  1804. border-width:0px;
  1805. white-space:nowrap;
  1806. text-transform:none;
  1807. }
  1808. #u7873 {
  1809. border-width:0px;
  1810. position:absolute;
  1811. left:359px;
  1812. top:403px;
  1813. width:1193px;
  1814. height:428px;
  1815. }
  1816. #u7874_img {
  1817. border-width:0px;
  1818. position:absolute;
  1819. left:0px;
  1820. top:0px;
  1821. width:60px;
  1822. height:38px;
  1823. }
  1824. #u7874 {
  1825. border-width:0px;
  1826. position:absolute;
  1827. left:0px;
  1828. top:0px;
  1829. width:60px;
  1830. height:38px;
  1831. display:flex;
  1832. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  1833. font-weight:400;
  1834. font-style:normal;
  1835. font-size:12px;
  1836. color:#FFFFFF;
  1837. }
  1838. #u7874 .text {
  1839. position:absolute;
  1840. align-self:center;
  1841. padding:2px 2px 2px 0px;
  1842. box-sizing:border-box;
  1843. width:100%;
  1844. }
  1845. #u7874_text {
  1846. border-width:0px;
  1847. word-wrap:break-word;
  1848. text-transform:none;
  1849. }
  1850. #u7875_img {
  1851. border-width:0px;
  1852. position:absolute;
  1853. left:0px;
  1854. top:0px;
  1855. width:148px;
  1856. height:38px;
  1857. }
  1858. #u7875 {
  1859. border-width:0px;
  1860. position:absolute;
  1861. left:60px;
  1862. top:0px;
  1863. width:148px;
  1864. height:38px;
  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. #u7875 .text {
  1873. position:absolute;
  1874. align-self:center;
  1875. padding:2px 2px 2px 0px;
  1876. box-sizing:border-box;
  1877. width:100%;
  1878. }
  1879. #u7875_text {
  1880. border-width:0px;
  1881. word-wrap:break-word;
  1882. text-transform:none;
  1883. }
  1884. #u7876_img {
  1885. border-width:0px;
  1886. position:absolute;
  1887. left:0px;
  1888. top:0px;
  1889. width:159px;
  1890. height:38px;
  1891. }
  1892. #u7876 {
  1893. border-width:0px;
  1894. position:absolute;
  1895. left:208px;
  1896. top:0px;
  1897. width:159px;
  1898. height:38px;
  1899. display:flex;
  1900. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1901. font-weight:400;
  1902. font-style:normal;
  1903. font-size:12px;
  1904. color:#FFFFFF;
  1905. }
  1906. #u7876 .text {
  1907. position:absolute;
  1908. align-self:center;
  1909. padding:2px 2px 2px 0px;
  1910. box-sizing:border-box;
  1911. width:100%;
  1912. }
  1913. #u7876_text {
  1914. border-width:0px;
  1915. word-wrap:break-word;
  1916. text-transform:none;
  1917. }
  1918. #u7877_img {
  1919. border-width:0px;
  1920. position:absolute;
  1921. left:0px;
  1922. top:0px;
  1923. width:181px;
  1924. height:38px;
  1925. }
  1926. #u7877 {
  1927. border-width:0px;
  1928. position:absolute;
  1929. left:367px;
  1930. top:0px;
  1931. width:181px;
  1932. height:38px;
  1933. display:flex;
  1934. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1935. font-weight:400;
  1936. font-style:normal;
  1937. font-size:12px;
  1938. color:#FFFFFF;
  1939. }
  1940. #u7877 .text {
  1941. position:absolute;
  1942. align-self:center;
  1943. padding:2px 2px 2px 0px;
  1944. box-sizing:border-box;
  1945. width:100%;
  1946. }
  1947. #u7877_text {
  1948. border-width:0px;
  1949. word-wrap:break-word;
  1950. text-transform:none;
  1951. }
  1952. #u7878_img {
  1953. border-width:0px;
  1954. position:absolute;
  1955. left:0px;
  1956. top:0px;
  1957. width:181px;
  1958. height:38px;
  1959. }
  1960. #u7878 {
  1961. border-width:0px;
  1962. position:absolute;
  1963. left:548px;
  1964. top:0px;
  1965. width:181px;
  1966. height:38px;
  1967. display:flex;
  1968. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1969. font-weight:400;
  1970. font-style:normal;
  1971. font-size:12px;
  1972. color:#FFFFFF;
  1973. }
  1974. #u7878 .text {
  1975. position:absolute;
  1976. align-self:center;
  1977. padding:2px 2px 2px 0px;
  1978. box-sizing:border-box;
  1979. width:100%;
  1980. }
  1981. #u7878_text {
  1982. border-width:0px;
  1983. word-wrap:break-word;
  1984. text-transform:none;
  1985. }
  1986. #u7879_img {
  1987. border-width:0px;
  1988. position:absolute;
  1989. left:0px;
  1990. top:0px;
  1991. width:165px;
  1992. height:38px;
  1993. }
  1994. #u7879 {
  1995. border-width:0px;
  1996. position:absolute;
  1997. left:729px;
  1998. top:0px;
  1999. width:165px;
  2000. height:38px;
  2001. display:flex;
  2002. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2003. font-weight:400;
  2004. font-style:normal;
  2005. font-size:12px;
  2006. color:#FFFFFF;
  2007. }
  2008. #u7879 .text {
  2009. position:absolute;
  2010. align-self:center;
  2011. padding:2px 2px 2px 0px;
  2012. box-sizing:border-box;
  2013. width:100%;
  2014. }
  2015. #u7879_text {
  2016. border-width:0px;
  2017. word-wrap:break-word;
  2018. text-transform:none;
  2019. }
  2020. #u7880_img {
  2021. border-width:0px;
  2022. position:absolute;
  2023. left:0px;
  2024. top:0px;
  2025. width:162px;
  2026. height:38px;
  2027. }
  2028. #u7880 {
  2029. border-width:0px;
  2030. position:absolute;
  2031. left:894px;
  2032. top:0px;
  2033. width:162px;
  2034. height:38px;
  2035. display:flex;
  2036. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2037. font-weight:400;
  2038. font-style:normal;
  2039. font-size:12px;
  2040. color:#FFFFFF;
  2041. }
  2042. #u7880 .text {
  2043. position:absolute;
  2044. align-self:center;
  2045. padding:2px 2px 2px 0px;
  2046. box-sizing:border-box;
  2047. width:100%;
  2048. }
  2049. #u7880_text {
  2050. border-width:0px;
  2051. word-wrap:break-word;
  2052. text-transform:none;
  2053. }
  2054. #u7881_img {
  2055. border-width:0px;
  2056. position:absolute;
  2057. left:0px;
  2058. top:0px;
  2059. width:137px;
  2060. height:38px;
  2061. }
  2062. #u7881 {
  2063. border-width:0px;
  2064. position:absolute;
  2065. left:1056px;
  2066. top:0px;
  2067. width:137px;
  2068. height:38px;
  2069. display:flex;
  2070. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2071. font-weight:400;
  2072. font-style:normal;
  2073. font-size:12px;
  2074. color:#FFFFFF;
  2075. }
  2076. #u7881 .text {
  2077. position:absolute;
  2078. align-self:center;
  2079. padding:2px 2px 2px 0px;
  2080. box-sizing:border-box;
  2081. width:100%;
  2082. }
  2083. #u7881_text {
  2084. border-width:0px;
  2085. word-wrap:break-word;
  2086. text-transform:none;
  2087. }
  2088. #u7882_img {
  2089. border-width:0px;
  2090. position:absolute;
  2091. left:0px;
  2092. top:0px;
  2093. width:60px;
  2094. height:39px;
  2095. }
  2096. #u7882 {
  2097. border-width:0px;
  2098. position:absolute;
  2099. left:0px;
  2100. top:38px;
  2101. width:60px;
  2102. height:39px;
  2103. display:flex;
  2104. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  2105. font-weight:400;
  2106. font-style:normal;
  2107. font-size:12px;
  2108. }
  2109. #u7882 .text {
  2110. position:absolute;
  2111. align-self:center;
  2112. padding:2px 2px 2px 0px;
  2113. box-sizing:border-box;
  2114. width:100%;
  2115. }
  2116. #u7882_text {
  2117. border-width:0px;
  2118. word-wrap:break-word;
  2119. text-transform:none;
  2120. }
  2121. #u7883_img {
  2122. border-width:0px;
  2123. position:absolute;
  2124. left:0px;
  2125. top:0px;
  2126. width:148px;
  2127. height:39px;
  2128. }
  2129. #u7883 {
  2130. border-width:0px;
  2131. position:absolute;
  2132. left:60px;
  2133. top:38px;
  2134. width:148px;
  2135. height:39px;
  2136. display:flex;
  2137. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2138. font-weight:400;
  2139. font-style:normal;
  2140. font-size:12px;
  2141. color:#AAAAAA;
  2142. }
  2143. #u7883 .text {
  2144. position:absolute;
  2145. align-self:center;
  2146. padding:2px 2px 2px 0px;
  2147. box-sizing:border-box;
  2148. width:100%;
  2149. }
  2150. #u7883_text {
  2151. border-width:0px;
  2152. word-wrap:break-word;
  2153. text-transform:none;
  2154. visibility:hidden;
  2155. }
  2156. #u7884_img {
  2157. border-width:0px;
  2158. position:absolute;
  2159. left:0px;
  2160. top:0px;
  2161. width:159px;
  2162. height:39px;
  2163. }
  2164. #u7884 {
  2165. border-width:0px;
  2166. position:absolute;
  2167. left:208px;
  2168. top:38px;
  2169. width:159px;
  2170. height:39px;
  2171. display:flex;
  2172. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2173. font-weight:400;
  2174. font-style:normal;
  2175. font-size:12px;
  2176. color:#AAAAAA;
  2177. }
  2178. #u7884 .text {
  2179. position:absolute;
  2180. align-self:center;
  2181. padding:2px 2px 2px 0px;
  2182. box-sizing:border-box;
  2183. width:100%;
  2184. }
  2185. #u7884_text {
  2186. border-width:0px;
  2187. word-wrap:break-word;
  2188. text-transform:none;
  2189. visibility:hidden;
  2190. }
  2191. #u7885_img {
  2192. border-width:0px;
  2193. position:absolute;
  2194. left:0px;
  2195. top:0px;
  2196. width:181px;
  2197. height:39px;
  2198. }
  2199. #u7885 {
  2200. border-width:0px;
  2201. position:absolute;
  2202. left:367px;
  2203. top:38px;
  2204. width:181px;
  2205. height:39px;
  2206. display:flex;
  2207. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2208. font-weight:400;
  2209. font-style:normal;
  2210. font-size:12px;
  2211. color:#333333;
  2212. }
  2213. #u7885 .text {
  2214. position:absolute;
  2215. align-self:center;
  2216. padding:2px 2px 2px 0px;
  2217. box-sizing:border-box;
  2218. width:100%;
  2219. }
  2220. #u7885_text {
  2221. border-width:0px;
  2222. word-wrap:break-word;
  2223. text-transform:none;
  2224. }
  2225. #u7886_img {
  2226. border-width:0px;
  2227. position:absolute;
  2228. left:0px;
  2229. top:0px;
  2230. width:181px;
  2231. height:39px;
  2232. }
  2233. #u7886 {
  2234. border-width:0px;
  2235. position:absolute;
  2236. left:548px;
  2237. top:38px;
  2238. width:181px;
  2239. height:39px;
  2240. display:flex;
  2241. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2242. font-weight:400;
  2243. font-style:normal;
  2244. font-size:12px;
  2245. color:#333333;
  2246. }
  2247. #u7886 .text {
  2248. position:absolute;
  2249. align-self:center;
  2250. padding:2px 2px 2px 0px;
  2251. box-sizing:border-box;
  2252. width:100%;
  2253. }
  2254. #u7886_text {
  2255. border-width:0px;
  2256. word-wrap:break-word;
  2257. text-transform:none;
  2258. }
  2259. #u7887_img {
  2260. border-width:0px;
  2261. position:absolute;
  2262. left:0px;
  2263. top:0px;
  2264. width:165px;
  2265. height:39px;
  2266. }
  2267. #u7887 {
  2268. border-width:0px;
  2269. position:absolute;
  2270. left:729px;
  2271. top:38px;
  2272. width:165px;
  2273. height:39px;
  2274. display:flex;
  2275. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2276. font-weight:400;
  2277. font-style:normal;
  2278. font-size:12px;
  2279. color:#333333;
  2280. }
  2281. #u7887 .text {
  2282. position:absolute;
  2283. align-self:center;
  2284. padding:2px 2px 2px 0px;
  2285. box-sizing:border-box;
  2286. width:100%;
  2287. }
  2288. #u7887_text {
  2289. border-width:0px;
  2290. word-wrap:break-word;
  2291. text-transform:none;
  2292. visibility:hidden;
  2293. }
  2294. #u7888_img {
  2295. border-width:0px;
  2296. position:absolute;
  2297. left:0px;
  2298. top:0px;
  2299. width:162px;
  2300. height:39px;
  2301. }
  2302. #u7888 {
  2303. border-width:0px;
  2304. position:absolute;
  2305. left:894px;
  2306. top:38px;
  2307. width:162px;
  2308. height:39px;
  2309. display:flex;
  2310. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2311. font-weight:400;
  2312. font-style:normal;
  2313. font-size:12px;
  2314. color:#1890FF;
  2315. }
  2316. #u7888 .text {
  2317. position:absolute;
  2318. align-self:center;
  2319. padding:2px 2px 2px 0px;
  2320. box-sizing:border-box;
  2321. width:100%;
  2322. }
  2323. #u7888_text {
  2324. border-width:0px;
  2325. word-wrap:break-word;
  2326. text-transform:none;
  2327. visibility:hidden;
  2328. }
  2329. #u7889_img {
  2330. border-width:0px;
  2331. position:absolute;
  2332. left:0px;
  2333. top:0px;
  2334. width:137px;
  2335. height:39px;
  2336. }
  2337. #u7889 {
  2338. border-width:0px;
  2339. position:absolute;
  2340. left:1056px;
  2341. top:38px;
  2342. width:137px;
  2343. height:39px;
  2344. display:flex;
  2345. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2346. font-weight:400;
  2347. font-style:normal;
  2348. font-size:12px;
  2349. color:#298FFF;
  2350. }
  2351. #u7889 .text {
  2352. position:absolute;
  2353. align-self:center;
  2354. padding:2px 2px 2px 0px;
  2355. box-sizing:border-box;
  2356. width:100%;
  2357. }
  2358. #u7889_text {
  2359. border-width:0px;
  2360. word-wrap:break-word;
  2361. text-transform:none;
  2362. }
  2363. #u7890_img {
  2364. border-width:0px;
  2365. position:absolute;
  2366. left:0px;
  2367. top:0px;
  2368. width:60px;
  2369. height:38px;
  2370. }
  2371. #u7890 {
  2372. border-width:0px;
  2373. position:absolute;
  2374. left:0px;
  2375. top:77px;
  2376. width:60px;
  2377. height:38px;
  2378. display:flex;
  2379. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  2380. font-weight:400;
  2381. font-style:normal;
  2382. font-size:12px;
  2383. color:#606266;
  2384. }
  2385. #u7890 .text {
  2386. position:absolute;
  2387. align-self:center;
  2388. padding:2px 2px 2px 0px;
  2389. box-sizing:border-box;
  2390. width:100%;
  2391. }
  2392. #u7890_text {
  2393. border-width:0px;
  2394. word-wrap:break-word;
  2395. text-transform:none;
  2396. }
  2397. #u7891_img {
  2398. border-width:0px;
  2399. position:absolute;
  2400. left:0px;
  2401. top:0px;
  2402. width:148px;
  2403. height:38px;
  2404. }
  2405. #u7891 {
  2406. border-width:0px;
  2407. position:absolute;
  2408. left:60px;
  2409. top:77px;
  2410. width:148px;
  2411. height:38px;
  2412. display:flex;
  2413. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  2414. font-weight:400;
  2415. font-style:normal;
  2416. font-size:12px;
  2417. color:#606266;
  2418. }
  2419. #u7891 .text {
  2420. position:absolute;
  2421. align-self:center;
  2422. padding:2px 2px 2px 0px;
  2423. box-sizing:border-box;
  2424. width:100%;
  2425. }
  2426. #u7891_text {
  2427. border-width:0px;
  2428. word-wrap:break-word;
  2429. text-transform:none;
  2430. visibility:hidden;
  2431. }
  2432. #u7892_img {
  2433. border-width:0px;
  2434. position:absolute;
  2435. left:0px;
  2436. top:0px;
  2437. width:159px;
  2438. height:38px;
  2439. }
  2440. #u7892 {
  2441. border-width:0px;
  2442. position:absolute;
  2443. left:208px;
  2444. top:77px;
  2445. width:159px;
  2446. height:38px;
  2447. display:flex;
  2448. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  2449. font-weight:400;
  2450. font-style:normal;
  2451. font-size:12px;
  2452. color:#606266;
  2453. }
  2454. #u7892 .text {
  2455. position:absolute;
  2456. align-self:center;
  2457. padding:2px 2px 2px 0px;
  2458. box-sizing:border-box;
  2459. width:100%;
  2460. }
  2461. #u7892_text {
  2462. border-width:0px;
  2463. word-wrap:break-word;
  2464. text-transform:none;
  2465. visibility:hidden;
  2466. }
  2467. #u7893_img {
  2468. border-width:0px;
  2469. position:absolute;
  2470. left:0px;
  2471. top:0px;
  2472. width:181px;
  2473. height:38px;
  2474. }
  2475. #u7893 {
  2476. border-width:0px;
  2477. position:absolute;
  2478. left:367px;
  2479. top:77px;
  2480. width:181px;
  2481. height:38px;
  2482. display:flex;
  2483. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  2484. font-weight:400;
  2485. font-style:normal;
  2486. font-size:12px;
  2487. color:#606266;
  2488. }
  2489. #u7893 .text {
  2490. position:absolute;
  2491. align-self:center;
  2492. padding:2px 2px 2px 0px;
  2493. box-sizing:border-box;
  2494. width:100%;
  2495. }
  2496. #u7893_text {
  2497. border-width:0px;
  2498. word-wrap:break-word;
  2499. text-transform:none;
  2500. visibility:hidden;
  2501. }
  2502. #u7894_img {
  2503. border-width:0px;
  2504. position:absolute;
  2505. left:0px;
  2506. top:0px;
  2507. width:181px;
  2508. height:38px;
  2509. }
  2510. #u7894 {
  2511. border-width:0px;
  2512. position:absolute;
  2513. left:548px;
  2514. top:77px;
  2515. width:181px;
  2516. height:38px;
  2517. display:flex;
  2518. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  2519. font-weight:400;
  2520. font-style:normal;
  2521. font-size:12px;
  2522. color:#606266;
  2523. }
  2524. #u7894 .text {
  2525. position:absolute;
  2526. align-self:center;
  2527. padding:2px 2px 2px 0px;
  2528. box-sizing:border-box;
  2529. width:100%;
  2530. }
  2531. #u7894_text {
  2532. border-width:0px;
  2533. word-wrap:break-word;
  2534. text-transform:none;
  2535. visibility:hidden;
  2536. }
  2537. #u7895_img {
  2538. border-width:0px;
  2539. position:absolute;
  2540. left:0px;
  2541. top:0px;
  2542. width:165px;
  2543. height:38px;
  2544. }
  2545. #u7895 {
  2546. border-width:0px;
  2547. position:absolute;
  2548. left:729px;
  2549. top:77px;
  2550. width:165px;
  2551. height:38px;
  2552. display:flex;
  2553. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  2554. font-weight:400;
  2555. font-style:normal;
  2556. font-size:12px;
  2557. color:#606266;
  2558. }
  2559. #u7895 .text {
  2560. position:absolute;
  2561. align-self:center;
  2562. padding:2px 2px 2px 0px;
  2563. box-sizing:border-box;
  2564. width:100%;
  2565. }
  2566. #u7895_text {
  2567. border-width:0px;
  2568. word-wrap:break-word;
  2569. text-transform:none;
  2570. visibility:hidden;
  2571. }
  2572. #u7896_img {
  2573. border-width:0px;
  2574. position:absolute;
  2575. left:0px;
  2576. top:0px;
  2577. width:162px;
  2578. height:38px;
  2579. }
  2580. #u7896 {
  2581. border-width:0px;
  2582. position:absolute;
  2583. left:894px;
  2584. top:77px;
  2585. width:162px;
  2586. height:38px;
  2587. display:flex;
  2588. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  2589. font-weight:400;
  2590. font-style:normal;
  2591. font-size:12px;
  2592. color:#606266;
  2593. }
  2594. #u7896 .text {
  2595. position:absolute;
  2596. align-self:center;
  2597. padding:2px 2px 2px 0px;
  2598. box-sizing:border-box;
  2599. width:100%;
  2600. }
  2601. #u7896_text {
  2602. border-width:0px;
  2603. word-wrap:break-word;
  2604. text-transform:none;
  2605. visibility:hidden;
  2606. }
  2607. #u7897_img {
  2608. border-width:0px;
  2609. position:absolute;
  2610. left:0px;
  2611. top:0px;
  2612. width:137px;
  2613. height:38px;
  2614. }
  2615. #u7897 {
  2616. border-width:0px;
  2617. position:absolute;
  2618. left:1056px;
  2619. top:77px;
  2620. width:137px;
  2621. height:38px;
  2622. display:flex;
  2623. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2624. font-weight:400;
  2625. font-style:normal;
  2626. font-size:12px;
  2627. color:#298FFF;
  2628. }
  2629. #u7897 .text {
  2630. position:absolute;
  2631. align-self:center;
  2632. padding:2px 2px 2px 0px;
  2633. box-sizing:border-box;
  2634. width:100%;
  2635. }
  2636. #u7897_text {
  2637. border-width:0px;
  2638. word-wrap:break-word;
  2639. text-transform:none;
  2640. }
  2641. #u7898_img {
  2642. border-width:0px;
  2643. position:absolute;
  2644. left:0px;
  2645. top:0px;
  2646. width:60px;
  2647. height:35px;
  2648. }
  2649. #u7898 {
  2650. border-width:0px;
  2651. position:absolute;
  2652. left:0px;
  2653. top:115px;
  2654. width:60px;
  2655. height:35px;
  2656. display:flex;
  2657. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  2658. font-weight:400;
  2659. font-style:normal;
  2660. font-size:12px;
  2661. color:#606266;
  2662. }
  2663. #u7898 .text {
  2664. position:absolute;
  2665. align-self:center;
  2666. padding:2px 2px 2px 0px;
  2667. box-sizing:border-box;
  2668. width:100%;
  2669. }
  2670. #u7898_text {
  2671. border-width:0px;
  2672. word-wrap:break-word;
  2673. text-transform:none;
  2674. }
  2675. #u7899_img {
  2676. border-width:0px;
  2677. position:absolute;
  2678. left:0px;
  2679. top:0px;
  2680. width:148px;
  2681. height:35px;
  2682. }
  2683. #u7899 {
  2684. border-width:0px;
  2685. position:absolute;
  2686. left:60px;
  2687. top:115px;
  2688. width:148px;
  2689. height:35px;
  2690. display:flex;
  2691. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  2692. font-weight:400;
  2693. font-style:normal;
  2694. font-size:12px;
  2695. color:#606266;
  2696. }
  2697. #u7899 .text {
  2698. position:absolute;
  2699. align-self:center;
  2700. padding:2px 2px 2px 0px;
  2701. box-sizing:border-box;
  2702. width:100%;
  2703. }
  2704. #u7899_text {
  2705. border-width:0px;
  2706. word-wrap:break-word;
  2707. text-transform:none;
  2708. visibility:hidden;
  2709. }
  2710. #u7900_img {
  2711. border-width:0px;
  2712. position:absolute;
  2713. left:0px;
  2714. top:0px;
  2715. width:159px;
  2716. height:35px;
  2717. }
  2718. #u7900 {
  2719. border-width:0px;
  2720. position:absolute;
  2721. left:208px;
  2722. top:115px;
  2723. width:159px;
  2724. height:35px;
  2725. display:flex;
  2726. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  2727. font-weight:400;
  2728. font-style:normal;
  2729. font-size:12px;
  2730. color:#606266;
  2731. }
  2732. #u7900 .text {
  2733. position:absolute;
  2734. align-self:center;
  2735. padding:2px 2px 2px 0px;
  2736. box-sizing:border-box;
  2737. width:100%;
  2738. }
  2739. #u7900_text {
  2740. border-width:0px;
  2741. word-wrap:break-word;
  2742. text-transform:none;
  2743. visibility:hidden;
  2744. }
  2745. #u7901_img {
  2746. border-width:0px;
  2747. position:absolute;
  2748. left:0px;
  2749. top:0px;
  2750. width:181px;
  2751. height:35px;
  2752. }
  2753. #u7901 {
  2754. border-width:0px;
  2755. position:absolute;
  2756. left:367px;
  2757. top:115px;
  2758. width:181px;
  2759. height:35px;
  2760. display:flex;
  2761. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  2762. font-weight:400;
  2763. font-style:normal;
  2764. font-size:12px;
  2765. color:#606266;
  2766. }
  2767. #u7901 .text {
  2768. position:absolute;
  2769. align-self:center;
  2770. padding:2px 2px 2px 0px;
  2771. box-sizing:border-box;
  2772. width:100%;
  2773. }
  2774. #u7901_text {
  2775. border-width:0px;
  2776. word-wrap:break-word;
  2777. text-transform:none;
  2778. visibility:hidden;
  2779. }
  2780. #u7902_img {
  2781. border-width:0px;
  2782. position:absolute;
  2783. left:0px;
  2784. top:0px;
  2785. width:181px;
  2786. height:35px;
  2787. }
  2788. #u7902 {
  2789. border-width:0px;
  2790. position:absolute;
  2791. left:548px;
  2792. top:115px;
  2793. width:181px;
  2794. height:35px;
  2795. display:flex;
  2796. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  2797. font-weight:400;
  2798. font-style:normal;
  2799. font-size:12px;
  2800. color:#606266;
  2801. }
  2802. #u7902 .text {
  2803. position:absolute;
  2804. align-self:center;
  2805. padding:2px 2px 2px 0px;
  2806. box-sizing:border-box;
  2807. width:100%;
  2808. }
  2809. #u7902_text {
  2810. border-width:0px;
  2811. word-wrap:break-word;
  2812. text-transform:none;
  2813. visibility:hidden;
  2814. }
  2815. #u7903_img {
  2816. border-width:0px;
  2817. position:absolute;
  2818. left:0px;
  2819. top:0px;
  2820. width:165px;
  2821. height:35px;
  2822. }
  2823. #u7903 {
  2824. border-width:0px;
  2825. position:absolute;
  2826. left:729px;
  2827. top:115px;
  2828. width:165px;
  2829. height:35px;
  2830. display:flex;
  2831. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  2832. font-weight:400;
  2833. font-style:normal;
  2834. font-size:12px;
  2835. color:#606266;
  2836. }
  2837. #u7903 .text {
  2838. position:absolute;
  2839. align-self:center;
  2840. padding:2px 2px 2px 0px;
  2841. box-sizing:border-box;
  2842. width:100%;
  2843. }
  2844. #u7903_text {
  2845. border-width:0px;
  2846. word-wrap:break-word;
  2847. text-transform:none;
  2848. visibility:hidden;
  2849. }
  2850. #u7904_img {
  2851. border-width:0px;
  2852. position:absolute;
  2853. left:0px;
  2854. top:0px;
  2855. width:162px;
  2856. height:35px;
  2857. }
  2858. #u7904 {
  2859. border-width:0px;
  2860. position:absolute;
  2861. left:894px;
  2862. top:115px;
  2863. width:162px;
  2864. height:35px;
  2865. display:flex;
  2866. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  2867. font-weight:400;
  2868. font-style:normal;
  2869. font-size:12px;
  2870. color:#606266;
  2871. }
  2872. #u7904 .text {
  2873. position:absolute;
  2874. align-self:center;
  2875. padding:2px 2px 2px 0px;
  2876. box-sizing:border-box;
  2877. width:100%;
  2878. }
  2879. #u7904_text {
  2880. border-width:0px;
  2881. word-wrap:break-word;
  2882. text-transform:none;
  2883. visibility:hidden;
  2884. }
  2885. #u7905_img {
  2886. border-width:0px;
  2887. position:absolute;
  2888. left:0px;
  2889. top:0px;
  2890. width:137px;
  2891. height:35px;
  2892. }
  2893. #u7905 {
  2894. border-width:0px;
  2895. position:absolute;
  2896. left:1056px;
  2897. top:115px;
  2898. width:137px;
  2899. height:35px;
  2900. display:flex;
  2901. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2902. font-weight:400;
  2903. font-style:normal;
  2904. font-size:12px;
  2905. color:#02A7F0;
  2906. }
  2907. #u7905 .text {
  2908. position:absolute;
  2909. align-self:center;
  2910. padding:2px 2px 2px 0px;
  2911. box-sizing:border-box;
  2912. width:100%;
  2913. }
  2914. #u7905_text {
  2915. border-width:0px;
  2916. word-wrap:break-word;
  2917. text-transform:none;
  2918. visibility:hidden;
  2919. }
  2920. #u7906_img {
  2921. border-width:0px;
  2922. position:absolute;
  2923. left:0px;
  2924. top:0px;
  2925. width:60px;
  2926. height:36px;
  2927. }
  2928. #u7906 {
  2929. border-width:0px;
  2930. position:absolute;
  2931. left:0px;
  2932. top:150px;
  2933. width:60px;
  2934. height:36px;
  2935. display:flex;
  2936. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  2937. font-weight:400;
  2938. font-style:normal;
  2939. font-size:12px;
  2940. color:#606266;
  2941. }
  2942. #u7906 .text {
  2943. position:absolute;
  2944. align-self:center;
  2945. padding:2px 2px 2px 0px;
  2946. box-sizing:border-box;
  2947. width:100%;
  2948. }
  2949. #u7906_text {
  2950. border-width:0px;
  2951. word-wrap:break-word;
  2952. text-transform:none;
  2953. }
  2954. #u7907_img {
  2955. border-width:0px;
  2956. position:absolute;
  2957. left:0px;
  2958. top:0px;
  2959. width:148px;
  2960. height:36px;
  2961. }
  2962. #u7907 {
  2963. border-width:0px;
  2964. position:absolute;
  2965. left:60px;
  2966. top:150px;
  2967. width:148px;
  2968. height:36px;
  2969. display:flex;
  2970. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  2971. font-weight:400;
  2972. font-style:normal;
  2973. font-size:12px;
  2974. color:#606266;
  2975. }
  2976. #u7907 .text {
  2977. position:absolute;
  2978. align-self:center;
  2979. padding:2px 2px 2px 0px;
  2980. box-sizing:border-box;
  2981. width:100%;
  2982. }
  2983. #u7907_text {
  2984. border-width:0px;
  2985. word-wrap:break-word;
  2986. text-transform:none;
  2987. visibility:hidden;
  2988. }
  2989. #u7908_img {
  2990. border-width:0px;
  2991. position:absolute;
  2992. left:0px;
  2993. top:0px;
  2994. width:159px;
  2995. height:36px;
  2996. }
  2997. #u7908 {
  2998. border-width:0px;
  2999. position:absolute;
  3000. left:208px;
  3001. top:150px;
  3002. width:159px;
  3003. height:36px;
  3004. display:flex;
  3005. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3006. font-weight:400;
  3007. font-style:normal;
  3008. font-size:12px;
  3009. color:#606266;
  3010. }
  3011. #u7908 .text {
  3012. position:absolute;
  3013. align-self:center;
  3014. padding:2px 2px 2px 0px;
  3015. box-sizing:border-box;
  3016. width:100%;
  3017. }
  3018. #u7908_text {
  3019. border-width:0px;
  3020. word-wrap:break-word;
  3021. text-transform:none;
  3022. visibility:hidden;
  3023. }
  3024. #u7909_img {
  3025. border-width:0px;
  3026. position:absolute;
  3027. left:0px;
  3028. top:0px;
  3029. width:181px;
  3030. height:36px;
  3031. }
  3032. #u7909 {
  3033. border-width:0px;
  3034. position:absolute;
  3035. left:367px;
  3036. top:150px;
  3037. width:181px;
  3038. height:36px;
  3039. display:flex;
  3040. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3041. font-weight:400;
  3042. font-style:normal;
  3043. font-size:12px;
  3044. color:#606266;
  3045. }
  3046. #u7909 .text {
  3047. position:absolute;
  3048. align-self:center;
  3049. padding:2px 2px 2px 0px;
  3050. box-sizing:border-box;
  3051. width:100%;
  3052. }
  3053. #u7909_text {
  3054. border-width:0px;
  3055. word-wrap:break-word;
  3056. text-transform:none;
  3057. visibility:hidden;
  3058. }
  3059. #u7910_img {
  3060. border-width:0px;
  3061. position:absolute;
  3062. left:0px;
  3063. top:0px;
  3064. width:181px;
  3065. height:36px;
  3066. }
  3067. #u7910 {
  3068. border-width:0px;
  3069. position:absolute;
  3070. left:548px;
  3071. top:150px;
  3072. width:181px;
  3073. height:36px;
  3074. display:flex;
  3075. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3076. font-weight:400;
  3077. font-style:normal;
  3078. font-size:12px;
  3079. color:#606266;
  3080. }
  3081. #u7910 .text {
  3082. position:absolute;
  3083. align-self:center;
  3084. padding:2px 2px 2px 0px;
  3085. box-sizing:border-box;
  3086. width:100%;
  3087. }
  3088. #u7910_text {
  3089. border-width:0px;
  3090. word-wrap:break-word;
  3091. text-transform:none;
  3092. visibility:hidden;
  3093. }
  3094. #u7911_img {
  3095. border-width:0px;
  3096. position:absolute;
  3097. left:0px;
  3098. top:0px;
  3099. width:165px;
  3100. height:36px;
  3101. }
  3102. #u7911 {
  3103. border-width:0px;
  3104. position:absolute;
  3105. left:729px;
  3106. top:150px;
  3107. width:165px;
  3108. height:36px;
  3109. display:flex;
  3110. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3111. font-weight:400;
  3112. font-style:normal;
  3113. font-size:12px;
  3114. color:#606266;
  3115. }
  3116. #u7911 .text {
  3117. position:absolute;
  3118. align-self:center;
  3119. padding:2px 2px 2px 0px;
  3120. box-sizing:border-box;
  3121. width:100%;
  3122. }
  3123. #u7911_text {
  3124. border-width:0px;
  3125. word-wrap:break-word;
  3126. text-transform:none;
  3127. visibility:hidden;
  3128. }
  3129. #u7912_img {
  3130. border-width:0px;
  3131. position:absolute;
  3132. left:0px;
  3133. top:0px;
  3134. width:162px;
  3135. height:36px;
  3136. }
  3137. #u7912 {
  3138. border-width:0px;
  3139. position:absolute;
  3140. left:894px;
  3141. top:150px;
  3142. width:162px;
  3143. height:36px;
  3144. display:flex;
  3145. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3146. font-weight:400;
  3147. font-style:normal;
  3148. font-size:12px;
  3149. color:#606266;
  3150. }
  3151. #u7912 .text {
  3152. position:absolute;
  3153. align-self:center;
  3154. padding:2px 2px 2px 0px;
  3155. box-sizing:border-box;
  3156. width:100%;
  3157. }
  3158. #u7912_text {
  3159. border-width:0px;
  3160. word-wrap:break-word;
  3161. text-transform:none;
  3162. visibility:hidden;
  3163. }
  3164. #u7913_img {
  3165. border-width:0px;
  3166. position:absolute;
  3167. left:0px;
  3168. top:0px;
  3169. width:137px;
  3170. height:36px;
  3171. }
  3172. #u7913 {
  3173. border-width:0px;
  3174. position:absolute;
  3175. left:1056px;
  3176. top:150px;
  3177. width:137px;
  3178. height:36px;
  3179. display:flex;
  3180. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3181. font-weight:400;
  3182. font-style:normal;
  3183. font-size:12px;
  3184. color:#02A7F0;
  3185. }
  3186. #u7913 .text {
  3187. position:absolute;
  3188. align-self:center;
  3189. padding:2px 2px 2px 0px;
  3190. box-sizing:border-box;
  3191. width:100%;
  3192. }
  3193. #u7913_text {
  3194. border-width:0px;
  3195. word-wrap:break-word;
  3196. text-transform:none;
  3197. visibility:hidden;
  3198. }
  3199. #u7914_img {
  3200. border-width:0px;
  3201. position:absolute;
  3202. left:0px;
  3203. top:0px;
  3204. width:60px;
  3205. height:35px;
  3206. }
  3207. #u7914 {
  3208. border-width:0px;
  3209. position:absolute;
  3210. left:0px;
  3211. top:186px;
  3212. width:60px;
  3213. height:35px;
  3214. display:flex;
  3215. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3216. font-weight:400;
  3217. font-style:normal;
  3218. font-size:12px;
  3219. color:#606266;
  3220. }
  3221. #u7914 .text {
  3222. position:absolute;
  3223. align-self:center;
  3224. padding:2px 2px 2px 0px;
  3225. box-sizing:border-box;
  3226. width:100%;
  3227. }
  3228. #u7914_text {
  3229. border-width:0px;
  3230. word-wrap:break-word;
  3231. text-transform:none;
  3232. visibility:hidden;
  3233. }
  3234. #u7915_img {
  3235. border-width:0px;
  3236. position:absolute;
  3237. left:0px;
  3238. top:0px;
  3239. width:148px;
  3240. height:35px;
  3241. }
  3242. #u7915 {
  3243. border-width:0px;
  3244. position:absolute;
  3245. left:60px;
  3246. top:186px;
  3247. width:148px;
  3248. height:35px;
  3249. display:flex;
  3250. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3251. font-weight:400;
  3252. font-style:normal;
  3253. font-size:12px;
  3254. color:#606266;
  3255. }
  3256. #u7915 .text {
  3257. position:absolute;
  3258. align-self:center;
  3259. padding:2px 2px 2px 0px;
  3260. box-sizing:border-box;
  3261. width:100%;
  3262. }
  3263. #u7915_text {
  3264. border-width:0px;
  3265. word-wrap:break-word;
  3266. text-transform:none;
  3267. visibility:hidden;
  3268. }
  3269. #u7916_img {
  3270. border-width:0px;
  3271. position:absolute;
  3272. left:0px;
  3273. top:0px;
  3274. width:159px;
  3275. height:35px;
  3276. }
  3277. #u7916 {
  3278. border-width:0px;
  3279. position:absolute;
  3280. left:208px;
  3281. top:186px;
  3282. width:159px;
  3283. height:35px;
  3284. display:flex;
  3285. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3286. font-weight:400;
  3287. font-style:normal;
  3288. font-size:12px;
  3289. color:#606266;
  3290. }
  3291. #u7916 .text {
  3292. position:absolute;
  3293. align-self:center;
  3294. padding:2px 2px 2px 0px;
  3295. box-sizing:border-box;
  3296. width:100%;
  3297. }
  3298. #u7916_text {
  3299. border-width:0px;
  3300. word-wrap:break-word;
  3301. text-transform:none;
  3302. visibility:hidden;
  3303. }
  3304. #u7917_img {
  3305. border-width:0px;
  3306. position:absolute;
  3307. left:0px;
  3308. top:0px;
  3309. width:181px;
  3310. height:35px;
  3311. }
  3312. #u7917 {
  3313. border-width:0px;
  3314. position:absolute;
  3315. left:367px;
  3316. top:186px;
  3317. width:181px;
  3318. height:35px;
  3319. display:flex;
  3320. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3321. font-weight:400;
  3322. font-style:normal;
  3323. font-size:12px;
  3324. color:#606266;
  3325. }
  3326. #u7917 .text {
  3327. position:absolute;
  3328. align-self:center;
  3329. padding:2px 2px 2px 0px;
  3330. box-sizing:border-box;
  3331. width:100%;
  3332. }
  3333. #u7917_text {
  3334. border-width:0px;
  3335. word-wrap:break-word;
  3336. text-transform:none;
  3337. visibility:hidden;
  3338. }
  3339. #u7918_img {
  3340. border-width:0px;
  3341. position:absolute;
  3342. left:0px;
  3343. top:0px;
  3344. width:181px;
  3345. height:35px;
  3346. }
  3347. #u7918 {
  3348. border-width:0px;
  3349. position:absolute;
  3350. left:548px;
  3351. top:186px;
  3352. width:181px;
  3353. height:35px;
  3354. display:flex;
  3355. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3356. font-weight:400;
  3357. font-style:normal;
  3358. font-size:12px;
  3359. color:#606266;
  3360. }
  3361. #u7918 .text {
  3362. position:absolute;
  3363. align-self:center;
  3364. padding:2px 2px 2px 0px;
  3365. box-sizing:border-box;
  3366. width:100%;
  3367. }
  3368. #u7918_text {
  3369. border-width:0px;
  3370. word-wrap:break-word;
  3371. text-transform:none;
  3372. visibility:hidden;
  3373. }
  3374. #u7919_img {
  3375. border-width:0px;
  3376. position:absolute;
  3377. left:0px;
  3378. top:0px;
  3379. width:165px;
  3380. height:35px;
  3381. }
  3382. #u7919 {
  3383. border-width:0px;
  3384. position:absolute;
  3385. left:729px;
  3386. top:186px;
  3387. width:165px;
  3388. height:35px;
  3389. display:flex;
  3390. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3391. font-weight:400;
  3392. font-style:normal;
  3393. font-size:12px;
  3394. color:#606266;
  3395. }
  3396. #u7919 .text {
  3397. position:absolute;
  3398. align-self:center;
  3399. padding:2px 2px 2px 0px;
  3400. box-sizing:border-box;
  3401. width:100%;
  3402. }
  3403. #u7919_text {
  3404. border-width:0px;
  3405. word-wrap:break-word;
  3406. text-transform:none;
  3407. visibility:hidden;
  3408. }
  3409. #u7920_img {
  3410. border-width:0px;
  3411. position:absolute;
  3412. left:0px;
  3413. top:0px;
  3414. width:162px;
  3415. height:35px;
  3416. }
  3417. #u7920 {
  3418. border-width:0px;
  3419. position:absolute;
  3420. left:894px;
  3421. top:186px;
  3422. width:162px;
  3423. height:35px;
  3424. display:flex;
  3425. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3426. font-weight:400;
  3427. font-style:normal;
  3428. font-size:12px;
  3429. color:#606266;
  3430. }
  3431. #u7920 .text {
  3432. position:absolute;
  3433. align-self:center;
  3434. padding:2px 2px 2px 0px;
  3435. box-sizing:border-box;
  3436. width:100%;
  3437. }
  3438. #u7920_text {
  3439. border-width:0px;
  3440. word-wrap:break-word;
  3441. text-transform:none;
  3442. visibility:hidden;
  3443. }
  3444. #u7921_img {
  3445. border-width:0px;
  3446. position:absolute;
  3447. left:0px;
  3448. top:0px;
  3449. width:137px;
  3450. height:35px;
  3451. }
  3452. #u7921 {
  3453. border-width:0px;
  3454. position:absolute;
  3455. left:1056px;
  3456. top:186px;
  3457. width:137px;
  3458. height:35px;
  3459. display:flex;
  3460. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3461. font-weight:400;
  3462. font-style:normal;
  3463. font-size:12px;
  3464. color:#606266;
  3465. }
  3466. #u7921 .text {
  3467. position:absolute;
  3468. align-self:center;
  3469. padding:2px 2px 2px 0px;
  3470. box-sizing:border-box;
  3471. width:100%;
  3472. }
  3473. #u7921_text {
  3474. border-width:0px;
  3475. word-wrap:break-word;
  3476. text-transform:none;
  3477. visibility:hidden;
  3478. }
  3479. #u7922_img {
  3480. border-width:0px;
  3481. position:absolute;
  3482. left:0px;
  3483. top:0px;
  3484. width:60px;
  3485. height:35px;
  3486. }
  3487. #u7922 {
  3488. border-width:0px;
  3489. position:absolute;
  3490. left:0px;
  3491. top:221px;
  3492. width:60px;
  3493. height:35px;
  3494. display:flex;
  3495. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3496. font-weight:400;
  3497. font-style:normal;
  3498. font-size:12px;
  3499. color:#606266;
  3500. }
  3501. #u7922 .text {
  3502. position:absolute;
  3503. align-self:center;
  3504. padding:2px 2px 2px 0px;
  3505. box-sizing:border-box;
  3506. width:100%;
  3507. }
  3508. #u7922_text {
  3509. border-width:0px;
  3510. word-wrap:break-word;
  3511. text-transform:none;
  3512. visibility:hidden;
  3513. }
  3514. #u7923_img {
  3515. border-width:0px;
  3516. position:absolute;
  3517. left:0px;
  3518. top:0px;
  3519. width:148px;
  3520. height:35px;
  3521. }
  3522. #u7923 {
  3523. border-width:0px;
  3524. position:absolute;
  3525. left:60px;
  3526. top:221px;
  3527. width:148px;
  3528. height:35px;
  3529. display:flex;
  3530. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3531. font-weight:400;
  3532. font-style:normal;
  3533. font-size:12px;
  3534. color:#606266;
  3535. }
  3536. #u7923 .text {
  3537. position:absolute;
  3538. align-self:center;
  3539. padding:2px 2px 2px 0px;
  3540. box-sizing:border-box;
  3541. width:100%;
  3542. }
  3543. #u7923_text {
  3544. border-width:0px;
  3545. word-wrap:break-word;
  3546. text-transform:none;
  3547. visibility:hidden;
  3548. }
  3549. #u7924_img {
  3550. border-width:0px;
  3551. position:absolute;
  3552. left:0px;
  3553. top:0px;
  3554. width:159px;
  3555. height:35px;
  3556. }
  3557. #u7924 {
  3558. border-width:0px;
  3559. position:absolute;
  3560. left:208px;
  3561. top:221px;
  3562. width:159px;
  3563. height:35px;
  3564. display:flex;
  3565. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3566. font-weight:400;
  3567. font-style:normal;
  3568. font-size:12px;
  3569. color:#606266;
  3570. }
  3571. #u7924 .text {
  3572. position:absolute;
  3573. align-self:center;
  3574. padding:2px 2px 2px 0px;
  3575. box-sizing:border-box;
  3576. width:100%;
  3577. }
  3578. #u7924_text {
  3579. border-width:0px;
  3580. word-wrap:break-word;
  3581. text-transform:none;
  3582. visibility:hidden;
  3583. }
  3584. #u7925_img {
  3585. border-width:0px;
  3586. position:absolute;
  3587. left:0px;
  3588. top:0px;
  3589. width:181px;
  3590. height:35px;
  3591. }
  3592. #u7925 {
  3593. border-width:0px;
  3594. position:absolute;
  3595. left:367px;
  3596. top:221px;
  3597. width:181px;
  3598. height:35px;
  3599. display:flex;
  3600. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3601. font-weight:400;
  3602. font-style:normal;
  3603. font-size:12px;
  3604. color:#606266;
  3605. }
  3606. #u7925 .text {
  3607. position:absolute;
  3608. align-self:center;
  3609. padding:2px 2px 2px 0px;
  3610. box-sizing:border-box;
  3611. width:100%;
  3612. }
  3613. #u7925_text {
  3614. border-width:0px;
  3615. word-wrap:break-word;
  3616. text-transform:none;
  3617. visibility:hidden;
  3618. }
  3619. #u7926_img {
  3620. border-width:0px;
  3621. position:absolute;
  3622. left:0px;
  3623. top:0px;
  3624. width:181px;
  3625. height:35px;
  3626. }
  3627. #u7926 {
  3628. border-width:0px;
  3629. position:absolute;
  3630. left:548px;
  3631. top:221px;
  3632. width:181px;
  3633. height:35px;
  3634. display:flex;
  3635. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3636. font-weight:400;
  3637. font-style:normal;
  3638. font-size:12px;
  3639. color:#606266;
  3640. }
  3641. #u7926 .text {
  3642. position:absolute;
  3643. align-self:center;
  3644. padding:2px 2px 2px 0px;
  3645. box-sizing:border-box;
  3646. width:100%;
  3647. }
  3648. #u7926_text {
  3649. border-width:0px;
  3650. word-wrap:break-word;
  3651. text-transform:none;
  3652. visibility:hidden;
  3653. }
  3654. #u7927_img {
  3655. border-width:0px;
  3656. position:absolute;
  3657. left:0px;
  3658. top:0px;
  3659. width:165px;
  3660. height:35px;
  3661. }
  3662. #u7927 {
  3663. border-width:0px;
  3664. position:absolute;
  3665. left:729px;
  3666. top:221px;
  3667. width:165px;
  3668. height:35px;
  3669. display:flex;
  3670. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3671. font-weight:400;
  3672. font-style:normal;
  3673. font-size:12px;
  3674. color:#606266;
  3675. }
  3676. #u7927 .text {
  3677. position:absolute;
  3678. align-self:center;
  3679. padding:2px 2px 2px 0px;
  3680. box-sizing:border-box;
  3681. width:100%;
  3682. }
  3683. #u7927_text {
  3684. border-width:0px;
  3685. word-wrap:break-word;
  3686. text-transform:none;
  3687. visibility:hidden;
  3688. }
  3689. #u7928_img {
  3690. border-width:0px;
  3691. position:absolute;
  3692. left:0px;
  3693. top:0px;
  3694. width:162px;
  3695. height:35px;
  3696. }
  3697. #u7928 {
  3698. border-width:0px;
  3699. position:absolute;
  3700. left:894px;
  3701. top:221px;
  3702. width:162px;
  3703. height:35px;
  3704. display:flex;
  3705. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3706. font-weight:400;
  3707. font-style:normal;
  3708. font-size:12px;
  3709. color:#606266;
  3710. }
  3711. #u7928 .text {
  3712. position:absolute;
  3713. align-self:center;
  3714. padding:2px 2px 2px 0px;
  3715. box-sizing:border-box;
  3716. width:100%;
  3717. }
  3718. #u7928_text {
  3719. border-width:0px;
  3720. word-wrap:break-word;
  3721. text-transform:none;
  3722. visibility:hidden;
  3723. }
  3724. #u7929_img {
  3725. border-width:0px;
  3726. position:absolute;
  3727. left:0px;
  3728. top:0px;
  3729. width:137px;
  3730. height:35px;
  3731. }
  3732. #u7929 {
  3733. border-width:0px;
  3734. position:absolute;
  3735. left:1056px;
  3736. top:221px;
  3737. width:137px;
  3738. height:35px;
  3739. display:flex;
  3740. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3741. font-weight:400;
  3742. font-style:normal;
  3743. font-size:12px;
  3744. color:#606266;
  3745. }
  3746. #u7929 .text {
  3747. position:absolute;
  3748. align-self:center;
  3749. padding:2px 2px 2px 0px;
  3750. box-sizing:border-box;
  3751. width:100%;
  3752. }
  3753. #u7929_text {
  3754. border-width:0px;
  3755. word-wrap:break-word;
  3756. text-transform:none;
  3757. visibility:hidden;
  3758. }
  3759. #u7930_img {
  3760. border-width:0px;
  3761. position:absolute;
  3762. left:0px;
  3763. top:0px;
  3764. width:60px;
  3765. height:35px;
  3766. }
  3767. #u7930 {
  3768. border-width:0px;
  3769. position:absolute;
  3770. left:0px;
  3771. top:256px;
  3772. width:60px;
  3773. height:35px;
  3774. display:flex;
  3775. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3776. font-weight:400;
  3777. font-style:normal;
  3778. font-size:12px;
  3779. color:#606266;
  3780. }
  3781. #u7930 .text {
  3782. position:absolute;
  3783. align-self:center;
  3784. padding:2px 2px 2px 0px;
  3785. box-sizing:border-box;
  3786. width:100%;
  3787. }
  3788. #u7930_text {
  3789. border-width:0px;
  3790. word-wrap:break-word;
  3791. text-transform:none;
  3792. visibility:hidden;
  3793. }
  3794. #u7931_img {
  3795. border-width:0px;
  3796. position:absolute;
  3797. left:0px;
  3798. top:0px;
  3799. width:148px;
  3800. height:35px;
  3801. }
  3802. #u7931 {
  3803. border-width:0px;
  3804. position:absolute;
  3805. left:60px;
  3806. top:256px;
  3807. width:148px;
  3808. height:35px;
  3809. display:flex;
  3810. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3811. font-weight:400;
  3812. font-style:normal;
  3813. font-size:12px;
  3814. color:#606266;
  3815. }
  3816. #u7931 .text {
  3817. position:absolute;
  3818. align-self:center;
  3819. padding:2px 2px 2px 0px;
  3820. box-sizing:border-box;
  3821. width:100%;
  3822. }
  3823. #u7931_text {
  3824. border-width:0px;
  3825. word-wrap:break-word;
  3826. text-transform:none;
  3827. visibility:hidden;
  3828. }
  3829. #u7932_img {
  3830. border-width:0px;
  3831. position:absolute;
  3832. left:0px;
  3833. top:0px;
  3834. width:159px;
  3835. height:35px;
  3836. }
  3837. #u7932 {
  3838. border-width:0px;
  3839. position:absolute;
  3840. left:208px;
  3841. top:256px;
  3842. width:159px;
  3843. height:35px;
  3844. display:flex;
  3845. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3846. font-weight:400;
  3847. font-style:normal;
  3848. font-size:12px;
  3849. color:#606266;
  3850. }
  3851. #u7932 .text {
  3852. position:absolute;
  3853. align-self:center;
  3854. padding:2px 2px 2px 0px;
  3855. box-sizing:border-box;
  3856. width:100%;
  3857. }
  3858. #u7932_text {
  3859. border-width:0px;
  3860. word-wrap:break-word;
  3861. text-transform:none;
  3862. visibility:hidden;
  3863. }
  3864. #u7933_img {
  3865. border-width:0px;
  3866. position:absolute;
  3867. left:0px;
  3868. top:0px;
  3869. width:181px;
  3870. height:35px;
  3871. }
  3872. #u7933 {
  3873. border-width:0px;
  3874. position:absolute;
  3875. left:367px;
  3876. top:256px;
  3877. width:181px;
  3878. height:35px;
  3879. display:flex;
  3880. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3881. font-weight:400;
  3882. font-style:normal;
  3883. font-size:12px;
  3884. color:#606266;
  3885. }
  3886. #u7933 .text {
  3887. position:absolute;
  3888. align-self:center;
  3889. padding:2px 2px 2px 0px;
  3890. box-sizing:border-box;
  3891. width:100%;
  3892. }
  3893. #u7933_text {
  3894. border-width:0px;
  3895. word-wrap:break-word;
  3896. text-transform:none;
  3897. visibility:hidden;
  3898. }
  3899. #u7934_img {
  3900. border-width:0px;
  3901. position:absolute;
  3902. left:0px;
  3903. top:0px;
  3904. width:181px;
  3905. height:35px;
  3906. }
  3907. #u7934 {
  3908. border-width:0px;
  3909. position:absolute;
  3910. left:548px;
  3911. top:256px;
  3912. width:181px;
  3913. height:35px;
  3914. display:flex;
  3915. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3916. font-weight:400;
  3917. font-style:normal;
  3918. font-size:12px;
  3919. color:#606266;
  3920. }
  3921. #u7934 .text {
  3922. position:absolute;
  3923. align-self:center;
  3924. padding:2px 2px 2px 0px;
  3925. box-sizing:border-box;
  3926. width:100%;
  3927. }
  3928. #u7934_text {
  3929. border-width:0px;
  3930. word-wrap:break-word;
  3931. text-transform:none;
  3932. visibility:hidden;
  3933. }
  3934. #u7935_img {
  3935. border-width:0px;
  3936. position:absolute;
  3937. left:0px;
  3938. top:0px;
  3939. width:165px;
  3940. height:35px;
  3941. }
  3942. #u7935 {
  3943. border-width:0px;
  3944. position:absolute;
  3945. left:729px;
  3946. top:256px;
  3947. width:165px;
  3948. height:35px;
  3949. display:flex;
  3950. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3951. font-weight:400;
  3952. font-style:normal;
  3953. font-size:12px;
  3954. color:#606266;
  3955. }
  3956. #u7935 .text {
  3957. position:absolute;
  3958. align-self:center;
  3959. padding:2px 2px 2px 0px;
  3960. box-sizing:border-box;
  3961. width:100%;
  3962. }
  3963. #u7935_text {
  3964. border-width:0px;
  3965. word-wrap:break-word;
  3966. text-transform:none;
  3967. visibility:hidden;
  3968. }
  3969. #u7936_img {
  3970. border-width:0px;
  3971. position:absolute;
  3972. left:0px;
  3973. top:0px;
  3974. width:162px;
  3975. height:35px;
  3976. }
  3977. #u7936 {
  3978. border-width:0px;
  3979. position:absolute;
  3980. left:894px;
  3981. top:256px;
  3982. width:162px;
  3983. height:35px;
  3984. display:flex;
  3985. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3986. font-weight:400;
  3987. font-style:normal;
  3988. font-size:12px;
  3989. color:#606266;
  3990. }
  3991. #u7936 .text {
  3992. position:absolute;
  3993. align-self:center;
  3994. padding:2px 2px 2px 0px;
  3995. box-sizing:border-box;
  3996. width:100%;
  3997. }
  3998. #u7936_text {
  3999. border-width:0px;
  4000. word-wrap:break-word;
  4001. text-transform:none;
  4002. visibility:hidden;
  4003. }
  4004. #u7937_img {
  4005. border-width:0px;
  4006. position:absolute;
  4007. left:0px;
  4008. top:0px;
  4009. width:137px;
  4010. height:35px;
  4011. }
  4012. #u7937 {
  4013. border-width:0px;
  4014. position:absolute;
  4015. left:1056px;
  4016. top:256px;
  4017. width:137px;
  4018. height:35px;
  4019. display:flex;
  4020. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4021. font-weight:400;
  4022. font-style:normal;
  4023. font-size:12px;
  4024. color:#606266;
  4025. }
  4026. #u7937 .text {
  4027. position:absolute;
  4028. align-self:center;
  4029. padding:2px 2px 2px 0px;
  4030. box-sizing:border-box;
  4031. width:100%;
  4032. }
  4033. #u7937_text {
  4034. border-width:0px;
  4035. word-wrap:break-word;
  4036. text-transform:none;
  4037. visibility:hidden;
  4038. }
  4039. #u7938_img {
  4040. border-width:0px;
  4041. position:absolute;
  4042. left:0px;
  4043. top:0px;
  4044. width:60px;
  4045. height:35px;
  4046. }
  4047. #u7938 {
  4048. border-width:0px;
  4049. position:absolute;
  4050. left:0px;
  4051. top:291px;
  4052. width:60px;
  4053. height:35px;
  4054. display:flex;
  4055. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4056. font-weight:400;
  4057. font-style:normal;
  4058. font-size:12px;
  4059. color:#606266;
  4060. }
  4061. #u7938 .text {
  4062. position:absolute;
  4063. align-self:center;
  4064. padding:2px 2px 2px 0px;
  4065. box-sizing:border-box;
  4066. width:100%;
  4067. }
  4068. #u7938_text {
  4069. border-width:0px;
  4070. word-wrap:break-word;
  4071. text-transform:none;
  4072. visibility:hidden;
  4073. }
  4074. #u7939_img {
  4075. border-width:0px;
  4076. position:absolute;
  4077. left:0px;
  4078. top:0px;
  4079. width:148px;
  4080. height:35px;
  4081. }
  4082. #u7939 {
  4083. border-width:0px;
  4084. position:absolute;
  4085. left:60px;
  4086. top:291px;
  4087. width:148px;
  4088. height:35px;
  4089. display:flex;
  4090. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4091. font-weight:400;
  4092. font-style:normal;
  4093. font-size:12px;
  4094. color:#606266;
  4095. }
  4096. #u7939 .text {
  4097. position:absolute;
  4098. align-self:center;
  4099. padding:2px 2px 2px 0px;
  4100. box-sizing:border-box;
  4101. width:100%;
  4102. }
  4103. #u7939_text {
  4104. border-width:0px;
  4105. word-wrap:break-word;
  4106. text-transform:none;
  4107. visibility:hidden;
  4108. }
  4109. #u7940_img {
  4110. border-width:0px;
  4111. position:absolute;
  4112. left:0px;
  4113. top:0px;
  4114. width:159px;
  4115. height:35px;
  4116. }
  4117. #u7940 {
  4118. border-width:0px;
  4119. position:absolute;
  4120. left:208px;
  4121. top:291px;
  4122. width:159px;
  4123. height:35px;
  4124. display:flex;
  4125. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4126. font-weight:400;
  4127. font-style:normal;
  4128. font-size:12px;
  4129. color:#606266;
  4130. }
  4131. #u7940 .text {
  4132. position:absolute;
  4133. align-self:center;
  4134. padding:2px 2px 2px 0px;
  4135. box-sizing:border-box;
  4136. width:100%;
  4137. }
  4138. #u7940_text {
  4139. border-width:0px;
  4140. word-wrap:break-word;
  4141. text-transform:none;
  4142. visibility:hidden;
  4143. }
  4144. #u7941_img {
  4145. border-width:0px;
  4146. position:absolute;
  4147. left:0px;
  4148. top:0px;
  4149. width:181px;
  4150. height:35px;
  4151. }
  4152. #u7941 {
  4153. border-width:0px;
  4154. position:absolute;
  4155. left:367px;
  4156. top:291px;
  4157. width:181px;
  4158. height:35px;
  4159. display:flex;
  4160. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4161. font-weight:400;
  4162. font-style:normal;
  4163. font-size:12px;
  4164. color:#606266;
  4165. }
  4166. #u7941 .text {
  4167. position:absolute;
  4168. align-self:center;
  4169. padding:2px 2px 2px 0px;
  4170. box-sizing:border-box;
  4171. width:100%;
  4172. }
  4173. #u7941_text {
  4174. border-width:0px;
  4175. word-wrap:break-word;
  4176. text-transform:none;
  4177. visibility:hidden;
  4178. }
  4179. #u7942_img {
  4180. border-width:0px;
  4181. position:absolute;
  4182. left:0px;
  4183. top:0px;
  4184. width:181px;
  4185. height:35px;
  4186. }
  4187. #u7942 {
  4188. border-width:0px;
  4189. position:absolute;
  4190. left:548px;
  4191. top:291px;
  4192. width:181px;
  4193. height:35px;
  4194. display:flex;
  4195. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4196. font-weight:400;
  4197. font-style:normal;
  4198. font-size:12px;
  4199. color:#606266;
  4200. }
  4201. #u7942 .text {
  4202. position:absolute;
  4203. align-self:center;
  4204. padding:2px 2px 2px 0px;
  4205. box-sizing:border-box;
  4206. width:100%;
  4207. }
  4208. #u7942_text {
  4209. border-width:0px;
  4210. word-wrap:break-word;
  4211. text-transform:none;
  4212. visibility:hidden;
  4213. }
  4214. #u7943_img {
  4215. border-width:0px;
  4216. position:absolute;
  4217. left:0px;
  4218. top:0px;
  4219. width:165px;
  4220. height:35px;
  4221. }
  4222. #u7943 {
  4223. border-width:0px;
  4224. position:absolute;
  4225. left:729px;
  4226. top:291px;
  4227. width:165px;
  4228. height:35px;
  4229. display:flex;
  4230. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4231. font-weight:400;
  4232. font-style:normal;
  4233. font-size:12px;
  4234. color:#606266;
  4235. }
  4236. #u7943 .text {
  4237. position:absolute;
  4238. align-self:center;
  4239. padding:2px 2px 2px 0px;
  4240. box-sizing:border-box;
  4241. width:100%;
  4242. }
  4243. #u7943_text {
  4244. border-width:0px;
  4245. word-wrap:break-word;
  4246. text-transform:none;
  4247. visibility:hidden;
  4248. }
  4249. #u7944_img {
  4250. border-width:0px;
  4251. position:absolute;
  4252. left:0px;
  4253. top:0px;
  4254. width:162px;
  4255. height:35px;
  4256. }
  4257. #u7944 {
  4258. border-width:0px;
  4259. position:absolute;
  4260. left:894px;
  4261. top:291px;
  4262. width:162px;
  4263. height:35px;
  4264. display:flex;
  4265. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4266. font-weight:400;
  4267. font-style:normal;
  4268. font-size:12px;
  4269. color:#606266;
  4270. }
  4271. #u7944 .text {
  4272. position:absolute;
  4273. align-self:center;
  4274. padding:2px 2px 2px 0px;
  4275. box-sizing:border-box;
  4276. width:100%;
  4277. }
  4278. #u7944_text {
  4279. border-width:0px;
  4280. word-wrap:break-word;
  4281. text-transform:none;
  4282. visibility:hidden;
  4283. }
  4284. #u7945_img {
  4285. border-width:0px;
  4286. position:absolute;
  4287. left:0px;
  4288. top:0px;
  4289. width:137px;
  4290. height:35px;
  4291. }
  4292. #u7945 {
  4293. border-width:0px;
  4294. position:absolute;
  4295. left:1056px;
  4296. top:291px;
  4297. width:137px;
  4298. height:35px;
  4299. display:flex;
  4300. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4301. font-weight:400;
  4302. font-style:normal;
  4303. font-size:12px;
  4304. color:#606266;
  4305. }
  4306. #u7945 .text {
  4307. position:absolute;
  4308. align-self:center;
  4309. padding:2px 2px 2px 0px;
  4310. box-sizing:border-box;
  4311. width:100%;
  4312. }
  4313. #u7945_text {
  4314. border-width:0px;
  4315. word-wrap:break-word;
  4316. text-transform:none;
  4317. visibility:hidden;
  4318. }
  4319. #u7946_img {
  4320. border-width:0px;
  4321. position:absolute;
  4322. left:0px;
  4323. top:0px;
  4324. width:60px;
  4325. height:35px;
  4326. }
  4327. #u7946 {
  4328. border-width:0px;
  4329. position:absolute;
  4330. left:0px;
  4331. top:326px;
  4332. width:60px;
  4333. height:35px;
  4334. display:flex;
  4335. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4336. font-weight:400;
  4337. font-style:normal;
  4338. font-size:12px;
  4339. color:#606266;
  4340. }
  4341. #u7946 .text {
  4342. position:absolute;
  4343. align-self:center;
  4344. padding:2px 2px 2px 0px;
  4345. box-sizing:border-box;
  4346. width:100%;
  4347. }
  4348. #u7946_text {
  4349. border-width:0px;
  4350. word-wrap:break-word;
  4351. text-transform:none;
  4352. visibility:hidden;
  4353. }
  4354. #u7947_img {
  4355. border-width:0px;
  4356. position:absolute;
  4357. left:0px;
  4358. top:0px;
  4359. width:148px;
  4360. height:35px;
  4361. }
  4362. #u7947 {
  4363. border-width:0px;
  4364. position:absolute;
  4365. left:60px;
  4366. top:326px;
  4367. width:148px;
  4368. height:35px;
  4369. display:flex;
  4370. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4371. font-weight:400;
  4372. font-style:normal;
  4373. font-size:12px;
  4374. color:#606266;
  4375. }
  4376. #u7947 .text {
  4377. position:absolute;
  4378. align-self:center;
  4379. padding:2px 2px 2px 0px;
  4380. box-sizing:border-box;
  4381. width:100%;
  4382. }
  4383. #u7947_text {
  4384. border-width:0px;
  4385. word-wrap:break-word;
  4386. text-transform:none;
  4387. visibility:hidden;
  4388. }
  4389. #u7948_img {
  4390. border-width:0px;
  4391. position:absolute;
  4392. left:0px;
  4393. top:0px;
  4394. width:159px;
  4395. height:35px;
  4396. }
  4397. #u7948 {
  4398. border-width:0px;
  4399. position:absolute;
  4400. left:208px;
  4401. top:326px;
  4402. width:159px;
  4403. height:35px;
  4404. display:flex;
  4405. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4406. font-weight:400;
  4407. font-style:normal;
  4408. font-size:12px;
  4409. color:#606266;
  4410. }
  4411. #u7948 .text {
  4412. position:absolute;
  4413. align-self:center;
  4414. padding:2px 2px 2px 0px;
  4415. box-sizing:border-box;
  4416. width:100%;
  4417. }
  4418. #u7948_text {
  4419. border-width:0px;
  4420. word-wrap:break-word;
  4421. text-transform:none;
  4422. visibility:hidden;
  4423. }
  4424. #u7949_img {
  4425. border-width:0px;
  4426. position:absolute;
  4427. left:0px;
  4428. top:0px;
  4429. width:181px;
  4430. height:35px;
  4431. }
  4432. #u7949 {
  4433. border-width:0px;
  4434. position:absolute;
  4435. left:367px;
  4436. top:326px;
  4437. width:181px;
  4438. height:35px;
  4439. display:flex;
  4440. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4441. font-weight:400;
  4442. font-style:normal;
  4443. font-size:12px;
  4444. color:#606266;
  4445. }
  4446. #u7949 .text {
  4447. position:absolute;
  4448. align-self:center;
  4449. padding:2px 2px 2px 0px;
  4450. box-sizing:border-box;
  4451. width:100%;
  4452. }
  4453. #u7949_text {
  4454. border-width:0px;
  4455. word-wrap:break-word;
  4456. text-transform:none;
  4457. visibility:hidden;
  4458. }
  4459. #u7950_img {
  4460. border-width:0px;
  4461. position:absolute;
  4462. left:0px;
  4463. top:0px;
  4464. width:181px;
  4465. height:35px;
  4466. }
  4467. #u7950 {
  4468. border-width:0px;
  4469. position:absolute;
  4470. left:548px;
  4471. top:326px;
  4472. width:181px;
  4473. height:35px;
  4474. display:flex;
  4475. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4476. font-weight:400;
  4477. font-style:normal;
  4478. font-size:12px;
  4479. color:#606266;
  4480. }
  4481. #u7950 .text {
  4482. position:absolute;
  4483. align-self:center;
  4484. padding:2px 2px 2px 0px;
  4485. box-sizing:border-box;
  4486. width:100%;
  4487. }
  4488. #u7950_text {
  4489. border-width:0px;
  4490. word-wrap:break-word;
  4491. text-transform:none;
  4492. visibility:hidden;
  4493. }
  4494. #u7951_img {
  4495. border-width:0px;
  4496. position:absolute;
  4497. left:0px;
  4498. top:0px;
  4499. width:165px;
  4500. height:35px;
  4501. }
  4502. #u7951 {
  4503. border-width:0px;
  4504. position:absolute;
  4505. left:729px;
  4506. top:326px;
  4507. width:165px;
  4508. height:35px;
  4509. display:flex;
  4510. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4511. font-weight:400;
  4512. font-style:normal;
  4513. font-size:12px;
  4514. color:#606266;
  4515. }
  4516. #u7951 .text {
  4517. position:absolute;
  4518. align-self:center;
  4519. padding:2px 2px 2px 0px;
  4520. box-sizing:border-box;
  4521. width:100%;
  4522. }
  4523. #u7951_text {
  4524. border-width:0px;
  4525. word-wrap:break-word;
  4526. text-transform:none;
  4527. visibility:hidden;
  4528. }
  4529. #u7952_img {
  4530. border-width:0px;
  4531. position:absolute;
  4532. left:0px;
  4533. top:0px;
  4534. width:162px;
  4535. height:35px;
  4536. }
  4537. #u7952 {
  4538. border-width:0px;
  4539. position:absolute;
  4540. left:894px;
  4541. top:326px;
  4542. width:162px;
  4543. height:35px;
  4544. display:flex;
  4545. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4546. font-weight:400;
  4547. font-style:normal;
  4548. font-size:12px;
  4549. color:#606266;
  4550. }
  4551. #u7952 .text {
  4552. position:absolute;
  4553. align-self:center;
  4554. padding:2px 2px 2px 0px;
  4555. box-sizing:border-box;
  4556. width:100%;
  4557. }
  4558. #u7952_text {
  4559. border-width:0px;
  4560. word-wrap:break-word;
  4561. text-transform:none;
  4562. visibility:hidden;
  4563. }
  4564. #u7953_img {
  4565. border-width:0px;
  4566. position:absolute;
  4567. left:0px;
  4568. top:0px;
  4569. width:137px;
  4570. height:35px;
  4571. }
  4572. #u7953 {
  4573. border-width:0px;
  4574. position:absolute;
  4575. left:1056px;
  4576. top:326px;
  4577. width:137px;
  4578. height:35px;
  4579. display:flex;
  4580. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4581. font-weight:400;
  4582. font-style:normal;
  4583. font-size:12px;
  4584. color:#606266;
  4585. }
  4586. #u7953 .text {
  4587. position:absolute;
  4588. align-self:center;
  4589. padding:2px 2px 2px 0px;
  4590. box-sizing:border-box;
  4591. width:100%;
  4592. }
  4593. #u7953_text {
  4594. border-width:0px;
  4595. word-wrap:break-word;
  4596. text-transform:none;
  4597. visibility:hidden;
  4598. }
  4599. #u7954_img {
  4600. border-width:0px;
  4601. position:absolute;
  4602. left:0px;
  4603. top:0px;
  4604. width:60px;
  4605. height:35px;
  4606. }
  4607. #u7954 {
  4608. border-width:0px;
  4609. position:absolute;
  4610. left:0px;
  4611. top:361px;
  4612. width:60px;
  4613. height:35px;
  4614. display:flex;
  4615. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4616. font-weight:400;
  4617. font-style:normal;
  4618. font-size:12px;
  4619. color:#606266;
  4620. }
  4621. #u7954 .text {
  4622. position:absolute;
  4623. align-self:center;
  4624. padding:2px 2px 2px 0px;
  4625. box-sizing:border-box;
  4626. width:100%;
  4627. }
  4628. #u7954_text {
  4629. border-width:0px;
  4630. word-wrap:break-word;
  4631. text-transform:none;
  4632. visibility:hidden;
  4633. }
  4634. #u7955_img {
  4635. border-width:0px;
  4636. position:absolute;
  4637. left:0px;
  4638. top:0px;
  4639. width:148px;
  4640. height:35px;
  4641. }
  4642. #u7955 {
  4643. border-width:0px;
  4644. position:absolute;
  4645. left:60px;
  4646. top:361px;
  4647. width:148px;
  4648. height:35px;
  4649. display:flex;
  4650. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4651. font-weight:400;
  4652. font-style:normal;
  4653. font-size:12px;
  4654. color:#606266;
  4655. }
  4656. #u7955 .text {
  4657. position:absolute;
  4658. align-self:center;
  4659. padding:2px 2px 2px 0px;
  4660. box-sizing:border-box;
  4661. width:100%;
  4662. }
  4663. #u7955_text {
  4664. border-width:0px;
  4665. word-wrap:break-word;
  4666. text-transform:none;
  4667. visibility:hidden;
  4668. }
  4669. #u7956_img {
  4670. border-width:0px;
  4671. position:absolute;
  4672. left:0px;
  4673. top:0px;
  4674. width:159px;
  4675. height:35px;
  4676. }
  4677. #u7956 {
  4678. border-width:0px;
  4679. position:absolute;
  4680. left:208px;
  4681. top:361px;
  4682. width:159px;
  4683. height:35px;
  4684. display:flex;
  4685. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4686. font-weight:400;
  4687. font-style:normal;
  4688. font-size:12px;
  4689. color:#606266;
  4690. }
  4691. #u7956 .text {
  4692. position:absolute;
  4693. align-self:center;
  4694. padding:2px 2px 2px 0px;
  4695. box-sizing:border-box;
  4696. width:100%;
  4697. }
  4698. #u7956_text {
  4699. border-width:0px;
  4700. word-wrap:break-word;
  4701. text-transform:none;
  4702. visibility:hidden;
  4703. }
  4704. #u7957_img {
  4705. border-width:0px;
  4706. position:absolute;
  4707. left:0px;
  4708. top:0px;
  4709. width:181px;
  4710. height:35px;
  4711. }
  4712. #u7957 {
  4713. border-width:0px;
  4714. position:absolute;
  4715. left:367px;
  4716. top:361px;
  4717. width:181px;
  4718. height:35px;
  4719. display:flex;
  4720. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4721. font-weight:400;
  4722. font-style:normal;
  4723. font-size:12px;
  4724. color:#606266;
  4725. }
  4726. #u7957 .text {
  4727. position:absolute;
  4728. align-self:center;
  4729. padding:2px 2px 2px 0px;
  4730. box-sizing:border-box;
  4731. width:100%;
  4732. }
  4733. #u7957_text {
  4734. border-width:0px;
  4735. word-wrap:break-word;
  4736. text-transform:none;
  4737. visibility:hidden;
  4738. }
  4739. #u7958_img {
  4740. border-width:0px;
  4741. position:absolute;
  4742. left:0px;
  4743. top:0px;
  4744. width:181px;
  4745. height:35px;
  4746. }
  4747. #u7958 {
  4748. border-width:0px;
  4749. position:absolute;
  4750. left:548px;
  4751. top:361px;
  4752. width:181px;
  4753. height:35px;
  4754. display:flex;
  4755. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4756. font-weight:400;
  4757. font-style:normal;
  4758. font-size:12px;
  4759. color:#606266;
  4760. }
  4761. #u7958 .text {
  4762. position:absolute;
  4763. align-self:center;
  4764. padding:2px 2px 2px 0px;
  4765. box-sizing:border-box;
  4766. width:100%;
  4767. }
  4768. #u7958_text {
  4769. border-width:0px;
  4770. word-wrap:break-word;
  4771. text-transform:none;
  4772. visibility:hidden;
  4773. }
  4774. #u7959_img {
  4775. border-width:0px;
  4776. position:absolute;
  4777. left:0px;
  4778. top:0px;
  4779. width:165px;
  4780. height:35px;
  4781. }
  4782. #u7959 {
  4783. border-width:0px;
  4784. position:absolute;
  4785. left:729px;
  4786. top:361px;
  4787. width:165px;
  4788. height:35px;
  4789. display:flex;
  4790. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4791. font-weight:400;
  4792. font-style:normal;
  4793. font-size:12px;
  4794. color:#606266;
  4795. }
  4796. #u7959 .text {
  4797. position:absolute;
  4798. align-self:center;
  4799. padding:2px 2px 2px 0px;
  4800. box-sizing:border-box;
  4801. width:100%;
  4802. }
  4803. #u7959_text {
  4804. border-width:0px;
  4805. word-wrap:break-word;
  4806. text-transform:none;
  4807. visibility:hidden;
  4808. }
  4809. #u7960_img {
  4810. border-width:0px;
  4811. position:absolute;
  4812. left:0px;
  4813. top:0px;
  4814. width:162px;
  4815. height:35px;
  4816. }
  4817. #u7960 {
  4818. border-width:0px;
  4819. position:absolute;
  4820. left:894px;
  4821. top:361px;
  4822. width:162px;
  4823. height:35px;
  4824. display:flex;
  4825. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4826. font-weight:400;
  4827. font-style:normal;
  4828. font-size:12px;
  4829. color:#606266;
  4830. }
  4831. #u7960 .text {
  4832. position:absolute;
  4833. align-self:center;
  4834. padding:2px 2px 2px 0px;
  4835. box-sizing:border-box;
  4836. width:100%;
  4837. }
  4838. #u7960_text {
  4839. border-width:0px;
  4840. word-wrap:break-word;
  4841. text-transform:none;
  4842. visibility:hidden;
  4843. }
  4844. #u7961_img {
  4845. border-width:0px;
  4846. position:absolute;
  4847. left:0px;
  4848. top:0px;
  4849. width:137px;
  4850. height:35px;
  4851. }
  4852. #u7961 {
  4853. border-width:0px;
  4854. position:absolute;
  4855. left:1056px;
  4856. top:361px;
  4857. width:137px;
  4858. height:35px;
  4859. display:flex;
  4860. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4861. font-weight:400;
  4862. font-style:normal;
  4863. font-size:12px;
  4864. color:#606266;
  4865. }
  4866. #u7961 .text {
  4867. position:absolute;
  4868. align-self:center;
  4869. padding:2px 2px 2px 0px;
  4870. box-sizing:border-box;
  4871. width:100%;
  4872. }
  4873. #u7961_text {
  4874. border-width:0px;
  4875. word-wrap:break-word;
  4876. text-transform:none;
  4877. visibility:hidden;
  4878. }
  4879. #u7962_img {
  4880. border-width:0px;
  4881. position:absolute;
  4882. left:0px;
  4883. top:0px;
  4884. width:60px;
  4885. height:32px;
  4886. }
  4887. #u7962 {
  4888. border-width:0px;
  4889. position:absolute;
  4890. left:0px;
  4891. top:396px;
  4892. width:60px;
  4893. height:32px;
  4894. display:flex;
  4895. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4896. font-weight:400;
  4897. font-style:normal;
  4898. font-size:12px;
  4899. color:#606266;
  4900. }
  4901. #u7962 .text {
  4902. position:absolute;
  4903. align-self:center;
  4904. padding:2px 2px 2px 0px;
  4905. box-sizing:border-box;
  4906. width:100%;
  4907. }
  4908. #u7962_text {
  4909. border-width:0px;
  4910. word-wrap:break-word;
  4911. text-transform:none;
  4912. visibility:hidden;
  4913. }
  4914. #u7963_img {
  4915. border-width:0px;
  4916. position:absolute;
  4917. left:0px;
  4918. top:0px;
  4919. width:148px;
  4920. height:32px;
  4921. }
  4922. #u7963 {
  4923. border-width:0px;
  4924. position:absolute;
  4925. left:60px;
  4926. top:396px;
  4927. width:148px;
  4928. height:32px;
  4929. display:flex;
  4930. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4931. font-weight:400;
  4932. font-style:normal;
  4933. font-size:12px;
  4934. color:#606266;
  4935. }
  4936. #u7963 .text {
  4937. position:absolute;
  4938. align-self:center;
  4939. padding:2px 2px 2px 0px;
  4940. box-sizing:border-box;
  4941. width:100%;
  4942. }
  4943. #u7963_text {
  4944. border-width:0px;
  4945. word-wrap:break-word;
  4946. text-transform:none;
  4947. visibility:hidden;
  4948. }
  4949. #u7964_img {
  4950. border-width:0px;
  4951. position:absolute;
  4952. left:0px;
  4953. top:0px;
  4954. width:159px;
  4955. height:32px;
  4956. }
  4957. #u7964 {
  4958. border-width:0px;
  4959. position:absolute;
  4960. left:208px;
  4961. top:396px;
  4962. width:159px;
  4963. height:32px;
  4964. display:flex;
  4965. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4966. font-weight:400;
  4967. font-style:normal;
  4968. font-size:12px;
  4969. color:#606266;
  4970. }
  4971. #u7964 .text {
  4972. position:absolute;
  4973. align-self:center;
  4974. padding:2px 2px 2px 0px;
  4975. box-sizing:border-box;
  4976. width:100%;
  4977. }
  4978. #u7964_text {
  4979. border-width:0px;
  4980. word-wrap:break-word;
  4981. text-transform:none;
  4982. visibility:hidden;
  4983. }
  4984. #u7965_img {
  4985. border-width:0px;
  4986. position:absolute;
  4987. left:0px;
  4988. top:0px;
  4989. width:181px;
  4990. height:32px;
  4991. }
  4992. #u7965 {
  4993. border-width:0px;
  4994. position:absolute;
  4995. left:367px;
  4996. top:396px;
  4997. width:181px;
  4998. height:32px;
  4999. display:flex;
  5000. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  5001. font-weight:400;
  5002. font-style:normal;
  5003. font-size:12px;
  5004. color:#606266;
  5005. }
  5006. #u7965 .text {
  5007. position:absolute;
  5008. align-self:center;
  5009. padding:2px 2px 2px 0px;
  5010. box-sizing:border-box;
  5011. width:100%;
  5012. }
  5013. #u7965_text {
  5014. border-width:0px;
  5015. word-wrap:break-word;
  5016. text-transform:none;
  5017. visibility:hidden;
  5018. }
  5019. #u7966_img {
  5020. border-width:0px;
  5021. position:absolute;
  5022. left:0px;
  5023. top:0px;
  5024. width:181px;
  5025. height:32px;
  5026. }
  5027. #u7966 {
  5028. border-width:0px;
  5029. position:absolute;
  5030. left:548px;
  5031. top:396px;
  5032. width:181px;
  5033. height:32px;
  5034. display:flex;
  5035. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  5036. font-weight:400;
  5037. font-style:normal;
  5038. font-size:12px;
  5039. color:#606266;
  5040. }
  5041. #u7966 .text {
  5042. position:absolute;
  5043. align-self:center;
  5044. padding:2px 2px 2px 0px;
  5045. box-sizing:border-box;
  5046. width:100%;
  5047. }
  5048. #u7966_text {
  5049. border-width:0px;
  5050. word-wrap:break-word;
  5051. text-transform:none;
  5052. visibility:hidden;
  5053. }
  5054. #u7967_img {
  5055. border-width:0px;
  5056. position:absolute;
  5057. left:0px;
  5058. top:0px;
  5059. width:165px;
  5060. height:32px;
  5061. }
  5062. #u7967 {
  5063. border-width:0px;
  5064. position:absolute;
  5065. left:729px;
  5066. top:396px;
  5067. width:165px;
  5068. height:32px;
  5069. display:flex;
  5070. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  5071. font-weight:400;
  5072. font-style:normal;
  5073. font-size:12px;
  5074. color:#606266;
  5075. }
  5076. #u7967 .text {
  5077. position:absolute;
  5078. align-self:center;
  5079. padding:2px 2px 2px 0px;
  5080. box-sizing:border-box;
  5081. width:100%;
  5082. }
  5083. #u7967_text {
  5084. border-width:0px;
  5085. word-wrap:break-word;
  5086. text-transform:none;
  5087. visibility:hidden;
  5088. }
  5089. #u7968_img {
  5090. border-width:0px;
  5091. position:absolute;
  5092. left:0px;
  5093. top:0px;
  5094. width:162px;
  5095. height:32px;
  5096. }
  5097. #u7968 {
  5098. border-width:0px;
  5099. position:absolute;
  5100. left:894px;
  5101. top:396px;
  5102. width:162px;
  5103. height:32px;
  5104. display:flex;
  5105. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  5106. font-weight:400;
  5107. font-style:normal;
  5108. font-size:12px;
  5109. color:#606266;
  5110. }
  5111. #u7968 .text {
  5112. position:absolute;
  5113. align-self:center;
  5114. padding:2px 2px 2px 0px;
  5115. box-sizing:border-box;
  5116. width:100%;
  5117. }
  5118. #u7968_text {
  5119. border-width:0px;
  5120. word-wrap:break-word;
  5121. text-transform:none;
  5122. visibility:hidden;
  5123. }
  5124. #u7969_img {
  5125. border-width:0px;
  5126. position:absolute;
  5127. left:0px;
  5128. top:0px;
  5129. width:137px;
  5130. height:32px;
  5131. }
  5132. #u7969 {
  5133. border-width:0px;
  5134. position:absolute;
  5135. left:1056px;
  5136. top:396px;
  5137. width:137px;
  5138. height:32px;
  5139. display:flex;
  5140. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  5141. font-weight:400;
  5142. font-style:normal;
  5143. font-size:12px;
  5144. color:#606266;
  5145. }
  5146. #u7969 .text {
  5147. position:absolute;
  5148. align-self:center;
  5149. padding:2px 2px 2px 0px;
  5150. box-sizing:border-box;
  5151. width:100%;
  5152. }
  5153. #u7969_text {
  5154. border-width:0px;
  5155. word-wrap:break-word;
  5156. text-transform:none;
  5157. visibility:hidden;
  5158. }
  5159. #u7970_div {
  5160. border-width:0px;
  5161. position:absolute;
  5162. left:0px;
  5163. top:0px;
  5164. width:55px;
  5165. height:30px;
  5166. background:inherit;
  5167. background-color:rgba(255, 255, 255, 1);
  5168. box-sizing:border-box;
  5169. border-width:1px;
  5170. border-style:solid;
  5171. border-color:rgba(170, 170, 170, 1);
  5172. border-radius:4px;
  5173. -moz-box-shadow:none;
  5174. -webkit-box-shadow:none;
  5175. box-shadow:none;
  5176. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5177. font-weight:400;
  5178. font-style:normal;
  5179. font-size:12px;
  5180. color:#555555;
  5181. }
  5182. #u7970 {
  5183. border-width:0px;
  5184. position:absolute;
  5185. left:428px;
  5186. top:363px;
  5187. width:55px;
  5188. height:30px;
  5189. display:flex;
  5190. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5191. font-weight:400;
  5192. font-style:normal;
  5193. font-size:12px;
  5194. color:#555555;
  5195. }
  5196. #u7970 .text {
  5197. position:absolute;
  5198. align-self:center;
  5199. padding:5px 15px 5px 15px;
  5200. box-sizing:border-box;
  5201. width:100%;
  5202. }
  5203. #u7970_text {
  5204. border-width:0px;
  5205. white-space:nowrap;
  5206. text-transform:none;
  5207. }
  5208. #u7971_div {
  5209. border-width:0px;
  5210. position:absolute;
  5211. left:0px;
  5212. top:0px;
  5213. width:59px;
  5214. height:30px;
  5215. background:inherit;
  5216. background-color:rgba(41, 143, 255, 1);
  5217. border:none;
  5218. border-radius:4px;
  5219. -moz-box-shadow:none;
  5220. -webkit-box-shadow:none;
  5221. box-shadow:none;
  5222. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5223. font-weight:400;
  5224. font-style:normal;
  5225. font-size:14px;
  5226. color:#FFFFFF;
  5227. }
  5228. #u7971 {
  5229. border-width:0px;
  5230. position:absolute;
  5231. left:359px;
  5232. top:363px;
  5233. width:59px;
  5234. height:30px;
  5235. display:flex;
  5236. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5237. font-weight:400;
  5238. font-style:normal;
  5239. font-size:14px;
  5240. color:#FFFFFF;
  5241. }
  5242. #u7971 .text {
  5243. position:absolute;
  5244. align-self:center;
  5245. padding:5px 15px 5px 15px;
  5246. box-sizing:border-box;
  5247. width:100%;
  5248. }
  5249. #u7971_text {
  5250. border-width:0px;
  5251. white-space:nowrap;
  5252. text-transform:none;
  5253. }
  5254. #u7972 {
  5255. border-width:0px;
  5256. position:absolute;
  5257. left:0px;
  5258. top:0px;
  5259. width:0px;
  5260. height:0px;
  5261. }
  5262. #u7973_div {
  5263. border-width:0px;
  5264. position:absolute;
  5265. left:0px;
  5266. top:0px;
  5267. width:59px;
  5268. height:30px;
  5269. background:inherit;
  5270. background-color:rgba(41, 143, 255, 1);
  5271. border:none;
  5272. border-radius:4px;
  5273. -moz-box-shadow:none;
  5274. -webkit-box-shadow:none;
  5275. box-shadow:none;
  5276. font-family:'Microsoft YaHei', sans-serif;
  5277. font-weight:400;
  5278. font-style:normal;
  5279. font-size:14px;
  5280. color:#FFFFFF;
  5281. }
  5282. #u7973 {
  5283. border-width:0px;
  5284. position:absolute;
  5285. left:959px;
  5286. top:314px;
  5287. width:59px;
  5288. height:30px;
  5289. display:flex;
  5290. font-family:'Microsoft YaHei', sans-serif;
  5291. font-weight:400;
  5292. font-style:normal;
  5293. font-size:14px;
  5294. color:#FFFFFF;
  5295. }
  5296. #u7973 .text {
  5297. position:absolute;
  5298. align-self:center;
  5299. padding:5px 15px 5px 15px;
  5300. box-sizing:border-box;
  5301. width:100%;
  5302. }
  5303. #u7973_text {
  5304. border-width:0px;
  5305. white-space:nowrap;
  5306. text-transform:none;
  5307. }
  5308. #u7974_div {
  5309. border-width:0px;
  5310. position:absolute;
  5311. left:0px;
  5312. top:0px;
  5313. width:55px;
  5314. height:30px;
  5315. background:inherit;
  5316. background-color:rgba(255, 255, 255, 1);
  5317. box-sizing:border-box;
  5318. border-width:1px;
  5319. border-style:solid;
  5320. border-color:rgba(170, 170, 170, 1);
  5321. border-radius:4px;
  5322. -moz-box-shadow:none;
  5323. -webkit-box-shadow:none;
  5324. box-shadow:none;
  5325. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5326. font-weight:400;
  5327. font-style:normal;
  5328. font-size:12px;
  5329. color:#555555;
  5330. }
  5331. #u7974 {
  5332. border-width:0px;
  5333. position:absolute;
  5334. left:1028px;
  5335. top:314px;
  5336. width:55px;
  5337. height:30px;
  5338. display:flex;
  5339. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5340. font-weight:400;
  5341. font-style:normal;
  5342. font-size:12px;
  5343. color:#555555;
  5344. }
  5345. #u7974 .text {
  5346. position:absolute;
  5347. align-self:center;
  5348. padding:5px 15px 5px 15px;
  5349. box-sizing:border-box;
  5350. width:100%;
  5351. }
  5352. #u7974_text {
  5353. border-width:0px;
  5354. white-space:nowrap;
  5355. text-transform:none;
  5356. }
  5357. #u7975 {
  5358. border-width:0px;
  5359. position:absolute;
  5360. left:0px;
  5361. top:0px;
  5362. width:0px;
  5363. height:0px;
  5364. }
  5365. #u7976_div {
  5366. border-width:0px;
  5367. position:absolute;
  5368. left:0px;
  5369. top:0px;
  5370. width:140px;
  5371. height:30px;
  5372. background:inherit;
  5373. background-color:rgba(255, 255, 255, 1);
  5374. box-sizing:border-box;
  5375. border-width:1px;
  5376. border-style:solid;
  5377. border-color:rgba(201, 201, 201, 1);
  5378. border-radius:4px;
  5379. -moz-box-shadow:none;
  5380. -webkit-box-shadow:none;
  5381. box-shadow:none;
  5382. font-family:'Microsoft YaHei', sans-serif;
  5383. font-weight:400;
  5384. font-style:normal;
  5385. font-size:14px;
  5386. color:#CCCCCC;
  5387. text-align:left;
  5388. }
  5389. #u7976 {
  5390. border-width:0px;
  5391. position:absolute;
  5392. left:659px;
  5393. top:313px;
  5394. width:140px;
  5395. height:30px;
  5396. display:flex;
  5397. font-family:'Microsoft YaHei', sans-serif;
  5398. font-weight:400;
  5399. font-style:normal;
  5400. font-size:14px;
  5401. color:#CCCCCC;
  5402. text-align:left;
  5403. }
  5404. #u7976 .text {
  5405. position:absolute;
  5406. align-self:center;
  5407. padding:2px 8px 2px 8px;
  5408. box-sizing:border-box;
  5409. width:100%;
  5410. }
  5411. #u7976_text {
  5412. border-width:0px;
  5413. word-wrap:break-word;
  5414. text-transform:none;
  5415. visibility:hidden;
  5416. }
  5417. #u7977_input {
  5418. position:absolute;
  5419. left:0px;
  5420. top:0px;
  5421. width:127px;
  5422. height:25px;
  5423. padding:2px 2px 2px 2px;
  5424. font-family:'Microsoft YaHei', sans-serif;
  5425. font-weight:400;
  5426. font-style:normal;
  5427. font-size:10px;
  5428. letter-spacing:normal;
  5429. color:#000000;
  5430. vertical-align:none;
  5431. text-align:left;
  5432. text-transform:none;
  5433. background-color:transparent;
  5434. border-color:transparent;
  5435. }
  5436. #u7977_input.disabled {
  5437. position:absolute;
  5438. left:0px;
  5439. top:0px;
  5440. width:127px;
  5441. height:25px;
  5442. padding:2px 2px 2px 2px;
  5443. font-family:'Microsoft YaHei', sans-serif;
  5444. font-weight:400;
  5445. font-style:normal;
  5446. font-size:10px;
  5447. letter-spacing:normal;
  5448. color:#000000;
  5449. vertical-align:none;
  5450. text-align:left;
  5451. text-transform:none;
  5452. background-color:transparent;
  5453. border-color:transparent;
  5454. }
  5455. #u7977_div {
  5456. border-width:0px;
  5457. position:absolute;
  5458. left:0px;
  5459. top:0px;
  5460. width:127px;
  5461. height:25px;
  5462. background:inherit;
  5463. background-color:rgba(255, 255, 255, 1);
  5464. border:none;
  5465. border-radius:0px;
  5466. -moz-box-shadow:none;
  5467. -webkit-box-shadow:none;
  5468. box-shadow:none;
  5469. font-family:'Microsoft YaHei', sans-serif;
  5470. font-weight:400;
  5471. font-style:normal;
  5472. font-size:10px;
  5473. }
  5474. #u7977 {
  5475. border-width:0px;
  5476. position:absolute;
  5477. left:667px;
  5478. top:314px;
  5479. width:127px;
  5480. height:25px;
  5481. display:flex;
  5482. font-family:'Microsoft YaHei', sans-serif;
  5483. font-weight:400;
  5484. font-style:normal;
  5485. font-size:10px;
  5486. }
  5487. #u7977 .text {
  5488. position:absolute;
  5489. align-self:center;
  5490. padding:2px 2px 2px 2px;
  5491. box-sizing:border-box;
  5492. width:100%;
  5493. }
  5494. #u7977_div.disabled {
  5495. border-width:0px;
  5496. position:absolute;
  5497. left:0px;
  5498. top:0px;
  5499. width:127px;
  5500. height:25px;
  5501. background:inherit;
  5502. background-color:rgba(240, 240, 240, 1);
  5503. border:none;
  5504. border-radius:0px;
  5505. -moz-box-shadow:none;
  5506. -webkit-box-shadow:none;
  5507. box-shadow:none;
  5508. font-family:'Microsoft YaHei', sans-serif;
  5509. font-weight:400;
  5510. font-style:normal;
  5511. font-size:10px;
  5512. }
  5513. #u7977.disabled {
  5514. }
  5515. #u7978 {
  5516. border-width:0px;
  5517. position:absolute;
  5518. left:0px;
  5519. top:0px;
  5520. width:0px;
  5521. height:0px;
  5522. }
  5523. #u7979_div {
  5524. border-width:0px;
  5525. position:absolute;
  5526. left:0px;
  5527. top:0px;
  5528. width:140px;
  5529. height:30px;
  5530. background:inherit;
  5531. background-color:rgba(255, 255, 255, 1);
  5532. box-sizing:border-box;
  5533. border-width:1px;
  5534. border-style:solid;
  5535. border-color:rgba(215, 215, 215, 1);
  5536. border-radius:4px;
  5537. -moz-box-shadow:none;
  5538. -webkit-box-shadow:none;
  5539. box-shadow:none;
  5540. font-size:11px;
  5541. }
  5542. #u7979 {
  5543. border-width:0px;
  5544. position:absolute;
  5545. left:809px;
  5546. top:313px;
  5547. width:140px;
  5548. height:30px;
  5549. display:flex;
  5550. font-size:11px;
  5551. }
  5552. #u7979 .text {
  5553. position:absolute;
  5554. align-self:center;
  5555. padding:2px 2px 2px 2px;
  5556. box-sizing:border-box;
  5557. width:100%;
  5558. }
  5559. #u7979_text {
  5560. border-width:0px;
  5561. word-wrap:break-word;
  5562. text-transform:none;
  5563. visibility:hidden;
  5564. }
  5565. #u7980_input {
  5566. position:absolute;
  5567. left:0px;
  5568. top:0px;
  5569. width:125px;
  5570. height:23px;
  5571. padding:2px 2px 2px 2px;
  5572. font-family:'ArialMT', 'Arial', sans-serif;
  5573. font-weight:400;
  5574. font-style:normal;
  5575. font-size:11px;
  5576. letter-spacing:normal;
  5577. color:#AAAAAA;
  5578. vertical-align:none;
  5579. text-align:left;
  5580. text-transform:none;
  5581. background-color:transparent;
  5582. border-color:transparent;
  5583. }
  5584. #u7980_input.disabled {
  5585. position:absolute;
  5586. left:0px;
  5587. top:0px;
  5588. width:125px;
  5589. height:23px;
  5590. padding:2px 2px 2px 2px;
  5591. font-family:'ArialMT', 'Arial', sans-serif;
  5592. font-weight:400;
  5593. font-style:normal;
  5594. font-size:11px;
  5595. letter-spacing:normal;
  5596. color:#AAAAAA;
  5597. vertical-align:none;
  5598. text-align:left;
  5599. text-transform:none;
  5600. background-color:transparent;
  5601. border-color:transparent;
  5602. }
  5603. #u7980_div {
  5604. border-width:0px;
  5605. position:absolute;
  5606. left:0px;
  5607. top:0px;
  5608. width:125px;
  5609. height:23px;
  5610. background:inherit;
  5611. background-color:rgba(255, 255, 255, 1);
  5612. border:none;
  5613. border-radius:0px;
  5614. -moz-box-shadow:none;
  5615. -webkit-box-shadow:none;
  5616. box-shadow:none;
  5617. font-size:11px;
  5618. color:#AAAAAA;
  5619. }
  5620. #u7980 {
  5621. border-width:0px;
  5622. position:absolute;
  5623. left:815px;
  5624. top:315px;
  5625. width:125px;
  5626. height:23px;
  5627. display:flex;
  5628. font-size:11px;
  5629. color:#AAAAAA;
  5630. }
  5631. #u7980 .text {
  5632. position:absolute;
  5633. align-self:flex-start;
  5634. padding:2px 2px 2px 2px;
  5635. box-sizing:border-box;
  5636. width:100%;
  5637. }
  5638. #u7980_div.disabled {
  5639. border-width:0px;
  5640. position:absolute;
  5641. left:0px;
  5642. top:0px;
  5643. width:125px;
  5644. height:23px;
  5645. background:inherit;
  5646. background-color:rgba(240, 240, 240, 1);
  5647. border:none;
  5648. border-radius:0px;
  5649. -moz-box-shadow:none;
  5650. -webkit-box-shadow:none;
  5651. box-shadow:none;
  5652. font-size:11px;
  5653. color:#AAAAAA;
  5654. }
  5655. #u7980.disabled {
  5656. }
  5657. .u7980_input_option {
  5658. font-size:11px;
  5659. }
  5660. #u7981 {
  5661. border-width:0px;
  5662. position:absolute;
  5663. left:0px;
  5664. top:0px;
  5665. width:0px;
  5666. height:0px;
  5667. }
  5668. #u7982_div {
  5669. border-width:0px;
  5670. position:absolute;
  5671. left:0px;
  5672. top:0px;
  5673. width:140px;
  5674. height:30px;
  5675. background:inherit;
  5676. background-color:rgba(255, 255, 255, 1);
  5677. box-sizing:border-box;
  5678. border-width:1px;
  5679. border-style:solid;
  5680. border-color:rgba(201, 201, 201, 1);
  5681. border-radius:4px;
  5682. -moz-box-shadow:none;
  5683. -webkit-box-shadow:none;
  5684. box-shadow:none;
  5685. font-family:'Microsoft YaHei', sans-serif;
  5686. font-weight:400;
  5687. font-style:normal;
  5688. font-size:14px;
  5689. color:#CCCCCC;
  5690. text-align:left;
  5691. }
  5692. #u7982 {
  5693. border-width:0px;
  5694. position:absolute;
  5695. left:359px;
  5696. top:313px;
  5697. width:140px;
  5698. height:30px;
  5699. display:flex;
  5700. font-family:'Microsoft YaHei', sans-serif;
  5701. font-weight:400;
  5702. font-style:normal;
  5703. font-size:14px;
  5704. color:#CCCCCC;
  5705. text-align:left;
  5706. }
  5707. #u7982 .text {
  5708. position:absolute;
  5709. align-self:center;
  5710. padding:2px 8px 2px 8px;
  5711. box-sizing:border-box;
  5712. width:100%;
  5713. }
  5714. #u7982_text {
  5715. border-width:0px;
  5716. word-wrap:break-word;
  5717. text-transform:none;
  5718. visibility:hidden;
  5719. }
  5720. #u7983_input {
  5721. position:absolute;
  5722. left:0px;
  5723. top:0px;
  5724. width:127px;
  5725. height:25px;
  5726. padding:2px 2px 2px 2px;
  5727. font-family:'Microsoft YaHei', sans-serif;
  5728. font-weight:400;
  5729. font-style:normal;
  5730. font-size:10px;
  5731. letter-spacing:normal;
  5732. color:#000000;
  5733. vertical-align:none;
  5734. text-align:left;
  5735. text-transform:none;
  5736. background-color:transparent;
  5737. border-color:transparent;
  5738. }
  5739. #u7983_input.disabled {
  5740. position:absolute;
  5741. left:0px;
  5742. top:0px;
  5743. width:127px;
  5744. height:25px;
  5745. padding:2px 2px 2px 2px;
  5746. font-family:'Microsoft YaHei', sans-serif;
  5747. font-weight:400;
  5748. font-style:normal;
  5749. font-size:10px;
  5750. letter-spacing:normal;
  5751. color:#000000;
  5752. vertical-align:none;
  5753. text-align:left;
  5754. text-transform:none;
  5755. background-color:transparent;
  5756. border-color:transparent;
  5757. }
  5758. #u7983_div {
  5759. border-width:0px;
  5760. position:absolute;
  5761. left:0px;
  5762. top:0px;
  5763. width:127px;
  5764. height:25px;
  5765. background:inherit;
  5766. background-color:rgba(255, 255, 255, 1);
  5767. border:none;
  5768. border-radius:0px;
  5769. -moz-box-shadow:none;
  5770. -webkit-box-shadow:none;
  5771. box-shadow:none;
  5772. font-family:'Microsoft YaHei', sans-serif;
  5773. font-weight:400;
  5774. font-style:normal;
  5775. font-size:10px;
  5776. }
  5777. #u7983 {
  5778. border-width:0px;
  5779. position:absolute;
  5780. left:367px;
  5781. top:314px;
  5782. width:127px;
  5783. height:25px;
  5784. display:flex;
  5785. font-family:'Microsoft YaHei', sans-serif;
  5786. font-weight:400;
  5787. font-style:normal;
  5788. font-size:10px;
  5789. }
  5790. #u7983 .text {
  5791. position:absolute;
  5792. align-self:center;
  5793. padding:2px 2px 2px 2px;
  5794. box-sizing:border-box;
  5795. width:100%;
  5796. }
  5797. #u7983_div.disabled {
  5798. border-width:0px;
  5799. position:absolute;
  5800. left:0px;
  5801. top:0px;
  5802. width:127px;
  5803. height:25px;
  5804. background:inherit;
  5805. background-color:rgba(240, 240, 240, 1);
  5806. border:none;
  5807. border-radius:0px;
  5808. -moz-box-shadow:none;
  5809. -webkit-box-shadow:none;
  5810. box-shadow:none;
  5811. font-family:'Microsoft YaHei', sans-serif;
  5812. font-weight:400;
  5813. font-style:normal;
  5814. font-size:10px;
  5815. }
  5816. #u7983.disabled {
  5817. }
  5818. #u7984_div {
  5819. border-width:0px;
  5820. position:absolute;
  5821. left:0px;
  5822. top:0px;
  5823. width:1202px;
  5824. height:40px;
  5825. background:inherit;
  5826. background-color:rgba(255, 255, 128, 0.0980392156862745);
  5827. border:none;
  5828. border-radius:6px;
  5829. -moz-box-shadow:none;
  5830. -webkit-box-shadow:none;
  5831. box-shadow:none;
  5832. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5833. font-weight:400;
  5834. font-style:normal;
  5835. font-size:12px;
  5836. color:#F59A23;
  5837. text-align:left;
  5838. }
  5839. #u7984 {
  5840. border-width:0px;
  5841. position:absolute;
  5842. left:359px;
  5843. top:263px;
  5844. width:1202px;
  5845. height:40px;
  5846. display:flex;
  5847. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5848. font-weight:400;
  5849. font-style:normal;
  5850. font-size:12px;
  5851. color:#F59A23;
  5852. text-align:left;
  5853. }
  5854. #u7984 .text {
  5855. position:absolute;
  5856. align-self:center;
  5857. padding:2px 2px 2px 10px;
  5858. box-sizing:border-box;
  5859. width:100%;
  5860. }
  5861. #u7984_text {
  5862. border-width:0px;
  5863. word-wrap:break-word;
  5864. text-transform:none;
  5865. }
  5866. #u7985 {
  5867. border-width:0px;
  5868. position:absolute;
  5869. left:0px;
  5870. top:0px;
  5871. width:0px;
  5872. height:0px;
  5873. }
  5874. #u7986_div {
  5875. border-width:0px;
  5876. position:absolute;
  5877. left:0px;
  5878. top:0px;
  5879. width:140px;
  5880. height:30px;
  5881. background:inherit;
  5882. background-color:rgba(255, 255, 255, 1);
  5883. box-sizing:border-box;
  5884. border-width:1px;
  5885. border-style:solid;
  5886. border-color:rgba(201, 201, 201, 1);
  5887. border-radius:4px;
  5888. -moz-box-shadow:none;
  5889. -webkit-box-shadow:none;
  5890. box-shadow:none;
  5891. font-family:'Microsoft YaHei', sans-serif;
  5892. font-weight:400;
  5893. font-style:normal;
  5894. font-size:14px;
  5895. color:#CCCCCC;
  5896. text-align:left;
  5897. }
  5898. #u7986 {
  5899. border-width:0px;
  5900. position:absolute;
  5901. left:509px;
  5902. top:313px;
  5903. width:140px;
  5904. height:30px;
  5905. display:flex;
  5906. font-family:'Microsoft YaHei', sans-serif;
  5907. font-weight:400;
  5908. font-style:normal;
  5909. font-size:14px;
  5910. color:#CCCCCC;
  5911. text-align:left;
  5912. }
  5913. #u7986 .text {
  5914. position:absolute;
  5915. align-self:center;
  5916. padding:2px 8px 2px 8px;
  5917. box-sizing:border-box;
  5918. width:100%;
  5919. }
  5920. #u7986_text {
  5921. border-width:0px;
  5922. word-wrap:break-word;
  5923. text-transform:none;
  5924. visibility:hidden;
  5925. }
  5926. #u7987_input {
  5927. position:absolute;
  5928. left:0px;
  5929. top:0px;
  5930. width:127px;
  5931. height:25px;
  5932. padding:2px 2px 2px 2px;
  5933. font-family:'Microsoft YaHei', sans-serif;
  5934. font-weight:400;
  5935. font-style:normal;
  5936. font-size:10px;
  5937. letter-spacing:normal;
  5938. color:#000000;
  5939. vertical-align:none;
  5940. text-align:left;
  5941. text-transform:none;
  5942. background-color:transparent;
  5943. border-color:transparent;
  5944. }
  5945. #u7987_input.disabled {
  5946. position:absolute;
  5947. left:0px;
  5948. top:0px;
  5949. width:127px;
  5950. height:25px;
  5951. padding:2px 2px 2px 2px;
  5952. font-family:'Microsoft YaHei', sans-serif;
  5953. font-weight:400;
  5954. font-style:normal;
  5955. font-size:10px;
  5956. letter-spacing:normal;
  5957. color:#000000;
  5958. vertical-align:none;
  5959. text-align:left;
  5960. text-transform:none;
  5961. background-color:transparent;
  5962. border-color:transparent;
  5963. }
  5964. #u7987_div {
  5965. border-width:0px;
  5966. position:absolute;
  5967. left:0px;
  5968. top:0px;
  5969. width:127px;
  5970. height:25px;
  5971. background:inherit;
  5972. background-color:rgba(255, 255, 255, 1);
  5973. border:none;
  5974. border-radius:0px;
  5975. -moz-box-shadow:none;
  5976. -webkit-box-shadow:none;
  5977. box-shadow:none;
  5978. font-family:'Microsoft YaHei', sans-serif;
  5979. font-weight:400;
  5980. font-style:normal;
  5981. font-size:10px;
  5982. }
  5983. #u7987 {
  5984. border-width:0px;
  5985. position:absolute;
  5986. left:517px;
  5987. top:314px;
  5988. width:127px;
  5989. height:25px;
  5990. display:flex;
  5991. font-family:'Microsoft YaHei', sans-serif;
  5992. font-weight:400;
  5993. font-style:normal;
  5994. font-size:10px;
  5995. }
  5996. #u7987 .text {
  5997. position:absolute;
  5998. align-self:center;
  5999. padding:2px 2px 2px 2px;
  6000. box-sizing:border-box;
  6001. width:100%;
  6002. }
  6003. #u7987_div.disabled {
  6004. border-width:0px;
  6005. position:absolute;
  6006. left:0px;
  6007. top:0px;
  6008. width:127px;
  6009. height:25px;
  6010. background:inherit;
  6011. background-color:rgba(240, 240, 240, 1);
  6012. border:none;
  6013. border-radius:0px;
  6014. -moz-box-shadow:none;
  6015. -webkit-box-shadow:none;
  6016. box-shadow:none;
  6017. font-family:'Microsoft YaHei', sans-serif;
  6018. font-weight:400;
  6019. font-style:normal;
  6020. font-size:10px;
  6021. }
  6022. #u7987.disabled {
  6023. }
  6024. #u7988 {
  6025. border-width:0px;
  6026. position:absolute;
  6027. left:0px;
  6028. top:0px;
  6029. width:0px;
  6030. height:0px;
  6031. }
  6032. #u7989_div {
  6033. border-width:0px;
  6034. position:absolute;
  6035. left:0px;
  6036. top:0px;
  6037. width:120px;
  6038. height:180px;
  6039. background:inherit;
  6040. background-color:rgba(255, 255, 255, 1);
  6041. box-sizing:border-box;
  6042. border-width:1px;
  6043. border-style:solid;
  6044. border-color:rgba(242, 242, 242, 1);
  6045. border-left:0px;
  6046. border-right:0px;
  6047. border-radius:3px;
  6048. border-top-left-radius:0px;
  6049. border-top-right-radius:0px;
  6050. border-bottom-right-radius:0px;
  6051. border-bottom-left-radius:0px;
  6052. -moz-box-shadow:0px 0px 3px rgba(127, 127, 127, 0.349019607843137);
  6053. -webkit-box-shadow:0px 0px 3px rgba(127, 127, 127, 0.349019607843137);
  6054. box-shadow:0px 0px 3px rgba(127, 127, 127, 0.349019607843137);
  6055. }
  6056. #u7989 {
  6057. border-width:0px;
  6058. position:absolute;
  6059. left:1394px;
  6060. top:514px;
  6061. width:120px;
  6062. height:180px;
  6063. display:flex;
  6064. }
  6065. #u7989 .text {
  6066. position:absolute;
  6067. align-self:center;
  6068. padding:2px 2px 2px 2px;
  6069. box-sizing:border-box;
  6070. width:100%;
  6071. }
  6072. #u7989_text {
  6073. border-width:0px;
  6074. word-wrap:break-word;
  6075. text-transform:none;
  6076. visibility:hidden;
  6077. }
  6078. #u7990_div {
  6079. border-width:0px;
  6080. position:absolute;
  6081. left:0px;
  6082. top:0px;
  6083. width:100px;
  6084. height:40px;
  6085. background:inherit;
  6086. background-color:rgba(255, 255, 255, 1);
  6087. box-sizing:border-box;
  6088. border-width:1px;
  6089. border-style:solid;
  6090. border-color:rgba(242, 242, 242, 1);
  6091. border-left:0px;
  6092. border-top:0px;
  6093. border-right:0px;
  6094. border-radius:4px;
  6095. border-bottom-right-radius:0px;
  6096. border-bottom-left-radius:0px;
  6097. -moz-box-shadow:none;
  6098. -webkit-box-shadow:none;
  6099. box-shadow:none;
  6100. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6101. font-weight:400;
  6102. font-style:normal;
  6103. font-size:14px;
  6104. }
  6105. #u7990 {
  6106. border-width:0px;
  6107. position:absolute;
  6108. left:1404px;
  6109. top:605px;
  6110. width:100px;
  6111. height:40px;
  6112. display:flex;
  6113. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6114. font-weight:400;
  6115. font-style:normal;
  6116. font-size:14px;
  6117. }
  6118. #u7990 .text {
  6119. position:absolute;
  6120. align-self:center;
  6121. padding:5px 0px 5px 0px;
  6122. box-sizing:border-box;
  6123. width:100%;
  6124. }
  6125. #u7990_text {
  6126. border-width:0px;
  6127. word-wrap:break-word;
  6128. text-transform:none;
  6129. }
  6130. #u7991_div {
  6131. border-width:0px;
  6132. position:absolute;
  6133. left:0px;
  6134. top:0px;
  6135. width:100px;
  6136. height:40px;
  6137. background:inherit;
  6138. background-color:rgba(255, 255, 255, 1);
  6139. box-sizing:border-box;
  6140. border-width:1px;
  6141. border-style:solid;
  6142. border-color:rgba(242, 242, 242, 1);
  6143. border-left:0px;
  6144. border-top:0px;
  6145. border-right:0px;
  6146. border-radius:4px;
  6147. border-bottom-right-radius:0px;
  6148. border-bottom-left-radius:0px;
  6149. -moz-box-shadow:none;
  6150. -webkit-box-shadow:none;
  6151. box-shadow:none;
  6152. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6153. font-weight:400;
  6154. font-style:normal;
  6155. font-size:14px;
  6156. }
  6157. #u7991 {
  6158. border-width:0px;
  6159. position:absolute;
  6160. left:1404px;
  6161. top:525px;
  6162. width:100px;
  6163. height:40px;
  6164. display:flex;
  6165. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6166. font-weight:400;
  6167. font-style:normal;
  6168. font-size:14px;
  6169. }
  6170. #u7991 .text {
  6171. position:absolute;
  6172. align-self:center;
  6173. padding:5px 0px 5px 0px;
  6174. box-sizing:border-box;
  6175. width:100%;
  6176. }
  6177. #u7991_text {
  6178. border-width:0px;
  6179. word-wrap:break-word;
  6180. text-transform:none;
  6181. }
  6182. #u7992_div {
  6183. border-width:0px;
  6184. position:absolute;
  6185. left:0px;
  6186. top:0px;
  6187. width:100px;
  6188. height:40px;
  6189. background:inherit;
  6190. background-color:rgba(255, 255, 255, 1);
  6191. box-sizing:border-box;
  6192. border-width:1px;
  6193. border-style:solid;
  6194. border-color:rgba(242, 242, 242, 1);
  6195. border-left:0px;
  6196. border-top:0px;
  6197. border-right:0px;
  6198. border-radius:4px;
  6199. border-bottom-right-radius:0px;
  6200. border-bottom-left-radius:0px;
  6201. -moz-box-shadow:none;
  6202. -webkit-box-shadow:none;
  6203. box-shadow:none;
  6204. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6205. font-weight:400;
  6206. font-style:normal;
  6207. font-size:14px;
  6208. color:#D9001B;
  6209. }
  6210. #u7992 {
  6211. border-width:0px;
  6212. position:absolute;
  6213. left:1404px;
  6214. top:565px;
  6215. width:100px;
  6216. height:40px;
  6217. display:flex;
  6218. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6219. font-weight:400;
  6220. font-style:normal;
  6221. font-size:14px;
  6222. color:#D9001B;
  6223. }
  6224. #u7992 .text {
  6225. position:absolute;
  6226. align-self:center;
  6227. padding:5px 0px 5px 0px;
  6228. box-sizing:border-box;
  6229. width:100%;
  6230. }
  6231. #u7992_text {
  6232. border-width:0px;
  6233. word-wrap:break-word;
  6234. text-transform:none;
  6235. }
  6236. #u7993_div {
  6237. border-width:0px;
  6238. position:absolute;
  6239. left:0px;
  6240. top:0px;
  6241. width:100px;
  6242. height:40px;
  6243. background:inherit;
  6244. background-color:rgba(255, 255, 255, 1);
  6245. border:none;
  6246. border-left:0px;
  6247. border-top:0px;
  6248. border-right:0px;
  6249. border-radius:4px;
  6250. border-bottom-right-radius:0px;
  6251. border-bottom-left-radius:0px;
  6252. -moz-box-shadow:none;
  6253. -webkit-box-shadow:none;
  6254. box-shadow:none;
  6255. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6256. font-weight:400;
  6257. font-style:normal;
  6258. font-size:14px;
  6259. }
  6260. #u7993 {
  6261. border-width:0px;
  6262. position:absolute;
  6263. left:1404px;
  6264. top:645px;
  6265. width:100px;
  6266. height:40px;
  6267. display:flex;
  6268. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6269. font-weight:400;
  6270. font-style:normal;
  6271. font-size:14px;
  6272. }
  6273. #u7993 .text {
  6274. position:absolute;
  6275. align-self:center;
  6276. padding:5px 0px 5px 0px;
  6277. box-sizing:border-box;
  6278. width:100%;
  6279. }
  6280. #u7993_text {
  6281. border-width:0px;
  6282. word-wrap:break-word;
  6283. text-transform:none;
  6284. }
  6285. #u7994_div {
  6286. border-width:0px;
  6287. position:absolute;
  6288. left:0px;
  6289. top:0px;
  6290. width:1200px;
  6291. height:140px;
  6292. background:inherit;
  6293. background-color:rgba(242, 242, 242, 0.498039215686275);
  6294. border:none;
  6295. border-radius:6px;
  6296. -moz-box-shadow:none;
  6297. -webkit-box-shadow:none;
  6298. box-shadow:none;
  6299. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6300. font-weight:400;
  6301. font-style:normal;
  6302. font-size:18px;
  6303. color:#555555;
  6304. text-align:left;
  6305. line-height:40px;
  6306. }
  6307. #u7994 {
  6308. border-width:0px;
  6309. position:absolute;
  6310. left:361px;
  6311. top:113px;
  6312. width:1200px;
  6313. height:140px;
  6314. display:flex;
  6315. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6316. font-weight:400;
  6317. font-style:normal;
  6318. font-size:18px;
  6319. color:#555555;
  6320. text-align:left;
  6321. line-height:40px;
  6322. }
  6323. #u7994 .text {
  6324. position:absolute;
  6325. align-self:center;
  6326. padding:2px 2px 2px 30px;
  6327. box-sizing:border-box;
  6328. width:100%;
  6329. }
  6330. #u7994_text {
  6331. border-width:0px;
  6332. word-wrap:break-word;
  6333. text-transform:none;
  6334. visibility:hidden;
  6335. }
  6336. #u7995_div {
  6337. border-width:0px;
  6338. position:absolute;
  6339. left:0px;
  6340. top:0px;
  6341. width:88px;
  6342. height:17px;
  6343. background:inherit;
  6344. background-color:rgba(127, 127, 127, 0);
  6345. border:none;
  6346. border-radius:3px;
  6347. -moz-box-shadow:none;
  6348. -webkit-box-shadow:none;
  6349. box-shadow:none;
  6350. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6351. font-weight:400;
  6352. font-style:normal;
  6353. font-size:12px;
  6354. }
  6355. #u7995 {
  6356. border-width:0px;
  6357. position:absolute;
  6358. left:391px;
  6359. top:213px;
  6360. width:88px;
  6361. height:17px;
  6362. display:flex;
  6363. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6364. font-weight:400;
  6365. font-style:normal;
  6366. font-size:12px;
  6367. }
  6368. #u7995 .text {
  6369. position:absolute;
  6370. align-self:center;
  6371. padding:0px 0px 0px 0px;
  6372. box-sizing:border-box;
  6373. width:100%;
  6374. }
  6375. #u7995_text {
  6376. border-width:0px;
  6377. white-space:nowrap;
  6378. text-transform:none;
  6379. }
  6380. #u7996_div {
  6381. border-width:0px;
  6382. position:absolute;
  6383. left:0px;
  6384. top:0px;
  6385. width:98px;
  6386. height:17px;
  6387. background:inherit;
  6388. background-color:rgba(127, 127, 127, 0);
  6389. border:none;
  6390. border-radius:3px;
  6391. -moz-box-shadow:none;
  6392. -webkit-box-shadow:none;
  6393. box-shadow:none;
  6394. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6395. font-weight:400;
  6396. font-style:normal;
  6397. font-size:12px;
  6398. }
  6399. #u7996 {
  6400. border-width:0px;
  6401. position:absolute;
  6402. left:529px;
  6403. top:213px;
  6404. width:98px;
  6405. height:17px;
  6406. display:flex;
  6407. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6408. font-weight:400;
  6409. font-style:normal;
  6410. font-size:12px;
  6411. }
  6412. #u7996 .text {
  6413. position:absolute;
  6414. align-self:center;
  6415. padding:0px 0px 0px 0px;
  6416. box-sizing:border-box;
  6417. width:100%;
  6418. }
  6419. #u7996_text {
  6420. border-width:0px;
  6421. white-space:nowrap;
  6422. text-transform:none;
  6423. }
  6424. #u7997_div {
  6425. border-width:0px;
  6426. position:absolute;
  6427. left:0px;
  6428. top:0px;
  6429. width:180px;
  6430. height:25px;
  6431. background:inherit;
  6432. background-color:rgba(255, 255, 255, 0);
  6433. border:none;
  6434. border-radius:0px;
  6435. -moz-box-shadow:none;
  6436. -webkit-box-shadow:none;
  6437. box-shadow:none;
  6438. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6439. font-weight:400;
  6440. font-style:normal;
  6441. }
  6442. #u7997 {
  6443. border-width:0px;
  6444. position:absolute;
  6445. left:391px;
  6446. top:173px;
  6447. width:180px;
  6448. height:25px;
  6449. display:flex;
  6450. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6451. font-weight:400;
  6452. font-style:normal;
  6453. }
  6454. #u7997 .text {
  6455. position:absolute;
  6456. align-self:flex-start;
  6457. padding:0px 0px 0px 0px;
  6458. box-sizing:border-box;
  6459. width:100%;
  6460. }
  6461. #u7997_text {
  6462. border-width:0px;
  6463. white-space:nowrap;
  6464. text-transform:none;
  6465. }
  6466. #u7998_div {
  6467. border-width:0px;
  6468. position:absolute;
  6469. left:0px;
  6470. top:0px;
  6471. width:110px;
  6472. height:17px;
  6473. background:inherit;
  6474. background-color:rgba(127, 127, 127, 0);
  6475. border:none;
  6476. border-radius:3px;
  6477. -moz-box-shadow:none;
  6478. -webkit-box-shadow:none;
  6479. box-shadow:none;
  6480. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6481. font-weight:400;
  6482. font-style:normal;
  6483. font-size:12px;
  6484. }
  6485. #u7998 {
  6486. border-width:0px;
  6487. position:absolute;
  6488. left:687px;
  6489. top:213px;
  6490. width:110px;
  6491. height:17px;
  6492. display:flex;
  6493. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6494. font-weight:400;
  6495. font-style:normal;
  6496. font-size:12px;
  6497. }
  6498. #u7998 .text {
  6499. position:absolute;
  6500. align-self:center;
  6501. padding:0px 0px 0px 0px;
  6502. box-sizing:border-box;
  6503. width:100%;
  6504. }
  6505. #u7998_text {
  6506. border-width:0px;
  6507. white-space:nowrap;
  6508. text-transform:none;
  6509. }
  6510. #u7999_div {
  6511. border-width:0px;
  6512. position:absolute;
  6513. left:0px;
  6514. top:0px;
  6515. width:181px;
  6516. height:50px;
  6517. background:inherit;
  6518. background-color:rgba(255, 255, 255, 0);
  6519. border:none;
  6520. border-left:0px;
  6521. border-top:0px;
  6522. border-right:0px;
  6523. border-radius:0px;
  6524. border-bottom-right-radius:0px;
  6525. border-bottom-left-radius:0px;
  6526. -moz-box-shadow:none;
  6527. -webkit-box-shadow:none;
  6528. box-shadow:none;
  6529. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  6530. font-weight:500;
  6531. font-style:normal;
  6532. font-size:18px;
  6533. }
  6534. #u7999 {
  6535. border-width:0px;
  6536. position:absolute;
  6537. left:391px;
  6538. top:123px;
  6539. width:181px;
  6540. height:50px;
  6541. display:flex;
  6542. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  6543. font-weight:500;
  6544. font-style:normal;
  6545. font-size:18px;
  6546. }
  6547. #u7999 .text {
  6548. position:absolute;
  6549. align-self:center;
  6550. padding:0px 0px 0px 0px;
  6551. box-sizing:border-box;
  6552. width:100%;
  6553. }
  6554. #u7999_text {
  6555. border-width:0px;
  6556. white-space:nowrap;
  6557. text-transform:none;
  6558. }
  6559. #u8000_img {
  6560. border-width:0px;
  6561. position:absolute;
  6562. left:0px;
  6563. top:0px;
  6564. width:2px;
  6565. height:41px;
  6566. }
  6567. #u8000 {
  6568. border-width:0px;
  6569. position:absolute;
  6570. left:901px;
  6571. top:182px;
  6572. width:1px;
  6573. height:40px;
  6574. display:flex;
  6575. }
  6576. #u8000 .text {
  6577. position:absolute;
  6578. align-self:center;
  6579. padding:2px 2px 2px 2px;
  6580. box-sizing:border-box;
  6581. width:100%;
  6582. }
  6583. #u8000_text {
  6584. border-width:0px;
  6585. word-wrap:break-word;
  6586. text-transform:none;
  6587. visibility:hidden;
  6588. }
  6589. #u8001_div {
  6590. border-width:0px;
  6591. position:absolute;
  6592. left:0px;
  6593. top:0px;
  6594. width:216px;
  6595. height:25px;
  6596. background:inherit;
  6597. background-color:rgba(255, 255, 255, 0);
  6598. border:none;
  6599. border-radius:0px;
  6600. -moz-box-shadow:none;
  6601. -webkit-box-shadow:none;
  6602. box-shadow:none;
  6603. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6604. font-weight:400;
  6605. font-style:normal;
  6606. }
  6607. #u8001 {
  6608. border-width:0px;
  6609. position:absolute;
  6610. left:969px;
  6611. top:166px;
  6612. width:216px;
  6613. height:25px;
  6614. display:flex;
  6615. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6616. font-weight:400;
  6617. font-style:normal;
  6618. }
  6619. #u8001 .text {
  6620. position:absolute;
  6621. align-self:flex-start;
  6622. padding:0px 0px 0px 0px;
  6623. box-sizing:border-box;
  6624. width:100%;
  6625. }
  6626. #u8001_text {
  6627. border-width:0px;
  6628. white-space:nowrap;
  6629. text-transform:none;
  6630. }
  6631. #u8002_div {
  6632. border-width:0px;
  6633. position:absolute;
  6634. left:0px;
  6635. top:0px;
  6636. width:88px;
  6637. height:17px;
  6638. background:inherit;
  6639. background-color:rgba(127, 127, 127, 0);
  6640. border:none;
  6641. border-radius:3px;
  6642. -moz-box-shadow:none;
  6643. -webkit-box-shadow:none;
  6644. box-shadow:none;
  6645. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6646. font-weight:400;
  6647. font-style:normal;
  6648. font-size:12px;
  6649. }
  6650. #u8002 {
  6651. border-width:0px;
  6652. position:absolute;
  6653. left:969px;
  6654. top:213px;
  6655. width:88px;
  6656. height:17px;
  6657. display:flex;
  6658. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6659. font-weight:400;
  6660. font-style:normal;
  6661. font-size:12px;
  6662. }
  6663. #u8002 .text {
  6664. position:absolute;
  6665. align-self:center;
  6666. padding:0px 0px 0px 0px;
  6667. box-sizing:border-box;
  6668. width:100%;
  6669. }
  6670. #u8002_text {
  6671. border-width:0px;
  6672. white-space:nowrap;
  6673. text-transform:none;
  6674. }
  6675. #u8003_div {
  6676. border-width:0px;
  6677. position:absolute;
  6678. left:0px;
  6679. top:0px;
  6680. width:98px;
  6681. height:17px;
  6682. background:inherit;
  6683. background-color:rgba(127, 127, 127, 0);
  6684. border:none;
  6685. border-radius:3px;
  6686. -moz-box-shadow:none;
  6687. -webkit-box-shadow:none;
  6688. box-shadow:none;
  6689. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6690. font-weight:400;
  6691. font-style:normal;
  6692. font-size:12px;
  6693. }
  6694. #u8003 {
  6695. border-width:0px;
  6696. position:absolute;
  6697. left:1107px;
  6698. top:213px;
  6699. width:98px;
  6700. height:17px;
  6701. display:flex;
  6702. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6703. font-weight:400;
  6704. font-style:normal;
  6705. font-size:12px;
  6706. }
  6707. #u8003 .text {
  6708. position:absolute;
  6709. align-self:center;
  6710. padding:0px 0px 0px 0px;
  6711. box-sizing:border-box;
  6712. width:100%;
  6713. }
  6714. #u8003_text {
  6715. border-width:0px;
  6716. white-space:nowrap;
  6717. text-transform:none;
  6718. }
  6719. #u8004_div {
  6720. border-width:0px;
  6721. position:absolute;
  6722. left:0px;
  6723. top:0px;
  6724. width:110px;
  6725. height:17px;
  6726. background:inherit;
  6727. background-color:rgba(127, 127, 127, 0);
  6728. border:none;
  6729. border-radius:3px;
  6730. -moz-box-shadow:none;
  6731. -webkit-box-shadow:none;
  6732. box-shadow:none;
  6733. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6734. font-weight:400;
  6735. font-style:normal;
  6736. font-size:12px;
  6737. }
  6738. #u8004 {
  6739. border-width:0px;
  6740. position:absolute;
  6741. left:1265px;
  6742. top:213px;
  6743. width:110px;
  6744. height:17px;
  6745. display:flex;
  6746. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6747. font-weight:400;
  6748. font-style:normal;
  6749. font-size:12px;
  6750. }
  6751. #u8004 .text {
  6752. position:absolute;
  6753. align-self:center;
  6754. padding:0px 0px 0px 0px;
  6755. box-sizing:border-box;
  6756. width:100%;
  6757. }
  6758. #u8004_text {
  6759. border-width:0px;
  6760. white-space:nowrap;
  6761. text-transform:none;
  6762. }
  6763. #u8005 {
  6764. border-width:0px;
  6765. position:absolute;
  6766. left:0px;
  6767. top:0px;
  6768. width:0px;
  6769. height:0px;
  6770. }
  6771. #u8006_div {
  6772. border-width:0px;
  6773. position:absolute;
  6774. left:0px;
  6775. top:0px;
  6776. width:600px;
  6777. height:336px;
  6778. background:inherit;
  6779. background-color:rgba(255, 255, 255, 1);
  6780. box-sizing:border-box;
  6781. border-width:1px;
  6782. border-style:solid;
  6783. border-color:rgba(215, 215, 215, 1);
  6784. border-radius:0px;
  6785. -moz-box-shadow:none;
  6786. -webkit-box-shadow:none;
  6787. box-shadow:none;
  6788. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6789. font-weight:400;
  6790. font-style:normal;
  6791. font-size:14px;
  6792. color:#AAAAAA;
  6793. text-align:center;
  6794. line-height:30px;
  6795. }
  6796. #u8006 {
  6797. border-width:0px;
  6798. position:absolute;
  6799. left:1658px;
  6800. top:98px;
  6801. width:600px;
  6802. height:336px;
  6803. display:flex;
  6804. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6805. font-weight:400;
  6806. font-style:normal;
  6807. font-size:14px;
  6808. color:#AAAAAA;
  6809. text-align:center;
  6810. line-height:30px;
  6811. }
  6812. #u8006 .text {
  6813. position:absolute;
  6814. align-self:center;
  6815. padding:5px 10px 5px 10px;
  6816. box-sizing:border-box;
  6817. width:100%;
  6818. }
  6819. #u8006_text {
  6820. border-width:0px;
  6821. word-wrap:break-word;
  6822. text-transform:none;
  6823. visibility:hidden;
  6824. }
  6825. #u8007_div {
  6826. border-width:0px;
  6827. position:absolute;
  6828. left:0px;
  6829. top:0px;
  6830. width:101px;
  6831. height:35px;
  6832. background:inherit;
  6833. background-color:rgba(255, 255, 255, 0);
  6834. border:none;
  6835. border-top:0px;
  6836. border-right:0px;
  6837. border-bottom:0px;
  6838. border-radius:0px;
  6839. border-top-left-radius:0px;
  6840. border-bottom-left-radius:0px;
  6841. -moz-box-shadow:none;
  6842. -webkit-box-shadow:none;
  6843. box-shadow:none;
  6844. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  6845. font-weight:500;
  6846. font-style:normal;
  6847. font-size:18px;
  6848. }
  6849. #u8007 {
  6850. border-width:0px;
  6851. position:absolute;
  6852. left:1678px;
  6853. top:116px;
  6854. width:101px;
  6855. height:35px;
  6856. display:flex;
  6857. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  6858. font-weight:500;
  6859. font-style:normal;
  6860. font-size:18px;
  6861. }
  6862. #u8007 .text {
  6863. position:absolute;
  6864. align-self:center;
  6865. padding:5px 10px 5px 0px;
  6866. box-sizing:border-box;
  6867. width:100%;
  6868. }
  6869. #u8007_text {
  6870. border-width:0px;
  6871. white-space:nowrap;
  6872. text-transform:none;
  6873. }
  6874. #u8008_div {
  6875. border-width:0px;
  6876. position:absolute;
  6877. left:0px;
  6878. top:0px;
  6879. width:40px;
  6880. height:40px;
  6881. background:inherit;
  6882. background-color:rgba(255, 255, 255, 0);
  6883. border:none;
  6884. border-top:0px;
  6885. border-right:0px;
  6886. border-bottom:0px;
  6887. border-radius:0px;
  6888. border-top-left-radius:0px;
  6889. border-bottom-left-radius:0px;
  6890. -moz-box-shadow:none;
  6891. -webkit-box-shadow:none;
  6892. box-shadow:none;
  6893. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  6894. font-weight:500;
  6895. font-style:normal;
  6896. font-size:18px;
  6897. text-align:center;
  6898. }
  6899. #u8008 {
  6900. border-width:0px;
  6901. position:absolute;
  6902. left:2218px;
  6903. top:98px;
  6904. width:40px;
  6905. height:40px;
  6906. display:flex;
  6907. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  6908. font-weight:500;
  6909. font-style:normal;
  6910. font-size:18px;
  6911. text-align:center;
  6912. }
  6913. #u8008 .text {
  6914. position:absolute;
  6915. align-self:center;
  6916. padding:5px 10px 5px 0px;
  6917. box-sizing:border-box;
  6918. width:100%;
  6919. }
  6920. #u8008_text {
  6921. border-width:0px;
  6922. word-wrap:break-word;
  6923. text-transform:none;
  6924. }
  6925. #u8009_div {
  6926. border-width:0px;
  6927. position:absolute;
  6928. left:0px;
  6929. top:0px;
  6930. width:88px;
  6931. height:30px;
  6932. background:inherit;
  6933. background-color:rgba(255, 255, 255, 0);
  6934. border:none;
  6935. border-top:0px;
  6936. border-right:0px;
  6937. border-bottom:0px;
  6938. border-radius:0px;
  6939. border-top-left-radius:0px;
  6940. border-bottom-left-radius:0px;
  6941. -moz-box-shadow:none;
  6942. -webkit-box-shadow:none;
  6943. box-shadow:none;
  6944. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6945. font-weight:400;
  6946. font-style:normal;
  6947. font-size:14px;
  6948. color:#7F7F7F;
  6949. }
  6950. #u8009 {
  6951. border-width:0px;
  6952. position:absolute;
  6953. left:1708px;
  6954. top:259px;
  6955. width:88px;
  6956. height:30px;
  6957. display:flex;
  6958. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6959. font-weight:400;
  6960. font-style:normal;
  6961. font-size:14px;
  6962. color:#7F7F7F;
  6963. }
  6964. #u8009 .text {
  6965. position:absolute;
  6966. align-self:center;
  6967. padding:5px 10px 5px 0px;
  6968. box-sizing:border-box;
  6969. width:100%;
  6970. }
  6971. #u8009_text {
  6972. border-width:0px;
  6973. white-space:nowrap;
  6974. text-transform:none;
  6975. }
  6976. #u8010_div {
  6977. border-width:0px;
  6978. position:absolute;
  6979. left:0px;
  6980. top:0px;
  6981. width:88px;
  6982. height:30px;
  6983. background:inherit;
  6984. background-color:rgba(255, 255, 255, 0);
  6985. border:none;
  6986. border-top:0px;
  6987. border-right:0px;
  6988. border-bottom:0px;
  6989. border-radius:0px;
  6990. border-top-left-radius:0px;
  6991. border-bottom-left-radius:0px;
  6992. -moz-box-shadow:none;
  6993. -webkit-box-shadow:none;
  6994. box-shadow:none;
  6995. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6996. font-weight:400;
  6997. font-style:normal;
  6998. font-size:14px;
  6999. color:#7F7F7F;
  7000. }
  7001. #u8010 {
  7002. border-width:0px;
  7003. position:absolute;
  7004. left:1708px;
  7005. top:219px;
  7006. width:88px;
  7007. height:30px;
  7008. display:flex;
  7009. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7010. font-weight:400;
  7011. font-style:normal;
  7012. font-size:14px;
  7013. color:#7F7F7F;
  7014. }
  7015. #u8010 .text {
  7016. position:absolute;
  7017. align-self:center;
  7018. padding:5px 10px 5px 0px;
  7019. box-sizing:border-box;
  7020. width:100%;
  7021. }
  7022. #u8010_text {
  7023. border-width:0px;
  7024. white-space:nowrap;
  7025. text-transform:none;
  7026. }
  7027. #u8011 {
  7028. border-width:0px;
  7029. position:absolute;
  7030. left:0px;
  7031. top:0px;
  7032. width:0px;
  7033. height:0px;
  7034. }
  7035. #u8012_div {
  7036. border-width:0px;
  7037. position:absolute;
  7038. left:0px;
  7039. top:0px;
  7040. width:600px;
  7041. height:50px;
  7042. background:inherit;
  7043. background-color:rgba(255, 255, 255, 1);
  7044. box-sizing:border-box;
  7045. border-width:1px;
  7046. border-style:solid;
  7047. border-color:rgba(215, 215, 215, 1);
  7048. border-radius:0px;
  7049. -moz-box-shadow:none;
  7050. -webkit-box-shadow:none;
  7051. box-shadow:none;
  7052. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7053. font-weight:400;
  7054. font-style:normal;
  7055. font-size:14px;
  7056. color:#AAAAAA;
  7057. text-align:center;
  7058. line-height:30px;
  7059. }
  7060. #u8012 {
  7061. border-width:0px;
  7062. position:absolute;
  7063. left:1658px;
  7064. top:384px;
  7065. width:600px;
  7066. height:50px;
  7067. display:flex;
  7068. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7069. font-weight:400;
  7070. font-style:normal;
  7071. font-size:14px;
  7072. color:#AAAAAA;
  7073. text-align:center;
  7074. line-height:30px;
  7075. }
  7076. #u8012 .text {
  7077. position:absolute;
  7078. align-self:center;
  7079. padding:5px 10px 5px 10px;
  7080. box-sizing:border-box;
  7081. width:100%;
  7082. }
  7083. #u8012_text {
  7084. border-width:0px;
  7085. word-wrap:break-word;
  7086. text-transform:none;
  7087. visibility:hidden;
  7088. }
  7089. #u8013_div {
  7090. border-width:0px;
  7091. position:absolute;
  7092. left:0px;
  7093. top:0px;
  7094. width:80px;
  7095. height:30px;
  7096. background:inherit;
  7097. background-color:rgba(24, 144, 255, 1);
  7098. border:none;
  7099. border-radius:4px;
  7100. -moz-box-shadow:none;
  7101. -webkit-box-shadow:none;
  7102. box-shadow:none;
  7103. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7104. font-weight:400;
  7105. font-style:normal;
  7106. font-size:14px;
  7107. color:#FFFFFF;
  7108. }
  7109. #u8013 {
  7110. border-width:0px;
  7111. position:absolute;
  7112. left:2147px;
  7113. top:394px;
  7114. width:80px;
  7115. height:30px;
  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. color:#FFFFFF;
  7122. }
  7123. #u8013 .text {
  7124. position:absolute;
  7125. align-self:center;
  7126. padding:2px 2px 2px 2px;
  7127. box-sizing:border-box;
  7128. width:100%;
  7129. }
  7130. #u8013_text {
  7131. border-width:0px;
  7132. word-wrap:break-word;
  7133. text-transform:none;
  7134. }
  7135. #u8014_div {
  7136. border-width:0px;
  7137. position:absolute;
  7138. left:0px;
  7139. top:0px;
  7140. width:80px;
  7141. height:30px;
  7142. background:inherit;
  7143. background-color:rgba(255, 255, 255, 1);
  7144. box-sizing:border-box;
  7145. border-width:1px;
  7146. border-style:solid;
  7147. border-color:rgba(170, 170, 170, 1);
  7148. border-radius:4px;
  7149. -moz-box-shadow:none;
  7150. -webkit-box-shadow:none;
  7151. box-shadow:none;
  7152. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7153. font-weight:400;
  7154. font-style:normal;
  7155. font-size:14px;
  7156. }
  7157. #u8014 {
  7158. border-width:0px;
  7159. position:absolute;
  7160. left:2047px;
  7161. top:394px;
  7162. width:80px;
  7163. height:30px;
  7164. display:flex;
  7165. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7166. font-weight:400;
  7167. font-style:normal;
  7168. font-size:14px;
  7169. }
  7170. #u8014 .text {
  7171. position:absolute;
  7172. align-self:center;
  7173. padding:2px 2px 2px 2px;
  7174. box-sizing:border-box;
  7175. width:100%;
  7176. }
  7177. #u8014_text {
  7178. border-width:0px;
  7179. word-wrap:break-word;
  7180. text-transform:none;
  7181. }
  7182. #u8015 label {
  7183. left:0px;
  7184. width:100%;
  7185. }
  7186. #u8015_img {
  7187. border-width:0px;
  7188. position:absolute;
  7189. left:0px;
  7190. top:4px;
  7191. width:12px;
  7192. height:12px;
  7193. }
  7194. #u8015 {
  7195. border-width:0px;
  7196. position:absolute;
  7197. left:1789px;
  7198. top:224px;
  7199. width:206px;
  7200. height:20px;
  7201. display:flex;
  7202. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7203. font-weight:400;
  7204. font-style:normal;
  7205. font-size:14px;
  7206. }
  7207. #u8015 .text {
  7208. position:absolute;
  7209. align-self:center;
  7210. padding:0px 2px 0px 2px;
  7211. box-sizing:border-box;
  7212. }
  7213. #u8015_img.selected {
  7214. }
  7215. #u8015.selected {
  7216. }
  7217. #u8015_img.disabled {
  7218. }
  7219. #u8015.disabled {
  7220. }
  7221. #u8015_img.selectedDisabled {
  7222. }
  7223. #u8015.selectedDisabled {
  7224. }
  7225. #u8015_text {
  7226. border-width:0px;
  7227. position:absolute;
  7228. left:14px;
  7229. top:0px;
  7230. width:190px;
  7231. word-wrap:break-word;
  7232. text-transform:none;
  7233. }
  7234. #u8015_input {
  7235. border-width:0px;
  7236. position:absolute;
  7237. left:0px;
  7238. top:0px;
  7239. width:0px;
  7240. height:0px;
  7241. opacity:0;
  7242. }
  7243. #u8016 label {
  7244. left:0px;
  7245. width:100%;
  7246. }
  7247. #u8016_img {
  7248. border-width:0px;
  7249. position:absolute;
  7250. left:0px;
  7251. top:4px;
  7252. width:12px;
  7253. height:12px;
  7254. }
  7255. #u8016 {
  7256. border-width:0px;
  7257. position:absolute;
  7258. left:1930px;
  7259. top:224px;
  7260. width:135px;
  7261. height:20px;
  7262. display:flex;
  7263. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7264. font-weight:400;
  7265. font-style:normal;
  7266. font-size:14px;
  7267. }
  7268. #u8016 .text {
  7269. position:absolute;
  7270. align-self:center;
  7271. padding:0px 2px 0px 2px;
  7272. box-sizing:border-box;
  7273. }
  7274. #u8016_img.selected {
  7275. }
  7276. #u8016.selected {
  7277. }
  7278. #u8016_img.disabled {
  7279. }
  7280. #u8016.disabled {
  7281. }
  7282. #u8016_img.selectedDisabled {
  7283. }
  7284. #u8016.selectedDisabled {
  7285. }
  7286. #u8016_text {
  7287. border-width:0px;
  7288. position:absolute;
  7289. left:14px;
  7290. top:0px;
  7291. width:119px;
  7292. word-wrap:break-word;
  7293. text-transform:none;
  7294. }
  7295. #u8016_input {
  7296. border-width:0px;
  7297. position:absolute;
  7298. left:0px;
  7299. top:0px;
  7300. width:0px;
  7301. height:0px;
  7302. opacity:0;
  7303. }
  7304. #u8017_div {
  7305. border-width:0px;
  7306. position:absolute;
  7307. left:0px;
  7308. top:0px;
  7309. width:88px;
  7310. height:30px;
  7311. background:inherit;
  7312. background-color:rgba(255, 255, 255, 0);
  7313. border:none;
  7314. border-top:0px;
  7315. border-right:0px;
  7316. border-bottom:0px;
  7317. border-radius:0px;
  7318. border-top-left-radius:0px;
  7319. border-bottom-left-radius:0px;
  7320. -moz-box-shadow:none;
  7321. -webkit-box-shadow:none;
  7322. box-shadow:none;
  7323. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7324. font-weight:400;
  7325. font-style:normal;
  7326. font-size:14px;
  7327. color:#7F7F7F;
  7328. }
  7329. #u8017 {
  7330. border-width:0px;
  7331. position:absolute;
  7332. left:1708px;
  7333. top:309px;
  7334. width:88px;
  7335. height:30px;
  7336. display:flex;
  7337. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7338. font-weight:400;
  7339. font-style:normal;
  7340. font-size:14px;
  7341. color:#7F7F7F;
  7342. }
  7343. #u8017 .text {
  7344. position:absolute;
  7345. align-self:center;
  7346. padding:5px 10px 5px 0px;
  7347. box-sizing:border-box;
  7348. width:100%;
  7349. }
  7350. #u8017_text {
  7351. border-width:0px;
  7352. white-space:nowrap;
  7353. text-transform:none;
  7354. }
  7355. #u8018 {
  7356. border-width:0px;
  7357. position:absolute;
  7358. left:0px;
  7359. top:0px;
  7360. width:0px;
  7361. height:0px;
  7362. }
  7363. #u8019_div {
  7364. border-width:0px;
  7365. position:absolute;
  7366. left:0px;
  7367. top:0px;
  7368. width:400px;
  7369. height:40px;
  7370. background:inherit;
  7371. background-color:rgba(255, 255, 255, 1);
  7372. box-sizing:border-box;
  7373. border-width:1px;
  7374. border-style:solid;
  7375. border-color:rgba(215, 215, 215, 1);
  7376. border-radius:4px;
  7377. -moz-box-shadow:none;
  7378. -webkit-box-shadow:none;
  7379. box-shadow:none;
  7380. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7381. font-weight:400;
  7382. font-style:normal;
  7383. font-size:14px;
  7384. text-align:right;
  7385. }
  7386. #u8019 {
  7387. border-width:0px;
  7388. position:absolute;
  7389. left:1789px;
  7390. top:304px;
  7391. width:400px;
  7392. height:40px;
  7393. display:flex;
  7394. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7395. font-weight:400;
  7396. font-style:normal;
  7397. font-size:14px;
  7398. text-align:right;
  7399. }
  7400. #u8019 .text {
  7401. position:absolute;
  7402. align-self:center;
  7403. padding:2px 2px 2px 2px;
  7404. box-sizing:border-box;
  7405. width:100%;
  7406. }
  7407. #u8019_text {
  7408. border-width:0px;
  7409. word-wrap:break-word;
  7410. text-transform:none;
  7411. }
  7412. #u8020_input {
  7413. position:absolute;
  7414. left:0px;
  7415. top:0px;
  7416. width:346px;
  7417. height:25px;
  7418. padding:2px 2px 2px 2px;
  7419. font-family:'ArialMT', 'Arial', sans-serif;
  7420. font-weight:400;
  7421. font-style:normal;
  7422. font-size:13px;
  7423. letter-spacing:normal;
  7424. color:#000000;
  7425. vertical-align:none;
  7426. text-align:left;
  7427. text-transform:none;
  7428. background-color:transparent;
  7429. border-color:transparent;
  7430. }
  7431. #u8020_input.disabled {
  7432. position:absolute;
  7433. left:0px;
  7434. top:0px;
  7435. width:346px;
  7436. height:25px;
  7437. padding:2px 2px 2px 2px;
  7438. font-family:'ArialMT', 'Arial', sans-serif;
  7439. font-weight:400;
  7440. font-style:normal;
  7441. font-size:13px;
  7442. letter-spacing:normal;
  7443. color:#000000;
  7444. vertical-align:none;
  7445. text-align:left;
  7446. text-transform:none;
  7447. background-color:transparent;
  7448. border-color:transparent;
  7449. }
  7450. #u8020_div {
  7451. border-width:0px;
  7452. position:absolute;
  7453. left:0px;
  7454. top:0px;
  7455. width:346px;
  7456. height:25px;
  7457. background:inherit;
  7458. background-color:rgba(255, 255, 255, 1);
  7459. border:none;
  7460. border-radius:0px;
  7461. -moz-box-shadow:none;
  7462. -webkit-box-shadow:none;
  7463. box-shadow:none;
  7464. }
  7465. #u8020 {
  7466. border-width:0px;
  7467. position:absolute;
  7468. left:1795px;
  7469. top:312px;
  7470. width:346px;
  7471. height:25px;
  7472. display:flex;
  7473. }
  7474. #u8020 .text {
  7475. position:absolute;
  7476. align-self:center;
  7477. padding:2px 2px 2px 2px;
  7478. box-sizing:border-box;
  7479. width:100%;
  7480. }
  7481. #u8020_div.disabled {
  7482. border-width:0px;
  7483. position:absolute;
  7484. left:0px;
  7485. top:0px;
  7486. width:346px;
  7487. height:25px;
  7488. background:inherit;
  7489. background-color:rgba(240, 240, 240, 1);
  7490. border:none;
  7491. border-radius:0px;
  7492. -moz-box-shadow:none;
  7493. -webkit-box-shadow:none;
  7494. box-shadow:none;
  7495. }
  7496. #u8020.disabled {
  7497. }
  7498. #u8021_div {
  7499. border-width:0px;
  7500. position:absolute;
  7501. left:0px;
  7502. top:0px;
  7503. width:81px;
  7504. height:30px;
  7505. background:inherit;
  7506. background-color:rgba(255, 255, 255, 0);
  7507. border:none;
  7508. border-top:0px;
  7509. border-right:0px;
  7510. border-bottom:0px;
  7511. border-radius:0px;
  7512. border-top-left-radius:0px;
  7513. border-bottom-left-radius:0px;
  7514. -moz-box-shadow:none;
  7515. -webkit-box-shadow:none;
  7516. box-shadow:none;
  7517. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7518. font-weight:400;
  7519. font-style:normal;
  7520. font-size:14px;
  7521. color:#7F7F7F;
  7522. }
  7523. #u8021 {
  7524. border-width:0px;
  7525. position:absolute;
  7526. left:1708px;
  7527. top:179px;
  7528. width:81px;
  7529. height:30px;
  7530. display:flex;
  7531. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7532. font-weight:400;
  7533. font-style:normal;
  7534. font-size:14px;
  7535. color:#7F7F7F;
  7536. }
  7537. #u8021 .text {
  7538. position:absolute;
  7539. align-self:center;
  7540. padding:5px 10px 5px 0px;
  7541. box-sizing:border-box;
  7542. width:100%;
  7543. }
  7544. #u8021_text {
  7545. border-width:0px;
  7546. white-space:nowrap;
  7547. text-transform:none;
  7548. }
  7549. #u8022_div {
  7550. border-width:0px;
  7551. position:absolute;
  7552. left:0px;
  7553. top:0px;
  7554. width:151px;
  7555. height:30px;
  7556. background:inherit;
  7557. background-color:rgba(255, 255, 255, 0);
  7558. border:none;
  7559. border-top:0px;
  7560. border-right:0px;
  7561. border-bottom:0px;
  7562. border-radius:0px;
  7563. border-top-left-radius:0px;
  7564. border-bottom-left-radius:0px;
  7565. -moz-box-shadow:none;
  7566. -webkit-box-shadow:none;
  7567. box-shadow:none;
  7568. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7569. font-weight:400;
  7570. font-style:normal;
  7571. font-size:14px;
  7572. }
  7573. #u8022 {
  7574. border-width:0px;
  7575. position:absolute;
  7576. left:1789px;
  7577. top:179px;
  7578. width:151px;
  7579. height:30px;
  7580. display:flex;
  7581. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7582. font-weight:400;
  7583. font-style:normal;
  7584. font-size:14px;
  7585. }
  7586. #u8022 .text {
  7587. position:absolute;
  7588. align-self:center;
  7589. padding:5px 10px 5px 0px;
  7590. box-sizing:border-box;
  7591. width:100%;
  7592. }
  7593. #u8022_text {
  7594. border-width:0px;
  7595. white-space:nowrap;
  7596. text-transform:none;
  7597. }
  7598. #u8023 {
  7599. border-width:0px;
  7600. position:absolute;
  7601. left:0px;
  7602. top:0px;
  7603. width:0px;
  7604. height:0px;
  7605. }
  7606. #u8024_div {
  7607. border-width:0px;
  7608. position:absolute;
  7609. left:0px;
  7610. top:0px;
  7611. width:400px;
  7612. height:40px;
  7613. background:inherit;
  7614. background-color:rgba(255, 255, 255, 1);
  7615. box-sizing:border-box;
  7616. border-width:1px;
  7617. border-style:solid;
  7618. border-color:rgba(215, 215, 215, 1);
  7619. border-radius:4px;
  7620. -moz-box-shadow:none;
  7621. -webkit-box-shadow:none;
  7622. box-shadow:none;
  7623. font-size:11px;
  7624. }
  7625. #u8024 {
  7626. border-width:0px;
  7627. position:absolute;
  7628. left:1789px;
  7629. top:254px;
  7630. width:400px;
  7631. height:40px;
  7632. display:flex;
  7633. font-size:11px;
  7634. }
  7635. #u8024 .text {
  7636. position:absolute;
  7637. align-self:center;
  7638. padding:2px 2px 2px 2px;
  7639. box-sizing:border-box;
  7640. width:100%;
  7641. }
  7642. #u8024_text {
  7643. border-width:0px;
  7644. word-wrap:break-word;
  7645. text-transform:none;
  7646. visibility:hidden;
  7647. }
  7648. #u8025_input {
  7649. position:absolute;
  7650. left:0px;
  7651. top:0px;
  7652. width:346px;
  7653. height:25px;
  7654. padding:2px 2px 2px 2px;
  7655. font-family:'ArialMT', 'Arial', sans-serif;
  7656. font-weight:400;
  7657. font-style:normal;
  7658. font-size:13px;
  7659. letter-spacing:normal;
  7660. color:#000000;
  7661. vertical-align:none;
  7662. text-align:left;
  7663. text-transform:none;
  7664. background-color:transparent;
  7665. border-color:transparent;
  7666. }
  7667. #u8025_input.disabled {
  7668. position:absolute;
  7669. left:0px;
  7670. top:0px;
  7671. width:346px;
  7672. height:25px;
  7673. padding:2px 2px 2px 2px;
  7674. font-family:'ArialMT', 'Arial', sans-serif;
  7675. font-weight:400;
  7676. font-style:normal;
  7677. font-size:13px;
  7678. letter-spacing:normal;
  7679. color:#000000;
  7680. vertical-align:none;
  7681. text-align:left;
  7682. text-transform:none;
  7683. background-color:transparent;
  7684. border-color:transparent;
  7685. }
  7686. #u8025_div {
  7687. border-width:0px;
  7688. position:absolute;
  7689. left:0px;
  7690. top:0px;
  7691. width:346px;
  7692. height:25px;
  7693. background:inherit;
  7694. background-color:rgba(255, 255, 255, 1);
  7695. border:none;
  7696. border-radius:0px;
  7697. -moz-box-shadow:none;
  7698. -webkit-box-shadow:none;
  7699. box-shadow:none;
  7700. }
  7701. #u8025 {
  7702. border-width:0px;
  7703. position:absolute;
  7704. left:1795px;
  7705. top:262px;
  7706. width:346px;
  7707. height:25px;
  7708. display:flex;
  7709. }
  7710. #u8025 .text {
  7711. position:absolute;
  7712. align-self:center;
  7713. padding:2px 2px 2px 2px;
  7714. box-sizing:border-box;
  7715. width:100%;
  7716. }
  7717. #u8025_div.disabled {
  7718. border-width:0px;
  7719. position:absolute;
  7720. left:0px;
  7721. top:0px;
  7722. width:346px;
  7723. height:25px;
  7724. background:inherit;
  7725. background-color:rgba(240, 240, 240, 1);
  7726. border:none;
  7727. border-radius:0px;
  7728. -moz-box-shadow:none;
  7729. -webkit-box-shadow:none;
  7730. box-shadow:none;
  7731. }
  7732. #u8025.disabled {
  7733. }
  7734. #u8026 {
  7735. border-width:0px;
  7736. position:absolute;
  7737. left:0px;
  7738. top:0px;
  7739. width:0px;
  7740. height:0px;
  7741. }
  7742. #u8027_div {
  7743. border-width:0px;
  7744. position:absolute;
  7745. left:0px;
  7746. top:0px;
  7747. width:600px;
  7748. height:336px;
  7749. background:inherit;
  7750. background-color:rgba(255, 255, 255, 1);
  7751. box-sizing:border-box;
  7752. border-width:1px;
  7753. border-style:solid;
  7754. border-color:rgba(215, 215, 215, 1);
  7755. border-radius:0px;
  7756. -moz-box-shadow:none;
  7757. -webkit-box-shadow:none;
  7758. box-shadow:none;
  7759. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7760. font-weight:400;
  7761. font-style:normal;
  7762. font-size:14px;
  7763. color:#AAAAAA;
  7764. text-align:center;
  7765. line-height:30px;
  7766. }
  7767. #u8027 {
  7768. border-width:0px;
  7769. position:absolute;
  7770. left:1658px;
  7771. top:466px;
  7772. width:600px;
  7773. height:336px;
  7774. display:flex;
  7775. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7776. font-weight:400;
  7777. font-style:normal;
  7778. font-size:14px;
  7779. color:#AAAAAA;
  7780. text-align:center;
  7781. line-height:30px;
  7782. }
  7783. #u8027 .text {
  7784. position:absolute;
  7785. align-self:center;
  7786. padding:5px 10px 5px 10px;
  7787. box-sizing:border-box;
  7788. width:100%;
  7789. }
  7790. #u8027_text {
  7791. border-width:0px;
  7792. word-wrap:break-word;
  7793. text-transform:none;
  7794. visibility:hidden;
  7795. }
  7796. #u8028_div {
  7797. border-width:0px;
  7798. position:absolute;
  7799. left:0px;
  7800. top:0px;
  7801. width:101px;
  7802. height:35px;
  7803. background:inherit;
  7804. background-color:rgba(255, 255, 255, 0);
  7805. border:none;
  7806. border-top:0px;
  7807. border-right:0px;
  7808. border-bottom:0px;
  7809. border-radius:0px;
  7810. border-top-left-radius:0px;
  7811. border-bottom-left-radius:0px;
  7812. -moz-box-shadow:none;
  7813. -webkit-box-shadow:none;
  7814. box-shadow:none;
  7815. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  7816. font-weight:500;
  7817. font-style:normal;
  7818. font-size:18px;
  7819. }
  7820. #u8028 {
  7821. border-width:0px;
  7822. position:absolute;
  7823. left:1678px;
  7824. top:484px;
  7825. width:101px;
  7826. height:35px;
  7827. display:flex;
  7828. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  7829. font-weight:500;
  7830. font-style:normal;
  7831. font-size:18px;
  7832. }
  7833. #u8028 .text {
  7834. position:absolute;
  7835. align-self:center;
  7836. padding:5px 10px 5px 0px;
  7837. box-sizing:border-box;
  7838. width:100%;
  7839. }
  7840. #u8028_text {
  7841. border-width:0px;
  7842. white-space:nowrap;
  7843. text-transform:none;
  7844. }
  7845. #u8029_div {
  7846. border-width:0px;
  7847. position:absolute;
  7848. left:0px;
  7849. top:0px;
  7850. width:40px;
  7851. height:40px;
  7852. background:inherit;
  7853. background-color:rgba(255, 255, 255, 0);
  7854. border:none;
  7855. border-top:0px;
  7856. border-right:0px;
  7857. border-bottom:0px;
  7858. border-radius:0px;
  7859. border-top-left-radius:0px;
  7860. border-bottom-left-radius:0px;
  7861. -moz-box-shadow:none;
  7862. -webkit-box-shadow:none;
  7863. box-shadow:none;
  7864. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  7865. font-weight:500;
  7866. font-style:normal;
  7867. font-size:18px;
  7868. text-align:center;
  7869. }
  7870. #u8029 {
  7871. border-width:0px;
  7872. position:absolute;
  7873. left:2218px;
  7874. top:466px;
  7875. width:40px;
  7876. height:40px;
  7877. display:flex;
  7878. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  7879. font-weight:500;
  7880. font-style:normal;
  7881. font-size:18px;
  7882. text-align:center;
  7883. }
  7884. #u8029 .text {
  7885. position:absolute;
  7886. align-self:center;
  7887. padding:5px 10px 5px 0px;
  7888. box-sizing:border-box;
  7889. width:100%;
  7890. }
  7891. #u8029_text {
  7892. border-width:0px;
  7893. word-wrap:break-word;
  7894. text-transform:none;
  7895. }
  7896. #u8030_div {
  7897. border-width:0px;
  7898. position:absolute;
  7899. left:0px;
  7900. top:0px;
  7901. width:88px;
  7902. height:30px;
  7903. background:inherit;
  7904. background-color:rgba(255, 255, 255, 0);
  7905. border:none;
  7906. border-top:0px;
  7907. border-right:0px;
  7908. border-bottom:0px;
  7909. border-radius:0px;
  7910. border-top-left-radius:0px;
  7911. border-bottom-left-radius:0px;
  7912. -moz-box-shadow:none;
  7913. -webkit-box-shadow:none;
  7914. box-shadow:none;
  7915. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7916. font-weight:400;
  7917. font-style:normal;
  7918. font-size:14px;
  7919. color:#7F7F7F;
  7920. }
  7921. #u8030 {
  7922. border-width:0px;
  7923. position:absolute;
  7924. left:1708px;
  7925. top:627px;
  7926. width:88px;
  7927. height:30px;
  7928. display:flex;
  7929. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7930. font-weight:400;
  7931. font-style:normal;
  7932. font-size:14px;
  7933. color:#7F7F7F;
  7934. }
  7935. #u8030 .text {
  7936. position:absolute;
  7937. align-self:center;
  7938. padding:5px 10px 5px 0px;
  7939. box-sizing:border-box;
  7940. width:100%;
  7941. }
  7942. #u8030_text {
  7943. border-width:0px;
  7944. white-space:nowrap;
  7945. text-transform:none;
  7946. }
  7947. #u8031_div {
  7948. border-width:0px;
  7949. position:absolute;
  7950. left:0px;
  7951. top:0px;
  7952. width:88px;
  7953. height:30px;
  7954. background:inherit;
  7955. background-color:rgba(255, 255, 255, 0);
  7956. border:none;
  7957. border-top:0px;
  7958. border-right:0px;
  7959. border-bottom:0px;
  7960. border-radius:0px;
  7961. border-top-left-radius:0px;
  7962. border-bottom-left-radius:0px;
  7963. -moz-box-shadow:none;
  7964. -webkit-box-shadow:none;
  7965. box-shadow:none;
  7966. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7967. font-weight:400;
  7968. font-style:normal;
  7969. font-size:14px;
  7970. color:#7F7F7F;
  7971. }
  7972. #u8031 {
  7973. border-width:0px;
  7974. position:absolute;
  7975. left:1708px;
  7976. top:587px;
  7977. width:88px;
  7978. height:30px;
  7979. display:flex;
  7980. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7981. font-weight:400;
  7982. font-style:normal;
  7983. font-size:14px;
  7984. color:#7F7F7F;
  7985. }
  7986. #u8031 .text {
  7987. position:absolute;
  7988. align-self:center;
  7989. padding:5px 10px 5px 0px;
  7990. box-sizing:border-box;
  7991. width:100%;
  7992. }
  7993. #u8031_text {
  7994. border-width:0px;
  7995. white-space:nowrap;
  7996. text-transform:none;
  7997. }
  7998. #u8032 {
  7999. border-width:0px;
  8000. position:absolute;
  8001. left:0px;
  8002. top:0px;
  8003. width:0px;
  8004. height:0px;
  8005. }
  8006. #u8033_div {
  8007. border-width:0px;
  8008. position:absolute;
  8009. left:0px;
  8010. top:0px;
  8011. width:600px;
  8012. height:50px;
  8013. background:inherit;
  8014. background-color:rgba(255, 255, 255, 1);
  8015. box-sizing:border-box;
  8016. border-width:1px;
  8017. border-style:solid;
  8018. border-color:rgba(215, 215, 215, 1);
  8019. border-radius:0px;
  8020. -moz-box-shadow:none;
  8021. -webkit-box-shadow:none;
  8022. box-shadow:none;
  8023. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8024. font-weight:400;
  8025. font-style:normal;
  8026. font-size:14px;
  8027. color:#AAAAAA;
  8028. text-align:center;
  8029. line-height:30px;
  8030. }
  8031. #u8033 {
  8032. border-width:0px;
  8033. position:absolute;
  8034. left:1658px;
  8035. top:752px;
  8036. width:600px;
  8037. height:50px;
  8038. display:flex;
  8039. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8040. font-weight:400;
  8041. font-style:normal;
  8042. font-size:14px;
  8043. color:#AAAAAA;
  8044. text-align:center;
  8045. line-height:30px;
  8046. }
  8047. #u8033 .text {
  8048. position:absolute;
  8049. align-self:center;
  8050. padding:5px 10px 5px 10px;
  8051. box-sizing:border-box;
  8052. width:100%;
  8053. }
  8054. #u8033_text {
  8055. border-width:0px;
  8056. word-wrap:break-word;
  8057. text-transform:none;
  8058. visibility:hidden;
  8059. }
  8060. #u8034_div {
  8061. border-width:0px;
  8062. position:absolute;
  8063. left:0px;
  8064. top:0px;
  8065. width:80px;
  8066. height:30px;
  8067. background:inherit;
  8068. background-color:rgba(24, 144, 255, 1);
  8069. border:none;
  8070. border-radius:4px;
  8071. -moz-box-shadow:none;
  8072. -webkit-box-shadow:none;
  8073. box-shadow:none;
  8074. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8075. font-weight:400;
  8076. font-style:normal;
  8077. font-size:14px;
  8078. color:#FFFFFF;
  8079. }
  8080. #u8034 {
  8081. border-width:0px;
  8082. position:absolute;
  8083. left:2147px;
  8084. top:762px;
  8085. width:80px;
  8086. height:30px;
  8087. display:flex;
  8088. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8089. font-weight:400;
  8090. font-style:normal;
  8091. font-size:14px;
  8092. color:#FFFFFF;
  8093. }
  8094. #u8034 .text {
  8095. position:absolute;
  8096. align-self:center;
  8097. padding:2px 2px 2px 2px;
  8098. box-sizing:border-box;
  8099. width:100%;
  8100. }
  8101. #u8034_text {
  8102. border-width:0px;
  8103. word-wrap:break-word;
  8104. text-transform:none;
  8105. }
  8106. #u8035_div {
  8107. border-width:0px;
  8108. position:absolute;
  8109. left:0px;
  8110. top:0px;
  8111. width:80px;
  8112. height:30px;
  8113. background:inherit;
  8114. background-color:rgba(255, 255, 255, 1);
  8115. box-sizing:border-box;
  8116. border-width:1px;
  8117. border-style:solid;
  8118. border-color:rgba(170, 170, 170, 1);
  8119. border-radius:4px;
  8120. -moz-box-shadow:none;
  8121. -webkit-box-shadow:none;
  8122. box-shadow:none;
  8123. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8124. font-weight:400;
  8125. font-style:normal;
  8126. font-size:14px;
  8127. }
  8128. #u8035 {
  8129. border-width:0px;
  8130. position:absolute;
  8131. left:2047px;
  8132. top:762px;
  8133. width:80px;
  8134. height:30px;
  8135. display:flex;
  8136. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8137. font-weight:400;
  8138. font-style:normal;
  8139. font-size:14px;
  8140. }
  8141. #u8035 .text {
  8142. position:absolute;
  8143. align-self:center;
  8144. padding:2px 2px 2px 2px;
  8145. box-sizing:border-box;
  8146. width:100%;
  8147. }
  8148. #u8035_text {
  8149. border-width:0px;
  8150. word-wrap:break-word;
  8151. text-transform:none;
  8152. }
  8153. #u8036 label {
  8154. left:0px;
  8155. width:100%;
  8156. }
  8157. #u8036_img {
  8158. border-width:0px;
  8159. position:absolute;
  8160. left:0px;
  8161. top:4px;
  8162. width:12px;
  8163. height:12px;
  8164. }
  8165. #u8036 {
  8166. border-width:0px;
  8167. position:absolute;
  8168. left:1789px;
  8169. top:592px;
  8170. width:206px;
  8171. height:20px;
  8172. display:flex;
  8173. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8174. font-weight:400;
  8175. font-style:normal;
  8176. font-size:14px;
  8177. }
  8178. #u8036 .text {
  8179. position:absolute;
  8180. align-self:center;
  8181. padding:0px 2px 0px 2px;
  8182. box-sizing:border-box;
  8183. }
  8184. #u8036_img.selected {
  8185. }
  8186. #u8036.selected {
  8187. }
  8188. #u8036_img.disabled {
  8189. }
  8190. #u8036.disabled {
  8191. }
  8192. #u8036_img.selectedDisabled {
  8193. }
  8194. #u8036.selectedDisabled {
  8195. }
  8196. #u8036_text {
  8197. border-width:0px;
  8198. position:absolute;
  8199. left:14px;
  8200. top:0px;
  8201. width:190px;
  8202. word-wrap:break-word;
  8203. text-transform:none;
  8204. }
  8205. #u8036_input {
  8206. border-width:0px;
  8207. position:absolute;
  8208. left:0px;
  8209. top:0px;
  8210. width:0px;
  8211. height:0px;
  8212. opacity:0;
  8213. }
  8214. #u8037 label {
  8215. left:0px;
  8216. width:100%;
  8217. }
  8218. #u8037_img {
  8219. border-width:0px;
  8220. position:absolute;
  8221. left:0px;
  8222. top:4px;
  8223. width:12px;
  8224. height:12px;
  8225. }
  8226. #u8037 {
  8227. border-width:0px;
  8228. position:absolute;
  8229. left:1930px;
  8230. top:592px;
  8231. width:135px;
  8232. height:20px;
  8233. display:flex;
  8234. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8235. font-weight:400;
  8236. font-style:normal;
  8237. font-size:14px;
  8238. }
  8239. #u8037 .text {
  8240. position:absolute;
  8241. align-self:center;
  8242. padding:0px 2px 0px 2px;
  8243. box-sizing:border-box;
  8244. }
  8245. #u8037_img.selected {
  8246. }
  8247. #u8037.selected {
  8248. }
  8249. #u8037_img.disabled {
  8250. }
  8251. #u8037.disabled {
  8252. }
  8253. #u8037_img.selectedDisabled {
  8254. }
  8255. #u8037.selectedDisabled {
  8256. }
  8257. #u8037_text {
  8258. border-width:0px;
  8259. position:absolute;
  8260. left:14px;
  8261. top:0px;
  8262. width:119px;
  8263. word-wrap:break-word;
  8264. text-transform:none;
  8265. }
  8266. #u8037_input {
  8267. border-width:0px;
  8268. position:absolute;
  8269. left:0px;
  8270. top:0px;
  8271. width:0px;
  8272. height:0px;
  8273. opacity:0;
  8274. }
  8275. #u8038_div {
  8276. border-width:0px;
  8277. position:absolute;
  8278. left:0px;
  8279. top:0px;
  8280. width:88px;
  8281. height:30px;
  8282. background:inherit;
  8283. background-color:rgba(255, 255, 255, 0);
  8284. border:none;
  8285. border-top:0px;
  8286. border-right:0px;
  8287. border-bottom:0px;
  8288. border-radius:0px;
  8289. border-top-left-radius:0px;
  8290. border-bottom-left-radius:0px;
  8291. -moz-box-shadow:none;
  8292. -webkit-box-shadow:none;
  8293. box-shadow:none;
  8294. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8295. font-weight:400;
  8296. font-style:normal;
  8297. font-size:14px;
  8298. color:#7F7F7F;
  8299. }
  8300. #u8038 {
  8301. border-width:0px;
  8302. position:absolute;
  8303. left:1708px;
  8304. top:677px;
  8305. width:88px;
  8306. height:30px;
  8307. display:flex;
  8308. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8309. font-weight:400;
  8310. font-style:normal;
  8311. font-size:14px;
  8312. color:#7F7F7F;
  8313. }
  8314. #u8038 .text {
  8315. position:absolute;
  8316. align-self:center;
  8317. padding:5px 10px 5px 0px;
  8318. box-sizing:border-box;
  8319. width:100%;
  8320. }
  8321. #u8038_text {
  8322. border-width:0px;
  8323. white-space:nowrap;
  8324. text-transform:none;
  8325. }
  8326. #u8039 {
  8327. border-width:0px;
  8328. position:absolute;
  8329. left:0px;
  8330. top:0px;
  8331. width:0px;
  8332. height:0px;
  8333. }
  8334. #u8040_div {
  8335. border-width:0px;
  8336. position:absolute;
  8337. left:0px;
  8338. top:0px;
  8339. width:400px;
  8340. height:40px;
  8341. background:inherit;
  8342. background-color:rgba(255, 255, 255, 1);
  8343. box-sizing:border-box;
  8344. border-width:1px;
  8345. border-style:solid;
  8346. border-color:rgba(215, 215, 215, 1);
  8347. border-radius:4px;
  8348. -moz-box-shadow:none;
  8349. -webkit-box-shadow:none;
  8350. box-shadow:none;
  8351. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8352. font-weight:400;
  8353. font-style:normal;
  8354. font-size:14px;
  8355. text-align:right;
  8356. }
  8357. #u8040 {
  8358. border-width:0px;
  8359. position:absolute;
  8360. left:1789px;
  8361. top:672px;
  8362. width:400px;
  8363. height:40px;
  8364. display:flex;
  8365. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8366. font-weight:400;
  8367. font-style:normal;
  8368. font-size:14px;
  8369. text-align:right;
  8370. }
  8371. #u8040 .text {
  8372. position:absolute;
  8373. align-self:center;
  8374. padding:2px 2px 2px 2px;
  8375. box-sizing:border-box;
  8376. width:100%;
  8377. }
  8378. #u8040_text {
  8379. border-width:0px;
  8380. word-wrap:break-word;
  8381. text-transform:none;
  8382. }
  8383. #u8041_input {
  8384. position:absolute;
  8385. left:0px;
  8386. top:0px;
  8387. width:346px;
  8388. height:25px;
  8389. padding:2px 2px 2px 2px;
  8390. font-family:'ArialMT', 'Arial', sans-serif;
  8391. font-weight:400;
  8392. font-style:normal;
  8393. font-size:13px;
  8394. letter-spacing:normal;
  8395. color:#000000;
  8396. vertical-align:none;
  8397. text-align:left;
  8398. text-transform:none;
  8399. background-color:transparent;
  8400. border-color:transparent;
  8401. }
  8402. #u8041_input.disabled {
  8403. position:absolute;
  8404. left:0px;
  8405. top:0px;
  8406. width:346px;
  8407. height:25px;
  8408. padding:2px 2px 2px 2px;
  8409. font-family:'ArialMT', 'Arial', sans-serif;
  8410. font-weight:400;
  8411. font-style:normal;
  8412. font-size:13px;
  8413. letter-spacing:normal;
  8414. color:#000000;
  8415. vertical-align:none;
  8416. text-align:left;
  8417. text-transform:none;
  8418. background-color:transparent;
  8419. border-color:transparent;
  8420. }
  8421. #u8041_div {
  8422. border-width:0px;
  8423. position:absolute;
  8424. left:0px;
  8425. top:0px;
  8426. width:346px;
  8427. height:25px;
  8428. background:inherit;
  8429. background-color:rgba(255, 255, 255, 1);
  8430. border:none;
  8431. border-radius:0px;
  8432. -moz-box-shadow:none;
  8433. -webkit-box-shadow:none;
  8434. box-shadow:none;
  8435. }
  8436. #u8041 {
  8437. border-width:0px;
  8438. position:absolute;
  8439. left:1795px;
  8440. top:680px;
  8441. width:346px;
  8442. height:25px;
  8443. display:flex;
  8444. }
  8445. #u8041 .text {
  8446. position:absolute;
  8447. align-self:center;
  8448. padding:2px 2px 2px 2px;
  8449. box-sizing:border-box;
  8450. width:100%;
  8451. }
  8452. #u8041_div.disabled {
  8453. border-width:0px;
  8454. position:absolute;
  8455. left:0px;
  8456. top:0px;
  8457. width:346px;
  8458. height:25px;
  8459. background:inherit;
  8460. background-color:rgba(240, 240, 240, 1);
  8461. border:none;
  8462. border-radius:0px;
  8463. -moz-box-shadow:none;
  8464. -webkit-box-shadow:none;
  8465. box-shadow:none;
  8466. }
  8467. #u8041.disabled {
  8468. }
  8469. #u8042_div {
  8470. border-width:0px;
  8471. position:absolute;
  8472. left:0px;
  8473. top:0px;
  8474. width:81px;
  8475. height:30px;
  8476. background:inherit;
  8477. background-color:rgba(255, 255, 255, 0);
  8478. border:none;
  8479. border-top:0px;
  8480. border-right:0px;
  8481. border-bottom:0px;
  8482. border-radius:0px;
  8483. border-top-left-radius:0px;
  8484. border-bottom-left-radius:0px;
  8485. -moz-box-shadow:none;
  8486. -webkit-box-shadow:none;
  8487. box-shadow:none;
  8488. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8489. font-weight:400;
  8490. font-style:normal;
  8491. font-size:14px;
  8492. color:#7F7F7F;
  8493. }
  8494. #u8042 {
  8495. border-width:0px;
  8496. position:absolute;
  8497. left:1708px;
  8498. top:547px;
  8499. width:81px;
  8500. height:30px;
  8501. display:flex;
  8502. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8503. font-weight:400;
  8504. font-style:normal;
  8505. font-size:14px;
  8506. color:#7F7F7F;
  8507. }
  8508. #u8042 .text {
  8509. position:absolute;
  8510. align-self:center;
  8511. padding:5px 10px 5px 0px;
  8512. box-sizing:border-box;
  8513. width:100%;
  8514. }
  8515. #u8042_text {
  8516. border-width:0px;
  8517. white-space:nowrap;
  8518. text-transform:none;
  8519. }
  8520. #u8043_div {
  8521. border-width:0px;
  8522. position:absolute;
  8523. left:0px;
  8524. top:0px;
  8525. width:151px;
  8526. height:30px;
  8527. background:inherit;
  8528. background-color:rgba(255, 255, 255, 0);
  8529. border:none;
  8530. border-top:0px;
  8531. border-right:0px;
  8532. border-bottom:0px;
  8533. border-radius:0px;
  8534. border-top-left-radius:0px;
  8535. border-bottom-left-radius:0px;
  8536. -moz-box-shadow:none;
  8537. -webkit-box-shadow:none;
  8538. box-shadow:none;
  8539. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8540. font-weight:400;
  8541. font-style:normal;
  8542. font-size:14px;
  8543. }
  8544. #u8043 {
  8545. border-width:0px;
  8546. position:absolute;
  8547. left:1789px;
  8548. top:547px;
  8549. width:151px;
  8550. height:30px;
  8551. display:flex;
  8552. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8553. font-weight:400;
  8554. font-style:normal;
  8555. font-size:14px;
  8556. }
  8557. #u8043 .text {
  8558. position:absolute;
  8559. align-self:center;
  8560. padding:5px 10px 5px 0px;
  8561. box-sizing:border-box;
  8562. width:100%;
  8563. }
  8564. #u8043_text {
  8565. border-width:0px;
  8566. white-space:nowrap;
  8567. text-transform:none;
  8568. }
  8569. #u8044 {
  8570. border-width:0px;
  8571. position:absolute;
  8572. left:0px;
  8573. top:0px;
  8574. width:0px;
  8575. height:0px;
  8576. }
  8577. #u8045_div {
  8578. border-width:0px;
  8579. position:absolute;
  8580. left:0px;
  8581. top:0px;
  8582. width:400px;
  8583. height:40px;
  8584. background:inherit;
  8585. background-color:rgba(255, 255, 255, 1);
  8586. box-sizing:border-box;
  8587. border-width:1px;
  8588. border-style:solid;
  8589. border-color:rgba(215, 215, 215, 1);
  8590. border-radius:4px;
  8591. -moz-box-shadow:none;
  8592. -webkit-box-shadow:none;
  8593. box-shadow:none;
  8594. font-size:11px;
  8595. }
  8596. #u8045 {
  8597. border-width:0px;
  8598. position:absolute;
  8599. left:1789px;
  8600. top:622px;
  8601. width:400px;
  8602. height:40px;
  8603. display:flex;
  8604. font-size:11px;
  8605. }
  8606. #u8045 .text {
  8607. position:absolute;
  8608. align-self:center;
  8609. padding:2px 2px 2px 2px;
  8610. box-sizing:border-box;
  8611. width:100%;
  8612. }
  8613. #u8045_text {
  8614. border-width:0px;
  8615. word-wrap:break-word;
  8616. text-transform:none;
  8617. visibility:hidden;
  8618. }
  8619. #u8046_input {
  8620. position:absolute;
  8621. left:0px;
  8622. top:0px;
  8623. width:346px;
  8624. height:25px;
  8625. padding:2px 2px 2px 2px;
  8626. font-family:'ArialMT', 'Arial', sans-serif;
  8627. font-weight:400;
  8628. font-style:normal;
  8629. font-size:13px;
  8630. letter-spacing:normal;
  8631. color:#000000;
  8632. vertical-align:none;
  8633. text-align:left;
  8634. text-transform:none;
  8635. background-color:transparent;
  8636. border-color:transparent;
  8637. }
  8638. #u8046_input.disabled {
  8639. position:absolute;
  8640. left:0px;
  8641. top:0px;
  8642. width:346px;
  8643. height:25px;
  8644. padding:2px 2px 2px 2px;
  8645. font-family:'ArialMT', 'Arial', sans-serif;
  8646. font-weight:400;
  8647. font-style:normal;
  8648. font-size:13px;
  8649. letter-spacing:normal;
  8650. color:#000000;
  8651. vertical-align:none;
  8652. text-align:left;
  8653. text-transform:none;
  8654. background-color:transparent;
  8655. border-color:transparent;
  8656. }
  8657. #u8046_div {
  8658. border-width:0px;
  8659. position:absolute;
  8660. left:0px;
  8661. top:0px;
  8662. width:346px;
  8663. height:25px;
  8664. background:inherit;
  8665. background-color:rgba(255, 255, 255, 1);
  8666. border:none;
  8667. border-radius:0px;
  8668. -moz-box-shadow:none;
  8669. -webkit-box-shadow:none;
  8670. box-shadow:none;
  8671. }
  8672. #u8046 {
  8673. border-width:0px;
  8674. position:absolute;
  8675. left:1795px;
  8676. top:630px;
  8677. width:346px;
  8678. height:25px;
  8679. display:flex;
  8680. }
  8681. #u8046 .text {
  8682. position:absolute;
  8683. align-self:center;
  8684. padding:2px 2px 2px 2px;
  8685. box-sizing:border-box;
  8686. width:100%;
  8687. }
  8688. #u8046_div.disabled {
  8689. border-width:0px;
  8690. position:absolute;
  8691. left:0px;
  8692. top:0px;
  8693. width:346px;
  8694. height:25px;
  8695. background:inherit;
  8696. background-color:rgba(240, 240, 240, 1);
  8697. border:none;
  8698. border-radius:0px;
  8699. -moz-box-shadow:none;
  8700. -webkit-box-shadow:none;
  8701. box-shadow:none;
  8702. }
  8703. #u8046.disabled {
  8704. }
  8705. #u8047 {
  8706. border-width:0px;
  8707. position:absolute;
  8708. left:0px;
  8709. top:0px;
  8710. width:0px;
  8711. height:0px;
  8712. }
  8713. #u8048_div {
  8714. border-width:0px;
  8715. position:absolute;
  8716. left:0px;
  8717. top:0px;
  8718. width:600px;
  8719. height:430px;
  8720. background:inherit;
  8721. background-color:rgba(255, 255, 255, 1);
  8722. box-sizing:border-box;
  8723. border-width:1px;
  8724. border-style:solid;
  8725. border-color:rgba(215, 215, 215, 1);
  8726. border-radius:0px;
  8727. -moz-box-shadow:none;
  8728. -webkit-box-shadow:none;
  8729. box-shadow:none;
  8730. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8731. font-weight:400;
  8732. font-style:normal;
  8733. font-size:14px;
  8734. color:#AAAAAA;
  8735. text-align:center;
  8736. line-height:30px;
  8737. }
  8738. #u8048 {
  8739. border-width:0px;
  8740. position:absolute;
  8741. left:966px;
  8742. top:708px;
  8743. width:600px;
  8744. height:430px;
  8745. display:flex;
  8746. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8747. font-weight:400;
  8748. font-style:normal;
  8749. font-size:14px;
  8750. color:#AAAAAA;
  8751. text-align:center;
  8752. line-height:30px;
  8753. }
  8754. #u8048 .text {
  8755. position:absolute;
  8756. align-self:center;
  8757. padding:5px 10px 5px 10px;
  8758. box-sizing:border-box;
  8759. width:100%;
  8760. }
  8761. #u8048_text {
  8762. border-width:0px;
  8763. word-wrap:break-word;
  8764. text-transform:none;
  8765. visibility:hidden;
  8766. }
  8767. #u8049_div {
  8768. border-width:0px;
  8769. position:absolute;
  8770. left:0px;
  8771. top:0px;
  8772. width:83px;
  8773. height:35px;
  8774. background:inherit;
  8775. background-color:rgba(255, 255, 255, 0);
  8776. border:none;
  8777. border-top:0px;
  8778. border-right:0px;
  8779. border-bottom:0px;
  8780. border-radius:0px;
  8781. border-top-left-radius:0px;
  8782. border-bottom-left-radius:0px;
  8783. -moz-box-shadow:none;
  8784. -webkit-box-shadow:none;
  8785. box-shadow:none;
  8786. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  8787. font-weight:500;
  8788. font-style:normal;
  8789. font-size:18px;
  8790. }
  8791. #u8049 {
  8792. border-width:0px;
  8793. position:absolute;
  8794. left:986px;
  8795. top:726px;
  8796. width:83px;
  8797. height:35px;
  8798. display:flex;
  8799. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  8800. font-weight:500;
  8801. font-style:normal;
  8802. font-size:18px;
  8803. }
  8804. #u8049 .text {
  8805. position:absolute;
  8806. align-self:center;
  8807. padding:5px 10px 5px 0px;
  8808. box-sizing:border-box;
  8809. width:100%;
  8810. }
  8811. #u8049_text {
  8812. border-width:0px;
  8813. white-space:nowrap;
  8814. text-transform:none;
  8815. }
  8816. #u8050_div {
  8817. border-width:0px;
  8818. position:absolute;
  8819. left:0px;
  8820. top:0px;
  8821. width:40px;
  8822. height:40px;
  8823. background:inherit;
  8824. background-color:rgba(255, 255, 255, 0);
  8825. border:none;
  8826. border-top:0px;
  8827. border-right:0px;
  8828. border-bottom:0px;
  8829. border-radius:0px;
  8830. border-top-left-radius:0px;
  8831. border-bottom-left-radius:0px;
  8832. -moz-box-shadow:none;
  8833. -webkit-box-shadow:none;
  8834. box-shadow:none;
  8835. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  8836. font-weight:500;
  8837. font-style:normal;
  8838. font-size:18px;
  8839. text-align:center;
  8840. }
  8841. #u8050 {
  8842. border-width:0px;
  8843. position:absolute;
  8844. left:1526px;
  8845. top:708px;
  8846. width:40px;
  8847. height:40px;
  8848. display:flex;
  8849. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  8850. font-weight:500;
  8851. font-style:normal;
  8852. font-size:18px;
  8853. text-align:center;
  8854. }
  8855. #u8050 .text {
  8856. position:absolute;
  8857. align-self:center;
  8858. padding:5px 10px 5px 0px;
  8859. box-sizing:border-box;
  8860. width:100%;
  8861. }
  8862. #u8050_text {
  8863. border-width:0px;
  8864. word-wrap:break-word;
  8865. text-transform:none;
  8866. }
  8867. #u8051_div {
  8868. border-width:0px;
  8869. position:absolute;
  8870. left:0px;
  8871. top:0px;
  8872. width:81px;
  8873. height:30px;
  8874. background:inherit;
  8875. background-color:rgba(255, 255, 255, 0);
  8876. border:none;
  8877. border-top:0px;
  8878. border-right:0px;
  8879. border-bottom:0px;
  8880. border-radius:0px;
  8881. border-top-left-radius:0px;
  8882. border-bottom-left-radius:0px;
  8883. -moz-box-shadow:none;
  8884. -webkit-box-shadow:none;
  8885. box-shadow:none;
  8886. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8887. font-weight:400;
  8888. font-style:normal;
  8889. font-size:14px;
  8890. color:#7F7F7F;
  8891. }
  8892. #u8051 {
  8893. border-width:0px;
  8894. position:absolute;
  8895. left:1013px;
  8896. top:826px;
  8897. width:81px;
  8898. height:30px;
  8899. display:flex;
  8900. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8901. font-weight:400;
  8902. font-style:normal;
  8903. font-size:14px;
  8904. color:#7F7F7F;
  8905. }
  8906. #u8051 .text {
  8907. position:absolute;
  8908. align-self:center;
  8909. padding:5px 10px 5px 0px;
  8910. box-sizing:border-box;
  8911. width:100%;
  8912. }
  8913. #u8051_text {
  8914. border-width:0px;
  8915. white-space:nowrap;
  8916. text-transform:none;
  8917. }
  8918. #u8052 {
  8919. border-width:0px;
  8920. position:absolute;
  8921. left:0px;
  8922. top:0px;
  8923. width:0px;
  8924. height:0px;
  8925. }
  8926. #u8053_div {
  8927. border-width:0px;
  8928. position:absolute;
  8929. left:0px;
  8930. top:0px;
  8931. width:600px;
  8932. height:50px;
  8933. background:inherit;
  8934. background-color:rgba(255, 255, 255, 1);
  8935. box-sizing:border-box;
  8936. border-width:1px;
  8937. border-style:solid;
  8938. border-color:rgba(215, 215, 215, 1);
  8939. border-radius:0px;
  8940. -moz-box-shadow:none;
  8941. -webkit-box-shadow:none;
  8942. box-shadow:none;
  8943. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8944. font-weight:400;
  8945. font-style:normal;
  8946. font-size:14px;
  8947. color:#AAAAAA;
  8948. text-align:center;
  8949. line-height:30px;
  8950. }
  8951. #u8053 {
  8952. border-width:0px;
  8953. position:absolute;
  8954. left:966px;
  8955. top:1088px;
  8956. width:600px;
  8957. height:50px;
  8958. display:flex;
  8959. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8960. font-weight:400;
  8961. font-style:normal;
  8962. font-size:14px;
  8963. color:#AAAAAA;
  8964. text-align:center;
  8965. line-height:30px;
  8966. }
  8967. #u8053 .text {
  8968. position:absolute;
  8969. align-self:center;
  8970. padding:5px 10px 5px 10px;
  8971. box-sizing:border-box;
  8972. width:100%;
  8973. }
  8974. #u8053_text {
  8975. border-width:0px;
  8976. word-wrap:break-word;
  8977. text-transform:none;
  8978. visibility:hidden;
  8979. }
  8980. #u8054_div {
  8981. border-width:0px;
  8982. position:absolute;
  8983. left:0px;
  8984. top:0px;
  8985. width:80px;
  8986. height:30px;
  8987. background:inherit;
  8988. background-color:rgba(24, 144, 255, 1);
  8989. border:none;
  8990. border-radius:4px;
  8991. -moz-box-shadow:none;
  8992. -webkit-box-shadow:none;
  8993. box-shadow:none;
  8994. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8995. font-weight:400;
  8996. font-style:normal;
  8997. font-size:14px;
  8998. color:#FFFFFF;
  8999. }
  9000. #u8054 {
  9001. border-width:0px;
  9002. position:absolute;
  9003. left:1455px;
  9004. top:1098px;
  9005. width:80px;
  9006. height:30px;
  9007. display:flex;
  9008. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9009. font-weight:400;
  9010. font-style:normal;
  9011. font-size:14px;
  9012. color:#FFFFFF;
  9013. }
  9014. #u8054 .text {
  9015. position:absolute;
  9016. align-self:center;
  9017. padding:2px 2px 2px 2px;
  9018. box-sizing:border-box;
  9019. width:100%;
  9020. }
  9021. #u8054_text {
  9022. border-width:0px;
  9023. word-wrap:break-word;
  9024. text-transform:none;
  9025. }
  9026. #u8055_div {
  9027. border-width:0px;
  9028. position:absolute;
  9029. left:0px;
  9030. top:0px;
  9031. width:80px;
  9032. height:30px;
  9033. background:inherit;
  9034. background-color:rgba(255, 255, 255, 1);
  9035. box-sizing:border-box;
  9036. border-width:1px;
  9037. border-style:solid;
  9038. border-color:rgba(170, 170, 170, 1);
  9039. border-radius:4px;
  9040. -moz-box-shadow:none;
  9041. -webkit-box-shadow:none;
  9042. box-shadow:none;
  9043. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9044. font-weight:400;
  9045. font-style:normal;
  9046. font-size:14px;
  9047. }
  9048. #u8055 {
  9049. border-width:0px;
  9050. position:absolute;
  9051. left:1355px;
  9052. top:1098px;
  9053. width:80px;
  9054. height:30px;
  9055. display:flex;
  9056. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9057. font-weight:400;
  9058. font-style:normal;
  9059. font-size:14px;
  9060. }
  9061. #u8055 .text {
  9062. position:absolute;
  9063. align-self:center;
  9064. padding:2px 2px 2px 2px;
  9065. box-sizing:border-box;
  9066. width:100%;
  9067. }
  9068. #u8055_text {
  9069. border-width:0px;
  9070. word-wrap:break-word;
  9071. text-transform:none;
  9072. }
  9073. #u8056_div {
  9074. border-width:0px;
  9075. position:absolute;
  9076. left:0px;
  9077. top:0px;
  9078. width:81px;
  9079. height:30px;
  9080. background:inherit;
  9081. background-color:rgba(255, 255, 255, 0);
  9082. border:none;
  9083. border-top:0px;
  9084. border-right:0px;
  9085. border-bottom:0px;
  9086. border-radius:0px;
  9087. border-top-left-radius:0px;
  9088. border-bottom-left-radius:0px;
  9089. -moz-box-shadow:none;
  9090. -webkit-box-shadow:none;
  9091. box-shadow:none;
  9092. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9093. font-weight:400;
  9094. font-style:normal;
  9095. font-size:14px;
  9096. color:#7F7F7F;
  9097. }
  9098. #u8056 {
  9099. border-width:0px;
  9100. position:absolute;
  9101. left:1016px;
  9102. top:866px;
  9103. width:81px;
  9104. height:30px;
  9105. display:flex;
  9106. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9107. font-weight:400;
  9108. font-style:normal;
  9109. font-size:14px;
  9110. color:#7F7F7F;
  9111. }
  9112. #u8056 .text {
  9113. position:absolute;
  9114. align-self:center;
  9115. padding:5px 10px 5px 0px;
  9116. box-sizing:border-box;
  9117. width:100%;
  9118. }
  9119. #u8056_text {
  9120. border-width:0px;
  9121. white-space:nowrap;
  9122. text-transform:none;
  9123. }
  9124. #u8057_div {
  9125. border-width:0px;
  9126. position:absolute;
  9127. left:0px;
  9128. top:0px;
  9129. width:109px;
  9130. height:30px;
  9131. background:inherit;
  9132. background-color:rgba(255, 255, 255, 0);
  9133. border:none;
  9134. border-top:0px;
  9135. border-right:0px;
  9136. border-bottom:0px;
  9137. border-radius:0px;
  9138. border-top-left-radius:0px;
  9139. border-bottom-left-radius:0px;
  9140. -moz-box-shadow:none;
  9141. -webkit-box-shadow:none;
  9142. box-shadow:none;
  9143. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9144. font-weight:400;
  9145. font-style:normal;
  9146. font-size:14px;
  9147. }
  9148. #u8057 {
  9149. border-width:0px;
  9150. position:absolute;
  9151. left:1116px;
  9152. top:866px;
  9153. width:109px;
  9154. height:30px;
  9155. display:flex;
  9156. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9157. font-weight:400;
  9158. font-style:normal;
  9159. font-size:14px;
  9160. }
  9161. #u8057 .text {
  9162. position:absolute;
  9163. align-self:center;
  9164. padding:5px 10px 5px 0px;
  9165. box-sizing:border-box;
  9166. width:100%;
  9167. }
  9168. #u8057_text {
  9169. border-width:0px;
  9170. white-space:nowrap;
  9171. text-transform:none;
  9172. }
  9173. #u8058_div {
  9174. border-width:0px;
  9175. position:absolute;
  9176. left:0px;
  9177. top:0px;
  9178. width:81px;
  9179. height:30px;
  9180. background:inherit;
  9181. background-color:rgba(255, 255, 255, 0);
  9182. border:none;
  9183. border-top:0px;
  9184. border-right:0px;
  9185. border-bottom:0px;
  9186. border-radius:0px;
  9187. border-top-left-radius:0px;
  9188. border-bottom-left-radius:0px;
  9189. -moz-box-shadow:none;
  9190. -webkit-box-shadow:none;
  9191. box-shadow:none;
  9192. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9193. font-weight:400;
  9194. font-style:normal;
  9195. font-size:14px;
  9196. }
  9197. #u8058 {
  9198. border-width:0px;
  9199. position:absolute;
  9200. left:1113px;
  9201. top:826px;
  9202. width:81px;
  9203. height:30px;
  9204. display:flex;
  9205. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9206. font-weight:400;
  9207. font-style:normal;
  9208. font-size:14px;
  9209. }
  9210. #u8058 .text {
  9211. position:absolute;
  9212. align-self:center;
  9213. padding:5px 10px 5px 0px;
  9214. box-sizing:border-box;
  9215. width:100%;
  9216. }
  9217. #u8058_text {
  9218. border-width:0px;
  9219. white-space:nowrap;
  9220. text-transform:none;
  9221. }
  9222. #u8059_div {
  9223. border-width:0px;
  9224. position:absolute;
  9225. left:0px;
  9226. top:0px;
  9227. width:81px;
  9228. height:30px;
  9229. background:inherit;
  9230. background-color:rgba(255, 255, 255, 0);
  9231. border:none;
  9232. border-top:0px;
  9233. border-right:0px;
  9234. border-bottom:0px;
  9235. border-radius:0px;
  9236. border-top-left-radius:0px;
  9237. border-bottom-left-radius:0px;
  9238. -moz-box-shadow:none;
  9239. -webkit-box-shadow:none;
  9240. box-shadow:none;
  9241. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9242. font-weight:400;
  9243. font-style:normal;
  9244. font-size:14px;
  9245. color:#7F7F7F;
  9246. }
  9247. #u8059 {
  9248. border-width:0px;
  9249. position:absolute;
  9250. left:1016px;
  9251. top:946px;
  9252. width:81px;
  9253. height:30px;
  9254. display:flex;
  9255. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9256. font-weight:400;
  9257. font-style:normal;
  9258. font-size:14px;
  9259. color:#7F7F7F;
  9260. }
  9261. #u8059 .text {
  9262. position:absolute;
  9263. align-self:center;
  9264. padding:5px 10px 5px 0px;
  9265. box-sizing:border-box;
  9266. width:100%;
  9267. }
  9268. #u8059_text {
  9269. border-width:0px;
  9270. white-space:nowrap;
  9271. text-transform:none;
  9272. }
  9273. #u8060_div {
  9274. border-width:0px;
  9275. position:absolute;
  9276. left:0px;
  9277. top:0px;
  9278. width:76px;
  9279. height:30px;
  9280. background:inherit;
  9281. background-color:rgba(255, 255, 255, 0);
  9282. border:none;
  9283. border-top:0px;
  9284. border-right:0px;
  9285. border-bottom:0px;
  9286. border-radius:0px;
  9287. border-top-left-radius:0px;
  9288. border-bottom-left-radius:0px;
  9289. -moz-box-shadow:none;
  9290. -webkit-box-shadow:none;
  9291. box-shadow:none;
  9292. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9293. font-weight:400;
  9294. font-style:normal;
  9295. font-size:14px;
  9296. }
  9297. #u8060 {
  9298. border-width:0px;
  9299. position:absolute;
  9300. left:1116px;
  9301. top:946px;
  9302. width:76px;
  9303. height:30px;
  9304. display:flex;
  9305. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9306. font-weight:400;
  9307. font-style:normal;
  9308. font-size:14px;
  9309. }
  9310. #u8060 .text {
  9311. position:absolute;
  9312. align-self:center;
  9313. padding:5px 10px 5px 0px;
  9314. box-sizing:border-box;
  9315. width:100%;
  9316. }
  9317. #u8060_text {
  9318. border-width:0px;
  9319. white-space:nowrap;
  9320. text-transform:none;
  9321. }
  9322. #u8061_div {
  9323. border-width:0px;
  9324. position:absolute;
  9325. left:0px;
  9326. top:0px;
  9327. width:88px;
  9328. height:30px;
  9329. background:inherit;
  9330. background-color:rgba(255, 255, 255, 0);
  9331. border:none;
  9332. border-top:0px;
  9333. border-right:0px;
  9334. border-bottom:0px;
  9335. border-radius:0px;
  9336. border-top-left-radius:0px;
  9337. border-bottom-left-radius:0px;
  9338. -moz-box-shadow:none;
  9339. -webkit-box-shadow:none;
  9340. box-shadow:none;
  9341. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9342. font-weight:400;
  9343. font-style:normal;
  9344. font-size:14px;
  9345. color:#7F7F7F;
  9346. }
  9347. #u8061 {
  9348. border-width:0px;
  9349. position:absolute;
  9350. left:1016px;
  9351. top:991px;
  9352. width:88px;
  9353. height:30px;
  9354. display:flex;
  9355. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9356. font-weight:400;
  9357. font-style:normal;
  9358. font-size:14px;
  9359. color:#7F7F7F;
  9360. }
  9361. #u8061 .text {
  9362. position:absolute;
  9363. align-self:center;
  9364. padding:5px 10px 5px 0px;
  9365. box-sizing:border-box;
  9366. width:100%;
  9367. }
  9368. #u8061_text {
  9369. border-width:0px;
  9370. white-space:nowrap;
  9371. text-transform:none;
  9372. }
  9373. #u8062 {
  9374. border-width:0px;
  9375. position:absolute;
  9376. left:0px;
  9377. top:0px;
  9378. width:0px;
  9379. height:0px;
  9380. }
  9381. #u8063_div {
  9382. border-width:0px;
  9383. position:absolute;
  9384. left:0px;
  9385. top:0px;
  9386. width:400px;
  9387. height:40px;
  9388. background:inherit;
  9389. background-color:rgba(255, 255, 255, 1);
  9390. box-sizing:border-box;
  9391. border-width:1px;
  9392. border-style:solid;
  9393. border-color:rgba(215, 215, 215, 1);
  9394. border-radius:4px;
  9395. -moz-box-shadow:none;
  9396. -webkit-box-shadow:none;
  9397. box-shadow:none;
  9398. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9399. font-weight:400;
  9400. font-style:normal;
  9401. font-size:14px;
  9402. text-align:right;
  9403. }
  9404. #u8063 {
  9405. border-width:0px;
  9406. position:absolute;
  9407. left:1116px;
  9408. top:986px;
  9409. width:400px;
  9410. height:40px;
  9411. display:flex;
  9412. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9413. font-weight:400;
  9414. font-style:normal;
  9415. font-size:14px;
  9416. text-align:right;
  9417. }
  9418. #u8063 .text {
  9419. position:absolute;
  9420. align-self:center;
  9421. padding:2px 2px 2px 2px;
  9422. box-sizing:border-box;
  9423. width:100%;
  9424. }
  9425. #u8063_text {
  9426. border-width:0px;
  9427. word-wrap:break-word;
  9428. text-transform:none;
  9429. }
  9430. #u8064_input {
  9431. position:absolute;
  9432. left:0px;
  9433. top:0px;
  9434. width:346px;
  9435. height:25px;
  9436. padding:2px 2px 2px 2px;
  9437. font-family:'ArialMT', 'Arial', sans-serif;
  9438. font-weight:400;
  9439. font-style:normal;
  9440. font-size:13px;
  9441. letter-spacing:normal;
  9442. color:#000000;
  9443. vertical-align:none;
  9444. text-align:left;
  9445. text-transform:none;
  9446. background-color:transparent;
  9447. border-color:transparent;
  9448. }
  9449. #u8064_input.disabled {
  9450. position:absolute;
  9451. left:0px;
  9452. top:0px;
  9453. width:346px;
  9454. height:25px;
  9455. padding:2px 2px 2px 2px;
  9456. font-family:'ArialMT', 'Arial', sans-serif;
  9457. font-weight:400;
  9458. font-style:normal;
  9459. font-size:13px;
  9460. letter-spacing:normal;
  9461. color:#000000;
  9462. vertical-align:none;
  9463. text-align:left;
  9464. text-transform:none;
  9465. background-color:transparent;
  9466. border-color:transparent;
  9467. }
  9468. #u8064_div {
  9469. border-width:0px;
  9470. position:absolute;
  9471. left:0px;
  9472. top:0px;
  9473. width:346px;
  9474. height:25px;
  9475. background:inherit;
  9476. background-color:rgba(255, 255, 255, 1);
  9477. border:none;
  9478. border-radius:0px;
  9479. -moz-box-shadow:none;
  9480. -webkit-box-shadow:none;
  9481. box-shadow:none;
  9482. }
  9483. #u8064 {
  9484. border-width:0px;
  9485. position:absolute;
  9486. left:1122px;
  9487. top:994px;
  9488. width:346px;
  9489. height:25px;
  9490. display:flex;
  9491. }
  9492. #u8064 .text {
  9493. position:absolute;
  9494. align-self:center;
  9495. padding:2px 2px 2px 2px;
  9496. box-sizing:border-box;
  9497. width:100%;
  9498. }
  9499. #u8064_div.disabled {
  9500. border-width:0px;
  9501. position:absolute;
  9502. left:0px;
  9503. top:0px;
  9504. width:346px;
  9505. height:25px;
  9506. background:inherit;
  9507. background-color:rgba(240, 240, 240, 1);
  9508. border:none;
  9509. border-radius:0px;
  9510. -moz-box-shadow:none;
  9511. -webkit-box-shadow:none;
  9512. box-shadow:none;
  9513. }
  9514. #u8064.disabled {
  9515. }
  9516. #u8065_div {
  9517. border-width:0px;
  9518. position:absolute;
  9519. left:0px;
  9520. top:0px;
  9521. width:81px;
  9522. height:30px;
  9523. background:inherit;
  9524. background-color:rgba(255, 255, 255, 0);
  9525. border:none;
  9526. border-top:0px;
  9527. border-right:0px;
  9528. border-bottom:0px;
  9529. border-radius:0px;
  9530. border-top-left-radius:0px;
  9531. border-bottom-left-radius:0px;
  9532. -moz-box-shadow:none;
  9533. -webkit-box-shadow:none;
  9534. box-shadow:none;
  9535. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9536. font-weight:400;
  9537. font-style:normal;
  9538. font-size:14px;
  9539. color:#7F7F7F;
  9540. }
  9541. #u8065 {
  9542. border-width:0px;
  9543. position:absolute;
  9544. left:1016px;
  9545. top:906px;
  9546. width:81px;
  9547. height:30px;
  9548. display:flex;
  9549. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9550. font-weight:400;
  9551. font-style:normal;
  9552. font-size:14px;
  9553. color:#7F7F7F;
  9554. }
  9555. #u8065 .text {
  9556. position:absolute;
  9557. align-self:center;
  9558. padding:5px 10px 5px 0px;
  9559. box-sizing:border-box;
  9560. width:100%;
  9561. }
  9562. #u8065_text {
  9563. border-width:0px;
  9564. white-space:nowrap;
  9565. text-transform:none;
  9566. }
  9567. #u8066_div {
  9568. border-width:0px;
  9569. position:absolute;
  9570. left:0px;
  9571. top:0px;
  9572. width:81px;
  9573. height:30px;
  9574. background:inherit;
  9575. background-color:rgba(255, 255, 255, 0);
  9576. border:none;
  9577. border-top:0px;
  9578. border-right:0px;
  9579. border-bottom:0px;
  9580. border-radius:0px;
  9581. border-top-left-radius:0px;
  9582. border-bottom-left-radius:0px;
  9583. -moz-box-shadow:none;
  9584. -webkit-box-shadow:none;
  9585. box-shadow:none;
  9586. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9587. font-weight:400;
  9588. font-style:normal;
  9589. font-size:14px;
  9590. }
  9591. #u8066 {
  9592. border-width:0px;
  9593. position:absolute;
  9594. left:1116px;
  9595. top:906px;
  9596. width:81px;
  9597. height:30px;
  9598. display:flex;
  9599. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9600. font-weight:400;
  9601. font-style:normal;
  9602. font-size:14px;
  9603. }
  9604. #u8066 .text {
  9605. position:absolute;
  9606. align-self:center;
  9607. padding:5px 10px 5px 0px;
  9608. box-sizing:border-box;
  9609. width:100%;
  9610. }
  9611. #u8066_text {
  9612. border-width:0px;
  9613. white-space:nowrap;
  9614. text-transform:none;
  9615. }
  9616. #u8067_div {
  9617. border-width:0px;
  9618. position:absolute;
  9619. left:0px;
  9620. top:0px;
  9621. width:95px;
  9622. height:30px;
  9623. background:inherit;
  9624. background-color:rgba(255, 255, 255, 0);
  9625. border:none;
  9626. border-top:0px;
  9627. border-right:0px;
  9628. border-bottom:0px;
  9629. border-radius:0px;
  9630. border-top-left-radius:0px;
  9631. border-bottom-left-radius:0px;
  9632. -moz-box-shadow:none;
  9633. -webkit-box-shadow:none;
  9634. box-shadow:none;
  9635. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9636. font-weight:400;
  9637. font-style:normal;
  9638. font-size:14px;
  9639. color:#7F7F7F;
  9640. }
  9641. #u8067 {
  9642. border-width:0px;
  9643. position:absolute;
  9644. left:1013px;
  9645. top:786px;
  9646. width:95px;
  9647. height:30px;
  9648. display:flex;
  9649. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9650. font-weight:400;
  9651. font-style:normal;
  9652. font-size:14px;
  9653. color:#7F7F7F;
  9654. }
  9655. #u8067 .text {
  9656. position:absolute;
  9657. align-self:center;
  9658. padding:5px 10px 5px 0px;
  9659. box-sizing:border-box;
  9660. width:100%;
  9661. }
  9662. #u8067_text {
  9663. border-width:0px;
  9664. white-space:nowrap;
  9665. text-transform:none;
  9666. }
  9667. #u8068_div {
  9668. border-width:0px;
  9669. position:absolute;
  9670. left:0px;
  9671. top:0px;
  9672. width:151px;
  9673. height:30px;
  9674. background:inherit;
  9675. background-color:rgba(255, 255, 255, 0);
  9676. border:none;
  9677. border-top:0px;
  9678. border-right:0px;
  9679. border-bottom:0px;
  9680. border-radius:0px;
  9681. border-top-left-radius:0px;
  9682. border-bottom-left-radius:0px;
  9683. -moz-box-shadow:none;
  9684. -webkit-box-shadow:none;
  9685. box-shadow:none;
  9686. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9687. font-weight:400;
  9688. font-style:normal;
  9689. font-size:14px;
  9690. }
  9691. #u8068 {
  9692. border-width:0px;
  9693. position:absolute;
  9694. left:1113px;
  9695. top:786px;
  9696. width:151px;
  9697. height:30px;
  9698. display:flex;
  9699. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9700. font-weight:400;
  9701. font-style:normal;
  9702. font-size:14px;
  9703. }
  9704. #u8068 .text {
  9705. position:absolute;
  9706. align-self:center;
  9707. padding:5px 10px 5px 0px;
  9708. box-sizing:border-box;
  9709. width:100%;
  9710. }
  9711. #u8068_text {
  9712. border-width:0px;
  9713. white-space:nowrap;
  9714. text-transform:none;
  9715. }
  9716. #u8069 {
  9717. border-width:0px;
  9718. position:absolute;
  9719. left:0px;
  9720. top:0px;
  9721. width:0px;
  9722. height:0px;
  9723. }
  9724. #u8070_div {
  9725. border-width:0px;
  9726. position:absolute;
  9727. left:0px;
  9728. top:0px;
  9729. width:600px;
  9730. height:416px;
  9731. background:inherit;
  9732. background-color:rgba(255, 255, 255, 1);
  9733. box-sizing:border-box;
  9734. border-width:1px;
  9735. border-style:solid;
  9736. border-color:rgba(215, 215, 215, 1);
  9737. border-radius:0px;
  9738. -moz-box-shadow:none;
  9739. -webkit-box-shadow:none;
  9740. box-shadow:none;
  9741. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9742. font-weight:400;
  9743. font-style:normal;
  9744. font-size:14px;
  9745. color:#AAAAAA;
  9746. text-align:center;
  9747. line-height:30px;
  9748. }
  9749. #u8070 {
  9750. border-width:0px;
  9751. position:absolute;
  9752. left:346px;
  9753. top:708px;
  9754. width:600px;
  9755. height:416px;
  9756. display:flex;
  9757. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9758. font-weight:400;
  9759. font-style:normal;
  9760. font-size:14px;
  9761. color:#AAAAAA;
  9762. text-align:center;
  9763. line-height:30px;
  9764. }
  9765. #u8070 .text {
  9766. position:absolute;
  9767. align-self:center;
  9768. padding:5px 10px 5px 10px;
  9769. box-sizing:border-box;
  9770. width:100%;
  9771. }
  9772. #u8070_text {
  9773. border-width:0px;
  9774. word-wrap:break-word;
  9775. text-transform:none;
  9776. visibility:hidden;
  9777. }
  9778. #u8071_div {
  9779. border-width:0px;
  9780. position:absolute;
  9781. left:0px;
  9782. top:0px;
  9783. width:83px;
  9784. height:35px;
  9785. background:inherit;
  9786. background-color:rgba(255, 255, 255, 0);
  9787. border:none;
  9788. border-top:0px;
  9789. border-right:0px;
  9790. border-bottom:0px;
  9791. border-radius:0px;
  9792. border-top-left-radius:0px;
  9793. border-bottom-left-radius:0px;
  9794. -moz-box-shadow:none;
  9795. -webkit-box-shadow:none;
  9796. box-shadow:none;
  9797. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  9798. font-weight:500;
  9799. font-style:normal;
  9800. font-size:18px;
  9801. }
  9802. #u8071 {
  9803. border-width:0px;
  9804. position:absolute;
  9805. left:366px;
  9806. top:726px;
  9807. width:83px;
  9808. height:35px;
  9809. display:flex;
  9810. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  9811. font-weight:500;
  9812. font-style:normal;
  9813. font-size:18px;
  9814. }
  9815. #u8071 .text {
  9816. position:absolute;
  9817. align-self:center;
  9818. padding:5px 10px 5px 0px;
  9819. box-sizing:border-box;
  9820. width:100%;
  9821. }
  9822. #u8071_text {
  9823. border-width:0px;
  9824. white-space:nowrap;
  9825. text-transform:none;
  9826. }
  9827. #u8072_div {
  9828. border-width:0px;
  9829. position:absolute;
  9830. left:0px;
  9831. top:0px;
  9832. width:40px;
  9833. height:40px;
  9834. background:inherit;
  9835. background-color:rgba(255, 255, 255, 0);
  9836. border:none;
  9837. border-top:0px;
  9838. border-right:0px;
  9839. border-bottom:0px;
  9840. border-radius:0px;
  9841. border-top-left-radius:0px;
  9842. border-bottom-left-radius:0px;
  9843. -moz-box-shadow:none;
  9844. -webkit-box-shadow:none;
  9845. box-shadow:none;
  9846. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  9847. font-weight:500;
  9848. font-style:normal;
  9849. font-size:18px;
  9850. text-align:center;
  9851. }
  9852. #u8072 {
  9853. border-width:0px;
  9854. position:absolute;
  9855. left:906px;
  9856. top:708px;
  9857. width:40px;
  9858. height:40px;
  9859. display:flex;
  9860. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  9861. font-weight:500;
  9862. font-style:normal;
  9863. font-size:18px;
  9864. text-align:center;
  9865. }
  9866. #u8072 .text {
  9867. position:absolute;
  9868. align-self:center;
  9869. padding:5px 10px 5px 0px;
  9870. box-sizing:border-box;
  9871. width:100%;
  9872. }
  9873. #u8072_text {
  9874. border-width:0px;
  9875. word-wrap:break-word;
  9876. text-transform:none;
  9877. }
  9878. #u8073_div {
  9879. border-width:0px;
  9880. position:absolute;
  9881. left:0px;
  9882. top:0px;
  9883. width:95px;
  9884. height:30px;
  9885. background:inherit;
  9886. background-color:rgba(255, 255, 255, 0);
  9887. border:none;
  9888. border-top:0px;
  9889. border-right:0px;
  9890. border-bottom:0px;
  9891. border-radius:0px;
  9892. border-top-left-radius:0px;
  9893. border-bottom-left-radius:0px;
  9894. -moz-box-shadow:none;
  9895. -webkit-box-shadow:none;
  9896. box-shadow:none;
  9897. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9898. font-weight:400;
  9899. font-style:normal;
  9900. font-size:14px;
  9901. color:#7F7F7F;
  9902. }
  9903. #u8073 {
  9904. border-width:0px;
  9905. position:absolute;
  9906. left:396px;
  9907. top:790px;
  9908. width:95px;
  9909. height:30px;
  9910. display:flex;
  9911. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9912. font-weight:400;
  9913. font-style:normal;
  9914. font-size:14px;
  9915. color:#7F7F7F;
  9916. }
  9917. #u8073 .text {
  9918. position:absolute;
  9919. align-self:center;
  9920. padding:5px 10px 5px 0px;
  9921. box-sizing:border-box;
  9922. width:100%;
  9923. }
  9924. #u8073_text {
  9925. border-width:0px;
  9926. white-space:nowrap;
  9927. text-transform:none;
  9928. }
  9929. #u8074 {
  9930. border-width:0px;
  9931. position:absolute;
  9932. left:0px;
  9933. top:0px;
  9934. width:0px;
  9935. height:0px;
  9936. }
  9937. #u8075_div {
  9938. border-width:0px;
  9939. position:absolute;
  9940. left:0px;
  9941. top:0px;
  9942. width:600px;
  9943. height:50px;
  9944. background:inherit;
  9945. background-color:rgba(255, 255, 255, 1);
  9946. box-sizing:border-box;
  9947. border-width:1px;
  9948. border-style:solid;
  9949. border-color:rgba(215, 215, 215, 1);
  9950. border-radius:0px;
  9951. -moz-box-shadow:none;
  9952. -webkit-box-shadow:none;
  9953. box-shadow:none;
  9954. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9955. font-weight:400;
  9956. font-style:normal;
  9957. font-size:14px;
  9958. color:#AAAAAA;
  9959. text-align:center;
  9960. line-height:30px;
  9961. }
  9962. #u8075 {
  9963. border-width:0px;
  9964. position:absolute;
  9965. left:346px;
  9966. top:1074px;
  9967. width:600px;
  9968. height:50px;
  9969. display:flex;
  9970. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9971. font-weight:400;
  9972. font-style:normal;
  9973. font-size:14px;
  9974. color:#AAAAAA;
  9975. text-align:center;
  9976. line-height:30px;
  9977. }
  9978. #u8075 .text {
  9979. position:absolute;
  9980. align-self:center;
  9981. padding:5px 10px 5px 10px;
  9982. box-sizing:border-box;
  9983. width:100%;
  9984. }
  9985. #u8075_text {
  9986. border-width:0px;
  9987. word-wrap:break-word;
  9988. text-transform:none;
  9989. visibility:hidden;
  9990. }
  9991. #u8076_div {
  9992. border-width:0px;
  9993. position:absolute;
  9994. left:0px;
  9995. top:0px;
  9996. width:80px;
  9997. height:30px;
  9998. background:inherit;
  9999. background-color:rgba(24, 144, 255, 1);
  10000. border:none;
  10001. border-radius:4px;
  10002. -moz-box-shadow:none;
  10003. -webkit-box-shadow:none;
  10004. box-shadow:none;
  10005. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10006. font-weight:400;
  10007. font-style:normal;
  10008. font-size:14px;
  10009. color:#FFFFFF;
  10010. }
  10011. #u8076 {
  10012. border-width:0px;
  10013. position:absolute;
  10014. left:835px;
  10015. top:1084px;
  10016. width:80px;
  10017. height:30px;
  10018. display:flex;
  10019. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10020. font-weight:400;
  10021. font-style:normal;
  10022. font-size:14px;
  10023. color:#FFFFFF;
  10024. }
  10025. #u8076 .text {
  10026. position:absolute;
  10027. align-self:center;
  10028. padding:2px 2px 2px 2px;
  10029. box-sizing:border-box;
  10030. width:100%;
  10031. }
  10032. #u8076_text {
  10033. border-width:0px;
  10034. word-wrap:break-word;
  10035. text-transform:none;
  10036. }
  10037. #u8077_div {
  10038. border-width:0px;
  10039. position:absolute;
  10040. left:0px;
  10041. top:0px;
  10042. width:80px;
  10043. height:30px;
  10044. background:inherit;
  10045. background-color:rgba(255, 255, 255, 1);
  10046. box-sizing:border-box;
  10047. border-width:1px;
  10048. border-style:solid;
  10049. border-color:rgba(170, 170, 170, 1);
  10050. border-radius:4px;
  10051. -moz-box-shadow:none;
  10052. -webkit-box-shadow:none;
  10053. box-shadow:none;
  10054. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10055. font-weight:400;
  10056. font-style:normal;
  10057. font-size:14px;
  10058. }
  10059. #u8077 {
  10060. border-width:0px;
  10061. position:absolute;
  10062. left:735px;
  10063. top:1084px;
  10064. width:80px;
  10065. height:30px;
  10066. display:flex;
  10067. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10068. font-weight:400;
  10069. font-style:normal;
  10070. font-size:14px;
  10071. }
  10072. #u8077 .text {
  10073. position:absolute;
  10074. align-self:center;
  10075. padding:2px 2px 2px 2px;
  10076. box-sizing:border-box;
  10077. width:100%;
  10078. }
  10079. #u8077_text {
  10080. border-width:0px;
  10081. word-wrap:break-word;
  10082. text-transform:none;
  10083. }
  10084. #u8078_div {
  10085. border-width:0px;
  10086. position:absolute;
  10087. left:0px;
  10088. top:0px;
  10089. width:81px;
  10090. height:30px;
  10091. background:inherit;
  10092. background-color:rgba(255, 255, 255, 0);
  10093. border:none;
  10094. border-top:0px;
  10095. border-right:0px;
  10096. border-bottom:0px;
  10097. border-radius:0px;
  10098. border-top-left-radius:0px;
  10099. border-bottom-left-radius:0px;
  10100. -moz-box-shadow:none;
  10101. -webkit-box-shadow:none;
  10102. box-shadow:none;
  10103. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10104. font-weight:400;
  10105. font-style:normal;
  10106. font-size:14px;
  10107. color:#7F7F7F;
  10108. }
  10109. #u8078 {
  10110. border-width:0px;
  10111. position:absolute;
  10112. left:396px;
  10113. top:870px;
  10114. width:81px;
  10115. height:30px;
  10116. display:flex;
  10117. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10118. font-weight:400;
  10119. font-style:normal;
  10120. font-size:14px;
  10121. color:#7F7F7F;
  10122. }
  10123. #u8078 .text {
  10124. position:absolute;
  10125. align-self:center;
  10126. padding:5px 10px 5px 0px;
  10127. box-sizing:border-box;
  10128. width:100%;
  10129. }
  10130. #u8078_text {
  10131. border-width:0px;
  10132. white-space:nowrap;
  10133. text-transform:none;
  10134. }
  10135. #u8079_div {
  10136. border-width:0px;
  10137. position:absolute;
  10138. left:0px;
  10139. top:0px;
  10140. width:151px;
  10141. height:30px;
  10142. background:inherit;
  10143. background-color:rgba(255, 255, 255, 0);
  10144. border:none;
  10145. border-top:0px;
  10146. border-right:0px;
  10147. border-bottom:0px;
  10148. border-radius:0px;
  10149. border-top-left-radius:0px;
  10150. border-bottom-left-radius:0px;
  10151. -moz-box-shadow:none;
  10152. -webkit-box-shadow:none;
  10153. box-shadow:none;
  10154. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10155. font-weight:400;
  10156. font-style:normal;
  10157. font-size:14px;
  10158. }
  10159. #u8079 {
  10160. border-width:0px;
  10161. position:absolute;
  10162. left:496px;
  10163. top:870px;
  10164. width:151px;
  10165. height:30px;
  10166. display:flex;
  10167. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10168. font-weight:400;
  10169. font-style:normal;
  10170. font-size:14px;
  10171. }
  10172. #u8079 .text {
  10173. position:absolute;
  10174. align-self:center;
  10175. padding:5px 10px 5px 0px;
  10176. box-sizing:border-box;
  10177. width:100%;
  10178. }
  10179. #u8079_text {
  10180. border-width:0px;
  10181. white-space:nowrap;
  10182. text-transform:none;
  10183. }
  10184. #u8080_div {
  10185. border-width:0px;
  10186. position:absolute;
  10187. left:0px;
  10188. top:0px;
  10189. width:109px;
  10190. height:30px;
  10191. background:inherit;
  10192. background-color:rgba(255, 255, 255, 0);
  10193. border:none;
  10194. border-top:0px;
  10195. border-right:0px;
  10196. border-bottom:0px;
  10197. border-radius:0px;
  10198. border-top-left-radius:0px;
  10199. border-bottom-left-radius:0px;
  10200. -moz-box-shadow:none;
  10201. -webkit-box-shadow:none;
  10202. box-shadow:none;
  10203. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10204. font-weight:400;
  10205. font-style:normal;
  10206. font-size:14px;
  10207. }
  10208. #u8080 {
  10209. border-width:0px;
  10210. position:absolute;
  10211. left:496px;
  10212. top:790px;
  10213. width:109px;
  10214. height:30px;
  10215. display:flex;
  10216. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10217. font-weight:400;
  10218. font-style:normal;
  10219. font-size:14px;
  10220. }
  10221. #u8080 .text {
  10222. position:absolute;
  10223. align-self:center;
  10224. padding:5px 10px 5px 0px;
  10225. box-sizing:border-box;
  10226. width:100%;
  10227. }
  10228. #u8080_text {
  10229. border-width:0px;
  10230. white-space:nowrap;
  10231. text-transform:none;
  10232. }
  10233. #u8081_div {
  10234. border-width:0px;
  10235. position:absolute;
  10236. left:0px;
  10237. top:0px;
  10238. width:81px;
  10239. height:30px;
  10240. background:inherit;
  10241. background-color:rgba(255, 255, 255, 0);
  10242. border:none;
  10243. border-top:0px;
  10244. border-right:0px;
  10245. border-bottom:0px;
  10246. border-radius:0px;
  10247. border-top-left-radius:0px;
  10248. border-bottom-left-radius:0px;
  10249. -moz-box-shadow:none;
  10250. -webkit-box-shadow:none;
  10251. box-shadow:none;
  10252. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10253. font-weight:400;
  10254. font-style:normal;
  10255. font-size:14px;
  10256. color:#7F7F7F;
  10257. }
  10258. #u8081 {
  10259. border-width:0px;
  10260. position:absolute;
  10261. left:396px;
  10262. top:910px;
  10263. width:81px;
  10264. height:30px;
  10265. display:flex;
  10266. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10267. font-weight:400;
  10268. font-style:normal;
  10269. font-size:14px;
  10270. color:#7F7F7F;
  10271. }
  10272. #u8081 .text {
  10273. position:absolute;
  10274. align-self:center;
  10275. padding:5px 10px 5px 0px;
  10276. box-sizing:border-box;
  10277. width:100%;
  10278. }
  10279. #u8081_text {
  10280. border-width:0px;
  10281. white-space:nowrap;
  10282. text-transform:none;
  10283. }
  10284. #u8082_div {
  10285. border-width:0px;
  10286. position:absolute;
  10287. left:0px;
  10288. top:0px;
  10289. width:81px;
  10290. height:30px;
  10291. background:inherit;
  10292. background-color:rgba(255, 255, 255, 0);
  10293. border:none;
  10294. border-top:0px;
  10295. border-right:0px;
  10296. border-bottom:0px;
  10297. border-radius:0px;
  10298. border-top-left-radius:0px;
  10299. border-bottom-left-radius:0px;
  10300. -moz-box-shadow:none;
  10301. -webkit-box-shadow:none;
  10302. box-shadow:none;
  10303. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10304. font-weight:400;
  10305. font-style:normal;
  10306. font-size:14px;
  10307. }
  10308. #u8082 {
  10309. border-width:0px;
  10310. position:absolute;
  10311. left:496px;
  10312. top:910px;
  10313. width:81px;
  10314. height:30px;
  10315. display:flex;
  10316. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10317. font-weight:400;
  10318. font-style:normal;
  10319. font-size:14px;
  10320. }
  10321. #u8082 .text {
  10322. position:absolute;
  10323. align-self:center;
  10324. padding:5px 10px 5px 0px;
  10325. box-sizing:border-box;
  10326. width:100%;
  10327. }
  10328. #u8082_text {
  10329. border-width:0px;
  10330. white-space:nowrap;
  10331. text-transform:none;
  10332. }
  10333. #u8083_div {
  10334. border-width:0px;
  10335. position:absolute;
  10336. left:0px;
  10337. top:0px;
  10338. width:88px;
  10339. height:30px;
  10340. background:inherit;
  10341. background-color:rgba(255, 255, 255, 0);
  10342. border:none;
  10343. border-top:0px;
  10344. border-right:0px;
  10345. border-bottom:0px;
  10346. border-radius:0px;
  10347. border-top-left-radius:0px;
  10348. border-bottom-left-radius:0px;
  10349. -moz-box-shadow:none;
  10350. -webkit-box-shadow:none;
  10351. box-shadow:none;
  10352. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10353. font-weight:400;
  10354. font-style:normal;
  10355. font-size:14px;
  10356. color:#7F7F7F;
  10357. }
  10358. #u8083 {
  10359. border-width:0px;
  10360. position:absolute;
  10361. left:396px;
  10362. top:995px;
  10363. width:88px;
  10364. height:30px;
  10365. display:flex;
  10366. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10367. font-weight:400;
  10368. font-style:normal;
  10369. font-size:14px;
  10370. color:#7F7F7F;
  10371. }
  10372. #u8083 .text {
  10373. position:absolute;
  10374. align-self:center;
  10375. padding:5px 10px 5px 0px;
  10376. box-sizing:border-box;
  10377. width:100%;
  10378. }
  10379. #u8083_text {
  10380. border-width:0px;
  10381. white-space:nowrap;
  10382. text-transform:none;
  10383. }
  10384. #u8084 {
  10385. border-width:0px;
  10386. position:absolute;
  10387. left:0px;
  10388. top:0px;
  10389. width:0px;
  10390. height:0px;
  10391. }
  10392. #u8085_div {
  10393. border-width:0px;
  10394. position:absolute;
  10395. left:0px;
  10396. top:0px;
  10397. width:400px;
  10398. height:40px;
  10399. background:inherit;
  10400. background-color:rgba(255, 255, 255, 1);
  10401. box-sizing:border-box;
  10402. border-width:1px;
  10403. border-style:solid;
  10404. border-color:rgba(215, 215, 215, 1);
  10405. border-radius:4px;
  10406. -moz-box-shadow:none;
  10407. -webkit-box-shadow:none;
  10408. box-shadow:none;
  10409. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10410. font-weight:400;
  10411. font-style:normal;
  10412. font-size:14px;
  10413. text-align:right;
  10414. }
  10415. #u8085 {
  10416. border-width:0px;
  10417. position:absolute;
  10418. left:496px;
  10419. top:990px;
  10420. width:400px;
  10421. height:40px;
  10422. display:flex;
  10423. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10424. font-weight:400;
  10425. font-style:normal;
  10426. font-size:14px;
  10427. text-align:right;
  10428. }
  10429. #u8085 .text {
  10430. position:absolute;
  10431. align-self:center;
  10432. padding:2px 2px 2px 2px;
  10433. box-sizing:border-box;
  10434. width:100%;
  10435. }
  10436. #u8085_text {
  10437. border-width:0px;
  10438. word-wrap:break-word;
  10439. text-transform:none;
  10440. }
  10441. #u8086_input {
  10442. position:absolute;
  10443. left:0px;
  10444. top:0px;
  10445. width:346px;
  10446. height:25px;
  10447. padding:2px 2px 2px 2px;
  10448. font-family:'ArialMT', 'Arial', sans-serif;
  10449. font-weight:400;
  10450. font-style:normal;
  10451. font-size:13px;
  10452. letter-spacing:normal;
  10453. color:#000000;
  10454. vertical-align:none;
  10455. text-align:left;
  10456. text-transform:none;
  10457. background-color:transparent;
  10458. border-color:transparent;
  10459. }
  10460. #u8086_input.disabled {
  10461. position:absolute;
  10462. left:0px;
  10463. top:0px;
  10464. width:346px;
  10465. height:25px;
  10466. padding:2px 2px 2px 2px;
  10467. font-family:'ArialMT', 'Arial', sans-serif;
  10468. font-weight:400;
  10469. font-style:normal;
  10470. font-size:13px;
  10471. letter-spacing:normal;
  10472. color:#000000;
  10473. vertical-align:none;
  10474. text-align:left;
  10475. text-transform:none;
  10476. background-color:transparent;
  10477. border-color:transparent;
  10478. }
  10479. #u8086_div {
  10480. border-width:0px;
  10481. position:absolute;
  10482. left:0px;
  10483. top:0px;
  10484. width:346px;
  10485. height:25px;
  10486. background:inherit;
  10487. background-color:rgba(255, 255, 255, 1);
  10488. border:none;
  10489. border-radius:0px;
  10490. -moz-box-shadow:none;
  10491. -webkit-box-shadow:none;
  10492. box-shadow:none;
  10493. }
  10494. #u8086 {
  10495. border-width:0px;
  10496. position:absolute;
  10497. left:502px;
  10498. top:998px;
  10499. width:346px;
  10500. height:25px;
  10501. display:flex;
  10502. }
  10503. #u8086 .text {
  10504. position:absolute;
  10505. align-self:center;
  10506. padding:2px 2px 2px 2px;
  10507. box-sizing:border-box;
  10508. width:100%;
  10509. }
  10510. #u8086_div.disabled {
  10511. border-width:0px;
  10512. position:absolute;
  10513. left:0px;
  10514. top:0px;
  10515. width:346px;
  10516. height:25px;
  10517. background:inherit;
  10518. background-color:rgba(240, 240, 240, 1);
  10519. border:none;
  10520. border-radius:0px;
  10521. -moz-box-shadow:none;
  10522. -webkit-box-shadow:none;
  10523. box-shadow:none;
  10524. }
  10525. #u8086.disabled {
  10526. }
  10527. #u8087_div {
  10528. border-width:0px;
  10529. position:absolute;
  10530. left:0px;
  10531. top:0px;
  10532. width:81px;
  10533. height:30px;
  10534. background:inherit;
  10535. background-color:rgba(255, 255, 255, 0);
  10536. border:none;
  10537. border-top:0px;
  10538. border-right:0px;
  10539. border-bottom:0px;
  10540. border-radius:0px;
  10541. border-top-left-radius:0px;
  10542. border-bottom-left-radius:0px;
  10543. -moz-box-shadow:none;
  10544. -webkit-box-shadow:none;
  10545. box-shadow:none;
  10546. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10547. font-weight:400;
  10548. font-style:normal;
  10549. font-size:14px;
  10550. color:#7F7F7F;
  10551. }
  10552. #u8087 {
  10553. border-width:0px;
  10554. position:absolute;
  10555. left:396px;
  10556. top:830px;
  10557. width:81px;
  10558. height:30px;
  10559. display:flex;
  10560. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10561. font-weight:400;
  10562. font-style:normal;
  10563. font-size:14px;
  10564. color:#7F7F7F;
  10565. }
  10566. #u8087 .text {
  10567. position:absolute;
  10568. align-self:center;
  10569. padding:5px 10px 5px 0px;
  10570. box-sizing:border-box;
  10571. width:100%;
  10572. }
  10573. #u8087_text {
  10574. border-width:0px;
  10575. white-space:nowrap;
  10576. text-transform:none;
  10577. }
  10578. #u8088_div {
  10579. border-width:0px;
  10580. position:absolute;
  10581. left:0px;
  10582. top:0px;
  10583. width:81px;
  10584. height:30px;
  10585. background:inherit;
  10586. background-color:rgba(255, 255, 255, 0);
  10587. border:none;
  10588. border-top:0px;
  10589. border-right:0px;
  10590. border-bottom:0px;
  10591. border-radius:0px;
  10592. border-top-left-radius:0px;
  10593. border-bottom-left-radius:0px;
  10594. -moz-box-shadow:none;
  10595. -webkit-box-shadow:none;
  10596. box-shadow:none;
  10597. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10598. font-weight:400;
  10599. font-style:normal;
  10600. font-size:14px;
  10601. }
  10602. #u8088 {
  10603. border-width:0px;
  10604. position:absolute;
  10605. left:496px;
  10606. top:830px;
  10607. width:81px;
  10608. height:30px;
  10609. display:flex;
  10610. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10611. font-weight:400;
  10612. font-style:normal;
  10613. font-size:14px;
  10614. }
  10615. #u8088 .text {
  10616. position:absolute;
  10617. align-self:center;
  10618. padding:5px 10px 5px 0px;
  10619. box-sizing:border-box;
  10620. width:100%;
  10621. }
  10622. #u8088_text {
  10623. border-width:0px;
  10624. white-space:nowrap;
  10625. text-transform:none;
  10626. }
  10627. #u8089_div {
  10628. border-width:0px;
  10629. position:absolute;
  10630. left:0px;
  10631. top:0px;
  10632. width:81px;
  10633. height:30px;
  10634. background:inherit;
  10635. background-color:rgba(255, 255, 255, 0);
  10636. border:none;
  10637. border-top:0px;
  10638. border-right:0px;
  10639. border-bottom:0px;
  10640. border-radius:0px;
  10641. border-top-left-radius:0px;
  10642. border-bottom-left-radius:0px;
  10643. -moz-box-shadow:none;
  10644. -webkit-box-shadow:none;
  10645. box-shadow:none;
  10646. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10647. font-weight:400;
  10648. font-style:normal;
  10649. font-size:14px;
  10650. color:#7F7F7F;
  10651. }
  10652. #u8089 {
  10653. border-width:0px;
  10654. position:absolute;
  10655. left:396px;
  10656. top:950px;
  10657. width:81px;
  10658. height:30px;
  10659. display:flex;
  10660. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10661. font-weight:400;
  10662. font-style:normal;
  10663. font-size:14px;
  10664. color:#7F7F7F;
  10665. }
  10666. #u8089 .text {
  10667. position:absolute;
  10668. align-self:center;
  10669. padding:5px 10px 5px 0px;
  10670. box-sizing:border-box;
  10671. width:100%;
  10672. }
  10673. #u8089_text {
  10674. border-width:0px;
  10675. white-space:nowrap;
  10676. text-transform:none;
  10677. }
  10678. #u8090_div {
  10679. border-width:0px;
  10680. position:absolute;
  10681. left:0px;
  10682. top:0px;
  10683. width:76px;
  10684. height:30px;
  10685. background:inherit;
  10686. background-color:rgba(255, 255, 255, 0);
  10687. border:none;
  10688. border-top:0px;
  10689. border-right:0px;
  10690. border-bottom:0px;
  10691. border-radius:0px;
  10692. border-top-left-radius:0px;
  10693. border-bottom-left-radius:0px;
  10694. -moz-box-shadow:none;
  10695. -webkit-box-shadow:none;
  10696. box-shadow:none;
  10697. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10698. font-weight:400;
  10699. font-style:normal;
  10700. font-size:14px;
  10701. }
  10702. #u8090 {
  10703. border-width:0px;
  10704. position:absolute;
  10705. left:496px;
  10706. top:950px;
  10707. width:76px;
  10708. height:30px;
  10709. display:flex;
  10710. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10711. font-weight:400;
  10712. font-style:normal;
  10713. font-size:14px;
  10714. }
  10715. #u8090 .text {
  10716. position:absolute;
  10717. align-self:center;
  10718. padding:5px 10px 5px 0px;
  10719. box-sizing:border-box;
  10720. width:100%;
  10721. }
  10722. #u8090_text {
  10723. border-width:0px;
  10724. white-space:nowrap;
  10725. text-transform:none;
  10726. }
  10727. #u8091 {
  10728. border-width:0px;
  10729. position:absolute;
  10730. left:0px;
  10731. top:0px;
  10732. width:0px;
  10733. height:0px;
  10734. }
  10735. #u8092_div {
  10736. border-width:0px;
  10737. position:absolute;
  10738. left:0px;
  10739. top:0px;
  10740. width:200px;
  10741. height:1180px;
  10742. background:inherit;
  10743. background-color:rgba(255, 255, 255, 1);
  10744. border:none;
  10745. border-radius:0px;
  10746. -moz-box-shadow:none;
  10747. -webkit-box-shadow:none;
  10748. box-shadow:none;
  10749. }
  10750. #u8092 {
  10751. border-width:0px;
  10752. position:absolute;
  10753. left:120px;
  10754. top:50px;
  10755. width:200px;
  10756. height:1180px;
  10757. display:flex;
  10758. }
  10759. #u8092 .text {
  10760. position:absolute;
  10761. align-self:center;
  10762. padding:2px 2px 2px 2px;
  10763. box-sizing:border-box;
  10764. width:100%;
  10765. }
  10766. #u8092_text {
  10767. border-width:0px;
  10768. word-wrap:break-word;
  10769. text-transform:none;
  10770. visibility:hidden;
  10771. }
  10772. #u8093_div {
  10773. border-width:0px;
  10774. position:absolute;
  10775. left:0px;
  10776. top:0px;
  10777. width:200px;
  10778. height:60px;
  10779. background:inherit;
  10780. background-color:rgba(224, 231, 247, 1);
  10781. border:none;
  10782. border-radius:0px;
  10783. -moz-box-shadow:none;
  10784. -webkit-box-shadow:none;
  10785. box-shadow:none;
  10786. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  10787. font-weight:500;
  10788. font-style:normal;
  10789. font-size:18px;
  10790. }
  10791. #u8093 {
  10792. border-width:0px;
  10793. position:absolute;
  10794. left:120px;
  10795. top:50px;
  10796. width:200px;
  10797. height:60px;
  10798. display:flex;
  10799. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  10800. font-weight:500;
  10801. font-style:normal;
  10802. font-size:18px;
  10803. }
  10804. #u8093 .text {
  10805. position:absolute;
  10806. align-self:center;
  10807. padding:0px 0px 0px 20px;
  10808. box-sizing:border-box;
  10809. width:100%;
  10810. }
  10811. #u8093_text {
  10812. border-width:0px;
  10813. word-wrap:break-word;
  10814. text-transform:none;
  10815. }
  10816. #u8094_div {
  10817. border-width:0px;
  10818. position:absolute;
  10819. left:0px;
  10820. top:0px;
  10821. width:65px;
  10822. height:22px;
  10823. background:inherit;
  10824. background-color:rgba(255, 255, 255, 0);
  10825. border:none;
  10826. border-radius:0px;
  10827. -moz-box-shadow:none;
  10828. -webkit-box-shadow:none;
  10829. box-shadow:none;
  10830. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10831. font-weight:400;
  10832. font-style:normal;
  10833. font-size:16px;
  10834. }
  10835. #u8094 {
  10836. border-width:0px;
  10837. position:absolute;
  10838. left:146px;
  10839. top:350px;
  10840. width:65px;
  10841. height:22px;
  10842. display:flex;
  10843. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10844. font-weight:400;
  10845. font-style:normal;
  10846. font-size:16px;
  10847. }
  10848. #u8094 .text {
  10849. position:absolute;
  10850. align-self:flex-start;
  10851. padding:0px 0px 0px 0px;
  10852. box-sizing:border-box;
  10853. width:100%;
  10854. }
  10855. #u8094_text {
  10856. border-width:0px;
  10857. white-space:nowrap;
  10858. text-transform:none;
  10859. }
  10860. #u8095_div {
  10861. border-width:0px;
  10862. position:absolute;
  10863. left:0px;
  10864. top:0px;
  10865. width:65px;
  10866. height:22px;
  10867. background:inherit;
  10868. background-color:rgba(255, 255, 255, 0);
  10869. border:none;
  10870. border-radius:0px;
  10871. -moz-box-shadow:none;
  10872. -webkit-box-shadow:none;
  10873. box-shadow:none;
  10874. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10875. font-weight:400;
  10876. font-style:normal;
  10877. font-size:16px;
  10878. }
  10879. #u8095 {
  10880. border-width:0px;
  10881. position:absolute;
  10882. left:146px;
  10883. top:392px;
  10884. width:65px;
  10885. height:22px;
  10886. display:flex;
  10887. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10888. font-weight:400;
  10889. font-style:normal;
  10890. font-size:16px;
  10891. }
  10892. #u8095 .text {
  10893. position:absolute;
  10894. align-self:flex-start;
  10895. padding:0px 0px 0px 0px;
  10896. box-sizing:border-box;
  10897. width:100%;
  10898. }
  10899. #u8095_text {
  10900. border-width:0px;
  10901. white-space:nowrap;
  10902. text-transform:none;
  10903. }
  10904. #u8096_div {
  10905. border-width:0px;
  10906. position:absolute;
  10907. left:0px;
  10908. top:0px;
  10909. width:49px;
  10910. height:17px;
  10911. background:inherit;
  10912. background-color:rgba(255, 255, 255, 0);
  10913. border:none;
  10914. border-radius:0px;
  10915. -moz-box-shadow:none;
  10916. -webkit-box-shadow:none;
  10917. box-shadow:none;
  10918. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10919. font-weight:400;
  10920. font-style:normal;
  10921. font-size:12px;
  10922. color:#AAAAAA;
  10923. }
  10924. #u8096 {
  10925. border-width:0px;
  10926. position:absolute;
  10927. left:146px;
  10928. top:313px;
  10929. width:49px;
  10930. height:17px;
  10931. display:flex;
  10932. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10933. font-weight:400;
  10934. font-style:normal;
  10935. font-size:12px;
  10936. color:#AAAAAA;
  10937. }
  10938. #u8096 .text {
  10939. position:absolute;
  10940. align-self:flex-start;
  10941. padding:0px 0px 0px 0px;
  10942. box-sizing:border-box;
  10943. width:100%;
  10944. }
  10945. #u8096_text {
  10946. border-width:0px;
  10947. white-space:nowrap;
  10948. text-transform:none;
  10949. }
  10950. #u8097_img {
  10951. border-width:0px;
  10952. position:absolute;
  10953. left:0px;
  10954. top:0px;
  10955. width:201px;
  10956. height:2px;
  10957. }
  10958. #u8097 {
  10959. border-width:0px;
  10960. position:absolute;
  10961. left:120px;
  10962. top:293px;
  10963. width:200px;
  10964. height:1px;
  10965. display:flex;
  10966. }
  10967. #u8097 .text {
  10968. position:absolute;
  10969. align-self:center;
  10970. padding:2px 2px 2px 2px;
  10971. box-sizing:border-box;
  10972. width:100%;
  10973. }
  10974. #u8097_text {
  10975. border-width:0px;
  10976. word-wrap:break-word;
  10977. text-transform:none;
  10978. visibility:hidden;
  10979. }
  10980. #u8098_div {
  10981. border-width:0px;
  10982. position:absolute;
  10983. left:0px;
  10984. top:0px;
  10985. width:65px;
  10986. height:22px;
  10987. background:inherit;
  10988. background-color:rgba(255, 255, 255, 0);
  10989. border:none;
  10990. border-radius:0px;
  10991. -moz-box-shadow:none;
  10992. -webkit-box-shadow:none;
  10993. box-shadow:none;
  10994. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10995. font-weight:400;
  10996. font-style:normal;
  10997. font-size:16px;
  10998. }
  10999. #u8098 {
  11000. border-width:0px;
  11001. position:absolute;
  11002. left:146px;
  11003. top:167px;
  11004. width:65px;
  11005. height:22px;
  11006. display:flex;
  11007. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11008. font-weight:400;
  11009. font-style:normal;
  11010. font-size:16px;
  11011. }
  11012. #u8098 .text {
  11013. position:absolute;
  11014. align-self:flex-start;
  11015. padding:0px 0px 0px 0px;
  11016. box-sizing:border-box;
  11017. width:100%;
  11018. }
  11019. #u8098_text {
  11020. border-width:0px;
  11021. white-space:nowrap;
  11022. text-transform:none;
  11023. }
  11024. #u8099_div {
  11025. border-width:0px;
  11026. position:absolute;
  11027. left:0px;
  11028. top:0px;
  11029. width:65px;
  11030. height:22px;
  11031. background:inherit;
  11032. background-color:rgba(255, 255, 255, 0);
  11033. border:none;
  11034. border-radius:0px;
  11035. -moz-box-shadow:none;
  11036. -webkit-box-shadow:none;
  11037. box-shadow:none;
  11038. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11039. font-weight:400;
  11040. font-style:normal;
  11041. font-size:16px;
  11042. }
  11043. #u8099 {
  11044. border-width:0px;
  11045. position:absolute;
  11046. left:146px;
  11047. top:209px;
  11048. width:65px;
  11049. height:22px;
  11050. display:flex;
  11051. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11052. font-weight:400;
  11053. font-style:normal;
  11054. font-size:16px;
  11055. }
  11056. #u8099 .text {
  11057. position:absolute;
  11058. align-self:flex-start;
  11059. padding:0px 0px 0px 0px;
  11060. box-sizing:border-box;
  11061. width:100%;
  11062. }
  11063. #u8099_text {
  11064. border-width:0px;
  11065. white-space:nowrap;
  11066. text-transform:none;
  11067. }
  11068. #u8100_div {
  11069. border-width:0px;
  11070. position:absolute;
  11071. left:0px;
  11072. top:0px;
  11073. width:65px;
  11074. height:22px;
  11075. background:inherit;
  11076. background-color:rgba(255, 255, 255, 0);
  11077. border:none;
  11078. border-radius:0px;
  11079. -moz-box-shadow:none;
  11080. -webkit-box-shadow:none;
  11081. box-shadow:none;
  11082. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11083. font-weight:400;
  11084. font-style:normal;
  11085. font-size:16px;
  11086. }
  11087. #u8100 {
  11088. border-width:0px;
  11089. position:absolute;
  11090. left:146px;
  11091. top:251px;
  11092. width:65px;
  11093. height:22px;
  11094. display:flex;
  11095. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11096. font-weight:400;
  11097. font-style:normal;
  11098. font-size:16px;
  11099. }
  11100. #u8100 .text {
  11101. position:absolute;
  11102. align-self:flex-start;
  11103. padding:0px 0px 0px 0px;
  11104. box-sizing:border-box;
  11105. width:100%;
  11106. }
  11107. #u8100_text {
  11108. border-width:0px;
  11109. white-space:nowrap;
  11110. text-transform:none;
  11111. }
  11112. #u8101_div {
  11113. border-width:0px;
  11114. position:absolute;
  11115. left:0px;
  11116. top:0px;
  11117. width:49px;
  11118. height:17px;
  11119. background:inherit;
  11120. background-color:rgba(255, 255, 255, 0);
  11121. border:none;
  11122. border-radius:0px;
  11123. -moz-box-shadow:none;
  11124. -webkit-box-shadow:none;
  11125. box-shadow:none;
  11126. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11127. font-weight:400;
  11128. font-style:normal;
  11129. font-size:12px;
  11130. color:#AAAAAA;
  11131. }
  11132. #u8101 {
  11133. border-width:0px;
  11134. position:absolute;
  11135. left:146px;
  11136. top:130px;
  11137. width:49px;
  11138. height:17px;
  11139. display:flex;
  11140. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11141. font-weight:400;
  11142. font-style:normal;
  11143. font-size:12px;
  11144. color:#AAAAAA;
  11145. }
  11146. #u8101 .text {
  11147. position:absolute;
  11148. align-self:flex-start;
  11149. padding:0px 0px 0px 0px;
  11150. box-sizing:border-box;
  11151. width:100%;
  11152. }
  11153. #u8101_text {
  11154. border-width:0px;
  11155. white-space:nowrap;
  11156. text-transform:none;
  11157. }
  11158. #u8102_div {
  11159. border-width:0px;
  11160. position:absolute;
  11161. left:0px;
  11162. top:0px;
  11163. width:65px;
  11164. height:22px;
  11165. background:inherit;
  11166. background-color:rgba(255, 255, 255, 0);
  11167. border:none;
  11168. border-radius:0px;
  11169. -moz-box-shadow:none;
  11170. -webkit-box-shadow:none;
  11171. box-shadow:none;
  11172. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11173. font-weight:400;
  11174. font-style:normal;
  11175. font-size:16px;
  11176. }
  11177. #u8102 {
  11178. border-width:0px;
  11179. position:absolute;
  11180. left:146px;
  11181. top:434px;
  11182. width:65px;
  11183. height:22px;
  11184. display:flex;
  11185. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11186. font-weight:400;
  11187. font-style:normal;
  11188. font-size:16px;
  11189. }
  11190. #u8102 .text {
  11191. position:absolute;
  11192. align-self:flex-start;
  11193. padding:0px 0px 0px 0px;
  11194. box-sizing:border-box;
  11195. width:100%;
  11196. }
  11197. #u8102_text {
  11198. border-width:0px;
  11199. white-space:nowrap;
  11200. text-transform:none;
  11201. }
  11202. #u8103_div {
  11203. border-width:0px;
  11204. position:absolute;
  11205. left:0px;
  11206. top:0px;
  11207. width:65px;
  11208. height:22px;
  11209. background:inherit;
  11210. background-color:rgba(255, 255, 255, 0);
  11211. border:none;
  11212. border-radius:0px;
  11213. -moz-box-shadow:none;
  11214. -webkit-box-shadow:none;
  11215. box-shadow:none;
  11216. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11217. font-weight:400;
  11218. font-style:normal;
  11219. font-size:16px;
  11220. }
  11221. #u8103 {
  11222. border-width:0px;
  11223. position:absolute;
  11224. left:146px;
  11225. top:538px;
  11226. width:65px;
  11227. height:22px;
  11228. display:flex;
  11229. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11230. font-weight:400;
  11231. font-style:normal;
  11232. font-size:16px;
  11233. }
  11234. #u8103 .text {
  11235. position:absolute;
  11236. align-self:flex-start;
  11237. padding:0px 0px 0px 0px;
  11238. box-sizing:border-box;
  11239. width:100%;
  11240. }
  11241. #u8103_text {
  11242. border-width:0px;
  11243. white-space:nowrap;
  11244. text-transform:none;
  11245. }
  11246. #u8104_div {
  11247. border-width:0px;
  11248. position:absolute;
  11249. left:0px;
  11250. top:0px;
  11251. width:49px;
  11252. height:17px;
  11253. background:inherit;
  11254. background-color:rgba(255, 255, 255, 0);
  11255. border:none;
  11256. border-radius:0px;
  11257. -moz-box-shadow:none;
  11258. -webkit-box-shadow:none;
  11259. box-shadow:none;
  11260. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11261. font-weight:400;
  11262. font-style:normal;
  11263. font-size:12px;
  11264. color:#AAAAAA;
  11265. }
  11266. #u8104 {
  11267. border-width:0px;
  11268. position:absolute;
  11269. left:146px;
  11270. top:501px;
  11271. width:49px;
  11272. height:17px;
  11273. display:flex;
  11274. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11275. font-weight:400;
  11276. font-style:normal;
  11277. font-size:12px;
  11278. color:#AAAAAA;
  11279. }
  11280. #u8104 .text {
  11281. position:absolute;
  11282. align-self:flex-start;
  11283. padding:0px 0px 0px 0px;
  11284. box-sizing:border-box;
  11285. width:100%;
  11286. }
  11287. #u8104_text {
  11288. border-width:0px;
  11289. white-space:nowrap;
  11290. text-transform:none;
  11291. }
  11292. #u8105_img {
  11293. border-width:0px;
  11294. position:absolute;
  11295. left:0px;
  11296. top:0px;
  11297. width:201px;
  11298. height:2px;
  11299. }
  11300. #u8105 {
  11301. border-width:0px;
  11302. position:absolute;
  11303. left:120px;
  11304. top:481px;
  11305. width:200px;
  11306. height:1px;
  11307. display:flex;
  11308. }
  11309. #u8105 .text {
  11310. position:absolute;
  11311. align-self:center;
  11312. padding:2px 2px 2px 2px;
  11313. box-sizing:border-box;
  11314. width:100%;
  11315. }
  11316. #u8105_text {
  11317. border-width:0px;
  11318. word-wrap:break-word;
  11319. text-transform:none;
  11320. visibility:hidden;
  11321. }
  11322. #u8106_div {
  11323. border-width:0px;
  11324. position:absolute;
  11325. left:0px;
  11326. top:0px;
  11327. width:65px;
  11328. height:22px;
  11329. background:inherit;
  11330. background-color:rgba(255, 255, 255, 0);
  11331. border:none;
  11332. border-radius:0px;
  11333. -moz-box-shadow:none;
  11334. -webkit-box-shadow:none;
  11335. box-shadow:none;
  11336. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11337. font-weight:400;
  11338. font-style:normal;
  11339. font-size:16px;
  11340. }
  11341. #u8106 {
  11342. border-width:0px;
  11343. position:absolute;
  11344. left:146px;
  11345. top:580px;
  11346. width:65px;
  11347. height:22px;
  11348. display:flex;
  11349. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11350. font-weight:400;
  11351. font-style:normal;
  11352. font-size:16px;
  11353. }
  11354. #u8106 .text {
  11355. position:absolute;
  11356. align-self:flex-start;
  11357. padding:0px 0px 0px 0px;
  11358. box-sizing:border-box;
  11359. width:100%;
  11360. }
  11361. #u8106_text {
  11362. border-width:0px;
  11363. white-space:nowrap;
  11364. text-transform:none;
  11365. }