styles.css 170 KB

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