styles.css 128 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145114611471148114911501151115211531154115511561157115811591160116111621163116411651166116711681169117011711172117311741175117611771178117911801181118211831184118511861187118811891190119111921193119411951196119711981199120012011202120312041205120612071208120912101211121212131214121512161217121812191220122112221223122412251226122712281229123012311232123312341235123612371238123912401241124212431244124512461247124812491250125112521253125412551256125712581259126012611262126312641265126612671268126912701271127212731274127512761277127812791280128112821283128412851286128712881289129012911292129312941295129612971298129913001301130213031304130513061307130813091310131113121313131413151316131713181319132013211322132313241325132613271328132913301331133213331334133513361337133813391340134113421343134413451346134713481349135013511352135313541355135613571358135913601361136213631364136513661367136813691370137113721373137413751376137713781379138013811382138313841385138613871388138913901391139213931394139513961397139813991400140114021403140414051406140714081409141014111412141314141415141614171418141914201421142214231424142514261427142814291430143114321433143414351436143714381439144014411442144314441445144614471448144914501451145214531454145514561457145814591460146114621463146414651466146714681469147014711472147314741475147614771478147914801481148214831484148514861487148814891490149114921493149414951496149714981499150015011502150315041505150615071508150915101511151215131514151515161517151815191520152115221523152415251526152715281529153015311532153315341535153615371538153915401541154215431544154515461547154815491550155115521553155415551556155715581559156015611562156315641565156615671568156915701571157215731574157515761577157815791580158115821583158415851586158715881589159015911592159315941595159615971598159916001601160216031604160516061607160816091610161116121613161416151616161716181619162016211622162316241625162616271628162916301631163216331634163516361637163816391640164116421643164416451646164716481649165016511652165316541655165616571658165916601661166216631664166516661667166816691670167116721673167416751676167716781679168016811682168316841685168616871688168916901691169216931694169516961697169816991700170117021703170417051706170717081709171017111712171317141715171617171718171917201721172217231724172517261727172817291730173117321733173417351736173717381739174017411742174317441745174617471748174917501751175217531754175517561757175817591760176117621763176417651766176717681769177017711772177317741775177617771778177917801781178217831784178517861787178817891790179117921793179417951796179717981799180018011802180318041805180618071808180918101811181218131814181518161817181818191820182118221823182418251826182718281829183018311832183318341835183618371838183918401841184218431844184518461847184818491850185118521853185418551856185718581859186018611862186318641865186618671868186918701871187218731874187518761877187818791880188118821883188418851886188718881889189018911892189318941895189618971898189919001901190219031904190519061907190819091910191119121913191419151916191719181919192019211922192319241925192619271928192919301931193219331934193519361937193819391940194119421943194419451946194719481949195019511952195319541955195619571958195919601961196219631964196519661967196819691970197119721973197419751976197719781979198019811982198319841985198619871988198919901991199219931994199519961997199819992000200120022003200420052006200720082009201020112012201320142015201620172018201920202021202220232024202520262027202820292030203120322033203420352036203720382039204020412042204320442045204620472048204920502051205220532054205520562057205820592060206120622063206420652066206720682069207020712072207320742075207620772078207920802081208220832084208520862087208820892090209120922093209420952096209720982099210021012102210321042105210621072108210921102111211221132114211521162117211821192120212121222123212421252126212721282129213021312132213321342135213621372138213921402141214221432144214521462147214821492150215121522153215421552156215721582159216021612162216321642165216621672168216921702171217221732174217521762177217821792180218121822183218421852186218721882189219021912192219321942195219621972198219922002201220222032204220522062207220822092210221122122213221422152216221722182219222022212222222322242225222622272228222922302231223222332234223522362237223822392240224122422243224422452246224722482249225022512252225322542255225622572258225922602261226222632264226522662267226822692270227122722273227422752276227722782279228022812282228322842285228622872288228922902291229222932294229522962297229822992300230123022303230423052306230723082309231023112312231323142315231623172318231923202321232223232324232523262327232823292330233123322333233423352336233723382339234023412342234323442345234623472348234923502351235223532354235523562357235823592360236123622363236423652366236723682369237023712372237323742375237623772378237923802381238223832384238523862387238823892390239123922393239423952396239723982399240024012402240324042405240624072408240924102411241224132414241524162417241824192420242124222423242424252426242724282429243024312432243324342435243624372438243924402441244224432444244524462447244824492450245124522453245424552456245724582459246024612462246324642465246624672468246924702471247224732474247524762477247824792480248124822483248424852486248724882489249024912492249324942495249624972498249925002501250225032504250525062507250825092510251125122513251425152516251725182519252025212522252325242525252625272528252925302531253225332534253525362537253825392540254125422543254425452546254725482549255025512552255325542555255625572558255925602561256225632564256525662567256825692570257125722573257425752576257725782579258025812582258325842585258625872588258925902591259225932594259525962597259825992600260126022603260426052606260726082609261026112612261326142615261626172618261926202621262226232624262526262627262826292630263126322633263426352636263726382639264026412642264326442645264626472648264926502651265226532654265526562657265826592660266126622663266426652666266726682669267026712672267326742675267626772678267926802681268226832684268526862687268826892690269126922693269426952696269726982699270027012702270327042705270627072708270927102711271227132714271527162717271827192720272127222723272427252726272727282729273027312732273327342735273627372738273927402741274227432744274527462747274827492750275127522753275427552756275727582759276027612762276327642765276627672768276927702771277227732774277527762777277827792780278127822783278427852786278727882789279027912792279327942795279627972798279928002801280228032804280528062807280828092810281128122813281428152816281728182819282028212822282328242825282628272828282928302831283228332834283528362837283828392840284128422843284428452846284728482849285028512852285328542855285628572858285928602861286228632864286528662867286828692870287128722873287428752876287728782879288028812882288328842885288628872888288928902891289228932894289528962897289828992900290129022903290429052906290729082909291029112912291329142915291629172918291929202921292229232924292529262927292829292930293129322933293429352936293729382939294029412942294329442945294629472948294929502951295229532954295529562957295829592960296129622963296429652966296729682969297029712972297329742975297629772978297929802981298229832984298529862987298829892990299129922993299429952996299729982999300030013002300330043005300630073008300930103011301230133014301530163017301830193020302130223023302430253026302730283029303030313032303330343035303630373038303930403041304230433044304530463047304830493050305130523053305430553056305730583059306030613062306330643065306630673068306930703071307230733074307530763077307830793080308130823083308430853086308730883089309030913092309330943095309630973098309931003101310231033104310531063107310831093110311131123113311431153116311731183119312031213122312331243125312631273128312931303131313231333134313531363137313831393140314131423143314431453146314731483149315031513152315331543155315631573158315931603161316231633164316531663167316831693170317131723173317431753176317731783179318031813182318331843185318631873188318931903191319231933194319531963197319831993200320132023203320432053206320732083209321032113212321332143215321632173218321932203221322232233224322532263227322832293230323132323233323432353236323732383239324032413242324332443245324632473248324932503251325232533254325532563257325832593260326132623263326432653266326732683269327032713272327332743275327632773278327932803281328232833284328532863287328832893290329132923293329432953296329732983299330033013302330333043305330633073308330933103311331233133314331533163317331833193320332133223323332433253326332733283329333033313332333333343335333633373338333933403341334233433344334533463347334833493350335133523353335433553356335733583359336033613362336333643365336633673368336933703371337233733374337533763377337833793380338133823383338433853386338733883389339033913392339333943395339633973398339934003401340234033404340534063407340834093410341134123413341434153416341734183419342034213422342334243425342634273428342934303431343234333434343534363437343834393440344134423443344434453446344734483449345034513452345334543455345634573458345934603461346234633464346534663467346834693470347134723473347434753476347734783479348034813482348334843485348634873488348934903491349234933494349534963497349834993500350135023503350435053506350735083509351035113512351335143515351635173518351935203521352235233524352535263527352835293530353135323533353435353536353735383539354035413542354335443545354635473548354935503551355235533554355535563557355835593560356135623563356435653566356735683569357035713572357335743575357635773578357935803581358235833584358535863587358835893590359135923593359435953596359735983599360036013602360336043605360636073608360936103611361236133614361536163617361836193620362136223623362436253626362736283629363036313632363336343635363636373638363936403641364236433644364536463647364836493650365136523653365436553656365736583659366036613662366336643665366636673668366936703671367236733674367536763677367836793680368136823683368436853686368736883689369036913692369336943695369636973698369937003701370237033704370537063707370837093710371137123713371437153716371737183719372037213722372337243725372637273728372937303731373237333734373537363737373837393740374137423743374437453746374737483749375037513752375337543755375637573758375937603761376237633764376537663767376837693770377137723773377437753776377737783779378037813782378337843785378637873788378937903791379237933794379537963797379837993800380138023803380438053806380738083809381038113812381338143815381638173818381938203821382238233824382538263827382838293830383138323833383438353836383738383839384038413842384338443845384638473848384938503851385238533854385538563857385838593860386138623863386438653866386738683869387038713872387338743875387638773878387938803881388238833884388538863887388838893890389138923893389438953896389738983899390039013902390339043905390639073908390939103911391239133914391539163917391839193920392139223923392439253926392739283929393039313932393339343935393639373938393939403941394239433944394539463947394839493950395139523953395439553956395739583959396039613962396339643965396639673968396939703971397239733974397539763977397839793980398139823983398439853986398739883989399039913992399339943995399639973998399940004001400240034004400540064007400840094010401140124013401440154016401740184019402040214022402340244025402640274028402940304031403240334034403540364037403840394040404140424043404440454046404740484049405040514052405340544055405640574058405940604061406240634064406540664067406840694070407140724073407440754076407740784079408040814082408340844085408640874088408940904091409240934094409540964097409840994100410141024103410441054106410741084109411041114112411341144115411641174118411941204121412241234124412541264127412841294130413141324133413441354136413741384139414041414142414341444145414641474148414941504151415241534154415541564157415841594160416141624163416441654166416741684169417041714172417341744175417641774178417941804181418241834184418541864187418841894190419141924193419441954196419741984199420042014202420342044205420642074208420942104211421242134214421542164217421842194220422142224223422442254226422742284229423042314232423342344235423642374238423942404241424242434244424542464247424842494250425142524253425442554256425742584259426042614262426342644265426642674268426942704271427242734274427542764277427842794280428142824283428442854286428742884289429042914292429342944295429642974298429943004301430243034304430543064307430843094310431143124313431443154316431743184319432043214322432343244325432643274328432943304331433243334334433543364337433843394340434143424343434443454346434743484349435043514352435343544355435643574358435943604361436243634364436543664367436843694370437143724373437443754376437743784379438043814382438343844385438643874388438943904391439243934394439543964397439843994400440144024403440444054406440744084409441044114412441344144415441644174418441944204421442244234424442544264427442844294430443144324433443444354436443744384439444044414442444344444445444644474448444944504451445244534454445544564457445844594460446144624463446444654466446744684469447044714472447344744475447644774478447944804481448244834484448544864487448844894490449144924493449444954496449744984499450045014502450345044505450645074508450945104511451245134514451545164517451845194520452145224523452445254526452745284529453045314532453345344535453645374538453945404541454245434544454545464547454845494550455145524553455445554556455745584559456045614562456345644565456645674568456945704571457245734574457545764577457845794580458145824583458445854586458745884589459045914592459345944595459645974598459946004601460246034604460546064607460846094610461146124613461446154616461746184619462046214622462346244625462646274628462946304631463246334634463546364637463846394640464146424643464446454646464746484649465046514652465346544655465646574658465946604661466246634664466546664667466846694670467146724673467446754676467746784679468046814682468346844685468646874688468946904691469246934694469546964697469846994700470147024703470447054706470747084709471047114712471347144715471647174718471947204721472247234724472547264727472847294730473147324733473447354736473747384739474047414742474347444745474647474748474947504751475247534754475547564757475847594760476147624763476447654766476747684769477047714772477347744775477647774778477947804781478247834784478547864787478847894790479147924793479447954796479747984799480048014802480348044805480648074808480948104811481248134814481548164817481848194820482148224823482448254826482748284829483048314832483348344835483648374838483948404841484248434844484548464847484848494850485148524853485448554856485748584859486048614862486348644865486648674868486948704871487248734874487548764877487848794880488148824883488448854886488748884889489048914892489348944895489648974898489949004901490249034904490549064907490849094910491149124913491449154916491749184919492049214922492349244925492649274928492949304931493249334934493549364937493849394940494149424943494449454946494749484949495049514952495349544955495649574958495949604961496249634964496549664967496849694970497149724973497449754976497749784979498049814982498349844985498649874988498949904991499249934994499549964997499849995000500150025003500450055006500750085009501050115012501350145015501650175018501950205021502250235024502550265027502850295030503150325033503450355036503750385039504050415042504350445045504650475048504950505051505250535054505550565057505850595060506150625063506450655066506750685069507050715072507350745075507650775078507950805081508250835084508550865087508850895090509150925093509450955096509750985099510051015102510351045105510651075108510951105111511251135114511551165117511851195120512151225123512451255126512751285129513051315132513351345135513651375138513951405141514251435144514551465147514851495150515151525153515451555156515751585159516051615162516351645165516651675168516951705171517251735174517551765177517851795180518151825183518451855186518751885189519051915192519351945195519651975198519952005201520252035204520552065207520852095210521152125213521452155216521752185219522052215222522352245225522652275228522952305231523252335234523552365237523852395240524152425243524452455246524752485249525052515252525352545255525652575258525952605261526252635264526552665267526852695270527152725273527452755276527752785279528052815282528352845285528652875288528952905291529252935294529552965297529852995300530153025303530453055306530753085309531053115312531353145315531653175318531953205321532253235324532553265327532853295330533153325333533453355336533753385339534053415342534353445345534653475348534953505351535253535354535553565357535853595360536153625363536453655366536753685369537053715372537353745375537653775378537953805381538253835384538553865387538853895390539153925393539453955396539753985399540054015402540354045405540654075408540954105411541254135414541554165417541854195420542154225423542454255426542754285429543054315432543354345435543654375438543954405441544254435444544554465447544854495450545154525453545454555456545754585459546054615462546354645465546654675468546954705471547254735474547554765477547854795480548154825483548454855486548754885489549054915492549354945495549654975498549955005501550255035504550555065507550855095510551155125513551455155516551755185519552055215522552355245525552655275528552955305531553255335534553555365537553855395540554155425543554455455546554755485549555055515552555355545555555655575558555955605561556255635564556555665567556855695570557155725573557455755576557755785579558055815582558355845585558655875588558955905591559255935594559555965597559855995600560156025603560456055606560756085609561056115612561356145615561656175618561956205621562256235624562556265627562856295630563156325633563456355636563756385639564056415642564356445645564656475648564956505651565256535654565556565657565856595660566156625663566456655666566756685669567056715672567356745675567656775678567956805681568256835684568556865687568856895690569156925693569456955696569756985699570057015702570357045705570657075708570957105711571257135714571557165717571857195720572157225723572457255726572757285729573057315732573357345735573657375738573957405741574257435744574557465747574857495750575157525753575457555756575757585759576057615762576357645765576657675768576957705771577257735774577557765777577857795780578157825783578457855786578757885789579057915792579357945795579657975798579958005801580258035804580558065807580858095810581158125813581458155816581758185819582058215822582358245825582658275828582958305831583258335834583558365837583858395840584158425843584458455846584758485849585058515852585358545855585658575858585958605861586258635864586558665867586858695870587158725873587458755876587758785879588058815882588358845885588658875888588958905891589258935894589558965897589858995900590159025903590459055906590759085909591059115912591359145915591659175918591959205921592259235924592559265927592859295930593159325933593459355936593759385939594059415942594359445945594659475948594959505951595259535954595559565957595859595960596159625963596459655966596759685969597059715972597359745975597659775978597959805981598259835984598559865987598859895990599159925993599459955996599759985999600060016002600360046005600660076008600960106011601260136014601560166017601860196020602160226023602460256026602760286029603060316032603360346035603660376038603960406041604260436044604560466047604860496050605160526053605460556056605760586059606060616062606360646065606660676068606960706071607260736074607560766077607860796080608160826083608460856086608760886089609060916092609360946095609660976098609961006101610261036104610561066107610861096110611161126113611461156116611761186119612061216122612361246125612661276128612961306131613261336134613561366137613861396140614161426143614461456146614761486149615061516152615361546155615661576158615961606161616261636164616561666167616861696170617161726173617461756176617761786179618061816182618361846185618661876188618961906191619261936194619561966197619861996200620162026203620462056206620762086209621062116212621362146215621662176218621962206221622262236224622562266227622862296230623162326233623462356236623762386239624062416242624362446245624662476248624962506251625262536254625562566257625862596260626162626263626462656266626762686269627062716272627362746275627662776278627962806281628262836284628562866287628862896290629162926293629462956296629762986299630063016302630363046305630663076308630963106311631263136314631563166317631863196320632163226323632463256326632763286329633063316332633363346335633663376338633963406341634263436344634563466347634863496350635163526353635463556356635763586359636063616362636363646365636663676368636963706371637263736374637563766377637863796380638163826383638463856386638763886389639063916392639363946395639663976398639964006401640264036404640564066407640864096410641164126413641464156416641764186419642064216422642364246425642664276428642964306431643264336434643564366437643864396440644164426443644464456446644764486449645064516452645364546455645664576458645964606461646264636464646564666467646864696470647164726473647464756476647764786479648064816482648364846485648664876488648964906491649264936494649564966497649864996500650165026503650465056506650765086509651065116512651365146515651665176518651965206521652265236524652565266527652865296530653165326533653465356536653765386539654065416542654365446545654665476548654965506551655265536554655565566557655865596560656165626563656465656566656765686569657065716572657365746575657665776578657965806581658265836584658565866587658865896590659165926593659465956596659765986599660066016602660366046605660666076608660966106611661266136614661566166617661866196620662166226623662466256626662766286629663066316632663366346635663666376638663966406641664266436644664566466647664866496650665166526653665466556656665766586659666066616662666366646665666666676668666966706671667266736674667566766677667866796680668166826683668466856686668766886689669066916692669366946695669666976698669967006701670267036704670567066707670867096710671167126713671467156716671767186719672067216722672367246725672667276728672967306731673267336734673567366737673867396740674167426743674467456746674767486749675067516752675367546755675667576758675967606761676267636764676567666767676867696770677167726773677467756776677767786779678067816782678367846785678667876788678967906791679267936794679567966797679867996800680168026803680468056806680768086809681068116812681368146815681668176818681968206821682268236824682568266827682868296830683168326833683468356836683768386839684068416842684368446845684668476848684968506851685268536854685568566857685868596860686168626863686468656866686768686869687068716872687368746875687668776878687968806881688268836884688568866887688868896890689168926893689468956896689768986899690069016902690369046905690669076908690969106911691269136914691569166917691869196920692169226923692469256926692769286929693069316932693369346935693669376938693969406941694269436944694569466947694869496950695169526953695469556956695769586959696069616962696369646965696669676968696969706971697269736974697569766977697869796980698169826983698469856986698769886989699069916992699369946995699669976998699970007001700270037004700570067007700870097010701170127013701470157016701770187019702070217022702370247025702670277028702970307031703270337034703570367037703870397040704170427043704470457046704770487049705070517052705370547055705670577058705970607061706270637064706570667067706870697070707170727073707470757076707770787079708070817082708370847085708670877088708970907091709270937094709570967097709870997100710171027103710471057106710771087109711071117112711371147115711671177118711971207121712271237124712571267127712871297130713171327133713471357136713771387139714071417142714371447145714671477148714971507151715271537154715571567157715871597160716171627163716471657166716771687169717071717172717371747175717671777178717971807181718271837184718571867187718871897190719171927193719471957196719771987199720072017202720372047205720672077208720972107211721272137214721572167217721872197220722172227223722472257226722772287229723072317232723372347235723672377238723972407241724272437244724572467247724872497250725172527253725472557256725772587259726072617262726372647265726672677268726972707271727272737274727572767277727872797280728172827283728472857286728772887289729072917292729372947295729672977298729973007301730273037304730573067307730873097310731173127313731473157316731773187319732073217322732373247325732673277328732973307331733273337334733573367337733873397340734173427343734473457346734773487349735073517352735373547355735673577358735973607361736273637364736573667367736873697370737173727373737473757376737773787379738073817382738373847385738673877388738973907391739273937394739573967397739873997400740174027403740474057406740774087409741074117412741374147415
  1. body {
  2. margin:0px;
  3. background-image:none;
  4. position:relative;
  5. left:0px;
  6. width:2457px;
  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. #u31770_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. #u31770 {
  35. border-width:0px;
  36. position:absolute;
  37. left:120px;
  38. top:50px;
  39. width:1480px;
  40. height:1200px;
  41. display:flex;
  42. }
  43. #u31770 .text {
  44. position:absolute;
  45. align-self:center;
  46. padding:2px 2px 2px 2px;
  47. box-sizing:border-box;
  48. width:100%;
  49. }
  50. #u31770_text {
  51. border-width:0px;
  52. word-wrap:break-word;
  53. text-transform:none;
  54. visibility:hidden;
  55. }
  56. #u31771_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. #u31771 {
  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. #u31771 .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. #u31771_text {
  92. border-width:0px;
  93. white-space:nowrap;
  94. text-transform:none;
  95. }
  96. #u31772_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. #u31772 {
  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. #u31772 .text {
  123. position:absolute;
  124. align-self:center;
  125. padding:2px 2px 2px 2px;
  126. box-sizing:border-box;
  127. width:100%;
  128. }
  129. #u31772_text {
  130. border-width:0px;
  131. word-wrap:break-word;
  132. text-transform:none;
  133. visibility:hidden;
  134. }
  135. #u31773 {
  136. border-width:0px;
  137. position:absolute;
  138. left:0px;
  139. top:0px;
  140. width:0px;
  141. height:0px;
  142. }
  143. #u31774_img {
  144. border-width:0px;
  145. position:absolute;
  146. left:0px;
  147. top:0px;
  148. width:31px;
  149. height:31px;
  150. }
  151. #u31774 {
  152. border-width:0px;
  153. position:absolute;
  154. left:19px;
  155. top:10px;
  156. width:31px;
  157. height:31px;
  158. display:flex;
  159. }
  160. #u31774 .text {
  161. position:absolute;
  162. align-self:center;
  163. padding:2px 2px 2px 2px;
  164. box-sizing:border-box;
  165. width:100%;
  166. }
  167. #u31774_text {
  168. border-width:0px;
  169. word-wrap:break-word;
  170. text-transform:none;
  171. }
  172. #u31775_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. #u31775 {
  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. #u31775 .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. #u31775_text {
  214. border-width:0px;
  215. white-space:nowrap;
  216. text-transform:none;
  217. }
  218. #u31776_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. #u31776 {
  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. #u31776 .text {
  245. position:absolute;
  246. align-self:center;
  247. padding:2px 2px 2px 2px;
  248. box-sizing:border-box;
  249. width:100%;
  250. }
  251. #u31776_text {
  252. border-width:0px;
  253. word-wrap:break-word;
  254. text-transform:none;
  255. visibility:hidden;
  256. }
  257. #u31777 {
  258. border-width:0px;
  259. position:absolute;
  260. left:0px;
  261. top:0px;
  262. width:0px;
  263. height:0px;
  264. }
  265. #u31778_input {
  266. position:absolute;
  267. left:0px;
  268. top:0px;
  269. width:214px;
  270. height:27px;
  271. padding:2px 2px 2px 2px;
  272. font-family:'ArialMT', 'Arial', sans-serif;
  273. font-weight:400;
  274. font-style:normal;
  275. font-size:14px;
  276. letter-spacing:normal;
  277. color:#FFFFFF;
  278. vertical-align:none;
  279. text-align:left;
  280. text-transform:none;
  281. background-color:transparent;
  282. border-color:transparent;
  283. }
  284. #u31778_input.disabled {
  285. position:absolute;
  286. left:0px;
  287. top:0px;
  288. width:214px;
  289. height:27px;
  290. padding:2px 2px 2px 2px;
  291. font-family:'ArialMT', 'Arial', sans-serif;
  292. font-weight:400;
  293. font-style:normal;
  294. font-size:14px;
  295. letter-spacing:normal;
  296. color:#FFFFFF;
  297. vertical-align:none;
  298. text-align:left;
  299. text-transform:none;
  300. background-color:transparent;
  301. border-color:transparent;
  302. }
  303. #u31778_div {
  304. border-width:0px;
  305. position:absolute;
  306. left:0px;
  307. top:0px;
  308. width:214px;
  309. height:27px;
  310. background:inherit;
  311. background-color:rgba(255, 255, 255, 0);
  312. border:none;
  313. border-radius:0px;
  314. -moz-box-shadow:none;
  315. -webkit-box-shadow:none;
  316. box-shadow:none;
  317. font-size:14px;
  318. color:#FFFFFF;
  319. }
  320. #u31778 {
  321. border-width:0px;
  322. position:absolute;
  323. left:1089px;
  324. top:10px;
  325. width:214px;
  326. height:27px;
  327. display:flex;
  328. font-size:14px;
  329. color:#FFFFFF;
  330. }
  331. #u31778 .text {
  332. position:absolute;
  333. align-self:flex-start;
  334. padding:2px 2px 2px 2px;
  335. box-sizing:border-box;
  336. width:100%;
  337. }
  338. #u31778_div.disabled {
  339. border-width:0px;
  340. position:absolute;
  341. left:0px;
  342. top:0px;
  343. width:214px;
  344. height:27px;
  345. background:inherit;
  346. background-color:rgba(240, 240, 240, 1);
  347. border:none;
  348. border-radius:0px;
  349. -moz-box-shadow:none;
  350. -webkit-box-shadow:none;
  351. box-shadow:none;
  352. font-size:14px;
  353. color:#FFFFFF;
  354. }
  355. #u31778.disabled {
  356. }
  357. .u31778_input_option {
  358. font-size:14px;
  359. }
  360. #u31779_img {
  361. border-width:0px;
  362. position:absolute;
  363. left:0px;
  364. top:0px;
  365. width:22px;
  366. height:22px;
  367. }
  368. #u31779 {
  369. border-width:0px;
  370. position:absolute;
  371. left:1062px;
  372. top:15px;
  373. width:22px;
  374. height:22px;
  375. display:flex;
  376. }
  377. #u31779 .text {
  378. position:absolute;
  379. align-self:center;
  380. padding:2px 2px 2px 2px;
  381. box-sizing:border-box;
  382. width:100%;
  383. }
  384. #u31779_text {
  385. border-width:0px;
  386. word-wrap:break-word;
  387. text-transform:none;
  388. visibility:hidden;
  389. }
  390. #u31780_div {
  391. border-width:0px;
  392. position:absolute;
  393. left:0px;
  394. top:0px;
  395. width:100px;
  396. height:24px;
  397. background:inherit;
  398. background-color:rgba(242, 242, 242, 0.2);
  399. border:none;
  400. border-radius:25px;
  401. -moz-box-shadow:none;
  402. -webkit-box-shadow:none;
  403. box-shadow:none;
  404. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  405. font-weight:400;
  406. font-style:normal;
  407. color:#FFFFFF;
  408. text-align:center;
  409. }
  410. #u31780 {
  411. border-width:0px;
  412. position:absolute;
  413. left:1350px;
  414. top:12px;
  415. width:100px;
  416. height:24px;
  417. display:flex;
  418. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  419. font-weight:400;
  420. font-style:normal;
  421. color:#FFFFFF;
  422. text-align:center;
  423. }
  424. #u31780 .text {
  425. position:absolute;
  426. align-self:center;
  427. padding:0px 0px 0px 0px;
  428. box-sizing:border-box;
  429. width:100%;
  430. }
  431. #u31780_text {
  432. border-width:0px;
  433. word-wrap:break-word;
  434. text-transform:none;
  435. }
  436. #u31781_div {
  437. border-width:0px;
  438. position:absolute;
  439. left:0px;
  440. top:0px;
  441. width:120px;
  442. height:24px;
  443. background:inherit;
  444. background-color:rgba(242, 242, 242, 0.2);
  445. border:none;
  446. border-radius:25px;
  447. -moz-box-shadow:none;
  448. -webkit-box-shadow:none;
  449. box-shadow:none;
  450. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  451. font-weight:400;
  452. font-style:normal;
  453. color:#FFFFFF;
  454. text-align:center;
  455. }
  456. #u31781 {
  457. border-width:0px;
  458. position:absolute;
  459. left:1460px;
  460. top:12px;
  461. width:120px;
  462. height:24px;
  463. display:flex;
  464. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  465. font-weight:400;
  466. font-style:normal;
  467. color:#FFFFFF;
  468. text-align:center;
  469. }
  470. #u31781 .text {
  471. position:absolute;
  472. align-self:center;
  473. padding:0px 0px 0px 0px;
  474. box-sizing:border-box;
  475. width:100%;
  476. }
  477. #u31781_text {
  478. border-width:0px;
  479. word-wrap:break-word;
  480. text-transform:none;
  481. }
  482. #u31782 {
  483. border-width:0px;
  484. position:absolute;
  485. left:0px;
  486. top:0px;
  487. width:0px;
  488. height:0px;
  489. }
  490. #u31783_div {
  491. border-width:0px;
  492. position:absolute;
  493. left:0px;
  494. top:0px;
  495. width:33px;
  496. height:22px;
  497. background:inherit;
  498. background-color:rgba(255, 255, 255, 0);
  499. border:none;
  500. border-radius:0px;
  501. -moz-box-shadow:none;
  502. -webkit-box-shadow:none;
  503. box-shadow:none;
  504. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  505. font-weight:400;
  506. font-style:normal;
  507. font-size:16px;
  508. color:#FFFFFF;
  509. }
  510. #u31783 {
  511. border-width:0px;
  512. position:absolute;
  513. left:39px;
  514. top:71px;
  515. width:33px;
  516. height:22px;
  517. display:flex;
  518. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  519. font-weight:400;
  520. font-style:normal;
  521. font-size:16px;
  522. color:#FFFFFF;
  523. }
  524. #u31783 .text {
  525. position:absolute;
  526. align-self:flex-start;
  527. padding:0px 0px 0px 0px;
  528. box-sizing:border-box;
  529. width:100%;
  530. }
  531. #u31783_text {
  532. border-width:0px;
  533. white-space:nowrap;
  534. text-transform:none;
  535. }
  536. #u31784_img {
  537. border-width:0px;
  538. position:absolute;
  539. left:0px;
  540. top:0px;
  541. width:14px;
  542. height:14px;
  543. }
  544. #u31784 {
  545. border-width:0px;
  546. position:absolute;
  547. left:20px;
  548. top:75px;
  549. width:14px;
  550. height:14px;
  551. display:flex;
  552. }
  553. #u31784 .text {
  554. position:absolute;
  555. align-self:center;
  556. padding:2px 2px 2px 2px;
  557. box-sizing:border-box;
  558. width:100%;
  559. }
  560. #u31784_text {
  561. border-width:0px;
  562. word-wrap:break-word;
  563. text-transform:none;
  564. visibility:hidden;
  565. }
  566. #u31785 {
  567. border-width:0px;
  568. position:absolute;
  569. left:0px;
  570. top:0px;
  571. width:0px;
  572. height:0px;
  573. }
  574. #u31786_div {
  575. border-width:0px;
  576. position:absolute;
  577. left:0px;
  578. top:0px;
  579. width:33px;
  580. height:22px;
  581. background:inherit;
  582. background-color:rgba(255, 255, 255, 0);
  583. border:none;
  584. border-radius:0px;
  585. -moz-box-shadow:none;
  586. -webkit-box-shadow:none;
  587. box-shadow:none;
  588. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  589. font-weight:400;
  590. font-style:normal;
  591. font-size:16px;
  592. color:#FFFFFF;
  593. }
  594. #u31786 {
  595. border-width:0px;
  596. position:absolute;
  597. left:39px;
  598. top:147px;
  599. width:33px;
  600. height:22px;
  601. display:flex;
  602. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  603. font-weight:400;
  604. font-style:normal;
  605. font-size:16px;
  606. color:#FFFFFF;
  607. }
  608. #u31786 .text {
  609. position:absolute;
  610. align-self:flex-start;
  611. padding:0px 0px 0px 0px;
  612. box-sizing:border-box;
  613. width:100%;
  614. }
  615. #u31786_text {
  616. border-width:0px;
  617. white-space:nowrap;
  618. text-transform:none;
  619. }
  620. #u31787_img {
  621. border-width:0px;
  622. position:absolute;
  623. left:0px;
  624. top:0px;
  625. width:14px;
  626. height:14px;
  627. }
  628. #u31787 {
  629. border-width:0px;
  630. position:absolute;
  631. left:20px;
  632. top:151px;
  633. width:14px;
  634. height:14px;
  635. display:flex;
  636. }
  637. #u31787 .text {
  638. position:absolute;
  639. align-self:center;
  640. padding:2px 2px 2px 2px;
  641. box-sizing:border-box;
  642. width:100%;
  643. }
  644. #u31787_text {
  645. border-width:0px;
  646. word-wrap:break-word;
  647. text-transform:none;
  648. visibility:hidden;
  649. }
  650. #u31788 {
  651. border-width:0px;
  652. position:absolute;
  653. left:0px;
  654. top:0px;
  655. width:0px;
  656. height:0px;
  657. }
  658. #u31789_div {
  659. border-width:0px;
  660. position:absolute;
  661. left:0px;
  662. top:0px;
  663. width:33px;
  664. height:22px;
  665. background:inherit;
  666. background-color:rgba(255, 255, 255, 0);
  667. border:none;
  668. border-radius:0px;
  669. -moz-box-shadow:none;
  670. -webkit-box-shadow:none;
  671. box-shadow:none;
  672. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  673. font-weight:400;
  674. font-style:normal;
  675. font-size:16px;
  676. color:#FFFFFF;
  677. }
  678. #u31789 {
  679. border-width:0px;
  680. position:absolute;
  681. left:39px;
  682. top:439px;
  683. width:33px;
  684. height:22px;
  685. display:flex;
  686. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  687. font-weight:400;
  688. font-style:normal;
  689. font-size:16px;
  690. color:#FFFFFF;
  691. }
  692. #u31789 .text {
  693. position:absolute;
  694. align-self:flex-start;
  695. padding:0px 0px 0px 0px;
  696. box-sizing:border-box;
  697. width:100%;
  698. }
  699. #u31789_text {
  700. border-width:0px;
  701. white-space:nowrap;
  702. text-transform:none;
  703. }
  704. #u31790_img {
  705. border-width:0px;
  706. position:absolute;
  707. left:0px;
  708. top:0px;
  709. width:14px;
  710. height:14px;
  711. }
  712. #u31790 {
  713. border-width:0px;
  714. position:absolute;
  715. left:20px;
  716. top:443px;
  717. width:14px;
  718. height:14px;
  719. display:flex;
  720. }
  721. #u31790 .text {
  722. position:absolute;
  723. align-self:center;
  724. padding:2px 2px 2px 2px;
  725. box-sizing:border-box;
  726. width:100%;
  727. }
  728. #u31790_text {
  729. border-width:0px;
  730. word-wrap:break-word;
  731. text-transform:none;
  732. visibility:hidden;
  733. }
  734. #u31791 {
  735. border-width:0px;
  736. position:absolute;
  737. left:0px;
  738. top:0px;
  739. width:0px;
  740. height:0px;
  741. }
  742. #u31792_div {
  743. border-width:0px;
  744. position:absolute;
  745. left:0px;
  746. top:0px;
  747. width:49px;
  748. height:22px;
  749. background:inherit;
  750. background-color:rgba(255, 255, 255, 0);
  751. border:none;
  752. border-radius:0px;
  753. -moz-box-shadow:none;
  754. -webkit-box-shadow:none;
  755. box-shadow:none;
  756. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  757. font-weight:400;
  758. font-style:normal;
  759. font-size:16px;
  760. color:#FFFFFF;
  761. }
  762. #u31792 {
  763. border-width:0px;
  764. position:absolute;
  765. left:39px;
  766. top:109px;
  767. width:49px;
  768. height:22px;
  769. display:flex;
  770. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  771. font-weight:400;
  772. font-style:normal;
  773. font-size:16px;
  774. color:#FFFFFF;
  775. }
  776. #u31792 .text {
  777. position:absolute;
  778. align-self:flex-start;
  779. padding:0px 0px 0px 0px;
  780. box-sizing:border-box;
  781. width:100%;
  782. }
  783. #u31792_text {
  784. border-width:0px;
  785. white-space:nowrap;
  786. text-transform:none;
  787. }
  788. #u31793_img {
  789. border-width:0px;
  790. position:absolute;
  791. left:0px;
  792. top:0px;
  793. width:14px;
  794. height:14px;
  795. }
  796. #u31793 {
  797. border-width:0px;
  798. position:absolute;
  799. left:20px;
  800. top:113px;
  801. width:14px;
  802. height:14px;
  803. display:flex;
  804. }
  805. #u31793 .text {
  806. position:absolute;
  807. align-self:center;
  808. padding:2px 2px 2px 2px;
  809. box-sizing:border-box;
  810. width:100%;
  811. }
  812. #u31793_text {
  813. border-width:0px;
  814. word-wrap:break-word;
  815. text-transform:none;
  816. visibility:hidden;
  817. }
  818. #u31794 {
  819. border-width:0px;
  820. position:absolute;
  821. left:0px;
  822. top:0px;
  823. width:0px;
  824. height:0px;
  825. }
  826. #u31795_div {
  827. border-width:0px;
  828. position:absolute;
  829. left:0px;
  830. top:0px;
  831. width:33px;
  832. height:22px;
  833. background:inherit;
  834. background-color:rgba(255, 255, 255, 0);
  835. border:none;
  836. border-radius:0px;
  837. -moz-box-shadow:none;
  838. -webkit-box-shadow:none;
  839. box-shadow:none;
  840. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  841. font-weight:400;
  842. font-style:normal;
  843. font-size:16px;
  844. color:#FFFFFF;
  845. }
  846. #u31795 {
  847. border-width:0px;
  848. position:absolute;
  849. left:39px;
  850. top:481px;
  851. width:33px;
  852. height:22px;
  853. display:flex;
  854. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  855. font-weight:400;
  856. font-style:normal;
  857. font-size:16px;
  858. color:#FFFFFF;
  859. }
  860. #u31795 .text {
  861. position:absolute;
  862. align-self:flex-start;
  863. padding:0px 0px 0px 0px;
  864. box-sizing:border-box;
  865. width:100%;
  866. }
  867. #u31795_text {
  868. border-width:0px;
  869. white-space:nowrap;
  870. text-transform:none;
  871. }
  872. #u31796_img {
  873. border-width:0px;
  874. position:absolute;
  875. left:0px;
  876. top:0px;
  877. width:14px;
  878. height:14px;
  879. }
  880. #u31796 {
  881. border-width:0px;
  882. position:absolute;
  883. left:20px;
  884. top:485px;
  885. width:14px;
  886. height:14px;
  887. display:flex;
  888. }
  889. #u31796 .text {
  890. position:absolute;
  891. align-self:center;
  892. padding:2px 2px 2px 2px;
  893. box-sizing:border-box;
  894. width:100%;
  895. }
  896. #u31796_text {
  897. border-width:0px;
  898. word-wrap:break-word;
  899. text-transform:none;
  900. visibility:hidden;
  901. }
  902. #u31797 {
  903. border-width:0px;
  904. position:absolute;
  905. left:0px;
  906. top:0px;
  907. width:0px;
  908. height:0px;
  909. }
  910. #u31798_div {
  911. border-width:0px;
  912. position:absolute;
  913. left:0px;
  914. top:0px;
  915. width:33px;
  916. height:22px;
  917. background:inherit;
  918. background-color:rgba(255, 255, 255, 0);
  919. border:none;
  920. border-radius:0px;
  921. -moz-box-shadow:none;
  922. -webkit-box-shadow:none;
  923. box-shadow:none;
  924. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  925. font-weight:400;
  926. font-style:normal;
  927. font-size:16px;
  928. color:#FFFFFF;
  929. }
  930. #u31798 {
  931. border-width:0px;
  932. position:absolute;
  933. left:39px;
  934. top:355px;
  935. width:33px;
  936. height:22px;
  937. display:flex;
  938. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  939. font-weight:400;
  940. font-style:normal;
  941. font-size:16px;
  942. color:#FFFFFF;
  943. }
  944. #u31798 .text {
  945. position:absolute;
  946. align-self:flex-start;
  947. padding:0px 0px 0px 0px;
  948. box-sizing:border-box;
  949. width:100%;
  950. }
  951. #u31798_text {
  952. border-width:0px;
  953. white-space:nowrap;
  954. text-transform:none;
  955. }
  956. #u31799_img {
  957. border-width:0px;
  958. position:absolute;
  959. left:0px;
  960. top:0px;
  961. width:14px;
  962. height:14px;
  963. }
  964. #u31799 {
  965. border-width:0px;
  966. position:absolute;
  967. left:20px;
  968. top:359px;
  969. width:14px;
  970. height:14px;
  971. display:flex;
  972. }
  973. #u31799 .text {
  974. position:absolute;
  975. align-self:center;
  976. padding:2px 2px 2px 2px;
  977. box-sizing:border-box;
  978. width:100%;
  979. }
  980. #u31799_text {
  981. border-width:0px;
  982. word-wrap:break-word;
  983. text-transform:none;
  984. visibility:hidden;
  985. }
  986. #u31800 {
  987. border-width:0px;
  988. position:absolute;
  989. left:0px;
  990. top:0px;
  991. width:0px;
  992. height:0px;
  993. }
  994. #u31801_div {
  995. border-width:0px;
  996. position:absolute;
  997. left:0px;
  998. top:0px;
  999. width:33px;
  1000. height:22px;
  1001. background:inherit;
  1002. background-color:rgba(255, 255, 255, 0);
  1003. border:none;
  1004. border-radius:0px;
  1005. -moz-box-shadow:none;
  1006. -webkit-box-shadow:none;
  1007. box-shadow:none;
  1008. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1009. font-weight:400;
  1010. font-style:normal;
  1011. font-size:16px;
  1012. color:#FFFFFF;
  1013. }
  1014. #u31801 {
  1015. border-width:0px;
  1016. position:absolute;
  1017. left:39px;
  1018. top:189px;
  1019. width:33px;
  1020. height:22px;
  1021. display:flex;
  1022. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1023. font-weight:400;
  1024. font-style:normal;
  1025. font-size:16px;
  1026. color:#FFFFFF;
  1027. }
  1028. #u31801 .text {
  1029. position:absolute;
  1030. align-self:flex-start;
  1031. padding:0px 0px 0px 0px;
  1032. box-sizing:border-box;
  1033. width:100%;
  1034. }
  1035. #u31801_text {
  1036. border-width:0px;
  1037. white-space:nowrap;
  1038. text-transform:none;
  1039. }
  1040. #u31802_img {
  1041. border-width:0px;
  1042. position:absolute;
  1043. left:0px;
  1044. top:0px;
  1045. width:14px;
  1046. height:14px;
  1047. }
  1048. #u31802 {
  1049. border-width:0px;
  1050. position:absolute;
  1051. left:20px;
  1052. top:193px;
  1053. width:14px;
  1054. height:14px;
  1055. display:flex;
  1056. }
  1057. #u31802 .text {
  1058. position:absolute;
  1059. align-self:center;
  1060. padding:2px 2px 2px 2px;
  1061. box-sizing:border-box;
  1062. width:100%;
  1063. }
  1064. #u31802_text {
  1065. border-width:0px;
  1066. word-wrap:break-word;
  1067. text-transform:none;
  1068. visibility:hidden;
  1069. }
  1070. #u31803 {
  1071. border-width:0px;
  1072. position:absolute;
  1073. left:0px;
  1074. top:0px;
  1075. width:0px;
  1076. height:0px;
  1077. }
  1078. #u31804_div {
  1079. border-width:0px;
  1080. position:absolute;
  1081. left:0px;
  1082. top:0px;
  1083. width:33px;
  1084. height:22px;
  1085. background:inherit;
  1086. background-color:rgba(255, 255, 255, 0);
  1087. border:none;
  1088. border-radius:0px;
  1089. -moz-box-shadow:none;
  1090. -webkit-box-shadow:none;
  1091. box-shadow:none;
  1092. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1093. font-weight:400;
  1094. font-style:normal;
  1095. font-size:16px;
  1096. color:#FFFFFF;
  1097. }
  1098. #u31804 {
  1099. border-width:0px;
  1100. position:absolute;
  1101. left:39px;
  1102. top:397px;
  1103. width:33px;
  1104. height:22px;
  1105. display:flex;
  1106. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1107. font-weight:400;
  1108. font-style:normal;
  1109. font-size:16px;
  1110. color:#FFFFFF;
  1111. }
  1112. #u31804 .text {
  1113. position:absolute;
  1114. align-self:flex-start;
  1115. padding:0px 0px 0px 0px;
  1116. box-sizing:border-box;
  1117. width:100%;
  1118. }
  1119. #u31804_text {
  1120. border-width:0px;
  1121. white-space:nowrap;
  1122. text-transform:none;
  1123. }
  1124. #u31805_img {
  1125. border-width:0px;
  1126. position:absolute;
  1127. left:0px;
  1128. top:0px;
  1129. width:14px;
  1130. height:14px;
  1131. }
  1132. #u31805 {
  1133. border-width:0px;
  1134. position:absolute;
  1135. left:20px;
  1136. top:401px;
  1137. width:14px;
  1138. height:14px;
  1139. display:flex;
  1140. }
  1141. #u31805 .text {
  1142. position:absolute;
  1143. align-self:center;
  1144. padding:2px 2px 2px 2px;
  1145. box-sizing:border-box;
  1146. width:100%;
  1147. }
  1148. #u31805_text {
  1149. border-width:0px;
  1150. word-wrap:break-word;
  1151. text-transform:none;
  1152. visibility:hidden;
  1153. }
  1154. #u31806 {
  1155. border-width:0px;
  1156. position:absolute;
  1157. left:0px;
  1158. top:0px;
  1159. width:0px;
  1160. height:0px;
  1161. }
  1162. #u31807_div {
  1163. border-width:0px;
  1164. position:absolute;
  1165. left:0px;
  1166. top:0px;
  1167. width:33px;
  1168. height:22px;
  1169. background:inherit;
  1170. background-color:rgba(255, 255, 255, 0);
  1171. border:none;
  1172. border-radius:0px;
  1173. -moz-box-shadow:none;
  1174. -webkit-box-shadow:none;
  1175. box-shadow:none;
  1176. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1177. font-weight:400;
  1178. font-style:normal;
  1179. font-size:16px;
  1180. color:#FFFFFF;
  1181. }
  1182. #u31807 {
  1183. border-width:0px;
  1184. position:absolute;
  1185. left:39px;
  1186. top:523px;
  1187. width:33px;
  1188. height:22px;
  1189. display:flex;
  1190. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1191. font-weight:400;
  1192. font-style:normal;
  1193. font-size:16px;
  1194. color:#FFFFFF;
  1195. }
  1196. #u31807 .text {
  1197. position:absolute;
  1198. align-self:flex-start;
  1199. padding:0px 0px 0px 0px;
  1200. box-sizing:border-box;
  1201. width:100%;
  1202. }
  1203. #u31807_text {
  1204. border-width:0px;
  1205. white-space:nowrap;
  1206. text-transform:none;
  1207. }
  1208. #u31808_img {
  1209. border-width:0px;
  1210. position:absolute;
  1211. left:0px;
  1212. top:0px;
  1213. width:14px;
  1214. height:14px;
  1215. }
  1216. #u31808 {
  1217. border-width:0px;
  1218. position:absolute;
  1219. left:20px;
  1220. top:527px;
  1221. width:14px;
  1222. height:14px;
  1223. display:flex;
  1224. }
  1225. #u31808 .text {
  1226. position:absolute;
  1227. align-self:center;
  1228. padding:2px 2px 2px 2px;
  1229. box-sizing:border-box;
  1230. width:100%;
  1231. }
  1232. #u31808_text {
  1233. border-width:0px;
  1234. word-wrap:break-word;
  1235. text-transform:none;
  1236. visibility:hidden;
  1237. }
  1238. #u31809 {
  1239. border-width:0px;
  1240. position:absolute;
  1241. left:0px;
  1242. top:0px;
  1243. width:0px;
  1244. height:0px;
  1245. }
  1246. #u31810_div {
  1247. border-width:0px;
  1248. position:absolute;
  1249. left:0px;
  1250. top:0px;
  1251. width:33px;
  1252. height:22px;
  1253. background:inherit;
  1254. background-color:rgba(255, 255, 255, 0);
  1255. border:none;
  1256. border-radius:0px;
  1257. -moz-box-shadow:none;
  1258. -webkit-box-shadow:none;
  1259. box-shadow:none;
  1260. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1261. font-weight:400;
  1262. font-style:normal;
  1263. font-size:16px;
  1264. color:#FFFFFF;
  1265. }
  1266. #u31810 {
  1267. border-width:0px;
  1268. position:absolute;
  1269. left:39px;
  1270. top:231px;
  1271. width:33px;
  1272. height:22px;
  1273. display:flex;
  1274. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1275. font-weight:400;
  1276. font-style:normal;
  1277. font-size:16px;
  1278. color:#FFFFFF;
  1279. }
  1280. #u31810 .text {
  1281. position:absolute;
  1282. align-self:flex-start;
  1283. padding:0px 0px 0px 0px;
  1284. box-sizing:border-box;
  1285. width:100%;
  1286. }
  1287. #u31810_text {
  1288. border-width:0px;
  1289. white-space:nowrap;
  1290. text-transform:none;
  1291. }
  1292. #u31811_img {
  1293. border-width:0px;
  1294. position:absolute;
  1295. left:0px;
  1296. top:0px;
  1297. width:14px;
  1298. height:14px;
  1299. }
  1300. #u31811 {
  1301. border-width:0px;
  1302. position:absolute;
  1303. left:20px;
  1304. top:235px;
  1305. width:14px;
  1306. height:14px;
  1307. display:flex;
  1308. }
  1309. #u31811 .text {
  1310. position:absolute;
  1311. align-self:center;
  1312. padding:2px 2px 2px 2px;
  1313. box-sizing:border-box;
  1314. width:100%;
  1315. }
  1316. #u31811_text {
  1317. border-width:0px;
  1318. word-wrap:break-word;
  1319. text-transform:none;
  1320. visibility:hidden;
  1321. }
  1322. #u31812_div {
  1323. border-width:0px;
  1324. position:absolute;
  1325. left:0px;
  1326. top:0px;
  1327. width:29px;
  1328. height:20px;
  1329. background:inherit;
  1330. background-color:rgba(255, 255, 255, 0);
  1331. border:none;
  1332. border-radius:25px;
  1333. -moz-box-shadow:none;
  1334. -webkit-box-shadow:none;
  1335. box-shadow:none;
  1336. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1337. font-weight:400;
  1338. font-style:normal;
  1339. color:#FFFFFF;
  1340. }
  1341. #u31812 {
  1342. border-width:0px;
  1343. position:absolute;
  1344. left:52px;
  1345. top:1145px;
  1346. width:29px;
  1347. height:20px;
  1348. display:flex;
  1349. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1350. font-weight:400;
  1351. font-style:normal;
  1352. color:#FFFFFF;
  1353. }
  1354. #u31812 .text {
  1355. position:absolute;
  1356. align-self:center;
  1357. padding:0px 0px 0px 0px;
  1358. box-sizing:border-box;
  1359. width:100%;
  1360. }
  1361. #u31812_text {
  1362. border-width:0px;
  1363. white-space:nowrap;
  1364. text-transform:none;
  1365. }
  1366. #u31813_img {
  1367. border-width:0px;
  1368. position:absolute;
  1369. left:0px;
  1370. top:0px;
  1371. width:22px;
  1372. height:22px;
  1373. }
  1374. #u31813 {
  1375. border-width:0px;
  1376. position:absolute;
  1377. left:20px;
  1378. top:1144px;
  1379. width:22px;
  1380. height:22px;
  1381. display:flex;
  1382. }
  1383. #u31813 .text {
  1384. position:absolute;
  1385. align-self:center;
  1386. padding:2px 2px 2px 2px;
  1387. box-sizing:border-box;
  1388. width:100%;
  1389. }
  1390. #u31813_text {
  1391. border-width:0px;
  1392. word-wrap:break-word;
  1393. text-transform:none;
  1394. visibility:hidden;
  1395. }
  1396. #u31814_div {
  1397. border-width:0px;
  1398. position:absolute;
  1399. left:0px;
  1400. top:0px;
  1401. width:29px;
  1402. height:20px;
  1403. background:inherit;
  1404. background-color:rgba(255, 255, 255, 0);
  1405. border:none;
  1406. border-radius:25px;
  1407. -moz-box-shadow:none;
  1408. -webkit-box-shadow:none;
  1409. box-shadow:none;
  1410. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1411. font-weight:400;
  1412. font-style:normal;
  1413. color:#FFFFFF;
  1414. }
  1415. #u31814 {
  1416. border-width:0px;
  1417. position:absolute;
  1418. left:52px;
  1419. top:1187px;
  1420. width:29px;
  1421. height:20px;
  1422. display:flex;
  1423. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1424. font-weight:400;
  1425. font-style:normal;
  1426. color:#FFFFFF;
  1427. }
  1428. #u31814 .text {
  1429. position:absolute;
  1430. align-self:center;
  1431. padding:0px 0px 0px 0px;
  1432. box-sizing:border-box;
  1433. width:100%;
  1434. }
  1435. #u31814_text {
  1436. border-width:0px;
  1437. white-space:nowrap;
  1438. text-transform:none;
  1439. }
  1440. #u31815_img {
  1441. border-width:0px;
  1442. position:absolute;
  1443. left:0px;
  1444. top:0px;
  1445. width:22px;
  1446. height:22px;
  1447. }
  1448. #u31815 {
  1449. border-width:0px;
  1450. position:absolute;
  1451. left:20px;
  1452. top:1186px;
  1453. width:22px;
  1454. height:22px;
  1455. display:flex;
  1456. }
  1457. #u31815 .text {
  1458. position:absolute;
  1459. align-self:center;
  1460. padding:2px 2px 2px 2px;
  1461. box-sizing:border-box;
  1462. width:100%;
  1463. }
  1464. #u31815_text {
  1465. border-width:0px;
  1466. word-wrap:break-word;
  1467. text-transform:none;
  1468. visibility:hidden;
  1469. }
  1470. #u31816 {
  1471. border-width:0px;
  1472. position:absolute;
  1473. left:0px;
  1474. top:0px;
  1475. width:0px;
  1476. height:0px;
  1477. }
  1478. #u31817_div {
  1479. border-width:0px;
  1480. position:absolute;
  1481. left:0px;
  1482. top:0px;
  1483. width:33px;
  1484. height:22px;
  1485. background:inherit;
  1486. background-color:rgba(255, 255, 255, 0);
  1487. border:none;
  1488. border-radius:0px;
  1489. -moz-box-shadow:none;
  1490. -webkit-box-shadow:none;
  1491. box-shadow:none;
  1492. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1493. font-weight:400;
  1494. font-style:normal;
  1495. font-size:16px;
  1496. color:#FFFFFF;
  1497. }
  1498. #u31817 {
  1499. border-width:0px;
  1500. position:absolute;
  1501. left:39px;
  1502. top:273px;
  1503. width:33px;
  1504. height:22px;
  1505. display:flex;
  1506. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1507. font-weight:400;
  1508. font-style:normal;
  1509. font-size:16px;
  1510. color:#FFFFFF;
  1511. }
  1512. #u31817 .text {
  1513. position:absolute;
  1514. align-self:flex-start;
  1515. padding:0px 0px 0px 0px;
  1516. box-sizing:border-box;
  1517. width:100%;
  1518. }
  1519. #u31817_text {
  1520. border-width:0px;
  1521. white-space:nowrap;
  1522. text-transform:none;
  1523. }
  1524. #u31818_img {
  1525. border-width:0px;
  1526. position:absolute;
  1527. left:0px;
  1528. top:0px;
  1529. width:14px;
  1530. height:14px;
  1531. }
  1532. #u31818 {
  1533. border-width:0px;
  1534. position:absolute;
  1535. left:20px;
  1536. top:277px;
  1537. width:14px;
  1538. height:14px;
  1539. display:flex;
  1540. }
  1541. #u31818 .text {
  1542. position:absolute;
  1543. align-self:center;
  1544. padding:2px 2px 2px 2px;
  1545. box-sizing:border-box;
  1546. width:100%;
  1547. }
  1548. #u31818_text {
  1549. border-width:0px;
  1550. word-wrap:break-word;
  1551. text-transform:none;
  1552. visibility:hidden;
  1553. }
  1554. #u31819 {
  1555. border-width:0px;
  1556. position:absolute;
  1557. left:0px;
  1558. top:0px;
  1559. width:0px;
  1560. height:0px;
  1561. }
  1562. #u31820_div {
  1563. border-width:0px;
  1564. position:absolute;
  1565. left:0px;
  1566. top:0px;
  1567. width:33px;
  1568. height:22px;
  1569. background:inherit;
  1570. background-color:rgba(255, 255, 255, 0);
  1571. border:none;
  1572. border-radius:0px;
  1573. -moz-box-shadow:none;
  1574. -webkit-box-shadow:none;
  1575. box-shadow:none;
  1576. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1577. font-weight:400;
  1578. font-style:normal;
  1579. font-size:16px;
  1580. color:#FFFFFF;
  1581. }
  1582. #u31820 {
  1583. border-width:0px;
  1584. position:absolute;
  1585. left:39px;
  1586. top:565px;
  1587. width:33px;
  1588. height:22px;
  1589. display:flex;
  1590. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1591. font-weight:400;
  1592. font-style:normal;
  1593. font-size:16px;
  1594. color:#FFFFFF;
  1595. }
  1596. #u31820 .text {
  1597. position:absolute;
  1598. align-self:flex-start;
  1599. padding:0px 0px 0px 0px;
  1600. box-sizing:border-box;
  1601. width:100%;
  1602. }
  1603. #u31820_text {
  1604. border-width:0px;
  1605. white-space:nowrap;
  1606. text-transform:none;
  1607. }
  1608. #u31821_img {
  1609. border-width:0px;
  1610. position:absolute;
  1611. left:0px;
  1612. top:0px;
  1613. width:14px;
  1614. height:14px;
  1615. }
  1616. #u31821 {
  1617. border-width:0px;
  1618. position:absolute;
  1619. left:20px;
  1620. top:569px;
  1621. width:14px;
  1622. height:14px;
  1623. display:flex;
  1624. }
  1625. #u31821 .text {
  1626. position:absolute;
  1627. align-self:center;
  1628. padding:2px 2px 2px 2px;
  1629. box-sizing:border-box;
  1630. width:100%;
  1631. }
  1632. #u31821_text {
  1633. border-width:0px;
  1634. word-wrap:break-word;
  1635. text-transform:none;
  1636. visibility:hidden;
  1637. }
  1638. #u31822 {
  1639. border-width:0px;
  1640. position:absolute;
  1641. left:0px;
  1642. top:0px;
  1643. width:0px;
  1644. height:0px;
  1645. }
  1646. #u31823_div {
  1647. border-width:0px;
  1648. position:absolute;
  1649. left:0px;
  1650. top:0px;
  1651. width:33px;
  1652. height:22px;
  1653. background:inherit;
  1654. background-color:rgba(255, 255, 255, 0);
  1655. border:none;
  1656. border-radius:0px;
  1657. -moz-box-shadow:none;
  1658. -webkit-box-shadow:none;
  1659. box-shadow:none;
  1660. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1661. font-weight:400;
  1662. font-style:normal;
  1663. font-size:16px;
  1664. color:#FFFFFF;
  1665. }
  1666. #u31823 {
  1667. border-width:0px;
  1668. position:absolute;
  1669. left:39px;
  1670. top:315px;
  1671. width:33px;
  1672. height:22px;
  1673. display:flex;
  1674. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1675. font-weight:400;
  1676. font-style:normal;
  1677. font-size:16px;
  1678. color:#FFFFFF;
  1679. }
  1680. #u31823 .text {
  1681. position:absolute;
  1682. align-self:flex-start;
  1683. padding:0px 0px 0px 0px;
  1684. box-sizing:border-box;
  1685. width:100%;
  1686. }
  1687. #u31823_text {
  1688. border-width:0px;
  1689. white-space:nowrap;
  1690. text-transform:none;
  1691. }
  1692. #u31824_img {
  1693. border-width:0px;
  1694. position:absolute;
  1695. left:0px;
  1696. top:0px;
  1697. width:14px;
  1698. height:14px;
  1699. }
  1700. #u31824 {
  1701. border-width:0px;
  1702. position:absolute;
  1703. left:20px;
  1704. top:319px;
  1705. width:14px;
  1706. height:14px;
  1707. display:flex;
  1708. }
  1709. #u31824 .text {
  1710. position:absolute;
  1711. align-self:center;
  1712. padding:2px 2px 2px 2px;
  1713. box-sizing:border-box;
  1714. width:100%;
  1715. }
  1716. #u31824_text {
  1717. border-width:0px;
  1718. word-wrap:break-word;
  1719. text-transform:none;
  1720. visibility:hidden;
  1721. }
  1722. #u31825_div {
  1723. border-width:0px;
  1724. position:absolute;
  1725. left:0px;
  1726. top:0px;
  1727. width:1253px;
  1728. height:1180px;
  1729. background:inherit;
  1730. background-color:rgba(255, 255, 255, 1);
  1731. border:none;
  1732. border-radius:0px;
  1733. -moz-box-shadow:none;
  1734. -webkit-box-shadow:none;
  1735. box-shadow:none;
  1736. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1737. font-weight:400;
  1738. font-style:normal;
  1739. font-size:12px;
  1740. color:#FFFFFF;
  1741. text-align:left;
  1742. }
  1743. #u31825 {
  1744. border-width:0px;
  1745. position:absolute;
  1746. left:335px;
  1747. top:50px;
  1748. width:1253px;
  1749. height:1180px;
  1750. display:flex;
  1751. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1752. font-weight:400;
  1753. font-style:normal;
  1754. font-size:12px;
  1755. color:#FFFFFF;
  1756. text-align:left;
  1757. }
  1758. #u31825 .text {
  1759. position:absolute;
  1760. align-self:center;
  1761. padding:2px 2px 2px 50px;
  1762. box-sizing:border-box;
  1763. width:100%;
  1764. }
  1765. #u31825_text {
  1766. border-width:0px;
  1767. word-wrap:break-word;
  1768. text-transform:none;
  1769. visibility:hidden;
  1770. }
  1771. #u31826_div {
  1772. border-width:0px;
  1773. position:absolute;
  1774. left:0px;
  1775. top:0px;
  1776. width:73px;
  1777. height:60px;
  1778. background:inherit;
  1779. background-color:rgba(255, 255, 255, 0);
  1780. border:none;
  1781. border-radius:0px;
  1782. -moz-box-shadow:none;
  1783. -webkit-box-shadow:none;
  1784. box-shadow:none;
  1785. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1786. font-weight:400;
  1787. font-style:normal;
  1788. font-size:18px;
  1789. }
  1790. #u31826 {
  1791. border-width:0px;
  1792. position:absolute;
  1793. left:365px;
  1794. top:50px;
  1795. width:73px;
  1796. height:60px;
  1797. display:flex;
  1798. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1799. font-weight:400;
  1800. font-style:normal;
  1801. font-size:18px;
  1802. }
  1803. #u31826 .text {
  1804. position:absolute;
  1805. align-self:center;
  1806. padding:0px 0px 0px 0px;
  1807. box-sizing:border-box;
  1808. width:100%;
  1809. }
  1810. #u31826_text {
  1811. border-width:0px;
  1812. white-space:nowrap;
  1813. text-transform:none;
  1814. }
  1815. #u31827 {
  1816. border-width:0px;
  1817. position:absolute;
  1818. left:0px;
  1819. top:0px;
  1820. width:0px;
  1821. height:0px;
  1822. }
  1823. #u31828_div {
  1824. border-width:0px;
  1825. position:absolute;
  1826. left:0px;
  1827. top:0px;
  1828. width:59px;
  1829. height:30px;
  1830. background:inherit;
  1831. background-color:rgba(24, 144, 255, 1);
  1832. box-sizing:border-box;
  1833. border-width:1px;
  1834. border-style:solid;
  1835. border-color:rgba(0, 153, 255, 1);
  1836. border-radius:4px;
  1837. -moz-box-shadow:none;
  1838. -webkit-box-shadow:none;
  1839. box-shadow:none;
  1840. font-family:'Microsoft YaHei', sans-serif;
  1841. font-weight:400;
  1842. font-style:normal;
  1843. font-size:14px;
  1844. color:#FFFFFF;
  1845. }
  1846. #u31828 {
  1847. border-width:0px;
  1848. position:absolute;
  1849. left:966px;
  1850. top:111px;
  1851. width:59px;
  1852. height:30px;
  1853. display:flex;
  1854. font-family:'Microsoft YaHei', sans-serif;
  1855. font-weight:400;
  1856. font-style:normal;
  1857. font-size:14px;
  1858. color:#FFFFFF;
  1859. }
  1860. #u31828 .text {
  1861. position:absolute;
  1862. align-self:center;
  1863. padding:5px 15px 5px 15px;
  1864. box-sizing:border-box;
  1865. width:100%;
  1866. }
  1867. #u31828_text {
  1868. border-width:0px;
  1869. white-space:nowrap;
  1870. text-transform:none;
  1871. }
  1872. #u31829_div {
  1873. border-width:0px;
  1874. position:absolute;
  1875. left:0px;
  1876. top:0px;
  1877. width:55px;
  1878. height:30px;
  1879. background:inherit;
  1880. background-color:rgba(255, 255, 255, 1);
  1881. box-sizing:border-box;
  1882. border-width:1px;
  1883. border-style:solid;
  1884. border-color:rgba(170, 170, 170, 1);
  1885. border-radius:4px;
  1886. -moz-box-shadow:none;
  1887. -webkit-box-shadow:none;
  1888. box-shadow:none;
  1889. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1890. font-weight:400;
  1891. font-style:normal;
  1892. font-size:12px;
  1893. color:#555555;
  1894. }
  1895. #u31829 {
  1896. border-width:0px;
  1897. position:absolute;
  1898. left:1035px;
  1899. top:111px;
  1900. width:55px;
  1901. height:30px;
  1902. display:flex;
  1903. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1904. font-weight:400;
  1905. font-style:normal;
  1906. font-size:12px;
  1907. color:#555555;
  1908. }
  1909. #u31829 .text {
  1910. position:absolute;
  1911. align-self:center;
  1912. padding:5px 15px 5px 15px;
  1913. box-sizing:border-box;
  1914. width:100%;
  1915. }
  1916. #u31829_text {
  1917. border-width:0px;
  1918. white-space:nowrap;
  1919. text-transform:none;
  1920. }
  1921. #u31830 {
  1922. border-width:0px;
  1923. position:absolute;
  1924. left:0px;
  1925. top:0px;
  1926. width:0px;
  1927. height:0px;
  1928. }
  1929. #u31831_div {
  1930. border-width:0px;
  1931. position:absolute;
  1932. left:0px;
  1933. top:0px;
  1934. width:140px;
  1935. height:30px;
  1936. background:inherit;
  1937. background-color:rgba(255, 255, 255, 1);
  1938. box-sizing:border-box;
  1939. border-width:1px;
  1940. border-style:solid;
  1941. border-color:rgba(201, 201, 201, 1);
  1942. border-radius:4px;
  1943. -moz-box-shadow:none;
  1944. -webkit-box-shadow:none;
  1945. box-shadow:none;
  1946. font-family:'Microsoft YaHei', sans-serif;
  1947. font-weight:400;
  1948. font-style:normal;
  1949. font-size:14px;
  1950. color:#CCCCCC;
  1951. text-align:left;
  1952. }
  1953. #u31831 {
  1954. border-width:0px;
  1955. position:absolute;
  1956. left:516px;
  1957. top:111px;
  1958. width:140px;
  1959. height:30px;
  1960. display:flex;
  1961. font-family:'Microsoft YaHei', sans-serif;
  1962. font-weight:400;
  1963. font-style:normal;
  1964. font-size:14px;
  1965. color:#CCCCCC;
  1966. text-align:left;
  1967. }
  1968. #u31831 .text {
  1969. position:absolute;
  1970. align-self:center;
  1971. padding:2px 8px 2px 8px;
  1972. box-sizing:border-box;
  1973. width:100%;
  1974. }
  1975. #u31831_text {
  1976. border-width:0px;
  1977. word-wrap:break-word;
  1978. text-transform:none;
  1979. visibility:hidden;
  1980. }
  1981. #u31832_input {
  1982. position:absolute;
  1983. left:0px;
  1984. top:0px;
  1985. width:127px;
  1986. height:25px;
  1987. padding:2px 2px 2px 2px;
  1988. font-family:'Microsoft YaHei', sans-serif;
  1989. font-weight:400;
  1990. font-style:normal;
  1991. font-size:10px;
  1992. letter-spacing:normal;
  1993. color:#000000;
  1994. vertical-align:none;
  1995. text-align:left;
  1996. text-transform:none;
  1997. background-color:transparent;
  1998. border-color:transparent;
  1999. }
  2000. #u31832_input.disabled {
  2001. position:absolute;
  2002. left:0px;
  2003. top:0px;
  2004. width:127px;
  2005. height:25px;
  2006. padding:2px 2px 2px 2px;
  2007. font-family:'Microsoft YaHei', sans-serif;
  2008. font-weight:400;
  2009. font-style:normal;
  2010. font-size:10px;
  2011. letter-spacing:normal;
  2012. color:#000000;
  2013. vertical-align:none;
  2014. text-align:left;
  2015. text-transform:none;
  2016. background-color:transparent;
  2017. border-color:transparent;
  2018. }
  2019. #u31832_div {
  2020. border-width:0px;
  2021. position:absolute;
  2022. left:0px;
  2023. top:0px;
  2024. width:127px;
  2025. height:25px;
  2026. background:inherit;
  2027. background-color:rgba(255, 255, 255, 1);
  2028. border:none;
  2029. border-radius:0px;
  2030. -moz-box-shadow:none;
  2031. -webkit-box-shadow:none;
  2032. box-shadow:none;
  2033. font-family:'Microsoft YaHei', sans-serif;
  2034. font-weight:400;
  2035. font-style:normal;
  2036. font-size:10px;
  2037. }
  2038. #u31832 {
  2039. border-width:0px;
  2040. position:absolute;
  2041. left:524px;
  2042. top:112px;
  2043. width:127px;
  2044. height:25px;
  2045. display:flex;
  2046. font-family:'Microsoft YaHei', sans-serif;
  2047. font-weight:400;
  2048. font-style:normal;
  2049. font-size:10px;
  2050. }
  2051. #u31832 .text {
  2052. position:absolute;
  2053. align-self:center;
  2054. padding:2px 2px 2px 2px;
  2055. box-sizing:border-box;
  2056. width:100%;
  2057. }
  2058. #u31832_div.disabled {
  2059. border-width:0px;
  2060. position:absolute;
  2061. left:0px;
  2062. top:0px;
  2063. width:127px;
  2064. height:25px;
  2065. background:inherit;
  2066. background-color:rgba(240, 240, 240, 1);
  2067. border:none;
  2068. border-radius:0px;
  2069. -moz-box-shadow:none;
  2070. -webkit-box-shadow:none;
  2071. box-shadow:none;
  2072. font-family:'Microsoft YaHei', sans-serif;
  2073. font-weight:400;
  2074. font-style:normal;
  2075. font-size:10px;
  2076. }
  2077. #u31832.disabled {
  2078. }
  2079. #u31833 {
  2080. border-width:0px;
  2081. position:absolute;
  2082. left:0px;
  2083. top:0px;
  2084. width:0px;
  2085. height:0px;
  2086. }
  2087. #u31834_div {
  2088. border-width:0px;
  2089. position:absolute;
  2090. left:0px;
  2091. top:0px;
  2092. width:140px;
  2093. height:30px;
  2094. background:inherit;
  2095. background-color:rgba(255, 255, 255, 1);
  2096. box-sizing:border-box;
  2097. border-width:1px;
  2098. border-style:solid;
  2099. border-color:rgba(215, 215, 215, 1);
  2100. border-radius:4px;
  2101. -moz-box-shadow:none;
  2102. -webkit-box-shadow:none;
  2103. box-shadow:none;
  2104. font-size:11px;
  2105. }
  2106. #u31834 {
  2107. border-width:0px;
  2108. position:absolute;
  2109. left:366px;
  2110. top:111px;
  2111. width:140px;
  2112. height:30px;
  2113. display:flex;
  2114. font-size:11px;
  2115. }
  2116. #u31834 .text {
  2117. position:absolute;
  2118. align-self:center;
  2119. padding:2px 2px 2px 2px;
  2120. box-sizing:border-box;
  2121. width:100%;
  2122. }
  2123. #u31834_text {
  2124. border-width:0px;
  2125. word-wrap:break-word;
  2126. text-transform:none;
  2127. visibility:hidden;
  2128. }
  2129. #u31835_input {
  2130. position:absolute;
  2131. left:0px;
  2132. top:0px;
  2133. width:126px;
  2134. height:23px;
  2135. padding:2px 2px 2px 2px;
  2136. font-family:'ArialMT', 'Arial', sans-serif;
  2137. font-weight:400;
  2138. font-style:normal;
  2139. font-size:11px;
  2140. letter-spacing:normal;
  2141. color:#AAAAAA;
  2142. vertical-align:none;
  2143. text-align:left;
  2144. text-transform:none;
  2145. background-color:transparent;
  2146. border-color:transparent;
  2147. }
  2148. #u31835_input.disabled {
  2149. position:absolute;
  2150. left:0px;
  2151. top:0px;
  2152. width:126px;
  2153. height:23px;
  2154. padding:2px 2px 2px 2px;
  2155. font-family:'ArialMT', 'Arial', sans-serif;
  2156. font-weight:400;
  2157. font-style:normal;
  2158. font-size:11px;
  2159. letter-spacing:normal;
  2160. color:#AAAAAA;
  2161. vertical-align:none;
  2162. text-align:left;
  2163. text-transform:none;
  2164. background-color:transparent;
  2165. border-color:transparent;
  2166. }
  2167. #u31835_div {
  2168. border-width:0px;
  2169. position:absolute;
  2170. left:0px;
  2171. top:0px;
  2172. width:126px;
  2173. height:23px;
  2174. background:inherit;
  2175. background-color:rgba(255, 255, 255, 1);
  2176. border:none;
  2177. border-radius:0px;
  2178. -moz-box-shadow:none;
  2179. -webkit-box-shadow:none;
  2180. box-shadow:none;
  2181. font-size:11px;
  2182. color:#AAAAAA;
  2183. }
  2184. #u31835 {
  2185. border-width:0px;
  2186. position:absolute;
  2187. left:373px;
  2188. top:113px;
  2189. width:126px;
  2190. height:23px;
  2191. display:flex;
  2192. font-size:11px;
  2193. color:#AAAAAA;
  2194. }
  2195. #u31835 .text {
  2196. position:absolute;
  2197. align-self:flex-start;
  2198. padding:2px 2px 2px 2px;
  2199. box-sizing:border-box;
  2200. width:100%;
  2201. }
  2202. #u31835_div.disabled {
  2203. border-width:0px;
  2204. position:absolute;
  2205. left:0px;
  2206. top:0px;
  2207. width:126px;
  2208. height:23px;
  2209. background:inherit;
  2210. background-color:rgba(240, 240, 240, 1);
  2211. border:none;
  2212. border-radius:0px;
  2213. -moz-box-shadow:none;
  2214. -webkit-box-shadow:none;
  2215. box-shadow:none;
  2216. font-size:11px;
  2217. color:#AAAAAA;
  2218. }
  2219. #u31835.disabled {
  2220. }
  2221. .u31835_input_option {
  2222. font-size:11px;
  2223. }
  2224. #u31836 {
  2225. border-width:0px;
  2226. position:absolute;
  2227. left:0px;
  2228. top:0px;
  2229. width:0px;
  2230. height:0px;
  2231. }
  2232. #u31837_div {
  2233. border-width:0px;
  2234. position:absolute;
  2235. left:0px;
  2236. top:0px;
  2237. width:140px;
  2238. height:30px;
  2239. background:inherit;
  2240. background-color:rgba(255, 255, 255, 1);
  2241. box-sizing:border-box;
  2242. border-width:1px;
  2243. border-style:solid;
  2244. border-color:rgba(215, 215, 215, 1);
  2245. border-radius:4px;
  2246. -moz-box-shadow:none;
  2247. -webkit-box-shadow:none;
  2248. box-shadow:none;
  2249. font-size:11px;
  2250. }
  2251. #u31837 {
  2252. border-width:0px;
  2253. position:absolute;
  2254. left:666px;
  2255. top:111px;
  2256. width:140px;
  2257. height:30px;
  2258. display:flex;
  2259. font-size:11px;
  2260. }
  2261. #u31837 .text {
  2262. position:absolute;
  2263. align-self:center;
  2264. padding:2px 2px 2px 2px;
  2265. box-sizing:border-box;
  2266. width:100%;
  2267. }
  2268. #u31837_text {
  2269. border-width:0px;
  2270. word-wrap:break-word;
  2271. text-transform:none;
  2272. visibility:hidden;
  2273. }
  2274. #u31838_input {
  2275. position:absolute;
  2276. left:0px;
  2277. top:0px;
  2278. width:126px;
  2279. height:23px;
  2280. padding:2px 2px 2px 2px;
  2281. font-family:'ArialMT', 'Arial', sans-serif;
  2282. font-weight:400;
  2283. font-style:normal;
  2284. font-size:11px;
  2285. letter-spacing:normal;
  2286. color:#AAAAAA;
  2287. vertical-align:none;
  2288. text-align:left;
  2289. text-transform:none;
  2290. background-color:transparent;
  2291. border-color:transparent;
  2292. }
  2293. #u31838_input.disabled {
  2294. position:absolute;
  2295. left:0px;
  2296. top:0px;
  2297. width:126px;
  2298. height:23px;
  2299. padding:2px 2px 2px 2px;
  2300. font-family:'ArialMT', 'Arial', sans-serif;
  2301. font-weight:400;
  2302. font-style:normal;
  2303. font-size:11px;
  2304. letter-spacing:normal;
  2305. color:#AAAAAA;
  2306. vertical-align:none;
  2307. text-align:left;
  2308. text-transform:none;
  2309. background-color:transparent;
  2310. border-color:transparent;
  2311. }
  2312. #u31838_div {
  2313. border-width:0px;
  2314. position:absolute;
  2315. left:0px;
  2316. top:0px;
  2317. width:126px;
  2318. height:23px;
  2319. background:inherit;
  2320. background-color:rgba(255, 255, 255, 1);
  2321. border:none;
  2322. border-radius:0px;
  2323. -moz-box-shadow:none;
  2324. -webkit-box-shadow:none;
  2325. box-shadow:none;
  2326. font-size:11px;
  2327. color:#AAAAAA;
  2328. }
  2329. #u31838 {
  2330. border-width:0px;
  2331. position:absolute;
  2332. left:673px;
  2333. top:113px;
  2334. width:126px;
  2335. height:23px;
  2336. display:flex;
  2337. font-size:11px;
  2338. color:#AAAAAA;
  2339. }
  2340. #u31838 .text {
  2341. position:absolute;
  2342. align-self:flex-start;
  2343. padding:2px 2px 2px 2px;
  2344. box-sizing:border-box;
  2345. width:100%;
  2346. }
  2347. #u31838_div.disabled {
  2348. border-width:0px;
  2349. position:absolute;
  2350. left:0px;
  2351. top:0px;
  2352. width:126px;
  2353. height:23px;
  2354. background:inherit;
  2355. background-color:rgba(240, 240, 240, 1);
  2356. border:none;
  2357. border-radius:0px;
  2358. -moz-box-shadow:none;
  2359. -webkit-box-shadow:none;
  2360. box-shadow:none;
  2361. font-size:11px;
  2362. color:#AAAAAA;
  2363. }
  2364. #u31838.disabled {
  2365. }
  2366. .u31838_input_option {
  2367. font-size:11px;
  2368. }
  2369. #u31839 {
  2370. border-width:0px;
  2371. position:absolute;
  2372. left:0px;
  2373. top:0px;
  2374. width:0px;
  2375. height:0px;
  2376. }
  2377. #u31840_div {
  2378. border-width:0px;
  2379. position:absolute;
  2380. left:0px;
  2381. top:0px;
  2382. width:140px;
  2383. height:30px;
  2384. background:inherit;
  2385. background-color:rgba(255, 255, 255, 1);
  2386. box-sizing:border-box;
  2387. border-width:1px;
  2388. border-style:solid;
  2389. border-color:rgba(215, 215, 215, 1);
  2390. border-radius:4px;
  2391. -moz-box-shadow:none;
  2392. -webkit-box-shadow:none;
  2393. box-shadow:none;
  2394. font-size:11px;
  2395. }
  2396. #u31840 {
  2397. border-width:0px;
  2398. position:absolute;
  2399. left:816px;
  2400. top:111px;
  2401. width:140px;
  2402. height:30px;
  2403. display:flex;
  2404. font-size:11px;
  2405. }
  2406. #u31840 .text {
  2407. position:absolute;
  2408. align-self:center;
  2409. padding:2px 2px 2px 2px;
  2410. box-sizing:border-box;
  2411. width:100%;
  2412. }
  2413. #u31840_text {
  2414. border-width:0px;
  2415. word-wrap:break-word;
  2416. text-transform:none;
  2417. visibility:hidden;
  2418. }
  2419. #u31841_input {
  2420. position:absolute;
  2421. left:0px;
  2422. top:0px;
  2423. width:126px;
  2424. height:23px;
  2425. padding:2px 2px 2px 2px;
  2426. font-family:'ArialMT', 'Arial', sans-serif;
  2427. font-weight:400;
  2428. font-style:normal;
  2429. font-size:11px;
  2430. letter-spacing:normal;
  2431. color:#AAAAAA;
  2432. vertical-align:none;
  2433. text-align:left;
  2434. text-transform:none;
  2435. background-color:transparent;
  2436. border-color:transparent;
  2437. }
  2438. #u31841_input.disabled {
  2439. position:absolute;
  2440. left:0px;
  2441. top:0px;
  2442. width:126px;
  2443. height:23px;
  2444. padding:2px 2px 2px 2px;
  2445. font-family:'ArialMT', 'Arial', sans-serif;
  2446. font-weight:400;
  2447. font-style:normal;
  2448. font-size:11px;
  2449. letter-spacing:normal;
  2450. color:#AAAAAA;
  2451. vertical-align:none;
  2452. text-align:left;
  2453. text-transform:none;
  2454. background-color:transparent;
  2455. border-color:transparent;
  2456. }
  2457. #u31841_div {
  2458. border-width:0px;
  2459. position:absolute;
  2460. left:0px;
  2461. top:0px;
  2462. width:126px;
  2463. height:23px;
  2464. background:inherit;
  2465. background-color:rgba(255, 255, 255, 1);
  2466. border:none;
  2467. border-radius:0px;
  2468. -moz-box-shadow:none;
  2469. -webkit-box-shadow:none;
  2470. box-shadow:none;
  2471. font-size:11px;
  2472. color:#AAAAAA;
  2473. }
  2474. #u31841 {
  2475. border-width:0px;
  2476. position:absolute;
  2477. left:823px;
  2478. top:113px;
  2479. width:126px;
  2480. height:23px;
  2481. display:flex;
  2482. font-size:11px;
  2483. color:#AAAAAA;
  2484. }
  2485. #u31841 .text {
  2486. position:absolute;
  2487. align-self:flex-start;
  2488. padding:2px 2px 2px 2px;
  2489. box-sizing:border-box;
  2490. width:100%;
  2491. }
  2492. #u31841_div.disabled {
  2493. border-width:0px;
  2494. position:absolute;
  2495. left:0px;
  2496. top:0px;
  2497. width:126px;
  2498. height:23px;
  2499. background:inherit;
  2500. background-color:rgba(240, 240, 240, 1);
  2501. border:none;
  2502. border-radius:0px;
  2503. -moz-box-shadow:none;
  2504. -webkit-box-shadow:none;
  2505. box-shadow:none;
  2506. font-size:11px;
  2507. color:#AAAAAA;
  2508. }
  2509. #u31841.disabled {
  2510. }
  2511. .u31841_input_option {
  2512. font-size:11px;
  2513. }
  2514. #u31842_div {
  2515. border-width:0px;
  2516. position:absolute;
  2517. left:0px;
  2518. top:0px;
  2519. width:59px;
  2520. height:30px;
  2521. background:inherit;
  2522. background-color:rgba(24, 144, 255, 1);
  2523. box-sizing:border-box;
  2524. border-width:1px;
  2525. border-style:solid;
  2526. border-color:rgba(0, 153, 255, 1);
  2527. border-radius:4px;
  2528. -moz-box-shadow:none;
  2529. -webkit-box-shadow:none;
  2530. box-shadow:none;
  2531. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2532. font-weight:400;
  2533. font-style:normal;
  2534. font-size:14px;
  2535. color:#FFFFFF;
  2536. }
  2537. #u31842 {
  2538. border-width:0px;
  2539. position:absolute;
  2540. left:366px;
  2541. top:161px;
  2542. width:59px;
  2543. height:30px;
  2544. display:flex;
  2545. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2546. font-weight:400;
  2547. font-style:normal;
  2548. font-size:14px;
  2549. color:#FFFFFF;
  2550. }
  2551. #u31842 .text {
  2552. position:absolute;
  2553. align-self:center;
  2554. padding:5px 15px 5px 15px;
  2555. box-sizing:border-box;
  2556. width:100%;
  2557. }
  2558. #u31842_text {
  2559. border-width:0px;
  2560. white-space:nowrap;
  2561. text-transform:none;
  2562. }
  2563. #u31843 {
  2564. border-width:0px;
  2565. position:absolute;
  2566. left:0px;
  2567. top:0px;
  2568. width:0px;
  2569. height:0px;
  2570. }
  2571. #u31844_div {
  2572. border-width:0px;
  2573. position:absolute;
  2574. left:0px;
  2575. top:0px;
  2576. width:200px;
  2577. height:1180px;
  2578. background:inherit;
  2579. background-color:rgba(255, 255, 255, 1);
  2580. border:none;
  2581. border-radius:0px;
  2582. -moz-box-shadow:none;
  2583. -webkit-box-shadow:none;
  2584. box-shadow:none;
  2585. }
  2586. #u31844 {
  2587. border-width:0px;
  2588. position:absolute;
  2589. left:120px;
  2590. top:50px;
  2591. width:200px;
  2592. height:1180px;
  2593. display:flex;
  2594. }
  2595. #u31844 .text {
  2596. position:absolute;
  2597. align-self:center;
  2598. padding:2px 2px 2px 2px;
  2599. box-sizing:border-box;
  2600. width:100%;
  2601. }
  2602. #u31844_text {
  2603. border-width:0px;
  2604. word-wrap:break-word;
  2605. text-transform:none;
  2606. visibility:hidden;
  2607. }
  2608. #u31845_div {
  2609. border-width:0px;
  2610. position:absolute;
  2611. left:0px;
  2612. top:0px;
  2613. width:200px;
  2614. height:60px;
  2615. background:inherit;
  2616. background-color:rgba(224, 231, 247, 1);
  2617. border:none;
  2618. border-radius:0px;
  2619. -moz-box-shadow:none;
  2620. -webkit-box-shadow:none;
  2621. box-shadow:none;
  2622. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  2623. font-weight:500;
  2624. font-style:normal;
  2625. font-size:18px;
  2626. }
  2627. #u31845 {
  2628. border-width:0px;
  2629. position:absolute;
  2630. left:120px;
  2631. top:50px;
  2632. width:200px;
  2633. height:60px;
  2634. display:flex;
  2635. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  2636. font-weight:500;
  2637. font-style:normal;
  2638. font-size:18px;
  2639. }
  2640. #u31845 .text {
  2641. position:absolute;
  2642. align-self:center;
  2643. padding:0px 0px 0px 20px;
  2644. box-sizing:border-box;
  2645. width:100%;
  2646. }
  2647. #u31845_text {
  2648. border-width:0px;
  2649. word-wrap:break-word;
  2650. text-transform:none;
  2651. }
  2652. #u31846_div {
  2653. border-width:0px;
  2654. position:absolute;
  2655. left:0px;
  2656. top:0px;
  2657. width:65px;
  2658. height:22px;
  2659. background:inherit;
  2660. background-color:rgba(255, 255, 255, 0);
  2661. border:none;
  2662. border-radius:0px;
  2663. -moz-box-shadow:none;
  2664. -webkit-box-shadow:none;
  2665. box-shadow:none;
  2666. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2667. font-weight:400;
  2668. font-style:normal;
  2669. font-size:16px;
  2670. }
  2671. #u31846 {
  2672. border-width:0px;
  2673. position:absolute;
  2674. left:147px;
  2675. top:167px;
  2676. width:65px;
  2677. height:22px;
  2678. display:flex;
  2679. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2680. font-weight:400;
  2681. font-style:normal;
  2682. font-size:16px;
  2683. }
  2684. #u31846 .text {
  2685. position:absolute;
  2686. align-self:flex-start;
  2687. padding:0px 0px 0px 0px;
  2688. box-sizing:border-box;
  2689. width:100%;
  2690. }
  2691. #u31846_text {
  2692. border-width:0px;
  2693. white-space:nowrap;
  2694. text-transform:none;
  2695. }
  2696. #u31847_div {
  2697. border-width:0px;
  2698. position:absolute;
  2699. left:0px;
  2700. top:0px;
  2701. width:49px;
  2702. height:17px;
  2703. background:inherit;
  2704. background-color:rgba(255, 255, 255, 0);
  2705. border:none;
  2706. border-radius:0px;
  2707. -moz-box-shadow:none;
  2708. -webkit-box-shadow:none;
  2709. box-shadow:none;
  2710. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2711. font-weight:400;
  2712. font-style:normal;
  2713. font-size:12px;
  2714. color:#AAAAAA;
  2715. }
  2716. #u31847 {
  2717. border-width:0px;
  2718. position:absolute;
  2719. left:147px;
  2720. top:130px;
  2721. width:49px;
  2722. height:17px;
  2723. display:flex;
  2724. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2725. font-weight:400;
  2726. font-style:normal;
  2727. font-size:12px;
  2728. color:#AAAAAA;
  2729. }
  2730. #u31847 .text {
  2731. position:absolute;
  2732. align-self:flex-start;
  2733. padding:0px 0px 0px 0px;
  2734. box-sizing:border-box;
  2735. width:100%;
  2736. }
  2737. #u31847_text {
  2738. border-width:0px;
  2739. white-space:nowrap;
  2740. text-transform:none;
  2741. }
  2742. #u31848_div {
  2743. border-width:0px;
  2744. position:absolute;
  2745. left:0px;
  2746. top:0px;
  2747. width:65px;
  2748. height:22px;
  2749. background:inherit;
  2750. background-color:rgba(255, 255, 255, 0);
  2751. border:none;
  2752. border-radius:0px;
  2753. -moz-box-shadow:none;
  2754. -webkit-box-shadow:none;
  2755. box-shadow:none;
  2756. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2757. font-weight:400;
  2758. font-style:normal;
  2759. font-size:16px;
  2760. }
  2761. #u31848 {
  2762. border-width:0px;
  2763. position:absolute;
  2764. left:147px;
  2765. top:209px;
  2766. width:65px;
  2767. height:22px;
  2768. display:flex;
  2769. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2770. font-weight:400;
  2771. font-style:normal;
  2772. font-size:16px;
  2773. }
  2774. #u31848 .text {
  2775. position:absolute;
  2776. align-self:flex-start;
  2777. padding:0px 0px 0px 0px;
  2778. box-sizing:border-box;
  2779. width:100%;
  2780. }
  2781. #u31848_text {
  2782. border-width:0px;
  2783. white-space:nowrap;
  2784. text-transform:none;
  2785. }
  2786. #u31849 {
  2787. border-width:0px;
  2788. position:absolute;
  2789. left:0px;
  2790. top:0px;
  2791. width:0px;
  2792. height:0px;
  2793. }
  2794. #u31850 {
  2795. border-width:0px;
  2796. position:absolute;
  2797. left:366px;
  2798. top:201px;
  2799. width:1205px;
  2800. height:328px;
  2801. }
  2802. #u31851_img {
  2803. border-width:0px;
  2804. position:absolute;
  2805. left:0px;
  2806. top:0px;
  2807. width:60px;
  2808. height:44px;
  2809. }
  2810. #u31851 {
  2811. border-width:0px;
  2812. position:absolute;
  2813. left:0px;
  2814. top:0px;
  2815. width:60px;
  2816. height:44px;
  2817. display:flex;
  2818. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2819. font-weight:400;
  2820. font-style:normal;
  2821. font-size:12px;
  2822. color:#FFFFFF;
  2823. }
  2824. #u31851 .text {
  2825. position:absolute;
  2826. align-self:center;
  2827. padding:2px 2px 2px 0px;
  2828. box-sizing:border-box;
  2829. width:100%;
  2830. }
  2831. #u31851_text {
  2832. border-width:0px;
  2833. word-wrap:break-word;
  2834. text-transform:none;
  2835. }
  2836. #u31852_img {
  2837. border-width:0px;
  2838. position:absolute;
  2839. left:0px;
  2840. top:0px;
  2841. width:73px;
  2842. height:44px;
  2843. }
  2844. #u31852 {
  2845. border-width:0px;
  2846. position:absolute;
  2847. left:60px;
  2848. top:0px;
  2849. width:73px;
  2850. height:44px;
  2851. display:flex;
  2852. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2853. font-weight:400;
  2854. font-style:normal;
  2855. font-size:12px;
  2856. color:#FFFFFF;
  2857. }
  2858. #u31852 .text {
  2859. position:absolute;
  2860. align-self:center;
  2861. padding:2px 2px 2px 0px;
  2862. box-sizing:border-box;
  2863. width:100%;
  2864. }
  2865. #u31852_text {
  2866. border-width:0px;
  2867. word-wrap:break-word;
  2868. text-transform:none;
  2869. }
  2870. #u31853_img {
  2871. border-width:0px;
  2872. position:absolute;
  2873. left:0px;
  2874. top:0px;
  2875. width:100px;
  2876. height:44px;
  2877. }
  2878. #u31853 {
  2879. border-width:0px;
  2880. position:absolute;
  2881. left:133px;
  2882. top:0px;
  2883. width:100px;
  2884. height:44px;
  2885. display:flex;
  2886. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2887. font-weight:400;
  2888. font-style:normal;
  2889. font-size:12px;
  2890. color:#FFFFFF;
  2891. }
  2892. #u31853 .text {
  2893. position:absolute;
  2894. align-self:center;
  2895. padding:2px 2px 2px 0px;
  2896. box-sizing:border-box;
  2897. width:100%;
  2898. }
  2899. #u31853_text {
  2900. border-width:0px;
  2901. word-wrap:break-word;
  2902. text-transform:none;
  2903. }
  2904. #u31854_img {
  2905. border-width:0px;
  2906. position:absolute;
  2907. left:0px;
  2908. top:0px;
  2909. width:100px;
  2910. height:44px;
  2911. }
  2912. #u31854 {
  2913. border-width:0px;
  2914. position:absolute;
  2915. left:233px;
  2916. top:0px;
  2917. width:100px;
  2918. height:44px;
  2919. display:flex;
  2920. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2921. font-weight:400;
  2922. font-style:normal;
  2923. font-size:12px;
  2924. color:#FFFFFF;
  2925. }
  2926. #u31854 .text {
  2927. position:absolute;
  2928. align-self:center;
  2929. padding:2px 2px 2px 0px;
  2930. box-sizing:border-box;
  2931. width:100%;
  2932. }
  2933. #u31854_text {
  2934. border-width:0px;
  2935. word-wrap:break-word;
  2936. text-transform:none;
  2937. }
  2938. #u31855_img {
  2939. border-width:0px;
  2940. position:absolute;
  2941. left:0px;
  2942. top:0px;
  2943. width:100px;
  2944. height:44px;
  2945. }
  2946. #u31855 {
  2947. border-width:0px;
  2948. position:absolute;
  2949. left:333px;
  2950. top:0px;
  2951. width:100px;
  2952. height:44px;
  2953. display:flex;
  2954. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2955. font-weight:400;
  2956. font-style:normal;
  2957. font-size:12px;
  2958. color:#FFFFFF;
  2959. }
  2960. #u31855 .text {
  2961. position:absolute;
  2962. align-self:center;
  2963. padding:2px 2px 2px 0px;
  2964. box-sizing:border-box;
  2965. width:100%;
  2966. }
  2967. #u31855_text {
  2968. border-width:0px;
  2969. word-wrap:break-word;
  2970. text-transform:none;
  2971. }
  2972. #u31856_img {
  2973. border-width:0px;
  2974. position:absolute;
  2975. left:0px;
  2976. top:0px;
  2977. width:128px;
  2978. height:44px;
  2979. }
  2980. #u31856 {
  2981. border-width:0px;
  2982. position:absolute;
  2983. left:433px;
  2984. top:0px;
  2985. width:128px;
  2986. height:44px;
  2987. display:flex;
  2988. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2989. font-weight:400;
  2990. font-style:normal;
  2991. font-size:12px;
  2992. color:#FFFFFF;
  2993. }
  2994. #u31856 .text {
  2995. position:absolute;
  2996. align-self:center;
  2997. padding:2px 2px 2px 0px;
  2998. box-sizing:border-box;
  2999. width:100%;
  3000. }
  3001. #u31856_text {
  3002. border-width:0px;
  3003. word-wrap:break-word;
  3004. text-transform:none;
  3005. }
  3006. #u31857_img {
  3007. border-width:0px;
  3008. position:absolute;
  3009. left:0px;
  3010. top:0px;
  3011. width:100px;
  3012. height:44px;
  3013. }
  3014. #u31857 {
  3015. border-width:0px;
  3016. position:absolute;
  3017. left:561px;
  3018. top:0px;
  3019. width:100px;
  3020. height:44px;
  3021. display:flex;
  3022. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3023. font-weight:400;
  3024. font-style:normal;
  3025. font-size:12px;
  3026. color:#FFFFFF;
  3027. }
  3028. #u31857 .text {
  3029. position:absolute;
  3030. align-self:center;
  3031. padding:2px 2px 2px 0px;
  3032. box-sizing:border-box;
  3033. width:100%;
  3034. }
  3035. #u31857_text {
  3036. border-width:0px;
  3037. word-wrap:break-word;
  3038. text-transform:none;
  3039. }
  3040. #u31858_img {
  3041. border-width:0px;
  3042. position:absolute;
  3043. left:0px;
  3044. top:0px;
  3045. width:110px;
  3046. height:44px;
  3047. }
  3048. #u31858 {
  3049. border-width:0px;
  3050. position:absolute;
  3051. left:661px;
  3052. top:0px;
  3053. width:110px;
  3054. height:44px;
  3055. display:flex;
  3056. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3057. font-weight:400;
  3058. font-style:normal;
  3059. font-size:12px;
  3060. color:#FFFFFF;
  3061. }
  3062. #u31858 .text {
  3063. position:absolute;
  3064. align-self:center;
  3065. padding:2px 2px 2px 0px;
  3066. box-sizing:border-box;
  3067. width:100%;
  3068. }
  3069. #u31858_text {
  3070. border-width:0px;
  3071. word-wrap:break-word;
  3072. text-transform:none;
  3073. }
  3074. #u31859_img {
  3075. border-width:0px;
  3076. position:absolute;
  3077. left:0px;
  3078. top:0px;
  3079. width:60px;
  3080. height:44px;
  3081. }
  3082. #u31859 {
  3083. border-width:0px;
  3084. position:absolute;
  3085. left:771px;
  3086. top:0px;
  3087. width:60px;
  3088. height:44px;
  3089. display:flex;
  3090. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3091. font-weight:400;
  3092. font-style:normal;
  3093. font-size:12px;
  3094. color:#FFFFFF;
  3095. }
  3096. #u31859 .text {
  3097. position:absolute;
  3098. align-self:center;
  3099. padding:2px 2px 2px 0px;
  3100. box-sizing:border-box;
  3101. width:100%;
  3102. }
  3103. #u31859_text {
  3104. border-width:0px;
  3105. word-wrap:break-word;
  3106. text-transform:none;
  3107. }
  3108. #u31860_img {
  3109. border-width:0px;
  3110. position:absolute;
  3111. left:0px;
  3112. top:0px;
  3113. width:100px;
  3114. height:44px;
  3115. }
  3116. #u31860 {
  3117. border-width:0px;
  3118. position:absolute;
  3119. left:831px;
  3120. top:0px;
  3121. width:100px;
  3122. height:44px;
  3123. display:flex;
  3124. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3125. font-weight:400;
  3126. font-style:normal;
  3127. font-size:12px;
  3128. color:#FFFFFF;
  3129. }
  3130. #u31860 .text {
  3131. position:absolute;
  3132. align-self:center;
  3133. padding:2px 2px 2px 0px;
  3134. box-sizing:border-box;
  3135. width:100%;
  3136. }
  3137. #u31860_text {
  3138. border-width:0px;
  3139. word-wrap:break-word;
  3140. text-transform:none;
  3141. }
  3142. #u31861_img {
  3143. border-width:0px;
  3144. position:absolute;
  3145. left:0px;
  3146. top:0px;
  3147. width:91px;
  3148. height:44px;
  3149. }
  3150. #u31861 {
  3151. border-width:0px;
  3152. position:absolute;
  3153. left:931px;
  3154. top:0px;
  3155. width:91px;
  3156. height:44px;
  3157. display:flex;
  3158. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3159. font-weight:400;
  3160. font-style:normal;
  3161. font-size:12px;
  3162. color:#FFFFFF;
  3163. }
  3164. #u31861 .text {
  3165. position:absolute;
  3166. align-self:center;
  3167. padding:2px 2px 2px 0px;
  3168. box-sizing:border-box;
  3169. width:100%;
  3170. }
  3171. #u31861_text {
  3172. border-width:0px;
  3173. word-wrap:break-word;
  3174. text-transform:none;
  3175. }
  3176. #u31862_img {
  3177. border-width:0px;
  3178. position:absolute;
  3179. left:0px;
  3180. top:0px;
  3181. width:183px;
  3182. height:44px;
  3183. }
  3184. #u31862 {
  3185. border-width:0px;
  3186. position:absolute;
  3187. left:1022px;
  3188. top:0px;
  3189. width:183px;
  3190. height:44px;
  3191. display:flex;
  3192. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3193. font-weight:400;
  3194. font-style:normal;
  3195. font-size:12px;
  3196. color:#FFFFFF;
  3197. }
  3198. #u31862 .text {
  3199. position:absolute;
  3200. align-self:center;
  3201. padding:2px 2px 2px 0px;
  3202. box-sizing:border-box;
  3203. width:100%;
  3204. }
  3205. #u31862_text {
  3206. border-width:0px;
  3207. word-wrap:break-word;
  3208. text-transform:none;
  3209. }
  3210. #u31863_img {
  3211. border-width:0px;
  3212. position:absolute;
  3213. left:0px;
  3214. top:0px;
  3215. width:60px;
  3216. height:38px;
  3217. }
  3218. #u31863 {
  3219. border-width:0px;
  3220. position:absolute;
  3221. left:0px;
  3222. top:44px;
  3223. width:60px;
  3224. height:38px;
  3225. display:flex;
  3226. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3227. font-weight:400;
  3228. font-style:normal;
  3229. font-size:12px;
  3230. color:#333333;
  3231. }
  3232. #u31863 .text {
  3233. position:absolute;
  3234. align-self:center;
  3235. padding:2px 2px 2px 0px;
  3236. box-sizing:border-box;
  3237. width:100%;
  3238. }
  3239. #u31863_text {
  3240. border-width:0px;
  3241. word-wrap:break-word;
  3242. text-transform:none;
  3243. visibility:hidden;
  3244. }
  3245. #u31864_img {
  3246. border-width:0px;
  3247. position:absolute;
  3248. left:0px;
  3249. top:0px;
  3250. width:73px;
  3251. height:38px;
  3252. }
  3253. #u31864 {
  3254. border-width:0px;
  3255. position:absolute;
  3256. left:60px;
  3257. top:44px;
  3258. width:73px;
  3259. height:38px;
  3260. display:flex;
  3261. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3262. font-weight:400;
  3263. font-style:normal;
  3264. font-size:12px;
  3265. color:#333333;
  3266. }
  3267. #u31864 .text {
  3268. position:absolute;
  3269. align-self:center;
  3270. padding:2px 2px 2px 0px;
  3271. box-sizing:border-box;
  3272. width:100%;
  3273. }
  3274. #u31864_text {
  3275. border-width:0px;
  3276. word-wrap:break-word;
  3277. text-transform:none;
  3278. visibility:hidden;
  3279. }
  3280. #u31865_img {
  3281. border-width:0px;
  3282. position:absolute;
  3283. left:0px;
  3284. top:0px;
  3285. width:100px;
  3286. height:38px;
  3287. }
  3288. #u31865 {
  3289. border-width:0px;
  3290. position:absolute;
  3291. left:133px;
  3292. top:44px;
  3293. width:100px;
  3294. height:38px;
  3295. display:flex;
  3296. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3297. font-weight:400;
  3298. font-style:normal;
  3299. font-size:12px;
  3300. color:#333333;
  3301. }
  3302. #u31865 .text {
  3303. position:absolute;
  3304. align-self:center;
  3305. padding:2px 2px 2px 0px;
  3306. box-sizing:border-box;
  3307. width:100%;
  3308. }
  3309. #u31865_text {
  3310. border-width:0px;
  3311. word-wrap:break-word;
  3312. text-transform:none;
  3313. visibility:hidden;
  3314. }
  3315. #u31866_img {
  3316. border-width:0px;
  3317. position:absolute;
  3318. left:0px;
  3319. top:0px;
  3320. width:100px;
  3321. height:38px;
  3322. }
  3323. #u31866 {
  3324. border-width:0px;
  3325. position:absolute;
  3326. left:233px;
  3327. top:44px;
  3328. width:100px;
  3329. height:38px;
  3330. display:flex;
  3331. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3332. font-weight:400;
  3333. font-style:normal;
  3334. font-size:12px;
  3335. color:#333333;
  3336. }
  3337. #u31866 .text {
  3338. position:absolute;
  3339. align-self:center;
  3340. padding:2px 2px 2px 0px;
  3341. box-sizing:border-box;
  3342. width:100%;
  3343. }
  3344. #u31866_text {
  3345. border-width:0px;
  3346. word-wrap:break-word;
  3347. text-transform:none;
  3348. visibility:hidden;
  3349. }
  3350. #u31867_img {
  3351. border-width:0px;
  3352. position:absolute;
  3353. left:0px;
  3354. top:0px;
  3355. width:100px;
  3356. height:38px;
  3357. }
  3358. #u31867 {
  3359. border-width:0px;
  3360. position:absolute;
  3361. left:333px;
  3362. top:44px;
  3363. width:100px;
  3364. height:38px;
  3365. display:flex;
  3366. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3367. font-weight:400;
  3368. font-style:normal;
  3369. font-size:12px;
  3370. color:#333333;
  3371. }
  3372. #u31867 .text {
  3373. position:absolute;
  3374. align-self:center;
  3375. padding:2px 2px 2px 0px;
  3376. box-sizing:border-box;
  3377. width:100%;
  3378. }
  3379. #u31867_text {
  3380. border-width:0px;
  3381. word-wrap:break-word;
  3382. text-transform:none;
  3383. }
  3384. #u31868_img {
  3385. border-width:0px;
  3386. position:absolute;
  3387. left:0px;
  3388. top:0px;
  3389. width:128px;
  3390. height:38px;
  3391. }
  3392. #u31868 {
  3393. border-width:0px;
  3394. position:absolute;
  3395. left:433px;
  3396. top:44px;
  3397. width:128px;
  3398. height:38px;
  3399. display:flex;
  3400. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3401. font-weight:400;
  3402. font-style:normal;
  3403. font-size:12px;
  3404. color:#BCBCBC;
  3405. line-height:24px;
  3406. }
  3407. #u31868 .text {
  3408. position:absolute;
  3409. align-self:center;
  3410. padding:2px 2px 2px 0px;
  3411. box-sizing:border-box;
  3412. width:100%;
  3413. }
  3414. #u31868_text {
  3415. border-width:0px;
  3416. word-wrap:break-word;
  3417. text-transform:none;
  3418. visibility:hidden;
  3419. }
  3420. #u31869_img {
  3421. border-width:0px;
  3422. position:absolute;
  3423. left:0px;
  3424. top:0px;
  3425. width:100px;
  3426. height:38px;
  3427. }
  3428. #u31869 {
  3429. border-width:0px;
  3430. position:absolute;
  3431. left:561px;
  3432. top:44px;
  3433. width:100px;
  3434. height:38px;
  3435. display:flex;
  3436. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3437. font-weight:400;
  3438. font-style:normal;
  3439. font-size:12px;
  3440. color:#333333;
  3441. }
  3442. #u31869 .text {
  3443. position:absolute;
  3444. align-self:center;
  3445. padding:2px 2px 2px 0px;
  3446. box-sizing:border-box;
  3447. width:100%;
  3448. }
  3449. #u31869_text {
  3450. border-width:0px;
  3451. word-wrap:break-word;
  3452. text-transform:none;
  3453. visibility:hidden;
  3454. }
  3455. #u31870_img {
  3456. border-width:0px;
  3457. position:absolute;
  3458. left:0px;
  3459. top:0px;
  3460. width:110px;
  3461. height:38px;
  3462. }
  3463. #u31870 {
  3464. border-width:0px;
  3465. position:absolute;
  3466. left:661px;
  3467. top:44px;
  3468. width:110px;
  3469. height:38px;
  3470. display:flex;
  3471. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3472. font-weight:400;
  3473. font-style:normal;
  3474. font-size:12px;
  3475. color:#333333;
  3476. }
  3477. #u31870 .text {
  3478. position:absolute;
  3479. align-self:center;
  3480. padding:2px 2px 2px 0px;
  3481. box-sizing:border-box;
  3482. width:100%;
  3483. }
  3484. #u31870_text {
  3485. border-width:0px;
  3486. word-wrap:break-word;
  3487. text-transform:none;
  3488. }
  3489. #u31871_img {
  3490. border-width:0px;
  3491. position:absolute;
  3492. left:0px;
  3493. top:0px;
  3494. width:60px;
  3495. height:38px;
  3496. }
  3497. #u31871 {
  3498. border-width:0px;
  3499. position:absolute;
  3500. left:771px;
  3501. top:44px;
  3502. width:60px;
  3503. height:38px;
  3504. display:flex;
  3505. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3506. font-weight:400;
  3507. font-style:normal;
  3508. font-size:12px;
  3509. color:#333333;
  3510. }
  3511. #u31871 .text {
  3512. position:absolute;
  3513. align-self:center;
  3514. padding:2px 2px 2px 0px;
  3515. box-sizing:border-box;
  3516. width:100%;
  3517. }
  3518. #u31871_text {
  3519. border-width:0px;
  3520. word-wrap:break-word;
  3521. text-transform:none;
  3522. }
  3523. #u31872_img {
  3524. border-width:0px;
  3525. position:absolute;
  3526. left:0px;
  3527. top:0px;
  3528. width:100px;
  3529. height:38px;
  3530. }
  3531. #u31872 {
  3532. border-width:0px;
  3533. position:absolute;
  3534. left:831px;
  3535. top:44px;
  3536. width:100px;
  3537. height:38px;
  3538. display:flex;
  3539. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3540. font-weight:400;
  3541. font-style:normal;
  3542. font-size:12px;
  3543. color:#333333;
  3544. }
  3545. #u31872 .text {
  3546. position:absolute;
  3547. align-self:center;
  3548. padding:2px 2px 2px 0px;
  3549. box-sizing:border-box;
  3550. width:100%;
  3551. }
  3552. #u31872_text {
  3553. border-width:0px;
  3554. word-wrap:break-word;
  3555. text-transform:none;
  3556. visibility:hidden;
  3557. }
  3558. #u31873_img {
  3559. border-width:0px;
  3560. position:absolute;
  3561. left:0px;
  3562. top:0px;
  3563. width:91px;
  3564. height:38px;
  3565. }
  3566. #u31873 {
  3567. border-width:0px;
  3568. position:absolute;
  3569. left:931px;
  3570. top:44px;
  3571. width:91px;
  3572. height:38px;
  3573. display:flex;
  3574. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3575. font-weight:400;
  3576. font-style:normal;
  3577. font-size:12px;
  3578. color:#333333;
  3579. }
  3580. #u31873 .text {
  3581. position:absolute;
  3582. align-self:center;
  3583. padding:2px 2px 2px 0px;
  3584. box-sizing:border-box;
  3585. width:100%;
  3586. }
  3587. #u31873_text {
  3588. border-width:0px;
  3589. word-wrap:break-word;
  3590. text-transform:none;
  3591. visibility:hidden;
  3592. }
  3593. #u31874_img {
  3594. border-width:0px;
  3595. position:absolute;
  3596. left:0px;
  3597. top:0px;
  3598. width:183px;
  3599. height:38px;
  3600. }
  3601. #u31874 {
  3602. border-width:0px;
  3603. position:absolute;
  3604. left:1022px;
  3605. top:44px;
  3606. width:183px;
  3607. height:38px;
  3608. display:flex;
  3609. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3610. font-weight:400;
  3611. font-style:normal;
  3612. font-size:12px;
  3613. color:#0089FE;
  3614. }
  3615. #u31874 .text {
  3616. position:absolute;
  3617. align-self:center;
  3618. padding:2px 2px 2px 0px;
  3619. box-sizing:border-box;
  3620. width:100%;
  3621. }
  3622. #u31874_text {
  3623. border-width:0px;
  3624. word-wrap:break-word;
  3625. text-transform:none;
  3626. }
  3627. #u31875_img {
  3628. border-width:0px;
  3629. position:absolute;
  3630. left:0px;
  3631. top:0px;
  3632. width:60px;
  3633. height:38px;
  3634. }
  3635. #u31875 {
  3636. border-width:0px;
  3637. position:absolute;
  3638. left:0px;
  3639. top:82px;
  3640. width:60px;
  3641. height:38px;
  3642. display:flex;
  3643. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3644. font-weight:400;
  3645. font-style:normal;
  3646. font-size:12px;
  3647. color:#333333;
  3648. }
  3649. #u31875 .text {
  3650. position:absolute;
  3651. align-self:center;
  3652. padding:2px 2px 2px 0px;
  3653. box-sizing:border-box;
  3654. width:100%;
  3655. }
  3656. #u31875_text {
  3657. border-width:0px;
  3658. word-wrap:break-word;
  3659. text-transform:none;
  3660. visibility:hidden;
  3661. }
  3662. #u31876_img {
  3663. border-width:0px;
  3664. position:absolute;
  3665. left:0px;
  3666. top:0px;
  3667. width:73px;
  3668. height:38px;
  3669. }
  3670. #u31876 {
  3671. border-width:0px;
  3672. position:absolute;
  3673. left:60px;
  3674. top:82px;
  3675. width:73px;
  3676. height:38px;
  3677. display:flex;
  3678. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3679. font-weight:400;
  3680. font-style:normal;
  3681. font-size:12px;
  3682. color:#333333;
  3683. }
  3684. #u31876 .text {
  3685. position:absolute;
  3686. align-self:center;
  3687. padding:2px 2px 2px 0px;
  3688. box-sizing:border-box;
  3689. width:100%;
  3690. }
  3691. #u31876_text {
  3692. border-width:0px;
  3693. word-wrap:break-word;
  3694. text-transform:none;
  3695. visibility:hidden;
  3696. }
  3697. #u31877_img {
  3698. border-width:0px;
  3699. position:absolute;
  3700. left:0px;
  3701. top:0px;
  3702. width:100px;
  3703. height:38px;
  3704. }
  3705. #u31877 {
  3706. border-width:0px;
  3707. position:absolute;
  3708. left:133px;
  3709. top:82px;
  3710. width:100px;
  3711. height:38px;
  3712. display:flex;
  3713. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3714. font-weight:400;
  3715. font-style:normal;
  3716. font-size:12px;
  3717. color:#333333;
  3718. }
  3719. #u31877 .text {
  3720. position:absolute;
  3721. align-self:center;
  3722. padding:2px 2px 2px 0px;
  3723. box-sizing:border-box;
  3724. width:100%;
  3725. }
  3726. #u31877_text {
  3727. border-width:0px;
  3728. word-wrap:break-word;
  3729. text-transform:none;
  3730. visibility:hidden;
  3731. }
  3732. #u31878_img {
  3733. border-width:0px;
  3734. position:absolute;
  3735. left:0px;
  3736. top:0px;
  3737. width:100px;
  3738. height:38px;
  3739. }
  3740. #u31878 {
  3741. border-width:0px;
  3742. position:absolute;
  3743. left:233px;
  3744. top:82px;
  3745. width:100px;
  3746. height:38px;
  3747. display:flex;
  3748. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3749. font-weight:400;
  3750. font-style:normal;
  3751. font-size:12px;
  3752. color:#333333;
  3753. }
  3754. #u31878 .text {
  3755. position:absolute;
  3756. align-self:center;
  3757. padding:2px 2px 2px 0px;
  3758. box-sizing:border-box;
  3759. width:100%;
  3760. }
  3761. #u31878_text {
  3762. border-width:0px;
  3763. word-wrap:break-word;
  3764. text-transform:none;
  3765. visibility:hidden;
  3766. }
  3767. #u31879_img {
  3768. border-width:0px;
  3769. position:absolute;
  3770. left:0px;
  3771. top:0px;
  3772. width:100px;
  3773. height:38px;
  3774. }
  3775. #u31879 {
  3776. border-width:0px;
  3777. position:absolute;
  3778. left:333px;
  3779. top:82px;
  3780. width:100px;
  3781. height:38px;
  3782. display:flex;
  3783. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3784. font-weight:400;
  3785. font-style:normal;
  3786. font-size:12px;
  3787. color:#333333;
  3788. }
  3789. #u31879 .text {
  3790. position:absolute;
  3791. align-self:center;
  3792. padding:2px 2px 2px 0px;
  3793. box-sizing:border-box;
  3794. width:100%;
  3795. }
  3796. #u31879_text {
  3797. border-width:0px;
  3798. word-wrap:break-word;
  3799. text-transform:none;
  3800. }
  3801. #u31880_img {
  3802. border-width:0px;
  3803. position:absolute;
  3804. left:0px;
  3805. top:0px;
  3806. width:128px;
  3807. height:38px;
  3808. }
  3809. #u31880 {
  3810. border-width:0px;
  3811. position:absolute;
  3812. left:433px;
  3813. top:82px;
  3814. width:128px;
  3815. height:38px;
  3816. display:flex;
  3817. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3818. font-weight:400;
  3819. font-style:normal;
  3820. font-size:12px;
  3821. color:#333333;
  3822. }
  3823. #u31880 .text {
  3824. position:absolute;
  3825. align-self:center;
  3826. padding:2px 2px 2px 0px;
  3827. box-sizing:border-box;
  3828. width:100%;
  3829. }
  3830. #u31880_text {
  3831. border-width:0px;
  3832. word-wrap:break-word;
  3833. text-transform:none;
  3834. visibility:hidden;
  3835. }
  3836. #u31881_img {
  3837. border-width:0px;
  3838. position:absolute;
  3839. left:0px;
  3840. top:0px;
  3841. width:100px;
  3842. height:38px;
  3843. }
  3844. #u31881 {
  3845. border-width:0px;
  3846. position:absolute;
  3847. left:561px;
  3848. top:82px;
  3849. width:100px;
  3850. height:38px;
  3851. display:flex;
  3852. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3853. font-weight:400;
  3854. font-style:normal;
  3855. font-size:12px;
  3856. color:#333333;
  3857. }
  3858. #u31881 .text {
  3859. position:absolute;
  3860. align-self:center;
  3861. padding:2px 2px 2px 0px;
  3862. box-sizing:border-box;
  3863. width:100%;
  3864. }
  3865. #u31881_text {
  3866. border-width:0px;
  3867. word-wrap:break-word;
  3868. text-transform:none;
  3869. visibility:hidden;
  3870. }
  3871. #u31882_img {
  3872. border-width:0px;
  3873. position:absolute;
  3874. left:0px;
  3875. top:0px;
  3876. width:110px;
  3877. height:38px;
  3878. }
  3879. #u31882 {
  3880. border-width:0px;
  3881. position:absolute;
  3882. left:661px;
  3883. top:82px;
  3884. width:110px;
  3885. height:38px;
  3886. display:flex;
  3887. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3888. font-weight:400;
  3889. font-style:normal;
  3890. font-size:12px;
  3891. color:#333333;
  3892. }
  3893. #u31882 .text {
  3894. position:absolute;
  3895. align-self:center;
  3896. padding:2px 2px 2px 0px;
  3897. box-sizing:border-box;
  3898. width:100%;
  3899. }
  3900. #u31882_text {
  3901. border-width:0px;
  3902. word-wrap:break-word;
  3903. text-transform:none;
  3904. }
  3905. #u31883_img {
  3906. border-width:0px;
  3907. position:absolute;
  3908. left:0px;
  3909. top:0px;
  3910. width:60px;
  3911. height:38px;
  3912. }
  3913. #u31883 {
  3914. border-width:0px;
  3915. position:absolute;
  3916. left:771px;
  3917. top:82px;
  3918. width:60px;
  3919. height:38px;
  3920. display:flex;
  3921. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3922. font-weight:400;
  3923. font-style:normal;
  3924. font-size:12px;
  3925. color:#333333;
  3926. }
  3927. #u31883 .text {
  3928. position:absolute;
  3929. align-self:center;
  3930. padding:2px 2px 2px 0px;
  3931. box-sizing:border-box;
  3932. width:100%;
  3933. }
  3934. #u31883_text {
  3935. border-width:0px;
  3936. word-wrap:break-word;
  3937. text-transform:none;
  3938. }
  3939. #u31884_img {
  3940. border-width:0px;
  3941. position:absolute;
  3942. left:0px;
  3943. top:0px;
  3944. width:100px;
  3945. height:38px;
  3946. }
  3947. #u31884 {
  3948. border-width:0px;
  3949. position:absolute;
  3950. left:831px;
  3951. top:82px;
  3952. width:100px;
  3953. height:38px;
  3954. display:flex;
  3955. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3956. font-weight:400;
  3957. font-style:normal;
  3958. font-size:12px;
  3959. color:#333333;
  3960. }
  3961. #u31884 .text {
  3962. position:absolute;
  3963. align-self:center;
  3964. padding:2px 2px 2px 0px;
  3965. box-sizing:border-box;
  3966. width:100%;
  3967. }
  3968. #u31884_text {
  3969. border-width:0px;
  3970. word-wrap:break-word;
  3971. text-transform:none;
  3972. visibility:hidden;
  3973. }
  3974. #u31885_img {
  3975. border-width:0px;
  3976. position:absolute;
  3977. left:0px;
  3978. top:0px;
  3979. width:91px;
  3980. height:38px;
  3981. }
  3982. #u31885 {
  3983. border-width:0px;
  3984. position:absolute;
  3985. left:931px;
  3986. top:82px;
  3987. width:91px;
  3988. height:38px;
  3989. display:flex;
  3990. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3991. font-weight:400;
  3992. font-style:normal;
  3993. font-size:12px;
  3994. color:#333333;
  3995. }
  3996. #u31885 .text {
  3997. position:absolute;
  3998. align-self:center;
  3999. padding:2px 2px 2px 0px;
  4000. box-sizing:border-box;
  4001. width:100%;
  4002. }
  4003. #u31885_text {
  4004. border-width:0px;
  4005. word-wrap:break-word;
  4006. text-transform:none;
  4007. visibility:hidden;
  4008. }
  4009. #u31886_img {
  4010. border-width:0px;
  4011. position:absolute;
  4012. left:0px;
  4013. top:0px;
  4014. width:183px;
  4015. height:38px;
  4016. }
  4017. #u31886 {
  4018. border-width:0px;
  4019. position:absolute;
  4020. left:1022px;
  4021. top:82px;
  4022. width:183px;
  4023. height:38px;
  4024. display:flex;
  4025. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4026. font-weight:400;
  4027. font-style:normal;
  4028. font-size:12px;
  4029. color:#0089FE;
  4030. }
  4031. #u31886 .text {
  4032. position:absolute;
  4033. align-self:center;
  4034. padding:2px 2px 2px 0px;
  4035. box-sizing:border-box;
  4036. width:100%;
  4037. }
  4038. #u31886_text {
  4039. border-width:0px;
  4040. word-wrap:break-word;
  4041. text-transform:none;
  4042. }
  4043. #u31887_img {
  4044. border-width:0px;
  4045. position:absolute;
  4046. left:0px;
  4047. top:0px;
  4048. width:60px;
  4049. height:38px;
  4050. }
  4051. #u31887 {
  4052. border-width:0px;
  4053. position:absolute;
  4054. left:0px;
  4055. top:120px;
  4056. width:60px;
  4057. height:38px;
  4058. display:flex;
  4059. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4060. font-weight:400;
  4061. font-style:normal;
  4062. font-size:12px;
  4063. color:#333333;
  4064. }
  4065. #u31887 .text {
  4066. position:absolute;
  4067. align-self:center;
  4068. padding:2px 2px 2px 0px;
  4069. box-sizing:border-box;
  4070. width:100%;
  4071. }
  4072. #u31887_text {
  4073. border-width:0px;
  4074. word-wrap:break-word;
  4075. text-transform:none;
  4076. visibility:hidden;
  4077. }
  4078. #u31888_img {
  4079. border-width:0px;
  4080. position:absolute;
  4081. left:0px;
  4082. top:0px;
  4083. width:73px;
  4084. height:38px;
  4085. }
  4086. #u31888 {
  4087. border-width:0px;
  4088. position:absolute;
  4089. left:60px;
  4090. top:120px;
  4091. width:73px;
  4092. height:38px;
  4093. display:flex;
  4094. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4095. font-weight:400;
  4096. font-style:normal;
  4097. font-size:12px;
  4098. color:#333333;
  4099. }
  4100. #u31888 .text {
  4101. position:absolute;
  4102. align-self:center;
  4103. padding:2px 2px 2px 0px;
  4104. box-sizing:border-box;
  4105. width:100%;
  4106. }
  4107. #u31888_text {
  4108. border-width:0px;
  4109. word-wrap:break-word;
  4110. text-transform:none;
  4111. visibility:hidden;
  4112. }
  4113. #u31889_img {
  4114. border-width:0px;
  4115. position:absolute;
  4116. left:0px;
  4117. top:0px;
  4118. width:100px;
  4119. height:38px;
  4120. }
  4121. #u31889 {
  4122. border-width:0px;
  4123. position:absolute;
  4124. left:133px;
  4125. top:120px;
  4126. width:100px;
  4127. height:38px;
  4128. display:flex;
  4129. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4130. font-weight:400;
  4131. font-style:normal;
  4132. font-size:12px;
  4133. color:#333333;
  4134. }
  4135. #u31889 .text {
  4136. position:absolute;
  4137. align-self:center;
  4138. padding:2px 2px 2px 0px;
  4139. box-sizing:border-box;
  4140. width:100%;
  4141. }
  4142. #u31889_text {
  4143. border-width:0px;
  4144. word-wrap:break-word;
  4145. text-transform:none;
  4146. visibility:hidden;
  4147. }
  4148. #u31890_img {
  4149. border-width:0px;
  4150. position:absolute;
  4151. left:0px;
  4152. top:0px;
  4153. width:100px;
  4154. height:38px;
  4155. }
  4156. #u31890 {
  4157. border-width:0px;
  4158. position:absolute;
  4159. left:233px;
  4160. top:120px;
  4161. width:100px;
  4162. height:38px;
  4163. display:flex;
  4164. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4165. font-weight:400;
  4166. font-style:normal;
  4167. font-size:12px;
  4168. color:#333333;
  4169. }
  4170. #u31890 .text {
  4171. position:absolute;
  4172. align-self:center;
  4173. padding:2px 2px 2px 0px;
  4174. box-sizing:border-box;
  4175. width:100%;
  4176. }
  4177. #u31890_text {
  4178. border-width:0px;
  4179. word-wrap:break-word;
  4180. text-transform:none;
  4181. visibility:hidden;
  4182. }
  4183. #u31891_img {
  4184. border-width:0px;
  4185. position:absolute;
  4186. left:0px;
  4187. top:0px;
  4188. width:100px;
  4189. height:38px;
  4190. }
  4191. #u31891 {
  4192. border-width:0px;
  4193. position:absolute;
  4194. left:333px;
  4195. top:120px;
  4196. width:100px;
  4197. height:38px;
  4198. display:flex;
  4199. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4200. font-weight:400;
  4201. font-style:normal;
  4202. font-size:12px;
  4203. color:#333333;
  4204. }
  4205. #u31891 .text {
  4206. position:absolute;
  4207. align-self:center;
  4208. padding:2px 2px 2px 0px;
  4209. box-sizing:border-box;
  4210. width:100%;
  4211. }
  4212. #u31891_text {
  4213. border-width:0px;
  4214. word-wrap:break-word;
  4215. text-transform:none;
  4216. }
  4217. #u31892_img {
  4218. border-width:0px;
  4219. position:absolute;
  4220. left:0px;
  4221. top:0px;
  4222. width:128px;
  4223. height:38px;
  4224. }
  4225. #u31892 {
  4226. border-width:0px;
  4227. position:absolute;
  4228. left:433px;
  4229. top:120px;
  4230. width:128px;
  4231. height:38px;
  4232. display:flex;
  4233. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4234. font-weight:400;
  4235. font-style:normal;
  4236. font-size:12px;
  4237. color:#333333;
  4238. }
  4239. #u31892 .text {
  4240. position:absolute;
  4241. align-self:center;
  4242. padding:2px 2px 2px 0px;
  4243. box-sizing:border-box;
  4244. width:100%;
  4245. }
  4246. #u31892_text {
  4247. border-width:0px;
  4248. word-wrap:break-word;
  4249. text-transform:none;
  4250. visibility:hidden;
  4251. }
  4252. #u31893_img {
  4253. border-width:0px;
  4254. position:absolute;
  4255. left:0px;
  4256. top:0px;
  4257. width:100px;
  4258. height:38px;
  4259. }
  4260. #u31893 {
  4261. border-width:0px;
  4262. position:absolute;
  4263. left:561px;
  4264. top:120px;
  4265. width:100px;
  4266. height:38px;
  4267. display:flex;
  4268. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4269. font-weight:400;
  4270. font-style:normal;
  4271. font-size:12px;
  4272. color:#333333;
  4273. }
  4274. #u31893 .text {
  4275. position:absolute;
  4276. align-self:center;
  4277. padding:2px 2px 2px 0px;
  4278. box-sizing:border-box;
  4279. width:100%;
  4280. }
  4281. #u31893_text {
  4282. border-width:0px;
  4283. word-wrap:break-word;
  4284. text-transform:none;
  4285. visibility:hidden;
  4286. }
  4287. #u31894_img {
  4288. border-width:0px;
  4289. position:absolute;
  4290. left:0px;
  4291. top:0px;
  4292. width:110px;
  4293. height:38px;
  4294. }
  4295. #u31894 {
  4296. border-width:0px;
  4297. position:absolute;
  4298. left:661px;
  4299. top:120px;
  4300. width:110px;
  4301. height:38px;
  4302. display:flex;
  4303. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4304. font-weight:400;
  4305. font-style:normal;
  4306. font-size:12px;
  4307. color:#333333;
  4308. }
  4309. #u31894 .text {
  4310. position:absolute;
  4311. align-self:center;
  4312. padding:2px 2px 2px 0px;
  4313. box-sizing:border-box;
  4314. width:100%;
  4315. }
  4316. #u31894_text {
  4317. border-width:0px;
  4318. word-wrap:break-word;
  4319. text-transform:none;
  4320. visibility:hidden;
  4321. }
  4322. #u31895_img {
  4323. border-width:0px;
  4324. position:absolute;
  4325. left:0px;
  4326. top:0px;
  4327. width:60px;
  4328. height:38px;
  4329. }
  4330. #u31895 {
  4331. border-width:0px;
  4332. position:absolute;
  4333. left:771px;
  4334. top:120px;
  4335. width:60px;
  4336. height:38px;
  4337. display:flex;
  4338. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4339. font-weight:400;
  4340. font-style:normal;
  4341. font-size:12px;
  4342. color:#333333;
  4343. }
  4344. #u31895 .text {
  4345. position:absolute;
  4346. align-self:center;
  4347. padding:2px 2px 2px 0px;
  4348. box-sizing:border-box;
  4349. width:100%;
  4350. }
  4351. #u31895_text {
  4352. border-width:0px;
  4353. word-wrap:break-word;
  4354. text-transform:none;
  4355. }
  4356. #u31896_img {
  4357. border-width:0px;
  4358. position:absolute;
  4359. left:0px;
  4360. top:0px;
  4361. width:100px;
  4362. height:38px;
  4363. }
  4364. #u31896 {
  4365. border-width:0px;
  4366. position:absolute;
  4367. left:831px;
  4368. top:120px;
  4369. width:100px;
  4370. height:38px;
  4371. display:flex;
  4372. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4373. font-weight:400;
  4374. font-style:normal;
  4375. font-size:12px;
  4376. color:#333333;
  4377. }
  4378. #u31896 .text {
  4379. position:absolute;
  4380. align-self:center;
  4381. padding:2px 2px 2px 0px;
  4382. box-sizing:border-box;
  4383. width:100%;
  4384. }
  4385. #u31896_text {
  4386. border-width:0px;
  4387. word-wrap:break-word;
  4388. text-transform:none;
  4389. visibility:hidden;
  4390. }
  4391. #u31897_img {
  4392. border-width:0px;
  4393. position:absolute;
  4394. left:0px;
  4395. top:0px;
  4396. width:91px;
  4397. height:38px;
  4398. }
  4399. #u31897 {
  4400. border-width:0px;
  4401. position:absolute;
  4402. left:931px;
  4403. top:120px;
  4404. width:91px;
  4405. height:38px;
  4406. display:flex;
  4407. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4408. font-weight:400;
  4409. font-style:normal;
  4410. font-size:12px;
  4411. color:#333333;
  4412. }
  4413. #u31897 .text {
  4414. position:absolute;
  4415. align-self:center;
  4416. padding:2px 2px 2px 0px;
  4417. box-sizing:border-box;
  4418. width:100%;
  4419. }
  4420. #u31897_text {
  4421. border-width:0px;
  4422. word-wrap:break-word;
  4423. text-transform:none;
  4424. visibility:hidden;
  4425. }
  4426. #u31898_img {
  4427. border-width:0px;
  4428. position:absolute;
  4429. left:0px;
  4430. top:0px;
  4431. width:183px;
  4432. height:38px;
  4433. }
  4434. #u31898 {
  4435. border-width:0px;
  4436. position:absolute;
  4437. left:1022px;
  4438. top:120px;
  4439. width:183px;
  4440. height:38px;
  4441. display:flex;
  4442. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4443. font-weight:400;
  4444. font-style:normal;
  4445. font-size:12px;
  4446. color:#0089FE;
  4447. }
  4448. #u31898 .text {
  4449. position:absolute;
  4450. align-self:center;
  4451. padding:2px 2px 2px 0px;
  4452. box-sizing:border-box;
  4453. width:100%;
  4454. }
  4455. #u31898_text {
  4456. border-width:0px;
  4457. word-wrap:break-word;
  4458. text-transform:none;
  4459. }
  4460. #u31899_img {
  4461. border-width:0px;
  4462. position:absolute;
  4463. left:0px;
  4464. top:0px;
  4465. width:60px;
  4466. height:38px;
  4467. }
  4468. #u31899 {
  4469. border-width:0px;
  4470. position:absolute;
  4471. left:0px;
  4472. top:158px;
  4473. width:60px;
  4474. height:38px;
  4475. display:flex;
  4476. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4477. font-weight:400;
  4478. font-style:normal;
  4479. font-size:12px;
  4480. color:#333333;
  4481. }
  4482. #u31899 .text {
  4483. position:absolute;
  4484. align-self:center;
  4485. padding:2px 2px 2px 0px;
  4486. box-sizing:border-box;
  4487. width:100%;
  4488. }
  4489. #u31899_text {
  4490. border-width:0px;
  4491. word-wrap:break-word;
  4492. text-transform:none;
  4493. visibility:hidden;
  4494. }
  4495. #u31900_img {
  4496. border-width:0px;
  4497. position:absolute;
  4498. left:0px;
  4499. top:0px;
  4500. width:73px;
  4501. height:38px;
  4502. }
  4503. #u31900 {
  4504. border-width:0px;
  4505. position:absolute;
  4506. left:60px;
  4507. top:158px;
  4508. width:73px;
  4509. height:38px;
  4510. display:flex;
  4511. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4512. font-weight:400;
  4513. font-style:normal;
  4514. font-size:12px;
  4515. color:#333333;
  4516. }
  4517. #u31900 .text {
  4518. position:absolute;
  4519. align-self:center;
  4520. padding:2px 2px 2px 0px;
  4521. box-sizing:border-box;
  4522. width:100%;
  4523. }
  4524. #u31900_text {
  4525. border-width:0px;
  4526. word-wrap:break-word;
  4527. text-transform:none;
  4528. visibility:hidden;
  4529. }
  4530. #u31901_img {
  4531. border-width:0px;
  4532. position:absolute;
  4533. left:0px;
  4534. top:0px;
  4535. width:100px;
  4536. height:38px;
  4537. }
  4538. #u31901 {
  4539. border-width:0px;
  4540. position:absolute;
  4541. left:133px;
  4542. top:158px;
  4543. width:100px;
  4544. height:38px;
  4545. display:flex;
  4546. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4547. font-weight:400;
  4548. font-style:normal;
  4549. font-size:12px;
  4550. color:#333333;
  4551. }
  4552. #u31901 .text {
  4553. position:absolute;
  4554. align-self:center;
  4555. padding:2px 2px 2px 0px;
  4556. box-sizing:border-box;
  4557. width:100%;
  4558. }
  4559. #u31901_text {
  4560. border-width:0px;
  4561. word-wrap:break-word;
  4562. text-transform:none;
  4563. visibility:hidden;
  4564. }
  4565. #u31902_img {
  4566. border-width:0px;
  4567. position:absolute;
  4568. left:0px;
  4569. top:0px;
  4570. width:100px;
  4571. height:38px;
  4572. }
  4573. #u31902 {
  4574. border-width:0px;
  4575. position:absolute;
  4576. left:233px;
  4577. top:158px;
  4578. width:100px;
  4579. height:38px;
  4580. display:flex;
  4581. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4582. font-weight:400;
  4583. font-style:normal;
  4584. font-size:12px;
  4585. color:#333333;
  4586. }
  4587. #u31902 .text {
  4588. position:absolute;
  4589. align-self:center;
  4590. padding:2px 2px 2px 0px;
  4591. box-sizing:border-box;
  4592. width:100%;
  4593. }
  4594. #u31902_text {
  4595. border-width:0px;
  4596. word-wrap:break-word;
  4597. text-transform:none;
  4598. visibility:hidden;
  4599. }
  4600. #u31903_img {
  4601. border-width:0px;
  4602. position:absolute;
  4603. left:0px;
  4604. top:0px;
  4605. width:100px;
  4606. height:38px;
  4607. }
  4608. #u31903 {
  4609. border-width:0px;
  4610. position:absolute;
  4611. left:333px;
  4612. top:158px;
  4613. width:100px;
  4614. height:38px;
  4615. display:flex;
  4616. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4617. font-weight:400;
  4618. font-style:normal;
  4619. font-size:12px;
  4620. color:#333333;
  4621. }
  4622. #u31903 .text {
  4623. position:absolute;
  4624. align-self:center;
  4625. padding:2px 2px 2px 0px;
  4626. box-sizing:border-box;
  4627. width:100%;
  4628. }
  4629. #u31903_text {
  4630. border-width:0px;
  4631. word-wrap:break-word;
  4632. text-transform:none;
  4633. }
  4634. #u31904_img {
  4635. border-width:0px;
  4636. position:absolute;
  4637. left:0px;
  4638. top:0px;
  4639. width:128px;
  4640. height:38px;
  4641. }
  4642. #u31904 {
  4643. border-width:0px;
  4644. position:absolute;
  4645. left:433px;
  4646. top:158px;
  4647. width:128px;
  4648. height:38px;
  4649. display:flex;
  4650. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4651. font-weight:400;
  4652. font-style:normal;
  4653. font-size:12px;
  4654. color:#333333;
  4655. }
  4656. #u31904 .text {
  4657. position:absolute;
  4658. align-self:center;
  4659. padding:2px 2px 2px 0px;
  4660. box-sizing:border-box;
  4661. width:100%;
  4662. }
  4663. #u31904_text {
  4664. border-width:0px;
  4665. word-wrap:break-word;
  4666. text-transform:none;
  4667. }
  4668. #u31905_img {
  4669. border-width:0px;
  4670. position:absolute;
  4671. left:0px;
  4672. top:0px;
  4673. width:100px;
  4674. height:38px;
  4675. }
  4676. #u31905 {
  4677. border-width:0px;
  4678. position:absolute;
  4679. left:561px;
  4680. top:158px;
  4681. width:100px;
  4682. height:38px;
  4683. display:flex;
  4684. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4685. font-weight:400;
  4686. font-style:normal;
  4687. font-size:12px;
  4688. color:#333333;
  4689. }
  4690. #u31905 .text {
  4691. position:absolute;
  4692. align-self:center;
  4693. padding:2px 2px 2px 0px;
  4694. box-sizing:border-box;
  4695. width:100%;
  4696. }
  4697. #u31905_text {
  4698. border-width:0px;
  4699. word-wrap:break-word;
  4700. text-transform:none;
  4701. visibility:hidden;
  4702. }
  4703. #u31906_img {
  4704. border-width:0px;
  4705. position:absolute;
  4706. left:0px;
  4707. top:0px;
  4708. width:110px;
  4709. height:38px;
  4710. }
  4711. #u31906 {
  4712. border-width:0px;
  4713. position:absolute;
  4714. left:661px;
  4715. top:158px;
  4716. width:110px;
  4717. height:38px;
  4718. display:flex;
  4719. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4720. font-weight:400;
  4721. font-style:normal;
  4722. font-size:12px;
  4723. color:#333333;
  4724. }
  4725. #u31906 .text {
  4726. position:absolute;
  4727. align-self:center;
  4728. padding:2px 2px 2px 0px;
  4729. box-sizing:border-box;
  4730. width:100%;
  4731. }
  4732. #u31906_text {
  4733. border-width:0px;
  4734. word-wrap:break-word;
  4735. text-transform:none;
  4736. visibility:hidden;
  4737. }
  4738. #u31907_img {
  4739. border-width:0px;
  4740. position:absolute;
  4741. left:0px;
  4742. top:0px;
  4743. width:60px;
  4744. height:38px;
  4745. }
  4746. #u31907 {
  4747. border-width:0px;
  4748. position:absolute;
  4749. left:771px;
  4750. top:158px;
  4751. width:60px;
  4752. height:38px;
  4753. display:flex;
  4754. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4755. font-weight:400;
  4756. font-style:normal;
  4757. font-size:12px;
  4758. color:#333333;
  4759. }
  4760. #u31907 .text {
  4761. position:absolute;
  4762. align-self:center;
  4763. padding:2px 2px 2px 0px;
  4764. box-sizing:border-box;
  4765. width:100%;
  4766. }
  4767. #u31907_text {
  4768. border-width:0px;
  4769. word-wrap:break-word;
  4770. text-transform:none;
  4771. }
  4772. #u31908_img {
  4773. border-width:0px;
  4774. position:absolute;
  4775. left:0px;
  4776. top:0px;
  4777. width:100px;
  4778. height:38px;
  4779. }
  4780. #u31908 {
  4781. border-width:0px;
  4782. position:absolute;
  4783. left:831px;
  4784. top:158px;
  4785. width:100px;
  4786. height:38px;
  4787. display:flex;
  4788. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4789. font-weight:400;
  4790. font-style:normal;
  4791. font-size:12px;
  4792. color:#333333;
  4793. }
  4794. #u31908 .text {
  4795. position:absolute;
  4796. align-self:center;
  4797. padding:2px 2px 2px 0px;
  4798. box-sizing:border-box;
  4799. width:100%;
  4800. }
  4801. #u31908_text {
  4802. border-width:0px;
  4803. word-wrap:break-word;
  4804. text-transform:none;
  4805. visibility:hidden;
  4806. }
  4807. #u31909_img {
  4808. border-width:0px;
  4809. position:absolute;
  4810. left:0px;
  4811. top:0px;
  4812. width:91px;
  4813. height:38px;
  4814. }
  4815. #u31909 {
  4816. border-width:0px;
  4817. position:absolute;
  4818. left:931px;
  4819. top:158px;
  4820. width:91px;
  4821. height:38px;
  4822. display:flex;
  4823. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4824. font-weight:400;
  4825. font-style:normal;
  4826. font-size:12px;
  4827. color:#333333;
  4828. }
  4829. #u31909 .text {
  4830. position:absolute;
  4831. align-self:center;
  4832. padding:2px 2px 2px 0px;
  4833. box-sizing:border-box;
  4834. width:100%;
  4835. }
  4836. #u31909_text {
  4837. border-width:0px;
  4838. word-wrap:break-word;
  4839. text-transform:none;
  4840. visibility:hidden;
  4841. }
  4842. #u31910_img {
  4843. border-width:0px;
  4844. position:absolute;
  4845. left:0px;
  4846. top:0px;
  4847. width:183px;
  4848. height:38px;
  4849. }
  4850. #u31910 {
  4851. border-width:0px;
  4852. position:absolute;
  4853. left:1022px;
  4854. top:158px;
  4855. width:183px;
  4856. height:38px;
  4857. display:flex;
  4858. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4859. font-weight:400;
  4860. font-style:normal;
  4861. font-size:12px;
  4862. color:#0089FE;
  4863. }
  4864. #u31910 .text {
  4865. position:absolute;
  4866. align-self:center;
  4867. padding:2px 2px 2px 0px;
  4868. box-sizing:border-box;
  4869. width:100%;
  4870. }
  4871. #u31910_text {
  4872. border-width:0px;
  4873. word-wrap:break-word;
  4874. text-transform:none;
  4875. }
  4876. #u31911_img {
  4877. border-width:0px;
  4878. position:absolute;
  4879. left:0px;
  4880. top:0px;
  4881. width:60px;
  4882. height:35px;
  4883. }
  4884. #u31911 {
  4885. border-width:0px;
  4886. position:absolute;
  4887. left:0px;
  4888. top:196px;
  4889. width:60px;
  4890. height:35px;
  4891. display:flex;
  4892. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4893. font-weight:400;
  4894. font-style:normal;
  4895. font-size:12px;
  4896. color:#333333;
  4897. }
  4898. #u31911 .text {
  4899. position:absolute;
  4900. align-self:center;
  4901. padding:2px 2px 2px 0px;
  4902. box-sizing:border-box;
  4903. width:100%;
  4904. }
  4905. #u31911_text {
  4906. border-width:0px;
  4907. word-wrap:break-word;
  4908. text-transform:none;
  4909. visibility:hidden;
  4910. }
  4911. #u31912_img {
  4912. border-width:0px;
  4913. position:absolute;
  4914. left:0px;
  4915. top:0px;
  4916. width:73px;
  4917. height:35px;
  4918. }
  4919. #u31912 {
  4920. border-width:0px;
  4921. position:absolute;
  4922. left:60px;
  4923. top:196px;
  4924. width:73px;
  4925. height:35px;
  4926. display:flex;
  4927. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4928. font-weight:400;
  4929. font-style:normal;
  4930. font-size:12px;
  4931. color:#333333;
  4932. }
  4933. #u31912 .text {
  4934. position:absolute;
  4935. align-self:center;
  4936. padding:2px 2px 2px 0px;
  4937. box-sizing:border-box;
  4938. width:100%;
  4939. }
  4940. #u31912_text {
  4941. border-width:0px;
  4942. word-wrap:break-word;
  4943. text-transform:none;
  4944. visibility:hidden;
  4945. }
  4946. #u31913_img {
  4947. border-width:0px;
  4948. position:absolute;
  4949. left:0px;
  4950. top:0px;
  4951. width:100px;
  4952. height:35px;
  4953. }
  4954. #u31913 {
  4955. border-width:0px;
  4956. position:absolute;
  4957. left:133px;
  4958. top:196px;
  4959. width:100px;
  4960. height:35px;
  4961. display:flex;
  4962. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4963. font-weight:400;
  4964. font-style:normal;
  4965. font-size:12px;
  4966. color:#333333;
  4967. }
  4968. #u31913 .text {
  4969. position:absolute;
  4970. align-self:center;
  4971. padding:2px 2px 2px 0px;
  4972. box-sizing:border-box;
  4973. width:100%;
  4974. }
  4975. #u31913_text {
  4976. border-width:0px;
  4977. word-wrap:break-word;
  4978. text-transform:none;
  4979. visibility:hidden;
  4980. }
  4981. #u31914_img {
  4982. border-width:0px;
  4983. position:absolute;
  4984. left:0px;
  4985. top:0px;
  4986. width:100px;
  4987. height:35px;
  4988. }
  4989. #u31914 {
  4990. border-width:0px;
  4991. position:absolute;
  4992. left:233px;
  4993. top:196px;
  4994. width:100px;
  4995. height:35px;
  4996. display:flex;
  4997. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4998. font-weight:400;
  4999. font-style:normal;
  5000. font-size:12px;
  5001. color:#333333;
  5002. }
  5003. #u31914 .text {
  5004. position:absolute;
  5005. align-self:center;
  5006. padding:2px 2px 2px 0px;
  5007. box-sizing:border-box;
  5008. width:100%;
  5009. }
  5010. #u31914_text {
  5011. border-width:0px;
  5012. word-wrap:break-word;
  5013. text-transform:none;
  5014. visibility:hidden;
  5015. }
  5016. #u31915_img {
  5017. border-width:0px;
  5018. position:absolute;
  5019. left:0px;
  5020. top:0px;
  5021. width:100px;
  5022. height:35px;
  5023. }
  5024. #u31915 {
  5025. border-width:0px;
  5026. position:absolute;
  5027. left:333px;
  5028. top:196px;
  5029. width:100px;
  5030. height:35px;
  5031. display:flex;
  5032. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5033. font-weight:400;
  5034. font-style:normal;
  5035. font-size:12px;
  5036. color:#333333;
  5037. }
  5038. #u31915 .text {
  5039. position:absolute;
  5040. align-self:center;
  5041. padding:2px 2px 2px 0px;
  5042. box-sizing:border-box;
  5043. width:100%;
  5044. }
  5045. #u31915_text {
  5046. border-width:0px;
  5047. word-wrap:break-word;
  5048. text-transform:none;
  5049. visibility:hidden;
  5050. }
  5051. #u31916_img {
  5052. border-width:0px;
  5053. position:absolute;
  5054. left:0px;
  5055. top:0px;
  5056. width:128px;
  5057. height:35px;
  5058. }
  5059. #u31916 {
  5060. border-width:0px;
  5061. position:absolute;
  5062. left:433px;
  5063. top:196px;
  5064. width:128px;
  5065. height:35px;
  5066. display:flex;
  5067. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5068. font-weight:400;
  5069. font-style:normal;
  5070. font-size:12px;
  5071. color:#333333;
  5072. }
  5073. #u31916 .text {
  5074. position:absolute;
  5075. align-self:center;
  5076. padding:2px 2px 2px 0px;
  5077. box-sizing:border-box;
  5078. width:100%;
  5079. }
  5080. #u31916_text {
  5081. border-width:0px;
  5082. word-wrap:break-word;
  5083. text-transform:none;
  5084. visibility:hidden;
  5085. }
  5086. #u31917_img {
  5087. border-width:0px;
  5088. position:absolute;
  5089. left:0px;
  5090. top:0px;
  5091. width:100px;
  5092. height:35px;
  5093. }
  5094. #u31917 {
  5095. border-width:0px;
  5096. position:absolute;
  5097. left:561px;
  5098. top:196px;
  5099. width:100px;
  5100. height:35px;
  5101. display:flex;
  5102. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5103. font-weight:400;
  5104. font-style:normal;
  5105. font-size:12px;
  5106. color:#333333;
  5107. }
  5108. #u31917 .text {
  5109. position:absolute;
  5110. align-self:center;
  5111. padding:2px 2px 2px 0px;
  5112. box-sizing:border-box;
  5113. width:100%;
  5114. }
  5115. #u31917_text {
  5116. border-width:0px;
  5117. word-wrap:break-word;
  5118. text-transform:none;
  5119. visibility:hidden;
  5120. }
  5121. #u31918_img {
  5122. border-width:0px;
  5123. position:absolute;
  5124. left:0px;
  5125. top:0px;
  5126. width:110px;
  5127. height:35px;
  5128. }
  5129. #u31918 {
  5130. border-width:0px;
  5131. position:absolute;
  5132. left:661px;
  5133. top:196px;
  5134. width:110px;
  5135. height:35px;
  5136. display:flex;
  5137. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5138. font-weight:400;
  5139. font-style:normal;
  5140. font-size:12px;
  5141. color:#333333;
  5142. }
  5143. #u31918 .text {
  5144. position:absolute;
  5145. align-self:center;
  5146. padding:2px 2px 2px 0px;
  5147. box-sizing:border-box;
  5148. width:100%;
  5149. }
  5150. #u31918_text {
  5151. border-width:0px;
  5152. word-wrap:break-word;
  5153. text-transform:none;
  5154. visibility:hidden;
  5155. }
  5156. #u31919_img {
  5157. border-width:0px;
  5158. position:absolute;
  5159. left:0px;
  5160. top:0px;
  5161. width:60px;
  5162. height:35px;
  5163. }
  5164. #u31919 {
  5165. border-width:0px;
  5166. position:absolute;
  5167. left:771px;
  5168. top:196px;
  5169. width:60px;
  5170. height:35px;
  5171. display:flex;
  5172. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5173. font-weight:400;
  5174. font-style:normal;
  5175. font-size:12px;
  5176. color:#333333;
  5177. }
  5178. #u31919 .text {
  5179. position:absolute;
  5180. align-self:center;
  5181. padding:2px 2px 2px 0px;
  5182. box-sizing:border-box;
  5183. width:100%;
  5184. }
  5185. #u31919_text {
  5186. border-width:0px;
  5187. word-wrap:break-word;
  5188. text-transform:none;
  5189. visibility:hidden;
  5190. }
  5191. #u31920_img {
  5192. border-width:0px;
  5193. position:absolute;
  5194. left:0px;
  5195. top:0px;
  5196. width:100px;
  5197. height:35px;
  5198. }
  5199. #u31920 {
  5200. border-width:0px;
  5201. position:absolute;
  5202. left:831px;
  5203. top:196px;
  5204. width:100px;
  5205. height:35px;
  5206. display:flex;
  5207. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5208. font-weight:400;
  5209. font-style:normal;
  5210. font-size:12px;
  5211. color:#333333;
  5212. }
  5213. #u31920 .text {
  5214. position:absolute;
  5215. align-self:center;
  5216. padding:2px 2px 2px 0px;
  5217. box-sizing:border-box;
  5218. width:100%;
  5219. }
  5220. #u31920_text {
  5221. border-width:0px;
  5222. word-wrap:break-word;
  5223. text-transform:none;
  5224. visibility:hidden;
  5225. }
  5226. #u31921_img {
  5227. border-width:0px;
  5228. position:absolute;
  5229. left:0px;
  5230. top:0px;
  5231. width:91px;
  5232. height:35px;
  5233. }
  5234. #u31921 {
  5235. border-width:0px;
  5236. position:absolute;
  5237. left:931px;
  5238. top:196px;
  5239. width:91px;
  5240. height:35px;
  5241. display:flex;
  5242. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5243. font-weight:400;
  5244. font-style:normal;
  5245. font-size:12px;
  5246. color:#333333;
  5247. }
  5248. #u31921 .text {
  5249. position:absolute;
  5250. align-self:center;
  5251. padding:2px 2px 2px 0px;
  5252. box-sizing:border-box;
  5253. width:100%;
  5254. }
  5255. #u31921_text {
  5256. border-width:0px;
  5257. word-wrap:break-word;
  5258. text-transform:none;
  5259. visibility:hidden;
  5260. }
  5261. #u31922_img {
  5262. border-width:0px;
  5263. position:absolute;
  5264. left:0px;
  5265. top:0px;
  5266. width:183px;
  5267. height:35px;
  5268. }
  5269. #u31922 {
  5270. border-width:0px;
  5271. position:absolute;
  5272. left:1022px;
  5273. top:196px;
  5274. width:183px;
  5275. height:35px;
  5276. display:flex;
  5277. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5278. font-weight:400;
  5279. font-style:normal;
  5280. font-size:12px;
  5281. color:#AAAAAA;
  5282. }
  5283. #u31922 .text {
  5284. position:absolute;
  5285. align-self:center;
  5286. padding:2px 2px 2px 0px;
  5287. box-sizing:border-box;
  5288. width:100%;
  5289. }
  5290. #u31922_text {
  5291. border-width:0px;
  5292. word-wrap:break-word;
  5293. text-transform:none;
  5294. visibility:hidden;
  5295. }
  5296. #u31923_img {
  5297. border-width:0px;
  5298. position:absolute;
  5299. left:0px;
  5300. top:0px;
  5301. width:60px;
  5302. height:35px;
  5303. }
  5304. #u31923 {
  5305. border-width:0px;
  5306. position:absolute;
  5307. left:0px;
  5308. top:231px;
  5309. width:60px;
  5310. height:35px;
  5311. display:flex;
  5312. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5313. font-weight:400;
  5314. font-style:normal;
  5315. font-size:12px;
  5316. color:#333333;
  5317. }
  5318. #u31923 .text {
  5319. position:absolute;
  5320. align-self:center;
  5321. padding:2px 2px 2px 0px;
  5322. box-sizing:border-box;
  5323. width:100%;
  5324. }
  5325. #u31923_text {
  5326. border-width:0px;
  5327. word-wrap:break-word;
  5328. text-transform:none;
  5329. visibility:hidden;
  5330. }
  5331. #u31924_img {
  5332. border-width:0px;
  5333. position:absolute;
  5334. left:0px;
  5335. top:0px;
  5336. width:73px;
  5337. height:35px;
  5338. }
  5339. #u31924 {
  5340. border-width:0px;
  5341. position:absolute;
  5342. left:60px;
  5343. top:231px;
  5344. width:73px;
  5345. height:35px;
  5346. display:flex;
  5347. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5348. font-weight:400;
  5349. font-style:normal;
  5350. font-size:12px;
  5351. color:#333333;
  5352. }
  5353. #u31924 .text {
  5354. position:absolute;
  5355. align-self:center;
  5356. padding:2px 2px 2px 0px;
  5357. box-sizing:border-box;
  5358. width:100%;
  5359. }
  5360. #u31924_text {
  5361. border-width:0px;
  5362. word-wrap:break-word;
  5363. text-transform:none;
  5364. visibility:hidden;
  5365. }
  5366. #u31925_img {
  5367. border-width:0px;
  5368. position:absolute;
  5369. left:0px;
  5370. top:0px;
  5371. width:100px;
  5372. height:35px;
  5373. }
  5374. #u31925 {
  5375. border-width:0px;
  5376. position:absolute;
  5377. left:133px;
  5378. top:231px;
  5379. width:100px;
  5380. height:35px;
  5381. display:flex;
  5382. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5383. font-weight:400;
  5384. font-style:normal;
  5385. font-size:12px;
  5386. color:#333333;
  5387. }
  5388. #u31925 .text {
  5389. position:absolute;
  5390. align-self:center;
  5391. padding:2px 2px 2px 0px;
  5392. box-sizing:border-box;
  5393. width:100%;
  5394. }
  5395. #u31925_text {
  5396. border-width:0px;
  5397. word-wrap:break-word;
  5398. text-transform:none;
  5399. visibility:hidden;
  5400. }
  5401. #u31926_img {
  5402. border-width:0px;
  5403. position:absolute;
  5404. left:0px;
  5405. top:0px;
  5406. width:100px;
  5407. height:35px;
  5408. }
  5409. #u31926 {
  5410. border-width:0px;
  5411. position:absolute;
  5412. left:233px;
  5413. top:231px;
  5414. width:100px;
  5415. height:35px;
  5416. display:flex;
  5417. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5418. font-weight:400;
  5419. font-style:normal;
  5420. font-size:12px;
  5421. color:#333333;
  5422. }
  5423. #u31926 .text {
  5424. position:absolute;
  5425. align-self:center;
  5426. padding:2px 2px 2px 0px;
  5427. box-sizing:border-box;
  5428. width:100%;
  5429. }
  5430. #u31926_text {
  5431. border-width:0px;
  5432. word-wrap:break-word;
  5433. text-transform:none;
  5434. visibility:hidden;
  5435. }
  5436. #u31927_img {
  5437. border-width:0px;
  5438. position:absolute;
  5439. left:0px;
  5440. top:0px;
  5441. width:100px;
  5442. height:35px;
  5443. }
  5444. #u31927 {
  5445. border-width:0px;
  5446. position:absolute;
  5447. left:333px;
  5448. top:231px;
  5449. width:100px;
  5450. height:35px;
  5451. display:flex;
  5452. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5453. font-weight:400;
  5454. font-style:normal;
  5455. font-size:12px;
  5456. color:#333333;
  5457. }
  5458. #u31927 .text {
  5459. position:absolute;
  5460. align-self:center;
  5461. padding:2px 2px 2px 0px;
  5462. box-sizing:border-box;
  5463. width:100%;
  5464. }
  5465. #u31927_text {
  5466. border-width:0px;
  5467. word-wrap:break-word;
  5468. text-transform:none;
  5469. visibility:hidden;
  5470. }
  5471. #u31928_img {
  5472. border-width:0px;
  5473. position:absolute;
  5474. left:0px;
  5475. top:0px;
  5476. width:128px;
  5477. height:35px;
  5478. }
  5479. #u31928 {
  5480. border-width:0px;
  5481. position:absolute;
  5482. left:433px;
  5483. top:231px;
  5484. width:128px;
  5485. height:35px;
  5486. display:flex;
  5487. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5488. font-weight:400;
  5489. font-style:normal;
  5490. font-size:12px;
  5491. color:#333333;
  5492. }
  5493. #u31928 .text {
  5494. position:absolute;
  5495. align-self:center;
  5496. padding:2px 2px 2px 0px;
  5497. box-sizing:border-box;
  5498. width:100%;
  5499. }
  5500. #u31928_text {
  5501. border-width:0px;
  5502. word-wrap:break-word;
  5503. text-transform:none;
  5504. visibility:hidden;
  5505. }
  5506. #u31929_img {
  5507. border-width:0px;
  5508. position:absolute;
  5509. left:0px;
  5510. top:0px;
  5511. width:100px;
  5512. height:35px;
  5513. }
  5514. #u31929 {
  5515. border-width:0px;
  5516. position:absolute;
  5517. left:561px;
  5518. top:231px;
  5519. width:100px;
  5520. height:35px;
  5521. display:flex;
  5522. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5523. font-weight:400;
  5524. font-style:normal;
  5525. font-size:12px;
  5526. color:#333333;
  5527. }
  5528. #u31929 .text {
  5529. position:absolute;
  5530. align-self:center;
  5531. padding:2px 2px 2px 0px;
  5532. box-sizing:border-box;
  5533. width:100%;
  5534. }
  5535. #u31929_text {
  5536. border-width:0px;
  5537. word-wrap:break-word;
  5538. text-transform:none;
  5539. visibility:hidden;
  5540. }
  5541. #u31930_img {
  5542. border-width:0px;
  5543. position:absolute;
  5544. left:0px;
  5545. top:0px;
  5546. width:110px;
  5547. height:35px;
  5548. }
  5549. #u31930 {
  5550. border-width:0px;
  5551. position:absolute;
  5552. left:661px;
  5553. top:231px;
  5554. width:110px;
  5555. height:35px;
  5556. display:flex;
  5557. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5558. font-weight:400;
  5559. font-style:normal;
  5560. font-size:12px;
  5561. color:#333333;
  5562. }
  5563. #u31930 .text {
  5564. position:absolute;
  5565. align-self:center;
  5566. padding:2px 2px 2px 0px;
  5567. box-sizing:border-box;
  5568. width:100%;
  5569. }
  5570. #u31930_text {
  5571. border-width:0px;
  5572. word-wrap:break-word;
  5573. text-transform:none;
  5574. visibility:hidden;
  5575. }
  5576. #u31931_img {
  5577. border-width:0px;
  5578. position:absolute;
  5579. left:0px;
  5580. top:0px;
  5581. width:60px;
  5582. height:35px;
  5583. }
  5584. #u31931 {
  5585. border-width:0px;
  5586. position:absolute;
  5587. left:771px;
  5588. top:231px;
  5589. width:60px;
  5590. height:35px;
  5591. display:flex;
  5592. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5593. font-weight:400;
  5594. font-style:normal;
  5595. font-size:12px;
  5596. color:#333333;
  5597. }
  5598. #u31931 .text {
  5599. position:absolute;
  5600. align-self:center;
  5601. padding:2px 2px 2px 0px;
  5602. box-sizing:border-box;
  5603. width:100%;
  5604. }
  5605. #u31931_text {
  5606. border-width:0px;
  5607. word-wrap:break-word;
  5608. text-transform:none;
  5609. visibility:hidden;
  5610. }
  5611. #u31932_img {
  5612. border-width:0px;
  5613. position:absolute;
  5614. left:0px;
  5615. top:0px;
  5616. width:100px;
  5617. height:35px;
  5618. }
  5619. #u31932 {
  5620. border-width:0px;
  5621. position:absolute;
  5622. left:831px;
  5623. top:231px;
  5624. width:100px;
  5625. height:35px;
  5626. display:flex;
  5627. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5628. font-weight:400;
  5629. font-style:normal;
  5630. font-size:12px;
  5631. color:#333333;
  5632. }
  5633. #u31932 .text {
  5634. position:absolute;
  5635. align-self:center;
  5636. padding:2px 2px 2px 0px;
  5637. box-sizing:border-box;
  5638. width:100%;
  5639. }
  5640. #u31932_text {
  5641. border-width:0px;
  5642. word-wrap:break-word;
  5643. text-transform:none;
  5644. visibility:hidden;
  5645. }
  5646. #u31933_img {
  5647. border-width:0px;
  5648. position:absolute;
  5649. left:0px;
  5650. top:0px;
  5651. width:91px;
  5652. height:35px;
  5653. }
  5654. #u31933 {
  5655. border-width:0px;
  5656. position:absolute;
  5657. left:931px;
  5658. top:231px;
  5659. width:91px;
  5660. height:35px;
  5661. display:flex;
  5662. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5663. font-weight:400;
  5664. font-style:normal;
  5665. font-size:12px;
  5666. color:#333333;
  5667. }
  5668. #u31933 .text {
  5669. position:absolute;
  5670. align-self:center;
  5671. padding:2px 2px 2px 0px;
  5672. box-sizing:border-box;
  5673. width:100%;
  5674. }
  5675. #u31933_text {
  5676. border-width:0px;
  5677. word-wrap:break-word;
  5678. text-transform:none;
  5679. visibility:hidden;
  5680. }
  5681. #u31934_img {
  5682. border-width:0px;
  5683. position:absolute;
  5684. left:0px;
  5685. top:0px;
  5686. width:183px;
  5687. height:35px;
  5688. }
  5689. #u31934 {
  5690. border-width:0px;
  5691. position:absolute;
  5692. left:1022px;
  5693. top:231px;
  5694. width:183px;
  5695. height:35px;
  5696. display:flex;
  5697. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5698. font-weight:400;
  5699. font-style:normal;
  5700. font-size:12px;
  5701. color:#333333;
  5702. }
  5703. #u31934 .text {
  5704. position:absolute;
  5705. align-self:center;
  5706. padding:2px 2px 2px 0px;
  5707. box-sizing:border-box;
  5708. width:100%;
  5709. }
  5710. #u31934_text {
  5711. border-width:0px;
  5712. word-wrap:break-word;
  5713. text-transform:none;
  5714. visibility:hidden;
  5715. }
  5716. #u31935_img {
  5717. border-width:0px;
  5718. position:absolute;
  5719. left:0px;
  5720. top:0px;
  5721. width:60px;
  5722. height:32px;
  5723. }
  5724. #u31935 {
  5725. border-width:0px;
  5726. position:absolute;
  5727. left:0px;
  5728. top:266px;
  5729. width:60px;
  5730. height:32px;
  5731. display:flex;
  5732. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5733. font-weight:400;
  5734. font-style:normal;
  5735. font-size:12px;
  5736. color:#333333;
  5737. }
  5738. #u31935 .text {
  5739. position:absolute;
  5740. align-self:center;
  5741. padding:2px 2px 2px 0px;
  5742. box-sizing:border-box;
  5743. width:100%;
  5744. }
  5745. #u31935_text {
  5746. border-width:0px;
  5747. word-wrap:break-word;
  5748. text-transform:none;
  5749. visibility:hidden;
  5750. }
  5751. #u31936_img {
  5752. border-width:0px;
  5753. position:absolute;
  5754. left:0px;
  5755. top:0px;
  5756. width:73px;
  5757. height:32px;
  5758. }
  5759. #u31936 {
  5760. border-width:0px;
  5761. position:absolute;
  5762. left:60px;
  5763. top:266px;
  5764. width:73px;
  5765. height:32px;
  5766. display:flex;
  5767. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5768. font-weight:400;
  5769. font-style:normal;
  5770. font-size:12px;
  5771. color:#333333;
  5772. }
  5773. #u31936 .text {
  5774. position:absolute;
  5775. align-self:center;
  5776. padding:2px 2px 2px 0px;
  5777. box-sizing:border-box;
  5778. width:100%;
  5779. }
  5780. #u31936_text {
  5781. border-width:0px;
  5782. word-wrap:break-word;
  5783. text-transform:none;
  5784. visibility:hidden;
  5785. }
  5786. #u31937_img {
  5787. border-width:0px;
  5788. position:absolute;
  5789. left:0px;
  5790. top:0px;
  5791. width:100px;
  5792. height:32px;
  5793. }
  5794. #u31937 {
  5795. border-width:0px;
  5796. position:absolute;
  5797. left:133px;
  5798. top:266px;
  5799. width:100px;
  5800. height:32px;
  5801. display:flex;
  5802. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5803. font-weight:400;
  5804. font-style:normal;
  5805. font-size:12px;
  5806. color:#333333;
  5807. }
  5808. #u31937 .text {
  5809. position:absolute;
  5810. align-self:center;
  5811. padding:2px 2px 2px 0px;
  5812. box-sizing:border-box;
  5813. width:100%;
  5814. }
  5815. #u31937_text {
  5816. border-width:0px;
  5817. word-wrap:break-word;
  5818. text-transform:none;
  5819. visibility:hidden;
  5820. }
  5821. #u31938_img {
  5822. border-width:0px;
  5823. position:absolute;
  5824. left:0px;
  5825. top:0px;
  5826. width:100px;
  5827. height:32px;
  5828. }
  5829. #u31938 {
  5830. border-width:0px;
  5831. position:absolute;
  5832. left:233px;
  5833. top:266px;
  5834. width:100px;
  5835. height:32px;
  5836. display:flex;
  5837. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5838. font-weight:400;
  5839. font-style:normal;
  5840. font-size:12px;
  5841. color:#333333;
  5842. }
  5843. #u31938 .text {
  5844. position:absolute;
  5845. align-self:center;
  5846. padding:2px 2px 2px 0px;
  5847. box-sizing:border-box;
  5848. width:100%;
  5849. }
  5850. #u31938_text {
  5851. border-width:0px;
  5852. word-wrap:break-word;
  5853. text-transform:none;
  5854. visibility:hidden;
  5855. }
  5856. #u31939_img {
  5857. border-width:0px;
  5858. position:absolute;
  5859. left:0px;
  5860. top:0px;
  5861. width:100px;
  5862. height:32px;
  5863. }
  5864. #u31939 {
  5865. border-width:0px;
  5866. position:absolute;
  5867. left:333px;
  5868. top:266px;
  5869. width:100px;
  5870. height:32px;
  5871. display:flex;
  5872. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5873. font-weight:400;
  5874. font-style:normal;
  5875. font-size:12px;
  5876. color:#333333;
  5877. }
  5878. #u31939 .text {
  5879. position:absolute;
  5880. align-self:center;
  5881. padding:2px 2px 2px 0px;
  5882. box-sizing:border-box;
  5883. width:100%;
  5884. }
  5885. #u31939_text {
  5886. border-width:0px;
  5887. word-wrap:break-word;
  5888. text-transform:none;
  5889. visibility:hidden;
  5890. }
  5891. #u31940_img {
  5892. border-width:0px;
  5893. position:absolute;
  5894. left:0px;
  5895. top:0px;
  5896. width:128px;
  5897. height:32px;
  5898. }
  5899. #u31940 {
  5900. border-width:0px;
  5901. position:absolute;
  5902. left:433px;
  5903. top:266px;
  5904. width:128px;
  5905. height:32px;
  5906. display:flex;
  5907. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5908. font-weight:400;
  5909. font-style:normal;
  5910. font-size:12px;
  5911. color:#333333;
  5912. }
  5913. #u31940 .text {
  5914. position:absolute;
  5915. align-self:center;
  5916. padding:2px 2px 2px 0px;
  5917. box-sizing:border-box;
  5918. width:100%;
  5919. }
  5920. #u31940_text {
  5921. border-width:0px;
  5922. word-wrap:break-word;
  5923. text-transform:none;
  5924. visibility:hidden;
  5925. }
  5926. #u31941_img {
  5927. border-width:0px;
  5928. position:absolute;
  5929. left:0px;
  5930. top:0px;
  5931. width:100px;
  5932. height:32px;
  5933. }
  5934. #u31941 {
  5935. border-width:0px;
  5936. position:absolute;
  5937. left:561px;
  5938. top:266px;
  5939. width:100px;
  5940. height:32px;
  5941. display:flex;
  5942. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5943. font-weight:400;
  5944. font-style:normal;
  5945. font-size:12px;
  5946. color:#333333;
  5947. }
  5948. #u31941 .text {
  5949. position:absolute;
  5950. align-self:center;
  5951. padding:2px 2px 2px 0px;
  5952. box-sizing:border-box;
  5953. width:100%;
  5954. }
  5955. #u31941_text {
  5956. border-width:0px;
  5957. word-wrap:break-word;
  5958. text-transform:none;
  5959. visibility:hidden;
  5960. }
  5961. #u31942_img {
  5962. border-width:0px;
  5963. position:absolute;
  5964. left:0px;
  5965. top:0px;
  5966. width:110px;
  5967. height:32px;
  5968. }
  5969. #u31942 {
  5970. border-width:0px;
  5971. position:absolute;
  5972. left:661px;
  5973. top:266px;
  5974. width:110px;
  5975. height:32px;
  5976. display:flex;
  5977. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5978. font-weight:400;
  5979. font-style:normal;
  5980. font-size:12px;
  5981. color:#333333;
  5982. }
  5983. #u31942 .text {
  5984. position:absolute;
  5985. align-self:center;
  5986. padding:2px 2px 2px 0px;
  5987. box-sizing:border-box;
  5988. width:100%;
  5989. }
  5990. #u31942_text {
  5991. border-width:0px;
  5992. word-wrap:break-word;
  5993. text-transform:none;
  5994. visibility:hidden;
  5995. }
  5996. #u31943_img {
  5997. border-width:0px;
  5998. position:absolute;
  5999. left:0px;
  6000. top:0px;
  6001. width:60px;
  6002. height:32px;
  6003. }
  6004. #u31943 {
  6005. border-width:0px;
  6006. position:absolute;
  6007. left:771px;
  6008. top:266px;
  6009. width:60px;
  6010. height:32px;
  6011. display:flex;
  6012. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6013. font-weight:400;
  6014. font-style:normal;
  6015. font-size:12px;
  6016. color:#333333;
  6017. }
  6018. #u31943 .text {
  6019. position:absolute;
  6020. align-self:center;
  6021. padding:2px 2px 2px 0px;
  6022. box-sizing:border-box;
  6023. width:100%;
  6024. }
  6025. #u31943_text {
  6026. border-width:0px;
  6027. word-wrap:break-word;
  6028. text-transform:none;
  6029. visibility:hidden;
  6030. }
  6031. #u31944_img {
  6032. border-width:0px;
  6033. position:absolute;
  6034. left:0px;
  6035. top:0px;
  6036. width:100px;
  6037. height:32px;
  6038. }
  6039. #u31944 {
  6040. border-width:0px;
  6041. position:absolute;
  6042. left:831px;
  6043. top:266px;
  6044. width:100px;
  6045. height:32px;
  6046. display:flex;
  6047. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6048. font-weight:400;
  6049. font-style:normal;
  6050. font-size:12px;
  6051. color:#333333;
  6052. }
  6053. #u31944 .text {
  6054. position:absolute;
  6055. align-self:center;
  6056. padding:2px 2px 2px 0px;
  6057. box-sizing:border-box;
  6058. width:100%;
  6059. }
  6060. #u31944_text {
  6061. border-width:0px;
  6062. word-wrap:break-word;
  6063. text-transform:none;
  6064. visibility:hidden;
  6065. }
  6066. #u31945_img {
  6067. border-width:0px;
  6068. position:absolute;
  6069. left:0px;
  6070. top:0px;
  6071. width:91px;
  6072. height:32px;
  6073. }
  6074. #u31945 {
  6075. border-width:0px;
  6076. position:absolute;
  6077. left:931px;
  6078. top:266px;
  6079. width:91px;
  6080. height:32px;
  6081. display:flex;
  6082. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6083. font-weight:400;
  6084. font-style:normal;
  6085. font-size:12px;
  6086. color:#333333;
  6087. }
  6088. #u31945 .text {
  6089. position:absolute;
  6090. align-self:center;
  6091. padding:2px 2px 2px 0px;
  6092. box-sizing:border-box;
  6093. width:100%;
  6094. }
  6095. #u31945_text {
  6096. border-width:0px;
  6097. word-wrap:break-word;
  6098. text-transform:none;
  6099. visibility:hidden;
  6100. }
  6101. #u31946_img {
  6102. border-width:0px;
  6103. position:absolute;
  6104. left:0px;
  6105. top:0px;
  6106. width:183px;
  6107. height:32px;
  6108. }
  6109. #u31946 {
  6110. border-width:0px;
  6111. position:absolute;
  6112. left:1022px;
  6113. top:266px;
  6114. width:183px;
  6115. height:32px;
  6116. display:flex;
  6117. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6118. font-weight:400;
  6119. font-style:normal;
  6120. font-size:12px;
  6121. color:#333333;
  6122. }
  6123. #u31946 .text {
  6124. position:absolute;
  6125. align-self:center;
  6126. padding:2px 2px 2px 0px;
  6127. box-sizing:border-box;
  6128. width:100%;
  6129. }
  6130. #u31946_text {
  6131. border-width:0px;
  6132. word-wrap:break-word;
  6133. text-transform:none;
  6134. visibility:hidden;
  6135. }
  6136. #u31947_img {
  6137. border-width:0px;
  6138. position:absolute;
  6139. left:0px;
  6140. top:0px;
  6141. width:60px;
  6142. height:30px;
  6143. }
  6144. #u31947 {
  6145. border-width:0px;
  6146. position:absolute;
  6147. left:0px;
  6148. top:298px;
  6149. width:60px;
  6150. height:30px;
  6151. display:flex;
  6152. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6153. font-weight:400;
  6154. font-style:normal;
  6155. font-size:12px;
  6156. color:#333333;
  6157. }
  6158. #u31947 .text {
  6159. position:absolute;
  6160. align-self:center;
  6161. padding:2px 2px 2px 0px;
  6162. box-sizing:border-box;
  6163. width:100%;
  6164. }
  6165. #u31947_text {
  6166. border-width:0px;
  6167. word-wrap:break-word;
  6168. text-transform:none;
  6169. visibility:hidden;
  6170. }
  6171. #u31948_img {
  6172. border-width:0px;
  6173. position:absolute;
  6174. left:0px;
  6175. top:0px;
  6176. width:73px;
  6177. height:30px;
  6178. }
  6179. #u31948 {
  6180. border-width:0px;
  6181. position:absolute;
  6182. left:60px;
  6183. top:298px;
  6184. width:73px;
  6185. height:30px;
  6186. display:flex;
  6187. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6188. font-weight:400;
  6189. font-style:normal;
  6190. font-size:12px;
  6191. color:#333333;
  6192. }
  6193. #u31948 .text {
  6194. position:absolute;
  6195. align-self:center;
  6196. padding:2px 2px 2px 0px;
  6197. box-sizing:border-box;
  6198. width:100%;
  6199. }
  6200. #u31948_text {
  6201. border-width:0px;
  6202. word-wrap:break-word;
  6203. text-transform:none;
  6204. visibility:hidden;
  6205. }
  6206. #u31949_img {
  6207. border-width:0px;
  6208. position:absolute;
  6209. left:0px;
  6210. top:0px;
  6211. width:100px;
  6212. height:30px;
  6213. }
  6214. #u31949 {
  6215. border-width:0px;
  6216. position:absolute;
  6217. left:133px;
  6218. top:298px;
  6219. width:100px;
  6220. height:30px;
  6221. display:flex;
  6222. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6223. font-weight:400;
  6224. font-style:normal;
  6225. font-size:12px;
  6226. color:#333333;
  6227. }
  6228. #u31949 .text {
  6229. position:absolute;
  6230. align-self:center;
  6231. padding:2px 2px 2px 0px;
  6232. box-sizing:border-box;
  6233. width:100%;
  6234. }
  6235. #u31949_text {
  6236. border-width:0px;
  6237. word-wrap:break-word;
  6238. text-transform:none;
  6239. visibility:hidden;
  6240. }
  6241. #u31950_img {
  6242. border-width:0px;
  6243. position:absolute;
  6244. left:0px;
  6245. top:0px;
  6246. width:100px;
  6247. height:30px;
  6248. }
  6249. #u31950 {
  6250. border-width:0px;
  6251. position:absolute;
  6252. left:233px;
  6253. top:298px;
  6254. width:100px;
  6255. height:30px;
  6256. display:flex;
  6257. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6258. font-weight:400;
  6259. font-style:normal;
  6260. font-size:12px;
  6261. color:#333333;
  6262. }
  6263. #u31950 .text {
  6264. position:absolute;
  6265. align-self:center;
  6266. padding:2px 2px 2px 0px;
  6267. box-sizing:border-box;
  6268. width:100%;
  6269. }
  6270. #u31950_text {
  6271. border-width:0px;
  6272. word-wrap:break-word;
  6273. text-transform:none;
  6274. visibility:hidden;
  6275. }
  6276. #u31951_img {
  6277. border-width:0px;
  6278. position:absolute;
  6279. left:0px;
  6280. top:0px;
  6281. width:100px;
  6282. height:30px;
  6283. }
  6284. #u31951 {
  6285. border-width:0px;
  6286. position:absolute;
  6287. left:333px;
  6288. top:298px;
  6289. width:100px;
  6290. height:30px;
  6291. display:flex;
  6292. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6293. font-weight:400;
  6294. font-style:normal;
  6295. font-size:12px;
  6296. color:#333333;
  6297. }
  6298. #u31951 .text {
  6299. position:absolute;
  6300. align-self:center;
  6301. padding:2px 2px 2px 0px;
  6302. box-sizing:border-box;
  6303. width:100%;
  6304. }
  6305. #u31951_text {
  6306. border-width:0px;
  6307. word-wrap:break-word;
  6308. text-transform:none;
  6309. visibility:hidden;
  6310. }
  6311. #u31952_img {
  6312. border-width:0px;
  6313. position:absolute;
  6314. left:0px;
  6315. top:0px;
  6316. width:128px;
  6317. height:30px;
  6318. }
  6319. #u31952 {
  6320. border-width:0px;
  6321. position:absolute;
  6322. left:433px;
  6323. top:298px;
  6324. width:128px;
  6325. height:30px;
  6326. display:flex;
  6327. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6328. font-weight:400;
  6329. font-style:normal;
  6330. font-size:12px;
  6331. color:#333333;
  6332. }
  6333. #u31952 .text {
  6334. position:absolute;
  6335. align-self:center;
  6336. padding:2px 2px 2px 0px;
  6337. box-sizing:border-box;
  6338. width:100%;
  6339. }
  6340. #u31952_text {
  6341. border-width:0px;
  6342. word-wrap:break-word;
  6343. text-transform:none;
  6344. visibility:hidden;
  6345. }
  6346. #u31953_img {
  6347. border-width:0px;
  6348. position:absolute;
  6349. left:0px;
  6350. top:0px;
  6351. width:100px;
  6352. height:30px;
  6353. }
  6354. #u31953 {
  6355. border-width:0px;
  6356. position:absolute;
  6357. left:561px;
  6358. top:298px;
  6359. width:100px;
  6360. height:30px;
  6361. display:flex;
  6362. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6363. font-weight:400;
  6364. font-style:normal;
  6365. font-size:12px;
  6366. color:#333333;
  6367. }
  6368. #u31953 .text {
  6369. position:absolute;
  6370. align-self:center;
  6371. padding:2px 2px 2px 0px;
  6372. box-sizing:border-box;
  6373. width:100%;
  6374. }
  6375. #u31953_text {
  6376. border-width:0px;
  6377. word-wrap:break-word;
  6378. text-transform:none;
  6379. visibility:hidden;
  6380. }
  6381. #u31954_img {
  6382. border-width:0px;
  6383. position:absolute;
  6384. left:0px;
  6385. top:0px;
  6386. width:110px;
  6387. height:30px;
  6388. }
  6389. #u31954 {
  6390. border-width:0px;
  6391. position:absolute;
  6392. left:661px;
  6393. top:298px;
  6394. width:110px;
  6395. height:30px;
  6396. display:flex;
  6397. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6398. font-weight:400;
  6399. font-style:normal;
  6400. font-size:12px;
  6401. color:#333333;
  6402. }
  6403. #u31954 .text {
  6404. position:absolute;
  6405. align-self:center;
  6406. padding:2px 2px 2px 0px;
  6407. box-sizing:border-box;
  6408. width:100%;
  6409. }
  6410. #u31954_text {
  6411. border-width:0px;
  6412. word-wrap:break-word;
  6413. text-transform:none;
  6414. visibility:hidden;
  6415. }
  6416. #u31955_img {
  6417. border-width:0px;
  6418. position:absolute;
  6419. left:0px;
  6420. top:0px;
  6421. width:60px;
  6422. height:30px;
  6423. }
  6424. #u31955 {
  6425. border-width:0px;
  6426. position:absolute;
  6427. left:771px;
  6428. top:298px;
  6429. width:60px;
  6430. height:30px;
  6431. display:flex;
  6432. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6433. font-weight:400;
  6434. font-style:normal;
  6435. font-size:12px;
  6436. color:#333333;
  6437. }
  6438. #u31955 .text {
  6439. position:absolute;
  6440. align-self:center;
  6441. padding:2px 2px 2px 0px;
  6442. box-sizing:border-box;
  6443. width:100%;
  6444. }
  6445. #u31955_text {
  6446. border-width:0px;
  6447. word-wrap:break-word;
  6448. text-transform:none;
  6449. visibility:hidden;
  6450. }
  6451. #u31956_img {
  6452. border-width:0px;
  6453. position:absolute;
  6454. left:0px;
  6455. top:0px;
  6456. width:100px;
  6457. height:30px;
  6458. }
  6459. #u31956 {
  6460. border-width:0px;
  6461. position:absolute;
  6462. left:831px;
  6463. top:298px;
  6464. width:100px;
  6465. height:30px;
  6466. display:flex;
  6467. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6468. font-weight:400;
  6469. font-style:normal;
  6470. font-size:12px;
  6471. color:#333333;
  6472. }
  6473. #u31956 .text {
  6474. position:absolute;
  6475. align-self:center;
  6476. padding:2px 2px 2px 0px;
  6477. box-sizing:border-box;
  6478. width:100%;
  6479. }
  6480. #u31956_text {
  6481. border-width:0px;
  6482. word-wrap:break-word;
  6483. text-transform:none;
  6484. visibility:hidden;
  6485. }
  6486. #u31957_img {
  6487. border-width:0px;
  6488. position:absolute;
  6489. left:0px;
  6490. top:0px;
  6491. width:91px;
  6492. height:30px;
  6493. }
  6494. #u31957 {
  6495. border-width:0px;
  6496. position:absolute;
  6497. left:931px;
  6498. top:298px;
  6499. width:91px;
  6500. height:30px;
  6501. display:flex;
  6502. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6503. font-weight:400;
  6504. font-style:normal;
  6505. font-size:12px;
  6506. color:#333333;
  6507. }
  6508. #u31957 .text {
  6509. position:absolute;
  6510. align-self:center;
  6511. padding:2px 2px 2px 0px;
  6512. box-sizing:border-box;
  6513. width:100%;
  6514. }
  6515. #u31957_text {
  6516. border-width:0px;
  6517. word-wrap:break-word;
  6518. text-transform:none;
  6519. visibility:hidden;
  6520. }
  6521. #u31958_img {
  6522. border-width:0px;
  6523. position:absolute;
  6524. left:0px;
  6525. top:0px;
  6526. width:183px;
  6527. height:30px;
  6528. }
  6529. #u31958 {
  6530. border-width:0px;
  6531. position:absolute;
  6532. left:1022px;
  6533. top:298px;
  6534. width:183px;
  6535. height:30px;
  6536. display:flex;
  6537. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6538. font-weight:400;
  6539. font-style:normal;
  6540. font-size:12px;
  6541. color:#333333;
  6542. }
  6543. #u31958 .text {
  6544. position:absolute;
  6545. align-self:center;
  6546. padding:2px 2px 2px 0px;
  6547. box-sizing:border-box;
  6548. width:100%;
  6549. }
  6550. #u31958_text {
  6551. border-width:0px;
  6552. word-wrap:break-word;
  6553. text-transform:none;
  6554. visibility:hidden;
  6555. }
  6556. #u31959_input {
  6557. position:absolute;
  6558. left:0px;
  6559. top:0px;
  6560. width:54px;
  6561. height:24px;
  6562. padding:2px 2px 2px 2px;
  6563. font-family:'ArialMT', 'Arial', sans-serif;
  6564. font-weight:400;
  6565. font-style:normal;
  6566. font-size:13px;
  6567. letter-spacing:normal;
  6568. color:#1890FF;
  6569. vertical-align:none;
  6570. text-align:left;
  6571. text-transform:none;
  6572. background-color:transparent;
  6573. border-color:transparent;
  6574. }
  6575. #u31959_input.disabled {
  6576. position:absolute;
  6577. left:0px;
  6578. top:0px;
  6579. width:54px;
  6580. height:24px;
  6581. padding:2px 2px 2px 2px;
  6582. font-family:'ArialMT', 'Arial', sans-serif;
  6583. font-weight:400;
  6584. font-style:normal;
  6585. font-size:13px;
  6586. letter-spacing:normal;
  6587. color:#1890FF;
  6588. vertical-align:none;
  6589. text-align:left;
  6590. text-transform:none;
  6591. background-color:transparent;
  6592. border-color:transparent;
  6593. }
  6594. #u31959_div {
  6595. border-width:0px;
  6596. position:absolute;
  6597. left:0px;
  6598. top:0px;
  6599. width:54px;
  6600. height:24px;
  6601. background:inherit;
  6602. background-color:rgba(255, 255, 255, 1);
  6603. border:none;
  6604. border-radius:0px;
  6605. -moz-box-shadow:none;
  6606. -webkit-box-shadow:none;
  6607. box-shadow:none;
  6608. color:#1890FF;
  6609. }
  6610. #u31959 {
  6611. border-width:0px;
  6612. position:absolute;
  6613. left:1508px;
  6614. top:250px;
  6615. width:54px;
  6616. height:24px;
  6617. display:flex;
  6618. color:#1890FF;
  6619. }
  6620. #u31959 .text {
  6621. position:absolute;
  6622. align-self:flex-start;
  6623. padding:2px 2px 2px 2px;
  6624. box-sizing:border-box;
  6625. width:100%;
  6626. }
  6627. #u31959_div.disabled {
  6628. border-width:0px;
  6629. position:absolute;
  6630. left:0px;
  6631. top:0px;
  6632. width:54px;
  6633. height:24px;
  6634. background:inherit;
  6635. background-color:rgba(240, 240, 240, 1);
  6636. border:none;
  6637. border-radius:0px;
  6638. -moz-box-shadow:none;
  6639. -webkit-box-shadow:none;
  6640. box-shadow:none;
  6641. color:#1890FF;
  6642. }
  6643. #u31959.disabled {
  6644. }
  6645. .u31959_input_option {
  6646. }
  6647. #u31960 {
  6648. border-width:0px;
  6649. position:absolute;
  6650. left:0px;
  6651. top:0px;
  6652. width:0px;
  6653. height:0px;
  6654. }
  6655. #u31961_div {
  6656. border-width:0px;
  6657. position:absolute;
  6658. left:0px;
  6659. top:0px;
  6660. width:30px;
  6661. height:17px;
  6662. background:inherit;
  6663. background-color:rgba(107, 107, 107, 1);
  6664. border:none;
  6665. border-radius:0px;
  6666. -moz-box-shadow:none;
  6667. -webkit-box-shadow:none;
  6668. box-shadow:none;
  6669. font-family:'Microsoft YaHei', sans-serif;
  6670. font-weight:400;
  6671. font-style:normal;
  6672. font-size:10px;
  6673. color:#FFFFFF;
  6674. }
  6675. #u31961 {
  6676. border-width:0px;
  6677. position:absolute;
  6678. left:809px;
  6679. top:255px;
  6680. width:30px;
  6681. height:17px;
  6682. display:flex;
  6683. font-family:'Microsoft YaHei', sans-serif;
  6684. font-weight:400;
  6685. font-style:normal;
  6686. font-size:10px;
  6687. color:#FFFFFF;
  6688. }
  6689. #u31961 .text {
  6690. position:absolute;
  6691. align-self:center;
  6692. padding:2px 2px 2px 2px;
  6693. box-sizing:border-box;
  6694. width:100%;
  6695. }
  6696. #u31961_text {
  6697. border-width:0px;
  6698. word-wrap:break-word;
  6699. text-transform:none;
  6700. }
  6701. #u31962_div {
  6702. border-width:0px;
  6703. position:absolute;
  6704. left:0px;
  6705. top:0px;
  6706. width:72px;
  6707. height:24px;
  6708. background:inherit;
  6709. background-color:rgba(255, 255, 255, 0);
  6710. border:none;
  6711. border-radius:0px;
  6712. -moz-box-shadow:none;
  6713. -webkit-box-shadow:none;
  6714. box-shadow:none;
  6715. font-size:12px;
  6716. text-align:center;
  6717. line-height:24px;
  6718. }
  6719. #u31962 {
  6720. border-width:0px;
  6721. position:absolute;
  6722. left:843px;
  6723. top:252px;
  6724. width:72px;
  6725. height:24px;
  6726. display:flex;
  6727. font-size:12px;
  6728. text-align:center;
  6729. line-height:24px;
  6730. }
  6731. #u31962 .text {
  6732. position:absolute;
  6733. align-self:flex-start;
  6734. padding:0px 0px 0px 0px;
  6735. box-sizing:border-box;
  6736. width:100%;
  6737. }
  6738. #u31962_text {
  6739. border-width:0px;
  6740. white-space:nowrap;
  6741. text-transform:none;
  6742. }
  6743. #u31963_div {
  6744. border-width:0px;
  6745. position:absolute;
  6746. left:0px;
  6747. top:0px;
  6748. width:30px;
  6749. height:17px;
  6750. background:inherit;
  6751. background-color:rgba(107, 107, 107, 1);
  6752. border:none;
  6753. border-radius:0px;
  6754. -moz-box-shadow:none;
  6755. -webkit-box-shadow:none;
  6756. box-shadow:none;
  6757. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6758. font-weight:400;
  6759. font-style:normal;
  6760. font-size:10px;
  6761. color:#FFFFFF;
  6762. }
  6763. #u31963 {
  6764. border-width:0px;
  6765. position:absolute;
  6766. left:809px;
  6767. top:292px;
  6768. width:30px;
  6769. height:17px;
  6770. display:flex;
  6771. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6772. font-weight:400;
  6773. font-style:normal;
  6774. font-size:10px;
  6775. color:#FFFFFF;
  6776. }
  6777. #u31963 .text {
  6778. position:absolute;
  6779. align-self:center;
  6780. padding:2px 2px 2px 2px;
  6781. box-sizing:border-box;
  6782. width:100%;
  6783. }
  6784. #u31963_text {
  6785. border-width:0px;
  6786. word-wrap:break-word;
  6787. text-transform:none;
  6788. }
  6789. #u31964_div {
  6790. border-width:0px;
  6791. position:absolute;
  6792. left:0px;
  6793. top:0px;
  6794. width:65px;
  6795. height:24px;
  6796. background:inherit;
  6797. background-color:rgba(255, 255, 255, 0);
  6798. border:none;
  6799. border-radius:0px;
  6800. -moz-box-shadow:none;
  6801. -webkit-box-shadow:none;
  6802. box-shadow:none;
  6803. font-size:12px;
  6804. text-align:center;
  6805. line-height:24px;
  6806. }
  6807. #u31964 {
  6808. border-width:0px;
  6809. position:absolute;
  6810. left:847px;
  6811. top:289px;
  6812. width:65px;
  6813. height:24px;
  6814. display:flex;
  6815. font-size:12px;
  6816. text-align:center;
  6817. line-height:24px;
  6818. }
  6819. #u31964 .text {
  6820. position:absolute;
  6821. align-self:flex-start;
  6822. padding:0px 0px 0px 0px;
  6823. box-sizing:border-box;
  6824. width:100%;
  6825. }
  6826. #u31964_text {
  6827. border-width:0px;
  6828. white-space:nowrap;
  6829. text-transform:none;
  6830. }
  6831. #u31965_div {
  6832. border-width:0px;
  6833. position:absolute;
  6834. left:0px;
  6835. top:0px;
  6836. width:30px;
  6837. height:17px;
  6838. background:inherit;
  6839. background-color:rgba(107, 107, 107, 1);
  6840. border:none;
  6841. border-radius:0px;
  6842. -moz-box-shadow:none;
  6843. -webkit-box-shadow:none;
  6844. box-shadow:none;
  6845. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6846. font-weight:400;
  6847. font-style:normal;
  6848. font-size:10px;
  6849. color:#FFFFFF;
  6850. }
  6851. #u31965 {
  6852. border-width:0px;
  6853. position:absolute;
  6854. left:809px;
  6855. top:333px;
  6856. width:30px;
  6857. height:17px;
  6858. display:flex;
  6859. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6860. font-weight:400;
  6861. font-style:normal;
  6862. font-size:10px;
  6863. color:#FFFFFF;
  6864. }
  6865. #u31965 .text {
  6866. position:absolute;
  6867. align-self:center;
  6868. padding:2px 2px 2px 2px;
  6869. box-sizing:border-box;
  6870. width:100%;
  6871. }
  6872. #u31965_text {
  6873. border-width:0px;
  6874. word-wrap:break-word;
  6875. text-transform:none;
  6876. }
  6877. #u31966_div {
  6878. border-width:0px;
  6879. position:absolute;
  6880. left:0px;
  6881. top:0px;
  6882. width:65px;
  6883. height:24px;
  6884. background:inherit;
  6885. background-color:rgba(255, 255, 255, 0);
  6886. border:none;
  6887. border-radius:0px;
  6888. -moz-box-shadow:none;
  6889. -webkit-box-shadow:none;
  6890. box-shadow:none;
  6891. font-size:12px;
  6892. text-align:center;
  6893. line-height:24px;
  6894. }
  6895. #u31966 {
  6896. border-width:0px;
  6897. position:absolute;
  6898. left:847px;
  6899. top:330px;
  6900. width:65px;
  6901. height:24px;
  6902. display:flex;
  6903. font-size:12px;
  6904. text-align:center;
  6905. line-height:24px;
  6906. }
  6907. #u31966 .text {
  6908. position:absolute;
  6909. align-self:flex-start;
  6910. padding:0px 0px 0px 0px;
  6911. box-sizing:border-box;
  6912. width:100%;
  6913. }
  6914. #u31966_text {
  6915. border-width:0px;
  6916. white-space:nowrap;
  6917. text-transform:none;
  6918. }
  6919. #u31967_input {
  6920. position:absolute;
  6921. left:0px;
  6922. top:0px;
  6923. width:54px;
  6924. height:24px;
  6925. padding:2px 2px 2px 2px;
  6926. font-family:'ArialMT', 'Arial', sans-serif;
  6927. font-weight:400;
  6928. font-style:normal;
  6929. font-size:13px;
  6930. letter-spacing:normal;
  6931. color:#1890FF;
  6932. vertical-align:none;
  6933. text-align:left;
  6934. text-transform:none;
  6935. background-color:transparent;
  6936. border-color:transparent;
  6937. }
  6938. #u31967_input.disabled {
  6939. position:absolute;
  6940. left:0px;
  6941. top:0px;
  6942. width:54px;
  6943. height:24px;
  6944. padding:2px 2px 2px 2px;
  6945. font-family:'ArialMT', 'Arial', sans-serif;
  6946. font-weight:400;
  6947. font-style:normal;
  6948. font-size:13px;
  6949. letter-spacing:normal;
  6950. color:#1890FF;
  6951. vertical-align:none;
  6952. text-align:left;
  6953. text-transform:none;
  6954. background-color:transparent;
  6955. border-color:transparent;
  6956. }
  6957. #u31967_div {
  6958. border-width:0px;
  6959. position:absolute;
  6960. left:0px;
  6961. top:0px;
  6962. width:54px;
  6963. height:24px;
  6964. background:inherit;
  6965. background-color:rgba(255, 255, 255, 1);
  6966. border:none;
  6967. border-radius:0px;
  6968. -moz-box-shadow:none;
  6969. -webkit-box-shadow:none;
  6970. box-shadow:none;
  6971. color:#1890FF;
  6972. }
  6973. #u31967 {
  6974. border-width:0px;
  6975. position:absolute;
  6976. left:1508px;
  6977. top:289px;
  6978. width:54px;
  6979. height:24px;
  6980. display:flex;
  6981. color:#1890FF;
  6982. }
  6983. #u31967 .text {
  6984. position:absolute;
  6985. align-self:flex-start;
  6986. padding:2px 2px 2px 2px;
  6987. box-sizing:border-box;
  6988. width:100%;
  6989. }
  6990. #u31967_div.disabled {
  6991. border-width:0px;
  6992. position:absolute;
  6993. left:0px;
  6994. top:0px;
  6995. width:54px;
  6996. height:24px;
  6997. background:inherit;
  6998. background-color:rgba(240, 240, 240, 1);
  6999. border:none;
  7000. border-radius:0px;
  7001. -moz-box-shadow:none;
  7002. -webkit-box-shadow:none;
  7003. box-shadow:none;
  7004. color:#1890FF;
  7005. }
  7006. #u31967.disabled {
  7007. }
  7008. .u31967_input_option {
  7009. }
  7010. #u31968_input {
  7011. position:absolute;
  7012. left:0px;
  7013. top:0px;
  7014. width:54px;
  7015. height:24px;
  7016. padding:2px 2px 2px 2px;
  7017. font-family:'ArialMT', 'Arial', sans-serif;
  7018. font-weight:400;
  7019. font-style:normal;
  7020. font-size:13px;
  7021. letter-spacing:normal;
  7022. color:#1890FF;
  7023. vertical-align:none;
  7024. text-align:left;
  7025. text-transform:none;
  7026. background-color:transparent;
  7027. border-color:transparent;
  7028. }
  7029. #u31968_input.disabled {
  7030. position:absolute;
  7031. left:0px;
  7032. top:0px;
  7033. width:54px;
  7034. height:24px;
  7035. padding:2px 2px 2px 2px;
  7036. font-family:'ArialMT', 'Arial', sans-serif;
  7037. font-weight:400;
  7038. font-style:normal;
  7039. font-size:13px;
  7040. letter-spacing:normal;
  7041. color:#1890FF;
  7042. vertical-align:none;
  7043. text-align:left;
  7044. text-transform:none;
  7045. background-color:transparent;
  7046. border-color:transparent;
  7047. }
  7048. #u31968_div {
  7049. border-width:0px;
  7050. position:absolute;
  7051. left:0px;
  7052. top:0px;
  7053. width:54px;
  7054. height:24px;
  7055. background:inherit;
  7056. background-color:rgba(255, 255, 255, 1);
  7057. border:none;
  7058. border-radius:0px;
  7059. -moz-box-shadow:none;
  7060. -webkit-box-shadow:none;
  7061. box-shadow:none;
  7062. color:#1890FF;
  7063. }
  7064. #u31968 {
  7065. border-width:0px;
  7066. position:absolute;
  7067. left:1508px;
  7068. top:326px;
  7069. width:54px;
  7070. height:24px;
  7071. display:flex;
  7072. color:#1890FF;
  7073. }
  7074. #u31968 .text {
  7075. position:absolute;
  7076. align-self:flex-start;
  7077. padding:2px 2px 2px 2px;
  7078. box-sizing:border-box;
  7079. width:100%;
  7080. }
  7081. #u31968_div.disabled {
  7082. border-width:0px;
  7083. position:absolute;
  7084. left:0px;
  7085. top:0px;
  7086. width:54px;
  7087. height:24px;
  7088. background:inherit;
  7089. background-color:rgba(240, 240, 240, 1);
  7090. border:none;
  7091. border-radius:0px;
  7092. -moz-box-shadow:none;
  7093. -webkit-box-shadow:none;
  7094. box-shadow:none;
  7095. color:#1890FF;
  7096. }
  7097. #u31968.disabled {
  7098. }
  7099. .u31968_input_option {
  7100. }
  7101. #u31969_input {
  7102. position:absolute;
  7103. left:0px;
  7104. top:0px;
  7105. width:54px;
  7106. height:24px;
  7107. padding:2px 2px 2px 2px;
  7108. font-family:'ArialMT', 'Arial', sans-serif;
  7109. font-weight:400;
  7110. font-style:normal;
  7111. font-size:13px;
  7112. letter-spacing:normal;
  7113. color:#1890FF;
  7114. vertical-align:none;
  7115. text-align:left;
  7116. text-transform:none;
  7117. background-color:transparent;
  7118. border-color:transparent;
  7119. }
  7120. #u31969_input.disabled {
  7121. position:absolute;
  7122. left:0px;
  7123. top:0px;
  7124. width:54px;
  7125. height:24px;
  7126. padding:2px 2px 2px 2px;
  7127. font-family:'ArialMT', 'Arial', sans-serif;
  7128. font-weight:400;
  7129. font-style:normal;
  7130. font-size:13px;
  7131. letter-spacing:normal;
  7132. color:#1890FF;
  7133. vertical-align:none;
  7134. text-align:left;
  7135. text-transform:none;
  7136. background-color:transparent;
  7137. border-color:transparent;
  7138. }
  7139. #u31969_div {
  7140. border-width:0px;
  7141. position:absolute;
  7142. left:0px;
  7143. top:0px;
  7144. width:54px;
  7145. height:24px;
  7146. background:inherit;
  7147. background-color:rgba(255, 255, 255, 1);
  7148. border:none;
  7149. border-radius:0px;
  7150. -moz-box-shadow:none;
  7151. -webkit-box-shadow:none;
  7152. box-shadow:none;
  7153. color:#1890FF;
  7154. }
  7155. #u31969 {
  7156. border-width:0px;
  7157. position:absolute;
  7158. left:1508px;
  7159. top:366px;
  7160. width:54px;
  7161. height:24px;
  7162. display:flex;
  7163. color:#1890FF;
  7164. }
  7165. #u31969 .text {
  7166. position:absolute;
  7167. align-self:flex-start;
  7168. padding:2px 2px 2px 2px;
  7169. box-sizing:border-box;
  7170. width:100%;
  7171. }
  7172. #u31969_div.disabled {
  7173. border-width:0px;
  7174. position:absolute;
  7175. left:0px;
  7176. top:0px;
  7177. width:54px;
  7178. height:24px;
  7179. background:inherit;
  7180. background-color:rgba(240, 240, 240, 1);
  7181. border:none;
  7182. border-radius:0px;
  7183. -moz-box-shadow:none;
  7184. -webkit-box-shadow:none;
  7185. box-shadow:none;
  7186. color:#1890FF;
  7187. }
  7188. #u31969.disabled {
  7189. }
  7190. .u31969_input_option {
  7191. }
  7192. #u31970 {
  7193. border-width:0px;
  7194. position:absolute;
  7195. left:1657px;
  7196. top:80px;
  7197. width:800px;
  7198. height:438px;
  7199. }
  7200. #u31971_img {
  7201. border-width:0px;
  7202. position:absolute;
  7203. left:0px;
  7204. top:0px;
  7205. width:100px;
  7206. height:44px;
  7207. }
  7208. #u31971 {
  7209. border-width:0px;
  7210. position:absolute;
  7211. left:0px;
  7212. top:0px;
  7213. width:100px;
  7214. height:44px;
  7215. display:flex;
  7216. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7217. font-weight:400;
  7218. font-style:normal;
  7219. font-size:12px;
  7220. color:#FFFFFF;
  7221. text-align:left;
  7222. line-height:30px;
  7223. }
  7224. #u31971 .text {
  7225. position:absolute;
  7226. align-self:center;
  7227. padding:2px 2px 2px 10px;
  7228. box-sizing:border-box;
  7229. width:100%;
  7230. }
  7231. #u31971_text {
  7232. border-width:0px;
  7233. word-wrap:break-word;
  7234. text-transform:none;
  7235. }
  7236. #u31972_img {
  7237. border-width:0px;
  7238. position:absolute;
  7239. left:0px;
  7240. top:0px;
  7241. width:200px;
  7242. height:44px;
  7243. }
  7244. #u31972 {
  7245. border-width:0px;
  7246. position:absolute;
  7247. left:100px;
  7248. top:0px;
  7249. width:200px;
  7250. height:44px;
  7251. display:flex;
  7252. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7253. font-weight:400;
  7254. font-style:normal;
  7255. font-size:12px;
  7256. color:#FFFFFF;
  7257. text-align:left;
  7258. line-height:30px;
  7259. }
  7260. #u31972 .text {
  7261. position:absolute;
  7262. align-self:center;
  7263. padding:2px 2px 2px 10px;
  7264. box-sizing:border-box;
  7265. width:100%;
  7266. }
  7267. #u31972_text {
  7268. border-width:0px;
  7269. word-wrap:break-word;
  7270. text-transform:none;
  7271. }
  7272. #u31973_img {
  7273. border-width:0px;
  7274. position:absolute;
  7275. left:0px;
  7276. top:0px;
  7277. width:500px;
  7278. height:44px;
  7279. }
  7280. #u31973 {
  7281. border-width:0px;
  7282. position:absolute;
  7283. left:300px;
  7284. top:0px;
  7285. width:500px;
  7286. height:44px;
  7287. display:flex;
  7288. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7289. font-weight:400;
  7290. font-style:normal;
  7291. font-size:12px;
  7292. color:#FFFFFF;
  7293. text-align:left;
  7294. line-height:30px;
  7295. }
  7296. #u31973 .text {
  7297. position:absolute;
  7298. align-self:center;
  7299. padding:2px 2px 2px 10px;
  7300. box-sizing:border-box;
  7301. width:100%;
  7302. }
  7303. #u31973_text {
  7304. border-width:0px;
  7305. word-wrap:break-word;
  7306. text-transform:none;
  7307. }
  7308. #u31974_img {
  7309. border-width:0px;
  7310. position:absolute;
  7311. left:0px;
  7312. top:0px;
  7313. width:100px;
  7314. height:394px;
  7315. }
  7316. #u31974 {
  7317. border-width:0px;
  7318. position:absolute;
  7319. left:0px;
  7320. top:44px;
  7321. width:100px;
  7322. height:394px;
  7323. display:flex;
  7324. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7325. font-weight:400;
  7326. font-style:normal;
  7327. font-size:12px;
  7328. color:#333333;
  7329. text-align:left;
  7330. line-height:30px;
  7331. }
  7332. #u31974 .text {
  7333. position:absolute;
  7334. align-self:center;
  7335. padding:2px 2px 2px 10px;
  7336. box-sizing:border-box;
  7337. width:100%;
  7338. }
  7339. #u31974_text {
  7340. border-width:0px;
  7341. word-wrap:break-word;
  7342. text-transform:none;
  7343. visibility:hidden;
  7344. }
  7345. #u31975_img {
  7346. border-width:0px;
  7347. position:absolute;
  7348. left:0px;
  7349. top:0px;
  7350. width:200px;
  7351. height:394px;
  7352. }
  7353. #u31975 {
  7354. border-width:0px;
  7355. position:absolute;
  7356. left:100px;
  7357. top:44px;
  7358. width:200px;
  7359. height:394px;
  7360. display:flex;
  7361. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7362. font-weight:400;
  7363. font-style:normal;
  7364. font-size:12px;
  7365. color:#333333;
  7366. text-align:left;
  7367. line-height:30px;
  7368. }
  7369. #u31975 .text {
  7370. position:absolute;
  7371. align-self:center;
  7372. padding:2px 2px 2px 10px;
  7373. box-sizing:border-box;
  7374. width:100%;
  7375. }
  7376. #u31975_text {
  7377. border-width:0px;
  7378. word-wrap:break-word;
  7379. text-transform:none;
  7380. }
  7381. #u31976_img {
  7382. border-width:0px;
  7383. position:absolute;
  7384. left:0px;
  7385. top:0px;
  7386. width:500px;
  7387. height:394px;
  7388. }
  7389. #u31976 {
  7390. border-width:0px;
  7391. position:absolute;
  7392. left:300px;
  7393. top:44px;
  7394. width:500px;
  7395. height:394px;
  7396. display:flex;
  7397. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7398. font-weight:400;
  7399. font-style:normal;
  7400. font-size:12px;
  7401. text-align:left;
  7402. line-height:30px;
  7403. }
  7404. #u31976 .text {
  7405. position:absolute;
  7406. align-self:center;
  7407. padding:2px 2px 2px 10px;
  7408. box-sizing:border-box;
  7409. width:100%;
  7410. }
  7411. #u31976_text {
  7412. border-width:0px;
  7413. word-wrap:break-word;
  7414. text-transform:none;
  7415. }