styles.css 134 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145114611471148114911501151115211531154115511561157115811591160116111621163116411651166116711681169117011711172117311741175117611771178117911801181118211831184118511861187118811891190119111921193119411951196119711981199120012011202120312041205120612071208120912101211121212131214121512161217121812191220122112221223122412251226122712281229123012311232123312341235123612371238123912401241124212431244124512461247124812491250125112521253125412551256125712581259126012611262126312641265126612671268126912701271127212731274127512761277127812791280128112821283128412851286128712881289129012911292129312941295129612971298129913001301130213031304130513061307130813091310131113121313131413151316131713181319132013211322132313241325132613271328132913301331133213331334133513361337133813391340134113421343134413451346134713481349135013511352135313541355135613571358135913601361136213631364136513661367136813691370137113721373137413751376137713781379138013811382138313841385138613871388138913901391139213931394139513961397139813991400140114021403140414051406140714081409141014111412141314141415141614171418141914201421142214231424142514261427142814291430143114321433143414351436143714381439144014411442144314441445144614471448144914501451145214531454145514561457145814591460146114621463146414651466146714681469147014711472147314741475147614771478147914801481148214831484148514861487148814891490149114921493149414951496149714981499150015011502150315041505150615071508150915101511151215131514151515161517151815191520152115221523152415251526152715281529153015311532153315341535153615371538153915401541154215431544154515461547154815491550155115521553155415551556155715581559156015611562156315641565156615671568156915701571157215731574157515761577157815791580158115821583158415851586158715881589159015911592159315941595159615971598159916001601160216031604160516061607160816091610161116121613161416151616161716181619162016211622162316241625162616271628162916301631163216331634163516361637163816391640164116421643164416451646164716481649165016511652165316541655165616571658165916601661166216631664166516661667166816691670167116721673167416751676167716781679168016811682168316841685168616871688168916901691169216931694169516961697169816991700170117021703170417051706170717081709171017111712171317141715171617171718171917201721172217231724172517261727172817291730173117321733173417351736173717381739174017411742174317441745174617471748174917501751175217531754175517561757175817591760176117621763176417651766176717681769177017711772177317741775177617771778177917801781178217831784178517861787178817891790179117921793179417951796179717981799180018011802180318041805180618071808180918101811181218131814181518161817181818191820182118221823182418251826182718281829183018311832183318341835183618371838183918401841184218431844184518461847184818491850185118521853185418551856185718581859186018611862186318641865186618671868186918701871187218731874187518761877187818791880188118821883188418851886188718881889189018911892189318941895189618971898189919001901190219031904190519061907190819091910191119121913191419151916191719181919192019211922192319241925192619271928192919301931193219331934193519361937193819391940194119421943194419451946194719481949195019511952195319541955195619571958195919601961196219631964196519661967196819691970197119721973197419751976197719781979198019811982198319841985198619871988198919901991199219931994199519961997199819992000200120022003200420052006200720082009201020112012201320142015201620172018201920202021202220232024202520262027202820292030203120322033203420352036203720382039204020412042204320442045204620472048204920502051205220532054205520562057205820592060206120622063206420652066206720682069207020712072207320742075207620772078207920802081208220832084208520862087208820892090209120922093209420952096209720982099210021012102210321042105210621072108210921102111211221132114211521162117211821192120212121222123212421252126212721282129213021312132213321342135213621372138213921402141214221432144214521462147214821492150215121522153215421552156215721582159216021612162216321642165216621672168216921702171217221732174217521762177217821792180218121822183218421852186218721882189219021912192219321942195219621972198219922002201220222032204220522062207220822092210221122122213221422152216221722182219222022212222222322242225222622272228222922302231223222332234223522362237223822392240224122422243224422452246224722482249225022512252225322542255225622572258225922602261226222632264226522662267226822692270227122722273227422752276227722782279228022812282228322842285228622872288228922902291229222932294229522962297229822992300230123022303230423052306230723082309231023112312231323142315231623172318231923202321232223232324232523262327232823292330233123322333233423352336233723382339234023412342234323442345234623472348234923502351235223532354235523562357235823592360236123622363236423652366236723682369237023712372237323742375237623772378237923802381238223832384238523862387238823892390239123922393239423952396239723982399240024012402240324042405240624072408240924102411241224132414241524162417241824192420242124222423242424252426242724282429243024312432243324342435243624372438243924402441244224432444244524462447244824492450245124522453245424552456245724582459246024612462246324642465246624672468246924702471247224732474247524762477247824792480248124822483248424852486248724882489249024912492249324942495249624972498249925002501250225032504250525062507250825092510251125122513251425152516251725182519252025212522252325242525252625272528252925302531253225332534253525362537253825392540254125422543254425452546254725482549255025512552255325542555255625572558255925602561256225632564256525662567256825692570257125722573257425752576257725782579258025812582258325842585258625872588258925902591259225932594259525962597259825992600260126022603260426052606260726082609261026112612261326142615261626172618261926202621262226232624262526262627262826292630263126322633263426352636263726382639264026412642264326442645264626472648264926502651265226532654265526562657265826592660266126622663266426652666266726682669267026712672267326742675267626772678267926802681268226832684268526862687268826892690269126922693269426952696269726982699270027012702270327042705270627072708270927102711271227132714271527162717271827192720272127222723272427252726272727282729273027312732273327342735273627372738273927402741274227432744274527462747274827492750275127522753275427552756275727582759276027612762276327642765276627672768276927702771277227732774277527762777277827792780278127822783278427852786278727882789279027912792279327942795279627972798279928002801280228032804280528062807280828092810281128122813281428152816281728182819282028212822282328242825282628272828282928302831283228332834283528362837283828392840284128422843284428452846284728482849285028512852285328542855285628572858285928602861286228632864286528662867286828692870287128722873287428752876287728782879288028812882288328842885288628872888288928902891289228932894289528962897289828992900290129022903290429052906290729082909291029112912291329142915291629172918291929202921292229232924292529262927292829292930293129322933293429352936293729382939294029412942294329442945294629472948294929502951295229532954295529562957295829592960296129622963296429652966296729682969297029712972297329742975297629772978297929802981298229832984298529862987298829892990299129922993299429952996299729982999300030013002300330043005300630073008300930103011301230133014301530163017301830193020302130223023302430253026302730283029303030313032303330343035303630373038303930403041304230433044304530463047304830493050305130523053305430553056305730583059306030613062306330643065306630673068306930703071307230733074307530763077307830793080308130823083308430853086308730883089309030913092309330943095309630973098309931003101310231033104310531063107310831093110311131123113311431153116311731183119312031213122312331243125312631273128312931303131313231333134313531363137313831393140314131423143314431453146314731483149315031513152315331543155315631573158315931603161316231633164316531663167316831693170317131723173317431753176317731783179318031813182318331843185318631873188318931903191319231933194319531963197319831993200320132023203320432053206320732083209321032113212321332143215321632173218321932203221322232233224322532263227322832293230323132323233323432353236323732383239324032413242324332443245324632473248324932503251325232533254325532563257325832593260326132623263326432653266326732683269327032713272327332743275327632773278327932803281328232833284328532863287328832893290329132923293329432953296329732983299330033013302330333043305330633073308330933103311331233133314331533163317331833193320332133223323332433253326332733283329333033313332333333343335333633373338333933403341334233433344334533463347334833493350335133523353335433553356335733583359336033613362336333643365336633673368336933703371337233733374337533763377337833793380338133823383338433853386338733883389339033913392339333943395339633973398339934003401340234033404340534063407340834093410341134123413341434153416341734183419342034213422342334243425342634273428342934303431343234333434343534363437343834393440344134423443344434453446344734483449345034513452345334543455345634573458345934603461346234633464346534663467346834693470347134723473347434753476347734783479348034813482348334843485348634873488348934903491349234933494349534963497349834993500350135023503350435053506350735083509351035113512351335143515351635173518351935203521352235233524352535263527352835293530353135323533353435353536353735383539354035413542354335443545354635473548354935503551355235533554355535563557355835593560356135623563356435653566356735683569357035713572357335743575357635773578357935803581358235833584358535863587358835893590359135923593359435953596359735983599360036013602360336043605360636073608360936103611361236133614361536163617361836193620362136223623362436253626362736283629363036313632363336343635363636373638363936403641364236433644364536463647364836493650365136523653365436553656365736583659366036613662366336643665366636673668366936703671367236733674367536763677367836793680368136823683368436853686368736883689369036913692369336943695369636973698369937003701370237033704370537063707370837093710371137123713371437153716371737183719372037213722372337243725372637273728372937303731373237333734373537363737373837393740374137423743374437453746374737483749375037513752375337543755375637573758375937603761376237633764376537663767376837693770377137723773377437753776377737783779378037813782378337843785378637873788378937903791379237933794379537963797379837993800380138023803380438053806380738083809381038113812381338143815381638173818381938203821382238233824382538263827382838293830383138323833383438353836383738383839384038413842384338443845384638473848384938503851385238533854385538563857385838593860386138623863386438653866386738683869387038713872387338743875387638773878387938803881388238833884388538863887388838893890389138923893389438953896389738983899390039013902390339043905390639073908390939103911391239133914391539163917391839193920392139223923392439253926392739283929393039313932393339343935393639373938393939403941394239433944394539463947394839493950395139523953395439553956395739583959396039613962396339643965396639673968396939703971397239733974397539763977397839793980398139823983398439853986398739883989399039913992399339943995399639973998399940004001400240034004400540064007400840094010401140124013401440154016401740184019402040214022402340244025402640274028402940304031403240334034403540364037403840394040404140424043404440454046404740484049405040514052405340544055405640574058405940604061406240634064406540664067406840694070407140724073407440754076407740784079408040814082408340844085408640874088408940904091409240934094409540964097409840994100410141024103410441054106410741084109411041114112411341144115411641174118411941204121412241234124412541264127412841294130413141324133413441354136413741384139414041414142414341444145414641474148414941504151415241534154415541564157415841594160416141624163416441654166416741684169417041714172417341744175417641774178417941804181418241834184418541864187418841894190419141924193419441954196419741984199420042014202420342044205420642074208420942104211421242134214421542164217421842194220422142224223422442254226422742284229423042314232423342344235423642374238423942404241424242434244424542464247424842494250425142524253425442554256425742584259426042614262426342644265426642674268426942704271427242734274427542764277427842794280428142824283428442854286428742884289429042914292429342944295429642974298429943004301430243034304430543064307430843094310431143124313431443154316431743184319432043214322432343244325432643274328432943304331433243334334433543364337433843394340434143424343434443454346434743484349435043514352435343544355435643574358435943604361436243634364436543664367436843694370437143724373437443754376437743784379438043814382438343844385438643874388438943904391439243934394439543964397439843994400440144024403440444054406440744084409441044114412441344144415441644174418441944204421442244234424442544264427442844294430443144324433443444354436443744384439444044414442444344444445444644474448444944504451445244534454445544564457445844594460446144624463446444654466446744684469447044714472447344744475447644774478447944804481448244834484448544864487448844894490449144924493449444954496449744984499450045014502450345044505450645074508450945104511451245134514451545164517451845194520452145224523452445254526452745284529453045314532453345344535453645374538453945404541454245434544454545464547454845494550455145524553455445554556455745584559456045614562456345644565456645674568456945704571457245734574457545764577457845794580458145824583458445854586458745884589459045914592459345944595459645974598459946004601460246034604460546064607460846094610461146124613461446154616461746184619462046214622462346244625462646274628462946304631463246334634463546364637463846394640464146424643464446454646464746484649465046514652465346544655465646574658465946604661466246634664466546664667466846694670467146724673467446754676467746784679468046814682468346844685468646874688468946904691469246934694469546964697469846994700470147024703470447054706470747084709471047114712471347144715471647174718471947204721472247234724472547264727472847294730473147324733473447354736473747384739474047414742474347444745474647474748474947504751475247534754475547564757475847594760476147624763476447654766476747684769477047714772477347744775477647774778477947804781478247834784478547864787478847894790479147924793479447954796479747984799480048014802480348044805480648074808480948104811481248134814481548164817481848194820482148224823482448254826482748284829483048314832483348344835483648374838483948404841484248434844484548464847484848494850485148524853485448554856485748584859486048614862486348644865486648674868486948704871487248734874487548764877487848794880488148824883488448854886488748884889489048914892489348944895489648974898489949004901490249034904490549064907490849094910491149124913491449154916491749184919492049214922492349244925492649274928492949304931493249334934493549364937493849394940494149424943494449454946494749484949495049514952495349544955495649574958495949604961496249634964496549664967496849694970497149724973497449754976497749784979498049814982498349844985498649874988498949904991499249934994499549964997499849995000500150025003500450055006500750085009501050115012501350145015501650175018501950205021502250235024502550265027502850295030503150325033503450355036503750385039504050415042504350445045504650475048504950505051505250535054505550565057505850595060506150625063506450655066506750685069507050715072507350745075507650775078507950805081508250835084508550865087508850895090509150925093509450955096509750985099510051015102510351045105510651075108510951105111511251135114511551165117511851195120512151225123512451255126512751285129513051315132513351345135513651375138513951405141514251435144514551465147514851495150515151525153515451555156515751585159516051615162516351645165516651675168516951705171517251735174517551765177517851795180518151825183518451855186518751885189519051915192519351945195519651975198519952005201520252035204520552065207520852095210521152125213521452155216521752185219522052215222522352245225522652275228522952305231523252335234523552365237523852395240524152425243524452455246524752485249525052515252525352545255525652575258525952605261526252635264526552665267526852695270527152725273527452755276527752785279528052815282528352845285528652875288528952905291529252935294529552965297529852995300530153025303530453055306530753085309531053115312531353145315531653175318531953205321532253235324532553265327532853295330533153325333533453355336533753385339534053415342534353445345534653475348534953505351535253535354535553565357535853595360536153625363536453655366536753685369537053715372537353745375537653775378537953805381538253835384538553865387538853895390539153925393539453955396539753985399540054015402540354045405540654075408540954105411541254135414541554165417541854195420542154225423542454255426542754285429543054315432543354345435543654375438543954405441544254435444544554465447544854495450545154525453545454555456545754585459546054615462546354645465546654675468546954705471547254735474547554765477547854795480548154825483548454855486548754885489549054915492549354945495549654975498549955005501550255035504550555065507550855095510551155125513551455155516551755185519552055215522552355245525552655275528552955305531553255335534553555365537553855395540554155425543554455455546554755485549555055515552555355545555555655575558555955605561556255635564556555665567556855695570557155725573557455755576557755785579558055815582558355845585558655875588558955905591559255935594559555965597559855995600560156025603560456055606560756085609561056115612561356145615561656175618561956205621562256235624562556265627562856295630563156325633563456355636563756385639564056415642564356445645564656475648564956505651565256535654565556565657565856595660566156625663566456655666566756685669567056715672567356745675567656775678567956805681568256835684568556865687568856895690569156925693569456955696569756985699570057015702570357045705570657075708570957105711571257135714571557165717571857195720572157225723572457255726572757285729573057315732573357345735573657375738573957405741574257435744574557465747574857495750575157525753575457555756575757585759576057615762576357645765576657675768576957705771577257735774577557765777577857795780578157825783578457855786578757885789579057915792579357945795579657975798579958005801580258035804580558065807580858095810581158125813581458155816581758185819582058215822582358245825582658275828582958305831583258335834583558365837583858395840584158425843584458455846584758485849585058515852585358545855585658575858585958605861586258635864586558665867586858695870587158725873587458755876587758785879588058815882588358845885588658875888588958905891589258935894589558965897589858995900590159025903590459055906590759085909591059115912591359145915591659175918591959205921592259235924592559265927592859295930593159325933593459355936593759385939594059415942594359445945594659475948594959505951595259535954595559565957595859595960596159625963596459655966596759685969597059715972597359745975597659775978597959805981598259835984598559865987598859895990599159925993599459955996599759985999600060016002600360046005600660076008600960106011601260136014601560166017601860196020602160226023602460256026602760286029603060316032603360346035603660376038603960406041604260436044604560466047604860496050605160526053605460556056605760586059606060616062606360646065606660676068606960706071607260736074607560766077607860796080608160826083608460856086608760886089609060916092609360946095609660976098609961006101610261036104610561066107610861096110611161126113611461156116611761186119612061216122612361246125612661276128612961306131613261336134613561366137613861396140614161426143614461456146614761486149615061516152615361546155615661576158615961606161616261636164616561666167616861696170617161726173617461756176617761786179618061816182618361846185618661876188618961906191619261936194619561966197619861996200620162026203620462056206620762086209621062116212621362146215621662176218621962206221622262236224622562266227622862296230623162326233623462356236623762386239624062416242624362446245624662476248624962506251625262536254625562566257625862596260626162626263626462656266626762686269627062716272627362746275627662776278627962806281628262836284628562866287628862896290629162926293629462956296629762986299630063016302630363046305630663076308630963106311631263136314631563166317631863196320632163226323632463256326632763286329633063316332633363346335633663376338633963406341634263436344634563466347634863496350635163526353635463556356635763586359636063616362636363646365636663676368636963706371637263736374637563766377637863796380638163826383638463856386638763886389639063916392639363946395639663976398639964006401640264036404640564066407640864096410641164126413641464156416641764186419642064216422642364246425642664276428642964306431643264336434643564366437643864396440644164426443644464456446644764486449645064516452645364546455645664576458645964606461646264636464646564666467646864696470647164726473647464756476647764786479648064816482648364846485648664876488648964906491649264936494649564966497649864996500650165026503650465056506650765086509651065116512651365146515651665176518651965206521652265236524652565266527652865296530653165326533653465356536653765386539654065416542654365446545654665476548654965506551655265536554655565566557655865596560656165626563656465656566656765686569657065716572657365746575657665776578657965806581658265836584658565866587658865896590659165926593659465956596659765986599660066016602660366046605660666076608660966106611661266136614661566166617661866196620662166226623662466256626662766286629663066316632663366346635663666376638663966406641664266436644664566466647664866496650665166526653665466556656665766586659666066616662666366646665666666676668666966706671667266736674667566766677667866796680668166826683668466856686668766886689669066916692669366946695669666976698669967006701670267036704670567066707670867096710671167126713671467156716671767186719672067216722672367246725672667276728672967306731673267336734673567366737673867396740674167426743674467456746674767486749675067516752675367546755675667576758675967606761676267636764676567666767676867696770677167726773677467756776677767786779678067816782678367846785678667876788678967906791679267936794679567966797679867996800680168026803680468056806680768086809681068116812681368146815681668176818681968206821682268236824682568266827682868296830683168326833683468356836683768386839684068416842684368446845684668476848684968506851685268536854685568566857685868596860686168626863686468656866686768686869687068716872687368746875687668776878687968806881688268836884688568866887688868896890689168926893689468956896689768986899690069016902690369046905690669076908690969106911691269136914691569166917691869196920692169226923692469256926692769286929693069316932693369346935693669376938693969406941694269436944694569466947694869496950695169526953695469556956695769586959696069616962696369646965696669676968696969706971697269736974697569766977697869796980698169826983698469856986698769886989699069916992699369946995699669976998699970007001700270037004700570067007700870097010701170127013701470157016701770187019702070217022702370247025702670277028702970307031703270337034703570367037703870397040704170427043704470457046704770487049705070517052705370547055705670577058705970607061706270637064706570667067706870697070707170727073707470757076707770787079708070817082708370847085708670877088708970907091709270937094709570967097709870997100710171027103710471057106710771087109711071117112711371147115711671177118711971207121712271237124712571267127712871297130713171327133713471357136713771387139714071417142714371447145714671477148714971507151715271537154715571567157715871597160716171627163716471657166716771687169717071717172717371747175717671777178717971807181718271837184718571867187718871897190719171927193719471957196719771987199720072017202720372047205720672077208720972107211721272137214721572167217721872197220722172227223722472257226722772287229723072317232723372347235723672377238723972407241724272437244724572467247724872497250725172527253725472557256725772587259726072617262726372647265726672677268726972707271727272737274727572767277727872797280728172827283728472857286728772887289729072917292729372947295729672977298729973007301730273037304730573067307730873097310731173127313731473157316731773187319732073217322732373247325732673277328732973307331733273337334733573367337733873397340734173427343734473457346734773487349735073517352735373547355735673577358735973607361736273637364736573667367736873697370737173727373737473757376737773787379738073817382738373847385738673877388738973907391739273937394739573967397739873997400740174027403740474057406740774087409741074117412741374147415741674177418741974207421742274237424742574267427742874297430743174327433743474357436743774387439744074417442744374447445744674477448744974507451745274537454745574567457745874597460746174627463746474657466746774687469747074717472747374747475747674777478747974807481748274837484748574867487748874897490749174927493749474957496749774987499750075017502750375047505750675077508750975107511751275137514751575167517751875197520752175227523752475257526752775287529753075317532753375347535753675377538753975407541754275437544754575467547754875497550755175527553755475557556755775587559756075617562756375647565756675677568756975707571757275737574757575767577757875797580758175827583758475857586758775887589759075917592759375947595759675977598759976007601760276037604760576067607760876097610761176127613761476157616761776187619762076217622762376247625762676277628762976307631763276337634763576367637763876397640764176427643764476457646764776487649765076517652765376547655765676577658765976607661766276637664766576667667766876697670767176727673767476757676767776787679768076817682768376847685768676877688768976907691769276937694769576967697769876997700770177027703770477057706770777087709
  1. body {
  2. margin:0px;
  3. background-image:none;
  4. position:relative;
  5. left:0px;
  6. width:1600px;
  7. margin-left:auto;
  8. margin-right:auto;
  9. text-align:left;
  10. }
  11. .form_sketch {
  12. border-color:transparent;
  13. background-color:transparent;
  14. }
  15. #base {
  16. position:absolute;
  17. z-index:0;
  18. }
  19. #u37886_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. #u37886 {
  35. border-width:0px;
  36. position:absolute;
  37. left:120px;
  38. top:50px;
  39. width:1480px;
  40. height:1200px;
  41. display:flex;
  42. }
  43. #u37886 .text {
  44. position:absolute;
  45. align-self:center;
  46. padding:2px 2px 2px 2px;
  47. box-sizing:border-box;
  48. width:100%;
  49. }
  50. #u37886_text {
  51. border-width:0px;
  52. word-wrap:break-word;
  53. text-transform:none;
  54. visibility:hidden;
  55. }
  56. #u37887_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. #u37887 {
  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. #u37887 .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. #u37887_text {
  92. border-width:0px;
  93. white-space:nowrap;
  94. text-transform:none;
  95. }
  96. #u37888_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. #u37888 {
  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. #u37888 .text {
  123. position:absolute;
  124. align-self:center;
  125. padding:2px 2px 2px 2px;
  126. box-sizing:border-box;
  127. width:100%;
  128. }
  129. #u37888_text {
  130. border-width:0px;
  131. word-wrap:break-word;
  132. text-transform:none;
  133. visibility:hidden;
  134. }
  135. #u37889 {
  136. border-width:0px;
  137. position:absolute;
  138. left:0px;
  139. top:0px;
  140. width:0px;
  141. height:0px;
  142. }
  143. #u37890_img {
  144. border-width:0px;
  145. position:absolute;
  146. left:0px;
  147. top:0px;
  148. width:31px;
  149. height:31px;
  150. }
  151. #u37890 {
  152. border-width:0px;
  153. position:absolute;
  154. left:19px;
  155. top:10px;
  156. width:31px;
  157. height:31px;
  158. display:flex;
  159. }
  160. #u37890 .text {
  161. position:absolute;
  162. align-self:center;
  163. padding:2px 2px 2px 2px;
  164. box-sizing:border-box;
  165. width:100%;
  166. }
  167. #u37890_text {
  168. border-width:0px;
  169. word-wrap:break-word;
  170. text-transform:none;
  171. }
  172. #u37891_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. #u37891 {
  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. #u37891 .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. #u37891_text {
  214. border-width:0px;
  215. white-space:nowrap;
  216. text-transform:none;
  217. }
  218. #u37892_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. #u37892 {
  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. #u37892 .text {
  245. position:absolute;
  246. align-self:center;
  247. padding:2px 2px 2px 2px;
  248. box-sizing:border-box;
  249. width:100%;
  250. }
  251. #u37892_text {
  252. border-width:0px;
  253. word-wrap:break-word;
  254. text-transform:none;
  255. visibility:hidden;
  256. }
  257. #u37893 {
  258. border-width:0px;
  259. position:absolute;
  260. left:0px;
  261. top:0px;
  262. width:0px;
  263. height:0px;
  264. }
  265. #u37894_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. #u37894_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. #u37894_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. #u37894 {
  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. #u37894 .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. #u37894_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. #u37894.disabled {
  356. }
  357. .u37894_input_option {
  358. font-size:14px;
  359. }
  360. #u37895_img {
  361. border-width:0px;
  362. position:absolute;
  363. left:0px;
  364. top:0px;
  365. width:22px;
  366. height:22px;
  367. }
  368. #u37895 {
  369. border-width:0px;
  370. position:absolute;
  371. left:1062px;
  372. top:15px;
  373. width:22px;
  374. height:22px;
  375. display:flex;
  376. }
  377. #u37895 .text {
  378. position:absolute;
  379. align-self:center;
  380. padding:2px 2px 2px 2px;
  381. box-sizing:border-box;
  382. width:100%;
  383. }
  384. #u37895_text {
  385. border-width:0px;
  386. word-wrap:break-word;
  387. text-transform:none;
  388. visibility:hidden;
  389. }
  390. #u37896_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. #u37896 {
  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. #u37896 .text {
  425. position:absolute;
  426. align-self:center;
  427. padding:0px 0px 0px 0px;
  428. box-sizing:border-box;
  429. width:100%;
  430. }
  431. #u37896_text {
  432. border-width:0px;
  433. word-wrap:break-word;
  434. text-transform:none;
  435. }
  436. #u37897_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. #u37897 {
  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. #u37897 .text {
  471. position:absolute;
  472. align-self:center;
  473. padding:0px 0px 0px 0px;
  474. box-sizing:border-box;
  475. width:100%;
  476. }
  477. #u37897_text {
  478. border-width:0px;
  479. word-wrap:break-word;
  480. text-transform:none;
  481. }
  482. #u37898 {
  483. border-width:0px;
  484. position:absolute;
  485. left:0px;
  486. top:0px;
  487. width:0px;
  488. height:0px;
  489. }
  490. #u37899_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. #u37899 {
  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. #u37899 .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. #u37899_text {
  532. border-width:0px;
  533. white-space:nowrap;
  534. text-transform:none;
  535. }
  536. #u37900_img {
  537. border-width:0px;
  538. position:absolute;
  539. left:0px;
  540. top:0px;
  541. width:14px;
  542. height:14px;
  543. }
  544. #u37900 {
  545. border-width:0px;
  546. position:absolute;
  547. left:20px;
  548. top:75px;
  549. width:14px;
  550. height:14px;
  551. display:flex;
  552. }
  553. #u37900 .text {
  554. position:absolute;
  555. align-self:center;
  556. padding:2px 2px 2px 2px;
  557. box-sizing:border-box;
  558. width:100%;
  559. }
  560. #u37900_text {
  561. border-width:0px;
  562. word-wrap:break-word;
  563. text-transform:none;
  564. visibility:hidden;
  565. }
  566. #u37901 {
  567. border-width:0px;
  568. position:absolute;
  569. left:0px;
  570. top:0px;
  571. width:0px;
  572. height:0px;
  573. }
  574. #u37902_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. #u37902 {
  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. #u37902 .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. #u37902_text {
  616. border-width:0px;
  617. white-space:nowrap;
  618. text-transform:none;
  619. }
  620. #u37903_img {
  621. border-width:0px;
  622. position:absolute;
  623. left:0px;
  624. top:0px;
  625. width:14px;
  626. height:14px;
  627. }
  628. #u37903 {
  629. border-width:0px;
  630. position:absolute;
  631. left:20px;
  632. top:151px;
  633. width:14px;
  634. height:14px;
  635. display:flex;
  636. }
  637. #u37903 .text {
  638. position:absolute;
  639. align-self:center;
  640. padding:2px 2px 2px 2px;
  641. box-sizing:border-box;
  642. width:100%;
  643. }
  644. #u37903_text {
  645. border-width:0px;
  646. word-wrap:break-word;
  647. text-transform:none;
  648. visibility:hidden;
  649. }
  650. #u37904 {
  651. border-width:0px;
  652. position:absolute;
  653. left:0px;
  654. top:0px;
  655. width:0px;
  656. height:0px;
  657. }
  658. #u37905_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. #u37905 {
  679. border-width:0px;
  680. position:absolute;
  681. left:39px;
  682. top:399px;
  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. #u37905 .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. #u37905_text {
  700. border-width:0px;
  701. white-space:nowrap;
  702. text-transform:none;
  703. }
  704. #u37906_img {
  705. border-width:0px;
  706. position:absolute;
  707. left:0px;
  708. top:0px;
  709. width:14px;
  710. height:14px;
  711. }
  712. #u37906 {
  713. border-width:0px;
  714. position:absolute;
  715. left:20px;
  716. top:403px;
  717. width:14px;
  718. height:14px;
  719. display:flex;
  720. }
  721. #u37906 .text {
  722. position:absolute;
  723. align-self:center;
  724. padding:2px 2px 2px 2px;
  725. box-sizing:border-box;
  726. width:100%;
  727. }
  728. #u37906_text {
  729. border-width:0px;
  730. word-wrap:break-word;
  731. text-transform:none;
  732. visibility:hidden;
  733. }
  734. #u37907 {
  735. border-width:0px;
  736. position:absolute;
  737. left:0px;
  738. top:0px;
  739. width:0px;
  740. height:0px;
  741. }
  742. #u37908_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. #u37908 {
  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. #u37908 .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. #u37908_text {
  784. border-width:0px;
  785. white-space:nowrap;
  786. text-transform:none;
  787. }
  788. #u37909_img {
  789. border-width:0px;
  790. position:absolute;
  791. left:0px;
  792. top:0px;
  793. width:14px;
  794. height:14px;
  795. }
  796. #u37909 {
  797. border-width:0px;
  798. position:absolute;
  799. left:20px;
  800. top:113px;
  801. width:14px;
  802. height:14px;
  803. display:flex;
  804. }
  805. #u37909 .text {
  806. position:absolute;
  807. align-self:center;
  808. padding:2px 2px 2px 2px;
  809. box-sizing:border-box;
  810. width:100%;
  811. }
  812. #u37909_text {
  813. border-width:0px;
  814. word-wrap:break-word;
  815. text-transform:none;
  816. visibility:hidden;
  817. }
  818. #u37910 {
  819. border-width:0px;
  820. position:absolute;
  821. left:0px;
  822. top:0px;
  823. width:0px;
  824. height:0px;
  825. }
  826. #u37911_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. #u37911 {
  847. border-width:0px;
  848. position:absolute;
  849. left:39px;
  850. top:441px;
  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. #u37911 .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. #u37911_text {
  868. border-width:0px;
  869. white-space:nowrap;
  870. text-transform:none;
  871. }
  872. #u37912_img {
  873. border-width:0px;
  874. position:absolute;
  875. left:0px;
  876. top:0px;
  877. width:14px;
  878. height:14px;
  879. }
  880. #u37912 {
  881. border-width:0px;
  882. position:absolute;
  883. left:20px;
  884. top:445px;
  885. width:14px;
  886. height:14px;
  887. display:flex;
  888. }
  889. #u37912 .text {
  890. position:absolute;
  891. align-self:center;
  892. padding:2px 2px 2px 2px;
  893. box-sizing:border-box;
  894. width:100%;
  895. }
  896. #u37912_text {
  897. border-width:0px;
  898. word-wrap:break-word;
  899. text-transform:none;
  900. visibility:hidden;
  901. }
  902. #u37913 {
  903. border-width:0px;
  904. position:absolute;
  905. left:0px;
  906. top:0px;
  907. width:0px;
  908. height:0px;
  909. }
  910. #u37914_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. #u37914 {
  931. border-width:0px;
  932. position:absolute;
  933. left:39px;
  934. top:315px;
  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. #u37914 .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. #u37914_text {
  952. border-width:0px;
  953. white-space:nowrap;
  954. text-transform:none;
  955. }
  956. #u37915_img {
  957. border-width:0px;
  958. position:absolute;
  959. left:0px;
  960. top:0px;
  961. width:14px;
  962. height:14px;
  963. }
  964. #u37915 {
  965. border-width:0px;
  966. position:absolute;
  967. left:20px;
  968. top:319px;
  969. width:14px;
  970. height:14px;
  971. display:flex;
  972. }
  973. #u37915 .text {
  974. position:absolute;
  975. align-self:center;
  976. padding:2px 2px 2px 2px;
  977. box-sizing:border-box;
  978. width:100%;
  979. }
  980. #u37915_text {
  981. border-width:0px;
  982. word-wrap:break-word;
  983. text-transform:none;
  984. visibility:hidden;
  985. }
  986. #u37916 {
  987. border-width:0px;
  988. position:absolute;
  989. left:0px;
  990. top:0px;
  991. width:0px;
  992. height:0px;
  993. }
  994. #u37917_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. #u37917 {
  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. #u37917 .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. #u37917_text {
  1036. border-width:0px;
  1037. white-space:nowrap;
  1038. text-transform:none;
  1039. }
  1040. #u37918_img {
  1041. border-width:0px;
  1042. position:absolute;
  1043. left:0px;
  1044. top:0px;
  1045. width:14px;
  1046. height:14px;
  1047. }
  1048. #u37918 {
  1049. border-width:0px;
  1050. position:absolute;
  1051. left:20px;
  1052. top:193px;
  1053. width:14px;
  1054. height:14px;
  1055. display:flex;
  1056. }
  1057. #u37918 .text {
  1058. position:absolute;
  1059. align-self:center;
  1060. padding:2px 2px 2px 2px;
  1061. box-sizing:border-box;
  1062. width:100%;
  1063. }
  1064. #u37918_text {
  1065. border-width:0px;
  1066. word-wrap:break-word;
  1067. text-transform:none;
  1068. visibility:hidden;
  1069. }
  1070. #u37919 {
  1071. border-width:0px;
  1072. position:absolute;
  1073. left:0px;
  1074. top:0px;
  1075. width:0px;
  1076. height:0px;
  1077. }
  1078. #u37920_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. #u37920 {
  1099. border-width:0px;
  1100. position:absolute;
  1101. left:39px;
  1102. top:357px;
  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. #u37920 .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. #u37920_text {
  1120. border-width:0px;
  1121. white-space:nowrap;
  1122. text-transform:none;
  1123. }
  1124. #u37921_img {
  1125. border-width:0px;
  1126. position:absolute;
  1127. left:0px;
  1128. top:0px;
  1129. width:14px;
  1130. height:14px;
  1131. }
  1132. #u37921 {
  1133. border-width:0px;
  1134. position:absolute;
  1135. left:20px;
  1136. top:361px;
  1137. width:14px;
  1138. height:14px;
  1139. display:flex;
  1140. }
  1141. #u37921 .text {
  1142. position:absolute;
  1143. align-self:center;
  1144. padding:2px 2px 2px 2px;
  1145. box-sizing:border-box;
  1146. width:100%;
  1147. }
  1148. #u37921_text {
  1149. border-width:0px;
  1150. word-wrap:break-word;
  1151. text-transform:none;
  1152. visibility:hidden;
  1153. }
  1154. #u37922 {
  1155. border-width:0px;
  1156. position:absolute;
  1157. left:0px;
  1158. top:0px;
  1159. width:0px;
  1160. height:0px;
  1161. }
  1162. #u37923_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. #u37923 {
  1183. border-width:0px;
  1184. position:absolute;
  1185. left:39px;
  1186. top:483px;
  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. #u37923 .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. #u37923_text {
  1204. border-width:0px;
  1205. white-space:nowrap;
  1206. text-transform:none;
  1207. }
  1208. #u37924_img {
  1209. border-width:0px;
  1210. position:absolute;
  1211. left:0px;
  1212. top:0px;
  1213. width:14px;
  1214. height:14px;
  1215. }
  1216. #u37924 {
  1217. border-width:0px;
  1218. position:absolute;
  1219. left:20px;
  1220. top:487px;
  1221. width:14px;
  1222. height:14px;
  1223. display:flex;
  1224. }
  1225. #u37924 .text {
  1226. position:absolute;
  1227. align-self:center;
  1228. padding:2px 2px 2px 2px;
  1229. box-sizing:border-box;
  1230. width:100%;
  1231. }
  1232. #u37924_text {
  1233. border-width:0px;
  1234. word-wrap:break-word;
  1235. text-transform:none;
  1236. visibility:hidden;
  1237. }
  1238. #u37925 {
  1239. border-width:0px;
  1240. position:absolute;
  1241. left:0px;
  1242. top:0px;
  1243. width:0px;
  1244. height:0px;
  1245. }
  1246. #u37926_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. #u37926 {
  1267. border-width:0px;
  1268. position:absolute;
  1269. left:39px;
  1270. top:525px;
  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. #u37926 .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. #u37926_text {
  1288. border-width:0px;
  1289. white-space:nowrap;
  1290. text-transform:none;
  1291. }
  1292. #u37927_img {
  1293. border-width:0px;
  1294. position:absolute;
  1295. left:0px;
  1296. top:0px;
  1297. width:14px;
  1298. height:14px;
  1299. }
  1300. #u37927 {
  1301. border-width:0px;
  1302. position:absolute;
  1303. left:20px;
  1304. top:529px;
  1305. width:14px;
  1306. height:14px;
  1307. display:flex;
  1308. }
  1309. #u37927 .text {
  1310. position:absolute;
  1311. align-self:center;
  1312. padding:2px 2px 2px 2px;
  1313. box-sizing:border-box;
  1314. width:100%;
  1315. }
  1316. #u37927_text {
  1317. border-width:0px;
  1318. word-wrap:break-word;
  1319. text-transform:none;
  1320. visibility:hidden;
  1321. }
  1322. #u37928_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. #u37928 {
  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. #u37928 .text {
  1355. position:absolute;
  1356. align-self:center;
  1357. padding:0px 0px 0px 0px;
  1358. box-sizing:border-box;
  1359. width:100%;
  1360. }
  1361. #u37928_text {
  1362. border-width:0px;
  1363. white-space:nowrap;
  1364. text-transform:none;
  1365. }
  1366. #u37929_img {
  1367. border-width:0px;
  1368. position:absolute;
  1369. left:0px;
  1370. top:0px;
  1371. width:22px;
  1372. height:22px;
  1373. }
  1374. #u37929 {
  1375. border-width:0px;
  1376. position:absolute;
  1377. left:20px;
  1378. top:1144px;
  1379. width:22px;
  1380. height:22px;
  1381. display:flex;
  1382. }
  1383. #u37929 .text {
  1384. position:absolute;
  1385. align-self:center;
  1386. padding:2px 2px 2px 2px;
  1387. box-sizing:border-box;
  1388. width:100%;
  1389. }
  1390. #u37929_text {
  1391. border-width:0px;
  1392. word-wrap:break-word;
  1393. text-transform:none;
  1394. visibility:hidden;
  1395. }
  1396. #u37930_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. #u37930 {
  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. #u37930 .text {
  1429. position:absolute;
  1430. align-self:center;
  1431. padding:0px 0px 0px 0px;
  1432. box-sizing:border-box;
  1433. width:100%;
  1434. }
  1435. #u37930_text {
  1436. border-width:0px;
  1437. white-space:nowrap;
  1438. text-transform:none;
  1439. }
  1440. #u37931_img {
  1441. border-width:0px;
  1442. position:absolute;
  1443. left:0px;
  1444. top:0px;
  1445. width:22px;
  1446. height:22px;
  1447. }
  1448. #u37931 {
  1449. border-width:0px;
  1450. position:absolute;
  1451. left:20px;
  1452. top:1186px;
  1453. width:22px;
  1454. height:22px;
  1455. display:flex;
  1456. }
  1457. #u37931 .text {
  1458. position:absolute;
  1459. align-self:center;
  1460. padding:2px 2px 2px 2px;
  1461. box-sizing:border-box;
  1462. width:100%;
  1463. }
  1464. #u37931_text {
  1465. border-width:0px;
  1466. word-wrap:break-word;
  1467. text-transform:none;
  1468. visibility:hidden;
  1469. }
  1470. #u37932 {
  1471. border-width:0px;
  1472. position:absolute;
  1473. left:0px;
  1474. top:0px;
  1475. width:0px;
  1476. height:0px;
  1477. }
  1478. #u37933_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. #u37933 {
  1499. border-width:0px;
  1500. position:absolute;
  1501. left:39px;
  1502. top:231px;
  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. #u37933 .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. #u37933_text {
  1520. border-width:0px;
  1521. white-space:nowrap;
  1522. text-transform:none;
  1523. }
  1524. #u37934_img {
  1525. border-width:0px;
  1526. position:absolute;
  1527. left:0px;
  1528. top:0px;
  1529. width:14px;
  1530. height:14px;
  1531. }
  1532. #u37934 {
  1533. border-width:0px;
  1534. position:absolute;
  1535. left:20px;
  1536. top:235px;
  1537. width:14px;
  1538. height:14px;
  1539. display:flex;
  1540. }
  1541. #u37934 .text {
  1542. position:absolute;
  1543. align-self:center;
  1544. padding:2px 2px 2px 2px;
  1545. box-sizing:border-box;
  1546. width:100%;
  1547. }
  1548. #u37934_text {
  1549. border-width:0px;
  1550. word-wrap:break-word;
  1551. text-transform:none;
  1552. visibility:hidden;
  1553. }
  1554. #u37935 {
  1555. border-width:0px;
  1556. position:absolute;
  1557. left:0px;
  1558. top:0px;
  1559. width:0px;
  1560. height:0px;
  1561. }
  1562. #u37936_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. #u37936 {
  1583. border-width:0px;
  1584. position:absolute;
  1585. left:39px;
  1586. top:273px;
  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. #u37936 .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. #u37936_text {
  1604. border-width:0px;
  1605. white-space:nowrap;
  1606. text-transform:none;
  1607. }
  1608. #u37937_img {
  1609. border-width:0px;
  1610. position:absolute;
  1611. left:0px;
  1612. top:0px;
  1613. width:14px;
  1614. height:14px;
  1615. }
  1616. #u37937 {
  1617. border-width:0px;
  1618. position:absolute;
  1619. left:20px;
  1620. top:277px;
  1621. width:14px;
  1622. height:14px;
  1623. display:flex;
  1624. }
  1625. #u37937 .text {
  1626. position:absolute;
  1627. align-self:center;
  1628. padding:2px 2px 2px 2px;
  1629. box-sizing:border-box;
  1630. width:100%;
  1631. }
  1632. #u37937_text {
  1633. border-width:0px;
  1634. word-wrap:break-word;
  1635. text-transform:none;
  1636. visibility:hidden;
  1637. }
  1638. #u37938_div {
  1639. border-width:0px;
  1640. position:absolute;
  1641. left:0px;
  1642. top:0px;
  1643. width:1261px;
  1644. height:1180px;
  1645. background:inherit;
  1646. background-color:rgba(255, 255, 255, 1);
  1647. border:none;
  1648. border-radius:0px;
  1649. -moz-box-shadow:none;
  1650. -webkit-box-shadow:none;
  1651. box-shadow:none;
  1652. }
  1653. #u37938 {
  1654. border-width:0px;
  1655. position:absolute;
  1656. left:330px;
  1657. top:50px;
  1658. width:1261px;
  1659. height:1180px;
  1660. display:flex;
  1661. }
  1662. #u37938 .text {
  1663. position:absolute;
  1664. align-self:center;
  1665. padding:2px 2px 2px 2px;
  1666. box-sizing:border-box;
  1667. width:100%;
  1668. }
  1669. #u37938_text {
  1670. border-width:0px;
  1671. word-wrap:break-word;
  1672. text-transform:none;
  1673. visibility:hidden;
  1674. }
  1675. #u37939 {
  1676. border-width:0px;
  1677. position:absolute;
  1678. left:0px;
  1679. top:0px;
  1680. width:0px;
  1681. height:0px;
  1682. }
  1683. #u37940_div {
  1684. border-width:0px;
  1685. position:absolute;
  1686. left:0px;
  1687. top:0px;
  1688. width:59px;
  1689. height:30px;
  1690. background:inherit;
  1691. background-color:rgba(24, 144, 255, 1);
  1692. box-sizing:border-box;
  1693. border-width:1px;
  1694. border-style:solid;
  1695. border-color:rgba(0, 153, 255, 1);
  1696. border-radius:4px;
  1697. -moz-box-shadow:none;
  1698. -webkit-box-shadow:none;
  1699. box-shadow:none;
  1700. font-family:'Microsoft YaHei', sans-serif;
  1701. font-weight:400;
  1702. font-style:normal;
  1703. font-size:14px;
  1704. color:#FFFFFF;
  1705. }
  1706. #u37940 {
  1707. border-width:0px;
  1708. position:absolute;
  1709. left:656px;
  1710. top:154px;
  1711. width:59px;
  1712. height:30px;
  1713. display:flex;
  1714. font-family:'Microsoft YaHei', sans-serif;
  1715. font-weight:400;
  1716. font-style:normal;
  1717. font-size:14px;
  1718. color:#FFFFFF;
  1719. }
  1720. #u37940 .text {
  1721. position:absolute;
  1722. align-self:center;
  1723. padding:5px 15px 5px 15px;
  1724. box-sizing:border-box;
  1725. width:100%;
  1726. }
  1727. #u37940_text {
  1728. border-width:0px;
  1729. white-space:nowrap;
  1730. text-transform:none;
  1731. }
  1732. #u37941_div {
  1733. border-width:0px;
  1734. position:absolute;
  1735. left:0px;
  1736. top:0px;
  1737. width:55px;
  1738. height:30px;
  1739. background:inherit;
  1740. background-color:rgba(255, 255, 255, 1);
  1741. box-sizing:border-box;
  1742. border-width:1px;
  1743. border-style:solid;
  1744. border-color:rgba(170, 170, 170, 1);
  1745. border-radius:4px;
  1746. -moz-box-shadow:none;
  1747. -webkit-box-shadow:none;
  1748. box-shadow:none;
  1749. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1750. font-weight:400;
  1751. font-style:normal;
  1752. font-size:12px;
  1753. color:#555555;
  1754. }
  1755. #u37941 {
  1756. border-width:0px;
  1757. position:absolute;
  1758. left:725px;
  1759. top:154px;
  1760. width:55px;
  1761. height:30px;
  1762. display:flex;
  1763. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1764. font-weight:400;
  1765. font-style:normal;
  1766. font-size:12px;
  1767. color:#555555;
  1768. }
  1769. #u37941 .text {
  1770. position:absolute;
  1771. align-self:center;
  1772. padding:5px 15px 5px 15px;
  1773. box-sizing:border-box;
  1774. width:100%;
  1775. }
  1776. #u37941_text {
  1777. border-width:0px;
  1778. white-space:nowrap;
  1779. text-transform:none;
  1780. }
  1781. #u37942 {
  1782. border-width:0px;
  1783. position:absolute;
  1784. left:356px;
  1785. top:251px;
  1786. width:1218px;
  1787. height:328px;
  1788. }
  1789. #u37943_img {
  1790. border-width:0px;
  1791. position:absolute;
  1792. left:0px;
  1793. top:0px;
  1794. width:88px;
  1795. height:44px;
  1796. }
  1797. #u37943 {
  1798. border-width:0px;
  1799. position:absolute;
  1800. left:0px;
  1801. top:0px;
  1802. width:88px;
  1803. height:44px;
  1804. display:flex;
  1805. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1806. font-weight:400;
  1807. font-style:normal;
  1808. font-size:12px;
  1809. color:#FFFFFF;
  1810. }
  1811. #u37943 .text {
  1812. position:absolute;
  1813. align-self:center;
  1814. padding:2px 2px 2px 0px;
  1815. box-sizing:border-box;
  1816. width:100%;
  1817. }
  1818. #u37943_text {
  1819. border-width:0px;
  1820. word-wrap:break-word;
  1821. text-transform:none;
  1822. }
  1823. #u37944_img {
  1824. border-width:0px;
  1825. position:absolute;
  1826. left:0px;
  1827. top:0px;
  1828. width:100px;
  1829. height:44px;
  1830. }
  1831. #u37944 {
  1832. border-width:0px;
  1833. position:absolute;
  1834. left:88px;
  1835. top:0px;
  1836. width:100px;
  1837. height:44px;
  1838. display:flex;
  1839. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1840. font-weight:400;
  1841. font-style:normal;
  1842. font-size:12px;
  1843. color:#FFFFFF;
  1844. }
  1845. #u37944 .text {
  1846. position:absolute;
  1847. align-self:center;
  1848. padding:2px 2px 2px 0px;
  1849. box-sizing:border-box;
  1850. width:100%;
  1851. }
  1852. #u37944_text {
  1853. border-width:0px;
  1854. word-wrap:break-word;
  1855. text-transform:none;
  1856. }
  1857. #u37945_img {
  1858. border-width:0px;
  1859. position:absolute;
  1860. left:0px;
  1861. top:0px;
  1862. width:88px;
  1863. height:44px;
  1864. }
  1865. #u37945 {
  1866. border-width:0px;
  1867. position:absolute;
  1868. left:188px;
  1869. top:0px;
  1870. width:88px;
  1871. height:44px;
  1872. display:flex;
  1873. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1874. font-weight:400;
  1875. font-style:normal;
  1876. font-size:12px;
  1877. color:#FFFFFF;
  1878. }
  1879. #u37945 .text {
  1880. position:absolute;
  1881. align-self:center;
  1882. padding:2px 2px 2px 0px;
  1883. box-sizing:border-box;
  1884. width:100%;
  1885. }
  1886. #u37945_text {
  1887. border-width:0px;
  1888. word-wrap:break-word;
  1889. text-transform:none;
  1890. }
  1891. #u37946_img {
  1892. border-width:0px;
  1893. position:absolute;
  1894. left:0px;
  1895. top:0px;
  1896. width:88px;
  1897. height:44px;
  1898. }
  1899. #u37946 {
  1900. border-width:0px;
  1901. position:absolute;
  1902. left:276px;
  1903. top:0px;
  1904. width:88px;
  1905. height:44px;
  1906. display:flex;
  1907. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1908. font-weight:400;
  1909. font-style:normal;
  1910. font-size:12px;
  1911. color:#FFFFFF;
  1912. }
  1913. #u37946 .text {
  1914. position:absolute;
  1915. align-self:center;
  1916. padding:2px 2px 2px 0px;
  1917. box-sizing:border-box;
  1918. width:100%;
  1919. }
  1920. #u37946_text {
  1921. border-width:0px;
  1922. word-wrap:break-word;
  1923. text-transform:none;
  1924. }
  1925. #u37947_img {
  1926. border-width:0px;
  1927. position:absolute;
  1928. left:0px;
  1929. top:0px;
  1930. width:88px;
  1931. height:44px;
  1932. }
  1933. #u37947 {
  1934. border-width:0px;
  1935. position:absolute;
  1936. left:364px;
  1937. top:0px;
  1938. width:88px;
  1939. height:44px;
  1940. display:flex;
  1941. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1942. font-weight:400;
  1943. font-style:normal;
  1944. font-size:12px;
  1945. color:#FFFFFF;
  1946. }
  1947. #u37947 .text {
  1948. position:absolute;
  1949. align-self:center;
  1950. padding:2px 2px 2px 0px;
  1951. box-sizing:border-box;
  1952. width:100%;
  1953. }
  1954. #u37947_text {
  1955. border-width:0px;
  1956. word-wrap:break-word;
  1957. text-transform:none;
  1958. }
  1959. #u37948_img {
  1960. border-width:0px;
  1961. position:absolute;
  1962. left:0px;
  1963. top:0px;
  1964. width:88px;
  1965. height:44px;
  1966. }
  1967. #u37948 {
  1968. border-width:0px;
  1969. position:absolute;
  1970. left:452px;
  1971. top:0px;
  1972. width:88px;
  1973. height:44px;
  1974. display:flex;
  1975. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1976. font-weight:400;
  1977. font-style:normal;
  1978. font-size:12px;
  1979. color:#FFFFFF;
  1980. }
  1981. #u37948 .text {
  1982. position:absolute;
  1983. align-self:center;
  1984. padding:2px 2px 2px 0px;
  1985. box-sizing:border-box;
  1986. width:100%;
  1987. }
  1988. #u37948_text {
  1989. border-width:0px;
  1990. word-wrap:break-word;
  1991. text-transform:none;
  1992. }
  1993. #u37949_img {
  1994. border-width:0px;
  1995. position:absolute;
  1996. left:0px;
  1997. top:0px;
  1998. width:99px;
  1999. height:44px;
  2000. }
  2001. #u37949 {
  2002. border-width:0px;
  2003. position:absolute;
  2004. left:540px;
  2005. top:0px;
  2006. width:99px;
  2007. height:44px;
  2008. display:flex;
  2009. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2010. font-weight:400;
  2011. font-style:normal;
  2012. font-size:12px;
  2013. color:#FFFFFF;
  2014. }
  2015. #u37949 .text {
  2016. position:absolute;
  2017. align-self:center;
  2018. padding:2px 2px 2px 0px;
  2019. box-sizing:border-box;
  2020. width:100%;
  2021. }
  2022. #u37949_text {
  2023. border-width:0px;
  2024. word-wrap:break-word;
  2025. text-transform:none;
  2026. }
  2027. #u37950_img {
  2028. border-width:0px;
  2029. position:absolute;
  2030. left:0px;
  2031. top:0px;
  2032. width:88px;
  2033. height:44px;
  2034. }
  2035. #u37950 {
  2036. border-width:0px;
  2037. position:absolute;
  2038. left:639px;
  2039. top:0px;
  2040. width:88px;
  2041. height:44px;
  2042. display:flex;
  2043. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2044. font-weight:400;
  2045. font-style:normal;
  2046. font-size:12px;
  2047. color:#FFFFFF;
  2048. }
  2049. #u37950 .text {
  2050. position:absolute;
  2051. align-self:center;
  2052. padding:2px 2px 2px 0px;
  2053. box-sizing:border-box;
  2054. width:100%;
  2055. }
  2056. #u37950_text {
  2057. border-width:0px;
  2058. word-wrap:break-word;
  2059. text-transform:none;
  2060. }
  2061. #u37951_img {
  2062. border-width:0px;
  2063. position:absolute;
  2064. left:0px;
  2065. top:0px;
  2066. width:127px;
  2067. height:44px;
  2068. }
  2069. #u37951 {
  2070. border-width:0px;
  2071. position:absolute;
  2072. left:727px;
  2073. top:0px;
  2074. width:127px;
  2075. height:44px;
  2076. display:flex;
  2077. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2078. font-weight:400;
  2079. font-style:normal;
  2080. font-size:12px;
  2081. color:#FFFFFF;
  2082. }
  2083. #u37951 .text {
  2084. position:absolute;
  2085. align-self:center;
  2086. padding:2px 2px 2px 0px;
  2087. box-sizing:border-box;
  2088. width:100%;
  2089. }
  2090. #u37951_text {
  2091. border-width:0px;
  2092. word-wrap:break-word;
  2093. text-transform:none;
  2094. }
  2095. #u37952_img {
  2096. border-width:0px;
  2097. position:absolute;
  2098. left:0px;
  2099. top:0px;
  2100. width:127px;
  2101. height:44px;
  2102. }
  2103. #u37952 {
  2104. border-width:0px;
  2105. position:absolute;
  2106. left:854px;
  2107. top:0px;
  2108. width:127px;
  2109. height:44px;
  2110. display:flex;
  2111. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2112. font-weight:400;
  2113. font-style:normal;
  2114. font-size:12px;
  2115. color:#FFFFFF;
  2116. }
  2117. #u37952 .text {
  2118. position:absolute;
  2119. align-self:center;
  2120. padding:2px 2px 2px 0px;
  2121. box-sizing:border-box;
  2122. width:100%;
  2123. }
  2124. #u37952_text {
  2125. border-width:0px;
  2126. word-wrap:break-word;
  2127. text-transform:none;
  2128. }
  2129. #u37953_img {
  2130. border-width:0px;
  2131. position:absolute;
  2132. left:0px;
  2133. top:0px;
  2134. width:119px;
  2135. height:44px;
  2136. }
  2137. #u37953 {
  2138. border-width:0px;
  2139. position:absolute;
  2140. left:981px;
  2141. top:0px;
  2142. width:119px;
  2143. height:44px;
  2144. display:flex;
  2145. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2146. font-weight:400;
  2147. font-style:normal;
  2148. font-size:12px;
  2149. color:#FFFFFF;
  2150. }
  2151. #u37953 .text {
  2152. position:absolute;
  2153. align-self:center;
  2154. padding:2px 2px 2px 0px;
  2155. box-sizing:border-box;
  2156. width:100%;
  2157. }
  2158. #u37953_text {
  2159. border-width:0px;
  2160. word-wrap:break-word;
  2161. text-transform:none;
  2162. }
  2163. #u37954_img {
  2164. border-width:0px;
  2165. position:absolute;
  2166. left:0px;
  2167. top:0px;
  2168. width:118px;
  2169. height:44px;
  2170. }
  2171. #u37954 {
  2172. border-width:0px;
  2173. position:absolute;
  2174. left:1100px;
  2175. top:0px;
  2176. width:118px;
  2177. height:44px;
  2178. display:flex;
  2179. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2180. font-weight:400;
  2181. font-style:normal;
  2182. font-size:12px;
  2183. color:#FFFFFF;
  2184. }
  2185. #u37954 .text {
  2186. position:absolute;
  2187. align-self:center;
  2188. padding:2px 2px 2px 0px;
  2189. box-sizing:border-box;
  2190. width:100%;
  2191. }
  2192. #u37954_text {
  2193. border-width:0px;
  2194. word-wrap:break-word;
  2195. text-transform:none;
  2196. }
  2197. #u37955_img {
  2198. border-width:0px;
  2199. position:absolute;
  2200. left:0px;
  2201. top:0px;
  2202. width:88px;
  2203. height:38px;
  2204. }
  2205. #u37955 {
  2206. border-width:0px;
  2207. position:absolute;
  2208. left:0px;
  2209. top:44px;
  2210. width:88px;
  2211. height:38px;
  2212. display:flex;
  2213. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2214. font-weight:400;
  2215. font-style:normal;
  2216. font-size:12px;
  2217. color:#333333;
  2218. }
  2219. #u37955 .text {
  2220. position:absolute;
  2221. align-self:center;
  2222. padding:2px 2px 2px 0px;
  2223. box-sizing:border-box;
  2224. width:100%;
  2225. }
  2226. #u37955_text {
  2227. border-width:0px;
  2228. word-wrap:break-word;
  2229. text-transform:none;
  2230. visibility:hidden;
  2231. }
  2232. #u37956_img {
  2233. border-width:0px;
  2234. position:absolute;
  2235. left:0px;
  2236. top:0px;
  2237. width:100px;
  2238. height:38px;
  2239. }
  2240. #u37956 {
  2241. border-width:0px;
  2242. position:absolute;
  2243. left:88px;
  2244. top:44px;
  2245. width:100px;
  2246. height:38px;
  2247. display:flex;
  2248. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2249. font-weight:400;
  2250. font-style:normal;
  2251. font-size:12px;
  2252. color:#333333;
  2253. }
  2254. #u37956 .text {
  2255. position:absolute;
  2256. align-self:center;
  2257. padding:2px 2px 2px 0px;
  2258. box-sizing:border-box;
  2259. width:100%;
  2260. }
  2261. #u37956_text {
  2262. border-width:0px;
  2263. word-wrap:break-word;
  2264. text-transform:none;
  2265. visibility:hidden;
  2266. }
  2267. #u37957_img {
  2268. border-width:0px;
  2269. position:absolute;
  2270. left:0px;
  2271. top:0px;
  2272. width:88px;
  2273. height:38px;
  2274. }
  2275. #u37957 {
  2276. border-width:0px;
  2277. position:absolute;
  2278. left:188px;
  2279. top:44px;
  2280. width:88px;
  2281. height:38px;
  2282. display:flex;
  2283. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2284. font-weight:400;
  2285. font-style:normal;
  2286. font-size:12px;
  2287. color:#333333;
  2288. }
  2289. #u37957 .text {
  2290. position:absolute;
  2291. align-self:center;
  2292. padding:2px 2px 2px 0px;
  2293. box-sizing:border-box;
  2294. width:100%;
  2295. }
  2296. #u37957_text {
  2297. border-width:0px;
  2298. word-wrap:break-word;
  2299. text-transform:none;
  2300. visibility:hidden;
  2301. }
  2302. #u37958_img {
  2303. border-width:0px;
  2304. position:absolute;
  2305. left:0px;
  2306. top:0px;
  2307. width:88px;
  2308. height:38px;
  2309. }
  2310. #u37958 {
  2311. border-width:0px;
  2312. position:absolute;
  2313. left:276px;
  2314. top:44px;
  2315. width:88px;
  2316. height:38px;
  2317. display:flex;
  2318. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2319. font-weight:400;
  2320. font-style:normal;
  2321. font-size:12px;
  2322. color:#333333;
  2323. }
  2324. #u37958 .text {
  2325. position:absolute;
  2326. align-self:center;
  2327. padding:2px 2px 2px 0px;
  2328. box-sizing:border-box;
  2329. width:100%;
  2330. }
  2331. #u37958_text {
  2332. border-width:0px;
  2333. word-wrap:break-word;
  2334. text-transform:none;
  2335. visibility:hidden;
  2336. }
  2337. #u37959_img {
  2338. border-width:0px;
  2339. position:absolute;
  2340. left:0px;
  2341. top:0px;
  2342. width:88px;
  2343. height:38px;
  2344. }
  2345. #u37959 {
  2346. border-width:0px;
  2347. position:absolute;
  2348. left:364px;
  2349. top:44px;
  2350. width:88px;
  2351. height:38px;
  2352. display:flex;
  2353. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2354. font-weight:400;
  2355. font-style:normal;
  2356. font-size:12px;
  2357. color:#333333;
  2358. }
  2359. #u37959 .text {
  2360. position:absolute;
  2361. align-self:center;
  2362. padding:2px 2px 2px 0px;
  2363. box-sizing:border-box;
  2364. width:100%;
  2365. }
  2366. #u37959_text {
  2367. border-width:0px;
  2368. word-wrap:break-word;
  2369. text-transform:none;
  2370. visibility:hidden;
  2371. }
  2372. #u37960_img {
  2373. border-width:0px;
  2374. position:absolute;
  2375. left:0px;
  2376. top:0px;
  2377. width:88px;
  2378. height:38px;
  2379. }
  2380. #u37960 {
  2381. border-width:0px;
  2382. position:absolute;
  2383. left:452px;
  2384. top:44px;
  2385. width:88px;
  2386. height:38px;
  2387. display:flex;
  2388. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2389. font-weight:400;
  2390. font-style:normal;
  2391. font-size:12px;
  2392. color:#333333;
  2393. }
  2394. #u37960 .text {
  2395. position:absolute;
  2396. align-self:center;
  2397. padding:2px 2px 2px 0px;
  2398. box-sizing:border-box;
  2399. width:100%;
  2400. }
  2401. #u37960_text {
  2402. border-width:0px;
  2403. word-wrap:break-word;
  2404. text-transform:none;
  2405. visibility:hidden;
  2406. }
  2407. #u37961_img {
  2408. border-width:0px;
  2409. position:absolute;
  2410. left:0px;
  2411. top:0px;
  2412. width:99px;
  2413. height:38px;
  2414. }
  2415. #u37961 {
  2416. border-width:0px;
  2417. position:absolute;
  2418. left:540px;
  2419. top:44px;
  2420. width:99px;
  2421. height:38px;
  2422. display:flex;
  2423. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2424. font-weight:400;
  2425. font-style:normal;
  2426. font-size:12px;
  2427. color:#333333;
  2428. }
  2429. #u37961 .text {
  2430. position:absolute;
  2431. align-self:center;
  2432. padding:2px 2px 2px 0px;
  2433. box-sizing:border-box;
  2434. width:100%;
  2435. }
  2436. #u37961_text {
  2437. border-width:0px;
  2438. word-wrap:break-word;
  2439. text-transform:none;
  2440. visibility:hidden;
  2441. }
  2442. #u37962_img {
  2443. border-width:0px;
  2444. position:absolute;
  2445. left:0px;
  2446. top:0px;
  2447. width:88px;
  2448. height:38px;
  2449. }
  2450. #u37962 {
  2451. border-width:0px;
  2452. position:absolute;
  2453. left:639px;
  2454. top:44px;
  2455. width:88px;
  2456. height:38px;
  2457. display:flex;
  2458. font-family:'AppleColorEmoji', 'Apple Color Emoji', sans-serif;
  2459. font-weight:400;
  2460. font-style:normal;
  2461. font-size:12px;
  2462. color:#333333;
  2463. }
  2464. #u37962 .text {
  2465. position:absolute;
  2466. align-self:center;
  2467. padding:2px 2px 2px 0px;
  2468. box-sizing:border-box;
  2469. width:100%;
  2470. }
  2471. #u37962_text {
  2472. border-width:0px;
  2473. word-wrap:break-word;
  2474. text-transform:none;
  2475. visibility:hidden;
  2476. }
  2477. #u37963_img {
  2478. border-width:0px;
  2479. position:absolute;
  2480. left:0px;
  2481. top:0px;
  2482. width:127px;
  2483. height:38px;
  2484. }
  2485. #u37963 {
  2486. border-width:0px;
  2487. position:absolute;
  2488. left:727px;
  2489. top:44px;
  2490. width:127px;
  2491. height:38px;
  2492. display:flex;
  2493. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2494. font-weight:400;
  2495. font-style:normal;
  2496. font-size:12px;
  2497. color:#333333;
  2498. }
  2499. #u37963 .text {
  2500. position:absolute;
  2501. align-self:center;
  2502. padding:2px 2px 2px 0px;
  2503. box-sizing:border-box;
  2504. width:100%;
  2505. }
  2506. #u37963_text {
  2507. border-width:0px;
  2508. word-wrap:break-word;
  2509. text-transform:none;
  2510. visibility:hidden;
  2511. }
  2512. #u37964_img {
  2513. border-width:0px;
  2514. position:absolute;
  2515. left:0px;
  2516. top:0px;
  2517. width:127px;
  2518. height:38px;
  2519. }
  2520. #u37964 {
  2521. border-width:0px;
  2522. position:absolute;
  2523. left:854px;
  2524. top:44px;
  2525. width:127px;
  2526. height:38px;
  2527. display:flex;
  2528. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2529. font-weight:400;
  2530. font-style:normal;
  2531. font-size:12px;
  2532. color:#333333;
  2533. }
  2534. #u37964 .text {
  2535. position:absolute;
  2536. align-self:center;
  2537. padding:2px 2px 2px 0px;
  2538. box-sizing:border-box;
  2539. width:100%;
  2540. }
  2541. #u37964_text {
  2542. border-width:0px;
  2543. word-wrap:break-word;
  2544. text-transform:none;
  2545. visibility:hidden;
  2546. }
  2547. #u37965_img {
  2548. border-width:0px;
  2549. position:absolute;
  2550. left:0px;
  2551. top:0px;
  2552. width:119px;
  2553. height:38px;
  2554. }
  2555. #u37965 {
  2556. border-width:0px;
  2557. position:absolute;
  2558. left:981px;
  2559. top:44px;
  2560. width:119px;
  2561. height:38px;
  2562. display:flex;
  2563. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2564. font-weight:400;
  2565. font-style:normal;
  2566. font-size:12px;
  2567. color:#333333;
  2568. }
  2569. #u37965 .text {
  2570. position:absolute;
  2571. align-self:center;
  2572. padding:2px 2px 2px 0px;
  2573. box-sizing:border-box;
  2574. width:100%;
  2575. }
  2576. #u37965_text {
  2577. border-width:0px;
  2578. word-wrap:break-word;
  2579. text-transform:none;
  2580. visibility:hidden;
  2581. }
  2582. #u37966_img {
  2583. border-width:0px;
  2584. position:absolute;
  2585. left:0px;
  2586. top:0px;
  2587. width:118px;
  2588. height:38px;
  2589. }
  2590. #u37966 {
  2591. border-width:0px;
  2592. position:absolute;
  2593. left:1100px;
  2594. top:44px;
  2595. width:118px;
  2596. height:38px;
  2597. display:flex;
  2598. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2599. font-weight:400;
  2600. font-style:normal;
  2601. font-size:12px;
  2602. color:#0089FE;
  2603. }
  2604. #u37966 .text {
  2605. position:absolute;
  2606. align-self:center;
  2607. padding:2px 2px 2px 0px;
  2608. box-sizing:border-box;
  2609. width:100%;
  2610. }
  2611. #u37966_text {
  2612. border-width:0px;
  2613. word-wrap:break-word;
  2614. text-transform:none;
  2615. }
  2616. #u37967_img {
  2617. border-width:0px;
  2618. position:absolute;
  2619. left:0px;
  2620. top:0px;
  2621. width:88px;
  2622. height:38px;
  2623. }
  2624. #u37967 {
  2625. border-width:0px;
  2626. position:absolute;
  2627. left:0px;
  2628. top:82px;
  2629. width:88px;
  2630. height:38px;
  2631. display:flex;
  2632. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2633. font-weight:400;
  2634. font-style:normal;
  2635. font-size:12px;
  2636. color:#333333;
  2637. }
  2638. #u37967 .text {
  2639. position:absolute;
  2640. align-self:center;
  2641. padding:2px 2px 2px 0px;
  2642. box-sizing:border-box;
  2643. width:100%;
  2644. }
  2645. #u37967_text {
  2646. border-width:0px;
  2647. word-wrap:break-word;
  2648. text-transform:none;
  2649. visibility:hidden;
  2650. }
  2651. #u37968_img {
  2652. border-width:0px;
  2653. position:absolute;
  2654. left:0px;
  2655. top:0px;
  2656. width:100px;
  2657. height:38px;
  2658. }
  2659. #u37968 {
  2660. border-width:0px;
  2661. position:absolute;
  2662. left:88px;
  2663. top:82px;
  2664. width:100px;
  2665. height:38px;
  2666. display:flex;
  2667. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2668. font-weight:400;
  2669. font-style:normal;
  2670. font-size:12px;
  2671. color:#333333;
  2672. }
  2673. #u37968 .text {
  2674. position:absolute;
  2675. align-self:center;
  2676. padding:2px 2px 2px 0px;
  2677. box-sizing:border-box;
  2678. width:100%;
  2679. }
  2680. #u37968_text {
  2681. border-width:0px;
  2682. word-wrap:break-word;
  2683. text-transform:none;
  2684. visibility:hidden;
  2685. }
  2686. #u37969_img {
  2687. border-width:0px;
  2688. position:absolute;
  2689. left:0px;
  2690. top:0px;
  2691. width:88px;
  2692. height:38px;
  2693. }
  2694. #u37969 {
  2695. border-width:0px;
  2696. position:absolute;
  2697. left:188px;
  2698. top:82px;
  2699. width:88px;
  2700. height:38px;
  2701. display:flex;
  2702. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2703. font-weight:400;
  2704. font-style:normal;
  2705. font-size:12px;
  2706. color:#333333;
  2707. }
  2708. #u37969 .text {
  2709. position:absolute;
  2710. align-self:center;
  2711. padding:2px 2px 2px 0px;
  2712. box-sizing:border-box;
  2713. width:100%;
  2714. }
  2715. #u37969_text {
  2716. border-width:0px;
  2717. word-wrap:break-word;
  2718. text-transform:none;
  2719. visibility:hidden;
  2720. }
  2721. #u37970_img {
  2722. border-width:0px;
  2723. position:absolute;
  2724. left:0px;
  2725. top:0px;
  2726. width:88px;
  2727. height:38px;
  2728. }
  2729. #u37970 {
  2730. border-width:0px;
  2731. position:absolute;
  2732. left:276px;
  2733. top:82px;
  2734. width:88px;
  2735. height:38px;
  2736. display:flex;
  2737. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2738. font-weight:400;
  2739. font-style:normal;
  2740. font-size:12px;
  2741. color:#333333;
  2742. }
  2743. #u37970 .text {
  2744. position:absolute;
  2745. align-self:center;
  2746. padding:2px 2px 2px 0px;
  2747. box-sizing:border-box;
  2748. width:100%;
  2749. }
  2750. #u37970_text {
  2751. border-width:0px;
  2752. word-wrap:break-word;
  2753. text-transform:none;
  2754. visibility:hidden;
  2755. }
  2756. #u37971_img {
  2757. border-width:0px;
  2758. position:absolute;
  2759. left:0px;
  2760. top:0px;
  2761. width:88px;
  2762. height:38px;
  2763. }
  2764. #u37971 {
  2765. border-width:0px;
  2766. position:absolute;
  2767. left:364px;
  2768. top:82px;
  2769. width:88px;
  2770. height:38px;
  2771. display:flex;
  2772. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2773. font-weight:400;
  2774. font-style:normal;
  2775. font-size:12px;
  2776. color:#333333;
  2777. }
  2778. #u37971 .text {
  2779. position:absolute;
  2780. align-self:center;
  2781. padding:2px 2px 2px 0px;
  2782. box-sizing:border-box;
  2783. width:100%;
  2784. }
  2785. #u37971_text {
  2786. border-width:0px;
  2787. word-wrap:break-word;
  2788. text-transform:none;
  2789. visibility:hidden;
  2790. }
  2791. #u37972_img {
  2792. border-width:0px;
  2793. position:absolute;
  2794. left:0px;
  2795. top:0px;
  2796. width:88px;
  2797. height:38px;
  2798. }
  2799. #u37972 {
  2800. border-width:0px;
  2801. position:absolute;
  2802. left:452px;
  2803. top:82px;
  2804. width:88px;
  2805. height:38px;
  2806. display:flex;
  2807. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2808. font-weight:400;
  2809. font-style:normal;
  2810. font-size:12px;
  2811. color:#333333;
  2812. }
  2813. #u37972 .text {
  2814. position:absolute;
  2815. align-self:center;
  2816. padding:2px 2px 2px 0px;
  2817. box-sizing:border-box;
  2818. width:100%;
  2819. }
  2820. #u37972_text {
  2821. border-width:0px;
  2822. word-wrap:break-word;
  2823. text-transform:none;
  2824. visibility:hidden;
  2825. }
  2826. #u37973_img {
  2827. border-width:0px;
  2828. position:absolute;
  2829. left:0px;
  2830. top:0px;
  2831. width:99px;
  2832. height:38px;
  2833. }
  2834. #u37973 {
  2835. border-width:0px;
  2836. position:absolute;
  2837. left:540px;
  2838. top:82px;
  2839. width:99px;
  2840. height:38px;
  2841. display:flex;
  2842. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2843. font-weight:400;
  2844. font-style:normal;
  2845. font-size:12px;
  2846. color:#333333;
  2847. }
  2848. #u37973 .text {
  2849. position:absolute;
  2850. align-self:center;
  2851. padding:2px 2px 2px 0px;
  2852. box-sizing:border-box;
  2853. width:100%;
  2854. }
  2855. #u37973_text {
  2856. border-width:0px;
  2857. word-wrap:break-word;
  2858. text-transform:none;
  2859. visibility:hidden;
  2860. }
  2861. #u37974_img {
  2862. border-width:0px;
  2863. position:absolute;
  2864. left:0px;
  2865. top:0px;
  2866. width:88px;
  2867. height:38px;
  2868. }
  2869. #u37974 {
  2870. border-width:0px;
  2871. position:absolute;
  2872. left:639px;
  2873. top:82px;
  2874. width:88px;
  2875. height:38px;
  2876. display:flex;
  2877. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2878. font-weight:400;
  2879. font-style:normal;
  2880. font-size:12px;
  2881. color:#333333;
  2882. }
  2883. #u37974 .text {
  2884. position:absolute;
  2885. align-self:center;
  2886. padding:2px 2px 2px 0px;
  2887. box-sizing:border-box;
  2888. width:100%;
  2889. }
  2890. #u37974_text {
  2891. border-width:0px;
  2892. word-wrap:break-word;
  2893. text-transform:none;
  2894. visibility:hidden;
  2895. }
  2896. #u37975_img {
  2897. border-width:0px;
  2898. position:absolute;
  2899. left:0px;
  2900. top:0px;
  2901. width:127px;
  2902. height:38px;
  2903. }
  2904. #u37975 {
  2905. border-width:0px;
  2906. position:absolute;
  2907. left:727px;
  2908. top:82px;
  2909. width:127px;
  2910. height:38px;
  2911. display:flex;
  2912. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2913. font-weight:400;
  2914. font-style:normal;
  2915. font-size:12px;
  2916. color:#333333;
  2917. }
  2918. #u37975 .text {
  2919. position:absolute;
  2920. align-self:center;
  2921. padding:2px 2px 2px 0px;
  2922. box-sizing:border-box;
  2923. width:100%;
  2924. }
  2925. #u37975_text {
  2926. border-width:0px;
  2927. word-wrap:break-word;
  2928. text-transform:none;
  2929. visibility:hidden;
  2930. }
  2931. #u37976_img {
  2932. border-width:0px;
  2933. position:absolute;
  2934. left:0px;
  2935. top:0px;
  2936. width:127px;
  2937. height:38px;
  2938. }
  2939. #u37976 {
  2940. border-width:0px;
  2941. position:absolute;
  2942. left:854px;
  2943. top:82px;
  2944. width:127px;
  2945. height:38px;
  2946. display:flex;
  2947. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2948. font-weight:400;
  2949. font-style:normal;
  2950. font-size:12px;
  2951. color:#333333;
  2952. }
  2953. #u37976 .text {
  2954. position:absolute;
  2955. align-self:center;
  2956. padding:2px 2px 2px 0px;
  2957. box-sizing:border-box;
  2958. width:100%;
  2959. }
  2960. #u37976_text {
  2961. border-width:0px;
  2962. word-wrap:break-word;
  2963. text-transform:none;
  2964. visibility:hidden;
  2965. }
  2966. #u37977_img {
  2967. border-width:0px;
  2968. position:absolute;
  2969. left:0px;
  2970. top:0px;
  2971. width:119px;
  2972. height:38px;
  2973. }
  2974. #u37977 {
  2975. border-width:0px;
  2976. position:absolute;
  2977. left:981px;
  2978. top:82px;
  2979. width:119px;
  2980. height:38px;
  2981. display:flex;
  2982. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2983. font-weight:400;
  2984. font-style:normal;
  2985. font-size:12px;
  2986. color:#333333;
  2987. }
  2988. #u37977 .text {
  2989. position:absolute;
  2990. align-self:center;
  2991. padding:2px 2px 2px 0px;
  2992. box-sizing:border-box;
  2993. width:100%;
  2994. }
  2995. #u37977_text {
  2996. border-width:0px;
  2997. word-wrap:break-word;
  2998. text-transform:none;
  2999. visibility:hidden;
  3000. }
  3001. #u37978_img {
  3002. border-width:0px;
  3003. position:absolute;
  3004. left:0px;
  3005. top:0px;
  3006. width:118px;
  3007. height:38px;
  3008. }
  3009. #u37978 {
  3010. border-width:0px;
  3011. position:absolute;
  3012. left:1100px;
  3013. top:82px;
  3014. width:118px;
  3015. height:38px;
  3016. display:flex;
  3017. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3018. font-weight:400;
  3019. font-style:normal;
  3020. font-size:12px;
  3021. color:#0089FE;
  3022. }
  3023. #u37978 .text {
  3024. position:absolute;
  3025. align-self:center;
  3026. padding:2px 2px 2px 0px;
  3027. box-sizing:border-box;
  3028. width:100%;
  3029. }
  3030. #u37978_text {
  3031. border-width:0px;
  3032. word-wrap:break-word;
  3033. text-transform:none;
  3034. }
  3035. #u37979_img {
  3036. border-width:0px;
  3037. position:absolute;
  3038. left:0px;
  3039. top:0px;
  3040. width:88px;
  3041. height:38px;
  3042. }
  3043. #u37979 {
  3044. border-width:0px;
  3045. position:absolute;
  3046. left:0px;
  3047. top:120px;
  3048. width:88px;
  3049. height:38px;
  3050. display:flex;
  3051. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3052. font-weight:400;
  3053. font-style:normal;
  3054. font-size:12px;
  3055. color:#333333;
  3056. }
  3057. #u37979 .text {
  3058. position:absolute;
  3059. align-self:center;
  3060. padding:2px 2px 2px 0px;
  3061. box-sizing:border-box;
  3062. width:100%;
  3063. }
  3064. #u37979_text {
  3065. border-width:0px;
  3066. word-wrap:break-word;
  3067. text-transform:none;
  3068. visibility:hidden;
  3069. }
  3070. #u37980_img {
  3071. border-width:0px;
  3072. position:absolute;
  3073. left:0px;
  3074. top:0px;
  3075. width:100px;
  3076. height:38px;
  3077. }
  3078. #u37980 {
  3079. border-width:0px;
  3080. position:absolute;
  3081. left:88px;
  3082. top:120px;
  3083. width:100px;
  3084. height:38px;
  3085. display:flex;
  3086. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3087. font-weight:400;
  3088. font-style:normal;
  3089. font-size:12px;
  3090. color:#333333;
  3091. }
  3092. #u37980 .text {
  3093. position:absolute;
  3094. align-self:center;
  3095. padding:2px 2px 2px 0px;
  3096. box-sizing:border-box;
  3097. width:100%;
  3098. }
  3099. #u37980_text {
  3100. border-width:0px;
  3101. word-wrap:break-word;
  3102. text-transform:none;
  3103. visibility:hidden;
  3104. }
  3105. #u37981_img {
  3106. border-width:0px;
  3107. position:absolute;
  3108. left:0px;
  3109. top:0px;
  3110. width:88px;
  3111. height:38px;
  3112. }
  3113. #u37981 {
  3114. border-width:0px;
  3115. position:absolute;
  3116. left:188px;
  3117. top:120px;
  3118. width:88px;
  3119. height:38px;
  3120. display:flex;
  3121. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3122. font-weight:400;
  3123. font-style:normal;
  3124. font-size:12px;
  3125. color:#333333;
  3126. }
  3127. #u37981 .text {
  3128. position:absolute;
  3129. align-self:center;
  3130. padding:2px 2px 2px 0px;
  3131. box-sizing:border-box;
  3132. width:100%;
  3133. }
  3134. #u37981_text {
  3135. border-width:0px;
  3136. word-wrap:break-word;
  3137. text-transform:none;
  3138. visibility:hidden;
  3139. }
  3140. #u37982_img {
  3141. border-width:0px;
  3142. position:absolute;
  3143. left:0px;
  3144. top:0px;
  3145. width:88px;
  3146. height:38px;
  3147. }
  3148. #u37982 {
  3149. border-width:0px;
  3150. position:absolute;
  3151. left:276px;
  3152. top:120px;
  3153. width:88px;
  3154. height:38px;
  3155. display:flex;
  3156. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3157. font-weight:400;
  3158. font-style:normal;
  3159. font-size:12px;
  3160. color:#333333;
  3161. }
  3162. #u37982 .text {
  3163. position:absolute;
  3164. align-self:center;
  3165. padding:2px 2px 2px 0px;
  3166. box-sizing:border-box;
  3167. width:100%;
  3168. }
  3169. #u37982_text {
  3170. border-width:0px;
  3171. word-wrap:break-word;
  3172. text-transform:none;
  3173. visibility:hidden;
  3174. }
  3175. #u37983_img {
  3176. border-width:0px;
  3177. position:absolute;
  3178. left:0px;
  3179. top:0px;
  3180. width:88px;
  3181. height:38px;
  3182. }
  3183. #u37983 {
  3184. border-width:0px;
  3185. position:absolute;
  3186. left:364px;
  3187. top:120px;
  3188. width:88px;
  3189. height:38px;
  3190. display:flex;
  3191. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3192. font-weight:400;
  3193. font-style:normal;
  3194. font-size:12px;
  3195. color:#333333;
  3196. }
  3197. #u37983 .text {
  3198. position:absolute;
  3199. align-self:center;
  3200. padding:2px 2px 2px 0px;
  3201. box-sizing:border-box;
  3202. width:100%;
  3203. }
  3204. #u37983_text {
  3205. border-width:0px;
  3206. word-wrap:break-word;
  3207. text-transform:none;
  3208. visibility:hidden;
  3209. }
  3210. #u37984_img {
  3211. border-width:0px;
  3212. position:absolute;
  3213. left:0px;
  3214. top:0px;
  3215. width:88px;
  3216. height:38px;
  3217. }
  3218. #u37984 {
  3219. border-width:0px;
  3220. position:absolute;
  3221. left:452px;
  3222. top:120px;
  3223. width:88px;
  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. #u37984 .text {
  3233. position:absolute;
  3234. align-self:center;
  3235. padding:2px 2px 2px 0px;
  3236. box-sizing:border-box;
  3237. width:100%;
  3238. }
  3239. #u37984_text {
  3240. border-width:0px;
  3241. word-wrap:break-word;
  3242. text-transform:none;
  3243. visibility:hidden;
  3244. }
  3245. #u37985_img {
  3246. border-width:0px;
  3247. position:absolute;
  3248. left:0px;
  3249. top:0px;
  3250. width:99px;
  3251. height:38px;
  3252. }
  3253. #u37985 {
  3254. border-width:0px;
  3255. position:absolute;
  3256. left:540px;
  3257. top:120px;
  3258. width:99px;
  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. #u37985 .text {
  3268. position:absolute;
  3269. align-self:center;
  3270. padding:2px 2px 2px 0px;
  3271. box-sizing:border-box;
  3272. width:100%;
  3273. }
  3274. #u37985_text {
  3275. border-width:0px;
  3276. word-wrap:break-word;
  3277. text-transform:none;
  3278. visibility:hidden;
  3279. }
  3280. #u37986_img {
  3281. border-width:0px;
  3282. position:absolute;
  3283. left:0px;
  3284. top:0px;
  3285. width:88px;
  3286. height:38px;
  3287. }
  3288. #u37986 {
  3289. border-width:0px;
  3290. position:absolute;
  3291. left:639px;
  3292. top:120px;
  3293. width:88px;
  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. #u37986 .text {
  3303. position:absolute;
  3304. align-self:center;
  3305. padding:2px 2px 2px 0px;
  3306. box-sizing:border-box;
  3307. width:100%;
  3308. }
  3309. #u37986_text {
  3310. border-width:0px;
  3311. word-wrap:break-word;
  3312. text-transform:none;
  3313. visibility:hidden;
  3314. }
  3315. #u37987_img {
  3316. border-width:0px;
  3317. position:absolute;
  3318. left:0px;
  3319. top:0px;
  3320. width:127px;
  3321. height:38px;
  3322. }
  3323. #u37987 {
  3324. border-width:0px;
  3325. position:absolute;
  3326. left:727px;
  3327. top:120px;
  3328. width:127px;
  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. #u37987 .text {
  3338. position:absolute;
  3339. align-self:center;
  3340. padding:2px 2px 2px 0px;
  3341. box-sizing:border-box;
  3342. width:100%;
  3343. }
  3344. #u37987_text {
  3345. border-width:0px;
  3346. word-wrap:break-word;
  3347. text-transform:none;
  3348. visibility:hidden;
  3349. }
  3350. #u37988_img {
  3351. border-width:0px;
  3352. position:absolute;
  3353. left:0px;
  3354. top:0px;
  3355. width:127px;
  3356. height:38px;
  3357. }
  3358. #u37988 {
  3359. border-width:0px;
  3360. position:absolute;
  3361. left:854px;
  3362. top:120px;
  3363. width:127px;
  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. #u37988 .text {
  3373. position:absolute;
  3374. align-self:center;
  3375. padding:2px 2px 2px 0px;
  3376. box-sizing:border-box;
  3377. width:100%;
  3378. }
  3379. #u37988_text {
  3380. border-width:0px;
  3381. word-wrap:break-word;
  3382. text-transform:none;
  3383. visibility:hidden;
  3384. }
  3385. #u37989_img {
  3386. border-width:0px;
  3387. position:absolute;
  3388. left:0px;
  3389. top:0px;
  3390. width:119px;
  3391. height:38px;
  3392. }
  3393. #u37989 {
  3394. border-width:0px;
  3395. position:absolute;
  3396. left:981px;
  3397. top:120px;
  3398. width:119px;
  3399. height:38px;
  3400. display:flex;
  3401. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3402. font-weight:400;
  3403. font-style:normal;
  3404. font-size:12px;
  3405. color:#333333;
  3406. }
  3407. #u37989 .text {
  3408. position:absolute;
  3409. align-self:center;
  3410. padding:2px 2px 2px 0px;
  3411. box-sizing:border-box;
  3412. width:100%;
  3413. }
  3414. #u37989_text {
  3415. border-width:0px;
  3416. word-wrap:break-word;
  3417. text-transform:none;
  3418. visibility:hidden;
  3419. }
  3420. #u37990_img {
  3421. border-width:0px;
  3422. position:absolute;
  3423. left:0px;
  3424. top:0px;
  3425. width:118px;
  3426. height:38px;
  3427. }
  3428. #u37990 {
  3429. border-width:0px;
  3430. position:absolute;
  3431. left:1100px;
  3432. top:120px;
  3433. width:118px;
  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:#0089FE;
  3441. }
  3442. #u37990 .text {
  3443. position:absolute;
  3444. align-self:center;
  3445. padding:2px 2px 2px 0px;
  3446. box-sizing:border-box;
  3447. width:100%;
  3448. }
  3449. #u37990_text {
  3450. border-width:0px;
  3451. word-wrap:break-word;
  3452. text-transform:none;
  3453. visibility:hidden;
  3454. }
  3455. #u37991_img {
  3456. border-width:0px;
  3457. position:absolute;
  3458. left:0px;
  3459. top:0px;
  3460. width:88px;
  3461. height:38px;
  3462. }
  3463. #u37991 {
  3464. border-width:0px;
  3465. position:absolute;
  3466. left:0px;
  3467. top:158px;
  3468. width:88px;
  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. #u37991 .text {
  3478. position:absolute;
  3479. align-self:center;
  3480. padding:2px 2px 2px 0px;
  3481. box-sizing:border-box;
  3482. width:100%;
  3483. }
  3484. #u37991_text {
  3485. border-width:0px;
  3486. word-wrap:break-word;
  3487. text-transform:none;
  3488. visibility:hidden;
  3489. }
  3490. #u37992_img {
  3491. border-width:0px;
  3492. position:absolute;
  3493. left:0px;
  3494. top:0px;
  3495. width:100px;
  3496. height:38px;
  3497. }
  3498. #u37992 {
  3499. border-width:0px;
  3500. position:absolute;
  3501. left:88px;
  3502. top:158px;
  3503. width:100px;
  3504. height:38px;
  3505. display:flex;
  3506. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3507. font-weight:400;
  3508. font-style:normal;
  3509. font-size:12px;
  3510. color:#333333;
  3511. }
  3512. #u37992 .text {
  3513. position:absolute;
  3514. align-self:center;
  3515. padding:2px 2px 2px 0px;
  3516. box-sizing:border-box;
  3517. width:100%;
  3518. }
  3519. #u37992_text {
  3520. border-width:0px;
  3521. word-wrap:break-word;
  3522. text-transform:none;
  3523. visibility:hidden;
  3524. }
  3525. #u37993_img {
  3526. border-width:0px;
  3527. position:absolute;
  3528. left:0px;
  3529. top:0px;
  3530. width:88px;
  3531. height:38px;
  3532. }
  3533. #u37993 {
  3534. border-width:0px;
  3535. position:absolute;
  3536. left:188px;
  3537. top:158px;
  3538. width:88px;
  3539. height:38px;
  3540. display:flex;
  3541. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3542. font-weight:400;
  3543. font-style:normal;
  3544. font-size:12px;
  3545. color:#333333;
  3546. }
  3547. #u37993 .text {
  3548. position:absolute;
  3549. align-self:center;
  3550. padding:2px 2px 2px 0px;
  3551. box-sizing:border-box;
  3552. width:100%;
  3553. }
  3554. #u37993_text {
  3555. border-width:0px;
  3556. word-wrap:break-word;
  3557. text-transform:none;
  3558. visibility:hidden;
  3559. }
  3560. #u37994_img {
  3561. border-width:0px;
  3562. position:absolute;
  3563. left:0px;
  3564. top:0px;
  3565. width:88px;
  3566. height:38px;
  3567. }
  3568. #u37994 {
  3569. border-width:0px;
  3570. position:absolute;
  3571. left:276px;
  3572. top:158px;
  3573. width:88px;
  3574. height:38px;
  3575. display:flex;
  3576. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3577. font-weight:400;
  3578. font-style:normal;
  3579. font-size:12px;
  3580. color:#333333;
  3581. }
  3582. #u37994 .text {
  3583. position:absolute;
  3584. align-self:center;
  3585. padding:2px 2px 2px 0px;
  3586. box-sizing:border-box;
  3587. width:100%;
  3588. }
  3589. #u37994_text {
  3590. border-width:0px;
  3591. word-wrap:break-word;
  3592. text-transform:none;
  3593. visibility:hidden;
  3594. }
  3595. #u37995_img {
  3596. border-width:0px;
  3597. position:absolute;
  3598. left:0px;
  3599. top:0px;
  3600. width:88px;
  3601. height:38px;
  3602. }
  3603. #u37995 {
  3604. border-width:0px;
  3605. position:absolute;
  3606. left:364px;
  3607. top:158px;
  3608. width:88px;
  3609. height:38px;
  3610. display:flex;
  3611. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3612. font-weight:400;
  3613. font-style:normal;
  3614. font-size:12px;
  3615. color:#333333;
  3616. }
  3617. #u37995 .text {
  3618. position:absolute;
  3619. align-self:center;
  3620. padding:2px 2px 2px 0px;
  3621. box-sizing:border-box;
  3622. width:100%;
  3623. }
  3624. #u37995_text {
  3625. border-width:0px;
  3626. word-wrap:break-word;
  3627. text-transform:none;
  3628. visibility:hidden;
  3629. }
  3630. #u37996_img {
  3631. border-width:0px;
  3632. position:absolute;
  3633. left:0px;
  3634. top:0px;
  3635. width:88px;
  3636. height:38px;
  3637. }
  3638. #u37996 {
  3639. border-width:0px;
  3640. position:absolute;
  3641. left:452px;
  3642. top:158px;
  3643. width:88px;
  3644. height:38px;
  3645. display:flex;
  3646. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3647. font-weight:400;
  3648. font-style:normal;
  3649. font-size:12px;
  3650. color:#333333;
  3651. }
  3652. #u37996 .text {
  3653. position:absolute;
  3654. align-self:center;
  3655. padding:2px 2px 2px 0px;
  3656. box-sizing:border-box;
  3657. width:100%;
  3658. }
  3659. #u37996_text {
  3660. border-width:0px;
  3661. word-wrap:break-word;
  3662. text-transform:none;
  3663. visibility:hidden;
  3664. }
  3665. #u37997_img {
  3666. border-width:0px;
  3667. position:absolute;
  3668. left:0px;
  3669. top:0px;
  3670. width:99px;
  3671. height:38px;
  3672. }
  3673. #u37997 {
  3674. border-width:0px;
  3675. position:absolute;
  3676. left:540px;
  3677. top:158px;
  3678. width:99px;
  3679. height:38px;
  3680. display:flex;
  3681. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3682. font-weight:400;
  3683. font-style:normal;
  3684. font-size:12px;
  3685. color:#333333;
  3686. }
  3687. #u37997 .text {
  3688. position:absolute;
  3689. align-self:center;
  3690. padding:2px 2px 2px 0px;
  3691. box-sizing:border-box;
  3692. width:100%;
  3693. }
  3694. #u37997_text {
  3695. border-width:0px;
  3696. word-wrap:break-word;
  3697. text-transform:none;
  3698. visibility:hidden;
  3699. }
  3700. #u37998_img {
  3701. border-width:0px;
  3702. position:absolute;
  3703. left:0px;
  3704. top:0px;
  3705. width:88px;
  3706. height:38px;
  3707. }
  3708. #u37998 {
  3709. border-width:0px;
  3710. position:absolute;
  3711. left:639px;
  3712. top:158px;
  3713. width:88px;
  3714. height:38px;
  3715. display:flex;
  3716. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3717. font-weight:400;
  3718. font-style:normal;
  3719. font-size:12px;
  3720. color:#333333;
  3721. }
  3722. #u37998 .text {
  3723. position:absolute;
  3724. align-self:center;
  3725. padding:2px 2px 2px 0px;
  3726. box-sizing:border-box;
  3727. width:100%;
  3728. }
  3729. #u37998_text {
  3730. border-width:0px;
  3731. word-wrap:break-word;
  3732. text-transform:none;
  3733. visibility:hidden;
  3734. }
  3735. #u37999_img {
  3736. border-width:0px;
  3737. position:absolute;
  3738. left:0px;
  3739. top:0px;
  3740. width:127px;
  3741. height:38px;
  3742. }
  3743. #u37999 {
  3744. border-width:0px;
  3745. position:absolute;
  3746. left:727px;
  3747. top:158px;
  3748. width:127px;
  3749. height:38px;
  3750. display:flex;
  3751. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3752. font-weight:400;
  3753. font-style:normal;
  3754. font-size:12px;
  3755. color:#333333;
  3756. }
  3757. #u37999 .text {
  3758. position:absolute;
  3759. align-self:center;
  3760. padding:2px 2px 2px 0px;
  3761. box-sizing:border-box;
  3762. width:100%;
  3763. }
  3764. #u37999_text {
  3765. border-width:0px;
  3766. word-wrap:break-word;
  3767. text-transform:none;
  3768. visibility:hidden;
  3769. }
  3770. #u38000_img {
  3771. border-width:0px;
  3772. position:absolute;
  3773. left:0px;
  3774. top:0px;
  3775. width:127px;
  3776. height:38px;
  3777. }
  3778. #u38000 {
  3779. border-width:0px;
  3780. position:absolute;
  3781. left:854px;
  3782. top:158px;
  3783. width:127px;
  3784. height:38px;
  3785. display:flex;
  3786. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3787. font-weight:400;
  3788. font-style:normal;
  3789. font-size:12px;
  3790. color:#333333;
  3791. }
  3792. #u38000 .text {
  3793. position:absolute;
  3794. align-self:center;
  3795. padding:2px 2px 2px 0px;
  3796. box-sizing:border-box;
  3797. width:100%;
  3798. }
  3799. #u38000_text {
  3800. border-width:0px;
  3801. word-wrap:break-word;
  3802. text-transform:none;
  3803. visibility:hidden;
  3804. }
  3805. #u38001_img {
  3806. border-width:0px;
  3807. position:absolute;
  3808. left:0px;
  3809. top:0px;
  3810. width:119px;
  3811. height:38px;
  3812. }
  3813. #u38001 {
  3814. border-width:0px;
  3815. position:absolute;
  3816. left:981px;
  3817. top:158px;
  3818. width:119px;
  3819. height:38px;
  3820. display:flex;
  3821. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3822. font-weight:400;
  3823. font-style:normal;
  3824. font-size:12px;
  3825. color:#333333;
  3826. }
  3827. #u38001 .text {
  3828. position:absolute;
  3829. align-self:center;
  3830. padding:2px 2px 2px 0px;
  3831. box-sizing:border-box;
  3832. width:100%;
  3833. }
  3834. #u38001_text {
  3835. border-width:0px;
  3836. word-wrap:break-word;
  3837. text-transform:none;
  3838. visibility:hidden;
  3839. }
  3840. #u38002_img {
  3841. border-width:0px;
  3842. position:absolute;
  3843. left:0px;
  3844. top:0px;
  3845. width:118px;
  3846. height:38px;
  3847. }
  3848. #u38002 {
  3849. border-width:0px;
  3850. position:absolute;
  3851. left:1100px;
  3852. top:158px;
  3853. width:118px;
  3854. height:38px;
  3855. display:flex;
  3856. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3857. font-weight:400;
  3858. font-style:normal;
  3859. font-size:12px;
  3860. color:#AAAAAA;
  3861. }
  3862. #u38002 .text {
  3863. position:absolute;
  3864. align-self:center;
  3865. padding:2px 2px 2px 0px;
  3866. box-sizing:border-box;
  3867. width:100%;
  3868. }
  3869. #u38002_text {
  3870. border-width:0px;
  3871. word-wrap:break-word;
  3872. text-transform:none;
  3873. visibility:hidden;
  3874. }
  3875. #u38003_img {
  3876. border-width:0px;
  3877. position:absolute;
  3878. left:0px;
  3879. top:0px;
  3880. width:88px;
  3881. height:35px;
  3882. }
  3883. #u38003 {
  3884. border-width:0px;
  3885. position:absolute;
  3886. left:0px;
  3887. top:196px;
  3888. width:88px;
  3889. height:35px;
  3890. display:flex;
  3891. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3892. font-weight:400;
  3893. font-style:normal;
  3894. font-size:12px;
  3895. color:#333333;
  3896. }
  3897. #u38003 .text {
  3898. position:absolute;
  3899. align-self:center;
  3900. padding:2px 2px 2px 0px;
  3901. box-sizing:border-box;
  3902. width:100%;
  3903. }
  3904. #u38003_text {
  3905. border-width:0px;
  3906. word-wrap:break-word;
  3907. text-transform:none;
  3908. visibility:hidden;
  3909. }
  3910. #u38004_img {
  3911. border-width:0px;
  3912. position:absolute;
  3913. left:0px;
  3914. top:0px;
  3915. width:100px;
  3916. height:35px;
  3917. }
  3918. #u38004 {
  3919. border-width:0px;
  3920. position:absolute;
  3921. left:88px;
  3922. top:196px;
  3923. width:100px;
  3924. height:35px;
  3925. display:flex;
  3926. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3927. font-weight:400;
  3928. font-style:normal;
  3929. font-size:12px;
  3930. color:#333333;
  3931. }
  3932. #u38004 .text {
  3933. position:absolute;
  3934. align-self:center;
  3935. padding:2px 2px 2px 0px;
  3936. box-sizing:border-box;
  3937. width:100%;
  3938. }
  3939. #u38004_text {
  3940. border-width:0px;
  3941. word-wrap:break-word;
  3942. text-transform:none;
  3943. visibility:hidden;
  3944. }
  3945. #u38005_img {
  3946. border-width:0px;
  3947. position:absolute;
  3948. left:0px;
  3949. top:0px;
  3950. width:88px;
  3951. height:35px;
  3952. }
  3953. #u38005 {
  3954. border-width:0px;
  3955. position:absolute;
  3956. left:188px;
  3957. top:196px;
  3958. width:88px;
  3959. height:35px;
  3960. display:flex;
  3961. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3962. font-weight:400;
  3963. font-style:normal;
  3964. font-size:12px;
  3965. color:#333333;
  3966. }
  3967. #u38005 .text {
  3968. position:absolute;
  3969. align-self:center;
  3970. padding:2px 2px 2px 0px;
  3971. box-sizing:border-box;
  3972. width:100%;
  3973. }
  3974. #u38005_text {
  3975. border-width:0px;
  3976. word-wrap:break-word;
  3977. text-transform:none;
  3978. visibility:hidden;
  3979. }
  3980. #u38006_img {
  3981. border-width:0px;
  3982. position:absolute;
  3983. left:0px;
  3984. top:0px;
  3985. width:88px;
  3986. height:35px;
  3987. }
  3988. #u38006 {
  3989. border-width:0px;
  3990. position:absolute;
  3991. left:276px;
  3992. top:196px;
  3993. width:88px;
  3994. height:35px;
  3995. display:flex;
  3996. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3997. font-weight:400;
  3998. font-style:normal;
  3999. font-size:12px;
  4000. color:#333333;
  4001. }
  4002. #u38006 .text {
  4003. position:absolute;
  4004. align-self:center;
  4005. padding:2px 2px 2px 0px;
  4006. box-sizing:border-box;
  4007. width:100%;
  4008. }
  4009. #u38006_text {
  4010. border-width:0px;
  4011. word-wrap:break-word;
  4012. text-transform:none;
  4013. visibility:hidden;
  4014. }
  4015. #u38007_img {
  4016. border-width:0px;
  4017. position:absolute;
  4018. left:0px;
  4019. top:0px;
  4020. width:88px;
  4021. height:35px;
  4022. }
  4023. #u38007 {
  4024. border-width:0px;
  4025. position:absolute;
  4026. left:364px;
  4027. top:196px;
  4028. width:88px;
  4029. height:35px;
  4030. display:flex;
  4031. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4032. font-weight:400;
  4033. font-style:normal;
  4034. font-size:12px;
  4035. color:#333333;
  4036. }
  4037. #u38007 .text {
  4038. position:absolute;
  4039. align-self:center;
  4040. padding:2px 2px 2px 0px;
  4041. box-sizing:border-box;
  4042. width:100%;
  4043. }
  4044. #u38007_text {
  4045. border-width:0px;
  4046. word-wrap:break-word;
  4047. text-transform:none;
  4048. visibility:hidden;
  4049. }
  4050. #u38008_img {
  4051. border-width:0px;
  4052. position:absolute;
  4053. left:0px;
  4054. top:0px;
  4055. width:88px;
  4056. height:35px;
  4057. }
  4058. #u38008 {
  4059. border-width:0px;
  4060. position:absolute;
  4061. left:452px;
  4062. top:196px;
  4063. width:88px;
  4064. height:35px;
  4065. display:flex;
  4066. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4067. font-weight:400;
  4068. font-style:normal;
  4069. font-size:12px;
  4070. color:#333333;
  4071. }
  4072. #u38008 .text {
  4073. position:absolute;
  4074. align-self:center;
  4075. padding:2px 2px 2px 0px;
  4076. box-sizing:border-box;
  4077. width:100%;
  4078. }
  4079. #u38008_text {
  4080. border-width:0px;
  4081. word-wrap:break-word;
  4082. text-transform:none;
  4083. visibility:hidden;
  4084. }
  4085. #u38009_img {
  4086. border-width:0px;
  4087. position:absolute;
  4088. left:0px;
  4089. top:0px;
  4090. width:99px;
  4091. height:35px;
  4092. }
  4093. #u38009 {
  4094. border-width:0px;
  4095. position:absolute;
  4096. left:540px;
  4097. top:196px;
  4098. width:99px;
  4099. height:35px;
  4100. display:flex;
  4101. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4102. font-weight:400;
  4103. font-style:normal;
  4104. font-size:12px;
  4105. color:#333333;
  4106. }
  4107. #u38009 .text {
  4108. position:absolute;
  4109. align-self:center;
  4110. padding:2px 2px 2px 0px;
  4111. box-sizing:border-box;
  4112. width:100%;
  4113. }
  4114. #u38009_text {
  4115. border-width:0px;
  4116. word-wrap:break-word;
  4117. text-transform:none;
  4118. visibility:hidden;
  4119. }
  4120. #u38010_img {
  4121. border-width:0px;
  4122. position:absolute;
  4123. left:0px;
  4124. top:0px;
  4125. width:88px;
  4126. height:35px;
  4127. }
  4128. #u38010 {
  4129. border-width:0px;
  4130. position:absolute;
  4131. left:639px;
  4132. top:196px;
  4133. width:88px;
  4134. height:35px;
  4135. display:flex;
  4136. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4137. font-weight:400;
  4138. font-style:normal;
  4139. font-size:12px;
  4140. color:#333333;
  4141. }
  4142. #u38010 .text {
  4143. position:absolute;
  4144. align-self:center;
  4145. padding:2px 2px 2px 0px;
  4146. box-sizing:border-box;
  4147. width:100%;
  4148. }
  4149. #u38010_text {
  4150. border-width:0px;
  4151. word-wrap:break-word;
  4152. text-transform:none;
  4153. visibility:hidden;
  4154. }
  4155. #u38011_img {
  4156. border-width:0px;
  4157. position:absolute;
  4158. left:0px;
  4159. top:0px;
  4160. width:127px;
  4161. height:35px;
  4162. }
  4163. #u38011 {
  4164. border-width:0px;
  4165. position:absolute;
  4166. left:727px;
  4167. top:196px;
  4168. width:127px;
  4169. height:35px;
  4170. display:flex;
  4171. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4172. font-weight:400;
  4173. font-style:normal;
  4174. font-size:12px;
  4175. color:#333333;
  4176. }
  4177. #u38011 .text {
  4178. position:absolute;
  4179. align-self:center;
  4180. padding:2px 2px 2px 0px;
  4181. box-sizing:border-box;
  4182. width:100%;
  4183. }
  4184. #u38011_text {
  4185. border-width:0px;
  4186. word-wrap:break-word;
  4187. text-transform:none;
  4188. visibility:hidden;
  4189. }
  4190. #u38012_img {
  4191. border-width:0px;
  4192. position:absolute;
  4193. left:0px;
  4194. top:0px;
  4195. width:127px;
  4196. height:35px;
  4197. }
  4198. #u38012 {
  4199. border-width:0px;
  4200. position:absolute;
  4201. left:854px;
  4202. top:196px;
  4203. width:127px;
  4204. height:35px;
  4205. display:flex;
  4206. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4207. font-weight:400;
  4208. font-style:normal;
  4209. font-size:12px;
  4210. color:#333333;
  4211. }
  4212. #u38012 .text {
  4213. position:absolute;
  4214. align-self:center;
  4215. padding:2px 2px 2px 0px;
  4216. box-sizing:border-box;
  4217. width:100%;
  4218. }
  4219. #u38012_text {
  4220. border-width:0px;
  4221. word-wrap:break-word;
  4222. text-transform:none;
  4223. visibility:hidden;
  4224. }
  4225. #u38013_img {
  4226. border-width:0px;
  4227. position:absolute;
  4228. left:0px;
  4229. top:0px;
  4230. width:119px;
  4231. height:35px;
  4232. }
  4233. #u38013 {
  4234. border-width:0px;
  4235. position:absolute;
  4236. left:981px;
  4237. top:196px;
  4238. width:119px;
  4239. height:35px;
  4240. display:flex;
  4241. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4242. font-weight:400;
  4243. font-style:normal;
  4244. font-size:12px;
  4245. color:#333333;
  4246. }
  4247. #u38013 .text {
  4248. position:absolute;
  4249. align-self:center;
  4250. padding:2px 2px 2px 0px;
  4251. box-sizing:border-box;
  4252. width:100%;
  4253. }
  4254. #u38013_text {
  4255. border-width:0px;
  4256. word-wrap:break-word;
  4257. text-transform:none;
  4258. visibility:hidden;
  4259. }
  4260. #u38014_img {
  4261. border-width:0px;
  4262. position:absolute;
  4263. left:0px;
  4264. top:0px;
  4265. width:118px;
  4266. height:35px;
  4267. }
  4268. #u38014 {
  4269. border-width:0px;
  4270. position:absolute;
  4271. left:1100px;
  4272. top:196px;
  4273. width:118px;
  4274. height:35px;
  4275. display:flex;
  4276. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4277. font-weight:400;
  4278. font-style:normal;
  4279. font-size:12px;
  4280. color:#AAAAAA;
  4281. }
  4282. #u38014 .text {
  4283. position:absolute;
  4284. align-self:center;
  4285. padding:2px 2px 2px 0px;
  4286. box-sizing:border-box;
  4287. width:100%;
  4288. }
  4289. #u38014_text {
  4290. border-width:0px;
  4291. word-wrap:break-word;
  4292. text-transform:none;
  4293. visibility:hidden;
  4294. }
  4295. #u38015_img {
  4296. border-width:0px;
  4297. position:absolute;
  4298. left:0px;
  4299. top:0px;
  4300. width:88px;
  4301. height:35px;
  4302. }
  4303. #u38015 {
  4304. border-width:0px;
  4305. position:absolute;
  4306. left:0px;
  4307. top:231px;
  4308. width:88px;
  4309. height:35px;
  4310. display:flex;
  4311. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4312. font-weight:400;
  4313. font-style:normal;
  4314. font-size:12px;
  4315. color:#333333;
  4316. }
  4317. #u38015 .text {
  4318. position:absolute;
  4319. align-self:center;
  4320. padding:2px 2px 2px 0px;
  4321. box-sizing:border-box;
  4322. width:100%;
  4323. }
  4324. #u38015_text {
  4325. border-width:0px;
  4326. word-wrap:break-word;
  4327. text-transform:none;
  4328. visibility:hidden;
  4329. }
  4330. #u38016_img {
  4331. border-width:0px;
  4332. position:absolute;
  4333. left:0px;
  4334. top:0px;
  4335. width:100px;
  4336. height:35px;
  4337. }
  4338. #u38016 {
  4339. border-width:0px;
  4340. position:absolute;
  4341. left:88px;
  4342. top:231px;
  4343. width:100px;
  4344. height:35px;
  4345. display:flex;
  4346. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4347. font-weight:400;
  4348. font-style:normal;
  4349. font-size:12px;
  4350. color:#333333;
  4351. }
  4352. #u38016 .text {
  4353. position:absolute;
  4354. align-self:center;
  4355. padding:2px 2px 2px 0px;
  4356. box-sizing:border-box;
  4357. width:100%;
  4358. }
  4359. #u38016_text {
  4360. border-width:0px;
  4361. word-wrap:break-word;
  4362. text-transform:none;
  4363. visibility:hidden;
  4364. }
  4365. #u38017_img {
  4366. border-width:0px;
  4367. position:absolute;
  4368. left:0px;
  4369. top:0px;
  4370. width:88px;
  4371. height:35px;
  4372. }
  4373. #u38017 {
  4374. border-width:0px;
  4375. position:absolute;
  4376. left:188px;
  4377. top:231px;
  4378. width:88px;
  4379. height:35px;
  4380. display:flex;
  4381. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4382. font-weight:400;
  4383. font-style:normal;
  4384. font-size:12px;
  4385. color:#333333;
  4386. }
  4387. #u38017 .text {
  4388. position:absolute;
  4389. align-self:center;
  4390. padding:2px 2px 2px 0px;
  4391. box-sizing:border-box;
  4392. width:100%;
  4393. }
  4394. #u38017_text {
  4395. border-width:0px;
  4396. word-wrap:break-word;
  4397. text-transform:none;
  4398. visibility:hidden;
  4399. }
  4400. #u38018_img {
  4401. border-width:0px;
  4402. position:absolute;
  4403. left:0px;
  4404. top:0px;
  4405. width:88px;
  4406. height:35px;
  4407. }
  4408. #u38018 {
  4409. border-width:0px;
  4410. position:absolute;
  4411. left:276px;
  4412. top:231px;
  4413. width:88px;
  4414. height:35px;
  4415. display:flex;
  4416. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4417. font-weight:400;
  4418. font-style:normal;
  4419. font-size:12px;
  4420. color:#333333;
  4421. }
  4422. #u38018 .text {
  4423. position:absolute;
  4424. align-self:center;
  4425. padding:2px 2px 2px 0px;
  4426. box-sizing:border-box;
  4427. width:100%;
  4428. }
  4429. #u38018_text {
  4430. border-width:0px;
  4431. word-wrap:break-word;
  4432. text-transform:none;
  4433. visibility:hidden;
  4434. }
  4435. #u38019_img {
  4436. border-width:0px;
  4437. position:absolute;
  4438. left:0px;
  4439. top:0px;
  4440. width:88px;
  4441. height:35px;
  4442. }
  4443. #u38019 {
  4444. border-width:0px;
  4445. position:absolute;
  4446. left:364px;
  4447. top:231px;
  4448. width:88px;
  4449. height:35px;
  4450. display:flex;
  4451. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4452. font-weight:400;
  4453. font-style:normal;
  4454. font-size:12px;
  4455. color:#333333;
  4456. }
  4457. #u38019 .text {
  4458. position:absolute;
  4459. align-self:center;
  4460. padding:2px 2px 2px 0px;
  4461. box-sizing:border-box;
  4462. width:100%;
  4463. }
  4464. #u38019_text {
  4465. border-width:0px;
  4466. word-wrap:break-word;
  4467. text-transform:none;
  4468. visibility:hidden;
  4469. }
  4470. #u38020_img {
  4471. border-width:0px;
  4472. position:absolute;
  4473. left:0px;
  4474. top:0px;
  4475. width:88px;
  4476. height:35px;
  4477. }
  4478. #u38020 {
  4479. border-width:0px;
  4480. position:absolute;
  4481. left:452px;
  4482. top:231px;
  4483. width:88px;
  4484. height:35px;
  4485. display:flex;
  4486. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4487. font-weight:400;
  4488. font-style:normal;
  4489. font-size:12px;
  4490. color:#333333;
  4491. }
  4492. #u38020 .text {
  4493. position:absolute;
  4494. align-self:center;
  4495. padding:2px 2px 2px 0px;
  4496. box-sizing:border-box;
  4497. width:100%;
  4498. }
  4499. #u38020_text {
  4500. border-width:0px;
  4501. word-wrap:break-word;
  4502. text-transform:none;
  4503. visibility:hidden;
  4504. }
  4505. #u38021_img {
  4506. border-width:0px;
  4507. position:absolute;
  4508. left:0px;
  4509. top:0px;
  4510. width:99px;
  4511. height:35px;
  4512. }
  4513. #u38021 {
  4514. border-width:0px;
  4515. position:absolute;
  4516. left:540px;
  4517. top:231px;
  4518. width:99px;
  4519. height:35px;
  4520. display:flex;
  4521. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4522. font-weight:400;
  4523. font-style:normal;
  4524. font-size:12px;
  4525. color:#333333;
  4526. }
  4527. #u38021 .text {
  4528. position:absolute;
  4529. align-self:center;
  4530. padding:2px 2px 2px 0px;
  4531. box-sizing:border-box;
  4532. width:100%;
  4533. }
  4534. #u38021_text {
  4535. border-width:0px;
  4536. word-wrap:break-word;
  4537. text-transform:none;
  4538. visibility:hidden;
  4539. }
  4540. #u38022_img {
  4541. border-width:0px;
  4542. position:absolute;
  4543. left:0px;
  4544. top:0px;
  4545. width:88px;
  4546. height:35px;
  4547. }
  4548. #u38022 {
  4549. border-width:0px;
  4550. position:absolute;
  4551. left:639px;
  4552. top:231px;
  4553. width:88px;
  4554. height:35px;
  4555. display:flex;
  4556. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4557. font-weight:400;
  4558. font-style:normal;
  4559. font-size:12px;
  4560. color:#333333;
  4561. }
  4562. #u38022 .text {
  4563. position:absolute;
  4564. align-self:center;
  4565. padding:2px 2px 2px 0px;
  4566. box-sizing:border-box;
  4567. width:100%;
  4568. }
  4569. #u38022_text {
  4570. border-width:0px;
  4571. word-wrap:break-word;
  4572. text-transform:none;
  4573. visibility:hidden;
  4574. }
  4575. #u38023_img {
  4576. border-width:0px;
  4577. position:absolute;
  4578. left:0px;
  4579. top:0px;
  4580. width:127px;
  4581. height:35px;
  4582. }
  4583. #u38023 {
  4584. border-width:0px;
  4585. position:absolute;
  4586. left:727px;
  4587. top:231px;
  4588. width:127px;
  4589. height:35px;
  4590. display:flex;
  4591. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4592. font-weight:400;
  4593. font-style:normal;
  4594. font-size:12px;
  4595. color:#333333;
  4596. }
  4597. #u38023 .text {
  4598. position:absolute;
  4599. align-self:center;
  4600. padding:2px 2px 2px 0px;
  4601. box-sizing:border-box;
  4602. width:100%;
  4603. }
  4604. #u38023_text {
  4605. border-width:0px;
  4606. word-wrap:break-word;
  4607. text-transform:none;
  4608. visibility:hidden;
  4609. }
  4610. #u38024_img {
  4611. border-width:0px;
  4612. position:absolute;
  4613. left:0px;
  4614. top:0px;
  4615. width:127px;
  4616. height:35px;
  4617. }
  4618. #u38024 {
  4619. border-width:0px;
  4620. position:absolute;
  4621. left:854px;
  4622. top:231px;
  4623. width:127px;
  4624. height:35px;
  4625. display:flex;
  4626. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4627. font-weight:400;
  4628. font-style:normal;
  4629. font-size:12px;
  4630. color:#333333;
  4631. }
  4632. #u38024 .text {
  4633. position:absolute;
  4634. align-self:center;
  4635. padding:2px 2px 2px 0px;
  4636. box-sizing:border-box;
  4637. width:100%;
  4638. }
  4639. #u38024_text {
  4640. border-width:0px;
  4641. word-wrap:break-word;
  4642. text-transform:none;
  4643. visibility:hidden;
  4644. }
  4645. #u38025_img {
  4646. border-width:0px;
  4647. position:absolute;
  4648. left:0px;
  4649. top:0px;
  4650. width:119px;
  4651. height:35px;
  4652. }
  4653. #u38025 {
  4654. border-width:0px;
  4655. position:absolute;
  4656. left:981px;
  4657. top:231px;
  4658. width:119px;
  4659. height:35px;
  4660. display:flex;
  4661. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4662. font-weight:400;
  4663. font-style:normal;
  4664. font-size:12px;
  4665. color:#333333;
  4666. }
  4667. #u38025 .text {
  4668. position:absolute;
  4669. align-self:center;
  4670. padding:2px 2px 2px 0px;
  4671. box-sizing:border-box;
  4672. width:100%;
  4673. }
  4674. #u38025_text {
  4675. border-width:0px;
  4676. word-wrap:break-word;
  4677. text-transform:none;
  4678. visibility:hidden;
  4679. }
  4680. #u38026_img {
  4681. border-width:0px;
  4682. position:absolute;
  4683. left:0px;
  4684. top:0px;
  4685. width:118px;
  4686. height:35px;
  4687. }
  4688. #u38026 {
  4689. border-width:0px;
  4690. position:absolute;
  4691. left:1100px;
  4692. top:231px;
  4693. width:118px;
  4694. height:35px;
  4695. display:flex;
  4696. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4697. font-weight:400;
  4698. font-style:normal;
  4699. font-size:12px;
  4700. color:#333333;
  4701. }
  4702. #u38026 .text {
  4703. position:absolute;
  4704. align-self:center;
  4705. padding:2px 2px 2px 0px;
  4706. box-sizing:border-box;
  4707. width:100%;
  4708. }
  4709. #u38026_text {
  4710. border-width:0px;
  4711. word-wrap:break-word;
  4712. text-transform:none;
  4713. visibility:hidden;
  4714. }
  4715. #u38027_img {
  4716. border-width:0px;
  4717. position:absolute;
  4718. left:0px;
  4719. top:0px;
  4720. width:88px;
  4721. height:32px;
  4722. }
  4723. #u38027 {
  4724. border-width:0px;
  4725. position:absolute;
  4726. left:0px;
  4727. top:266px;
  4728. width:88px;
  4729. height:32px;
  4730. display:flex;
  4731. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4732. font-weight:400;
  4733. font-style:normal;
  4734. font-size:12px;
  4735. color:#333333;
  4736. }
  4737. #u38027 .text {
  4738. position:absolute;
  4739. align-self:center;
  4740. padding:2px 2px 2px 0px;
  4741. box-sizing:border-box;
  4742. width:100%;
  4743. }
  4744. #u38027_text {
  4745. border-width:0px;
  4746. word-wrap:break-word;
  4747. text-transform:none;
  4748. visibility:hidden;
  4749. }
  4750. #u38028_img {
  4751. border-width:0px;
  4752. position:absolute;
  4753. left:0px;
  4754. top:0px;
  4755. width:100px;
  4756. height:32px;
  4757. }
  4758. #u38028 {
  4759. border-width:0px;
  4760. position:absolute;
  4761. left:88px;
  4762. top:266px;
  4763. width:100px;
  4764. height:32px;
  4765. display:flex;
  4766. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4767. font-weight:400;
  4768. font-style:normal;
  4769. font-size:12px;
  4770. color:#333333;
  4771. }
  4772. #u38028 .text {
  4773. position:absolute;
  4774. align-self:center;
  4775. padding:2px 2px 2px 0px;
  4776. box-sizing:border-box;
  4777. width:100%;
  4778. }
  4779. #u38028_text {
  4780. border-width:0px;
  4781. word-wrap:break-word;
  4782. text-transform:none;
  4783. visibility:hidden;
  4784. }
  4785. #u38029_img {
  4786. border-width:0px;
  4787. position:absolute;
  4788. left:0px;
  4789. top:0px;
  4790. width:88px;
  4791. height:32px;
  4792. }
  4793. #u38029 {
  4794. border-width:0px;
  4795. position:absolute;
  4796. left:188px;
  4797. top:266px;
  4798. width:88px;
  4799. height:32px;
  4800. display:flex;
  4801. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4802. font-weight:400;
  4803. font-style:normal;
  4804. font-size:12px;
  4805. color:#333333;
  4806. }
  4807. #u38029 .text {
  4808. position:absolute;
  4809. align-self:center;
  4810. padding:2px 2px 2px 0px;
  4811. box-sizing:border-box;
  4812. width:100%;
  4813. }
  4814. #u38029_text {
  4815. border-width:0px;
  4816. word-wrap:break-word;
  4817. text-transform:none;
  4818. visibility:hidden;
  4819. }
  4820. #u38030_img {
  4821. border-width:0px;
  4822. position:absolute;
  4823. left:0px;
  4824. top:0px;
  4825. width:88px;
  4826. height:32px;
  4827. }
  4828. #u38030 {
  4829. border-width:0px;
  4830. position:absolute;
  4831. left:276px;
  4832. top:266px;
  4833. width:88px;
  4834. height:32px;
  4835. display:flex;
  4836. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4837. font-weight:400;
  4838. font-style:normal;
  4839. font-size:12px;
  4840. color:#333333;
  4841. }
  4842. #u38030 .text {
  4843. position:absolute;
  4844. align-self:center;
  4845. padding:2px 2px 2px 0px;
  4846. box-sizing:border-box;
  4847. width:100%;
  4848. }
  4849. #u38030_text {
  4850. border-width:0px;
  4851. word-wrap:break-word;
  4852. text-transform:none;
  4853. visibility:hidden;
  4854. }
  4855. #u38031_img {
  4856. border-width:0px;
  4857. position:absolute;
  4858. left:0px;
  4859. top:0px;
  4860. width:88px;
  4861. height:32px;
  4862. }
  4863. #u38031 {
  4864. border-width:0px;
  4865. position:absolute;
  4866. left:364px;
  4867. top:266px;
  4868. width:88px;
  4869. height:32px;
  4870. display:flex;
  4871. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4872. font-weight:400;
  4873. font-style:normal;
  4874. font-size:12px;
  4875. color:#333333;
  4876. }
  4877. #u38031 .text {
  4878. position:absolute;
  4879. align-self:center;
  4880. padding:2px 2px 2px 0px;
  4881. box-sizing:border-box;
  4882. width:100%;
  4883. }
  4884. #u38031_text {
  4885. border-width:0px;
  4886. word-wrap:break-word;
  4887. text-transform:none;
  4888. visibility:hidden;
  4889. }
  4890. #u38032_img {
  4891. border-width:0px;
  4892. position:absolute;
  4893. left:0px;
  4894. top:0px;
  4895. width:88px;
  4896. height:32px;
  4897. }
  4898. #u38032 {
  4899. border-width:0px;
  4900. position:absolute;
  4901. left:452px;
  4902. top:266px;
  4903. width:88px;
  4904. height:32px;
  4905. display:flex;
  4906. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4907. font-weight:400;
  4908. font-style:normal;
  4909. font-size:12px;
  4910. color:#333333;
  4911. }
  4912. #u38032 .text {
  4913. position:absolute;
  4914. align-self:center;
  4915. padding:2px 2px 2px 0px;
  4916. box-sizing:border-box;
  4917. width:100%;
  4918. }
  4919. #u38032_text {
  4920. border-width:0px;
  4921. word-wrap:break-word;
  4922. text-transform:none;
  4923. visibility:hidden;
  4924. }
  4925. #u38033_img {
  4926. border-width:0px;
  4927. position:absolute;
  4928. left:0px;
  4929. top:0px;
  4930. width:99px;
  4931. height:32px;
  4932. }
  4933. #u38033 {
  4934. border-width:0px;
  4935. position:absolute;
  4936. left:540px;
  4937. top:266px;
  4938. width:99px;
  4939. height:32px;
  4940. display:flex;
  4941. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4942. font-weight:400;
  4943. font-style:normal;
  4944. font-size:12px;
  4945. color:#333333;
  4946. }
  4947. #u38033 .text {
  4948. position:absolute;
  4949. align-self:center;
  4950. padding:2px 2px 2px 0px;
  4951. box-sizing:border-box;
  4952. width:100%;
  4953. }
  4954. #u38033_text {
  4955. border-width:0px;
  4956. word-wrap:break-word;
  4957. text-transform:none;
  4958. visibility:hidden;
  4959. }
  4960. #u38034_img {
  4961. border-width:0px;
  4962. position:absolute;
  4963. left:0px;
  4964. top:0px;
  4965. width:88px;
  4966. height:32px;
  4967. }
  4968. #u38034 {
  4969. border-width:0px;
  4970. position:absolute;
  4971. left:639px;
  4972. top:266px;
  4973. width:88px;
  4974. height:32px;
  4975. display:flex;
  4976. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4977. font-weight:400;
  4978. font-style:normal;
  4979. font-size:12px;
  4980. color:#333333;
  4981. }
  4982. #u38034 .text {
  4983. position:absolute;
  4984. align-self:center;
  4985. padding:2px 2px 2px 0px;
  4986. box-sizing:border-box;
  4987. width:100%;
  4988. }
  4989. #u38034_text {
  4990. border-width:0px;
  4991. word-wrap:break-word;
  4992. text-transform:none;
  4993. visibility:hidden;
  4994. }
  4995. #u38035_img {
  4996. border-width:0px;
  4997. position:absolute;
  4998. left:0px;
  4999. top:0px;
  5000. width:127px;
  5001. height:32px;
  5002. }
  5003. #u38035 {
  5004. border-width:0px;
  5005. position:absolute;
  5006. left:727px;
  5007. top:266px;
  5008. width:127px;
  5009. height:32px;
  5010. display:flex;
  5011. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5012. font-weight:400;
  5013. font-style:normal;
  5014. font-size:12px;
  5015. color:#333333;
  5016. }
  5017. #u38035 .text {
  5018. position:absolute;
  5019. align-self:center;
  5020. padding:2px 2px 2px 0px;
  5021. box-sizing:border-box;
  5022. width:100%;
  5023. }
  5024. #u38035_text {
  5025. border-width:0px;
  5026. word-wrap:break-word;
  5027. text-transform:none;
  5028. visibility:hidden;
  5029. }
  5030. #u38036_img {
  5031. border-width:0px;
  5032. position:absolute;
  5033. left:0px;
  5034. top:0px;
  5035. width:127px;
  5036. height:32px;
  5037. }
  5038. #u38036 {
  5039. border-width:0px;
  5040. position:absolute;
  5041. left:854px;
  5042. top:266px;
  5043. width:127px;
  5044. height:32px;
  5045. display:flex;
  5046. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5047. font-weight:400;
  5048. font-style:normal;
  5049. font-size:12px;
  5050. color:#333333;
  5051. }
  5052. #u38036 .text {
  5053. position:absolute;
  5054. align-self:center;
  5055. padding:2px 2px 2px 0px;
  5056. box-sizing:border-box;
  5057. width:100%;
  5058. }
  5059. #u38036_text {
  5060. border-width:0px;
  5061. word-wrap:break-word;
  5062. text-transform:none;
  5063. visibility:hidden;
  5064. }
  5065. #u38037_img {
  5066. border-width:0px;
  5067. position:absolute;
  5068. left:0px;
  5069. top:0px;
  5070. width:119px;
  5071. height:32px;
  5072. }
  5073. #u38037 {
  5074. border-width:0px;
  5075. position:absolute;
  5076. left:981px;
  5077. top:266px;
  5078. width:119px;
  5079. height:32px;
  5080. display:flex;
  5081. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5082. font-weight:400;
  5083. font-style:normal;
  5084. font-size:12px;
  5085. color:#333333;
  5086. }
  5087. #u38037 .text {
  5088. position:absolute;
  5089. align-self:center;
  5090. padding:2px 2px 2px 0px;
  5091. box-sizing:border-box;
  5092. width:100%;
  5093. }
  5094. #u38037_text {
  5095. border-width:0px;
  5096. word-wrap:break-word;
  5097. text-transform:none;
  5098. visibility:hidden;
  5099. }
  5100. #u38038_img {
  5101. border-width:0px;
  5102. position:absolute;
  5103. left:0px;
  5104. top:0px;
  5105. width:118px;
  5106. height:32px;
  5107. }
  5108. #u38038 {
  5109. border-width:0px;
  5110. position:absolute;
  5111. left:1100px;
  5112. top:266px;
  5113. width:118px;
  5114. height:32px;
  5115. display:flex;
  5116. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5117. font-weight:400;
  5118. font-style:normal;
  5119. font-size:12px;
  5120. color:#333333;
  5121. }
  5122. #u38038 .text {
  5123. position:absolute;
  5124. align-self:center;
  5125. padding:2px 2px 2px 0px;
  5126. box-sizing:border-box;
  5127. width:100%;
  5128. }
  5129. #u38038_text {
  5130. border-width:0px;
  5131. word-wrap:break-word;
  5132. text-transform:none;
  5133. visibility:hidden;
  5134. }
  5135. #u38039_img {
  5136. border-width:0px;
  5137. position:absolute;
  5138. left:0px;
  5139. top:0px;
  5140. width:88px;
  5141. height:30px;
  5142. }
  5143. #u38039 {
  5144. border-width:0px;
  5145. position:absolute;
  5146. left:0px;
  5147. top:298px;
  5148. width:88px;
  5149. height:30px;
  5150. display:flex;
  5151. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5152. font-weight:400;
  5153. font-style:normal;
  5154. font-size:12px;
  5155. color:#333333;
  5156. }
  5157. #u38039 .text {
  5158. position:absolute;
  5159. align-self:center;
  5160. padding:2px 2px 2px 0px;
  5161. box-sizing:border-box;
  5162. width:100%;
  5163. }
  5164. #u38039_text {
  5165. border-width:0px;
  5166. word-wrap:break-word;
  5167. text-transform:none;
  5168. visibility:hidden;
  5169. }
  5170. #u38040_img {
  5171. border-width:0px;
  5172. position:absolute;
  5173. left:0px;
  5174. top:0px;
  5175. width:100px;
  5176. height:30px;
  5177. }
  5178. #u38040 {
  5179. border-width:0px;
  5180. position:absolute;
  5181. left:88px;
  5182. top:298px;
  5183. width:100px;
  5184. height:30px;
  5185. display:flex;
  5186. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5187. font-weight:400;
  5188. font-style:normal;
  5189. font-size:12px;
  5190. color:#333333;
  5191. }
  5192. #u38040 .text {
  5193. position:absolute;
  5194. align-self:center;
  5195. padding:2px 2px 2px 0px;
  5196. box-sizing:border-box;
  5197. width:100%;
  5198. }
  5199. #u38040_text {
  5200. border-width:0px;
  5201. word-wrap:break-word;
  5202. text-transform:none;
  5203. visibility:hidden;
  5204. }
  5205. #u38041_img {
  5206. border-width:0px;
  5207. position:absolute;
  5208. left:0px;
  5209. top:0px;
  5210. width:88px;
  5211. height:30px;
  5212. }
  5213. #u38041 {
  5214. border-width:0px;
  5215. position:absolute;
  5216. left:188px;
  5217. top:298px;
  5218. width:88px;
  5219. height:30px;
  5220. display:flex;
  5221. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5222. font-weight:400;
  5223. font-style:normal;
  5224. font-size:12px;
  5225. color:#333333;
  5226. }
  5227. #u38041 .text {
  5228. position:absolute;
  5229. align-self:center;
  5230. padding:2px 2px 2px 0px;
  5231. box-sizing:border-box;
  5232. width:100%;
  5233. }
  5234. #u38041_text {
  5235. border-width:0px;
  5236. word-wrap:break-word;
  5237. text-transform:none;
  5238. visibility:hidden;
  5239. }
  5240. #u38042_img {
  5241. border-width:0px;
  5242. position:absolute;
  5243. left:0px;
  5244. top:0px;
  5245. width:88px;
  5246. height:30px;
  5247. }
  5248. #u38042 {
  5249. border-width:0px;
  5250. position:absolute;
  5251. left:276px;
  5252. top:298px;
  5253. width:88px;
  5254. height:30px;
  5255. display:flex;
  5256. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5257. font-weight:400;
  5258. font-style:normal;
  5259. font-size:12px;
  5260. color:#333333;
  5261. }
  5262. #u38042 .text {
  5263. position:absolute;
  5264. align-self:center;
  5265. padding:2px 2px 2px 0px;
  5266. box-sizing:border-box;
  5267. width:100%;
  5268. }
  5269. #u38042_text {
  5270. border-width:0px;
  5271. word-wrap:break-word;
  5272. text-transform:none;
  5273. visibility:hidden;
  5274. }
  5275. #u38043_img {
  5276. border-width:0px;
  5277. position:absolute;
  5278. left:0px;
  5279. top:0px;
  5280. width:88px;
  5281. height:30px;
  5282. }
  5283. #u38043 {
  5284. border-width:0px;
  5285. position:absolute;
  5286. left:364px;
  5287. top:298px;
  5288. width:88px;
  5289. height:30px;
  5290. display:flex;
  5291. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5292. font-weight:400;
  5293. font-style:normal;
  5294. font-size:12px;
  5295. color:#333333;
  5296. }
  5297. #u38043 .text {
  5298. position:absolute;
  5299. align-self:center;
  5300. padding:2px 2px 2px 0px;
  5301. box-sizing:border-box;
  5302. width:100%;
  5303. }
  5304. #u38043_text {
  5305. border-width:0px;
  5306. word-wrap:break-word;
  5307. text-transform:none;
  5308. visibility:hidden;
  5309. }
  5310. #u38044_img {
  5311. border-width:0px;
  5312. position:absolute;
  5313. left:0px;
  5314. top:0px;
  5315. width:88px;
  5316. height:30px;
  5317. }
  5318. #u38044 {
  5319. border-width:0px;
  5320. position:absolute;
  5321. left:452px;
  5322. top:298px;
  5323. width:88px;
  5324. height:30px;
  5325. display:flex;
  5326. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5327. font-weight:400;
  5328. font-style:normal;
  5329. font-size:12px;
  5330. color:#333333;
  5331. }
  5332. #u38044 .text {
  5333. position:absolute;
  5334. align-self:center;
  5335. padding:2px 2px 2px 0px;
  5336. box-sizing:border-box;
  5337. width:100%;
  5338. }
  5339. #u38044_text {
  5340. border-width:0px;
  5341. word-wrap:break-word;
  5342. text-transform:none;
  5343. visibility:hidden;
  5344. }
  5345. #u38045_img {
  5346. border-width:0px;
  5347. position:absolute;
  5348. left:0px;
  5349. top:0px;
  5350. width:99px;
  5351. height:30px;
  5352. }
  5353. #u38045 {
  5354. border-width:0px;
  5355. position:absolute;
  5356. left:540px;
  5357. top:298px;
  5358. width:99px;
  5359. height:30px;
  5360. display:flex;
  5361. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5362. font-weight:400;
  5363. font-style:normal;
  5364. font-size:12px;
  5365. color:#333333;
  5366. }
  5367. #u38045 .text {
  5368. position:absolute;
  5369. align-self:center;
  5370. padding:2px 2px 2px 0px;
  5371. box-sizing:border-box;
  5372. width:100%;
  5373. }
  5374. #u38045_text {
  5375. border-width:0px;
  5376. word-wrap:break-word;
  5377. text-transform:none;
  5378. visibility:hidden;
  5379. }
  5380. #u38046_img {
  5381. border-width:0px;
  5382. position:absolute;
  5383. left:0px;
  5384. top:0px;
  5385. width:88px;
  5386. height:30px;
  5387. }
  5388. #u38046 {
  5389. border-width:0px;
  5390. position:absolute;
  5391. left:639px;
  5392. top:298px;
  5393. width:88px;
  5394. height:30px;
  5395. display:flex;
  5396. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5397. font-weight:400;
  5398. font-style:normal;
  5399. font-size:12px;
  5400. color:#333333;
  5401. }
  5402. #u38046 .text {
  5403. position:absolute;
  5404. align-self:center;
  5405. padding:2px 2px 2px 0px;
  5406. box-sizing:border-box;
  5407. width:100%;
  5408. }
  5409. #u38046_text {
  5410. border-width:0px;
  5411. word-wrap:break-word;
  5412. text-transform:none;
  5413. visibility:hidden;
  5414. }
  5415. #u38047_img {
  5416. border-width:0px;
  5417. position:absolute;
  5418. left:0px;
  5419. top:0px;
  5420. width:127px;
  5421. height:30px;
  5422. }
  5423. #u38047 {
  5424. border-width:0px;
  5425. position:absolute;
  5426. left:727px;
  5427. top:298px;
  5428. width:127px;
  5429. height:30px;
  5430. display:flex;
  5431. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5432. font-weight:400;
  5433. font-style:normal;
  5434. font-size:12px;
  5435. color:#333333;
  5436. }
  5437. #u38047 .text {
  5438. position:absolute;
  5439. align-self:center;
  5440. padding:2px 2px 2px 0px;
  5441. box-sizing:border-box;
  5442. width:100%;
  5443. }
  5444. #u38047_text {
  5445. border-width:0px;
  5446. word-wrap:break-word;
  5447. text-transform:none;
  5448. visibility:hidden;
  5449. }
  5450. #u38048_img {
  5451. border-width:0px;
  5452. position:absolute;
  5453. left:0px;
  5454. top:0px;
  5455. width:127px;
  5456. height:30px;
  5457. }
  5458. #u38048 {
  5459. border-width:0px;
  5460. position:absolute;
  5461. left:854px;
  5462. top:298px;
  5463. width:127px;
  5464. height:30px;
  5465. display:flex;
  5466. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5467. font-weight:400;
  5468. font-style:normal;
  5469. font-size:12px;
  5470. color:#333333;
  5471. }
  5472. #u38048 .text {
  5473. position:absolute;
  5474. align-self:center;
  5475. padding:2px 2px 2px 0px;
  5476. box-sizing:border-box;
  5477. width:100%;
  5478. }
  5479. #u38048_text {
  5480. border-width:0px;
  5481. word-wrap:break-word;
  5482. text-transform:none;
  5483. visibility:hidden;
  5484. }
  5485. #u38049_img {
  5486. border-width:0px;
  5487. position:absolute;
  5488. left:0px;
  5489. top:0px;
  5490. width:119px;
  5491. height:30px;
  5492. }
  5493. #u38049 {
  5494. border-width:0px;
  5495. position:absolute;
  5496. left:981px;
  5497. top:298px;
  5498. width:119px;
  5499. height:30px;
  5500. display:flex;
  5501. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5502. font-weight:400;
  5503. font-style:normal;
  5504. font-size:12px;
  5505. color:#333333;
  5506. }
  5507. #u38049 .text {
  5508. position:absolute;
  5509. align-self:center;
  5510. padding:2px 2px 2px 0px;
  5511. box-sizing:border-box;
  5512. width:100%;
  5513. }
  5514. #u38049_text {
  5515. border-width:0px;
  5516. word-wrap:break-word;
  5517. text-transform:none;
  5518. visibility:hidden;
  5519. }
  5520. #u38050_img {
  5521. border-width:0px;
  5522. position:absolute;
  5523. left:0px;
  5524. top:0px;
  5525. width:118px;
  5526. height:30px;
  5527. }
  5528. #u38050 {
  5529. border-width:0px;
  5530. position:absolute;
  5531. left:1100px;
  5532. top:298px;
  5533. width:118px;
  5534. height:30px;
  5535. display:flex;
  5536. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5537. font-weight:400;
  5538. font-style:normal;
  5539. font-size:12px;
  5540. color:#333333;
  5541. }
  5542. #u38050 .text {
  5543. position:absolute;
  5544. align-self:center;
  5545. padding:2px 2px 2px 0px;
  5546. box-sizing:border-box;
  5547. width:100%;
  5548. }
  5549. #u38050_text {
  5550. border-width:0px;
  5551. word-wrap:break-word;
  5552. text-transform:none;
  5553. visibility:hidden;
  5554. }
  5555. #u38051_div {
  5556. border-width:0px;
  5557. position:absolute;
  5558. left:0px;
  5559. top:0px;
  5560. width:59px;
  5561. height:30px;
  5562. background:inherit;
  5563. background-color:rgba(255, 255, 255, 1);
  5564. box-sizing:border-box;
  5565. border-width:1px;
  5566. border-style:solid;
  5567. border-color:rgba(170, 170, 170, 1);
  5568. border-radius:4px;
  5569. -moz-box-shadow:none;
  5570. -webkit-box-shadow:none;
  5571. box-shadow:none;
  5572. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5573. font-weight:400;
  5574. font-style:normal;
  5575. font-size:14px;
  5576. color:#555555;
  5577. }
  5578. #u38051 {
  5579. border-width:0px;
  5580. position:absolute;
  5581. left:356px;
  5582. top:203px;
  5583. width:59px;
  5584. height:30px;
  5585. display:flex;
  5586. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5587. font-weight:400;
  5588. font-style:normal;
  5589. font-size:14px;
  5590. color:#555555;
  5591. }
  5592. #u38051 .text {
  5593. position:absolute;
  5594. align-self:center;
  5595. padding:5px 15px 5px 15px;
  5596. box-sizing:border-box;
  5597. width:100%;
  5598. }
  5599. #u38051_text {
  5600. border-width:0px;
  5601. white-space:nowrap;
  5602. text-transform:none;
  5603. }
  5604. #u38052_div {
  5605. border-width:0px;
  5606. position:absolute;
  5607. left:0px;
  5608. top:0px;
  5609. width:55px;
  5610. height:50px;
  5611. background:inherit;
  5612. background-color:rgba(255, 255, 255, 0);
  5613. border:none;
  5614. border-left:0px;
  5615. border-top:0px;
  5616. border-right:0px;
  5617. border-radius:0px;
  5618. border-bottom-right-radius:0px;
  5619. border-bottom-left-radius:0px;
  5620. -moz-box-shadow:none;
  5621. -webkit-box-shadow:none;
  5622. box-shadow:none;
  5623. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5624. font-weight:400;
  5625. font-style:normal;
  5626. font-size:18px;
  5627. color:#000000;
  5628. line-height:40px;
  5629. }
  5630. #u38052 {
  5631. border-width:0px;
  5632. position:absolute;
  5633. left:356px;
  5634. top:63px;
  5635. width:55px;
  5636. height:50px;
  5637. display:flex;
  5638. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5639. font-weight:400;
  5640. font-style:normal;
  5641. font-size:18px;
  5642. color:#000000;
  5643. line-height:40px;
  5644. }
  5645. #u38052 .text {
  5646. position:absolute;
  5647. align-self:center;
  5648. padding:0px 0px 0px 0px;
  5649. box-sizing:border-box;
  5650. width:100%;
  5651. }
  5652. #u38052_text {
  5653. border-width:0px;
  5654. white-space:nowrap;
  5655. text-transform:none;
  5656. }
  5657. #u38053 {
  5658. border-width:0px;
  5659. position:absolute;
  5660. left:0px;
  5661. top:0px;
  5662. width:0px;
  5663. height:0px;
  5664. }
  5665. #u38054_div {
  5666. border-width:0px;
  5667. position:absolute;
  5668. left:0px;
  5669. top:0px;
  5670. width:140px;
  5671. height:30px;
  5672. background:inherit;
  5673. background-color:rgba(255, 255, 255, 1);
  5674. box-sizing:border-box;
  5675. border-width:1px;
  5676. border-style:solid;
  5677. border-color:rgba(215, 215, 215, 1);
  5678. border-radius:4px;
  5679. -moz-box-shadow:none;
  5680. -webkit-box-shadow:none;
  5681. box-shadow:none;
  5682. font-size:11px;
  5683. }
  5684. #u38054 {
  5685. border-width:0px;
  5686. position:absolute;
  5687. left:1106px;
  5688. top:113px;
  5689. width:140px;
  5690. height:30px;
  5691. display:flex;
  5692. font-size:11px;
  5693. }
  5694. #u38054 .text {
  5695. position:absolute;
  5696. align-self:center;
  5697. padding:2px 2px 2px 2px;
  5698. box-sizing:border-box;
  5699. width:100%;
  5700. }
  5701. #u38054_text {
  5702. border-width:0px;
  5703. word-wrap:break-word;
  5704. text-transform:none;
  5705. visibility:hidden;
  5706. }
  5707. #u38055_input {
  5708. position:absolute;
  5709. left:0px;
  5710. top:0px;
  5711. width:126px;
  5712. height:23px;
  5713. padding:2px 2px 2px 2px;
  5714. font-family:'ArialMT', 'Arial', sans-serif;
  5715. font-weight:400;
  5716. font-style:normal;
  5717. font-size:11px;
  5718. letter-spacing:normal;
  5719. color:#AAAAAA;
  5720. vertical-align:none;
  5721. text-align:left;
  5722. text-transform:none;
  5723. background-color:transparent;
  5724. border-color:transparent;
  5725. }
  5726. #u38055_input.disabled {
  5727. position:absolute;
  5728. left:0px;
  5729. top:0px;
  5730. width:126px;
  5731. height:23px;
  5732. padding:2px 2px 2px 2px;
  5733. font-family:'ArialMT', 'Arial', sans-serif;
  5734. font-weight:400;
  5735. font-style:normal;
  5736. font-size:11px;
  5737. letter-spacing:normal;
  5738. color:#AAAAAA;
  5739. vertical-align:none;
  5740. text-align:left;
  5741. text-transform:none;
  5742. background-color:transparent;
  5743. border-color:transparent;
  5744. }
  5745. #u38055_div {
  5746. border-width:0px;
  5747. position:absolute;
  5748. left:0px;
  5749. top:0px;
  5750. width:126px;
  5751. height:23px;
  5752. background:inherit;
  5753. background-color:rgba(255, 255, 255, 1);
  5754. border:none;
  5755. border-radius:0px;
  5756. -moz-box-shadow:none;
  5757. -webkit-box-shadow:none;
  5758. box-shadow:none;
  5759. font-size:11px;
  5760. color:#AAAAAA;
  5761. }
  5762. #u38055 {
  5763. border-width:0px;
  5764. position:absolute;
  5765. left:1113px;
  5766. top:115px;
  5767. width:126px;
  5768. height:23px;
  5769. display:flex;
  5770. font-size:11px;
  5771. color:#AAAAAA;
  5772. }
  5773. #u38055 .text {
  5774. position:absolute;
  5775. align-self:flex-start;
  5776. padding:2px 2px 2px 2px;
  5777. box-sizing:border-box;
  5778. width:100%;
  5779. }
  5780. #u38055_div.disabled {
  5781. border-width:0px;
  5782. position:absolute;
  5783. left:0px;
  5784. top:0px;
  5785. width:126px;
  5786. height:23px;
  5787. background:inherit;
  5788. background-color:rgba(240, 240, 240, 1);
  5789. border:none;
  5790. border-radius:0px;
  5791. -moz-box-shadow:none;
  5792. -webkit-box-shadow:none;
  5793. box-shadow:none;
  5794. font-size:11px;
  5795. color:#AAAAAA;
  5796. }
  5797. #u38055.disabled {
  5798. }
  5799. .u38055_input_option {
  5800. font-size:11px;
  5801. }
  5802. #u38056 {
  5803. border-width:0px;
  5804. position:absolute;
  5805. left:0px;
  5806. top:0px;
  5807. width:0px;
  5808. height:0px;
  5809. }
  5810. #u38057_div {
  5811. border-width:0px;
  5812. position:absolute;
  5813. left:0px;
  5814. top:0px;
  5815. width:140px;
  5816. height:30px;
  5817. background:inherit;
  5818. background-color:rgba(255, 255, 255, 1);
  5819. box-sizing:border-box;
  5820. border-width:1px;
  5821. border-style:solid;
  5822. border-color:rgba(201, 201, 201, 1);
  5823. border-radius:4px;
  5824. -moz-box-shadow:none;
  5825. -webkit-box-shadow:none;
  5826. box-shadow:none;
  5827. font-family:'Microsoft YaHei', sans-serif;
  5828. font-weight:400;
  5829. font-style:normal;
  5830. font-size:14px;
  5831. color:#CCCCCC;
  5832. text-align:left;
  5833. }
  5834. #u38057 {
  5835. border-width:0px;
  5836. position:absolute;
  5837. left:356px;
  5838. top:153px;
  5839. width:140px;
  5840. height:30px;
  5841. display:flex;
  5842. font-family:'Microsoft YaHei', sans-serif;
  5843. font-weight:400;
  5844. font-style:normal;
  5845. font-size:14px;
  5846. color:#CCCCCC;
  5847. text-align:left;
  5848. }
  5849. #u38057 .text {
  5850. position:absolute;
  5851. align-self:center;
  5852. padding:2px 8px 2px 8px;
  5853. box-sizing:border-box;
  5854. width:100%;
  5855. }
  5856. #u38057_text {
  5857. border-width:0px;
  5858. word-wrap:break-word;
  5859. text-transform:none;
  5860. visibility:hidden;
  5861. }
  5862. #u38058_input {
  5863. position:absolute;
  5864. left:0px;
  5865. top:0px;
  5866. width:127px;
  5867. height:25px;
  5868. padding:2px 2px 2px 2px;
  5869. font-family:'Microsoft YaHei', sans-serif;
  5870. font-weight:400;
  5871. font-style:normal;
  5872. font-size:10px;
  5873. letter-spacing:normal;
  5874. color:#000000;
  5875. vertical-align:none;
  5876. text-align:left;
  5877. text-transform:none;
  5878. background-color:transparent;
  5879. border-color:transparent;
  5880. }
  5881. #u38058_input.disabled {
  5882. position:absolute;
  5883. left:0px;
  5884. top:0px;
  5885. width:127px;
  5886. height:25px;
  5887. padding:2px 2px 2px 2px;
  5888. font-family:'Microsoft YaHei', sans-serif;
  5889. font-weight:400;
  5890. font-style:normal;
  5891. font-size:10px;
  5892. letter-spacing:normal;
  5893. color:#000000;
  5894. vertical-align:none;
  5895. text-align:left;
  5896. text-transform:none;
  5897. background-color:transparent;
  5898. border-color:transparent;
  5899. }
  5900. #u38058_div {
  5901. border-width:0px;
  5902. position:absolute;
  5903. left:0px;
  5904. top:0px;
  5905. width:127px;
  5906. height:25px;
  5907. background:inherit;
  5908. background-color:rgba(255, 255, 255, 1);
  5909. border:none;
  5910. border-radius:0px;
  5911. -moz-box-shadow:none;
  5912. -webkit-box-shadow:none;
  5913. box-shadow:none;
  5914. font-family:'Microsoft YaHei', sans-serif;
  5915. font-weight:400;
  5916. font-style:normal;
  5917. font-size:10px;
  5918. }
  5919. #u38058 {
  5920. border-width:0px;
  5921. position:absolute;
  5922. left:364px;
  5923. top:154px;
  5924. width:127px;
  5925. height:25px;
  5926. display:flex;
  5927. font-family:'Microsoft YaHei', sans-serif;
  5928. font-weight:400;
  5929. font-style:normal;
  5930. font-size:10px;
  5931. }
  5932. #u38058 .text {
  5933. position:absolute;
  5934. align-self:center;
  5935. padding:2px 2px 2px 2px;
  5936. box-sizing:border-box;
  5937. width:100%;
  5938. }
  5939. #u38058_div.disabled {
  5940. border-width:0px;
  5941. position:absolute;
  5942. left:0px;
  5943. top:0px;
  5944. width:127px;
  5945. height:25px;
  5946. background:inherit;
  5947. background-color:rgba(240, 240, 240, 1);
  5948. border:none;
  5949. border-radius:0px;
  5950. -moz-box-shadow:none;
  5951. -webkit-box-shadow:none;
  5952. box-shadow:none;
  5953. font-family:'Microsoft YaHei', sans-serif;
  5954. font-weight:400;
  5955. font-style:normal;
  5956. font-size:10px;
  5957. }
  5958. #u38058.disabled {
  5959. }
  5960. #u38059 {
  5961. border-width:0px;
  5962. position:absolute;
  5963. left:0px;
  5964. top:0px;
  5965. width:0px;
  5966. height:0px;
  5967. }
  5968. #u38060_div {
  5969. border-width:0px;
  5970. position:absolute;
  5971. left:0px;
  5972. top:0px;
  5973. width:140px;
  5974. height:30px;
  5975. background:inherit;
  5976. background-color:rgba(255, 255, 255, 1);
  5977. box-sizing:border-box;
  5978. border-width:1px;
  5979. border-style:solid;
  5980. border-color:rgba(201, 201, 201, 1);
  5981. border-radius:4px;
  5982. -moz-box-shadow:none;
  5983. -webkit-box-shadow:none;
  5984. box-shadow:none;
  5985. font-family:'Microsoft YaHei', sans-serif;
  5986. font-weight:400;
  5987. font-style:normal;
  5988. font-size:14px;
  5989. color:#CCCCCC;
  5990. text-align:left;
  5991. }
  5992. #u38060 {
  5993. border-width:0px;
  5994. position:absolute;
  5995. left:506px;
  5996. top:153px;
  5997. width:140px;
  5998. height:30px;
  5999. display:flex;
  6000. font-family:'Microsoft YaHei', sans-serif;
  6001. font-weight:400;
  6002. font-style:normal;
  6003. font-size:14px;
  6004. color:#CCCCCC;
  6005. text-align:left;
  6006. }
  6007. #u38060 .text {
  6008. position:absolute;
  6009. align-self:center;
  6010. padding:2px 8px 2px 8px;
  6011. box-sizing:border-box;
  6012. width:100%;
  6013. }
  6014. #u38060_text {
  6015. border-width:0px;
  6016. word-wrap:break-word;
  6017. text-transform:none;
  6018. visibility:hidden;
  6019. }
  6020. #u38061_input {
  6021. position:absolute;
  6022. left:0px;
  6023. top:0px;
  6024. width:127px;
  6025. height:25px;
  6026. padding:2px 2px 2px 2px;
  6027. font-family:'Microsoft YaHei', sans-serif;
  6028. font-weight:400;
  6029. font-style:normal;
  6030. font-size:10px;
  6031. letter-spacing:normal;
  6032. color:#000000;
  6033. vertical-align:none;
  6034. text-align:left;
  6035. text-transform:none;
  6036. background-color:transparent;
  6037. border-color:transparent;
  6038. }
  6039. #u38061_input.disabled {
  6040. position:absolute;
  6041. left:0px;
  6042. top:0px;
  6043. width:127px;
  6044. height:25px;
  6045. padding:2px 2px 2px 2px;
  6046. font-family:'Microsoft YaHei', sans-serif;
  6047. font-weight:400;
  6048. font-style:normal;
  6049. font-size:10px;
  6050. letter-spacing:normal;
  6051. color:#000000;
  6052. vertical-align:none;
  6053. text-align:left;
  6054. text-transform:none;
  6055. background-color:transparent;
  6056. border-color:transparent;
  6057. }
  6058. #u38061_div {
  6059. border-width:0px;
  6060. position:absolute;
  6061. left:0px;
  6062. top:0px;
  6063. width:127px;
  6064. height:25px;
  6065. background:inherit;
  6066. background-color:rgba(255, 255, 255, 1);
  6067. border:none;
  6068. border-radius:0px;
  6069. -moz-box-shadow:none;
  6070. -webkit-box-shadow:none;
  6071. box-shadow:none;
  6072. font-family:'Microsoft YaHei', sans-serif;
  6073. font-weight:400;
  6074. font-style:normal;
  6075. font-size:10px;
  6076. }
  6077. #u38061 {
  6078. border-width:0px;
  6079. position:absolute;
  6080. left:514px;
  6081. top:154px;
  6082. width:127px;
  6083. height:25px;
  6084. display:flex;
  6085. font-family:'Microsoft YaHei', sans-serif;
  6086. font-weight:400;
  6087. font-style:normal;
  6088. font-size:10px;
  6089. }
  6090. #u38061 .text {
  6091. position:absolute;
  6092. align-self:center;
  6093. padding:2px 2px 2px 2px;
  6094. box-sizing:border-box;
  6095. width:100%;
  6096. }
  6097. #u38061_div.disabled {
  6098. border-width:0px;
  6099. position:absolute;
  6100. left:0px;
  6101. top:0px;
  6102. width:127px;
  6103. height:25px;
  6104. background:inherit;
  6105. background-color:rgba(240, 240, 240, 1);
  6106. border:none;
  6107. border-radius:0px;
  6108. -moz-box-shadow:none;
  6109. -webkit-box-shadow:none;
  6110. box-shadow:none;
  6111. font-family:'Microsoft YaHei', sans-serif;
  6112. font-weight:400;
  6113. font-style:normal;
  6114. font-size:10px;
  6115. }
  6116. #u38061.disabled {
  6117. }
  6118. #u38062 {
  6119. border-width:0px;
  6120. position:absolute;
  6121. left:0px;
  6122. top:0px;
  6123. width:0px;
  6124. height:0px;
  6125. }
  6126. #u38063_div {
  6127. border-width:0px;
  6128. position:absolute;
  6129. left:0px;
  6130. top:0px;
  6131. width:140px;
  6132. height:30px;
  6133. background:inherit;
  6134. background-color:rgba(255, 255, 255, 1);
  6135. box-sizing:border-box;
  6136. border-width:1px;
  6137. border-style:solid;
  6138. border-color:rgba(215, 215, 215, 1);
  6139. border-radius:4px;
  6140. -moz-box-shadow:none;
  6141. -webkit-box-shadow:none;
  6142. box-shadow:none;
  6143. font-size:11px;
  6144. }
  6145. #u38063 {
  6146. border-width:0px;
  6147. position:absolute;
  6148. left:1256px;
  6149. top:112px;
  6150. width:140px;
  6151. height:30px;
  6152. display:flex;
  6153. font-size:11px;
  6154. }
  6155. #u38063 .text {
  6156. position:absolute;
  6157. align-self:center;
  6158. padding:2px 2px 2px 2px;
  6159. box-sizing:border-box;
  6160. width:100%;
  6161. }
  6162. #u38063_text {
  6163. border-width:0px;
  6164. word-wrap:break-word;
  6165. text-transform:none;
  6166. visibility:hidden;
  6167. }
  6168. #u38064_input {
  6169. position:absolute;
  6170. left:0px;
  6171. top:0px;
  6172. width:126px;
  6173. height:23px;
  6174. padding:2px 2px 2px 2px;
  6175. font-family:'ArialMT', 'Arial', sans-serif;
  6176. font-weight:400;
  6177. font-style:normal;
  6178. font-size:11px;
  6179. letter-spacing:normal;
  6180. color:#AAAAAA;
  6181. vertical-align:none;
  6182. text-align:left;
  6183. text-transform:none;
  6184. background-color:transparent;
  6185. border-color:transparent;
  6186. }
  6187. #u38064_input.disabled {
  6188. position:absolute;
  6189. left:0px;
  6190. top:0px;
  6191. width:126px;
  6192. height:23px;
  6193. padding:2px 2px 2px 2px;
  6194. font-family:'ArialMT', 'Arial', sans-serif;
  6195. font-weight:400;
  6196. font-style:normal;
  6197. font-size:11px;
  6198. letter-spacing:normal;
  6199. color:#AAAAAA;
  6200. vertical-align:none;
  6201. text-align:left;
  6202. text-transform:none;
  6203. background-color:transparent;
  6204. border-color:transparent;
  6205. }
  6206. #u38064_div {
  6207. border-width:0px;
  6208. position:absolute;
  6209. left:0px;
  6210. top:0px;
  6211. width:126px;
  6212. height:23px;
  6213. background:inherit;
  6214. background-color:rgba(255, 255, 255, 1);
  6215. border:none;
  6216. border-radius:0px;
  6217. -moz-box-shadow:none;
  6218. -webkit-box-shadow:none;
  6219. box-shadow:none;
  6220. font-size:11px;
  6221. color:#AAAAAA;
  6222. }
  6223. #u38064 {
  6224. border-width:0px;
  6225. position:absolute;
  6226. left:1263px;
  6227. top:114px;
  6228. width:126px;
  6229. height:23px;
  6230. display:flex;
  6231. font-size:11px;
  6232. color:#AAAAAA;
  6233. }
  6234. #u38064 .text {
  6235. position:absolute;
  6236. align-self:flex-start;
  6237. padding:2px 2px 2px 2px;
  6238. box-sizing:border-box;
  6239. width:100%;
  6240. }
  6241. #u38064_div.disabled {
  6242. border-width:0px;
  6243. position:absolute;
  6244. left:0px;
  6245. top:0px;
  6246. width:126px;
  6247. height:23px;
  6248. background:inherit;
  6249. background-color:rgba(240, 240, 240, 1);
  6250. border:none;
  6251. border-radius:0px;
  6252. -moz-box-shadow:none;
  6253. -webkit-box-shadow:none;
  6254. box-shadow:none;
  6255. font-size:11px;
  6256. color:#AAAAAA;
  6257. }
  6258. #u38064.disabled {
  6259. }
  6260. .u38064_input_option {
  6261. font-size:11px;
  6262. }
  6263. #u38065 {
  6264. border-width:0px;
  6265. position:absolute;
  6266. left:0px;
  6267. top:0px;
  6268. width:0px;
  6269. height:0px;
  6270. }
  6271. #u38066_div {
  6272. border-width:0px;
  6273. position:absolute;
  6274. left:0px;
  6275. top:0px;
  6276. width:140px;
  6277. height:30px;
  6278. background:inherit;
  6279. background-color:rgba(255, 255, 255, 1);
  6280. box-sizing:border-box;
  6281. border-width:1px;
  6282. border-style:solid;
  6283. border-color:rgba(215, 215, 215, 1);
  6284. border-radius:4px;
  6285. -moz-box-shadow:none;
  6286. -webkit-box-shadow:none;
  6287. box-shadow:none;
  6288. font-size:11px;
  6289. }
  6290. #u38066 {
  6291. border-width:0px;
  6292. position:absolute;
  6293. left:956px;
  6294. top:113px;
  6295. width:140px;
  6296. height:30px;
  6297. display:flex;
  6298. font-size:11px;
  6299. }
  6300. #u38066 .text {
  6301. position:absolute;
  6302. align-self:center;
  6303. padding:2px 2px 2px 2px;
  6304. box-sizing:border-box;
  6305. width:100%;
  6306. }
  6307. #u38066_text {
  6308. border-width:0px;
  6309. word-wrap:break-word;
  6310. text-transform:none;
  6311. visibility:hidden;
  6312. }
  6313. #u38067_input {
  6314. position:absolute;
  6315. left:0px;
  6316. top:0px;
  6317. width:126px;
  6318. height:23px;
  6319. padding:2px 2px 2px 2px;
  6320. font-family:'ArialMT', 'Arial', sans-serif;
  6321. font-weight:400;
  6322. font-style:normal;
  6323. font-size:11px;
  6324. letter-spacing:normal;
  6325. color:#AAAAAA;
  6326. vertical-align:none;
  6327. text-align:left;
  6328. text-transform:none;
  6329. background-color:transparent;
  6330. border-color:transparent;
  6331. }
  6332. #u38067_input.disabled {
  6333. position:absolute;
  6334. left:0px;
  6335. top:0px;
  6336. width:126px;
  6337. height:23px;
  6338. padding:2px 2px 2px 2px;
  6339. font-family:'ArialMT', 'Arial', sans-serif;
  6340. font-weight:400;
  6341. font-style:normal;
  6342. font-size:11px;
  6343. letter-spacing:normal;
  6344. color:#AAAAAA;
  6345. vertical-align:none;
  6346. text-align:left;
  6347. text-transform:none;
  6348. background-color:transparent;
  6349. border-color:transparent;
  6350. }
  6351. #u38067_div {
  6352. border-width:0px;
  6353. position:absolute;
  6354. left:0px;
  6355. top:0px;
  6356. width:126px;
  6357. height:23px;
  6358. background:inherit;
  6359. background-color:rgba(255, 255, 255, 1);
  6360. border:none;
  6361. border-radius:0px;
  6362. -moz-box-shadow:none;
  6363. -webkit-box-shadow:none;
  6364. box-shadow:none;
  6365. font-size:11px;
  6366. color:#AAAAAA;
  6367. }
  6368. #u38067 {
  6369. border-width:0px;
  6370. position:absolute;
  6371. left:963px;
  6372. top:115px;
  6373. width:126px;
  6374. height:23px;
  6375. display:flex;
  6376. font-size:11px;
  6377. color:#AAAAAA;
  6378. }
  6379. #u38067 .text {
  6380. position:absolute;
  6381. align-self:flex-start;
  6382. padding:2px 2px 2px 2px;
  6383. box-sizing:border-box;
  6384. width:100%;
  6385. }
  6386. #u38067_div.disabled {
  6387. border-width:0px;
  6388. position:absolute;
  6389. left:0px;
  6390. top:0px;
  6391. width:126px;
  6392. height:23px;
  6393. background:inherit;
  6394. background-color:rgba(240, 240, 240, 1);
  6395. border:none;
  6396. border-radius:0px;
  6397. -moz-box-shadow:none;
  6398. -webkit-box-shadow:none;
  6399. box-shadow:none;
  6400. font-size:11px;
  6401. color:#AAAAAA;
  6402. }
  6403. #u38067.disabled {
  6404. }
  6405. .u38067_input_option {
  6406. font-size:11px;
  6407. }
  6408. #u38068 {
  6409. border-width:0px;
  6410. position:absolute;
  6411. left:0px;
  6412. top:0px;
  6413. width:0px;
  6414. height:0px;
  6415. }
  6416. #u38069_div {
  6417. border-width:0px;
  6418. position:absolute;
  6419. left:0px;
  6420. top:0px;
  6421. width:140px;
  6422. height:30px;
  6423. background:inherit;
  6424. background-color:rgba(255, 255, 255, 1);
  6425. box-sizing:border-box;
  6426. border-width:1px;
  6427. border-style:solid;
  6428. border-color:rgba(201, 201, 201, 1);
  6429. border-radius:4px;
  6430. -moz-box-shadow:none;
  6431. -webkit-box-shadow:none;
  6432. box-shadow:none;
  6433. font-family:'Microsoft YaHei', sans-serif;
  6434. font-weight:400;
  6435. font-style:normal;
  6436. font-size:14px;
  6437. color:#CCCCCC;
  6438. text-align:left;
  6439. }
  6440. #u38069 {
  6441. border-width:0px;
  6442. position:absolute;
  6443. left:506px;
  6444. top:113px;
  6445. width:140px;
  6446. height:30px;
  6447. display:flex;
  6448. font-family:'Microsoft YaHei', sans-serif;
  6449. font-weight:400;
  6450. font-style:normal;
  6451. font-size:14px;
  6452. color:#CCCCCC;
  6453. text-align:left;
  6454. }
  6455. #u38069 .text {
  6456. position:absolute;
  6457. align-self:center;
  6458. padding:2px 8px 2px 8px;
  6459. box-sizing:border-box;
  6460. width:100%;
  6461. }
  6462. #u38069_text {
  6463. border-width:0px;
  6464. word-wrap:break-word;
  6465. text-transform:none;
  6466. visibility:hidden;
  6467. }
  6468. #u38070_input {
  6469. position:absolute;
  6470. left:0px;
  6471. top:0px;
  6472. width:127px;
  6473. height:25px;
  6474. padding:2px 2px 2px 2px;
  6475. font-family:'Microsoft YaHei', sans-serif;
  6476. font-weight:400;
  6477. font-style:normal;
  6478. font-size:10px;
  6479. letter-spacing:normal;
  6480. color:#000000;
  6481. vertical-align:none;
  6482. text-align:left;
  6483. text-transform:none;
  6484. background-color:transparent;
  6485. border-color:transparent;
  6486. }
  6487. #u38070_input.disabled {
  6488. position:absolute;
  6489. left:0px;
  6490. top:0px;
  6491. width:127px;
  6492. height:25px;
  6493. padding:2px 2px 2px 2px;
  6494. font-family:'Microsoft YaHei', sans-serif;
  6495. font-weight:400;
  6496. font-style:normal;
  6497. font-size:10px;
  6498. letter-spacing:normal;
  6499. color:#000000;
  6500. vertical-align:none;
  6501. text-align:left;
  6502. text-transform:none;
  6503. background-color:transparent;
  6504. border-color:transparent;
  6505. }
  6506. #u38070_div {
  6507. border-width:0px;
  6508. position:absolute;
  6509. left:0px;
  6510. top:0px;
  6511. width:127px;
  6512. height:25px;
  6513. background:inherit;
  6514. background-color:rgba(255, 255, 255, 1);
  6515. border:none;
  6516. border-radius:0px;
  6517. -moz-box-shadow:none;
  6518. -webkit-box-shadow:none;
  6519. box-shadow:none;
  6520. font-family:'Microsoft YaHei', sans-serif;
  6521. font-weight:400;
  6522. font-style:normal;
  6523. font-size:10px;
  6524. }
  6525. #u38070 {
  6526. border-width:0px;
  6527. position:absolute;
  6528. left:514px;
  6529. top:114px;
  6530. width:127px;
  6531. height:25px;
  6532. display:flex;
  6533. font-family:'Microsoft YaHei', sans-serif;
  6534. font-weight:400;
  6535. font-style:normal;
  6536. font-size:10px;
  6537. }
  6538. #u38070 .text {
  6539. position:absolute;
  6540. align-self:center;
  6541. padding:2px 2px 2px 2px;
  6542. box-sizing:border-box;
  6543. width:100%;
  6544. }
  6545. #u38070_div.disabled {
  6546. border-width:0px;
  6547. position:absolute;
  6548. left:0px;
  6549. top:0px;
  6550. width:127px;
  6551. height:25px;
  6552. background:inherit;
  6553. background-color:rgba(240, 240, 240, 1);
  6554. border:none;
  6555. border-radius:0px;
  6556. -moz-box-shadow:none;
  6557. -webkit-box-shadow:none;
  6558. box-shadow:none;
  6559. font-family:'Microsoft YaHei', sans-serif;
  6560. font-weight:400;
  6561. font-style:normal;
  6562. font-size:10px;
  6563. }
  6564. #u38070.disabled {
  6565. }
  6566. #u38071 {
  6567. border-width:0px;
  6568. position:absolute;
  6569. left:0px;
  6570. top:0px;
  6571. width:0px;
  6572. height:0px;
  6573. }
  6574. #u38072_div {
  6575. border-width:0px;
  6576. position:absolute;
  6577. left:0px;
  6578. top:0px;
  6579. width:140px;
  6580. height:30px;
  6581. background:inherit;
  6582. background-color:rgba(255, 255, 255, 1);
  6583. box-sizing:border-box;
  6584. border-width:1px;
  6585. border-style:solid;
  6586. border-color:rgba(201, 201, 201, 1);
  6587. border-radius:4px;
  6588. -moz-box-shadow:none;
  6589. -webkit-box-shadow:none;
  6590. box-shadow:none;
  6591. font-family:'Microsoft YaHei', sans-serif;
  6592. font-weight:400;
  6593. font-style:normal;
  6594. font-size:14px;
  6595. color:#CCCCCC;
  6596. text-align:left;
  6597. }
  6598. #u38072 {
  6599. border-width:0px;
  6600. position:absolute;
  6601. left:806px;
  6602. top:113px;
  6603. width:140px;
  6604. height:30px;
  6605. display:flex;
  6606. font-family:'Microsoft YaHei', sans-serif;
  6607. font-weight:400;
  6608. font-style:normal;
  6609. font-size:14px;
  6610. color:#CCCCCC;
  6611. text-align:left;
  6612. }
  6613. #u38072 .text {
  6614. position:absolute;
  6615. align-self:center;
  6616. padding:2px 8px 2px 8px;
  6617. box-sizing:border-box;
  6618. width:100%;
  6619. }
  6620. #u38072_text {
  6621. border-width:0px;
  6622. word-wrap:break-word;
  6623. text-transform:none;
  6624. visibility:hidden;
  6625. }
  6626. #u38073_input {
  6627. position:absolute;
  6628. left:0px;
  6629. top:0px;
  6630. width:127px;
  6631. height:25px;
  6632. padding:2px 2px 2px 2px;
  6633. font-family:'Microsoft YaHei', sans-serif;
  6634. font-weight:400;
  6635. font-style:normal;
  6636. font-size:10px;
  6637. letter-spacing:normal;
  6638. color:#000000;
  6639. vertical-align:none;
  6640. text-align:left;
  6641. text-transform:none;
  6642. background-color:transparent;
  6643. border-color:transparent;
  6644. }
  6645. #u38073_input.disabled {
  6646. position:absolute;
  6647. left:0px;
  6648. top:0px;
  6649. width:127px;
  6650. height:25px;
  6651. padding:2px 2px 2px 2px;
  6652. font-family:'Microsoft YaHei', sans-serif;
  6653. font-weight:400;
  6654. font-style:normal;
  6655. font-size:10px;
  6656. letter-spacing:normal;
  6657. color:#000000;
  6658. vertical-align:none;
  6659. text-align:left;
  6660. text-transform:none;
  6661. background-color:transparent;
  6662. border-color:transparent;
  6663. }
  6664. #u38073_div {
  6665. border-width:0px;
  6666. position:absolute;
  6667. left:0px;
  6668. top:0px;
  6669. width:127px;
  6670. height:25px;
  6671. background:inherit;
  6672. background-color:rgba(255, 255, 255, 1);
  6673. border:none;
  6674. border-radius:0px;
  6675. -moz-box-shadow:none;
  6676. -webkit-box-shadow:none;
  6677. box-shadow:none;
  6678. font-family:'Microsoft YaHei', sans-serif;
  6679. font-weight:400;
  6680. font-style:normal;
  6681. font-size:10px;
  6682. }
  6683. #u38073 {
  6684. border-width:0px;
  6685. position:absolute;
  6686. left:814px;
  6687. top:114px;
  6688. width:127px;
  6689. height:25px;
  6690. display:flex;
  6691. font-family:'Microsoft YaHei', sans-serif;
  6692. font-weight:400;
  6693. font-style:normal;
  6694. font-size:10px;
  6695. }
  6696. #u38073 .text {
  6697. position:absolute;
  6698. align-self:center;
  6699. padding:2px 2px 2px 2px;
  6700. box-sizing:border-box;
  6701. width:100%;
  6702. }
  6703. #u38073_div.disabled {
  6704. border-width:0px;
  6705. position:absolute;
  6706. left:0px;
  6707. top:0px;
  6708. width:127px;
  6709. height:25px;
  6710. background:inherit;
  6711. background-color:rgba(240, 240, 240, 1);
  6712. border:none;
  6713. border-radius:0px;
  6714. -moz-box-shadow:none;
  6715. -webkit-box-shadow:none;
  6716. box-shadow:none;
  6717. font-family:'Microsoft YaHei', sans-serif;
  6718. font-weight:400;
  6719. font-style:normal;
  6720. font-size:10px;
  6721. }
  6722. #u38073.disabled {
  6723. }
  6724. #u38074 {
  6725. border-width:0px;
  6726. position:absolute;
  6727. left:0px;
  6728. top:0px;
  6729. width:0px;
  6730. height:0px;
  6731. }
  6732. #u38075_div {
  6733. border-width:0px;
  6734. position:absolute;
  6735. left:0px;
  6736. top:0px;
  6737. width:140px;
  6738. height:30px;
  6739. background:inherit;
  6740. background-color:rgba(255, 255, 255, 1);
  6741. box-sizing:border-box;
  6742. border-width:1px;
  6743. border-style:solid;
  6744. border-color:rgba(215, 215, 215, 1);
  6745. border-radius:4px;
  6746. -moz-box-shadow:none;
  6747. -webkit-box-shadow:none;
  6748. box-shadow:none;
  6749. font-size:11px;
  6750. }
  6751. #u38075 {
  6752. border-width:0px;
  6753. position:absolute;
  6754. left:356px;
  6755. top:113px;
  6756. width:140px;
  6757. height:30px;
  6758. display:flex;
  6759. font-size:11px;
  6760. }
  6761. #u38075 .text {
  6762. position:absolute;
  6763. align-self:center;
  6764. padding:2px 2px 2px 2px;
  6765. box-sizing:border-box;
  6766. width:100%;
  6767. }
  6768. #u38075_text {
  6769. border-width:0px;
  6770. word-wrap:break-word;
  6771. text-transform:none;
  6772. visibility:hidden;
  6773. }
  6774. #u38076_input {
  6775. position:absolute;
  6776. left:0px;
  6777. top:0px;
  6778. width:126px;
  6779. height:23px;
  6780. padding:2px 2px 2px 2px;
  6781. font-family:'ArialMT', 'Arial', sans-serif;
  6782. font-weight:400;
  6783. font-style:normal;
  6784. font-size:11px;
  6785. letter-spacing:normal;
  6786. color:#AAAAAA;
  6787. vertical-align:none;
  6788. text-align:left;
  6789. text-transform:none;
  6790. background-color:transparent;
  6791. border-color:transparent;
  6792. }
  6793. #u38076_input.disabled {
  6794. position:absolute;
  6795. left:0px;
  6796. top:0px;
  6797. width:126px;
  6798. height:23px;
  6799. padding:2px 2px 2px 2px;
  6800. font-family:'ArialMT', 'Arial', sans-serif;
  6801. font-weight:400;
  6802. font-style:normal;
  6803. font-size:11px;
  6804. letter-spacing:normal;
  6805. color:#AAAAAA;
  6806. vertical-align:none;
  6807. text-align:left;
  6808. text-transform:none;
  6809. background-color:transparent;
  6810. border-color:transparent;
  6811. }
  6812. #u38076_div {
  6813. border-width:0px;
  6814. position:absolute;
  6815. left:0px;
  6816. top:0px;
  6817. width:126px;
  6818. height:23px;
  6819. background:inherit;
  6820. background-color:rgba(255, 255, 255, 1);
  6821. border:none;
  6822. border-radius:0px;
  6823. -moz-box-shadow:none;
  6824. -webkit-box-shadow:none;
  6825. box-shadow:none;
  6826. font-size:11px;
  6827. color:#AAAAAA;
  6828. }
  6829. #u38076 {
  6830. border-width:0px;
  6831. position:absolute;
  6832. left:363px;
  6833. top:115px;
  6834. width:126px;
  6835. height:23px;
  6836. display:flex;
  6837. font-size:11px;
  6838. color:#AAAAAA;
  6839. }
  6840. #u38076 .text {
  6841. position:absolute;
  6842. align-self:flex-start;
  6843. padding:2px 2px 2px 2px;
  6844. box-sizing:border-box;
  6845. width:100%;
  6846. }
  6847. #u38076_div.disabled {
  6848. border-width:0px;
  6849. position:absolute;
  6850. left:0px;
  6851. top:0px;
  6852. width:126px;
  6853. height:23px;
  6854. background:inherit;
  6855. background-color:rgba(240, 240, 240, 1);
  6856. border:none;
  6857. border-radius:0px;
  6858. -moz-box-shadow:none;
  6859. -webkit-box-shadow:none;
  6860. box-shadow:none;
  6861. font-size:11px;
  6862. color:#AAAAAA;
  6863. }
  6864. #u38076.disabled {
  6865. }
  6866. .u38076_input_option {
  6867. font-size:11px;
  6868. }
  6869. #u38077 {
  6870. border-width:0px;
  6871. position:absolute;
  6872. left:0px;
  6873. top:0px;
  6874. width:0px;
  6875. height:0px;
  6876. }
  6877. #u38078_div {
  6878. border-width:0px;
  6879. position:absolute;
  6880. left:0px;
  6881. top:0px;
  6882. width:140px;
  6883. height:30px;
  6884. background:inherit;
  6885. background-color:rgba(255, 255, 255, 1);
  6886. box-sizing:border-box;
  6887. border-width:1px;
  6888. border-style:solid;
  6889. border-color:rgba(215, 215, 215, 1);
  6890. border-radius:4px;
  6891. -moz-box-shadow:none;
  6892. -webkit-box-shadow:none;
  6893. box-shadow:none;
  6894. font-size:11px;
  6895. }
  6896. #u38078 {
  6897. border-width:0px;
  6898. position:absolute;
  6899. left:1406px;
  6900. top:112px;
  6901. width:140px;
  6902. height:30px;
  6903. display:flex;
  6904. font-size:11px;
  6905. }
  6906. #u38078 .text {
  6907. position:absolute;
  6908. align-self:center;
  6909. padding:2px 2px 2px 2px;
  6910. box-sizing:border-box;
  6911. width:100%;
  6912. }
  6913. #u38078_text {
  6914. border-width:0px;
  6915. word-wrap:break-word;
  6916. text-transform:none;
  6917. visibility:hidden;
  6918. }
  6919. #u38079_input {
  6920. position:absolute;
  6921. left:0px;
  6922. top:0px;
  6923. width:126px;
  6924. height:23px;
  6925. padding:2px 2px 2px 2px;
  6926. font-family:'ArialMT', 'Arial', sans-serif;
  6927. font-weight:400;
  6928. font-style:normal;
  6929. font-size:11px;
  6930. letter-spacing:normal;
  6931. color:#AAAAAA;
  6932. vertical-align:none;
  6933. text-align:left;
  6934. text-transform:none;
  6935. background-color:transparent;
  6936. border-color:transparent;
  6937. }
  6938. #u38079_input.disabled {
  6939. position:absolute;
  6940. left:0px;
  6941. top:0px;
  6942. width:126px;
  6943. height:23px;
  6944. padding:2px 2px 2px 2px;
  6945. font-family:'ArialMT', 'Arial', sans-serif;
  6946. font-weight:400;
  6947. font-style:normal;
  6948. font-size:11px;
  6949. letter-spacing:normal;
  6950. color:#AAAAAA;
  6951. vertical-align:none;
  6952. text-align:left;
  6953. text-transform:none;
  6954. background-color:transparent;
  6955. border-color:transparent;
  6956. }
  6957. #u38079_div {
  6958. border-width:0px;
  6959. position:absolute;
  6960. left:0px;
  6961. top:0px;
  6962. width:126px;
  6963. height:23px;
  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. font-size:11px;
  6972. color:#AAAAAA;
  6973. }
  6974. #u38079 {
  6975. border-width:0px;
  6976. position:absolute;
  6977. left:1413px;
  6978. top:114px;
  6979. width:126px;
  6980. height:23px;
  6981. display:flex;
  6982. font-size:11px;
  6983. color:#AAAAAA;
  6984. }
  6985. #u38079 .text {
  6986. position:absolute;
  6987. align-self:flex-start;
  6988. padding:2px 2px 2px 2px;
  6989. box-sizing:border-box;
  6990. width:100%;
  6991. }
  6992. #u38079_div.disabled {
  6993. border-width:0px;
  6994. position:absolute;
  6995. left:0px;
  6996. top:0px;
  6997. width:126px;
  6998. height:23px;
  6999. background:inherit;
  7000. background-color:rgba(240, 240, 240, 1);
  7001. border:none;
  7002. border-radius:0px;
  7003. -moz-box-shadow:none;
  7004. -webkit-box-shadow:none;
  7005. box-shadow:none;
  7006. font-size:11px;
  7007. color:#AAAAAA;
  7008. }
  7009. #u38079.disabled {
  7010. }
  7011. .u38079_input_option {
  7012. font-size:11px;
  7013. }
  7014. #u38080 {
  7015. border-width:0px;
  7016. position:absolute;
  7017. left:0px;
  7018. top:0px;
  7019. width:0px;
  7020. height:0px;
  7021. }
  7022. #u38081_div {
  7023. border-width:0px;
  7024. position:absolute;
  7025. left:0px;
  7026. top:0px;
  7027. width:140px;
  7028. height:30px;
  7029. background:inherit;
  7030. background-color:rgba(255, 255, 255, 1);
  7031. box-sizing:border-box;
  7032. border-width:1px;
  7033. border-style:solid;
  7034. border-color:rgba(215, 215, 215, 1);
  7035. border-radius:4px;
  7036. -moz-box-shadow:none;
  7037. -webkit-box-shadow:none;
  7038. box-shadow:none;
  7039. font-size:11px;
  7040. }
  7041. #u38081 {
  7042. border-width:0px;
  7043. position:absolute;
  7044. left:656px;
  7045. top:113px;
  7046. width:140px;
  7047. height:30px;
  7048. display:flex;
  7049. font-size:11px;
  7050. }
  7051. #u38081 .text {
  7052. position:absolute;
  7053. align-self:center;
  7054. padding:2px 2px 2px 2px;
  7055. box-sizing:border-box;
  7056. width:100%;
  7057. }
  7058. #u38081_text {
  7059. border-width:0px;
  7060. word-wrap:break-word;
  7061. text-transform:none;
  7062. visibility:hidden;
  7063. }
  7064. #u38082_input {
  7065. position:absolute;
  7066. left:0px;
  7067. top:0px;
  7068. width:126px;
  7069. height:23px;
  7070. padding:2px 2px 2px 2px;
  7071. font-family:'ArialMT', 'Arial', sans-serif;
  7072. font-weight:400;
  7073. font-style:normal;
  7074. font-size:11px;
  7075. letter-spacing:normal;
  7076. color:#AAAAAA;
  7077. vertical-align:none;
  7078. text-align:left;
  7079. text-transform:none;
  7080. background-color:transparent;
  7081. border-color:transparent;
  7082. }
  7083. #u38082_input.disabled {
  7084. position:absolute;
  7085. left:0px;
  7086. top:0px;
  7087. width:126px;
  7088. height:23px;
  7089. padding:2px 2px 2px 2px;
  7090. font-family:'ArialMT', 'Arial', sans-serif;
  7091. font-weight:400;
  7092. font-style:normal;
  7093. font-size:11px;
  7094. letter-spacing:normal;
  7095. color:#AAAAAA;
  7096. vertical-align:none;
  7097. text-align:left;
  7098. text-transform:none;
  7099. background-color:transparent;
  7100. border-color:transparent;
  7101. }
  7102. #u38082_div {
  7103. border-width:0px;
  7104. position:absolute;
  7105. left:0px;
  7106. top:0px;
  7107. width:126px;
  7108. height:23px;
  7109. background:inherit;
  7110. background-color:rgba(255, 255, 255, 1);
  7111. border:none;
  7112. border-radius:0px;
  7113. -moz-box-shadow:none;
  7114. -webkit-box-shadow:none;
  7115. box-shadow:none;
  7116. font-size:11px;
  7117. color:#AAAAAA;
  7118. }
  7119. #u38082 {
  7120. border-width:0px;
  7121. position:absolute;
  7122. left:663px;
  7123. top:115px;
  7124. width:126px;
  7125. height:23px;
  7126. display:flex;
  7127. font-size:11px;
  7128. color:#AAAAAA;
  7129. }
  7130. #u38082 .text {
  7131. position:absolute;
  7132. align-self:flex-start;
  7133. padding:2px 2px 2px 2px;
  7134. box-sizing:border-box;
  7135. width:100%;
  7136. }
  7137. #u38082_div.disabled {
  7138. border-width:0px;
  7139. position:absolute;
  7140. left:0px;
  7141. top:0px;
  7142. width:126px;
  7143. height:23px;
  7144. background:inherit;
  7145. background-color:rgba(240, 240, 240, 1);
  7146. border:none;
  7147. border-radius:0px;
  7148. -moz-box-shadow:none;
  7149. -webkit-box-shadow:none;
  7150. box-shadow:none;
  7151. font-size:11px;
  7152. color:#AAAAAA;
  7153. }
  7154. #u38082.disabled {
  7155. }
  7156. .u38082_input_option {
  7157. font-size:11px;
  7158. }
  7159. #u38083 {
  7160. border-width:0px;
  7161. position:absolute;
  7162. left:0px;
  7163. top:0px;
  7164. width:0px;
  7165. height:0px;
  7166. }
  7167. #u38084_div {
  7168. border-width:0px;
  7169. position:absolute;
  7170. left:0px;
  7171. top:0px;
  7172. width:200px;
  7173. height:1180px;
  7174. background:inherit;
  7175. background-color:rgba(255, 255, 255, 1);
  7176. border:none;
  7177. border-radius:0px;
  7178. -moz-box-shadow:none;
  7179. -webkit-box-shadow:none;
  7180. box-shadow:none;
  7181. }
  7182. #u38084 {
  7183. border-width:0px;
  7184. position:absolute;
  7185. left:120px;
  7186. top:50px;
  7187. width:200px;
  7188. height:1180px;
  7189. display:flex;
  7190. }
  7191. #u38084 .text {
  7192. position:absolute;
  7193. align-self:center;
  7194. padding:2px 2px 2px 2px;
  7195. box-sizing:border-box;
  7196. width:100%;
  7197. }
  7198. #u38084_text {
  7199. border-width:0px;
  7200. word-wrap:break-word;
  7201. text-transform:none;
  7202. visibility:hidden;
  7203. }
  7204. #u38085_div {
  7205. border-width:0px;
  7206. position:absolute;
  7207. left:0px;
  7208. top:0px;
  7209. width:200px;
  7210. height:60px;
  7211. background:inherit;
  7212. background-color:rgba(224, 231, 247, 1);
  7213. border:none;
  7214. border-radius:0px;
  7215. -moz-box-shadow:none;
  7216. -webkit-box-shadow:none;
  7217. box-shadow:none;
  7218. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  7219. font-weight:500;
  7220. font-style:normal;
  7221. font-size:18px;
  7222. }
  7223. #u38085 {
  7224. border-width:0px;
  7225. position:absolute;
  7226. left:120px;
  7227. top:50px;
  7228. width:200px;
  7229. height:60px;
  7230. display:flex;
  7231. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  7232. font-weight:500;
  7233. font-style:normal;
  7234. font-size:18px;
  7235. }
  7236. #u38085 .text {
  7237. position:absolute;
  7238. align-self:center;
  7239. padding:0px 0px 0px 20px;
  7240. box-sizing:border-box;
  7241. width:100%;
  7242. }
  7243. #u38085_text {
  7244. border-width:0px;
  7245. word-wrap:break-word;
  7246. text-transform:none;
  7247. }
  7248. #u38086_div {
  7249. border-width:0px;
  7250. position:absolute;
  7251. left:0px;
  7252. top:0px;
  7253. width:65px;
  7254. height:22px;
  7255. background:inherit;
  7256. background-color:rgba(255, 255, 255, 0);
  7257. border:none;
  7258. border-radius:0px;
  7259. -moz-box-shadow:none;
  7260. -webkit-box-shadow:none;
  7261. box-shadow:none;
  7262. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7263. font-weight:400;
  7264. font-style:normal;
  7265. font-size:16px;
  7266. }
  7267. #u38086 {
  7268. border-width:0px;
  7269. position:absolute;
  7270. left:147px;
  7271. top:167px;
  7272. width:65px;
  7273. height:22px;
  7274. display:flex;
  7275. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7276. font-weight:400;
  7277. font-style:normal;
  7278. font-size:16px;
  7279. }
  7280. #u38086 .text {
  7281. position:absolute;
  7282. align-self:flex-start;
  7283. padding:0px 0px 0px 0px;
  7284. box-sizing:border-box;
  7285. width:100%;
  7286. }
  7287. #u38086_text {
  7288. border-width:0px;
  7289. white-space:nowrap;
  7290. text-transform:none;
  7291. }
  7292. #u38087_div {
  7293. border-width:0px;
  7294. position:absolute;
  7295. left:0px;
  7296. top:0px;
  7297. width:65px;
  7298. height:22px;
  7299. background:inherit;
  7300. background-color:rgba(255, 255, 255, 0);
  7301. border:none;
  7302. border-radius:0px;
  7303. -moz-box-shadow:none;
  7304. -webkit-box-shadow:none;
  7305. box-shadow:none;
  7306. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7307. font-weight:400;
  7308. font-style:normal;
  7309. font-size:16px;
  7310. }
  7311. #u38087 {
  7312. border-width:0px;
  7313. position:absolute;
  7314. left:147px;
  7315. top:251px;
  7316. width:65px;
  7317. height:22px;
  7318. display:flex;
  7319. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7320. font-weight:400;
  7321. font-style:normal;
  7322. font-size:16px;
  7323. }
  7324. #u38087 .text {
  7325. position:absolute;
  7326. align-self:flex-start;
  7327. padding:0px 0px 0px 0px;
  7328. box-sizing:border-box;
  7329. width:100%;
  7330. }
  7331. #u38087_text {
  7332. border-width:0px;
  7333. white-space:nowrap;
  7334. text-transform:none;
  7335. }
  7336. #u38088_div {
  7337. border-width:0px;
  7338. position:absolute;
  7339. left:0px;
  7340. top:0px;
  7341. width:49px;
  7342. height:17px;
  7343. background:inherit;
  7344. background-color:rgba(255, 255, 255, 0);
  7345. border:none;
  7346. border-radius:0px;
  7347. -moz-box-shadow:none;
  7348. -webkit-box-shadow:none;
  7349. box-shadow:none;
  7350. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7351. font-weight:400;
  7352. font-style:normal;
  7353. font-size:12px;
  7354. color:#AAAAAA;
  7355. }
  7356. #u38088 {
  7357. border-width:0px;
  7358. position:absolute;
  7359. left:147px;
  7360. top:130px;
  7361. width:49px;
  7362. height:17px;
  7363. display:flex;
  7364. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7365. font-weight:400;
  7366. font-style:normal;
  7367. font-size:12px;
  7368. color:#AAAAAA;
  7369. }
  7370. #u38088 .text {
  7371. position:absolute;
  7372. align-self:flex-start;
  7373. padding:0px 0px 0px 0px;
  7374. box-sizing:border-box;
  7375. width:100%;
  7376. }
  7377. #u38088_text {
  7378. border-width:0px;
  7379. white-space:nowrap;
  7380. text-transform:none;
  7381. }
  7382. #u38089_div {
  7383. border-width:0px;
  7384. position:absolute;
  7385. left:0px;
  7386. top:0px;
  7387. width:65px;
  7388. height:22px;
  7389. background:inherit;
  7390. background-color:rgba(255, 255, 255, 0);
  7391. border:none;
  7392. border-radius:0px;
  7393. -moz-box-shadow:none;
  7394. -webkit-box-shadow:none;
  7395. box-shadow:none;
  7396. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7397. font-weight:400;
  7398. font-style:normal;
  7399. font-size:16px;
  7400. }
  7401. #u38089 {
  7402. border-width:0px;
  7403. position:absolute;
  7404. left:147px;
  7405. top:354px;
  7406. width:65px;
  7407. height:22px;
  7408. display:flex;
  7409. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7410. font-weight:400;
  7411. font-style:normal;
  7412. font-size:16px;
  7413. }
  7414. #u38089 .text {
  7415. position:absolute;
  7416. align-self:flex-start;
  7417. padding:0px 0px 0px 0px;
  7418. box-sizing:border-box;
  7419. width:100%;
  7420. }
  7421. #u38089_text {
  7422. border-width:0px;
  7423. white-space:nowrap;
  7424. text-transform:none;
  7425. }
  7426. #u38090_div {
  7427. border-width:0px;
  7428. position:absolute;
  7429. left:0px;
  7430. top:0px;
  7431. width:49px;
  7432. height:17px;
  7433. background:inherit;
  7434. background-color:rgba(255, 255, 255, 0);
  7435. border:none;
  7436. border-radius:0px;
  7437. -moz-box-shadow:none;
  7438. -webkit-box-shadow:none;
  7439. box-shadow:none;
  7440. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7441. font-weight:400;
  7442. font-style:normal;
  7443. font-size:12px;
  7444. color:#AAAAAA;
  7445. }
  7446. #u38090 {
  7447. border-width:0px;
  7448. position:absolute;
  7449. left:147px;
  7450. top:318px;
  7451. width:49px;
  7452. height:17px;
  7453. display:flex;
  7454. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7455. font-weight:400;
  7456. font-style:normal;
  7457. font-size:12px;
  7458. color:#AAAAAA;
  7459. }
  7460. #u38090 .text {
  7461. position:absolute;
  7462. align-self:flex-start;
  7463. padding:0px 0px 0px 0px;
  7464. box-sizing:border-box;
  7465. width:100%;
  7466. }
  7467. #u38090_text {
  7468. border-width:0px;
  7469. white-space:nowrap;
  7470. text-transform:none;
  7471. }
  7472. #u38091_img {
  7473. border-width:0px;
  7474. position:absolute;
  7475. left:0px;
  7476. top:0px;
  7477. width:201px;
  7478. height:2px;
  7479. }
  7480. #u38091 {
  7481. border-width:0px;
  7482. position:absolute;
  7483. left:120px;
  7484. top:293px;
  7485. width:200px;
  7486. height:1px;
  7487. display:flex;
  7488. }
  7489. #u38091 .text {
  7490. position:absolute;
  7491. align-self:center;
  7492. padding:2px 2px 2px 2px;
  7493. box-sizing:border-box;
  7494. width:100%;
  7495. }
  7496. #u38091_text {
  7497. border-width:0px;
  7498. word-wrap:break-word;
  7499. text-transform:none;
  7500. visibility:hidden;
  7501. }
  7502. #u38092_div {
  7503. border-width:0px;
  7504. position:absolute;
  7505. left:0px;
  7506. top:0px;
  7507. width:65px;
  7508. height:22px;
  7509. background:inherit;
  7510. background-color:rgba(255, 255, 255, 0);
  7511. border:none;
  7512. border-radius:0px;
  7513. -moz-box-shadow:none;
  7514. -webkit-box-shadow:none;
  7515. box-shadow:none;
  7516. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7517. font-weight:400;
  7518. font-style:normal;
  7519. font-size:16px;
  7520. }
  7521. #u38092 {
  7522. border-width:0px;
  7523. position:absolute;
  7524. left:147px;
  7525. top:396px;
  7526. width:65px;
  7527. height:22px;
  7528. display:flex;
  7529. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7530. font-weight:400;
  7531. font-style:normal;
  7532. font-size:16px;
  7533. }
  7534. #u38092 .text {
  7535. position:absolute;
  7536. align-self:flex-start;
  7537. padding:0px 0px 0px 0px;
  7538. box-sizing:border-box;
  7539. width:100%;
  7540. }
  7541. #u38092_text {
  7542. border-width:0px;
  7543. white-space:nowrap;
  7544. text-transform:none;
  7545. }
  7546. #u38093_div {
  7547. border-width:0px;
  7548. position:absolute;
  7549. left:0px;
  7550. top:0px;
  7551. width:65px;
  7552. height:22px;
  7553. background:inherit;
  7554. background-color:rgba(255, 255, 255, 0);
  7555. border:none;
  7556. border-radius:0px;
  7557. -moz-box-shadow:none;
  7558. -webkit-box-shadow:none;
  7559. box-shadow:none;
  7560. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7561. font-weight:400;
  7562. font-style:normal;
  7563. font-size:16px;
  7564. }
  7565. #u38093 {
  7566. border-width:0px;
  7567. position:absolute;
  7568. left:147px;
  7569. top:209px;
  7570. width:65px;
  7571. height:22px;
  7572. display:flex;
  7573. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7574. font-weight:400;
  7575. font-style:normal;
  7576. font-size:16px;
  7577. }
  7578. #u38093 .text {
  7579. position:absolute;
  7580. align-self:flex-start;
  7581. padding:0px 0px 0px 0px;
  7582. box-sizing:border-box;
  7583. width:100%;
  7584. }
  7585. #u38093_text {
  7586. border-width:0px;
  7587. white-space:nowrap;
  7588. text-transform:none;
  7589. }
  7590. #u38094_div {
  7591. border-width:0px;
  7592. position:absolute;
  7593. left:0px;
  7594. top:0px;
  7595. width:49px;
  7596. height:22px;
  7597. background:inherit;
  7598. background-color:rgba(255, 255, 255, 0);
  7599. border:none;
  7600. border-radius:0px;
  7601. -moz-box-shadow:none;
  7602. -webkit-box-shadow:none;
  7603. box-shadow:none;
  7604. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7605. font-weight:400;
  7606. font-style:normal;
  7607. font-size:16px;
  7608. }
  7609. #u38094 {
  7610. border-width:0px;
  7611. position:absolute;
  7612. left:147px;
  7613. top:499px;
  7614. width:49px;
  7615. height:22px;
  7616. display:flex;
  7617. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7618. font-weight:400;
  7619. font-style:normal;
  7620. font-size:16px;
  7621. }
  7622. #u38094 .text {
  7623. position:absolute;
  7624. align-self:flex-start;
  7625. padding:0px 0px 0px 0px;
  7626. box-sizing:border-box;
  7627. width:100%;
  7628. }
  7629. #u38094_text {
  7630. border-width:0px;
  7631. white-space:nowrap;
  7632. text-transform:none;
  7633. }
  7634. #u38095_div {
  7635. border-width:0px;
  7636. position:absolute;
  7637. left:0px;
  7638. top:0px;
  7639. width:37px;
  7640. height:17px;
  7641. background:inherit;
  7642. background-color:rgba(255, 255, 255, 0);
  7643. border:none;
  7644. border-radius:0px;
  7645. -moz-box-shadow:none;
  7646. -webkit-box-shadow:none;
  7647. box-shadow:none;
  7648. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7649. font-weight:400;
  7650. font-style:normal;
  7651. font-size:12px;
  7652. color:#AAAAAA;
  7653. }
  7654. #u38095 {
  7655. border-width:0px;
  7656. position:absolute;
  7657. left:147px;
  7658. top:463px;
  7659. width:37px;
  7660. height:17px;
  7661. display:flex;
  7662. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7663. font-weight:400;
  7664. font-style:normal;
  7665. font-size:12px;
  7666. color:#AAAAAA;
  7667. }
  7668. #u38095 .text {
  7669. position:absolute;
  7670. align-self:flex-start;
  7671. padding:0px 0px 0px 0px;
  7672. box-sizing:border-box;
  7673. width:100%;
  7674. }
  7675. #u38095_text {
  7676. border-width:0px;
  7677. white-space:nowrap;
  7678. text-transform:none;
  7679. }
  7680. #u38096_img {
  7681. border-width:0px;
  7682. position:absolute;
  7683. left:0px;
  7684. top:0px;
  7685. width:201px;
  7686. height:2px;
  7687. }
  7688. #u38096 {
  7689. border-width:0px;
  7690. position:absolute;
  7691. left:120px;
  7692. top:438px;
  7693. width:200px;
  7694. height:1px;
  7695. display:flex;
  7696. }
  7697. #u38096 .text {
  7698. position:absolute;
  7699. align-self:center;
  7700. padding:2px 2px 2px 2px;
  7701. box-sizing:border-box;
  7702. width:100%;
  7703. }
  7704. #u38096_text {
  7705. border-width:0px;
  7706. word-wrap:break-word;
  7707. text-transform:none;
  7708. visibility:hidden;
  7709. }