styles.css 111 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145114611471148114911501151115211531154115511561157115811591160116111621163116411651166116711681169117011711172117311741175117611771178117911801181118211831184118511861187118811891190119111921193119411951196119711981199120012011202120312041205120612071208120912101211121212131214121512161217121812191220122112221223122412251226122712281229123012311232123312341235123612371238123912401241124212431244124512461247124812491250125112521253125412551256125712581259126012611262126312641265126612671268126912701271127212731274127512761277127812791280128112821283128412851286128712881289129012911292129312941295129612971298129913001301130213031304130513061307130813091310131113121313131413151316131713181319132013211322132313241325132613271328132913301331133213331334133513361337133813391340134113421343134413451346134713481349135013511352135313541355135613571358135913601361136213631364136513661367136813691370137113721373137413751376137713781379138013811382138313841385138613871388138913901391139213931394139513961397139813991400140114021403140414051406140714081409141014111412141314141415141614171418141914201421142214231424142514261427142814291430143114321433143414351436143714381439144014411442144314441445144614471448144914501451145214531454145514561457145814591460146114621463146414651466146714681469147014711472147314741475147614771478147914801481148214831484148514861487148814891490149114921493149414951496149714981499150015011502150315041505150615071508150915101511151215131514151515161517151815191520152115221523152415251526152715281529153015311532153315341535153615371538153915401541154215431544154515461547154815491550155115521553155415551556155715581559156015611562156315641565156615671568156915701571157215731574157515761577157815791580158115821583158415851586158715881589159015911592159315941595159615971598159916001601160216031604160516061607160816091610161116121613161416151616161716181619162016211622162316241625162616271628162916301631163216331634163516361637163816391640164116421643164416451646164716481649165016511652165316541655165616571658165916601661166216631664166516661667166816691670167116721673167416751676167716781679168016811682168316841685168616871688168916901691169216931694169516961697169816991700170117021703170417051706170717081709171017111712171317141715171617171718171917201721172217231724172517261727172817291730173117321733173417351736173717381739174017411742174317441745174617471748174917501751175217531754175517561757175817591760176117621763176417651766176717681769177017711772177317741775177617771778177917801781178217831784178517861787178817891790179117921793179417951796179717981799180018011802180318041805180618071808180918101811181218131814181518161817181818191820182118221823182418251826182718281829183018311832183318341835183618371838183918401841184218431844184518461847184818491850185118521853185418551856185718581859186018611862186318641865186618671868186918701871187218731874187518761877187818791880188118821883188418851886188718881889189018911892189318941895189618971898189919001901190219031904190519061907190819091910191119121913191419151916191719181919192019211922192319241925192619271928192919301931193219331934193519361937193819391940194119421943194419451946194719481949195019511952195319541955195619571958195919601961196219631964196519661967196819691970197119721973197419751976197719781979198019811982198319841985198619871988198919901991199219931994199519961997199819992000200120022003200420052006200720082009201020112012201320142015201620172018201920202021202220232024202520262027202820292030203120322033203420352036203720382039204020412042204320442045204620472048204920502051205220532054205520562057205820592060206120622063206420652066206720682069207020712072207320742075207620772078207920802081208220832084208520862087208820892090209120922093209420952096209720982099210021012102210321042105210621072108210921102111211221132114211521162117211821192120212121222123212421252126212721282129213021312132213321342135213621372138213921402141214221432144214521462147214821492150215121522153215421552156215721582159216021612162216321642165216621672168216921702171217221732174217521762177217821792180218121822183218421852186218721882189219021912192219321942195219621972198219922002201220222032204220522062207220822092210221122122213221422152216221722182219222022212222222322242225222622272228222922302231223222332234223522362237223822392240224122422243224422452246224722482249225022512252225322542255225622572258225922602261226222632264226522662267226822692270227122722273227422752276227722782279228022812282228322842285228622872288228922902291229222932294229522962297229822992300230123022303230423052306230723082309231023112312231323142315231623172318231923202321232223232324232523262327232823292330233123322333233423352336233723382339234023412342234323442345234623472348234923502351235223532354235523562357235823592360236123622363236423652366236723682369237023712372237323742375237623772378237923802381238223832384238523862387238823892390239123922393239423952396239723982399240024012402240324042405240624072408240924102411241224132414241524162417241824192420242124222423242424252426242724282429243024312432243324342435243624372438243924402441244224432444244524462447244824492450245124522453245424552456245724582459246024612462246324642465246624672468246924702471247224732474247524762477247824792480248124822483248424852486248724882489249024912492249324942495249624972498249925002501250225032504250525062507250825092510251125122513251425152516251725182519252025212522252325242525252625272528252925302531253225332534253525362537253825392540254125422543254425452546254725482549255025512552255325542555255625572558255925602561256225632564256525662567256825692570257125722573257425752576257725782579258025812582258325842585258625872588258925902591259225932594259525962597259825992600260126022603260426052606260726082609261026112612261326142615261626172618261926202621262226232624262526262627262826292630263126322633263426352636263726382639264026412642264326442645264626472648264926502651265226532654265526562657265826592660266126622663266426652666266726682669267026712672267326742675267626772678267926802681268226832684268526862687268826892690269126922693269426952696269726982699270027012702270327042705270627072708270927102711271227132714271527162717271827192720272127222723272427252726272727282729273027312732273327342735273627372738273927402741274227432744274527462747274827492750275127522753275427552756275727582759276027612762276327642765276627672768276927702771277227732774277527762777277827792780278127822783278427852786278727882789279027912792279327942795279627972798279928002801280228032804280528062807280828092810281128122813281428152816281728182819282028212822282328242825282628272828282928302831283228332834283528362837283828392840284128422843284428452846284728482849285028512852285328542855285628572858285928602861286228632864286528662867286828692870287128722873287428752876287728782879288028812882288328842885288628872888288928902891289228932894289528962897289828992900290129022903290429052906290729082909291029112912291329142915291629172918291929202921292229232924292529262927292829292930293129322933293429352936293729382939294029412942294329442945294629472948294929502951295229532954295529562957295829592960296129622963296429652966296729682969297029712972297329742975297629772978297929802981298229832984298529862987298829892990299129922993299429952996299729982999300030013002300330043005300630073008300930103011301230133014301530163017301830193020302130223023302430253026302730283029303030313032303330343035303630373038303930403041304230433044304530463047304830493050305130523053305430553056305730583059306030613062306330643065306630673068306930703071307230733074307530763077307830793080308130823083308430853086308730883089309030913092309330943095309630973098309931003101310231033104310531063107310831093110311131123113311431153116311731183119312031213122312331243125312631273128312931303131313231333134313531363137313831393140314131423143314431453146314731483149315031513152315331543155315631573158315931603161316231633164316531663167316831693170317131723173317431753176317731783179318031813182318331843185318631873188318931903191319231933194319531963197319831993200320132023203320432053206320732083209321032113212321332143215321632173218321932203221322232233224322532263227322832293230323132323233323432353236323732383239324032413242324332443245324632473248324932503251325232533254325532563257325832593260326132623263326432653266326732683269327032713272327332743275327632773278327932803281328232833284328532863287328832893290329132923293329432953296329732983299330033013302330333043305330633073308330933103311331233133314331533163317331833193320332133223323332433253326332733283329333033313332333333343335333633373338333933403341334233433344334533463347334833493350335133523353335433553356335733583359336033613362336333643365336633673368336933703371337233733374337533763377337833793380338133823383338433853386338733883389339033913392339333943395339633973398339934003401340234033404340534063407340834093410341134123413341434153416341734183419342034213422342334243425342634273428342934303431343234333434343534363437343834393440344134423443344434453446344734483449345034513452345334543455345634573458345934603461346234633464346534663467346834693470347134723473347434753476347734783479348034813482348334843485348634873488348934903491349234933494349534963497349834993500350135023503350435053506350735083509351035113512351335143515351635173518351935203521352235233524352535263527352835293530353135323533353435353536353735383539354035413542354335443545354635473548354935503551355235533554355535563557355835593560356135623563356435653566356735683569357035713572357335743575357635773578357935803581358235833584358535863587358835893590359135923593359435953596359735983599360036013602360336043605360636073608360936103611361236133614361536163617361836193620362136223623362436253626362736283629363036313632363336343635363636373638363936403641364236433644364536463647364836493650365136523653365436553656365736583659366036613662366336643665366636673668366936703671367236733674367536763677367836793680368136823683368436853686368736883689369036913692369336943695369636973698369937003701370237033704370537063707370837093710371137123713371437153716371737183719372037213722372337243725372637273728372937303731373237333734373537363737373837393740374137423743374437453746374737483749375037513752375337543755375637573758375937603761376237633764376537663767376837693770377137723773377437753776377737783779378037813782378337843785378637873788378937903791379237933794379537963797379837993800380138023803380438053806380738083809381038113812381338143815381638173818381938203821382238233824382538263827382838293830383138323833383438353836383738383839384038413842384338443845384638473848384938503851385238533854385538563857385838593860386138623863386438653866386738683869387038713872387338743875387638773878387938803881388238833884388538863887388838893890389138923893389438953896389738983899390039013902390339043905390639073908390939103911391239133914391539163917391839193920392139223923392439253926392739283929393039313932393339343935393639373938393939403941394239433944394539463947394839493950395139523953395439553956395739583959396039613962396339643965396639673968396939703971397239733974397539763977397839793980398139823983398439853986398739883989399039913992399339943995399639973998399940004001400240034004400540064007400840094010401140124013401440154016401740184019402040214022402340244025402640274028402940304031403240334034403540364037403840394040404140424043404440454046404740484049405040514052405340544055405640574058405940604061406240634064406540664067406840694070407140724073407440754076407740784079408040814082408340844085408640874088408940904091409240934094409540964097409840994100410141024103410441054106410741084109411041114112411341144115411641174118411941204121412241234124412541264127412841294130413141324133413441354136413741384139414041414142414341444145414641474148414941504151415241534154415541564157415841594160416141624163416441654166416741684169417041714172417341744175417641774178417941804181418241834184418541864187418841894190419141924193419441954196419741984199420042014202420342044205420642074208420942104211421242134214421542164217421842194220422142224223422442254226422742284229423042314232423342344235423642374238423942404241424242434244424542464247424842494250425142524253425442554256425742584259426042614262426342644265426642674268426942704271427242734274427542764277427842794280428142824283428442854286428742884289429042914292429342944295429642974298429943004301430243034304430543064307430843094310431143124313431443154316431743184319432043214322432343244325432643274328432943304331433243334334433543364337433843394340434143424343434443454346434743484349435043514352435343544355435643574358435943604361436243634364436543664367436843694370437143724373437443754376437743784379438043814382438343844385438643874388438943904391439243934394439543964397439843994400440144024403440444054406440744084409441044114412441344144415441644174418441944204421442244234424442544264427442844294430443144324433443444354436443744384439444044414442444344444445444644474448444944504451445244534454445544564457445844594460446144624463446444654466446744684469447044714472447344744475447644774478447944804481448244834484448544864487448844894490449144924493449444954496449744984499450045014502450345044505450645074508450945104511451245134514451545164517451845194520452145224523452445254526452745284529453045314532453345344535453645374538453945404541454245434544454545464547454845494550455145524553455445554556455745584559456045614562456345644565456645674568456945704571457245734574457545764577457845794580458145824583458445854586458745884589459045914592459345944595459645974598459946004601460246034604460546064607460846094610461146124613461446154616461746184619462046214622462346244625462646274628462946304631463246334634463546364637463846394640464146424643464446454646464746484649465046514652465346544655465646574658465946604661466246634664466546664667466846694670467146724673467446754676467746784679468046814682468346844685468646874688468946904691469246934694469546964697469846994700470147024703470447054706470747084709471047114712471347144715471647174718471947204721472247234724472547264727472847294730473147324733473447354736473747384739474047414742474347444745474647474748474947504751475247534754475547564757475847594760476147624763476447654766476747684769477047714772477347744775477647774778477947804781478247834784478547864787478847894790479147924793479447954796479747984799480048014802480348044805480648074808480948104811481248134814481548164817481848194820482148224823482448254826482748284829483048314832483348344835483648374838483948404841484248434844484548464847484848494850485148524853485448554856485748584859486048614862486348644865486648674868486948704871487248734874487548764877487848794880488148824883488448854886488748884889489048914892489348944895489648974898489949004901490249034904490549064907490849094910491149124913491449154916491749184919492049214922492349244925492649274928492949304931493249334934493549364937493849394940494149424943494449454946494749484949495049514952495349544955495649574958495949604961496249634964496549664967496849694970497149724973497449754976497749784979498049814982498349844985498649874988498949904991499249934994499549964997499849995000500150025003500450055006500750085009501050115012501350145015501650175018501950205021502250235024502550265027502850295030503150325033503450355036503750385039504050415042504350445045504650475048504950505051505250535054505550565057505850595060506150625063506450655066506750685069507050715072507350745075507650775078507950805081508250835084508550865087508850895090509150925093509450955096509750985099510051015102510351045105510651075108510951105111511251135114511551165117511851195120512151225123512451255126512751285129513051315132513351345135513651375138513951405141514251435144514551465147514851495150515151525153515451555156515751585159516051615162516351645165516651675168516951705171517251735174517551765177517851795180518151825183518451855186518751885189519051915192519351945195519651975198519952005201520252035204520552065207520852095210521152125213521452155216521752185219522052215222522352245225522652275228522952305231523252335234523552365237523852395240524152425243524452455246524752485249525052515252525352545255525652575258525952605261526252635264526552665267526852695270527152725273527452755276527752785279528052815282528352845285528652875288528952905291529252935294529552965297529852995300530153025303530453055306530753085309531053115312531353145315531653175318531953205321532253235324532553265327532853295330533153325333533453355336533753385339534053415342534353445345534653475348534953505351535253535354535553565357535853595360536153625363536453655366536753685369537053715372537353745375537653775378537953805381538253835384538553865387538853895390539153925393539453955396539753985399540054015402540354045405540654075408540954105411541254135414541554165417541854195420542154225423542454255426542754285429543054315432543354345435543654375438543954405441544254435444544554465447544854495450545154525453545454555456545754585459546054615462546354645465546654675468546954705471547254735474547554765477547854795480548154825483548454855486548754885489549054915492549354945495549654975498549955005501550255035504550555065507550855095510551155125513551455155516551755185519552055215522552355245525552655275528552955305531553255335534553555365537553855395540554155425543554455455546554755485549555055515552555355545555555655575558555955605561556255635564556555665567556855695570557155725573557455755576557755785579558055815582558355845585558655875588558955905591559255935594559555965597559855995600560156025603560456055606560756085609561056115612561356145615561656175618561956205621562256235624562556265627562856295630563156325633563456355636563756385639564056415642564356445645564656475648564956505651565256535654565556565657565856595660566156625663566456655666566756685669567056715672567356745675567656775678567956805681568256835684568556865687568856895690569156925693569456955696569756985699570057015702570357045705570657075708570957105711571257135714571557165717571857195720572157225723572457255726572757285729573057315732573357345735573657375738573957405741574257435744574557465747574857495750575157525753575457555756575757585759576057615762576357645765576657675768576957705771577257735774577557765777577857795780578157825783578457855786578757885789579057915792579357945795579657975798579958005801580258035804580558065807580858095810581158125813581458155816581758185819582058215822582358245825582658275828582958305831583258335834583558365837583858395840584158425843584458455846584758485849585058515852585358545855585658575858585958605861586258635864586558665867586858695870587158725873587458755876587758785879588058815882588358845885588658875888588958905891589258935894589558965897589858995900590159025903590459055906590759085909591059115912591359145915591659175918591959205921592259235924592559265927592859295930593159325933593459355936593759385939594059415942594359445945594659475948594959505951595259535954595559565957595859595960596159625963596459655966596759685969597059715972597359745975597659775978597959805981598259835984598559865987598859895990599159925993599459955996599759985999600060016002600360046005600660076008600960106011601260136014601560166017601860196020602160226023602460256026602760286029603060316032603360346035603660376038603960406041604260436044604560466047604860496050605160526053605460556056605760586059606060616062606360646065606660676068606960706071607260736074607560766077607860796080608160826083608460856086608760886089609060916092609360946095609660976098609961006101610261036104610561066107610861096110611161126113611461156116611761186119612061216122612361246125612661276128612961306131613261336134613561366137613861396140614161426143614461456146614761486149615061516152615361546155615661576158615961606161616261636164616561666167616861696170617161726173617461756176617761786179618061816182618361846185618661876188618961906191619261936194619561966197619861996200620162026203620462056206620762086209621062116212621362146215621662176218621962206221622262236224622562266227622862296230623162326233623462356236623762386239624062416242624362446245624662476248624962506251625262536254625562566257625862596260626162626263626462656266626762686269627062716272627362746275627662776278627962806281628262836284628562866287628862896290629162926293629462956296629762986299630063016302630363046305630663076308630963106311631263136314631563166317631863196320632163226323632463256326632763286329633063316332633363346335633663376338633963406341634263436344634563466347634863496350635163526353635463556356635763586359636063616362
  1. body {
  2. margin:0px;
  3. background-image:none;
  4. position:relative;
  5. left:0px;
  6. width:1600px;
  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. #u31999_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. #u31999 {
  35. border-width:0px;
  36. position:absolute;
  37. left:120px;
  38. top:50px;
  39. width:1480px;
  40. height:1200px;
  41. display:flex;
  42. }
  43. #u31999 .text {
  44. position:absolute;
  45. align-self:center;
  46. padding:2px 2px 2px 2px;
  47. box-sizing:border-box;
  48. width:100%;
  49. }
  50. #u31999_text {
  51. border-width:0px;
  52. word-wrap:break-word;
  53. text-transform:none;
  54. visibility:hidden;
  55. }
  56. #u32000_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. #u32000 {
  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. #u32000 .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. #u32000_text {
  92. border-width:0px;
  93. white-space:nowrap;
  94. text-transform:none;
  95. }
  96. #u32001_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. #u32001 {
  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. #u32001 .text {
  123. position:absolute;
  124. align-self:center;
  125. padding:2px 2px 2px 2px;
  126. box-sizing:border-box;
  127. width:100%;
  128. }
  129. #u32001_text {
  130. border-width:0px;
  131. word-wrap:break-word;
  132. text-transform:none;
  133. visibility:hidden;
  134. }
  135. #u32002 {
  136. border-width:0px;
  137. position:absolute;
  138. left:0px;
  139. top:0px;
  140. width:0px;
  141. height:0px;
  142. }
  143. #u32003_img {
  144. border-width:0px;
  145. position:absolute;
  146. left:0px;
  147. top:0px;
  148. width:31px;
  149. height:31px;
  150. }
  151. #u32003 {
  152. border-width:0px;
  153. position:absolute;
  154. left:19px;
  155. top:10px;
  156. width:31px;
  157. height:31px;
  158. display:flex;
  159. }
  160. #u32003 .text {
  161. position:absolute;
  162. align-self:center;
  163. padding:2px 2px 2px 2px;
  164. box-sizing:border-box;
  165. width:100%;
  166. }
  167. #u32003_text {
  168. border-width:0px;
  169. word-wrap:break-word;
  170. text-transform:none;
  171. }
  172. #u32004_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. #u32004 {
  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. #u32004 .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. #u32004_text {
  214. border-width:0px;
  215. white-space:nowrap;
  216. text-transform:none;
  217. }
  218. #u32005_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. #u32005 {
  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. #u32005 .text {
  245. position:absolute;
  246. align-self:center;
  247. padding:2px 2px 2px 2px;
  248. box-sizing:border-box;
  249. width:100%;
  250. }
  251. #u32005_text {
  252. border-width:0px;
  253. word-wrap:break-word;
  254. text-transform:none;
  255. visibility:hidden;
  256. }
  257. #u32006 {
  258. border-width:0px;
  259. position:absolute;
  260. left:0px;
  261. top:0px;
  262. width:0px;
  263. height:0px;
  264. }
  265. #u32007_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. #u32007 {
  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. #u32007 .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. #u32007_text {
  307. border-width:0px;
  308. white-space:nowrap;
  309. text-transform:none;
  310. }
  311. #u32008_img {
  312. border-width:0px;
  313. position:absolute;
  314. left:0px;
  315. top:0px;
  316. width:14px;
  317. height:14px;
  318. }
  319. #u32008 {
  320. border-width:0px;
  321. position:absolute;
  322. left:20px;
  323. top:175px;
  324. width:14px;
  325. height:14px;
  326. display:flex;
  327. }
  328. #u32008 .text {
  329. position:absolute;
  330. align-self:center;
  331. padding:2px 2px 2px 2px;
  332. box-sizing:border-box;
  333. width:100%;
  334. }
  335. #u32008_text {
  336. border-width:0px;
  337. word-wrap:break-word;
  338. text-transform:none;
  339. visibility:hidden;
  340. }
  341. #u32009 {
  342. border-width:0px;
  343. position:absolute;
  344. left:0px;
  345. top:0px;
  346. width:0px;
  347. height:0px;
  348. }
  349. #u32010_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. #u32010 {
  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. #u32010 .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. #u32010_text {
  391. border-width:0px;
  392. white-space:nowrap;
  393. text-transform:none;
  394. }
  395. #u32011_img {
  396. border-width:0px;
  397. position:absolute;
  398. left:0px;
  399. top:0px;
  400. width:14px;
  401. height:14px;
  402. }
  403. #u32011 {
  404. border-width:0px;
  405. position:absolute;
  406. left:20px;
  407. top:385px;
  408. width:14px;
  409. height:14px;
  410. display:flex;
  411. }
  412. #u32011 .text {
  413. position:absolute;
  414. align-self:center;
  415. padding:2px 2px 2px 2px;
  416. box-sizing:border-box;
  417. width:100%;
  418. }
  419. #u32011_text {
  420. border-width:0px;
  421. word-wrap:break-word;
  422. text-transform:none;
  423. visibility:hidden;
  424. }
  425. #u32012 {
  426. border-width:0px;
  427. position:absolute;
  428. left:0px;
  429. top:0px;
  430. width:0px;
  431. height:0px;
  432. }
  433. #u32013_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. #u32013 {
  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. #u32013 .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. #u32013_text {
  475. border-width:0px;
  476. white-space:nowrap;
  477. text-transform:none;
  478. }
  479. #u32014_img {
  480. border-width:0px;
  481. position:absolute;
  482. left:0px;
  483. top:0px;
  484. width:14px;
  485. height:14px;
  486. }
  487. #u32014 {
  488. border-width:0px;
  489. position:absolute;
  490. left:20px;
  491. top:137px;
  492. width:14px;
  493. height:14px;
  494. display:flex;
  495. }
  496. #u32014 .text {
  497. position:absolute;
  498. align-self:center;
  499. padding:2px 2px 2px 2px;
  500. box-sizing:border-box;
  501. width:100%;
  502. }
  503. #u32014_text {
  504. border-width:0px;
  505. word-wrap:break-word;
  506. text-transform:none;
  507. visibility:hidden;
  508. }
  509. #u32015 {
  510. border-width:0px;
  511. position:absolute;
  512. left:0px;
  513. top:0px;
  514. width:0px;
  515. height:0px;
  516. }
  517. #u32016_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. #u32016 {
  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. #u32016 .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. #u32016_text {
  559. border-width:0px;
  560. white-space:nowrap;
  561. text-transform:none;
  562. }
  563. #u32017_img {
  564. border-width:0px;
  565. position:absolute;
  566. left:0px;
  567. top:0px;
  568. width:14px;
  569. height:14px;
  570. }
  571. #u32017 {
  572. border-width:0px;
  573. position:absolute;
  574. left:20px;
  575. top:427px;
  576. width:14px;
  577. height:14px;
  578. display:flex;
  579. }
  580. #u32017 .text {
  581. position:absolute;
  582. align-self:center;
  583. padding:2px 2px 2px 2px;
  584. box-sizing:border-box;
  585. width:100%;
  586. }
  587. #u32017_text {
  588. border-width:0px;
  589. word-wrap:break-word;
  590. text-transform:none;
  591. visibility:hidden;
  592. }
  593. #u32018 {
  594. border-width:0px;
  595. position:absolute;
  596. left:0px;
  597. top:0px;
  598. width:0px;
  599. height:0px;
  600. }
  601. #u32019_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. #u32019 {
  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. #u32019 .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. #u32019_text {
  643. border-width:0px;
  644. white-space:nowrap;
  645. text-transform:none;
  646. }
  647. #u32020_img {
  648. border-width:0px;
  649. position:absolute;
  650. left:0px;
  651. top:0px;
  652. width:14px;
  653. height:14px;
  654. }
  655. #u32020 {
  656. border-width:0px;
  657. position:absolute;
  658. left:20px;
  659. top:301px;
  660. width:14px;
  661. height:14px;
  662. display:flex;
  663. }
  664. #u32020 .text {
  665. position:absolute;
  666. align-self:center;
  667. padding:2px 2px 2px 2px;
  668. box-sizing:border-box;
  669. width:100%;
  670. }
  671. #u32020_text {
  672. border-width:0px;
  673. word-wrap:break-word;
  674. text-transform:none;
  675. visibility:hidden;
  676. }
  677. #u32021 {
  678. border-width:0px;
  679. position:absolute;
  680. left:0px;
  681. top:0px;
  682. width:0px;
  683. height:0px;
  684. }
  685. #u32022_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. #u32022 {
  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. #u32022 .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. #u32022_text {
  727. border-width:0px;
  728. white-space:nowrap;
  729. text-transform:none;
  730. }
  731. #u32023_img {
  732. border-width:0px;
  733. position:absolute;
  734. left:0px;
  735. top:0px;
  736. width:14px;
  737. height:14px;
  738. }
  739. #u32023 {
  740. border-width:0px;
  741. position:absolute;
  742. left:20px;
  743. top:217px;
  744. width:14px;
  745. height:14px;
  746. display:flex;
  747. }
  748. #u32023 .text {
  749. position:absolute;
  750. align-self:center;
  751. padding:2px 2px 2px 2px;
  752. box-sizing:border-box;
  753. width:100%;
  754. }
  755. #u32023_text {
  756. border-width:0px;
  757. word-wrap:break-word;
  758. text-transform:none;
  759. visibility:hidden;
  760. }
  761. #u32024 {
  762. border-width:0px;
  763. position:absolute;
  764. left:0px;
  765. top:0px;
  766. width:0px;
  767. height:0px;
  768. }
  769. #u32025_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. #u32025 {
  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. #u32025 .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. #u32025_text {
  811. border-width:0px;
  812. white-space:nowrap;
  813. text-transform:none;
  814. }
  815. #u32026_img {
  816. border-width:0px;
  817. position:absolute;
  818. left:0px;
  819. top:0px;
  820. width:14px;
  821. height:14px;
  822. }
  823. #u32026 {
  824. border-width:0px;
  825. position:absolute;
  826. left:20px;
  827. top:343px;
  828. width:14px;
  829. height:14px;
  830. display:flex;
  831. }
  832. #u32026 .text {
  833. position:absolute;
  834. align-self:center;
  835. padding:2px 2px 2px 2px;
  836. box-sizing:border-box;
  837. width:100%;
  838. }
  839. #u32026_text {
  840. border-width:0px;
  841. word-wrap:break-word;
  842. text-transform:none;
  843. visibility:hidden;
  844. }
  845. #u32027 {
  846. border-width:0px;
  847. position:absolute;
  848. left:0px;
  849. top:0px;
  850. width:0px;
  851. height:0px;
  852. }
  853. #u32028_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. #u32028 {
  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. #u32028 .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. #u32028_text {
  895. border-width:0px;
  896. white-space:nowrap;
  897. text-transform:none;
  898. }
  899. #u32029_img {
  900. border-width:0px;
  901. position:absolute;
  902. left:0px;
  903. top:0px;
  904. width:14px;
  905. height:14px;
  906. }
  907. #u32029 {
  908. border-width:0px;
  909. position:absolute;
  910. left:20px;
  911. top:469px;
  912. width:14px;
  913. height:14px;
  914. display:flex;
  915. }
  916. #u32029 .text {
  917. position:absolute;
  918. align-self:center;
  919. padding:2px 2px 2px 2px;
  920. box-sizing:border-box;
  921. width:100%;
  922. }
  923. #u32029_text {
  924. border-width:0px;
  925. word-wrap:break-word;
  926. text-transform:none;
  927. visibility:hidden;
  928. }
  929. #u32030 {
  930. border-width:0px;
  931. position:absolute;
  932. left:0px;
  933. top:0px;
  934. width:0px;
  935. height:0px;
  936. }
  937. #u32031_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. #u32031 {
  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. #u32031 .text {
  970. position:absolute;
  971. align-self:center;
  972. padding:0px 0px 0px 0px;
  973. box-sizing:border-box;
  974. width:100%;
  975. }
  976. #u32031_text {
  977. border-width:0px;
  978. white-space:nowrap;
  979. text-transform:none;
  980. }
  981. #u32032_img {
  982. border-width:0px;
  983. position:absolute;
  984. left:0px;
  985. top:0px;
  986. width:22px;
  987. height:22px;
  988. }
  989. #u32032 {
  990. border-width:0px;
  991. position:absolute;
  992. left:20px;
  993. top:1144px;
  994. width:22px;
  995. height:22px;
  996. display:flex;
  997. }
  998. #u32032 .text {
  999. position:absolute;
  1000. align-self:center;
  1001. padding:2px 2px 2px 2px;
  1002. box-sizing:border-box;
  1003. width:100%;
  1004. }
  1005. #u32032_text {
  1006. border-width:0px;
  1007. word-wrap:break-word;
  1008. text-transform:none;
  1009. visibility:hidden;
  1010. }
  1011. #u32033 {
  1012. border-width:0px;
  1013. position:absolute;
  1014. left:0px;
  1015. top:0px;
  1016. width:0px;
  1017. height:0px;
  1018. }
  1019. #u32034_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. #u32034 {
  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. #u32034 .text {
  1052. position:absolute;
  1053. align-self:center;
  1054. padding:0px 0px 0px 0px;
  1055. box-sizing:border-box;
  1056. width:100%;
  1057. }
  1058. #u32034_text {
  1059. border-width:0px;
  1060. white-space:nowrap;
  1061. text-transform:none;
  1062. }
  1063. #u32035_img {
  1064. border-width:0px;
  1065. position:absolute;
  1066. left:0px;
  1067. top:0px;
  1068. width:22px;
  1069. height:22px;
  1070. }
  1071. #u32035 {
  1072. border-width:0px;
  1073. position:absolute;
  1074. left:20px;
  1075. top:1186px;
  1076. width:22px;
  1077. height:22px;
  1078. display:flex;
  1079. }
  1080. #u32035 .text {
  1081. position:absolute;
  1082. align-self:center;
  1083. padding:2px 2px 2px 2px;
  1084. box-sizing:border-box;
  1085. width:100%;
  1086. }
  1087. #u32035_text {
  1088. border-width:0px;
  1089. word-wrap:break-word;
  1090. text-transform:none;
  1091. visibility:hidden;
  1092. }
  1093. #u32036 {
  1094. border-width:0px;
  1095. position:absolute;
  1096. left:0px;
  1097. top:0px;
  1098. width:0px;
  1099. height:0px;
  1100. }
  1101. #u32037_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. #u32037 {
  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. #u32037 .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. #u32037_text {
  1143. border-width:0px;
  1144. white-space:nowrap;
  1145. text-transform:none;
  1146. }
  1147. #u32038_img {
  1148. border-width:0px;
  1149. position:absolute;
  1150. left:0px;
  1151. top:0px;
  1152. width:14px;
  1153. height:14px;
  1154. }
  1155. #u32038 {
  1156. border-width:0px;
  1157. position:absolute;
  1158. left:20px;
  1159. top:259px;
  1160. width:14px;
  1161. height:14px;
  1162. display:flex;
  1163. }
  1164. #u32038 .text {
  1165. position:absolute;
  1166. align-self:center;
  1167. padding:2px 2px 2px 2px;
  1168. box-sizing:border-box;
  1169. width:100%;
  1170. }
  1171. #u32038_text {
  1172. border-width:0px;
  1173. word-wrap:break-word;
  1174. text-transform:none;
  1175. visibility:hidden;
  1176. }
  1177. #u32039 {
  1178. border-width:0px;
  1179. position:absolute;
  1180. left:0px;
  1181. top:0px;
  1182. width:0px;
  1183. height:0px;
  1184. }
  1185. #u32040_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. #u32040_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. #u32040_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. #u32040 {
  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. #u32040 .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. #u32040_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. #u32040.disabled {
  1276. }
  1277. .u32040_input_option {
  1278. font-size:14px;
  1279. }
  1280. #u32041_img {
  1281. border-width:0px;
  1282. position:absolute;
  1283. left:0px;
  1284. top:0px;
  1285. width:22px;
  1286. height:22px;
  1287. }
  1288. #u32041 {
  1289. border-width:0px;
  1290. position:absolute;
  1291. left:1194px;
  1292. top:14px;
  1293. width:22px;
  1294. height:22px;
  1295. display:flex;
  1296. }
  1297. #u32041 .text {
  1298. position:absolute;
  1299. align-self:center;
  1300. padding:2px 2px 2px 2px;
  1301. box-sizing:border-box;
  1302. width:100%;
  1303. }
  1304. #u32041_text {
  1305. border-width:0px;
  1306. word-wrap:break-word;
  1307. text-transform:none;
  1308. visibility:hidden;
  1309. }
  1310. #u32042_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. #u32042 {
  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. #u32042 .text {
  1345. position:absolute;
  1346. align-self:center;
  1347. padding:0px 0px 0px 0px;
  1348. box-sizing:border-box;
  1349. width:100%;
  1350. }
  1351. #u32042_text {
  1352. border-width:0px;
  1353. word-wrap:break-word;
  1354. text-transform:none;
  1355. }
  1356. #u32043_img {
  1357. border-width:0px;
  1358. position:absolute;
  1359. left:0px;
  1360. top:0px;
  1361. width:2px;
  1362. height:12px;
  1363. }
  1364. #u32043 {
  1365. border-width:0px;
  1366. position:absolute;
  1367. left:1452px;
  1368. top:19px;
  1369. width:1px;
  1370. height:11px;
  1371. display:flex;
  1372. }
  1373. #u32043 .text {
  1374. position:absolute;
  1375. align-self:center;
  1376. padding:2px 2px 2px 2px;
  1377. box-sizing:border-box;
  1378. width:100%;
  1379. }
  1380. #u32043_text {
  1381. border-width:0px;
  1382. word-wrap:break-word;
  1383. text-transform:none;
  1384. visibility:hidden;
  1385. }
  1386. #u32044 {
  1387. border-width:0px;
  1388. position:absolute;
  1389. left:0px;
  1390. top:0px;
  1391. width:0px;
  1392. height:0px;
  1393. }
  1394. #u32045_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. #u32045 {
  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. #u32045 .text {
  1427. position:absolute;
  1428. align-self:center;
  1429. padding:0px 0px 0px 0px;
  1430. box-sizing:border-box;
  1431. width:100%;
  1432. }
  1433. #u32045_text {
  1434. border-width:0px;
  1435. white-space:nowrap;
  1436. text-transform:none;
  1437. }
  1438. #u32046_img {
  1439. border-width:0px;
  1440. position:absolute;
  1441. left:0px;
  1442. top:0px;
  1443. width:22px;
  1444. height:22px;
  1445. }
  1446. #u32046 {
  1447. border-width:0px;
  1448. position:absolute;
  1449. left:20px;
  1450. top:1081px;
  1451. width:22px;
  1452. height:22px;
  1453. display:flex;
  1454. }
  1455. #u32046 .text {
  1456. position:absolute;
  1457. align-self:center;
  1458. padding:2px 2px 2px 2px;
  1459. box-sizing:border-box;
  1460. width:100%;
  1461. }
  1462. #u32046_text {
  1463. border-width:0px;
  1464. word-wrap:break-word;
  1465. text-transform:none;
  1466. visibility:hidden;
  1467. }
  1468. #u32047_img {
  1469. border-width:0px;
  1470. position:absolute;
  1471. left:0px;
  1472. top:0px;
  1473. width:69px;
  1474. height:2px;
  1475. }
  1476. #u32047 {
  1477. border-width:0px;
  1478. position:absolute;
  1479. left:20px;
  1480. top:1123px;
  1481. width:68px;
  1482. height:1px;
  1483. display:flex;
  1484. }
  1485. #u32047 .text {
  1486. position:absolute;
  1487. align-self:center;
  1488. padding:2px 2px 2px 2px;
  1489. box-sizing:border-box;
  1490. width:100%;
  1491. }
  1492. #u32047_text {
  1493. border-width:0px;
  1494. word-wrap:break-word;
  1495. text-transform:none;
  1496. visibility:hidden;
  1497. }
  1498. #u32048_img {
  1499. border-width:0px;
  1500. position:absolute;
  1501. left:0px;
  1502. top:0px;
  1503. width:69px;
  1504. height:2px;
  1505. }
  1506. #u32048 {
  1507. border-width:0px;
  1508. position:absolute;
  1509. left:20px;
  1510. top:1061px;
  1511. width:68px;
  1512. height:1px;
  1513. display:flex;
  1514. }
  1515. #u32048 .text {
  1516. position:absolute;
  1517. align-self:center;
  1518. padding:2px 2px 2px 2px;
  1519. box-sizing:border-box;
  1520. width:100%;
  1521. }
  1522. #u32048_text {
  1523. border-width:0px;
  1524. word-wrap:break-word;
  1525. text-transform:none;
  1526. visibility:hidden;
  1527. }
  1528. #u32049_img {
  1529. border-width:0px;
  1530. position:absolute;
  1531. left:0px;
  1532. top:0px;
  1533. width:57px;
  1534. height:2px;
  1535. }
  1536. #u32049 {
  1537. border-width:0px;
  1538. position:absolute;
  1539. left:20px;
  1540. top:112px;
  1541. width:56px;
  1542. height:1px;
  1543. display:flex;
  1544. }
  1545. #u32049 .text {
  1546. position:absolute;
  1547. align-self:center;
  1548. padding:2px 2px 2px 2px;
  1549. box-sizing:border-box;
  1550. width:100%;
  1551. }
  1552. #u32049_text {
  1553. border-width:0px;
  1554. word-wrap:break-word;
  1555. text-transform:none;
  1556. visibility:hidden;
  1557. }
  1558. #u32050 {
  1559. border-width:0px;
  1560. position:absolute;
  1561. left:0px;
  1562. top:0px;
  1563. width:0px;
  1564. height:0px;
  1565. }
  1566. #u32051_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. #u32051 {
  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. #u32051 .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. #u32051_text {
  1608. border-width:0px;
  1609. white-space:nowrap;
  1610. text-transform:none;
  1611. }
  1612. #u32052_img {
  1613. border-width:0px;
  1614. position:absolute;
  1615. left:0px;
  1616. top:0px;
  1617. width:18px;
  1618. height:14px;
  1619. }
  1620. #u32052 {
  1621. border-width:0px;
  1622. position:absolute;
  1623. left:20px;
  1624. top:75px;
  1625. width:18px;
  1626. height:14px;
  1627. display:flex;
  1628. }
  1629. #u32052 .text {
  1630. position:absolute;
  1631. align-self:center;
  1632. padding:2px 2px 2px 2px;
  1633. box-sizing:border-box;
  1634. width:100%;
  1635. }
  1636. #u32052_text {
  1637. border-width:0px;
  1638. word-wrap:break-word;
  1639. text-transform:none;
  1640. visibility:hidden;
  1641. }
  1642. #u32053_div {
  1643. border-width:0px;
  1644. position:absolute;
  1645. left:0px;
  1646. top:0px;
  1647. width:1260px;
  1648. height:1179px;
  1649. background:inherit;
  1650. background-color:rgba(255, 255, 255, 1);
  1651. box-sizing:border-box;
  1652. border-width:1px;
  1653. border-style:solid;
  1654. border-color:rgba(242, 242, 242, 1);
  1655. border-radius:0px;
  1656. -moz-box-shadow:none;
  1657. -webkit-box-shadow:none;
  1658. box-shadow:none;
  1659. }
  1660. #u32053 {
  1661. border-width:0px;
  1662. position:absolute;
  1663. left:334px;
  1664. top:51px;
  1665. width:1260px;
  1666. height:1179px;
  1667. display:flex;
  1668. }
  1669. #u32053 .text {
  1670. position:absolute;
  1671. align-self:center;
  1672. padding:2px 2px 2px 2px;
  1673. box-sizing:border-box;
  1674. width:100%;
  1675. }
  1676. #u32053_text {
  1677. border-width:0px;
  1678. word-wrap:break-word;
  1679. text-transform:none;
  1680. visibility:hidden;
  1681. }
  1682. #u32054 {
  1683. border-width:0px;
  1684. position:absolute;
  1685. left:358px;
  1686. top:229px;
  1687. width:1212px;
  1688. height:220px;
  1689. }
  1690. #u32055_img {
  1691. border-width:0px;
  1692. position:absolute;
  1693. left:0px;
  1694. top:0px;
  1695. width:38px;
  1696. height:30px;
  1697. }
  1698. #u32055 {
  1699. border-width:0px;
  1700. position:absolute;
  1701. left:0px;
  1702. top:0px;
  1703. width:38px;
  1704. height:30px;
  1705. display:flex;
  1706. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1707. font-weight:400;
  1708. font-style:normal;
  1709. font-size:14px;
  1710. color:#FFFFFF;
  1711. }
  1712. #u32055 .text {
  1713. position:absolute;
  1714. align-self:center;
  1715. padding:2px 2px 2px 2px;
  1716. box-sizing:border-box;
  1717. width:100%;
  1718. }
  1719. #u32055_text {
  1720. border-width:0px;
  1721. word-wrap:break-word;
  1722. text-transform:none;
  1723. visibility:hidden;
  1724. }
  1725. #u32056_img {
  1726. border-width:0px;
  1727. position:absolute;
  1728. left:0px;
  1729. top:0px;
  1730. width:135px;
  1731. height:30px;
  1732. }
  1733. #u32056 {
  1734. border-width:0px;
  1735. position:absolute;
  1736. left:38px;
  1737. top:0px;
  1738. width:135px;
  1739. height:30px;
  1740. display:flex;
  1741. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1742. font-weight:400;
  1743. font-style:normal;
  1744. font-size:14px;
  1745. color:#FFFFFF;
  1746. }
  1747. #u32056 .text {
  1748. position:absolute;
  1749. align-self:center;
  1750. padding:2px 2px 2px 2px;
  1751. box-sizing:border-box;
  1752. width:100%;
  1753. }
  1754. #u32056_text {
  1755. border-width:0px;
  1756. word-wrap:break-word;
  1757. text-transform:none;
  1758. }
  1759. #u32057_img {
  1760. border-width:0px;
  1761. position:absolute;
  1762. left:0px;
  1763. top:0px;
  1764. width:135px;
  1765. height:30px;
  1766. }
  1767. #u32057 {
  1768. border-width:0px;
  1769. position:absolute;
  1770. left:173px;
  1771. top:0px;
  1772. width:135px;
  1773. height:30px;
  1774. display:flex;
  1775. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1776. font-weight:400;
  1777. font-style:normal;
  1778. font-size:14px;
  1779. color:#FFFFFF;
  1780. }
  1781. #u32057 .text {
  1782. position:absolute;
  1783. align-self:center;
  1784. padding:2px 2px 2px 2px;
  1785. box-sizing:border-box;
  1786. width:100%;
  1787. }
  1788. #u32057_text {
  1789. border-width:0px;
  1790. word-wrap:break-word;
  1791. text-transform:none;
  1792. }
  1793. #u32058_img {
  1794. border-width:0px;
  1795. position:absolute;
  1796. left:0px;
  1797. top:0px;
  1798. width:191px;
  1799. height:30px;
  1800. }
  1801. #u32058 {
  1802. border-width:0px;
  1803. position:absolute;
  1804. left:308px;
  1805. top:0px;
  1806. width:191px;
  1807. height:30px;
  1808. display:flex;
  1809. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1810. font-weight:400;
  1811. font-style:normal;
  1812. font-size:14px;
  1813. color:#FFFFFF;
  1814. }
  1815. #u32058 .text {
  1816. position:absolute;
  1817. align-self:center;
  1818. padding:2px 2px 2px 2px;
  1819. box-sizing:border-box;
  1820. width:100%;
  1821. }
  1822. #u32058_text {
  1823. border-width:0px;
  1824. word-wrap:break-word;
  1825. text-transform:none;
  1826. }
  1827. #u32059_img {
  1828. border-width:0px;
  1829. position:absolute;
  1830. left:0px;
  1831. top:0px;
  1832. width:155px;
  1833. height:30px;
  1834. }
  1835. #u32059 {
  1836. border-width:0px;
  1837. position:absolute;
  1838. left:499px;
  1839. top:0px;
  1840. width:155px;
  1841. height:30px;
  1842. display:flex;
  1843. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1844. font-weight:400;
  1845. font-style:normal;
  1846. font-size:14px;
  1847. color:#FFFFFF;
  1848. }
  1849. #u32059 .text {
  1850. position:absolute;
  1851. align-self:center;
  1852. padding:2px 2px 2px 2px;
  1853. box-sizing:border-box;
  1854. width:100%;
  1855. }
  1856. #u32059_text {
  1857. border-width:0px;
  1858. word-wrap:break-word;
  1859. text-transform:none;
  1860. }
  1861. #u32060_img {
  1862. border-width:0px;
  1863. position:absolute;
  1864. left:0px;
  1865. top:0px;
  1866. width:193px;
  1867. height:30px;
  1868. }
  1869. #u32060 {
  1870. border-width:0px;
  1871. position:absolute;
  1872. left:654px;
  1873. top:0px;
  1874. width:193px;
  1875. height:30px;
  1876. display:flex;
  1877. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1878. font-weight:400;
  1879. font-style:normal;
  1880. font-size:14px;
  1881. color:#FFFFFF;
  1882. }
  1883. #u32060 .text {
  1884. position:absolute;
  1885. align-self:center;
  1886. padding:2px 2px 2px 2px;
  1887. box-sizing:border-box;
  1888. width:100%;
  1889. }
  1890. #u32060_text {
  1891. border-width:0px;
  1892. word-wrap:break-word;
  1893. text-transform:none;
  1894. }
  1895. #u32061_img {
  1896. border-width:0px;
  1897. position:absolute;
  1898. left:0px;
  1899. top:0px;
  1900. width:121px;
  1901. height:30px;
  1902. }
  1903. #u32061 {
  1904. border-width:0px;
  1905. position:absolute;
  1906. left:847px;
  1907. top:0px;
  1908. width:121px;
  1909. height:30px;
  1910. display:flex;
  1911. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1912. font-weight:400;
  1913. font-style:normal;
  1914. font-size:14px;
  1915. color:#FFFFFF;
  1916. }
  1917. #u32061 .text {
  1918. position:absolute;
  1919. align-self:center;
  1920. padding:2px 2px 2px 2px;
  1921. box-sizing:border-box;
  1922. width:100%;
  1923. }
  1924. #u32061_text {
  1925. border-width:0px;
  1926. word-wrap:break-word;
  1927. text-transform:none;
  1928. }
  1929. #u32062_img {
  1930. border-width:0px;
  1931. position:absolute;
  1932. left:0px;
  1933. top:0px;
  1934. width:122px;
  1935. height:30px;
  1936. }
  1937. #u32062 {
  1938. border-width:0px;
  1939. position:absolute;
  1940. left:968px;
  1941. top:0px;
  1942. width:122px;
  1943. height:30px;
  1944. display:flex;
  1945. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1946. font-weight:400;
  1947. font-style:normal;
  1948. font-size:14px;
  1949. color:#FFFFFF;
  1950. }
  1951. #u32062 .text {
  1952. position:absolute;
  1953. align-self:center;
  1954. padding:2px 2px 2px 2px;
  1955. box-sizing:border-box;
  1956. width:100%;
  1957. }
  1958. #u32062_text {
  1959. border-width:0px;
  1960. word-wrap:break-word;
  1961. text-transform:none;
  1962. }
  1963. #u32063_img {
  1964. border-width:0px;
  1965. position:absolute;
  1966. left:0px;
  1967. top:0px;
  1968. width:122px;
  1969. height:30px;
  1970. }
  1971. #u32063 {
  1972. border-width:0px;
  1973. position:absolute;
  1974. left:1090px;
  1975. top:0px;
  1976. width:122px;
  1977. height:30px;
  1978. display:flex;
  1979. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1980. font-weight:400;
  1981. font-style:normal;
  1982. font-size:14px;
  1983. color:#FFFFFF;
  1984. }
  1985. #u32063 .text {
  1986. position:absolute;
  1987. align-self:center;
  1988. padding:2px 2px 2px 2px;
  1989. box-sizing:border-box;
  1990. width:100%;
  1991. }
  1992. #u32063_text {
  1993. border-width:0px;
  1994. word-wrap:break-word;
  1995. text-transform:none;
  1996. }
  1997. #u32064_img {
  1998. border-width:0px;
  1999. position:absolute;
  2000. left:0px;
  2001. top:0px;
  2002. width:38px;
  2003. height:44px;
  2004. }
  2005. #u32064 {
  2006. border-width:0px;
  2007. position:absolute;
  2008. left:0px;
  2009. top:30px;
  2010. width:38px;
  2011. height:44px;
  2012. display:flex;
  2013. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2014. font-weight:400;
  2015. font-style:normal;
  2016. font-size:14px;
  2017. }
  2018. #u32064 .text {
  2019. position:absolute;
  2020. align-self:center;
  2021. padding:2px 2px 2px 2px;
  2022. box-sizing:border-box;
  2023. width:100%;
  2024. }
  2025. #u32064_text {
  2026. border-width:0px;
  2027. word-wrap:break-word;
  2028. text-transform:none;
  2029. visibility:hidden;
  2030. }
  2031. #u32065_img {
  2032. border-width:0px;
  2033. position:absolute;
  2034. left:0px;
  2035. top:0px;
  2036. width:135px;
  2037. height:44px;
  2038. }
  2039. #u32065 {
  2040. border-width:0px;
  2041. position:absolute;
  2042. left:38px;
  2043. top:30px;
  2044. width:135px;
  2045. height:44px;
  2046. display:flex;
  2047. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2048. font-weight:400;
  2049. font-style:normal;
  2050. font-size:14px;
  2051. }
  2052. #u32065 .text {
  2053. position:absolute;
  2054. align-self:center;
  2055. padding:2px 2px 2px 2px;
  2056. box-sizing:border-box;
  2057. width:100%;
  2058. }
  2059. #u32065_text {
  2060. border-width:0px;
  2061. word-wrap:break-word;
  2062. text-transform:none;
  2063. visibility:hidden;
  2064. }
  2065. #u32066_img {
  2066. border-width:0px;
  2067. position:absolute;
  2068. left:0px;
  2069. top:0px;
  2070. width:135px;
  2071. height:44px;
  2072. }
  2073. #u32066 {
  2074. border-width:0px;
  2075. position:absolute;
  2076. left:173px;
  2077. top:30px;
  2078. width:135px;
  2079. height:44px;
  2080. display:flex;
  2081. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2082. font-weight:400;
  2083. font-style:normal;
  2084. font-size:14px;
  2085. }
  2086. #u32066 .text {
  2087. position:absolute;
  2088. align-self:center;
  2089. padding:2px 2px 2px 2px;
  2090. box-sizing:border-box;
  2091. width:100%;
  2092. }
  2093. #u32066_text {
  2094. border-width:0px;
  2095. word-wrap:break-word;
  2096. text-transform:none;
  2097. visibility:hidden;
  2098. }
  2099. #u32067_img {
  2100. border-width:0px;
  2101. position:absolute;
  2102. left:0px;
  2103. top:0px;
  2104. width:191px;
  2105. height:44px;
  2106. }
  2107. #u32067 {
  2108. border-width:0px;
  2109. position:absolute;
  2110. left:308px;
  2111. top:30px;
  2112. width:191px;
  2113. height:44px;
  2114. display:flex;
  2115. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2116. font-weight:400;
  2117. font-style:normal;
  2118. font-size:14px;
  2119. }
  2120. #u32067 .text {
  2121. position:absolute;
  2122. align-self:center;
  2123. padding:2px 2px 2px 2px;
  2124. box-sizing:border-box;
  2125. width:100%;
  2126. }
  2127. #u32067_text {
  2128. border-width:0px;
  2129. word-wrap:break-word;
  2130. text-transform:none;
  2131. visibility:hidden;
  2132. }
  2133. #u32068_img {
  2134. border-width:0px;
  2135. position:absolute;
  2136. left:0px;
  2137. top:0px;
  2138. width:155px;
  2139. height:44px;
  2140. }
  2141. #u32068 {
  2142. border-width:0px;
  2143. position:absolute;
  2144. left:499px;
  2145. top:30px;
  2146. width:155px;
  2147. height:44px;
  2148. display:flex;
  2149. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2150. font-weight:400;
  2151. font-style:normal;
  2152. font-size:14px;
  2153. }
  2154. #u32068 .text {
  2155. position:absolute;
  2156. align-self:center;
  2157. padding:2px 2px 2px 2px;
  2158. box-sizing:border-box;
  2159. width:100%;
  2160. }
  2161. #u32068_text {
  2162. border-width:0px;
  2163. word-wrap:break-word;
  2164. text-transform:none;
  2165. visibility:hidden;
  2166. }
  2167. #u32069_img {
  2168. border-width:0px;
  2169. position:absolute;
  2170. left:0px;
  2171. top:0px;
  2172. width:193px;
  2173. height:44px;
  2174. }
  2175. #u32069 {
  2176. border-width:0px;
  2177. position:absolute;
  2178. left:654px;
  2179. top:30px;
  2180. width:193px;
  2181. height:44px;
  2182. display:flex;
  2183. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2184. font-weight:400;
  2185. font-style:normal;
  2186. font-size:14px;
  2187. }
  2188. #u32069 .text {
  2189. position:absolute;
  2190. align-self:center;
  2191. padding:2px 2px 2px 2px;
  2192. box-sizing:border-box;
  2193. width:100%;
  2194. }
  2195. #u32069_text {
  2196. border-width:0px;
  2197. word-wrap:break-word;
  2198. text-transform:none;
  2199. visibility:hidden;
  2200. }
  2201. #u32070_img {
  2202. border-width:0px;
  2203. position:absolute;
  2204. left:0px;
  2205. top:0px;
  2206. width:121px;
  2207. height:44px;
  2208. }
  2209. #u32070 {
  2210. border-width:0px;
  2211. position:absolute;
  2212. left:847px;
  2213. top:30px;
  2214. width:121px;
  2215. height:44px;
  2216. display:flex;
  2217. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2218. font-weight:400;
  2219. font-style:normal;
  2220. font-size:14px;
  2221. }
  2222. #u32070 .text {
  2223. position:absolute;
  2224. align-self:center;
  2225. padding:2px 2px 2px 2px;
  2226. box-sizing:border-box;
  2227. width:100%;
  2228. }
  2229. #u32070_text {
  2230. border-width:0px;
  2231. word-wrap:break-word;
  2232. text-transform:none;
  2233. }
  2234. #u32071_img {
  2235. border-width:0px;
  2236. position:absolute;
  2237. left:0px;
  2238. top:0px;
  2239. width:122px;
  2240. height:44px;
  2241. }
  2242. #u32071 {
  2243. border-width:0px;
  2244. position:absolute;
  2245. left:968px;
  2246. top:30px;
  2247. width:122px;
  2248. height:44px;
  2249. display:flex;
  2250. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2251. font-weight:400;
  2252. font-style:normal;
  2253. font-size:14px;
  2254. }
  2255. #u32071 .text {
  2256. position:absolute;
  2257. align-self:center;
  2258. padding:2px 2px 2px 2px;
  2259. box-sizing:border-box;
  2260. width:100%;
  2261. }
  2262. #u32071_text {
  2263. border-width:0px;
  2264. word-wrap:break-word;
  2265. text-transform:none;
  2266. visibility:hidden;
  2267. }
  2268. #u32072_img {
  2269. border-width:0px;
  2270. position:absolute;
  2271. left:0px;
  2272. top:0px;
  2273. width:122px;
  2274. height:44px;
  2275. }
  2276. #u32072 {
  2277. border-width:0px;
  2278. position:absolute;
  2279. left:1090px;
  2280. top:30px;
  2281. width:122px;
  2282. height:44px;
  2283. display:flex;
  2284. font-size:14px;
  2285. color:#1890FF;
  2286. }
  2287. #u32072 .text {
  2288. position:absolute;
  2289. align-self:center;
  2290. padding:2px 2px 2px 2px;
  2291. box-sizing:border-box;
  2292. width:100%;
  2293. }
  2294. #u32072_text {
  2295. border-width:0px;
  2296. word-wrap:break-word;
  2297. text-transform:none;
  2298. }
  2299. #u32073_img {
  2300. border-width:0px;
  2301. position:absolute;
  2302. left:0px;
  2303. top:0px;
  2304. width:38px;
  2305. height:38px;
  2306. }
  2307. #u32073 {
  2308. border-width:0px;
  2309. position:absolute;
  2310. left:0px;
  2311. top:74px;
  2312. width:38px;
  2313. height:38px;
  2314. display:flex;
  2315. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2316. font-weight:400;
  2317. font-style:normal;
  2318. font-size:14px;
  2319. }
  2320. #u32073 .text {
  2321. position:absolute;
  2322. align-self:center;
  2323. padding:2px 2px 2px 2px;
  2324. box-sizing:border-box;
  2325. width:100%;
  2326. }
  2327. #u32073_text {
  2328. border-width:0px;
  2329. word-wrap:break-word;
  2330. text-transform:none;
  2331. visibility:hidden;
  2332. }
  2333. #u32074_img {
  2334. border-width:0px;
  2335. position:absolute;
  2336. left:0px;
  2337. top:0px;
  2338. width:135px;
  2339. height:38px;
  2340. }
  2341. #u32074 {
  2342. border-width:0px;
  2343. position:absolute;
  2344. left:38px;
  2345. top:74px;
  2346. width:135px;
  2347. height:38px;
  2348. display:flex;
  2349. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2350. font-weight:400;
  2351. font-style:normal;
  2352. font-size:14px;
  2353. }
  2354. #u32074 .text {
  2355. position:absolute;
  2356. align-self:center;
  2357. padding:2px 2px 2px 2px;
  2358. box-sizing:border-box;
  2359. width:100%;
  2360. }
  2361. #u32074_text {
  2362. border-width:0px;
  2363. word-wrap:break-word;
  2364. text-transform:none;
  2365. visibility:hidden;
  2366. }
  2367. #u32075_img {
  2368. border-width:0px;
  2369. position:absolute;
  2370. left:0px;
  2371. top:0px;
  2372. width:135px;
  2373. height:38px;
  2374. }
  2375. #u32075 {
  2376. border-width:0px;
  2377. position:absolute;
  2378. left:173px;
  2379. top:74px;
  2380. width:135px;
  2381. height:38px;
  2382. display:flex;
  2383. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2384. font-weight:400;
  2385. font-style:normal;
  2386. font-size:14px;
  2387. }
  2388. #u32075 .text {
  2389. position:absolute;
  2390. align-self:center;
  2391. padding:2px 2px 2px 2px;
  2392. box-sizing:border-box;
  2393. width:100%;
  2394. }
  2395. #u32075_text {
  2396. border-width:0px;
  2397. word-wrap:break-word;
  2398. text-transform:none;
  2399. visibility:hidden;
  2400. }
  2401. #u32076_img {
  2402. border-width:0px;
  2403. position:absolute;
  2404. left:0px;
  2405. top:0px;
  2406. width:191px;
  2407. height:38px;
  2408. }
  2409. #u32076 {
  2410. border-width:0px;
  2411. position:absolute;
  2412. left:308px;
  2413. top:74px;
  2414. width:191px;
  2415. height:38px;
  2416. display:flex;
  2417. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2418. font-weight:400;
  2419. font-style:normal;
  2420. font-size:14px;
  2421. }
  2422. #u32076 .text {
  2423. position:absolute;
  2424. align-self:center;
  2425. padding:2px 2px 2px 2px;
  2426. box-sizing:border-box;
  2427. width:100%;
  2428. }
  2429. #u32076_text {
  2430. border-width:0px;
  2431. word-wrap:break-word;
  2432. text-transform:none;
  2433. visibility:hidden;
  2434. }
  2435. #u32077_img {
  2436. border-width:0px;
  2437. position:absolute;
  2438. left:0px;
  2439. top:0px;
  2440. width:155px;
  2441. height:38px;
  2442. }
  2443. #u32077 {
  2444. border-width:0px;
  2445. position:absolute;
  2446. left:499px;
  2447. top:74px;
  2448. width:155px;
  2449. height:38px;
  2450. display:flex;
  2451. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2452. font-weight:400;
  2453. font-style:normal;
  2454. font-size:14px;
  2455. }
  2456. #u32077 .text {
  2457. position:absolute;
  2458. align-self:center;
  2459. padding:2px 2px 2px 2px;
  2460. box-sizing:border-box;
  2461. width:100%;
  2462. }
  2463. #u32077_text {
  2464. border-width:0px;
  2465. word-wrap:break-word;
  2466. text-transform:none;
  2467. visibility:hidden;
  2468. }
  2469. #u32078_img {
  2470. border-width:0px;
  2471. position:absolute;
  2472. left:0px;
  2473. top:0px;
  2474. width:193px;
  2475. height:38px;
  2476. }
  2477. #u32078 {
  2478. border-width:0px;
  2479. position:absolute;
  2480. left:654px;
  2481. top:74px;
  2482. width:193px;
  2483. height:38px;
  2484. display:flex;
  2485. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2486. font-weight:400;
  2487. font-style:normal;
  2488. font-size:14px;
  2489. }
  2490. #u32078 .text {
  2491. position:absolute;
  2492. align-self:center;
  2493. padding:2px 2px 2px 2px;
  2494. box-sizing:border-box;
  2495. width:100%;
  2496. }
  2497. #u32078_text {
  2498. border-width:0px;
  2499. word-wrap:break-word;
  2500. text-transform:none;
  2501. visibility:hidden;
  2502. }
  2503. #u32079_img {
  2504. border-width:0px;
  2505. position:absolute;
  2506. left:0px;
  2507. top:0px;
  2508. width:121px;
  2509. height:38px;
  2510. }
  2511. #u32079 {
  2512. border-width:0px;
  2513. position:absolute;
  2514. left:847px;
  2515. top:74px;
  2516. width:121px;
  2517. height:38px;
  2518. display:flex;
  2519. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2520. font-weight:400;
  2521. font-style:normal;
  2522. font-size:14px;
  2523. }
  2524. #u32079 .text {
  2525. position:absolute;
  2526. align-self:center;
  2527. padding:2px 2px 2px 2px;
  2528. box-sizing:border-box;
  2529. width:100%;
  2530. }
  2531. #u32079_text {
  2532. border-width:0px;
  2533. word-wrap:break-word;
  2534. text-transform:none;
  2535. }
  2536. #u32080_img {
  2537. border-width:0px;
  2538. position:absolute;
  2539. left:0px;
  2540. top:0px;
  2541. width:122px;
  2542. height:38px;
  2543. }
  2544. #u32080 {
  2545. border-width:0px;
  2546. position:absolute;
  2547. left:968px;
  2548. top:74px;
  2549. width:122px;
  2550. height:38px;
  2551. display:flex;
  2552. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2553. font-weight:400;
  2554. font-style:normal;
  2555. font-size:14px;
  2556. }
  2557. #u32080 .text {
  2558. position:absolute;
  2559. align-self:center;
  2560. padding:2px 2px 2px 2px;
  2561. box-sizing:border-box;
  2562. width:100%;
  2563. }
  2564. #u32080_text {
  2565. border-width:0px;
  2566. word-wrap:break-word;
  2567. text-transform:none;
  2568. visibility:hidden;
  2569. }
  2570. #u32081_img {
  2571. border-width:0px;
  2572. position:absolute;
  2573. left:0px;
  2574. top:0px;
  2575. width:122px;
  2576. height:38px;
  2577. }
  2578. #u32081 {
  2579. border-width:0px;
  2580. position:absolute;
  2581. left:1090px;
  2582. top:74px;
  2583. width:122px;
  2584. height:38px;
  2585. display:flex;
  2586. font-size:14px;
  2587. color:#1890FF;
  2588. }
  2589. #u32081 .text {
  2590. position:absolute;
  2591. align-self:center;
  2592. padding:2px 2px 2px 2px;
  2593. box-sizing:border-box;
  2594. width:100%;
  2595. }
  2596. #u32081_text {
  2597. border-width:0px;
  2598. word-wrap:break-word;
  2599. text-transform:none;
  2600. }
  2601. #u32082_img {
  2602. border-width:0px;
  2603. position:absolute;
  2604. left:0px;
  2605. top:0px;
  2606. width:38px;
  2607. height:38px;
  2608. }
  2609. #u32082 {
  2610. border-width:0px;
  2611. position:absolute;
  2612. left:0px;
  2613. top:112px;
  2614. width:38px;
  2615. height:38px;
  2616. display:flex;
  2617. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2618. font-weight:400;
  2619. font-style:normal;
  2620. font-size:14px;
  2621. }
  2622. #u32082 .text {
  2623. position:absolute;
  2624. align-self:center;
  2625. padding:2px 2px 2px 2px;
  2626. box-sizing:border-box;
  2627. width:100%;
  2628. }
  2629. #u32082_text {
  2630. border-width:0px;
  2631. word-wrap:break-word;
  2632. text-transform:none;
  2633. visibility:hidden;
  2634. }
  2635. #u32083_img {
  2636. border-width:0px;
  2637. position:absolute;
  2638. left:0px;
  2639. top:0px;
  2640. width:135px;
  2641. height:38px;
  2642. }
  2643. #u32083 {
  2644. border-width:0px;
  2645. position:absolute;
  2646. left:38px;
  2647. top:112px;
  2648. width:135px;
  2649. height:38px;
  2650. display:flex;
  2651. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2652. font-weight:400;
  2653. font-style:normal;
  2654. font-size:14px;
  2655. }
  2656. #u32083 .text {
  2657. position:absolute;
  2658. align-self:center;
  2659. padding:2px 2px 2px 2px;
  2660. box-sizing:border-box;
  2661. width:100%;
  2662. }
  2663. #u32083_text {
  2664. border-width:0px;
  2665. word-wrap:break-word;
  2666. text-transform:none;
  2667. visibility:hidden;
  2668. }
  2669. #u32084_img {
  2670. border-width:0px;
  2671. position:absolute;
  2672. left:0px;
  2673. top:0px;
  2674. width:135px;
  2675. height:38px;
  2676. }
  2677. #u32084 {
  2678. border-width:0px;
  2679. position:absolute;
  2680. left:173px;
  2681. top:112px;
  2682. width:135px;
  2683. height:38px;
  2684. display:flex;
  2685. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2686. font-weight:400;
  2687. font-style:normal;
  2688. font-size:14px;
  2689. }
  2690. #u32084 .text {
  2691. position:absolute;
  2692. align-self:center;
  2693. padding:2px 2px 2px 2px;
  2694. box-sizing:border-box;
  2695. width:100%;
  2696. }
  2697. #u32084_text {
  2698. border-width:0px;
  2699. word-wrap:break-word;
  2700. text-transform:none;
  2701. visibility:hidden;
  2702. }
  2703. #u32085_img {
  2704. border-width:0px;
  2705. position:absolute;
  2706. left:0px;
  2707. top:0px;
  2708. width:191px;
  2709. height:38px;
  2710. }
  2711. #u32085 {
  2712. border-width:0px;
  2713. position:absolute;
  2714. left:308px;
  2715. top:112px;
  2716. width:191px;
  2717. height:38px;
  2718. display:flex;
  2719. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2720. font-weight:400;
  2721. font-style:normal;
  2722. font-size:14px;
  2723. }
  2724. #u32085 .text {
  2725. position:absolute;
  2726. align-self:center;
  2727. padding:2px 2px 2px 2px;
  2728. box-sizing:border-box;
  2729. width:100%;
  2730. }
  2731. #u32085_text {
  2732. border-width:0px;
  2733. word-wrap:break-word;
  2734. text-transform:none;
  2735. visibility:hidden;
  2736. }
  2737. #u32086_img {
  2738. border-width:0px;
  2739. position:absolute;
  2740. left:0px;
  2741. top:0px;
  2742. width:155px;
  2743. height:38px;
  2744. }
  2745. #u32086 {
  2746. border-width:0px;
  2747. position:absolute;
  2748. left:499px;
  2749. top:112px;
  2750. width:155px;
  2751. height:38px;
  2752. display:flex;
  2753. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2754. font-weight:400;
  2755. font-style:normal;
  2756. font-size:14px;
  2757. }
  2758. #u32086 .text {
  2759. position:absolute;
  2760. align-self:center;
  2761. padding:2px 2px 2px 2px;
  2762. box-sizing:border-box;
  2763. width:100%;
  2764. }
  2765. #u32086_text {
  2766. border-width:0px;
  2767. word-wrap:break-word;
  2768. text-transform:none;
  2769. visibility:hidden;
  2770. }
  2771. #u32087_img {
  2772. border-width:0px;
  2773. position:absolute;
  2774. left:0px;
  2775. top:0px;
  2776. width:193px;
  2777. height:38px;
  2778. }
  2779. #u32087 {
  2780. border-width:0px;
  2781. position:absolute;
  2782. left:654px;
  2783. top:112px;
  2784. width:193px;
  2785. height:38px;
  2786. display:flex;
  2787. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2788. font-weight:400;
  2789. font-style:normal;
  2790. font-size:14px;
  2791. }
  2792. #u32087 .text {
  2793. position:absolute;
  2794. align-self:center;
  2795. padding:2px 2px 2px 2px;
  2796. box-sizing:border-box;
  2797. width:100%;
  2798. }
  2799. #u32087_text {
  2800. border-width:0px;
  2801. word-wrap:break-word;
  2802. text-transform:none;
  2803. visibility:hidden;
  2804. }
  2805. #u32088_img {
  2806. border-width:0px;
  2807. position:absolute;
  2808. left:0px;
  2809. top:0px;
  2810. width:121px;
  2811. height:38px;
  2812. }
  2813. #u32088 {
  2814. border-width:0px;
  2815. position:absolute;
  2816. left:847px;
  2817. top:112px;
  2818. width:121px;
  2819. height:38px;
  2820. display:flex;
  2821. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2822. font-weight:400;
  2823. font-style:normal;
  2824. font-size:14px;
  2825. }
  2826. #u32088 .text {
  2827. position:absolute;
  2828. align-self:center;
  2829. padding:2px 2px 2px 2px;
  2830. box-sizing:border-box;
  2831. width:100%;
  2832. }
  2833. #u32088_text {
  2834. border-width:0px;
  2835. word-wrap:break-word;
  2836. text-transform:none;
  2837. }
  2838. #u32089_img {
  2839. border-width:0px;
  2840. position:absolute;
  2841. left:0px;
  2842. top:0px;
  2843. width:122px;
  2844. height:38px;
  2845. }
  2846. #u32089 {
  2847. border-width:0px;
  2848. position:absolute;
  2849. left:968px;
  2850. top:112px;
  2851. width:122px;
  2852. height:38px;
  2853. display:flex;
  2854. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2855. font-weight:400;
  2856. font-style:normal;
  2857. font-size:14px;
  2858. }
  2859. #u32089 .text {
  2860. position:absolute;
  2861. align-self:center;
  2862. padding:2px 2px 2px 2px;
  2863. box-sizing:border-box;
  2864. width:100%;
  2865. }
  2866. #u32089_text {
  2867. border-width:0px;
  2868. word-wrap:break-word;
  2869. text-transform:none;
  2870. visibility:hidden;
  2871. }
  2872. #u32090_img {
  2873. border-width:0px;
  2874. position:absolute;
  2875. left:0px;
  2876. top:0px;
  2877. width:122px;
  2878. height:38px;
  2879. }
  2880. #u32090 {
  2881. border-width:0px;
  2882. position:absolute;
  2883. left:1090px;
  2884. top:112px;
  2885. width:122px;
  2886. height:38px;
  2887. display:flex;
  2888. font-size:14px;
  2889. }
  2890. #u32090 .text {
  2891. position:absolute;
  2892. align-self:center;
  2893. padding:2px 2px 2px 2px;
  2894. box-sizing:border-box;
  2895. width:100%;
  2896. }
  2897. #u32090_text {
  2898. border-width:0px;
  2899. word-wrap:break-word;
  2900. text-transform:none;
  2901. visibility:hidden;
  2902. }
  2903. #u32091_img {
  2904. border-width:0px;
  2905. position:absolute;
  2906. left:0px;
  2907. top:0px;
  2908. width:38px;
  2909. height:38px;
  2910. }
  2911. #u32091 {
  2912. border-width:0px;
  2913. position:absolute;
  2914. left:0px;
  2915. top:150px;
  2916. width:38px;
  2917. height:38px;
  2918. display:flex;
  2919. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2920. font-weight:400;
  2921. font-style:normal;
  2922. font-size:14px;
  2923. }
  2924. #u32091 .text {
  2925. position:absolute;
  2926. align-self:center;
  2927. padding:2px 2px 2px 2px;
  2928. box-sizing:border-box;
  2929. width:100%;
  2930. }
  2931. #u32091_text {
  2932. border-width:0px;
  2933. word-wrap:break-word;
  2934. text-transform:none;
  2935. visibility:hidden;
  2936. }
  2937. #u32092_img {
  2938. border-width:0px;
  2939. position:absolute;
  2940. left:0px;
  2941. top:0px;
  2942. width:135px;
  2943. height:38px;
  2944. }
  2945. #u32092 {
  2946. border-width:0px;
  2947. position:absolute;
  2948. left:38px;
  2949. top:150px;
  2950. width:135px;
  2951. height:38px;
  2952. display:flex;
  2953. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2954. font-weight:400;
  2955. font-style:normal;
  2956. font-size:14px;
  2957. }
  2958. #u32092 .text {
  2959. position:absolute;
  2960. align-self:center;
  2961. padding:2px 2px 2px 2px;
  2962. box-sizing:border-box;
  2963. width:100%;
  2964. }
  2965. #u32092_text {
  2966. border-width:0px;
  2967. word-wrap:break-word;
  2968. text-transform:none;
  2969. visibility:hidden;
  2970. }
  2971. #u32093_img {
  2972. border-width:0px;
  2973. position:absolute;
  2974. left:0px;
  2975. top:0px;
  2976. width:135px;
  2977. height:38px;
  2978. }
  2979. #u32093 {
  2980. border-width:0px;
  2981. position:absolute;
  2982. left:173px;
  2983. top:150px;
  2984. width:135px;
  2985. height:38px;
  2986. display:flex;
  2987. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2988. font-weight:400;
  2989. font-style:normal;
  2990. font-size:14px;
  2991. }
  2992. #u32093 .text {
  2993. position:absolute;
  2994. align-self:center;
  2995. padding:2px 2px 2px 2px;
  2996. box-sizing:border-box;
  2997. width:100%;
  2998. }
  2999. #u32093_text {
  3000. border-width:0px;
  3001. word-wrap:break-word;
  3002. text-transform:none;
  3003. visibility:hidden;
  3004. }
  3005. #u32094_img {
  3006. border-width:0px;
  3007. position:absolute;
  3008. left:0px;
  3009. top:0px;
  3010. width:191px;
  3011. height:38px;
  3012. }
  3013. #u32094 {
  3014. border-width:0px;
  3015. position:absolute;
  3016. left:308px;
  3017. top:150px;
  3018. width:191px;
  3019. height:38px;
  3020. display:flex;
  3021. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3022. font-weight:400;
  3023. font-style:normal;
  3024. font-size:14px;
  3025. }
  3026. #u32094 .text {
  3027. position:absolute;
  3028. align-self:center;
  3029. padding:2px 2px 2px 2px;
  3030. box-sizing:border-box;
  3031. width:100%;
  3032. }
  3033. #u32094_text {
  3034. border-width:0px;
  3035. word-wrap:break-word;
  3036. text-transform:none;
  3037. visibility:hidden;
  3038. }
  3039. #u32095_img {
  3040. border-width:0px;
  3041. position:absolute;
  3042. left:0px;
  3043. top:0px;
  3044. width:155px;
  3045. height:38px;
  3046. }
  3047. #u32095 {
  3048. border-width:0px;
  3049. position:absolute;
  3050. left:499px;
  3051. top:150px;
  3052. width:155px;
  3053. height:38px;
  3054. display:flex;
  3055. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3056. font-weight:400;
  3057. font-style:normal;
  3058. font-size:14px;
  3059. }
  3060. #u32095 .text {
  3061. position:absolute;
  3062. align-self:center;
  3063. padding:2px 2px 2px 2px;
  3064. box-sizing:border-box;
  3065. width:100%;
  3066. }
  3067. #u32095_text {
  3068. border-width:0px;
  3069. word-wrap:break-word;
  3070. text-transform:none;
  3071. visibility:hidden;
  3072. }
  3073. #u32096_img {
  3074. border-width:0px;
  3075. position:absolute;
  3076. left:0px;
  3077. top:0px;
  3078. width:193px;
  3079. height:38px;
  3080. }
  3081. #u32096 {
  3082. border-width:0px;
  3083. position:absolute;
  3084. left:654px;
  3085. top:150px;
  3086. width:193px;
  3087. height:38px;
  3088. display:flex;
  3089. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3090. font-weight:400;
  3091. font-style:normal;
  3092. font-size:14px;
  3093. }
  3094. #u32096 .text {
  3095. position:absolute;
  3096. align-self:center;
  3097. padding:2px 2px 2px 2px;
  3098. box-sizing:border-box;
  3099. width:100%;
  3100. }
  3101. #u32096_text {
  3102. border-width:0px;
  3103. word-wrap:break-word;
  3104. text-transform:none;
  3105. visibility:hidden;
  3106. }
  3107. #u32097_img {
  3108. border-width:0px;
  3109. position:absolute;
  3110. left:0px;
  3111. top:0px;
  3112. width:121px;
  3113. height:38px;
  3114. }
  3115. #u32097 {
  3116. border-width:0px;
  3117. position:absolute;
  3118. left:847px;
  3119. top:150px;
  3120. width:121px;
  3121. height:38px;
  3122. display:flex;
  3123. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3124. font-weight:400;
  3125. font-style:normal;
  3126. font-size:14px;
  3127. }
  3128. #u32097 .text {
  3129. position:absolute;
  3130. align-self:center;
  3131. padding:2px 2px 2px 2px;
  3132. box-sizing:border-box;
  3133. width:100%;
  3134. }
  3135. #u32097_text {
  3136. border-width:0px;
  3137. word-wrap:break-word;
  3138. text-transform:none;
  3139. }
  3140. #u32098_img {
  3141. border-width:0px;
  3142. position:absolute;
  3143. left:0px;
  3144. top:0px;
  3145. width:122px;
  3146. height:38px;
  3147. }
  3148. #u32098 {
  3149. border-width:0px;
  3150. position:absolute;
  3151. left:968px;
  3152. top:150px;
  3153. width:122px;
  3154. height:38px;
  3155. display:flex;
  3156. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3157. font-weight:400;
  3158. font-style:normal;
  3159. font-size:14px;
  3160. }
  3161. #u32098 .text {
  3162. position:absolute;
  3163. align-self:center;
  3164. padding:2px 2px 2px 2px;
  3165. box-sizing:border-box;
  3166. width:100%;
  3167. }
  3168. #u32098_text {
  3169. border-width:0px;
  3170. word-wrap:break-word;
  3171. text-transform:none;
  3172. visibility:hidden;
  3173. }
  3174. #u32099_img {
  3175. border-width:0px;
  3176. position:absolute;
  3177. left:0px;
  3178. top:0px;
  3179. width:122px;
  3180. height:38px;
  3181. }
  3182. #u32099 {
  3183. border-width:0px;
  3184. position:absolute;
  3185. left:1090px;
  3186. top:150px;
  3187. width:122px;
  3188. height:38px;
  3189. display:flex;
  3190. font-size:14px;
  3191. }
  3192. #u32099 .text {
  3193. position:absolute;
  3194. align-self:center;
  3195. padding:2px 2px 2px 2px;
  3196. box-sizing:border-box;
  3197. width:100%;
  3198. }
  3199. #u32099_text {
  3200. border-width:0px;
  3201. word-wrap:break-word;
  3202. text-transform:none;
  3203. visibility:hidden;
  3204. }
  3205. #u32100_img {
  3206. border-width:0px;
  3207. position:absolute;
  3208. left:0px;
  3209. top:0px;
  3210. width:38px;
  3211. height:32px;
  3212. }
  3213. #u32100 {
  3214. border-width:0px;
  3215. position:absolute;
  3216. left:0px;
  3217. top:188px;
  3218. width:38px;
  3219. height:32px;
  3220. display:flex;
  3221. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3222. font-weight:400;
  3223. font-style:normal;
  3224. font-size:14px;
  3225. }
  3226. #u32100 .text {
  3227. position:absolute;
  3228. align-self:center;
  3229. padding:2px 2px 2px 2px;
  3230. box-sizing:border-box;
  3231. width:100%;
  3232. }
  3233. #u32100_text {
  3234. border-width:0px;
  3235. word-wrap:break-word;
  3236. text-transform:none;
  3237. visibility:hidden;
  3238. }
  3239. #u32101_img {
  3240. border-width:0px;
  3241. position:absolute;
  3242. left:0px;
  3243. top:0px;
  3244. width:135px;
  3245. height:32px;
  3246. }
  3247. #u32101 {
  3248. border-width:0px;
  3249. position:absolute;
  3250. left:38px;
  3251. top:188px;
  3252. width:135px;
  3253. height:32px;
  3254. display:flex;
  3255. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3256. font-weight:400;
  3257. font-style:normal;
  3258. font-size:14px;
  3259. }
  3260. #u32101 .text {
  3261. position:absolute;
  3262. align-self:center;
  3263. padding:2px 2px 2px 2px;
  3264. box-sizing:border-box;
  3265. width:100%;
  3266. }
  3267. #u32101_text {
  3268. border-width:0px;
  3269. word-wrap:break-word;
  3270. text-transform:none;
  3271. visibility:hidden;
  3272. }
  3273. #u32102_img {
  3274. border-width:0px;
  3275. position:absolute;
  3276. left:0px;
  3277. top:0px;
  3278. width:135px;
  3279. height:32px;
  3280. }
  3281. #u32102 {
  3282. border-width:0px;
  3283. position:absolute;
  3284. left:173px;
  3285. top:188px;
  3286. width:135px;
  3287. height:32px;
  3288. display:flex;
  3289. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3290. font-weight:400;
  3291. font-style:normal;
  3292. font-size:14px;
  3293. }
  3294. #u32102 .text {
  3295. position:absolute;
  3296. align-self:center;
  3297. padding:2px 2px 2px 2px;
  3298. box-sizing:border-box;
  3299. width:100%;
  3300. }
  3301. #u32102_text {
  3302. border-width:0px;
  3303. word-wrap:break-word;
  3304. text-transform:none;
  3305. visibility:hidden;
  3306. }
  3307. #u32103_img {
  3308. border-width:0px;
  3309. position:absolute;
  3310. left:0px;
  3311. top:0px;
  3312. width:191px;
  3313. height:32px;
  3314. }
  3315. #u32103 {
  3316. border-width:0px;
  3317. position:absolute;
  3318. left:308px;
  3319. top:188px;
  3320. width:191px;
  3321. height:32px;
  3322. display:flex;
  3323. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3324. font-weight:400;
  3325. font-style:normal;
  3326. font-size:14px;
  3327. }
  3328. #u32103 .text {
  3329. position:absolute;
  3330. align-self:center;
  3331. padding:2px 2px 2px 2px;
  3332. box-sizing:border-box;
  3333. width:100%;
  3334. }
  3335. #u32103_text {
  3336. border-width:0px;
  3337. word-wrap:break-word;
  3338. text-transform:none;
  3339. visibility:hidden;
  3340. }
  3341. #u32104_img {
  3342. border-width:0px;
  3343. position:absolute;
  3344. left:0px;
  3345. top:0px;
  3346. width:155px;
  3347. height:32px;
  3348. }
  3349. #u32104 {
  3350. border-width:0px;
  3351. position:absolute;
  3352. left:499px;
  3353. top:188px;
  3354. width:155px;
  3355. height:32px;
  3356. display:flex;
  3357. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3358. font-weight:400;
  3359. font-style:normal;
  3360. font-size:14px;
  3361. }
  3362. #u32104 .text {
  3363. position:absolute;
  3364. align-self:center;
  3365. padding:2px 2px 2px 2px;
  3366. box-sizing:border-box;
  3367. width:100%;
  3368. }
  3369. #u32104_text {
  3370. border-width:0px;
  3371. word-wrap:break-word;
  3372. text-transform:none;
  3373. visibility:hidden;
  3374. }
  3375. #u32105_img {
  3376. border-width:0px;
  3377. position:absolute;
  3378. left:0px;
  3379. top:0px;
  3380. width:193px;
  3381. height:32px;
  3382. }
  3383. #u32105 {
  3384. border-width:0px;
  3385. position:absolute;
  3386. left:654px;
  3387. top:188px;
  3388. width:193px;
  3389. height:32px;
  3390. display:flex;
  3391. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3392. font-weight:400;
  3393. font-style:normal;
  3394. font-size:14px;
  3395. }
  3396. #u32105 .text {
  3397. position:absolute;
  3398. align-self:center;
  3399. padding:2px 2px 2px 2px;
  3400. box-sizing:border-box;
  3401. width:100%;
  3402. }
  3403. #u32105_text {
  3404. border-width:0px;
  3405. word-wrap:break-word;
  3406. text-transform:none;
  3407. visibility:hidden;
  3408. }
  3409. #u32106_img {
  3410. border-width:0px;
  3411. position:absolute;
  3412. left:0px;
  3413. top:0px;
  3414. width:121px;
  3415. height:32px;
  3416. }
  3417. #u32106 {
  3418. border-width:0px;
  3419. position:absolute;
  3420. left:847px;
  3421. top:188px;
  3422. width:121px;
  3423. height:32px;
  3424. display:flex;
  3425. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3426. font-weight:400;
  3427. font-style:normal;
  3428. font-size:14px;
  3429. }
  3430. #u32106 .text {
  3431. position:absolute;
  3432. align-self:center;
  3433. padding:2px 2px 2px 2px;
  3434. box-sizing:border-box;
  3435. width:100%;
  3436. }
  3437. #u32106_text {
  3438. border-width:0px;
  3439. word-wrap:break-word;
  3440. text-transform:none;
  3441. visibility:hidden;
  3442. }
  3443. #u32107_img {
  3444. border-width:0px;
  3445. position:absolute;
  3446. left:0px;
  3447. top:0px;
  3448. width:122px;
  3449. height:32px;
  3450. }
  3451. #u32107 {
  3452. border-width:0px;
  3453. position:absolute;
  3454. left:968px;
  3455. top:188px;
  3456. width:122px;
  3457. height:32px;
  3458. display:flex;
  3459. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3460. font-weight:400;
  3461. font-style:normal;
  3462. font-size:14px;
  3463. }
  3464. #u32107 .text {
  3465. position:absolute;
  3466. align-self:center;
  3467. padding:2px 2px 2px 2px;
  3468. box-sizing:border-box;
  3469. width:100%;
  3470. }
  3471. #u32107_text {
  3472. border-width:0px;
  3473. word-wrap:break-word;
  3474. text-transform:none;
  3475. visibility:hidden;
  3476. }
  3477. #u32108_img {
  3478. border-width:0px;
  3479. position:absolute;
  3480. left:0px;
  3481. top:0px;
  3482. width:122px;
  3483. height:32px;
  3484. }
  3485. #u32108 {
  3486. border-width:0px;
  3487. position:absolute;
  3488. left:1090px;
  3489. top:188px;
  3490. width:122px;
  3491. height:32px;
  3492. display:flex;
  3493. font-size:14px;
  3494. }
  3495. #u32108 .text {
  3496. position:absolute;
  3497. align-self:center;
  3498. padding:2px 2px 2px 2px;
  3499. box-sizing:border-box;
  3500. width:100%;
  3501. }
  3502. #u32108_text {
  3503. border-width:0px;
  3504. word-wrap:break-word;
  3505. text-transform:none;
  3506. visibility:hidden;
  3507. }
  3508. #u32109_div {
  3509. border-width:0px;
  3510. position:absolute;
  3511. left:0px;
  3512. top:0px;
  3513. width:80px;
  3514. height:30px;
  3515. background:inherit;
  3516. background-color:rgba(24, 144, 255, 1);
  3517. border:none;
  3518. border-radius:4px;
  3519. -moz-box-shadow:none;
  3520. -webkit-box-shadow:none;
  3521. box-shadow:none;
  3522. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3523. font-weight:400;
  3524. font-style:normal;
  3525. font-size:14px;
  3526. color:#FFFFFF;
  3527. }
  3528. #u32109 {
  3529. border-width:0px;
  3530. position:absolute;
  3531. left:358px;
  3532. top:191px;
  3533. width:80px;
  3534. height:30px;
  3535. display:flex;
  3536. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3537. font-weight:400;
  3538. font-style:normal;
  3539. font-size:14px;
  3540. color:#FFFFFF;
  3541. }
  3542. #u32109 .text {
  3543. position:absolute;
  3544. align-self:center;
  3545. padding:2px 2px 2px 2px;
  3546. box-sizing:border-box;
  3547. width:100%;
  3548. }
  3549. #u32109_text {
  3550. border-width:0px;
  3551. word-wrap:break-word;
  3552. text-transform:none;
  3553. }
  3554. #u32110 {
  3555. border-width:0px;
  3556. position:absolute;
  3557. left:0px;
  3558. top:0px;
  3559. width:0px;
  3560. height:0px;
  3561. }
  3562. #u32111_div {
  3563. border-width:0px;
  3564. position:absolute;
  3565. left:0px;
  3566. top:0px;
  3567. width:160px;
  3568. height:30px;
  3569. background:inherit;
  3570. background-color:rgba(255, 255, 255, 1);
  3571. box-sizing:border-box;
  3572. border-width:1px;
  3573. border-style:solid;
  3574. border-color:rgba(201, 201, 201, 1);
  3575. border-radius:4px;
  3576. -moz-box-shadow:none;
  3577. -webkit-box-shadow:none;
  3578. box-shadow:none;
  3579. font-family:'Microsoft YaHei', sans-serif;
  3580. font-weight:400;
  3581. font-style:normal;
  3582. font-size:14px;
  3583. color:#CCCCCC;
  3584. text-align:left;
  3585. }
  3586. #u32111 {
  3587. border-width:0px;
  3588. position:absolute;
  3589. left:867px;
  3590. top:140px;
  3591. width:160px;
  3592. height:30px;
  3593. display:flex;
  3594. font-family:'Microsoft YaHei', sans-serif;
  3595. font-weight:400;
  3596. font-style:normal;
  3597. font-size:14px;
  3598. color:#CCCCCC;
  3599. text-align:left;
  3600. }
  3601. #u32111 .text {
  3602. position:absolute;
  3603. align-self:center;
  3604. padding:2px 8px 2px 8px;
  3605. box-sizing:border-box;
  3606. width:100%;
  3607. }
  3608. #u32111_text {
  3609. border-width:0px;
  3610. word-wrap:break-word;
  3611. text-transform:none;
  3612. visibility:hidden;
  3613. }
  3614. #u32112_input {
  3615. position:absolute;
  3616. left:0px;
  3617. top:0px;
  3618. width:150px;
  3619. height:28px;
  3620. padding:2px 2px 2px 2px;
  3621. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3622. font-weight:400;
  3623. font-style:normal;
  3624. font-size:14px;
  3625. letter-spacing:normal;
  3626. color:#000000;
  3627. vertical-align:none;
  3628. text-align:left;
  3629. text-transform:none;
  3630. background-color:transparent;
  3631. border-color:transparent;
  3632. }
  3633. #u32112_input.disabled {
  3634. position:absolute;
  3635. left:0px;
  3636. top:0px;
  3637. width:150px;
  3638. height:28px;
  3639. padding:2px 2px 2px 2px;
  3640. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3641. font-weight:400;
  3642. font-style:normal;
  3643. font-size:14px;
  3644. letter-spacing:normal;
  3645. color:#000000;
  3646. vertical-align:none;
  3647. text-align:left;
  3648. text-transform:none;
  3649. background-color:transparent;
  3650. border-color:transparent;
  3651. }
  3652. #u32112_div {
  3653. border-width:0px;
  3654. position:absolute;
  3655. left:0px;
  3656. top:0px;
  3657. width:150px;
  3658. height:28px;
  3659. background:inherit;
  3660. background-color:rgba(255, 255, 255, 1);
  3661. border:none;
  3662. border-radius:0px;
  3663. -moz-box-shadow:none;
  3664. -webkit-box-shadow:none;
  3665. box-shadow:none;
  3666. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3667. font-weight:400;
  3668. font-style:normal;
  3669. font-size:14px;
  3670. }
  3671. #u32112 {
  3672. border-width:0px;
  3673. position:absolute;
  3674. left:873px;
  3675. top:141px;
  3676. width:150px;
  3677. height:28px;
  3678. display:flex;
  3679. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3680. font-weight:400;
  3681. font-style:normal;
  3682. font-size:14px;
  3683. }
  3684. #u32112 .text {
  3685. position:absolute;
  3686. align-self:center;
  3687. padding:2px 2px 2px 2px;
  3688. box-sizing:border-box;
  3689. width:100%;
  3690. }
  3691. #u32112_div.disabled {
  3692. border-width:0px;
  3693. position:absolute;
  3694. left:0px;
  3695. top:0px;
  3696. width:150px;
  3697. height:28px;
  3698. background:inherit;
  3699. background-color:rgba(240, 240, 240, 1);
  3700. border:none;
  3701. border-radius:0px;
  3702. -moz-box-shadow:none;
  3703. -webkit-box-shadow:none;
  3704. box-shadow:none;
  3705. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3706. font-weight:400;
  3707. font-style:normal;
  3708. font-size:14px;
  3709. }
  3710. #u32112.disabled {
  3711. }
  3712. #u32113 {
  3713. border-width:0px;
  3714. position:absolute;
  3715. left:0px;
  3716. top:0px;
  3717. width:0px;
  3718. height:0px;
  3719. }
  3720. #u32114_div {
  3721. border-width:0px;
  3722. position:absolute;
  3723. left:0px;
  3724. top:0px;
  3725. width:60px;
  3726. height:30px;
  3727. background:inherit;
  3728. background-color:rgba(24, 144, 255, 1);
  3729. border:none;
  3730. border-radius:4px;
  3731. -moz-box-shadow:none;
  3732. -webkit-box-shadow:none;
  3733. box-shadow:none;
  3734. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3735. font-weight:400;
  3736. font-style:normal;
  3737. font-size:14px;
  3738. color:#FFFFFF;
  3739. }
  3740. #u32114 {
  3741. border-width:0px;
  3742. position:absolute;
  3743. left:1207px;
  3744. top:140px;
  3745. width:60px;
  3746. height:30px;
  3747. display:flex;
  3748. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3749. font-weight:400;
  3750. font-style:normal;
  3751. font-size:14px;
  3752. color:#FFFFFF;
  3753. }
  3754. #u32114 .text {
  3755. position:absolute;
  3756. align-self:center;
  3757. padding:2px 2px 2px 2px;
  3758. box-sizing:border-box;
  3759. width:100%;
  3760. }
  3761. #u32114_text {
  3762. border-width:0px;
  3763. word-wrap:break-word;
  3764. text-transform:none;
  3765. }
  3766. #u32115_div {
  3767. border-width:0px;
  3768. position:absolute;
  3769. left:0px;
  3770. top:0px;
  3771. width:60px;
  3772. height:30px;
  3773. background:inherit;
  3774. background-color:rgba(255, 255, 255, 1);
  3775. box-sizing:border-box;
  3776. border-width:1px;
  3777. border-style:solid;
  3778. border-color:rgba(170, 170, 170, 1);
  3779. border-radius:4px;
  3780. -moz-box-shadow:none;
  3781. -webkit-box-shadow:none;
  3782. box-shadow:none;
  3783. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3784. font-weight:400;
  3785. font-style:normal;
  3786. font-size:14px;
  3787. }
  3788. #u32115 {
  3789. border-width:0px;
  3790. position:absolute;
  3791. left:1277px;
  3792. top:140px;
  3793. width:60px;
  3794. height:30px;
  3795. display:flex;
  3796. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3797. font-weight:400;
  3798. font-style:normal;
  3799. font-size:14px;
  3800. }
  3801. #u32115 .text {
  3802. position:absolute;
  3803. align-self:center;
  3804. padding:2px 2px 2px 2px;
  3805. box-sizing:border-box;
  3806. width:100%;
  3807. }
  3808. #u32115_text {
  3809. border-width:0px;
  3810. word-wrap:break-word;
  3811. text-transform:none;
  3812. }
  3813. #u32116 {
  3814. border-width:0px;
  3815. position:absolute;
  3816. left:0px;
  3817. top:0px;
  3818. width:0px;
  3819. height:0px;
  3820. }
  3821. #u32117_div {
  3822. border-width:0px;
  3823. position:absolute;
  3824. left:0px;
  3825. top:0px;
  3826. width:160px;
  3827. height:30px;
  3828. background:inherit;
  3829. background-color:rgba(255, 255, 255, 1);
  3830. box-sizing:border-box;
  3831. border-width:1px;
  3832. border-style:solid;
  3833. border-color:rgba(215, 215, 215, 1);
  3834. border-radius:4px;
  3835. -moz-box-shadow:none;
  3836. -webkit-box-shadow:none;
  3837. box-shadow:none;
  3838. font-size:14px;
  3839. }
  3840. #u32117 {
  3841. border-width:0px;
  3842. position:absolute;
  3843. left:1037px;
  3844. top:140px;
  3845. width:160px;
  3846. height:30px;
  3847. display:flex;
  3848. font-size:14px;
  3849. }
  3850. #u32117 .text {
  3851. position:absolute;
  3852. align-self:center;
  3853. padding:2px 2px 2px 2px;
  3854. box-sizing:border-box;
  3855. width:100%;
  3856. }
  3857. #u32117_text {
  3858. border-width:0px;
  3859. word-wrap:break-word;
  3860. text-transform:none;
  3861. visibility:hidden;
  3862. }
  3863. #u32118_input {
  3864. position:absolute;
  3865. left:0px;
  3866. top:0px;
  3867. width:153px;
  3868. height:23px;
  3869. padding:2px 2px 2px 2px;
  3870. font-family:'ArialMT', 'Arial', sans-serif;
  3871. font-weight:400;
  3872. font-style:normal;
  3873. font-size:14px;
  3874. letter-spacing:normal;
  3875. color:#AAAAAA;
  3876. vertical-align:none;
  3877. text-align:left;
  3878. text-transform:none;
  3879. background-color:transparent;
  3880. border-color:transparent;
  3881. }
  3882. #u32118_input.disabled {
  3883. position:absolute;
  3884. left:0px;
  3885. top:0px;
  3886. width:153px;
  3887. height:23px;
  3888. padding:2px 2px 2px 2px;
  3889. font-family:'ArialMT', 'Arial', sans-serif;
  3890. font-weight:400;
  3891. font-style:normal;
  3892. font-size:14px;
  3893. letter-spacing:normal;
  3894. color:#AAAAAA;
  3895. vertical-align:none;
  3896. text-align:left;
  3897. text-transform:none;
  3898. background-color:transparent;
  3899. border-color:transparent;
  3900. }
  3901. #u32118_div {
  3902. border-width:0px;
  3903. position:absolute;
  3904. left:0px;
  3905. top:0px;
  3906. width:153px;
  3907. height:23px;
  3908. background:inherit;
  3909. background-color:rgba(255, 255, 255, 1);
  3910. border:none;
  3911. border-radius:0px;
  3912. -moz-box-shadow:none;
  3913. -webkit-box-shadow:none;
  3914. box-shadow:none;
  3915. font-size:14px;
  3916. color:#AAAAAA;
  3917. }
  3918. #u32118 {
  3919. border-width:0px;
  3920. position:absolute;
  3921. left:1042px;
  3922. top:142px;
  3923. width:153px;
  3924. height:23px;
  3925. display:flex;
  3926. font-size:14px;
  3927. color:#AAAAAA;
  3928. }
  3929. #u32118 .text {
  3930. position:absolute;
  3931. align-self:flex-start;
  3932. padding:2px 2px 2px 2px;
  3933. box-sizing:border-box;
  3934. width:100%;
  3935. }
  3936. #u32118_div.disabled {
  3937. border-width:0px;
  3938. position:absolute;
  3939. left:0px;
  3940. top:0px;
  3941. width:153px;
  3942. height:23px;
  3943. background:inherit;
  3944. background-color:rgba(240, 240, 240, 1);
  3945. border:none;
  3946. border-radius:0px;
  3947. -moz-box-shadow:none;
  3948. -webkit-box-shadow:none;
  3949. box-shadow:none;
  3950. font-size:14px;
  3951. color:#AAAAAA;
  3952. }
  3953. #u32118.disabled {
  3954. }
  3955. .u32118_input_option {
  3956. font-size:14px;
  3957. }
  3958. #u32119_div {
  3959. border-width:0px;
  3960. position:absolute;
  3961. left:0px;
  3962. top:0px;
  3963. width:73px;
  3964. height:50px;
  3965. background:inherit;
  3966. background-color:rgba(255, 255, 255, 0);
  3967. border:none;
  3968. border-left:0px;
  3969. border-top:0px;
  3970. border-right:0px;
  3971. border-radius:0px;
  3972. border-bottom-right-radius:0px;
  3973. border-bottom-left-radius:0px;
  3974. -moz-box-shadow:none;
  3975. -webkit-box-shadow:none;
  3976. box-shadow:none;
  3977. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3978. font-weight:400;
  3979. font-style:normal;
  3980. font-size:18px;
  3981. line-height:40px;
  3982. }
  3983. #u32119 {
  3984. border-width:0px;
  3985. position:absolute;
  3986. left:357px;
  3987. top:50px;
  3988. width:73px;
  3989. height:50px;
  3990. display:flex;
  3991. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3992. font-weight:400;
  3993. font-style:normal;
  3994. font-size:18px;
  3995. line-height:40px;
  3996. }
  3997. #u32119 .text {
  3998. position:absolute;
  3999. align-self:center;
  4000. padding:0px 0px 0px 0px;
  4001. box-sizing:border-box;
  4002. width:100%;
  4003. }
  4004. #u32119_text {
  4005. border-width:0px;
  4006. white-space:nowrap;
  4007. text-transform:none;
  4008. }
  4009. #u32120 label {
  4010. left:0px;
  4011. width:100%;
  4012. }
  4013. #u32120_img {
  4014. border-width:0px;
  4015. position:absolute;
  4016. left:0px;
  4017. top:0px;
  4018. width:12px;
  4019. height:12px;
  4020. }
  4021. #u32120 {
  4022. border-width:0px;
  4023. position:absolute;
  4024. left:373px;
  4025. top:237px;
  4026. width:25px;
  4027. height:16px;
  4028. display:flex;
  4029. }
  4030. #u32120 .text {
  4031. position:absolute;
  4032. align-self:center;
  4033. padding:0px 2px 0px 2px;
  4034. box-sizing:border-box;
  4035. }
  4036. #u32120_img.selected {
  4037. }
  4038. #u32120.selected {
  4039. }
  4040. #u32120_img.disabled {
  4041. }
  4042. #u32120.disabled {
  4043. }
  4044. #u32120_img.selectedDisabled {
  4045. }
  4046. #u32120.selectedDisabled {
  4047. }
  4048. #u32120_text {
  4049. border-width:0px;
  4050. position:absolute;
  4051. left:14px;
  4052. top:0px;
  4053. width:9px;
  4054. word-wrap:break-word;
  4055. text-transform:none;
  4056. visibility:hidden;
  4057. }
  4058. #u32120_input {
  4059. border-width:0px;
  4060. position:absolute;
  4061. left:0px;
  4062. top:0px;
  4063. width:0px;
  4064. height:0px;
  4065. opacity:0;
  4066. }
  4067. #u32121 label {
  4068. left:0px;
  4069. width:100%;
  4070. }
  4071. #u32121_img {
  4072. border-width:0px;
  4073. position:absolute;
  4074. left:0px;
  4075. top:0px;
  4076. width:12px;
  4077. height:12px;
  4078. }
  4079. #u32121 {
  4080. border-width:0px;
  4081. position:absolute;
  4082. left:373px;
  4083. top:275px;
  4084. width:25px;
  4085. height:16px;
  4086. display:flex;
  4087. }
  4088. #u32121 .text {
  4089. position:absolute;
  4090. align-self:center;
  4091. padding:0px 2px 0px 2px;
  4092. box-sizing:border-box;
  4093. }
  4094. #u32121_img.selected {
  4095. }
  4096. #u32121.selected {
  4097. }
  4098. #u32121_img.disabled {
  4099. }
  4100. #u32121.disabled {
  4101. }
  4102. #u32121_img.selectedDisabled {
  4103. }
  4104. #u32121.selectedDisabled {
  4105. }
  4106. #u32121_text {
  4107. border-width:0px;
  4108. position:absolute;
  4109. left:14px;
  4110. top:0px;
  4111. width:9px;
  4112. word-wrap:break-word;
  4113. text-transform:none;
  4114. visibility:hidden;
  4115. }
  4116. #u32121_input {
  4117. border-width:0px;
  4118. position:absolute;
  4119. left:0px;
  4120. top:0px;
  4121. width:0px;
  4122. height:0px;
  4123. opacity:0;
  4124. }
  4125. #u32122 {
  4126. border-width:0px;
  4127. position:absolute;
  4128. left:0px;
  4129. top:0px;
  4130. width:0px;
  4131. height:0px;
  4132. }
  4133. #u32123_div {
  4134. border-width:0px;
  4135. position:absolute;
  4136. left:0px;
  4137. top:0px;
  4138. width:160px;
  4139. height:30px;
  4140. background:inherit;
  4141. background-color:rgba(255, 255, 255, 1);
  4142. box-sizing:border-box;
  4143. border-width:1px;
  4144. border-style:solid;
  4145. border-color:rgba(215, 215, 215, 1);
  4146. border-radius:4px;
  4147. -moz-box-shadow:none;
  4148. -webkit-box-shadow:none;
  4149. box-shadow:none;
  4150. font-size:14px;
  4151. }
  4152. #u32123 {
  4153. border-width:0px;
  4154. position:absolute;
  4155. left:697px;
  4156. top:140px;
  4157. width:160px;
  4158. height:30px;
  4159. display:flex;
  4160. font-size:14px;
  4161. }
  4162. #u32123 .text {
  4163. position:absolute;
  4164. align-self:center;
  4165. padding:2px 2px 2px 2px;
  4166. box-sizing:border-box;
  4167. width:100%;
  4168. }
  4169. #u32123_text {
  4170. border-width:0px;
  4171. word-wrap:break-word;
  4172. text-transform:none;
  4173. visibility:hidden;
  4174. }
  4175. #u32124_input {
  4176. position:absolute;
  4177. left:0px;
  4178. top:0px;
  4179. width:153px;
  4180. height:23px;
  4181. padding:2px 2px 2px 2px;
  4182. font-family:'ArialMT', 'Arial', sans-serif;
  4183. font-weight:400;
  4184. font-style:normal;
  4185. font-size:14px;
  4186. letter-spacing:normal;
  4187. color:#AAAAAA;
  4188. vertical-align:none;
  4189. text-align:left;
  4190. text-transform:none;
  4191. background-color:transparent;
  4192. border-color:transparent;
  4193. }
  4194. #u32124_input.disabled {
  4195. position:absolute;
  4196. left:0px;
  4197. top:0px;
  4198. width:153px;
  4199. height:23px;
  4200. padding:2px 2px 2px 2px;
  4201. font-family:'ArialMT', 'Arial', sans-serif;
  4202. font-weight:400;
  4203. font-style:normal;
  4204. font-size:14px;
  4205. letter-spacing:normal;
  4206. color:#AAAAAA;
  4207. vertical-align:none;
  4208. text-align:left;
  4209. text-transform:none;
  4210. background-color:transparent;
  4211. border-color:transparent;
  4212. }
  4213. #u32124_div {
  4214. border-width:0px;
  4215. position:absolute;
  4216. left:0px;
  4217. top:0px;
  4218. width:153px;
  4219. height:23px;
  4220. background:inherit;
  4221. background-color:rgba(255, 255, 255, 1);
  4222. border:none;
  4223. border-radius:0px;
  4224. -moz-box-shadow:none;
  4225. -webkit-box-shadow:none;
  4226. box-shadow:none;
  4227. font-size:14px;
  4228. color:#AAAAAA;
  4229. }
  4230. #u32124 {
  4231. border-width:0px;
  4232. position:absolute;
  4233. left:702px;
  4234. top:142px;
  4235. width:153px;
  4236. height:23px;
  4237. display:flex;
  4238. font-size:14px;
  4239. color:#AAAAAA;
  4240. }
  4241. #u32124 .text {
  4242. position:absolute;
  4243. align-self:flex-start;
  4244. padding:2px 2px 2px 2px;
  4245. box-sizing:border-box;
  4246. width:100%;
  4247. }
  4248. #u32124_div.disabled {
  4249. border-width:0px;
  4250. position:absolute;
  4251. left:0px;
  4252. top:0px;
  4253. width:153px;
  4254. height:23px;
  4255. background:inherit;
  4256. background-color:rgba(240, 240, 240, 1);
  4257. border:none;
  4258. border-radius:0px;
  4259. -moz-box-shadow:none;
  4260. -webkit-box-shadow:none;
  4261. box-shadow:none;
  4262. font-size:14px;
  4263. color:#AAAAAA;
  4264. }
  4265. #u32124.disabled {
  4266. }
  4267. .u32124_input_option {
  4268. font-size:14px;
  4269. }
  4270. #u32125 {
  4271. border-width:0px;
  4272. position:absolute;
  4273. left:0px;
  4274. top:0px;
  4275. width:0px;
  4276. height:0px;
  4277. }
  4278. #u32126_div {
  4279. border-width:0px;
  4280. position:absolute;
  4281. left:0px;
  4282. top:0px;
  4283. width:160px;
  4284. height:30px;
  4285. background:inherit;
  4286. background-color:rgba(255, 255, 255, 1);
  4287. box-sizing:border-box;
  4288. border-width:1px;
  4289. border-style:solid;
  4290. border-color:rgba(215, 215, 215, 1);
  4291. border-radius:4px;
  4292. -moz-box-shadow:none;
  4293. -webkit-box-shadow:none;
  4294. box-shadow:none;
  4295. font-size:14px;
  4296. }
  4297. #u32126 {
  4298. border-width:0px;
  4299. position:absolute;
  4300. left:357px;
  4301. top:140px;
  4302. width:160px;
  4303. height:30px;
  4304. display:flex;
  4305. font-size:14px;
  4306. }
  4307. #u32126 .text {
  4308. position:absolute;
  4309. align-self:center;
  4310. padding:2px 2px 2px 2px;
  4311. box-sizing:border-box;
  4312. width:100%;
  4313. }
  4314. #u32126_text {
  4315. border-width:0px;
  4316. word-wrap:break-word;
  4317. text-transform:none;
  4318. visibility:hidden;
  4319. }
  4320. #u32127_input {
  4321. position:absolute;
  4322. left:0px;
  4323. top:0px;
  4324. width:153px;
  4325. height:23px;
  4326. padding:2px 2px 2px 2px;
  4327. font-family:'ArialMT', 'Arial', sans-serif;
  4328. font-weight:400;
  4329. font-style:normal;
  4330. font-size:14px;
  4331. letter-spacing:normal;
  4332. color:#AAAAAA;
  4333. vertical-align:none;
  4334. text-align:left;
  4335. text-transform:none;
  4336. background-color:transparent;
  4337. border-color:transparent;
  4338. }
  4339. #u32127_input.disabled {
  4340. position:absolute;
  4341. left:0px;
  4342. top:0px;
  4343. width:153px;
  4344. height:23px;
  4345. padding:2px 2px 2px 2px;
  4346. font-family:'ArialMT', 'Arial', sans-serif;
  4347. font-weight:400;
  4348. font-style:normal;
  4349. font-size:14px;
  4350. letter-spacing:normal;
  4351. color:#AAAAAA;
  4352. vertical-align:none;
  4353. text-align:left;
  4354. text-transform:none;
  4355. background-color:transparent;
  4356. border-color:transparent;
  4357. }
  4358. #u32127_div {
  4359. border-width:0px;
  4360. position:absolute;
  4361. left:0px;
  4362. top:0px;
  4363. width:153px;
  4364. height:23px;
  4365. background:inherit;
  4366. background-color:rgba(255, 255, 255, 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. #u32127 {
  4376. border-width:0px;
  4377. position:absolute;
  4378. left:362px;
  4379. top:142px;
  4380. width:153px;
  4381. height:23px;
  4382. display:flex;
  4383. font-size:14px;
  4384. color:#AAAAAA;
  4385. }
  4386. #u32127 .text {
  4387. position:absolute;
  4388. align-self:flex-start;
  4389. padding:2px 2px 2px 2px;
  4390. box-sizing:border-box;
  4391. width:100%;
  4392. }
  4393. #u32127_div.disabled {
  4394. border-width:0px;
  4395. position:absolute;
  4396. left:0px;
  4397. top:0px;
  4398. width:153px;
  4399. height:23px;
  4400. background:inherit;
  4401. background-color:rgba(240, 240, 240, 1);
  4402. border:none;
  4403. border-radius:0px;
  4404. -moz-box-shadow:none;
  4405. -webkit-box-shadow:none;
  4406. box-shadow:none;
  4407. font-size:14px;
  4408. color:#AAAAAA;
  4409. }
  4410. #u32127.disabled {
  4411. }
  4412. .u32127_input_option {
  4413. font-size:14px;
  4414. }
  4415. #u32128 {
  4416. border-width:0px;
  4417. position:absolute;
  4418. left:0px;
  4419. top:0px;
  4420. width:0px;
  4421. height:0px;
  4422. }
  4423. #u32129_div {
  4424. border-width:0px;
  4425. position:absolute;
  4426. left:0px;
  4427. top:0px;
  4428. width:160px;
  4429. height:30px;
  4430. background:inherit;
  4431. background-color:rgba(255, 255, 255, 1);
  4432. box-sizing:border-box;
  4433. border-width:1px;
  4434. border-style:solid;
  4435. border-color:rgba(215, 215, 215, 1);
  4436. border-radius:4px;
  4437. -moz-box-shadow:none;
  4438. -webkit-box-shadow:none;
  4439. box-shadow:none;
  4440. font-size:14px;
  4441. }
  4442. #u32129 {
  4443. border-width:0px;
  4444. position:absolute;
  4445. left:527px;
  4446. top:140px;
  4447. width:160px;
  4448. height:30px;
  4449. display:flex;
  4450. font-size:14px;
  4451. }
  4452. #u32129 .text {
  4453. position:absolute;
  4454. align-self:center;
  4455. padding:2px 2px 2px 2px;
  4456. box-sizing:border-box;
  4457. width:100%;
  4458. }
  4459. #u32129_text {
  4460. border-width:0px;
  4461. word-wrap:break-word;
  4462. text-transform:none;
  4463. visibility:hidden;
  4464. }
  4465. #u32130_input {
  4466. position:absolute;
  4467. left:0px;
  4468. top:0px;
  4469. width:153px;
  4470. height:23px;
  4471. padding:2px 2px 2px 2px;
  4472. font-family:'ArialMT', 'Arial', sans-serif;
  4473. font-weight:400;
  4474. font-style:normal;
  4475. font-size:14px;
  4476. letter-spacing:normal;
  4477. color:#AAAAAA;
  4478. vertical-align:none;
  4479. text-align:left;
  4480. text-transform:none;
  4481. background-color:transparent;
  4482. border-color:transparent;
  4483. }
  4484. #u32130_input.disabled {
  4485. position:absolute;
  4486. left:0px;
  4487. top:0px;
  4488. width:153px;
  4489. height:23px;
  4490. padding:2px 2px 2px 2px;
  4491. font-family:'ArialMT', 'Arial', sans-serif;
  4492. font-weight:400;
  4493. font-style:normal;
  4494. font-size:14px;
  4495. letter-spacing:normal;
  4496. color:#AAAAAA;
  4497. vertical-align:none;
  4498. text-align:left;
  4499. text-transform:none;
  4500. background-color:transparent;
  4501. border-color:transparent;
  4502. }
  4503. #u32130_div {
  4504. border-width:0px;
  4505. position:absolute;
  4506. left:0px;
  4507. top:0px;
  4508. width:153px;
  4509. height:23px;
  4510. background:inherit;
  4511. background-color:rgba(255, 255, 255, 1);
  4512. border:none;
  4513. border-radius:0px;
  4514. -moz-box-shadow:none;
  4515. -webkit-box-shadow:none;
  4516. box-shadow:none;
  4517. font-size:14px;
  4518. color:#AAAAAA;
  4519. }
  4520. #u32130 {
  4521. border-width:0px;
  4522. position:absolute;
  4523. left:532px;
  4524. top:142px;
  4525. width:153px;
  4526. height:23px;
  4527. display:flex;
  4528. font-size:14px;
  4529. color:#AAAAAA;
  4530. }
  4531. #u32130 .text {
  4532. position:absolute;
  4533. align-self:flex-start;
  4534. padding:2px 2px 2px 2px;
  4535. box-sizing:border-box;
  4536. width:100%;
  4537. }
  4538. #u32130_div.disabled {
  4539. border-width:0px;
  4540. position:absolute;
  4541. left:0px;
  4542. top:0px;
  4543. width:153px;
  4544. height:23px;
  4545. background:inherit;
  4546. background-color:rgba(240, 240, 240, 1);
  4547. border:none;
  4548. border-radius:0px;
  4549. -moz-box-shadow:none;
  4550. -webkit-box-shadow:none;
  4551. box-shadow:none;
  4552. font-size:14px;
  4553. color:#AAAAAA;
  4554. }
  4555. #u32130.disabled {
  4556. }
  4557. .u32130_input_option {
  4558. font-size:14px;
  4559. }
  4560. #u32132_div {
  4561. border-width:0px;
  4562. position:absolute;
  4563. left:0px;
  4564. top:0px;
  4565. width:200px;
  4566. height:1188px;
  4567. background:inherit;
  4568. background-color:rgba(255, 255, 255, 1);
  4569. border:none;
  4570. border-radius:0px;
  4571. -moz-box-shadow:none;
  4572. -webkit-box-shadow:none;
  4573. box-shadow:none;
  4574. }
  4575. #u32132 {
  4576. border-width:0px;
  4577. position:absolute;
  4578. left:120px;
  4579. top:50px;
  4580. width:200px;
  4581. height:1188px;
  4582. display:flex;
  4583. }
  4584. #u32132 .text {
  4585. position:absolute;
  4586. align-self:center;
  4587. padding:2px 2px 2px 2px;
  4588. box-sizing:border-box;
  4589. width:100%;
  4590. }
  4591. #u32132_text {
  4592. border-width:0px;
  4593. word-wrap:break-word;
  4594. text-transform:none;
  4595. visibility:hidden;
  4596. }
  4597. #u32133_div {
  4598. border-width:0px;
  4599. position:absolute;
  4600. left:0px;
  4601. top:0px;
  4602. width:200px;
  4603. height:60px;
  4604. background:inherit;
  4605. background-color:rgba(224, 231, 247, 1);
  4606. border:none;
  4607. border-radius:0px;
  4608. -moz-box-shadow:none;
  4609. -webkit-box-shadow:none;
  4610. box-shadow:none;
  4611. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  4612. font-weight:500;
  4613. font-style:normal;
  4614. font-size:18px;
  4615. }
  4616. #u32133 {
  4617. border-width:0px;
  4618. position:absolute;
  4619. left:120px;
  4620. top:50px;
  4621. width:200px;
  4622. height:60px;
  4623. display:flex;
  4624. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  4625. font-weight:500;
  4626. font-style:normal;
  4627. font-size:18px;
  4628. }
  4629. #u32133 .text {
  4630. position:absolute;
  4631. align-self:center;
  4632. padding:0px 0px 0px 20px;
  4633. box-sizing:border-box;
  4634. width:100%;
  4635. }
  4636. #u32133_text {
  4637. border-width:0px;
  4638. word-wrap:break-word;
  4639. text-transform:none;
  4640. }
  4641. #u32134_div {
  4642. border-width:0px;
  4643. position:absolute;
  4644. left:0px;
  4645. top:0px;
  4646. width:65px;
  4647. height:22px;
  4648. background:inherit;
  4649. background-color:rgba(255, 255, 255, 0);
  4650. border:none;
  4651. border-radius:0px;
  4652. -moz-box-shadow:none;
  4653. -webkit-box-shadow:none;
  4654. box-shadow:none;
  4655. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4656. font-weight:400;
  4657. font-style:normal;
  4658. font-size:16px;
  4659. }
  4660. #u32134 {
  4661. border-width:0px;
  4662. position:absolute;
  4663. left:147px;
  4664. top:346px;
  4665. width:65px;
  4666. height:22px;
  4667. display:flex;
  4668. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4669. font-weight:400;
  4670. font-style:normal;
  4671. font-size:16px;
  4672. }
  4673. #u32134 .text {
  4674. position:absolute;
  4675. align-self:flex-start;
  4676. padding:0px 0px 0px 0px;
  4677. box-sizing:border-box;
  4678. width:100%;
  4679. }
  4680. #u32134_text {
  4681. border-width:0px;
  4682. white-space:nowrap;
  4683. text-transform:none;
  4684. }
  4685. #u32135_div {
  4686. border-width:0px;
  4687. position:absolute;
  4688. left:0px;
  4689. top:0px;
  4690. width:65px;
  4691. height:22px;
  4692. background:inherit;
  4693. background-color:rgba(255, 255, 255, 0);
  4694. border:none;
  4695. border-radius:0px;
  4696. -moz-box-shadow:none;
  4697. -webkit-box-shadow:none;
  4698. box-shadow:none;
  4699. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4700. font-weight:400;
  4701. font-style:normal;
  4702. font-size:16px;
  4703. }
  4704. #u32135 {
  4705. border-width:0px;
  4706. position:absolute;
  4707. left:147px;
  4708. top:388px;
  4709. width:65px;
  4710. height:22px;
  4711. display:flex;
  4712. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4713. font-weight:400;
  4714. font-style:normal;
  4715. font-size:16px;
  4716. }
  4717. #u32135 .text {
  4718. position:absolute;
  4719. align-self:flex-start;
  4720. padding:0px 0px 0px 0px;
  4721. box-sizing:border-box;
  4722. width:100%;
  4723. }
  4724. #u32135_text {
  4725. border-width:0px;
  4726. white-space:nowrap;
  4727. text-transform:none;
  4728. }
  4729. #u32136_div {
  4730. border-width:0px;
  4731. position:absolute;
  4732. left:0px;
  4733. top:0px;
  4734. width:49px;
  4735. height:22px;
  4736. background:inherit;
  4737. background-color:rgba(255, 255, 255, 0);
  4738. border:none;
  4739. border-radius:0px;
  4740. -moz-box-shadow:none;
  4741. -webkit-box-shadow:none;
  4742. box-shadow:none;
  4743. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4744. font-weight:400;
  4745. font-style:normal;
  4746. font-size:16px;
  4747. }
  4748. #u32136 {
  4749. border-width:0px;
  4750. position:absolute;
  4751. left:147px;
  4752. top:499px;
  4753. width:49px;
  4754. height:22px;
  4755. display:flex;
  4756. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4757. font-weight:400;
  4758. font-style:normal;
  4759. font-size:16px;
  4760. }
  4761. #u32136 .text {
  4762. position:absolute;
  4763. align-self:flex-start;
  4764. padding:0px 0px 0px 0px;
  4765. box-sizing:border-box;
  4766. width:100%;
  4767. }
  4768. #u32136_text {
  4769. border-width:0px;
  4770. white-space:nowrap;
  4771. text-transform:none;
  4772. }
  4773. #u32137_div {
  4774. border-width:0px;
  4775. position:absolute;
  4776. left:0px;
  4777. top:0px;
  4778. width:65px;
  4779. height:22px;
  4780. background:inherit;
  4781. background-color:rgba(255, 255, 255, 0);
  4782. border:none;
  4783. border-radius:0px;
  4784. -moz-box-shadow:none;
  4785. -webkit-box-shadow:none;
  4786. box-shadow:none;
  4787. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4788. font-weight:400;
  4789. font-style:normal;
  4790. font-size:16px;
  4791. }
  4792. #u32137 {
  4793. border-width:0px;
  4794. position:absolute;
  4795. left:147px;
  4796. top:625px;
  4797. width:65px;
  4798. height:22px;
  4799. display:flex;
  4800. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4801. font-weight:400;
  4802. font-style:normal;
  4803. font-size:16px;
  4804. }
  4805. #u32137 .text {
  4806. position:absolute;
  4807. align-self:flex-start;
  4808. padding:0px 0px 0px 0px;
  4809. box-sizing:border-box;
  4810. width:100%;
  4811. }
  4812. #u32137_text {
  4813. border-width:0px;
  4814. white-space:nowrap;
  4815. text-transform:none;
  4816. }
  4817. #u32138_div {
  4818. border-width:0px;
  4819. position:absolute;
  4820. left:0px;
  4821. top:0px;
  4822. width:49px;
  4823. height:17px;
  4824. background:inherit;
  4825. background-color:rgba(255, 255, 255, 0);
  4826. border:none;
  4827. border-radius:0px;
  4828. -moz-box-shadow:none;
  4829. -webkit-box-shadow:none;
  4830. box-shadow:none;
  4831. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4832. font-weight:400;
  4833. font-style:normal;
  4834. font-size:12px;
  4835. color:#AAAAAA;
  4836. }
  4837. #u32138 {
  4838. border-width:0px;
  4839. position:absolute;
  4840. left:147px;
  4841. top:270px;
  4842. width:49px;
  4843. height:17px;
  4844. display:flex;
  4845. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4846. font-weight:400;
  4847. font-style:normal;
  4848. font-size:12px;
  4849. color:#AAAAAA;
  4850. }
  4851. #u32138 .text {
  4852. position:absolute;
  4853. align-self:flex-start;
  4854. padding:0px 0px 0px 0px;
  4855. box-sizing:border-box;
  4856. width:100%;
  4857. }
  4858. #u32138_text {
  4859. border-width:0px;
  4860. white-space:nowrap;
  4861. text-transform:none;
  4862. }
  4863. #u32139_img {
  4864. border-width:0px;
  4865. position:absolute;
  4866. left:0px;
  4867. top:0px;
  4868. width:201px;
  4869. height:2px;
  4870. }
  4871. #u32139 {
  4872. border-width:0px;
  4873. position:absolute;
  4874. left:120px;
  4875. top:440px;
  4876. width:200px;
  4877. height:1px;
  4878. display:flex;
  4879. }
  4880. #u32139 .text {
  4881. position:absolute;
  4882. align-self:center;
  4883. padding:2px 2px 2px 2px;
  4884. box-sizing:border-box;
  4885. width:100%;
  4886. }
  4887. #u32139_text {
  4888. border-width:0px;
  4889. word-wrap:break-word;
  4890. text-transform:none;
  4891. visibility:hidden;
  4892. }
  4893. #u32140_div {
  4894. border-width:0px;
  4895. position:absolute;
  4896. left:0px;
  4897. top:0px;
  4898. width:65px;
  4899. height:22px;
  4900. background:inherit;
  4901. background-color:rgba(255, 255, 255, 0);
  4902. border:none;
  4903. border-radius:0px;
  4904. -moz-box-shadow:none;
  4905. -webkit-box-shadow:none;
  4906. box-shadow:none;
  4907. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4908. font-weight:400;
  4909. font-style:normal;
  4910. font-size:16px;
  4911. }
  4912. #u32140 {
  4913. border-width:0px;
  4914. position:absolute;
  4915. left:147px;
  4916. top:583px;
  4917. width:65px;
  4918. height:22px;
  4919. display:flex;
  4920. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4921. font-weight:400;
  4922. font-style:normal;
  4923. font-size:16px;
  4924. }
  4925. #u32140 .text {
  4926. position:absolute;
  4927. align-self:flex-start;
  4928. padding:0px 0px 0px 0px;
  4929. box-sizing:border-box;
  4930. width:100%;
  4931. }
  4932. #u32140_text {
  4933. border-width:0px;
  4934. white-space:nowrap;
  4935. text-transform:none;
  4936. }
  4937. #u32141_div {
  4938. border-width:0px;
  4939. position:absolute;
  4940. left:0px;
  4941. top:0px;
  4942. width:65px;
  4943. height:22px;
  4944. background:inherit;
  4945. background-color:rgba(255, 255, 255, 0);
  4946. border:none;
  4947. border-radius:0px;
  4948. -moz-box-shadow:none;
  4949. -webkit-box-shadow:none;
  4950. box-shadow:none;
  4951. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4952. font-weight:400;
  4953. font-style:normal;
  4954. font-size:16px;
  4955. }
  4956. #u32141 {
  4957. border-width:0px;
  4958. position:absolute;
  4959. left:147px;
  4960. top:667px;
  4961. width:65px;
  4962. height:22px;
  4963. display:flex;
  4964. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4965. font-weight:400;
  4966. font-style:normal;
  4967. font-size:16px;
  4968. }
  4969. #u32141 .text {
  4970. position:absolute;
  4971. align-self:flex-start;
  4972. padding:0px 0px 0px 0px;
  4973. box-sizing:border-box;
  4974. width:100%;
  4975. }
  4976. #u32141_text {
  4977. border-width:0px;
  4978. white-space:nowrap;
  4979. text-transform:none;
  4980. }
  4981. #u32142_div {
  4982. border-width:0px;
  4983. position:absolute;
  4984. left:0px;
  4985. top:0px;
  4986. width:49px;
  4987. height:17px;
  4988. background:inherit;
  4989. background-color:rgba(255, 255, 255, 0);
  4990. border:none;
  4991. border-radius:0px;
  4992. -moz-box-shadow:none;
  4993. -webkit-box-shadow:none;
  4994. box-shadow:none;
  4995. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4996. font-weight:400;
  4997. font-style:normal;
  4998. font-size:12px;
  4999. color:#AAAAAA;
  5000. }
  5001. #u32142 {
  5002. border-width:0px;
  5003. position:absolute;
  5004. left:147px;
  5005. top:462px;
  5006. width:49px;
  5007. height:17px;
  5008. display:flex;
  5009. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5010. font-weight:400;
  5011. font-style:normal;
  5012. font-size:12px;
  5013. color:#AAAAAA;
  5014. }
  5015. #u32142 .text {
  5016. position:absolute;
  5017. align-self:flex-start;
  5018. padding:0px 0px 0px 0px;
  5019. box-sizing:border-box;
  5020. width:100%;
  5021. }
  5022. #u32142_text {
  5023. border-width:0px;
  5024. white-space:nowrap;
  5025. text-transform:none;
  5026. }
  5027. #u32143_div {
  5028. border-width:0px;
  5029. position:absolute;
  5030. left:0px;
  5031. top:0px;
  5032. width:65px;
  5033. height:22px;
  5034. background:inherit;
  5035. background-color:rgba(255, 255, 255, 0);
  5036. border:none;
  5037. border-radius:0px;
  5038. -moz-box-shadow:none;
  5039. -webkit-box-shadow:none;
  5040. box-shadow:none;
  5041. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5042. font-weight:400;
  5043. font-style:normal;
  5044. font-size:16px;
  5045. }
  5046. #u32143 {
  5047. border-width:0px;
  5048. position:absolute;
  5049. left:147px;
  5050. top:166px;
  5051. width:65px;
  5052. height:22px;
  5053. display:flex;
  5054. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5055. font-weight:400;
  5056. font-style:normal;
  5057. font-size:16px;
  5058. }
  5059. #u32143 .text {
  5060. position:absolute;
  5061. align-self:flex-start;
  5062. padding:0px 0px 0px 0px;
  5063. box-sizing:border-box;
  5064. width:100%;
  5065. }
  5066. #u32143_text {
  5067. border-width:0px;
  5068. white-space:nowrap;
  5069. text-transform:none;
  5070. }
  5071. #u32144_div {
  5072. border-width:0px;
  5073. position:absolute;
  5074. left:0px;
  5075. top:0px;
  5076. width:65px;
  5077. height:22px;
  5078. background:inherit;
  5079. background-color:rgba(255, 255, 255, 0);
  5080. border:none;
  5081. border-radius:0px;
  5082. -moz-box-shadow:none;
  5083. -webkit-box-shadow:none;
  5084. box-shadow:none;
  5085. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5086. font-weight:400;
  5087. font-style:normal;
  5088. font-size:16px;
  5089. }
  5090. #u32144 {
  5091. border-width:0px;
  5092. position:absolute;
  5093. left:147px;
  5094. top:304px;
  5095. width:65px;
  5096. height:22px;
  5097. display:flex;
  5098. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5099. font-weight:400;
  5100. font-style:normal;
  5101. font-size:16px;
  5102. }
  5103. #u32144 .text {
  5104. position:absolute;
  5105. align-self:flex-start;
  5106. padding:0px 0px 0px 0px;
  5107. box-sizing:border-box;
  5108. width:100%;
  5109. }
  5110. #u32144_text {
  5111. border-width:0px;
  5112. white-space:nowrap;
  5113. text-transform:none;
  5114. }
  5115. #u32145_div {
  5116. border-width:0px;
  5117. position:absolute;
  5118. left:0px;
  5119. top:0px;
  5120. width:49px;
  5121. height:17px;
  5122. background:inherit;
  5123. background-color:rgba(255, 255, 255, 0);
  5124. border:none;
  5125. border-radius:0px;
  5126. -moz-box-shadow:none;
  5127. -webkit-box-shadow:none;
  5128. box-shadow:none;
  5129. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5130. font-weight:400;
  5131. font-style:normal;
  5132. font-size:12px;
  5133. color:#AAAAAA;
  5134. }
  5135. #u32145 {
  5136. border-width:0px;
  5137. position:absolute;
  5138. left:147px;
  5139. top:130px;
  5140. width:49px;
  5141. height:17px;
  5142. display:flex;
  5143. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5144. font-weight:400;
  5145. font-style:normal;
  5146. font-size:12px;
  5147. color:#AAAAAA;
  5148. }
  5149. #u32145 .text {
  5150. position:absolute;
  5151. align-self:flex-start;
  5152. padding:0px 0px 0px 0px;
  5153. box-sizing:border-box;
  5154. width:100%;
  5155. }
  5156. #u32145_text {
  5157. border-width:0px;
  5158. white-space:nowrap;
  5159. text-transform:none;
  5160. }
  5161. #u32146_img {
  5162. border-width:0px;
  5163. position:absolute;
  5164. left:0px;
  5165. top:0px;
  5166. width:201px;
  5167. height:2px;
  5168. }
  5169. #u32146 {
  5170. border-width:0px;
  5171. position:absolute;
  5172. left:120px;
  5173. top:249px;
  5174. width:200px;
  5175. height:1px;
  5176. display:flex;
  5177. }
  5178. #u32146 .text {
  5179. position:absolute;
  5180. align-self:center;
  5181. padding:2px 2px 2px 2px;
  5182. box-sizing:border-box;
  5183. width:100%;
  5184. }
  5185. #u32146_text {
  5186. border-width:0px;
  5187. word-wrap:break-word;
  5188. text-transform:none;
  5189. visibility:hidden;
  5190. }
  5191. #u32147_div {
  5192. border-width:0px;
  5193. position:absolute;
  5194. left:0px;
  5195. top:0px;
  5196. width:65px;
  5197. height:22px;
  5198. background:inherit;
  5199. background-color:rgba(255, 255, 255, 0);
  5200. border:none;
  5201. border-radius:0px;
  5202. -moz-box-shadow:none;
  5203. -webkit-box-shadow:none;
  5204. box-shadow:none;
  5205. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5206. font-weight:400;
  5207. font-style:normal;
  5208. font-size:16px;
  5209. }
  5210. #u32147 {
  5211. border-width:0px;
  5212. position:absolute;
  5213. left:147px;
  5214. top:206px;
  5215. width:65px;
  5216. height:22px;
  5217. display:flex;
  5218. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5219. font-weight:400;
  5220. font-style:normal;
  5221. font-size:16px;
  5222. }
  5223. #u32147 .text {
  5224. position:absolute;
  5225. align-self:flex-start;
  5226. padding:0px 0px 0px 0px;
  5227. box-sizing:border-box;
  5228. width:100%;
  5229. }
  5230. #u32147_text {
  5231. border-width:0px;
  5232. white-space:nowrap;
  5233. text-transform:none;
  5234. }
  5235. #u32148_div {
  5236. border-width:0px;
  5237. position:absolute;
  5238. left:0px;
  5239. top:0px;
  5240. width:65px;
  5241. height:22px;
  5242. background:inherit;
  5243. background-color:rgba(255, 255, 255, 0);
  5244. border:none;
  5245. border-radius:0px;
  5246. -moz-box-shadow:none;
  5247. -webkit-box-shadow:none;
  5248. box-shadow:none;
  5249. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5250. font-weight:400;
  5251. font-style:normal;
  5252. font-size:16px;
  5253. }
  5254. #u32148 {
  5255. border-width:0px;
  5256. position:absolute;
  5257. left:147px;
  5258. top:541px;
  5259. width:65px;
  5260. height:22px;
  5261. display:flex;
  5262. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5263. font-weight:400;
  5264. font-style:normal;
  5265. font-size:16px;
  5266. }
  5267. #u32148 .text {
  5268. position:absolute;
  5269. align-self:flex-start;
  5270. padding:0px 0px 0px 0px;
  5271. box-sizing:border-box;
  5272. width:100%;
  5273. }
  5274. #u32148_text {
  5275. border-width:0px;
  5276. white-space:nowrap;
  5277. text-transform:none;
  5278. }
  5279. #u32149_div {
  5280. border-width:0px;
  5281. position:absolute;
  5282. left:0px;
  5283. top:0px;
  5284. width:534px;
  5285. height:40px;
  5286. background:inherit;
  5287. background-color:rgba(255, 255, 255, 0);
  5288. border:none;
  5289. border-left:0px;
  5290. border-top:0px;
  5291. border-right:0px;
  5292. border-radius:0px;
  5293. border-bottom-right-radius:0px;
  5294. border-bottom-left-radius:0px;
  5295. -moz-box-shadow:none;
  5296. -webkit-box-shadow:none;
  5297. box-shadow:none;
  5298. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5299. font-weight:400;
  5300. font-style:normal;
  5301. font-size:14px;
  5302. color:#D9001B;
  5303. }
  5304. #u32149 {
  5305. border-width:0px;
  5306. position:absolute;
  5307. left:1036px;
  5308. top:179px;
  5309. width:534px;
  5310. height:40px;
  5311. display:flex;
  5312. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5313. font-weight:400;
  5314. font-style:normal;
  5315. font-size:14px;
  5316. color:#D9001B;
  5317. }
  5318. #u32149 .text {
  5319. position:absolute;
  5320. align-self:center;
  5321. padding:0px 0px 0px 0px;
  5322. box-sizing:border-box;
  5323. width:100%;
  5324. }
  5325. #u32149_text {
  5326. border-width:0px;
  5327. white-space:nowrap;
  5328. text-transform:none;
  5329. }
  5330. #u32150_div {
  5331. border-width:0px;
  5332. position:absolute;
  5333. left:0px;
  5334. top:0px;
  5335. width:547px;
  5336. height:120px;
  5337. background:inherit;
  5338. background-color:rgba(255, 255, 255, 0);
  5339. border:none;
  5340. border-radius:0px;
  5341. -moz-box-shadow:none;
  5342. -webkit-box-shadow:none;
  5343. box-shadow:none;
  5344. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5345. font-weight:400;
  5346. font-style:normal;
  5347. font-size:14px;
  5348. color:#D9001B;
  5349. }
  5350. #u32150 {
  5351. border-width:0px;
  5352. position:absolute;
  5353. left:386px;
  5354. top:499px;
  5355. width:547px;
  5356. height:120px;
  5357. display:flex;
  5358. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5359. font-weight:400;
  5360. font-style:normal;
  5361. font-size:14px;
  5362. color:#D9001B;
  5363. }
  5364. #u32150 .text {
  5365. position:absolute;
  5366. align-self:flex-start;
  5367. padding:0px 0px 0px 0px;
  5368. box-sizing:border-box;
  5369. width:100%;
  5370. }
  5371. #u32150_text {
  5372. border-width:0px;
  5373. white-space:nowrap;
  5374. text-transform:none;
  5375. }
  5376. #u32151_div {
  5377. border-width:0px;
  5378. position:absolute;
  5379. left:0px;
  5380. top:0px;
  5381. width:610px;
  5382. height:20px;
  5383. background:inherit;
  5384. background-color:rgba(255, 255, 255, 0);
  5385. border:none;
  5386. border-left:0px;
  5387. border-top:0px;
  5388. border-right:0px;
  5389. border-radius:0px;
  5390. border-bottom-right-radius:0px;
  5391. border-bottom-left-radius:0px;
  5392. -moz-box-shadow:none;
  5393. -webkit-box-shadow:none;
  5394. box-shadow:none;
  5395. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5396. font-weight:400;
  5397. font-style:normal;
  5398. font-size:14px;
  5399. }
  5400. #u32151 {
  5401. border-width:0px;
  5402. position:absolute;
  5403. left:352px;
  5404. top:100px;
  5405. width:610px;
  5406. height:20px;
  5407. display:flex;
  5408. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5409. font-weight:400;
  5410. font-style:normal;
  5411. font-size:14px;
  5412. }
  5413. #u32151 .text {
  5414. position:absolute;
  5415. align-self:center;
  5416. padding:0px 0px 0px 0px;
  5417. box-sizing:border-box;
  5418. width:100%;
  5419. }
  5420. #u32151_text {
  5421. border-width:0px;
  5422. white-space:nowrap;
  5423. text-transform:none;
  5424. }
  5425. #u32152 {
  5426. border-width:0px;
  5427. position:absolute;
  5428. left:0px;
  5429. top:0px;
  5430. width:0px;
  5431. height:0px;
  5432. }
  5433. #u32153 {
  5434. border-width:0px;
  5435. position:absolute;
  5436. left:0px;
  5437. top:0px;
  5438. width:0px;
  5439. height:0px;
  5440. }
  5441. #u32154 {
  5442. border-width:0px;
  5443. position:absolute;
  5444. left:0px;
  5445. top:0px;
  5446. width:0px;
  5447. height:0px;
  5448. }
  5449. #u32155_div {
  5450. border-width:0px;
  5451. position:absolute;
  5452. left:0px;
  5453. top:0px;
  5454. width:480px;
  5455. height:290px;
  5456. background:inherit;
  5457. background-color:rgba(255, 255, 255, 1);
  5458. box-sizing:border-box;
  5459. border-width:1px;
  5460. border-style:solid;
  5461. border-color:rgba(204, 204, 204, 1);
  5462. border-radius:4px;
  5463. -moz-box-shadow:0px 4px 12px rgba(0, 0, 0, 0.447058823529412);
  5464. -webkit-box-shadow:0px 4px 12px rgba(0, 0, 0, 0.447058823529412);
  5465. box-shadow:0px 4px 12px rgba(0, 0, 0, 0.447058823529412);
  5466. font-family:'Microsoft YaHei', sans-serif;
  5467. font-weight:400;
  5468. font-style:normal;
  5469. }
  5470. #u32155 {
  5471. border-width:0px;
  5472. position:absolute;
  5473. left:669px;
  5474. top:722px;
  5475. width:480px;
  5476. height:290px;
  5477. display:flex;
  5478. font-family:'Microsoft YaHei', sans-serif;
  5479. font-weight:400;
  5480. font-style:normal;
  5481. }
  5482. #u32155 .text {
  5483. position:absolute;
  5484. align-self:center;
  5485. padding:2px 2px 2px 2px;
  5486. box-sizing:border-box;
  5487. width:100%;
  5488. }
  5489. #u32155_text {
  5490. border-width:0px;
  5491. word-wrap:break-word;
  5492. text-transform:none;
  5493. visibility:hidden;
  5494. }
  5495. #u32156_div {
  5496. border-width:0px;
  5497. position:absolute;
  5498. left:0px;
  5499. top:0px;
  5500. width:64px;
  5501. height:22px;
  5502. background:inherit;
  5503. background-color:rgba(255, 255, 255, 0);
  5504. border:none;
  5505. border-radius:0px;
  5506. -moz-box-shadow:none;
  5507. -webkit-box-shadow:none;
  5508. box-shadow:none;
  5509. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5510. font-weight:400;
  5511. font-style:normal;
  5512. font-size:14px;
  5513. color:#666666;
  5514. line-height:22px;
  5515. }
  5516. #u32156 {
  5517. border-width:0px;
  5518. position:absolute;
  5519. left:696px;
  5520. top:785px;
  5521. width:64px;
  5522. height:22px;
  5523. display:flex;
  5524. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5525. font-weight:400;
  5526. font-style:normal;
  5527. font-size:14px;
  5528. color:#666666;
  5529. line-height:22px;
  5530. }
  5531. #u32156 .text {
  5532. position:absolute;
  5533. align-self:flex-start;
  5534. padding:0px 0px 0px 0px;
  5535. box-sizing:border-box;
  5536. width:100%;
  5537. }
  5538. #u32156_text {
  5539. border-width:0px;
  5540. white-space:nowrap;
  5541. text-transform:none;
  5542. }
  5543. #u32157_div {
  5544. border-width:0px;
  5545. position:absolute;
  5546. left:0px;
  5547. top:0px;
  5548. width:109px;
  5549. height:21px;
  5550. background:inherit;
  5551. background-color:rgba(255, 255, 255, 0);
  5552. border:none;
  5553. border-radius:0px;
  5554. -moz-box-shadow:none;
  5555. -webkit-box-shadow:none;
  5556. box-shadow:none;
  5557. font-family:'PingFangSC-Semibold', 'PingFang SC Semibold', 'PingFang SC', sans-serif;
  5558. font-weight:650;
  5559. font-style:normal;
  5560. font-size:18px;
  5561. color:#000000;
  5562. line-height:22px;
  5563. }
  5564. #u32157 {
  5565. border-width:0px;
  5566. position:absolute;
  5567. left:696px;
  5568. top:743px;
  5569. width:109px;
  5570. height:21px;
  5571. display:flex;
  5572. font-family:'PingFangSC-Semibold', 'PingFang SC Semibold', 'PingFang SC', sans-serif;
  5573. font-weight:650;
  5574. font-style:normal;
  5575. font-size:18px;
  5576. color:#000000;
  5577. line-height:22px;
  5578. }
  5579. #u32157 .text {
  5580. position:absolute;
  5581. align-self:flex-start;
  5582. padding:0px 0px 0px 0px;
  5583. box-sizing:border-box;
  5584. width:100%;
  5585. }
  5586. #u32157_text {
  5587. border-width:0px;
  5588. white-space:nowrap;
  5589. text-transform:none;
  5590. }
  5591. #u32158 label {
  5592. left:0px;
  5593. width:100%;
  5594. }
  5595. #u32158_img {
  5596. border-width:0px;
  5597. position:absolute;
  5598. left:0px;
  5599. top:3px;
  5600. width:12px;
  5601. height:12px;
  5602. }
  5603. #u32158 {
  5604. border-width:0px;
  5605. position:absolute;
  5606. left:773px;
  5607. top:788px;
  5608. width:202px;
  5609. height:18px;
  5610. display:flex;
  5611. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5612. font-weight:400;
  5613. font-style:normal;
  5614. }
  5615. #u32158 .text {
  5616. position:absolute;
  5617. align-self:center;
  5618. padding:0px 2px 0px 2px;
  5619. box-sizing:border-box;
  5620. }
  5621. #u32158_img.selected {
  5622. }
  5623. #u32158.selected {
  5624. }
  5625. #u32158_img.disabled {
  5626. }
  5627. #u32158.disabled {
  5628. }
  5629. #u32158_img.selectedDisabled {
  5630. }
  5631. #u32158.selectedDisabled {
  5632. }
  5633. #u32158_text {
  5634. border-width:0px;
  5635. position:absolute;
  5636. left:14px;
  5637. top:0px;
  5638. width:186px;
  5639. word-wrap:break-word;
  5640. text-transform:none;
  5641. }
  5642. #u32158_input {
  5643. border-width:0px;
  5644. position:absolute;
  5645. left:0px;
  5646. top:0px;
  5647. width:0px;
  5648. height:0px;
  5649. opacity:0;
  5650. }
  5651. #u32159 label {
  5652. left:0px;
  5653. width:100%;
  5654. }
  5655. #u32159_img {
  5656. border-width:0px;
  5657. position:absolute;
  5658. left:0px;
  5659. top:3px;
  5660. width:12px;
  5661. height:12px;
  5662. }
  5663. #u32159 {
  5664. border-width:0px;
  5665. position:absolute;
  5666. left:773px;
  5667. top:821px;
  5668. width:100px;
  5669. height:18px;
  5670. display:flex;
  5671. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5672. font-weight:400;
  5673. font-style:normal;
  5674. }
  5675. #u32159 .text {
  5676. position:absolute;
  5677. align-self:center;
  5678. padding:0px 2px 0px 2px;
  5679. box-sizing:border-box;
  5680. }
  5681. #u32159_img.selected {
  5682. }
  5683. #u32159.selected {
  5684. }
  5685. #u32159_img.disabled {
  5686. }
  5687. #u32159.disabled {
  5688. }
  5689. #u32159_img.selectedDisabled {
  5690. }
  5691. #u32159.selectedDisabled {
  5692. }
  5693. #u32159_text {
  5694. border-width:0px;
  5695. position:absolute;
  5696. left:14px;
  5697. top:0px;
  5698. width:84px;
  5699. word-wrap:break-word;
  5700. text-transform:none;
  5701. }
  5702. #u32159_input {
  5703. border-width:0px;
  5704. position:absolute;
  5705. left:0px;
  5706. top:0px;
  5707. width:0px;
  5708. height:0px;
  5709. opacity:0;
  5710. }
  5711. #u32160 label {
  5712. left:0px;
  5713. width:100%;
  5714. }
  5715. #u32160_img {
  5716. border-width:0px;
  5717. position:absolute;
  5718. left:0px;
  5719. top:3px;
  5720. width:12px;
  5721. height:12px;
  5722. }
  5723. #u32160 {
  5724. border-width:0px;
  5725. position:absolute;
  5726. left:773px;
  5727. top:854px;
  5728. width:100px;
  5729. height:18px;
  5730. display:flex;
  5731. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5732. font-weight:400;
  5733. font-style:normal;
  5734. }
  5735. #u32160 .text {
  5736. position:absolute;
  5737. align-self:center;
  5738. padding:0px 2px 0px 2px;
  5739. box-sizing:border-box;
  5740. }
  5741. #u32160_img.selected {
  5742. }
  5743. #u32160.selected {
  5744. }
  5745. #u32160_img.disabled {
  5746. }
  5747. #u32160.disabled {
  5748. }
  5749. #u32160_img.selectedDisabled {
  5750. }
  5751. #u32160.selectedDisabled {
  5752. }
  5753. #u32160_text {
  5754. border-width:0px;
  5755. position:absolute;
  5756. left:14px;
  5757. top:0px;
  5758. width:84px;
  5759. word-wrap:break-word;
  5760. text-transform:none;
  5761. }
  5762. #u32160_input {
  5763. border-width:0px;
  5764. position:absolute;
  5765. left:0px;
  5766. top:0px;
  5767. width:0px;
  5768. height:0px;
  5769. opacity:0;
  5770. }
  5771. #u32161 {
  5772. border-width:0px;
  5773. position:absolute;
  5774. left:0px;
  5775. top:0px;
  5776. width:0px;
  5777. height:0px;
  5778. }
  5779. #u32162_div {
  5780. border-width:0px;
  5781. position:absolute;
  5782. left:0px;
  5783. top:0px;
  5784. width:347px;
  5785. height:60px;
  5786. background:inherit;
  5787. background-color:rgba(255, 255, 255, 1);
  5788. box-sizing:border-box;
  5789. border-width:1px;
  5790. border-style:solid;
  5791. border-color:rgba(41, 143, 255, 1);
  5792. border-radius:4px;
  5793. -moz-box-shadow:0px 0px 3px rgba(0, 0, 0, 0.349019607843137);
  5794. -webkit-box-shadow:0px 0px 3px rgba(0, 0, 0, 0.349019607843137);
  5795. box-shadow:0px 0px 3px rgba(0, 0, 0, 0.349019607843137);
  5796. font-family:'Microsoft YaHei', sans-serif;
  5797. font-weight:400;
  5798. font-style:normal;
  5799. font-size:14px;
  5800. color:#CCCCCC;
  5801. text-align:left;
  5802. }
  5803. #u32162 {
  5804. border-width:0px;
  5805. position:absolute;
  5806. left:773px;
  5807. top:882px;
  5808. width:347px;
  5809. height:60px;
  5810. display:flex;
  5811. font-family:'Microsoft YaHei', sans-serif;
  5812. font-weight:400;
  5813. font-style:normal;
  5814. font-size:14px;
  5815. color:#CCCCCC;
  5816. text-align:left;
  5817. }
  5818. #u32162 .text {
  5819. position:absolute;
  5820. align-self:center;
  5821. padding:2px 8px 2px 8px;
  5822. box-sizing:border-box;
  5823. width:100%;
  5824. }
  5825. #u32162_text {
  5826. border-width:0px;
  5827. word-wrap:break-word;
  5828. text-transform:none;
  5829. visibility:hidden;
  5830. }
  5831. #u32163_input {
  5832. position:absolute;
  5833. left:0px;
  5834. top:0px;
  5835. width:330px;
  5836. height:38px;
  5837. padding:2px 2px 2px 2px;
  5838. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5839. font-weight:400;
  5840. font-style:normal;
  5841. font-size:14px;
  5842. letter-spacing:normal;
  5843. color:#000000;
  5844. vertical-align:none;
  5845. text-align:left;
  5846. text-transform:none;
  5847. background-color:transparent;
  5848. border-color:transparent;
  5849. }
  5850. #u32163_input.disabled {
  5851. position:absolute;
  5852. left:0px;
  5853. top:0px;
  5854. width:330px;
  5855. height:38px;
  5856. padding:2px 2px 2px 2px;
  5857. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5858. font-weight:400;
  5859. font-style:normal;
  5860. font-size:14px;
  5861. letter-spacing:normal;
  5862. color:#000000;
  5863. vertical-align:none;
  5864. text-align:left;
  5865. text-transform:none;
  5866. background-color:transparent;
  5867. border-color:transparent;
  5868. }
  5869. #u32163_div {
  5870. border-width:0px;
  5871. position:absolute;
  5872. left:0px;
  5873. top:0px;
  5874. width:330px;
  5875. height:38px;
  5876. background:inherit;
  5877. background-color:rgba(255, 255, 255, 1);
  5878. border:none;
  5879. border-radius:0px;
  5880. -moz-box-shadow:none;
  5881. -webkit-box-shadow:none;
  5882. box-shadow:none;
  5883. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5884. font-weight:400;
  5885. font-style:normal;
  5886. font-size:14px;
  5887. }
  5888. #u32163 {
  5889. border-width:0px;
  5890. position:absolute;
  5891. left:782px;
  5892. top:883px;
  5893. width:330px;
  5894. height:38px;
  5895. display:flex;
  5896. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5897. font-weight:400;
  5898. font-style:normal;
  5899. font-size:14px;
  5900. }
  5901. #u32163 .text {
  5902. position:absolute;
  5903. align-self:center;
  5904. padding:2px 2px 2px 2px;
  5905. box-sizing:border-box;
  5906. width:100%;
  5907. }
  5908. #u32163_div.disabled {
  5909. border-width:0px;
  5910. position:absolute;
  5911. left:0px;
  5912. top:0px;
  5913. width:330px;
  5914. height:38px;
  5915. background:inherit;
  5916. background-color:rgba(240, 240, 240, 1);
  5917. border:none;
  5918. border-radius:0px;
  5919. -moz-box-shadow:none;
  5920. -webkit-box-shadow:none;
  5921. box-shadow:none;
  5922. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5923. font-weight:400;
  5924. font-style:normal;
  5925. font-size:14px;
  5926. }
  5927. #u32163.disabled {
  5928. }
  5929. #u32164 {
  5930. border-width:0px;
  5931. position:absolute;
  5932. left:0px;
  5933. top:0px;
  5934. width:0px;
  5935. height:0px;
  5936. }
  5937. #u32165_div {
  5938. border-width:0px;
  5939. position:absolute;
  5940. left:0px;
  5941. top:0px;
  5942. width:80px;
  5943. height:30px;
  5944. background:inherit;
  5945. background-color:rgba(24, 144, 255, 1);
  5946. border:none;
  5947. border-radius:4px;
  5948. -moz-box-shadow:none;
  5949. -webkit-box-shadow:none;
  5950. box-shadow:none;
  5951. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5952. font-weight:400;
  5953. font-style:normal;
  5954. font-size:14px;
  5955. color:#FFFFFF;
  5956. }
  5957. #u32165 {
  5958. border-width:0px;
  5959. position:absolute;
  5960. left:1040px;
  5961. top:962px;
  5962. width:80px;
  5963. height:30px;
  5964. display:flex;
  5965. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5966. font-weight:400;
  5967. font-style:normal;
  5968. font-size:14px;
  5969. color:#FFFFFF;
  5970. }
  5971. #u32165 .text {
  5972. position:absolute;
  5973. align-self:center;
  5974. padding:2px 2px 2px 2px;
  5975. box-sizing:border-box;
  5976. width:100%;
  5977. }
  5978. #u32165_text {
  5979. border-width:0px;
  5980. word-wrap:break-word;
  5981. text-transform:none;
  5982. }
  5983. #u32166_div {
  5984. border-width:0px;
  5985. position:absolute;
  5986. left:0px;
  5987. top:0px;
  5988. width:80px;
  5989. height:30px;
  5990. background:inherit;
  5991. background-color:rgba(255, 255, 255, 1);
  5992. box-sizing:border-box;
  5993. border-width:1px;
  5994. border-style:solid;
  5995. border-color:rgba(170, 170, 170, 1);
  5996. border-radius:4px;
  5997. -moz-box-shadow:none;
  5998. -webkit-box-shadow:none;
  5999. box-shadow:none;
  6000. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6001. font-weight:400;
  6002. font-style:normal;
  6003. font-size:14px;
  6004. }
  6005. #u32166 {
  6006. border-width:0px;
  6007. position:absolute;
  6008. left:941px;
  6009. top:962px;
  6010. width:80px;
  6011. height:30px;
  6012. display:flex;
  6013. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6014. font-weight:400;
  6015. font-style:normal;
  6016. font-size:14px;
  6017. }
  6018. #u32166 .text {
  6019. position:absolute;
  6020. align-self:center;
  6021. padding:2px 2px 2px 2px;
  6022. box-sizing:border-box;
  6023. width:100%;
  6024. }
  6025. #u32166_text {
  6026. border-width:0px;
  6027. word-wrap:break-word;
  6028. text-transform:none;
  6029. }
  6030. #u32167_div {
  6031. border-width:0px;
  6032. position:absolute;
  6033. left:0px;
  6034. top:0px;
  6035. width:329px;
  6036. height:20px;
  6037. background:inherit;
  6038. background-color:rgba(255, 255, 255, 0);
  6039. border:none;
  6040. border-left:0px;
  6041. border-top:0px;
  6042. border-right:0px;
  6043. border-radius:0px;
  6044. border-bottom-right-radius:0px;
  6045. border-bottom-left-radius:0px;
  6046. -moz-box-shadow:none;
  6047. -webkit-box-shadow:none;
  6048. box-shadow:none;
  6049. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6050. font-weight:400;
  6051. font-style:normal;
  6052. font-size:14px;
  6053. color:#D9001B;
  6054. }
  6055. #u32167 {
  6056. border-width:0px;
  6057. position:absolute;
  6058. left:1169px;
  6059. top:815px;
  6060. width:329px;
  6061. height:20px;
  6062. display:flex;
  6063. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6064. font-weight:400;
  6065. font-style:normal;
  6066. font-size:14px;
  6067. color:#D9001B;
  6068. }
  6069. #u32167 .text {
  6070. position:absolute;
  6071. align-self:center;
  6072. padding:0px 0px 0px 0px;
  6073. box-sizing:border-box;
  6074. width:100%;
  6075. }
  6076. #u32167_text {
  6077. border-width:0px;
  6078. white-space:nowrap;
  6079. text-transform:none;
  6080. }
  6081. #u32168 {
  6082. border-width:0px;
  6083. position:absolute;
  6084. left:0px;
  6085. top:0px;
  6086. width:0px;
  6087. height:0px;
  6088. }
  6089. #u32169 {
  6090. border-width:0px;
  6091. position:absolute;
  6092. left:0px;
  6093. top:0px;
  6094. width:0px;
  6095. height:0px;
  6096. }
  6097. #u32170_div {
  6098. border-width:0px;
  6099. position:absolute;
  6100. left:0px;
  6101. top:0px;
  6102. width:380px;
  6103. height:164px;
  6104. background:inherit;
  6105. background-color:rgba(255, 255, 255, 1);
  6106. border:none;
  6107. border-radius:4px;
  6108. -moz-box-shadow:0px 4px 12px rgba(0, 0, 0, 0.447058823529412);
  6109. -webkit-box-shadow:0px 4px 12px rgba(0, 0, 0, 0.447058823529412);
  6110. box-shadow:0px 4px 12px rgba(0, 0, 0, 0.447058823529412);
  6111. font-family:'Microsoft YaHei', sans-serif;
  6112. font-weight:400;
  6113. font-style:normal;
  6114. }
  6115. #u32170 {
  6116. border-width:0px;
  6117. position:absolute;
  6118. left:1169px;
  6119. top:848px;
  6120. width:380px;
  6121. height:164px;
  6122. display:flex;
  6123. font-family:'Microsoft YaHei', sans-serif;
  6124. font-weight:400;
  6125. font-style:normal;
  6126. }
  6127. #u32170 .text {
  6128. position:absolute;
  6129. align-self:center;
  6130. padding:2px 2px 2px 2px;
  6131. box-sizing:border-box;
  6132. width:100%;
  6133. }
  6134. #u32170_text {
  6135. border-width:0px;
  6136. word-wrap:break-word;
  6137. text-transform:none;
  6138. visibility:hidden;
  6139. }
  6140. #u32171_div {
  6141. border-width:0px;
  6142. position:absolute;
  6143. left:0px;
  6144. top:0px;
  6145. width:299px;
  6146. height:44px;
  6147. background:inherit;
  6148. background-color:rgba(255, 255, 255, 0);
  6149. border:none;
  6150. border-radius:0px;
  6151. -moz-box-shadow:none;
  6152. -webkit-box-shadow:none;
  6153. box-shadow:none;
  6154. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6155. font-weight:400;
  6156. font-style:normal;
  6157. font-size:14px;
  6158. color:#666666;
  6159. line-height:22px;
  6160. }
  6161. #u32171 {
  6162. border-width:0px;
  6163. position:absolute;
  6164. left:1229px;
  6165. top:903px;
  6166. width:299px;
  6167. height:44px;
  6168. display:flex;
  6169. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6170. font-weight:400;
  6171. font-style:normal;
  6172. font-size:14px;
  6173. color:#666666;
  6174. line-height:22px;
  6175. }
  6176. #u32171 .text {
  6177. position:absolute;
  6178. align-self:flex-start;
  6179. padding:0px 0px 0px 0px;
  6180. box-sizing:border-box;
  6181. width:100%;
  6182. }
  6183. #u32171_text {
  6184. border-width:0px;
  6185. word-wrap:break-word;
  6186. text-transform:none;
  6187. }
  6188. #u32172_div {
  6189. border-width:0px;
  6190. position:absolute;
  6191. left:0px;
  6192. top:0px;
  6193. width:127px;
  6194. height:21px;
  6195. background:inherit;
  6196. background-color:rgba(255, 255, 255, 0);
  6197. border:none;
  6198. border-radius:0px;
  6199. -moz-box-shadow:none;
  6200. -webkit-box-shadow:none;
  6201. box-shadow:none;
  6202. font-family:'PingFangSC-Semibold', 'PingFang SC Semibold', 'PingFang SC', sans-serif;
  6203. font-weight:650;
  6204. font-style:normal;
  6205. font-size:18px;
  6206. color:#000000;
  6207. line-height:22px;
  6208. }
  6209. #u32172 {
  6210. border-width:0px;
  6211. position:absolute;
  6212. left:1229px;
  6213. top:873px;
  6214. width:127px;
  6215. height:21px;
  6216. display:flex;
  6217. font-family:'PingFangSC-Semibold', 'PingFang SC Semibold', 'PingFang SC', sans-serif;
  6218. font-weight:650;
  6219. font-style:normal;
  6220. font-size:18px;
  6221. color:#000000;
  6222. line-height:22px;
  6223. }
  6224. #u32172 .text {
  6225. position:absolute;
  6226. align-self:flex-start;
  6227. padding:0px 0px 0px 0px;
  6228. box-sizing:border-box;
  6229. width:100%;
  6230. }
  6231. #u32172_text {
  6232. border-width:0px;
  6233. white-space:nowrap;
  6234. text-transform:none;
  6235. }
  6236. #u32173_div {
  6237. border-width:0px;
  6238. position:absolute;
  6239. left:0px;
  6240. top:0px;
  6241. width:61px;
  6242. height:30px;
  6243. background:inherit;
  6244. background-color:rgba(24, 144, 255, 1);
  6245. border:none;
  6246. border-radius:4px;
  6247. -moz-box-shadow:none;
  6248. -webkit-box-shadow:none;
  6249. box-shadow:none;
  6250. font-family:'Microsoft YaHei', sans-serif;
  6251. font-weight:400;
  6252. font-style:normal;
  6253. font-size:14px;
  6254. color:#FFFFFF;
  6255. }
  6256. #u32173 {
  6257. border-width:0px;
  6258. position:absolute;
  6259. left:1471px;
  6260. top:963px;
  6261. width:61px;
  6262. height:30px;
  6263. display:flex;
  6264. font-family:'Microsoft YaHei', sans-serif;
  6265. font-weight:400;
  6266. font-style:normal;
  6267. font-size:14px;
  6268. color:#FFFFFF;
  6269. }
  6270. #u32173 .text {
  6271. position:absolute;
  6272. align-self:center;
  6273. padding:2px 16px 2px 16px;
  6274. box-sizing:border-box;
  6275. width:100%;
  6276. }
  6277. #u32173_text {
  6278. border-width:0px;
  6279. white-space:nowrap;
  6280. text-transform:none;
  6281. }
  6282. #u32174_div {
  6283. border-width:0px;
  6284. position:absolute;
  6285. left:0px;
  6286. top:0px;
  6287. width:66px;
  6288. height:30px;
  6289. background:inherit;
  6290. background-color:rgba(255, 255, 255, 1);
  6291. box-sizing:border-box;
  6292. border-width:1px;
  6293. border-style:solid;
  6294. border-color:rgba(217, 217, 217, 1);
  6295. border-radius:4px;
  6296. -moz-box-shadow:none;
  6297. -webkit-box-shadow:none;
  6298. box-shadow:none;
  6299. font-family:'Microsoft YaHei', sans-serif;
  6300. font-weight:400;
  6301. font-style:normal;
  6302. font-size:14px;
  6303. color:rgba(0, 0, 0, 0.647058823529412);
  6304. line-height:21px;
  6305. }
  6306. #u32174 {
  6307. border-width:0px;
  6308. position:absolute;
  6309. left:1389px;
  6310. top:963px;
  6311. width:66px;
  6312. height:30px;
  6313. display:flex;
  6314. font-family:'Microsoft YaHei', sans-serif;
  6315. font-weight:400;
  6316. font-style:normal;
  6317. font-size:14px;
  6318. color:rgba(0, 0, 0, 0.647058823529412);
  6319. line-height:21px;
  6320. }
  6321. #u32174 .text {
  6322. position:absolute;
  6323. align-self:center;
  6324. padding:2px 16px 2px 16px;
  6325. box-sizing:border-box;
  6326. width:100%;
  6327. }
  6328. #u32174_text {
  6329. border-width:0px;
  6330. white-space:nowrap;
  6331. text-transform:none;
  6332. }
  6333. #u32175_img {
  6334. border-width:0px;
  6335. position:absolute;
  6336. left:0px;
  6337. top:0px;
  6338. width:20px;
  6339. height:20px;
  6340. }
  6341. #u32175 {
  6342. border-width:0px;
  6343. position:absolute;
  6344. left:1198px;
  6345. top:877px;
  6346. width:20px;
  6347. height:20px;
  6348. display:flex;
  6349. }
  6350. #u32175 .text {
  6351. position:absolute;
  6352. align-self:center;
  6353. padding:2px 2px 2px 2px;
  6354. box-sizing:border-box;
  6355. width:100%;
  6356. }
  6357. #u32175_text {
  6358. border-width:0px;
  6359. word-wrap:break-word;
  6360. text-transform:none;
  6361. visibility:hidden;
  6362. }