styles.css 106 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145114611471148114911501151115211531154115511561157115811591160116111621163116411651166116711681169117011711172117311741175117611771178117911801181118211831184118511861187118811891190119111921193119411951196119711981199120012011202120312041205120612071208120912101211121212131214121512161217121812191220122112221223122412251226122712281229123012311232123312341235123612371238123912401241124212431244124512461247124812491250125112521253125412551256125712581259126012611262126312641265126612671268126912701271127212731274127512761277127812791280128112821283128412851286128712881289129012911292129312941295129612971298129913001301130213031304130513061307130813091310131113121313131413151316131713181319132013211322132313241325132613271328132913301331133213331334133513361337133813391340134113421343134413451346134713481349135013511352135313541355135613571358135913601361136213631364136513661367136813691370137113721373137413751376137713781379138013811382138313841385138613871388138913901391139213931394139513961397139813991400140114021403140414051406140714081409141014111412141314141415141614171418141914201421142214231424142514261427142814291430143114321433143414351436143714381439144014411442144314441445144614471448144914501451145214531454145514561457145814591460146114621463146414651466146714681469147014711472147314741475147614771478147914801481148214831484148514861487148814891490149114921493149414951496149714981499150015011502150315041505150615071508150915101511151215131514151515161517151815191520152115221523152415251526152715281529153015311532153315341535153615371538153915401541154215431544154515461547154815491550155115521553155415551556155715581559156015611562156315641565156615671568156915701571157215731574157515761577157815791580158115821583158415851586158715881589159015911592159315941595159615971598159916001601160216031604160516061607160816091610161116121613161416151616161716181619162016211622162316241625162616271628162916301631163216331634163516361637163816391640164116421643164416451646164716481649165016511652165316541655165616571658165916601661166216631664166516661667166816691670167116721673167416751676167716781679168016811682168316841685168616871688168916901691169216931694169516961697169816991700170117021703170417051706170717081709171017111712171317141715171617171718171917201721172217231724172517261727172817291730173117321733173417351736173717381739174017411742174317441745174617471748174917501751175217531754175517561757175817591760176117621763176417651766176717681769177017711772177317741775177617771778177917801781178217831784178517861787178817891790179117921793179417951796179717981799180018011802180318041805180618071808180918101811181218131814181518161817181818191820182118221823182418251826182718281829183018311832183318341835183618371838183918401841184218431844184518461847184818491850185118521853185418551856185718581859186018611862186318641865186618671868186918701871187218731874187518761877187818791880188118821883188418851886188718881889189018911892189318941895189618971898189919001901190219031904190519061907190819091910191119121913191419151916191719181919192019211922192319241925192619271928192919301931193219331934193519361937193819391940194119421943194419451946194719481949195019511952195319541955195619571958195919601961196219631964196519661967196819691970197119721973197419751976197719781979198019811982198319841985198619871988198919901991199219931994199519961997199819992000200120022003200420052006200720082009201020112012201320142015201620172018201920202021202220232024202520262027202820292030203120322033203420352036203720382039204020412042204320442045204620472048204920502051205220532054205520562057205820592060206120622063206420652066206720682069207020712072207320742075207620772078207920802081208220832084208520862087208820892090209120922093209420952096209720982099210021012102210321042105210621072108210921102111211221132114211521162117211821192120212121222123212421252126212721282129213021312132213321342135213621372138213921402141214221432144214521462147214821492150215121522153215421552156215721582159216021612162216321642165216621672168216921702171217221732174217521762177217821792180218121822183218421852186218721882189219021912192219321942195219621972198219922002201220222032204220522062207220822092210221122122213221422152216221722182219222022212222222322242225222622272228222922302231223222332234223522362237223822392240224122422243224422452246224722482249225022512252225322542255225622572258225922602261226222632264226522662267226822692270227122722273227422752276227722782279228022812282228322842285228622872288228922902291229222932294229522962297229822992300230123022303230423052306230723082309231023112312231323142315231623172318231923202321232223232324232523262327232823292330233123322333233423352336233723382339234023412342234323442345234623472348234923502351235223532354235523562357235823592360236123622363236423652366236723682369237023712372237323742375237623772378237923802381238223832384238523862387238823892390239123922393239423952396239723982399240024012402240324042405240624072408240924102411241224132414241524162417241824192420242124222423242424252426242724282429243024312432243324342435243624372438243924402441244224432444244524462447244824492450245124522453245424552456245724582459246024612462246324642465246624672468246924702471247224732474247524762477247824792480248124822483248424852486248724882489249024912492249324942495249624972498249925002501250225032504250525062507250825092510251125122513251425152516251725182519252025212522252325242525252625272528252925302531253225332534253525362537253825392540254125422543254425452546254725482549255025512552255325542555255625572558255925602561256225632564256525662567256825692570257125722573257425752576257725782579258025812582258325842585258625872588258925902591259225932594259525962597259825992600260126022603260426052606260726082609261026112612261326142615261626172618261926202621262226232624262526262627262826292630263126322633263426352636263726382639264026412642264326442645264626472648264926502651265226532654265526562657265826592660266126622663266426652666266726682669267026712672267326742675267626772678267926802681268226832684268526862687268826892690269126922693269426952696269726982699270027012702270327042705270627072708270927102711271227132714271527162717271827192720272127222723272427252726272727282729273027312732273327342735273627372738273927402741274227432744274527462747274827492750275127522753275427552756275727582759276027612762276327642765276627672768276927702771277227732774277527762777277827792780278127822783278427852786278727882789279027912792279327942795279627972798279928002801280228032804280528062807280828092810281128122813281428152816281728182819282028212822282328242825282628272828282928302831283228332834283528362837283828392840284128422843284428452846284728482849285028512852285328542855285628572858285928602861286228632864286528662867286828692870287128722873287428752876287728782879288028812882288328842885288628872888288928902891289228932894289528962897289828992900290129022903290429052906290729082909291029112912291329142915291629172918291929202921292229232924292529262927292829292930293129322933293429352936293729382939294029412942294329442945294629472948294929502951295229532954295529562957295829592960296129622963296429652966296729682969297029712972297329742975297629772978297929802981298229832984298529862987298829892990299129922993299429952996299729982999300030013002300330043005300630073008300930103011301230133014301530163017301830193020302130223023302430253026302730283029303030313032303330343035303630373038303930403041304230433044304530463047304830493050305130523053305430553056305730583059306030613062306330643065306630673068306930703071307230733074307530763077307830793080308130823083308430853086308730883089309030913092309330943095309630973098309931003101310231033104310531063107310831093110311131123113311431153116311731183119312031213122312331243125312631273128312931303131313231333134313531363137313831393140314131423143314431453146314731483149315031513152315331543155315631573158315931603161316231633164316531663167316831693170317131723173317431753176317731783179318031813182318331843185318631873188318931903191319231933194319531963197319831993200320132023203320432053206320732083209321032113212321332143215321632173218321932203221322232233224322532263227322832293230323132323233323432353236323732383239324032413242324332443245324632473248324932503251325232533254325532563257325832593260326132623263326432653266326732683269327032713272327332743275327632773278327932803281328232833284328532863287328832893290329132923293329432953296329732983299330033013302330333043305330633073308330933103311331233133314331533163317331833193320332133223323332433253326332733283329333033313332333333343335333633373338333933403341334233433344334533463347334833493350335133523353335433553356335733583359336033613362336333643365336633673368336933703371337233733374337533763377337833793380338133823383338433853386338733883389339033913392339333943395339633973398339934003401340234033404340534063407340834093410341134123413341434153416341734183419342034213422342334243425342634273428342934303431343234333434343534363437343834393440344134423443344434453446344734483449345034513452345334543455345634573458345934603461346234633464346534663467346834693470347134723473347434753476347734783479348034813482348334843485348634873488348934903491349234933494349534963497349834993500350135023503350435053506350735083509351035113512351335143515351635173518351935203521352235233524352535263527352835293530353135323533353435353536353735383539354035413542354335443545354635473548354935503551355235533554355535563557355835593560356135623563356435653566356735683569357035713572357335743575357635773578357935803581358235833584358535863587358835893590359135923593359435953596359735983599360036013602360336043605360636073608360936103611361236133614361536163617361836193620362136223623362436253626362736283629363036313632363336343635363636373638363936403641364236433644364536463647364836493650365136523653365436553656365736583659366036613662366336643665366636673668366936703671367236733674367536763677367836793680368136823683368436853686368736883689369036913692369336943695369636973698369937003701370237033704370537063707370837093710371137123713371437153716371737183719372037213722372337243725372637273728372937303731373237333734373537363737373837393740374137423743374437453746374737483749375037513752375337543755375637573758375937603761376237633764376537663767376837693770377137723773377437753776377737783779378037813782378337843785378637873788378937903791379237933794379537963797379837993800380138023803380438053806380738083809381038113812381338143815381638173818381938203821382238233824382538263827382838293830383138323833383438353836383738383839384038413842384338443845384638473848384938503851385238533854385538563857385838593860386138623863386438653866386738683869387038713872387338743875387638773878387938803881388238833884388538863887388838893890389138923893389438953896389738983899390039013902390339043905390639073908390939103911391239133914391539163917391839193920392139223923392439253926392739283929393039313932393339343935393639373938393939403941394239433944394539463947394839493950395139523953395439553956395739583959396039613962396339643965396639673968396939703971397239733974397539763977397839793980398139823983398439853986398739883989399039913992399339943995399639973998399940004001400240034004400540064007400840094010401140124013401440154016401740184019402040214022402340244025402640274028402940304031403240334034403540364037403840394040404140424043404440454046404740484049405040514052405340544055405640574058405940604061406240634064406540664067406840694070407140724073407440754076407740784079408040814082408340844085408640874088408940904091409240934094409540964097409840994100410141024103410441054106410741084109411041114112411341144115411641174118411941204121412241234124412541264127412841294130413141324133413441354136413741384139414041414142414341444145414641474148414941504151415241534154415541564157415841594160416141624163416441654166416741684169417041714172417341744175417641774178417941804181418241834184418541864187418841894190419141924193419441954196419741984199420042014202420342044205420642074208420942104211421242134214421542164217421842194220422142224223422442254226422742284229423042314232423342344235423642374238423942404241424242434244424542464247424842494250425142524253425442554256425742584259426042614262426342644265426642674268426942704271427242734274427542764277427842794280428142824283428442854286428742884289429042914292429342944295429642974298429943004301430243034304430543064307430843094310431143124313431443154316431743184319432043214322432343244325432643274328432943304331433243334334433543364337433843394340434143424343434443454346434743484349435043514352435343544355435643574358435943604361436243634364436543664367436843694370437143724373437443754376437743784379438043814382438343844385438643874388438943904391439243934394439543964397439843994400440144024403440444054406440744084409441044114412441344144415441644174418441944204421442244234424442544264427442844294430443144324433443444354436443744384439444044414442444344444445444644474448444944504451445244534454445544564457445844594460446144624463446444654466446744684469447044714472447344744475447644774478447944804481448244834484448544864487448844894490449144924493449444954496449744984499450045014502450345044505450645074508450945104511451245134514451545164517451845194520452145224523452445254526452745284529453045314532453345344535453645374538453945404541454245434544454545464547454845494550455145524553455445554556455745584559456045614562456345644565456645674568456945704571457245734574457545764577457845794580458145824583458445854586458745884589459045914592459345944595459645974598459946004601460246034604460546064607460846094610461146124613461446154616461746184619462046214622462346244625462646274628462946304631463246334634463546364637463846394640464146424643464446454646464746484649465046514652465346544655465646574658465946604661466246634664466546664667466846694670467146724673467446754676467746784679468046814682468346844685468646874688468946904691469246934694469546964697469846994700470147024703470447054706470747084709471047114712471347144715471647174718471947204721472247234724472547264727472847294730473147324733473447354736473747384739474047414742474347444745474647474748474947504751475247534754475547564757475847594760476147624763476447654766476747684769477047714772477347744775477647774778477947804781478247834784478547864787478847894790479147924793479447954796479747984799480048014802480348044805480648074808480948104811481248134814481548164817481848194820482148224823482448254826482748284829483048314832483348344835483648374838483948404841484248434844484548464847484848494850485148524853485448554856485748584859486048614862486348644865486648674868486948704871487248734874487548764877487848794880488148824883488448854886488748884889489048914892489348944895489648974898489949004901490249034904490549064907490849094910491149124913491449154916491749184919492049214922492349244925492649274928492949304931493249334934493549364937493849394940494149424943494449454946494749484949495049514952495349544955495649574958495949604961496249634964496549664967496849694970497149724973497449754976497749784979498049814982498349844985498649874988498949904991499249934994499549964997499849995000500150025003500450055006500750085009501050115012501350145015501650175018501950205021502250235024502550265027502850295030503150325033503450355036503750385039504050415042504350445045504650475048504950505051505250535054505550565057505850595060506150625063506450655066506750685069507050715072507350745075507650775078507950805081508250835084508550865087508850895090509150925093509450955096509750985099510051015102510351045105510651075108510951105111511251135114511551165117511851195120512151225123512451255126512751285129513051315132513351345135513651375138513951405141514251435144514551465147514851495150515151525153515451555156515751585159516051615162516351645165516651675168516951705171517251735174517551765177517851795180518151825183518451855186518751885189519051915192519351945195519651975198519952005201520252035204520552065207520852095210521152125213521452155216521752185219522052215222522352245225522652275228522952305231523252335234523552365237523852395240524152425243524452455246524752485249525052515252525352545255525652575258525952605261526252635264526552665267526852695270527152725273527452755276527752785279528052815282528352845285528652875288528952905291529252935294529552965297529852995300530153025303530453055306530753085309531053115312531353145315531653175318531953205321532253235324532553265327532853295330533153325333533453355336533753385339534053415342534353445345534653475348534953505351535253535354535553565357535853595360536153625363536453655366536753685369537053715372537353745375537653775378537953805381538253835384538553865387538853895390539153925393539453955396539753985399540054015402540354045405540654075408540954105411541254135414541554165417541854195420542154225423542454255426542754285429543054315432543354345435543654375438543954405441544254435444544554465447544854495450545154525453545454555456545754585459546054615462546354645465546654675468546954705471547254735474547554765477547854795480548154825483548454855486548754885489549054915492549354945495549654975498549955005501550255035504550555065507550855095510551155125513551455155516551755185519552055215522552355245525552655275528552955305531553255335534553555365537553855395540554155425543554455455546554755485549555055515552555355545555555655575558555955605561556255635564556555665567556855695570557155725573557455755576557755785579558055815582558355845585558655875588558955905591559255935594559555965597559855995600560156025603560456055606560756085609561056115612561356145615561656175618561956205621562256235624562556265627562856295630563156325633563456355636563756385639564056415642564356445645564656475648564956505651565256535654565556565657565856595660566156625663566456655666566756685669567056715672567356745675567656775678567956805681568256835684568556865687568856895690569156925693569456955696569756985699570057015702570357045705570657075708570957105711571257135714571557165717571857195720572157225723572457255726572757285729573057315732573357345735573657375738573957405741574257435744574557465747574857495750575157525753575457555756575757585759576057615762576357645765576657675768576957705771577257735774577557765777577857795780578157825783578457855786578757885789579057915792579357945795579657975798579958005801580258035804580558065807580858095810581158125813581458155816581758185819582058215822582358245825582658275828582958305831583258335834583558365837583858395840584158425843584458455846584758485849585058515852585358545855585658575858585958605861586258635864586558665867586858695870587158725873587458755876587758785879588058815882588358845885588658875888588958905891589258935894589558965897589858995900590159025903590459055906590759085909591059115912591359145915591659175918591959205921592259235924592559265927592859295930593159325933593459355936593759385939594059415942594359445945594659475948594959505951595259535954595559565957595859595960596159625963596459655966596759685969597059715972597359745975597659775978597959805981598259835984598559865987598859895990599159925993599459955996599759985999600060016002600360046005600660076008600960106011601260136014601560166017601860196020602160226023602460256026602760286029603060316032603360346035603660376038603960406041604260436044604560466047604860496050605160526053605460556056605760586059606060616062606360646065606660676068
  1. body {
  2. margin:0px;
  3. background-image:none;
  4. position:relative;
  5. left:0px;
  6. width:1711px;
  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. #u97232 {
  20. border-width:0px;
  21. position:absolute;
  22. left:0px;
  23. top:0px;
  24. width:0px;
  25. height:0px;
  26. }
  27. #u97234_div {
  28. border-width:0px;
  29. position:absolute;
  30. left:0px;
  31. top:0px;
  32. width:1480px;
  33. height:1200px;
  34. background:inherit;
  35. background-color:rgba(242, 242, 242, 1);
  36. border:none;
  37. border-radius:0px;
  38. -moz-box-shadow:none;
  39. -webkit-box-shadow:none;
  40. box-shadow:none;
  41. }
  42. #u97234 {
  43. border-width:0px;
  44. position:absolute;
  45. left:120px;
  46. top:50px;
  47. width:1480px;
  48. height:1200px;
  49. display:flex;
  50. }
  51. #u97234 .text {
  52. position:absolute;
  53. align-self:center;
  54. padding:2px 2px 2px 2px;
  55. box-sizing:border-box;
  56. width:100%;
  57. }
  58. #u97234_text {
  59. border-width:0px;
  60. word-wrap:break-word;
  61. text-transform:none;
  62. visibility:hidden;
  63. }
  64. #u97235_div {
  65. border-width:0px;
  66. position:absolute;
  67. left:0px;
  68. top:0px;
  69. width:129px;
  70. height:22px;
  71. background:inherit;
  72. background-color:rgba(255, 255, 255, 0);
  73. border:none;
  74. border-radius:0px;
  75. -moz-box-shadow:none;
  76. -webkit-box-shadow:none;
  77. box-shadow:none;
  78. font-size:16px;
  79. color:#FFFFFF;
  80. }
  81. #u97235 {
  82. border-width:0px;
  83. position:absolute;
  84. left:49px;
  85. top:14px;
  86. width:129px;
  87. height:22px;
  88. display:flex;
  89. font-size:16px;
  90. color:#FFFFFF;
  91. }
  92. #u97235 .text {
  93. position:absolute;
  94. align-self:flex-start;
  95. padding:0px 0px 0px 0px;
  96. box-sizing:border-box;
  97. width:100%;
  98. }
  99. #u97235_text {
  100. border-width:0px;
  101. white-space:nowrap;
  102. text-transform:none;
  103. }
  104. #u97236_div {
  105. border-width:0px;
  106. position:absolute;
  107. left:0px;
  108. top:0px;
  109. width:1600px;
  110. height:50px;
  111. background:inherit;
  112. background-color:rgba(30, 42, 68, 1);
  113. border:none;
  114. border-radius:0px;
  115. -moz-box-shadow:none;
  116. -webkit-box-shadow:none;
  117. box-shadow:none;
  118. color:#AFB3B6;
  119. }
  120. #u97236 {
  121. border-width:0px;
  122. position:absolute;
  123. left:0px;
  124. top:0px;
  125. width:1600px;
  126. height:50px;
  127. display:flex;
  128. color:#AFB3B6;
  129. }
  130. #u97236 .text {
  131. position:absolute;
  132. align-self:center;
  133. padding:2px 2px 2px 2px;
  134. box-sizing:border-box;
  135. width:100%;
  136. }
  137. #u97236_text {
  138. border-width:0px;
  139. word-wrap:break-word;
  140. text-transform:none;
  141. visibility:hidden;
  142. }
  143. #u97237 {
  144. border-width:0px;
  145. position:absolute;
  146. left:0px;
  147. top:0px;
  148. width:0px;
  149. height:0px;
  150. }
  151. #u97238_img {
  152. border-width:0px;
  153. position:absolute;
  154. left:0px;
  155. top:0px;
  156. width:31px;
  157. height:31px;
  158. }
  159. #u97238 {
  160. border-width:0px;
  161. position:absolute;
  162. left:19px;
  163. top:10px;
  164. width:31px;
  165. height:31px;
  166. display:flex;
  167. }
  168. #u97238 .text {
  169. position:absolute;
  170. align-self:center;
  171. padding:2px 2px 2px 2px;
  172. box-sizing:border-box;
  173. width:100%;
  174. }
  175. #u97238_text {
  176. border-width:0px;
  177. word-wrap:break-word;
  178. text-transform:none;
  179. }
  180. #u97239_div {
  181. border-width:0px;
  182. position:absolute;
  183. left:0px;
  184. top:0px;
  185. width:161px;
  186. height:22px;
  187. background:inherit;
  188. background-color:rgba(255, 255, 255, 0);
  189. border:none;
  190. border-radius:0px;
  191. -moz-box-shadow:none;
  192. -webkit-box-shadow:none;
  193. box-shadow:none;
  194. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  195. font-weight:400;
  196. font-style:normal;
  197. font-size:16px;
  198. color:#FFFFFF;
  199. }
  200. #u97239 {
  201. border-width:0px;
  202. position:absolute;
  203. left:62px;
  204. top:14px;
  205. width:161px;
  206. height:22px;
  207. display:flex;
  208. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  209. font-weight:400;
  210. font-style:normal;
  211. font-size:16px;
  212. color:#FFFFFF;
  213. }
  214. #u97239 .text {
  215. position:absolute;
  216. align-self:flex-start;
  217. padding:0px 0px 0px 0px;
  218. box-sizing:border-box;
  219. width:100%;
  220. }
  221. #u97239_text {
  222. border-width:0px;
  223. white-space:nowrap;
  224. text-transform:none;
  225. }
  226. #u97240_div {
  227. border-width:0px;
  228. position:absolute;
  229. left:0px;
  230. top:0px;
  231. width:120px;
  232. height:1200px;
  233. background:inherit;
  234. background-color:rgba(30, 42, 68, 1);
  235. border:none;
  236. border-radius:0px;
  237. -moz-box-shadow:none;
  238. -webkit-box-shadow:none;
  239. box-shadow:none;
  240. color:#AFB3B6;
  241. }
  242. #u97240 {
  243. border-width:0px;
  244. position:absolute;
  245. left:0px;
  246. top:47px;
  247. width:120px;
  248. height:1200px;
  249. display:flex;
  250. color:#AFB3B6;
  251. }
  252. #u97240 .text {
  253. position:absolute;
  254. align-self:center;
  255. padding:2px 2px 2px 2px;
  256. box-sizing:border-box;
  257. width:100%;
  258. }
  259. #u97240_text {
  260. border-width:0px;
  261. word-wrap:break-word;
  262. text-transform:none;
  263. visibility:hidden;
  264. }
  265. #u97241 {
  266. border-width:0px;
  267. position:absolute;
  268. left:0px;
  269. top:0px;
  270. width:0px;
  271. height:0px;
  272. }
  273. #u97242_input {
  274. position:absolute;
  275. left:0px;
  276. top:0px;
  277. width:214px;
  278. height:27px;
  279. padding:2px 2px 2px 2px;
  280. font-family:'ArialMT', 'Arial', sans-serif;
  281. font-weight:400;
  282. font-style:normal;
  283. font-size:14px;
  284. letter-spacing:normal;
  285. color:#FFFFFF;
  286. vertical-align:none;
  287. text-align:left;
  288. text-transform:none;
  289. background-color:transparent;
  290. border-color:transparent;
  291. }
  292. #u97242_input.disabled {
  293. position:absolute;
  294. left:0px;
  295. top:0px;
  296. width:214px;
  297. height:27px;
  298. padding:2px 2px 2px 2px;
  299. font-family:'ArialMT', 'Arial', sans-serif;
  300. font-weight:400;
  301. font-style:normal;
  302. font-size:14px;
  303. letter-spacing:normal;
  304. color:#FFFFFF;
  305. vertical-align:none;
  306. text-align:left;
  307. text-transform:none;
  308. background-color:transparent;
  309. border-color:transparent;
  310. }
  311. #u97242_div {
  312. border-width:0px;
  313. position:absolute;
  314. left:0px;
  315. top:0px;
  316. width:214px;
  317. height:27px;
  318. background:inherit;
  319. background-color:rgba(255, 255, 255, 0);
  320. border:none;
  321. border-radius:0px;
  322. -moz-box-shadow:none;
  323. -webkit-box-shadow:none;
  324. box-shadow:none;
  325. font-size:14px;
  326. color:#FFFFFF;
  327. }
  328. #u97242 {
  329. border-width:0px;
  330. position:absolute;
  331. left:1089px;
  332. top:10px;
  333. width:214px;
  334. height:27px;
  335. display:flex;
  336. font-size:14px;
  337. color:#FFFFFF;
  338. }
  339. #u97242 .text {
  340. position:absolute;
  341. align-self:flex-start;
  342. padding:2px 2px 2px 2px;
  343. box-sizing:border-box;
  344. width:100%;
  345. }
  346. #u97242_div.disabled {
  347. border-width:0px;
  348. position:absolute;
  349. left:0px;
  350. top:0px;
  351. width:214px;
  352. height:27px;
  353. background:inherit;
  354. background-color:rgba(240, 240, 240, 1);
  355. border:none;
  356. border-radius:0px;
  357. -moz-box-shadow:none;
  358. -webkit-box-shadow:none;
  359. box-shadow:none;
  360. font-size:14px;
  361. color:#FFFFFF;
  362. }
  363. #u97242.disabled {
  364. }
  365. .u97242_input_option {
  366. font-size:14px;
  367. }
  368. #u97243_img {
  369. border-width:0px;
  370. position:absolute;
  371. left:0px;
  372. top:0px;
  373. width:22px;
  374. height:22px;
  375. }
  376. #u97243 {
  377. border-width:0px;
  378. position:absolute;
  379. left:1062px;
  380. top:15px;
  381. width:22px;
  382. height:22px;
  383. display:flex;
  384. }
  385. #u97243 .text {
  386. position:absolute;
  387. align-self:center;
  388. padding:2px 2px 2px 2px;
  389. box-sizing:border-box;
  390. width:100%;
  391. }
  392. #u97243_text {
  393. border-width:0px;
  394. word-wrap:break-word;
  395. text-transform:none;
  396. visibility:hidden;
  397. }
  398. #u97244_div {
  399. border-width:0px;
  400. position:absolute;
  401. left:0px;
  402. top:0px;
  403. width:100px;
  404. height:24px;
  405. background:inherit;
  406. background-color:rgba(242, 242, 242, 0.2);
  407. border:none;
  408. border-radius:25px;
  409. -moz-box-shadow:none;
  410. -webkit-box-shadow:none;
  411. box-shadow:none;
  412. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  413. font-weight:400;
  414. font-style:normal;
  415. color:#FFFFFF;
  416. text-align:center;
  417. }
  418. #u97244 {
  419. border-width:0px;
  420. position:absolute;
  421. left:1350px;
  422. top:12px;
  423. width:100px;
  424. height:24px;
  425. display:flex;
  426. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  427. font-weight:400;
  428. font-style:normal;
  429. color:#FFFFFF;
  430. text-align:center;
  431. }
  432. #u97244 .text {
  433. position:absolute;
  434. align-self:center;
  435. padding:0px 0px 0px 0px;
  436. box-sizing:border-box;
  437. width:100%;
  438. }
  439. #u97244_text {
  440. border-width:0px;
  441. word-wrap:break-word;
  442. text-transform:none;
  443. }
  444. #u97245_div {
  445. border-width:0px;
  446. position:absolute;
  447. left:0px;
  448. top:0px;
  449. width:120px;
  450. height:24px;
  451. background:inherit;
  452. background-color:rgba(242, 242, 242, 0.2);
  453. border:none;
  454. border-radius:25px;
  455. -moz-box-shadow:none;
  456. -webkit-box-shadow:none;
  457. box-shadow:none;
  458. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  459. font-weight:400;
  460. font-style:normal;
  461. color:#FFFFFF;
  462. text-align:center;
  463. }
  464. #u97245 {
  465. border-width:0px;
  466. position:absolute;
  467. left:1460px;
  468. top:12px;
  469. width:120px;
  470. height:24px;
  471. display:flex;
  472. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  473. font-weight:400;
  474. font-style:normal;
  475. color:#FFFFFF;
  476. text-align:center;
  477. }
  478. #u97245 .text {
  479. position:absolute;
  480. align-self:center;
  481. padding:0px 0px 0px 0px;
  482. box-sizing:border-box;
  483. width:100%;
  484. }
  485. #u97245_text {
  486. border-width:0px;
  487. word-wrap:break-word;
  488. text-transform:none;
  489. }
  490. #u97246 {
  491. border-width:0px;
  492. position:absolute;
  493. left:0px;
  494. top:0px;
  495. width:0px;
  496. height:0px;
  497. }
  498. #u97247_div {
  499. border-width:0px;
  500. position:absolute;
  501. left:0px;
  502. top:0px;
  503. width:33px;
  504. height:22px;
  505. background:inherit;
  506. background-color:rgba(255, 255, 255, 0);
  507. border:none;
  508. border-radius:0px;
  509. -moz-box-shadow:none;
  510. -webkit-box-shadow:none;
  511. box-shadow:none;
  512. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  513. font-weight:400;
  514. font-style:normal;
  515. font-size:16px;
  516. color:#FFFFFF;
  517. }
  518. #u97247 {
  519. border-width:0px;
  520. position:absolute;
  521. left:39px;
  522. top:71px;
  523. width:33px;
  524. height:22px;
  525. display:flex;
  526. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  527. font-weight:400;
  528. font-style:normal;
  529. font-size:16px;
  530. color:#FFFFFF;
  531. }
  532. #u97247 .text {
  533. position:absolute;
  534. align-self:flex-start;
  535. padding:0px 0px 0px 0px;
  536. box-sizing:border-box;
  537. width:100%;
  538. }
  539. #u97247_text {
  540. border-width:0px;
  541. white-space:nowrap;
  542. text-transform:none;
  543. }
  544. #u97248_img {
  545. border-width:0px;
  546. position:absolute;
  547. left:0px;
  548. top:0px;
  549. width:14px;
  550. height:14px;
  551. }
  552. #u97248 {
  553. border-width:0px;
  554. position:absolute;
  555. left:20px;
  556. top:75px;
  557. width:14px;
  558. height:14px;
  559. display:flex;
  560. }
  561. #u97248 .text {
  562. position:absolute;
  563. align-self:center;
  564. padding:2px 2px 2px 2px;
  565. box-sizing:border-box;
  566. width:100%;
  567. }
  568. #u97248_text {
  569. border-width:0px;
  570. word-wrap:break-word;
  571. text-transform:none;
  572. visibility:hidden;
  573. }
  574. #u97249 {
  575. border-width:0px;
  576. position:absolute;
  577. left:0px;
  578. top:0px;
  579. width:0px;
  580. height:0px;
  581. }
  582. #u97250_div {
  583. border-width:0px;
  584. position:absolute;
  585. left:0px;
  586. top:0px;
  587. width:33px;
  588. height:22px;
  589. background:inherit;
  590. background-color:rgba(255, 255, 255, 0);
  591. border:none;
  592. border-radius:0px;
  593. -moz-box-shadow:none;
  594. -webkit-box-shadow:none;
  595. box-shadow:none;
  596. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  597. font-weight:400;
  598. font-style:normal;
  599. font-size:16px;
  600. color:#FFFFFF;
  601. }
  602. #u97250 {
  603. border-width:0px;
  604. position:absolute;
  605. left:39px;
  606. top:147px;
  607. width:33px;
  608. height:22px;
  609. display:flex;
  610. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  611. font-weight:400;
  612. font-style:normal;
  613. font-size:16px;
  614. color:#FFFFFF;
  615. }
  616. #u97250 .text {
  617. position:absolute;
  618. align-self:flex-start;
  619. padding:0px 0px 0px 0px;
  620. box-sizing:border-box;
  621. width:100%;
  622. }
  623. #u97250_text {
  624. border-width:0px;
  625. white-space:nowrap;
  626. text-transform:none;
  627. }
  628. #u97251_img {
  629. border-width:0px;
  630. position:absolute;
  631. left:0px;
  632. top:0px;
  633. width:14px;
  634. height:14px;
  635. }
  636. #u97251 {
  637. border-width:0px;
  638. position:absolute;
  639. left:20px;
  640. top:151px;
  641. width:14px;
  642. height:14px;
  643. display:flex;
  644. }
  645. #u97251 .text {
  646. position:absolute;
  647. align-self:center;
  648. padding:2px 2px 2px 2px;
  649. box-sizing:border-box;
  650. width:100%;
  651. }
  652. #u97251_text {
  653. border-width:0px;
  654. word-wrap:break-word;
  655. text-transform:none;
  656. visibility:hidden;
  657. }
  658. #u97252 {
  659. border-width:0px;
  660. position:absolute;
  661. left:0px;
  662. top:0px;
  663. width:0px;
  664. height:0px;
  665. }
  666. #u97253_div {
  667. border-width:0px;
  668. position:absolute;
  669. left:0px;
  670. top:0px;
  671. width:33px;
  672. height:22px;
  673. background:inherit;
  674. background-color:rgba(255, 255, 255, 0);
  675. border:none;
  676. border-radius:0px;
  677. -moz-box-shadow:none;
  678. -webkit-box-shadow:none;
  679. box-shadow:none;
  680. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  681. font-weight:400;
  682. font-style:normal;
  683. font-size:16px;
  684. color:#FFFFFF;
  685. }
  686. #u97253 {
  687. border-width:0px;
  688. position:absolute;
  689. left:39px;
  690. top:399px;
  691. width:33px;
  692. height:22px;
  693. display:flex;
  694. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  695. font-weight:400;
  696. font-style:normal;
  697. font-size:16px;
  698. color:#FFFFFF;
  699. }
  700. #u97253 .text {
  701. position:absolute;
  702. align-self:flex-start;
  703. padding:0px 0px 0px 0px;
  704. box-sizing:border-box;
  705. width:100%;
  706. }
  707. #u97253_text {
  708. border-width:0px;
  709. white-space:nowrap;
  710. text-transform:none;
  711. }
  712. #u97254_img {
  713. border-width:0px;
  714. position:absolute;
  715. left:0px;
  716. top:0px;
  717. width:14px;
  718. height:14px;
  719. }
  720. #u97254 {
  721. border-width:0px;
  722. position:absolute;
  723. left:20px;
  724. top:403px;
  725. width:14px;
  726. height:14px;
  727. display:flex;
  728. }
  729. #u97254 .text {
  730. position:absolute;
  731. align-self:center;
  732. padding:2px 2px 2px 2px;
  733. box-sizing:border-box;
  734. width:100%;
  735. }
  736. #u97254_text {
  737. border-width:0px;
  738. word-wrap:break-word;
  739. text-transform:none;
  740. visibility:hidden;
  741. }
  742. #u97255 {
  743. border-width:0px;
  744. position:absolute;
  745. left:0px;
  746. top:0px;
  747. width:0px;
  748. height:0px;
  749. }
  750. #u97256_div {
  751. border-width:0px;
  752. position:absolute;
  753. left:0px;
  754. top:0px;
  755. width:49px;
  756. height:22px;
  757. background:inherit;
  758. background-color:rgba(255, 255, 255, 0);
  759. border:none;
  760. border-radius:0px;
  761. -moz-box-shadow:none;
  762. -webkit-box-shadow:none;
  763. box-shadow:none;
  764. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  765. font-weight:400;
  766. font-style:normal;
  767. font-size:16px;
  768. color:#FFFFFF;
  769. }
  770. #u97256 {
  771. border-width:0px;
  772. position:absolute;
  773. left:39px;
  774. top:109px;
  775. width:49px;
  776. height:22px;
  777. display:flex;
  778. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  779. font-weight:400;
  780. font-style:normal;
  781. font-size:16px;
  782. color:#FFFFFF;
  783. }
  784. #u97256 .text {
  785. position:absolute;
  786. align-self:flex-start;
  787. padding:0px 0px 0px 0px;
  788. box-sizing:border-box;
  789. width:100%;
  790. }
  791. #u97256_text {
  792. border-width:0px;
  793. white-space:nowrap;
  794. text-transform:none;
  795. }
  796. #u97257_img {
  797. border-width:0px;
  798. position:absolute;
  799. left:0px;
  800. top:0px;
  801. width:14px;
  802. height:14px;
  803. }
  804. #u97257 {
  805. border-width:0px;
  806. position:absolute;
  807. left:20px;
  808. top:113px;
  809. width:14px;
  810. height:14px;
  811. display:flex;
  812. }
  813. #u97257 .text {
  814. position:absolute;
  815. align-self:center;
  816. padding:2px 2px 2px 2px;
  817. box-sizing:border-box;
  818. width:100%;
  819. }
  820. #u97257_text {
  821. border-width:0px;
  822. word-wrap:break-word;
  823. text-transform:none;
  824. visibility:hidden;
  825. }
  826. #u97258 {
  827. border-width:0px;
  828. position:absolute;
  829. left:0px;
  830. top:0px;
  831. width:0px;
  832. height:0px;
  833. }
  834. #u97259_div {
  835. border-width:0px;
  836. position:absolute;
  837. left:0px;
  838. top:0px;
  839. width:33px;
  840. height:22px;
  841. background:inherit;
  842. background-color:rgba(255, 255, 255, 0);
  843. border:none;
  844. border-radius:0px;
  845. -moz-box-shadow:none;
  846. -webkit-box-shadow:none;
  847. box-shadow:none;
  848. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  849. font-weight:400;
  850. font-style:normal;
  851. font-size:16px;
  852. color:#FFFFFF;
  853. }
  854. #u97259 {
  855. border-width:0px;
  856. position:absolute;
  857. left:39px;
  858. top:441px;
  859. width:33px;
  860. height:22px;
  861. display:flex;
  862. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  863. font-weight:400;
  864. font-style:normal;
  865. font-size:16px;
  866. color:#FFFFFF;
  867. }
  868. #u97259 .text {
  869. position:absolute;
  870. align-self:flex-start;
  871. padding:0px 0px 0px 0px;
  872. box-sizing:border-box;
  873. width:100%;
  874. }
  875. #u97259_text {
  876. border-width:0px;
  877. white-space:nowrap;
  878. text-transform:none;
  879. }
  880. #u97260_img {
  881. border-width:0px;
  882. position:absolute;
  883. left:0px;
  884. top:0px;
  885. width:14px;
  886. height:14px;
  887. }
  888. #u97260 {
  889. border-width:0px;
  890. position:absolute;
  891. left:20px;
  892. top:445px;
  893. width:14px;
  894. height:14px;
  895. display:flex;
  896. }
  897. #u97260 .text {
  898. position:absolute;
  899. align-self:center;
  900. padding:2px 2px 2px 2px;
  901. box-sizing:border-box;
  902. width:100%;
  903. }
  904. #u97260_text {
  905. border-width:0px;
  906. word-wrap:break-word;
  907. text-transform:none;
  908. visibility:hidden;
  909. }
  910. #u97261 {
  911. border-width:0px;
  912. position:absolute;
  913. left:0px;
  914. top:0px;
  915. width:0px;
  916. height:0px;
  917. }
  918. #u97262_div {
  919. border-width:0px;
  920. position:absolute;
  921. left:0px;
  922. top:0px;
  923. width:33px;
  924. height:22px;
  925. background:inherit;
  926. background-color:rgba(255, 255, 255, 0);
  927. border:none;
  928. border-radius:0px;
  929. -moz-box-shadow:none;
  930. -webkit-box-shadow:none;
  931. box-shadow:none;
  932. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  933. font-weight:400;
  934. font-style:normal;
  935. font-size:16px;
  936. color:#FFFFFF;
  937. }
  938. #u97262 {
  939. border-width:0px;
  940. position:absolute;
  941. left:39px;
  942. top:315px;
  943. width:33px;
  944. height:22px;
  945. display:flex;
  946. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  947. font-weight:400;
  948. font-style:normal;
  949. font-size:16px;
  950. color:#FFFFFF;
  951. }
  952. #u97262 .text {
  953. position:absolute;
  954. align-self:flex-start;
  955. padding:0px 0px 0px 0px;
  956. box-sizing:border-box;
  957. width:100%;
  958. }
  959. #u97262_text {
  960. border-width:0px;
  961. white-space:nowrap;
  962. text-transform:none;
  963. }
  964. #u97263_img {
  965. border-width:0px;
  966. position:absolute;
  967. left:0px;
  968. top:0px;
  969. width:14px;
  970. height:14px;
  971. }
  972. #u97263 {
  973. border-width:0px;
  974. position:absolute;
  975. left:20px;
  976. top:319px;
  977. width:14px;
  978. height:14px;
  979. display:flex;
  980. }
  981. #u97263 .text {
  982. position:absolute;
  983. align-self:center;
  984. padding:2px 2px 2px 2px;
  985. box-sizing:border-box;
  986. width:100%;
  987. }
  988. #u97263_text {
  989. border-width:0px;
  990. word-wrap:break-word;
  991. text-transform:none;
  992. visibility:hidden;
  993. }
  994. #u97264 {
  995. border-width:0px;
  996. position:absolute;
  997. left:0px;
  998. top:0px;
  999. width:0px;
  1000. height:0px;
  1001. }
  1002. #u97265_div {
  1003. border-width:0px;
  1004. position:absolute;
  1005. left:0px;
  1006. top:0px;
  1007. width:33px;
  1008. height:22px;
  1009. background:inherit;
  1010. background-color:rgba(255, 255, 255, 0);
  1011. border:none;
  1012. border-radius:0px;
  1013. -moz-box-shadow:none;
  1014. -webkit-box-shadow:none;
  1015. box-shadow:none;
  1016. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1017. font-weight:400;
  1018. font-style:normal;
  1019. font-size:16px;
  1020. color:#FFFFFF;
  1021. }
  1022. #u97265 {
  1023. border-width:0px;
  1024. position:absolute;
  1025. left:39px;
  1026. top:189px;
  1027. width:33px;
  1028. height:22px;
  1029. display:flex;
  1030. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1031. font-weight:400;
  1032. font-style:normal;
  1033. font-size:16px;
  1034. color:#FFFFFF;
  1035. }
  1036. #u97265 .text {
  1037. position:absolute;
  1038. align-self:flex-start;
  1039. padding:0px 0px 0px 0px;
  1040. box-sizing:border-box;
  1041. width:100%;
  1042. }
  1043. #u97265_text {
  1044. border-width:0px;
  1045. white-space:nowrap;
  1046. text-transform:none;
  1047. }
  1048. #u97266_img {
  1049. border-width:0px;
  1050. position:absolute;
  1051. left:0px;
  1052. top:0px;
  1053. width:14px;
  1054. height:14px;
  1055. }
  1056. #u97266 {
  1057. border-width:0px;
  1058. position:absolute;
  1059. left:20px;
  1060. top:193px;
  1061. width:14px;
  1062. height:14px;
  1063. display:flex;
  1064. }
  1065. #u97266 .text {
  1066. position:absolute;
  1067. align-self:center;
  1068. padding:2px 2px 2px 2px;
  1069. box-sizing:border-box;
  1070. width:100%;
  1071. }
  1072. #u97266_text {
  1073. border-width:0px;
  1074. word-wrap:break-word;
  1075. text-transform:none;
  1076. visibility:hidden;
  1077. }
  1078. #u97267 {
  1079. border-width:0px;
  1080. position:absolute;
  1081. left:0px;
  1082. top:0px;
  1083. width:0px;
  1084. height:0px;
  1085. }
  1086. #u97268_div {
  1087. border-width:0px;
  1088. position:absolute;
  1089. left:0px;
  1090. top:0px;
  1091. width:33px;
  1092. height:22px;
  1093. background:inherit;
  1094. background-color:rgba(255, 255, 255, 0);
  1095. border:none;
  1096. border-radius:0px;
  1097. -moz-box-shadow:none;
  1098. -webkit-box-shadow:none;
  1099. box-shadow:none;
  1100. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1101. font-weight:400;
  1102. font-style:normal;
  1103. font-size:16px;
  1104. color:#FFFFFF;
  1105. }
  1106. #u97268 {
  1107. border-width:0px;
  1108. position:absolute;
  1109. left:39px;
  1110. top:357px;
  1111. width:33px;
  1112. height:22px;
  1113. display:flex;
  1114. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1115. font-weight:400;
  1116. font-style:normal;
  1117. font-size:16px;
  1118. color:#FFFFFF;
  1119. }
  1120. #u97268 .text {
  1121. position:absolute;
  1122. align-self:flex-start;
  1123. padding:0px 0px 0px 0px;
  1124. box-sizing:border-box;
  1125. width:100%;
  1126. }
  1127. #u97268_text {
  1128. border-width:0px;
  1129. white-space:nowrap;
  1130. text-transform:none;
  1131. }
  1132. #u97269_img {
  1133. border-width:0px;
  1134. position:absolute;
  1135. left:0px;
  1136. top:0px;
  1137. width:14px;
  1138. height:14px;
  1139. }
  1140. #u97269 {
  1141. border-width:0px;
  1142. position:absolute;
  1143. left:20px;
  1144. top:361px;
  1145. width:14px;
  1146. height:14px;
  1147. display:flex;
  1148. }
  1149. #u97269 .text {
  1150. position:absolute;
  1151. align-self:center;
  1152. padding:2px 2px 2px 2px;
  1153. box-sizing:border-box;
  1154. width:100%;
  1155. }
  1156. #u97269_text {
  1157. border-width:0px;
  1158. word-wrap:break-word;
  1159. text-transform:none;
  1160. visibility:hidden;
  1161. }
  1162. #u97270 {
  1163. border-width:0px;
  1164. position:absolute;
  1165. left:0px;
  1166. top:0px;
  1167. width:0px;
  1168. height:0px;
  1169. }
  1170. #u97271_div {
  1171. border-width:0px;
  1172. position:absolute;
  1173. left:0px;
  1174. top:0px;
  1175. width:33px;
  1176. height:22px;
  1177. background:inherit;
  1178. background-color:rgba(255, 255, 255, 0);
  1179. border:none;
  1180. border-radius:0px;
  1181. -moz-box-shadow:none;
  1182. -webkit-box-shadow:none;
  1183. box-shadow:none;
  1184. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1185. font-weight:400;
  1186. font-style:normal;
  1187. font-size:16px;
  1188. color:#FFFFFF;
  1189. }
  1190. #u97271 {
  1191. border-width:0px;
  1192. position:absolute;
  1193. left:39px;
  1194. top:483px;
  1195. width:33px;
  1196. height:22px;
  1197. display:flex;
  1198. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1199. font-weight:400;
  1200. font-style:normal;
  1201. font-size:16px;
  1202. color:#FFFFFF;
  1203. }
  1204. #u97271 .text {
  1205. position:absolute;
  1206. align-self:flex-start;
  1207. padding:0px 0px 0px 0px;
  1208. box-sizing:border-box;
  1209. width:100%;
  1210. }
  1211. #u97271_text {
  1212. border-width:0px;
  1213. white-space:nowrap;
  1214. text-transform:none;
  1215. }
  1216. #u97272_img {
  1217. border-width:0px;
  1218. position:absolute;
  1219. left:0px;
  1220. top:0px;
  1221. width:14px;
  1222. height:14px;
  1223. }
  1224. #u97272 {
  1225. border-width:0px;
  1226. position:absolute;
  1227. left:20px;
  1228. top:487px;
  1229. width:14px;
  1230. height:14px;
  1231. display:flex;
  1232. }
  1233. #u97272 .text {
  1234. position:absolute;
  1235. align-self:center;
  1236. padding:2px 2px 2px 2px;
  1237. box-sizing:border-box;
  1238. width:100%;
  1239. }
  1240. #u97272_text {
  1241. border-width:0px;
  1242. word-wrap:break-word;
  1243. text-transform:none;
  1244. visibility:hidden;
  1245. }
  1246. #u97273 {
  1247. border-width:0px;
  1248. position:absolute;
  1249. left:0px;
  1250. top:0px;
  1251. width:0px;
  1252. height:0px;
  1253. }
  1254. #u97274_div {
  1255. border-width:0px;
  1256. position:absolute;
  1257. left:0px;
  1258. top:0px;
  1259. width:33px;
  1260. height:22px;
  1261. background:inherit;
  1262. background-color:rgba(255, 255, 255, 0);
  1263. border:none;
  1264. border-radius:0px;
  1265. -moz-box-shadow:none;
  1266. -webkit-box-shadow:none;
  1267. box-shadow:none;
  1268. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1269. font-weight:400;
  1270. font-style:normal;
  1271. font-size:16px;
  1272. color:#FFFFFF;
  1273. }
  1274. #u97274 {
  1275. border-width:0px;
  1276. position:absolute;
  1277. left:39px;
  1278. top:525px;
  1279. width:33px;
  1280. height:22px;
  1281. display:flex;
  1282. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1283. font-weight:400;
  1284. font-style:normal;
  1285. font-size:16px;
  1286. color:#FFFFFF;
  1287. }
  1288. #u97274 .text {
  1289. position:absolute;
  1290. align-self:flex-start;
  1291. padding:0px 0px 0px 0px;
  1292. box-sizing:border-box;
  1293. width:100%;
  1294. }
  1295. #u97274_text {
  1296. border-width:0px;
  1297. white-space:nowrap;
  1298. text-transform:none;
  1299. }
  1300. #u97275_img {
  1301. border-width:0px;
  1302. position:absolute;
  1303. left:0px;
  1304. top:0px;
  1305. width:14px;
  1306. height:14px;
  1307. }
  1308. #u97275 {
  1309. border-width:0px;
  1310. position:absolute;
  1311. left:20px;
  1312. top:529px;
  1313. width:14px;
  1314. height:14px;
  1315. display:flex;
  1316. }
  1317. #u97275 .text {
  1318. position:absolute;
  1319. align-self:center;
  1320. padding:2px 2px 2px 2px;
  1321. box-sizing:border-box;
  1322. width:100%;
  1323. }
  1324. #u97275_text {
  1325. border-width:0px;
  1326. word-wrap:break-word;
  1327. text-transform:none;
  1328. visibility:hidden;
  1329. }
  1330. #u97276_div {
  1331. border-width:0px;
  1332. position:absolute;
  1333. left:0px;
  1334. top:0px;
  1335. width:29px;
  1336. height:20px;
  1337. background:inherit;
  1338. background-color:rgba(255, 255, 255, 0);
  1339. border:none;
  1340. border-radius:25px;
  1341. -moz-box-shadow:none;
  1342. -webkit-box-shadow:none;
  1343. box-shadow:none;
  1344. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1345. font-weight:400;
  1346. font-style:normal;
  1347. color:#FFFFFF;
  1348. }
  1349. #u97276 {
  1350. border-width:0px;
  1351. position:absolute;
  1352. left:52px;
  1353. top:1145px;
  1354. width:29px;
  1355. height:20px;
  1356. display:flex;
  1357. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1358. font-weight:400;
  1359. font-style:normal;
  1360. color:#FFFFFF;
  1361. }
  1362. #u97276 .text {
  1363. position:absolute;
  1364. align-self:center;
  1365. padding:0px 0px 0px 0px;
  1366. box-sizing:border-box;
  1367. width:100%;
  1368. }
  1369. #u97276_text {
  1370. border-width:0px;
  1371. white-space:nowrap;
  1372. text-transform:none;
  1373. }
  1374. #u97277_img {
  1375. border-width:0px;
  1376. position:absolute;
  1377. left:0px;
  1378. top:0px;
  1379. width:22px;
  1380. height:22px;
  1381. }
  1382. #u97277 {
  1383. border-width:0px;
  1384. position:absolute;
  1385. left:20px;
  1386. top:1144px;
  1387. width:22px;
  1388. height:22px;
  1389. display:flex;
  1390. }
  1391. #u97277 .text {
  1392. position:absolute;
  1393. align-self:center;
  1394. padding:2px 2px 2px 2px;
  1395. box-sizing:border-box;
  1396. width:100%;
  1397. }
  1398. #u97277_text {
  1399. border-width:0px;
  1400. word-wrap:break-word;
  1401. text-transform:none;
  1402. visibility:hidden;
  1403. }
  1404. #u97278_div {
  1405. border-width:0px;
  1406. position:absolute;
  1407. left:0px;
  1408. top:0px;
  1409. width:29px;
  1410. height:20px;
  1411. background:inherit;
  1412. background-color:rgba(255, 255, 255, 0);
  1413. border:none;
  1414. border-radius:25px;
  1415. -moz-box-shadow:none;
  1416. -webkit-box-shadow:none;
  1417. box-shadow:none;
  1418. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1419. font-weight:400;
  1420. font-style:normal;
  1421. color:#FFFFFF;
  1422. }
  1423. #u97278 {
  1424. border-width:0px;
  1425. position:absolute;
  1426. left:52px;
  1427. top:1187px;
  1428. width:29px;
  1429. height:20px;
  1430. display:flex;
  1431. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1432. font-weight:400;
  1433. font-style:normal;
  1434. color:#FFFFFF;
  1435. }
  1436. #u97278 .text {
  1437. position:absolute;
  1438. align-self:center;
  1439. padding:0px 0px 0px 0px;
  1440. box-sizing:border-box;
  1441. width:100%;
  1442. }
  1443. #u97278_text {
  1444. border-width:0px;
  1445. white-space:nowrap;
  1446. text-transform:none;
  1447. }
  1448. #u97279_img {
  1449. border-width:0px;
  1450. position:absolute;
  1451. left:0px;
  1452. top:0px;
  1453. width:22px;
  1454. height:22px;
  1455. }
  1456. #u97279 {
  1457. border-width:0px;
  1458. position:absolute;
  1459. left:20px;
  1460. top:1186px;
  1461. width:22px;
  1462. height:22px;
  1463. display:flex;
  1464. }
  1465. #u97279 .text {
  1466. position:absolute;
  1467. align-self:center;
  1468. padding:2px 2px 2px 2px;
  1469. box-sizing:border-box;
  1470. width:100%;
  1471. }
  1472. #u97279_text {
  1473. border-width:0px;
  1474. word-wrap:break-word;
  1475. text-transform:none;
  1476. visibility:hidden;
  1477. }
  1478. #u97280 {
  1479. border-width:0px;
  1480. position:absolute;
  1481. left:0px;
  1482. top:0px;
  1483. width:0px;
  1484. height:0px;
  1485. }
  1486. #u97281_div {
  1487. border-width:0px;
  1488. position:absolute;
  1489. left:0px;
  1490. top:0px;
  1491. width:33px;
  1492. height:22px;
  1493. background:inherit;
  1494. background-color:rgba(255, 255, 255, 0);
  1495. border:none;
  1496. border-radius:0px;
  1497. -moz-box-shadow:none;
  1498. -webkit-box-shadow:none;
  1499. box-shadow:none;
  1500. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1501. font-weight:400;
  1502. font-style:normal;
  1503. font-size:16px;
  1504. color:#FFFFFF;
  1505. }
  1506. #u97281 {
  1507. border-width:0px;
  1508. position:absolute;
  1509. left:39px;
  1510. top:231px;
  1511. width:33px;
  1512. height:22px;
  1513. display:flex;
  1514. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1515. font-weight:400;
  1516. font-style:normal;
  1517. font-size:16px;
  1518. color:#FFFFFF;
  1519. }
  1520. #u97281 .text {
  1521. position:absolute;
  1522. align-self:flex-start;
  1523. padding:0px 0px 0px 0px;
  1524. box-sizing:border-box;
  1525. width:100%;
  1526. }
  1527. #u97281_text {
  1528. border-width:0px;
  1529. white-space:nowrap;
  1530. text-transform:none;
  1531. }
  1532. #u97282_img {
  1533. border-width:0px;
  1534. position:absolute;
  1535. left:0px;
  1536. top:0px;
  1537. width:14px;
  1538. height:14px;
  1539. }
  1540. #u97282 {
  1541. border-width:0px;
  1542. position:absolute;
  1543. left:20px;
  1544. top:235px;
  1545. width:14px;
  1546. height:14px;
  1547. display:flex;
  1548. }
  1549. #u97282 .text {
  1550. position:absolute;
  1551. align-self:center;
  1552. padding:2px 2px 2px 2px;
  1553. box-sizing:border-box;
  1554. width:100%;
  1555. }
  1556. #u97282_text {
  1557. border-width:0px;
  1558. word-wrap:break-word;
  1559. text-transform:none;
  1560. visibility:hidden;
  1561. }
  1562. #u97283 {
  1563. border-width:0px;
  1564. position:absolute;
  1565. left:0px;
  1566. top:0px;
  1567. width:0px;
  1568. height:0px;
  1569. }
  1570. #u97284_div {
  1571. border-width:0px;
  1572. position:absolute;
  1573. left:0px;
  1574. top:0px;
  1575. width:33px;
  1576. height:22px;
  1577. background:inherit;
  1578. background-color:rgba(255, 255, 255, 0);
  1579. border:none;
  1580. border-radius:0px;
  1581. -moz-box-shadow:none;
  1582. -webkit-box-shadow:none;
  1583. box-shadow:none;
  1584. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1585. font-weight:400;
  1586. font-style:normal;
  1587. font-size:16px;
  1588. color:#FFFFFF;
  1589. }
  1590. #u97284 {
  1591. border-width:0px;
  1592. position:absolute;
  1593. left:39px;
  1594. top:273px;
  1595. width:33px;
  1596. height:22px;
  1597. display:flex;
  1598. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1599. font-weight:400;
  1600. font-style:normal;
  1601. font-size:16px;
  1602. color:#FFFFFF;
  1603. }
  1604. #u97284 .text {
  1605. position:absolute;
  1606. align-self:flex-start;
  1607. padding:0px 0px 0px 0px;
  1608. box-sizing:border-box;
  1609. width:100%;
  1610. }
  1611. #u97284_text {
  1612. border-width:0px;
  1613. white-space:nowrap;
  1614. text-transform:none;
  1615. }
  1616. #u97285_img {
  1617. border-width:0px;
  1618. position:absolute;
  1619. left:0px;
  1620. top:0px;
  1621. width:14px;
  1622. height:14px;
  1623. }
  1624. #u97285 {
  1625. border-width:0px;
  1626. position:absolute;
  1627. left:20px;
  1628. top:277px;
  1629. width:14px;
  1630. height:14px;
  1631. display:flex;
  1632. }
  1633. #u97285 .text {
  1634. position:absolute;
  1635. align-self:center;
  1636. padding:2px 2px 2px 2px;
  1637. box-sizing:border-box;
  1638. width:100%;
  1639. }
  1640. #u97285_text {
  1641. border-width:0px;
  1642. word-wrap:break-word;
  1643. text-transform:none;
  1644. visibility:hidden;
  1645. }
  1646. #u97286_div {
  1647. border-width:0px;
  1648. position:absolute;
  1649. left:0px;
  1650. top:0px;
  1651. width:1261px;
  1652. height:1180px;
  1653. background:inherit;
  1654. background-color:rgba(255, 255, 255, 1);
  1655. border:none;
  1656. border-radius:0px;
  1657. -moz-box-shadow:none;
  1658. -webkit-box-shadow:none;
  1659. box-shadow:none;
  1660. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1661. font-weight:400;
  1662. font-style:normal;
  1663. font-size:12px;
  1664. color:#FFFFFF;
  1665. text-align:left;
  1666. }
  1667. #u97286 {
  1668. border-width:0px;
  1669. position:absolute;
  1670. left:330px;
  1671. top:50px;
  1672. width:1261px;
  1673. height:1180px;
  1674. display:flex;
  1675. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1676. font-weight:400;
  1677. font-style:normal;
  1678. font-size:12px;
  1679. color:#FFFFFF;
  1680. text-align:left;
  1681. }
  1682. #u97286 .text {
  1683. position:absolute;
  1684. align-self:center;
  1685. padding:2px 2px 2px 50px;
  1686. box-sizing:border-box;
  1687. width:100%;
  1688. }
  1689. #u97286_text {
  1690. border-width:0px;
  1691. word-wrap:break-word;
  1692. text-transform:none;
  1693. visibility:hidden;
  1694. }
  1695. #u97287 {
  1696. border-width:0px;
  1697. position:absolute;
  1698. left:0px;
  1699. top:0px;
  1700. width:0px;
  1701. height:0px;
  1702. }
  1703. #u97288_div {
  1704. border-width:0px;
  1705. position:absolute;
  1706. left:0px;
  1707. top:0px;
  1708. width:200px;
  1709. height:1180px;
  1710. background:inherit;
  1711. background-color:rgba(255, 255, 255, 1);
  1712. border:none;
  1713. border-radius:0px;
  1714. -moz-box-shadow:none;
  1715. -webkit-box-shadow:none;
  1716. box-shadow:none;
  1717. }
  1718. #u97288 {
  1719. border-width:0px;
  1720. position:absolute;
  1721. left:120px;
  1722. top:50px;
  1723. width:200px;
  1724. height:1180px;
  1725. display:flex;
  1726. }
  1727. #u97288 .text {
  1728. position:absolute;
  1729. align-self:center;
  1730. padding:2px 2px 2px 2px;
  1731. box-sizing:border-box;
  1732. width:100%;
  1733. }
  1734. #u97288_text {
  1735. border-width:0px;
  1736. word-wrap:break-word;
  1737. text-transform:none;
  1738. visibility:hidden;
  1739. }
  1740. #u97289_div {
  1741. border-width:0px;
  1742. position:absolute;
  1743. left:0px;
  1744. top:0px;
  1745. width:200px;
  1746. height:60px;
  1747. background:inherit;
  1748. background-color:rgba(224, 231, 247, 1);
  1749. border:none;
  1750. border-radius:0px;
  1751. -moz-box-shadow:none;
  1752. -webkit-box-shadow:none;
  1753. box-shadow:none;
  1754. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  1755. font-weight:500;
  1756. font-style:normal;
  1757. font-size:18px;
  1758. }
  1759. #u97289 {
  1760. border-width:0px;
  1761. position:absolute;
  1762. left:120px;
  1763. top:50px;
  1764. width:200px;
  1765. height:60px;
  1766. display:flex;
  1767. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  1768. font-weight:500;
  1769. font-style:normal;
  1770. font-size:18px;
  1771. }
  1772. #u97289 .text {
  1773. position:absolute;
  1774. align-self:center;
  1775. padding:0px 0px 0px 20px;
  1776. box-sizing:border-box;
  1777. width:100%;
  1778. }
  1779. #u97289_text {
  1780. border-width:0px;
  1781. word-wrap:break-word;
  1782. text-transform:none;
  1783. }
  1784. #u97290_img {
  1785. border-width:0px;
  1786. position:absolute;
  1787. left:0px;
  1788. top:0px;
  1789. width:201px;
  1790. height:2px;
  1791. }
  1792. #u97290 {
  1793. border-width:0px;
  1794. position:absolute;
  1795. left:120px;
  1796. top:335px;
  1797. width:200px;
  1798. height:1px;
  1799. display:flex;
  1800. }
  1801. #u97290 .text {
  1802. position:absolute;
  1803. align-self:center;
  1804. padding:2px 2px 2px 2px;
  1805. box-sizing:border-box;
  1806. width:100%;
  1807. }
  1808. #u97290_text {
  1809. border-width:0px;
  1810. word-wrap:break-word;
  1811. text-transform:none;
  1812. visibility:hidden;
  1813. }
  1814. #u97291_div {
  1815. border-width:0px;
  1816. position:absolute;
  1817. left:0px;
  1818. top:0px;
  1819. width:145px;
  1820. height:22px;
  1821. background:inherit;
  1822. background-color:rgba(255, 255, 255, 0);
  1823. border:none;
  1824. border-radius:0px;
  1825. -moz-box-shadow:none;
  1826. -webkit-box-shadow:none;
  1827. box-shadow:none;
  1828. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1829. font-weight:400;
  1830. font-style:normal;
  1831. font-size:16px;
  1832. }
  1833. #u97291 {
  1834. border-width:0px;
  1835. position:absolute;
  1836. left:147px;
  1837. top:391px;
  1838. width:145px;
  1839. height:22px;
  1840. display:flex;
  1841. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1842. font-weight:400;
  1843. font-style:normal;
  1844. font-size:16px;
  1845. }
  1846. #u97291 .text {
  1847. position:absolute;
  1848. align-self:flex-start;
  1849. padding:0px 0px 0px 0px;
  1850. box-sizing:border-box;
  1851. width:100%;
  1852. }
  1853. #u97291_text {
  1854. border-width:0px;
  1855. white-space:nowrap;
  1856. text-transform:none;
  1857. }
  1858. #u97292_div {
  1859. border-width:0px;
  1860. position:absolute;
  1861. left:0px;
  1862. top:0px;
  1863. width:49px;
  1864. height:17px;
  1865. background:inherit;
  1866. background-color:rgba(255, 255, 255, 0);
  1867. border:none;
  1868. border-radius:0px;
  1869. -moz-box-shadow:none;
  1870. -webkit-box-shadow:none;
  1871. box-shadow:none;
  1872. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1873. font-weight:400;
  1874. font-style:normal;
  1875. font-size:12px;
  1876. color:#AAAAAA;
  1877. }
  1878. #u97292 {
  1879. border-width:0px;
  1880. position:absolute;
  1881. left:147px;
  1882. top:355px;
  1883. width:49px;
  1884. height:17px;
  1885. display:flex;
  1886. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1887. font-weight:400;
  1888. font-style:normal;
  1889. font-size:12px;
  1890. color:#AAAAAA;
  1891. }
  1892. #u97292 .text {
  1893. position:absolute;
  1894. align-self:flex-start;
  1895. padding:0px 0px 0px 0px;
  1896. box-sizing:border-box;
  1897. width:100%;
  1898. }
  1899. #u97292_text {
  1900. border-width:0px;
  1901. white-space:nowrap;
  1902. text-transform:none;
  1903. }
  1904. #u97293_div {
  1905. border-width:0px;
  1906. position:absolute;
  1907. left:0px;
  1908. top:0px;
  1909. width:49px;
  1910. height:17px;
  1911. background:inherit;
  1912. background-color:rgba(255, 255, 255, 0);
  1913. border:none;
  1914. border-radius:0px;
  1915. -moz-box-shadow:none;
  1916. -webkit-box-shadow:none;
  1917. box-shadow:none;
  1918. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1919. font-weight:400;
  1920. font-style:normal;
  1921. font-size:12px;
  1922. color:#AAAAAA;
  1923. }
  1924. #u97293 {
  1925. border-width:0px;
  1926. position:absolute;
  1927. left:147px;
  1928. top:130px;
  1929. width:49px;
  1930. height:17px;
  1931. display:flex;
  1932. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1933. font-weight:400;
  1934. font-style:normal;
  1935. font-size:12px;
  1936. color:#AAAAAA;
  1937. }
  1938. #u97293 .text {
  1939. position:absolute;
  1940. align-self:flex-start;
  1941. padding:0px 0px 0px 0px;
  1942. box-sizing:border-box;
  1943. width:100%;
  1944. }
  1945. #u97293_text {
  1946. border-width:0px;
  1947. white-space:nowrap;
  1948. text-transform:none;
  1949. }
  1950. #u97294_div {
  1951. border-width:0px;
  1952. position:absolute;
  1953. left:0px;
  1954. top:0px;
  1955. width:97px;
  1956. height:22px;
  1957. background:inherit;
  1958. background-color:rgba(255, 255, 255, 0);
  1959. border:none;
  1960. border-radius:0px;
  1961. -moz-box-shadow:none;
  1962. -webkit-box-shadow:none;
  1963. box-shadow:none;
  1964. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1965. font-weight:400;
  1966. font-style:normal;
  1967. font-size:16px;
  1968. }
  1969. #u97294 {
  1970. border-width:0px;
  1971. position:absolute;
  1972. left:147px;
  1973. top:167px;
  1974. width:97px;
  1975. height:22px;
  1976. display:flex;
  1977. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1978. font-weight:400;
  1979. font-style:normal;
  1980. font-size:16px;
  1981. }
  1982. #u97294 .text {
  1983. position:absolute;
  1984. align-self:flex-start;
  1985. padding:0px 0px 0px 0px;
  1986. box-sizing:border-box;
  1987. width:100%;
  1988. }
  1989. #u97294_text {
  1990. border-width:0px;
  1991. word-wrap:break-word;
  1992. text-transform:none;
  1993. }
  1994. #u97295_div {
  1995. border-width:0px;
  1996. position:absolute;
  1997. left:0px;
  1998. top:0px;
  1999. width:97px;
  2000. height:22px;
  2001. background:inherit;
  2002. background-color:rgba(255, 255, 255, 0);
  2003. border:none;
  2004. border-radius:0px;
  2005. -moz-box-shadow:none;
  2006. -webkit-box-shadow:none;
  2007. box-shadow:none;
  2008. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2009. font-weight:400;
  2010. font-style:normal;
  2011. font-size:16px;
  2012. }
  2013. #u97295 {
  2014. border-width:0px;
  2015. position:absolute;
  2016. left:147px;
  2017. top:209px;
  2018. width:97px;
  2019. height:22px;
  2020. display:flex;
  2021. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2022. font-weight:400;
  2023. font-style:normal;
  2024. font-size:16px;
  2025. }
  2026. #u97295 .text {
  2027. position:absolute;
  2028. align-self:flex-start;
  2029. padding:0px 0px 0px 0px;
  2030. box-sizing:border-box;
  2031. width:100%;
  2032. }
  2033. #u97295_text {
  2034. border-width:0px;
  2035. word-wrap:break-word;
  2036. text-transform:none;
  2037. }
  2038. #u97296_div {
  2039. border-width:0px;
  2040. position:absolute;
  2041. left:0px;
  2042. top:0px;
  2043. width:113px;
  2044. height:22px;
  2045. background:inherit;
  2046. background-color:rgba(255, 255, 255, 0);
  2047. border:none;
  2048. border-radius:0px;
  2049. -moz-box-shadow:none;
  2050. -webkit-box-shadow:none;
  2051. box-shadow:none;
  2052. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2053. font-weight:400;
  2054. font-style:normal;
  2055. font-size:16px;
  2056. }
  2057. #u97296 {
  2058. border-width:0px;
  2059. position:absolute;
  2060. left:147px;
  2061. top:433px;
  2062. width:113px;
  2063. height:22px;
  2064. display:flex;
  2065. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2066. font-weight:400;
  2067. font-style:normal;
  2068. font-size:16px;
  2069. }
  2070. #u97296 .text {
  2071. position:absolute;
  2072. align-self:flex-start;
  2073. padding:0px 0px 0px 0px;
  2074. box-sizing:border-box;
  2075. width:100%;
  2076. }
  2077. #u97296_text {
  2078. border-width:0px;
  2079. white-space:nowrap;
  2080. text-transform:none;
  2081. }
  2082. #u97297_div {
  2083. border-width:0px;
  2084. position:absolute;
  2085. left:0px;
  2086. top:0px;
  2087. width:129px;
  2088. height:22px;
  2089. background:inherit;
  2090. background-color:rgba(255, 255, 255, 0);
  2091. border:none;
  2092. border-radius:0px;
  2093. -moz-box-shadow:none;
  2094. -webkit-box-shadow:none;
  2095. box-shadow:none;
  2096. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2097. font-weight:400;
  2098. font-style:normal;
  2099. font-size:16px;
  2100. }
  2101. #u97297 {
  2102. border-width:0px;
  2103. position:absolute;
  2104. left:147px;
  2105. top:475px;
  2106. width:129px;
  2107. height:22px;
  2108. display:flex;
  2109. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2110. font-weight:400;
  2111. font-style:normal;
  2112. font-size:16px;
  2113. }
  2114. #u97297 .text {
  2115. position:absolute;
  2116. align-self:flex-start;
  2117. padding:0px 0px 0px 0px;
  2118. box-sizing:border-box;
  2119. width:100%;
  2120. }
  2121. #u97297_text {
  2122. border-width:0px;
  2123. white-space:nowrap;
  2124. text-transform:none;
  2125. }
  2126. #u97298_div {
  2127. border-width:0px;
  2128. position:absolute;
  2129. left:0px;
  2130. top:0px;
  2131. width:97px;
  2132. height:22px;
  2133. background:inherit;
  2134. background-color:rgba(255, 255, 255, 0);
  2135. border:none;
  2136. border-radius:0px;
  2137. -moz-box-shadow:none;
  2138. -webkit-box-shadow:none;
  2139. box-shadow:none;
  2140. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2141. font-weight:400;
  2142. font-style:normal;
  2143. font-size:16px;
  2144. }
  2145. #u97298 {
  2146. border-width:0px;
  2147. position:absolute;
  2148. left:147px;
  2149. top:251px;
  2150. width:97px;
  2151. height:22px;
  2152. display:flex;
  2153. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2154. font-weight:400;
  2155. font-style:normal;
  2156. font-size:16px;
  2157. }
  2158. #u97298 .text {
  2159. position:absolute;
  2160. align-self:flex-start;
  2161. padding:0px 0px 0px 0px;
  2162. box-sizing:border-box;
  2163. width:100%;
  2164. }
  2165. #u97298_text {
  2166. border-width:0px;
  2167. word-wrap:break-word;
  2168. text-transform:none;
  2169. }
  2170. #u97299_div {
  2171. border-width:0px;
  2172. position:absolute;
  2173. left:0px;
  2174. top:0px;
  2175. width:97px;
  2176. height:22px;
  2177. background:inherit;
  2178. background-color:rgba(255, 255, 255, 0);
  2179. border:none;
  2180. border-radius:0px;
  2181. -moz-box-shadow:none;
  2182. -webkit-box-shadow:none;
  2183. box-shadow:none;
  2184. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2185. font-weight:400;
  2186. font-style:normal;
  2187. font-size:16px;
  2188. }
  2189. #u97299 {
  2190. border-width:0px;
  2191. position:absolute;
  2192. left:147px;
  2193. top:293px;
  2194. width:97px;
  2195. height:22px;
  2196. display:flex;
  2197. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2198. font-weight:400;
  2199. font-style:normal;
  2200. font-size:16px;
  2201. }
  2202. #u97299 .text {
  2203. position:absolute;
  2204. align-self:flex-start;
  2205. padding:0px 0px 0px 0px;
  2206. box-sizing:border-box;
  2207. width:100%;
  2208. }
  2209. #u97299_text {
  2210. border-width:0px;
  2211. word-wrap:break-word;
  2212. text-transform:none;
  2213. }
  2214. #u97300_img {
  2215. border-width:0px;
  2216. position:absolute;
  2217. left:0px;
  2218. top:0px;
  2219. width:201px;
  2220. height:2px;
  2221. }
  2222. #u97300 {
  2223. border-width:0px;
  2224. position:absolute;
  2225. left:120px;
  2226. top:517px;
  2227. width:200px;
  2228. height:1px;
  2229. display:flex;
  2230. }
  2231. #u97300 .text {
  2232. position:absolute;
  2233. align-self:center;
  2234. padding:2px 2px 2px 2px;
  2235. box-sizing:border-box;
  2236. width:100%;
  2237. }
  2238. #u97300_text {
  2239. border-width:0px;
  2240. word-wrap:break-word;
  2241. text-transform:none;
  2242. visibility:hidden;
  2243. }
  2244. #u97301_div {
  2245. border-width:0px;
  2246. position:absolute;
  2247. left:0px;
  2248. top:0px;
  2249. width:97px;
  2250. height:22px;
  2251. background:inherit;
  2252. background-color:rgba(255, 255, 255, 0);
  2253. border:none;
  2254. border-radius:0px;
  2255. -moz-box-shadow:none;
  2256. -webkit-box-shadow:none;
  2257. box-shadow:none;
  2258. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2259. font-weight:400;
  2260. font-style:normal;
  2261. font-size:16px;
  2262. }
  2263. #u97301 {
  2264. border-width:0px;
  2265. position:absolute;
  2266. left:147px;
  2267. top:573px;
  2268. width:97px;
  2269. height:22px;
  2270. display:flex;
  2271. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2272. font-weight:400;
  2273. font-style:normal;
  2274. font-size:16px;
  2275. }
  2276. #u97301 .text {
  2277. position:absolute;
  2278. align-self:flex-start;
  2279. padding:0px 0px 0px 0px;
  2280. box-sizing:border-box;
  2281. width:100%;
  2282. }
  2283. #u97301_text {
  2284. border-width:0px;
  2285. word-wrap:break-word;
  2286. text-transform:none;
  2287. }
  2288. #u97302_div {
  2289. border-width:0px;
  2290. position:absolute;
  2291. left:0px;
  2292. top:0px;
  2293. width:49px;
  2294. height:17px;
  2295. background:inherit;
  2296. background-color:rgba(255, 255, 255, 0);
  2297. border:none;
  2298. border-radius:0px;
  2299. -moz-box-shadow:none;
  2300. -webkit-box-shadow:none;
  2301. box-shadow:none;
  2302. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2303. font-weight:400;
  2304. font-style:normal;
  2305. font-size:12px;
  2306. color:#AAAAAA;
  2307. }
  2308. #u97302 {
  2309. border-width:0px;
  2310. position:absolute;
  2311. left:147px;
  2312. top:537px;
  2313. width:49px;
  2314. height:17px;
  2315. display:flex;
  2316. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2317. font-weight:400;
  2318. font-style:normal;
  2319. font-size:12px;
  2320. color:#AAAAAA;
  2321. }
  2322. #u97302 .text {
  2323. position:absolute;
  2324. align-self:flex-start;
  2325. padding:0px 0px 0px 0px;
  2326. box-sizing:border-box;
  2327. width:100%;
  2328. }
  2329. #u97302_text {
  2330. border-width:0px;
  2331. white-space:nowrap;
  2332. text-transform:none;
  2333. }
  2334. #u97303_div {
  2335. border-width:0px;
  2336. position:absolute;
  2337. left:0px;
  2338. top:0px;
  2339. width:97px;
  2340. height:22px;
  2341. background:inherit;
  2342. background-color:rgba(255, 255, 255, 0);
  2343. border:none;
  2344. border-radius:0px;
  2345. -moz-box-shadow:none;
  2346. -webkit-box-shadow:none;
  2347. box-shadow:none;
  2348. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2349. font-weight:400;
  2350. font-style:normal;
  2351. font-size:16px;
  2352. }
  2353. #u97303 {
  2354. border-width:0px;
  2355. position:absolute;
  2356. left:147px;
  2357. top:615px;
  2358. width:97px;
  2359. height:22px;
  2360. display:flex;
  2361. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2362. font-weight:400;
  2363. font-style:normal;
  2364. font-size:16px;
  2365. }
  2366. #u97303 .text {
  2367. position:absolute;
  2368. align-self:flex-start;
  2369. padding:0px 0px 0px 0px;
  2370. box-sizing:border-box;
  2371. width:100%;
  2372. }
  2373. #u97303_text {
  2374. border-width:0px;
  2375. word-wrap:break-word;
  2376. text-transform:none;
  2377. }
  2378. #u97304_div {
  2379. border-width:0px;
  2380. position:absolute;
  2381. left:0px;
  2382. top:0px;
  2383. width:97px;
  2384. height:22px;
  2385. background:inherit;
  2386. background-color:rgba(255, 255, 255, 0);
  2387. border:none;
  2388. border-radius:0px;
  2389. -moz-box-shadow:none;
  2390. -webkit-box-shadow:none;
  2391. box-shadow:none;
  2392. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2393. font-weight:400;
  2394. font-style:normal;
  2395. font-size:16px;
  2396. }
  2397. #u97304 {
  2398. border-width:0px;
  2399. position:absolute;
  2400. left:147px;
  2401. top:657px;
  2402. width:97px;
  2403. height:22px;
  2404. display:flex;
  2405. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2406. font-weight:400;
  2407. font-style:normal;
  2408. font-size:16px;
  2409. }
  2410. #u97304 .text {
  2411. position:absolute;
  2412. align-self:flex-start;
  2413. padding:0px 0px 0px 0px;
  2414. box-sizing:border-box;
  2415. width:100%;
  2416. }
  2417. #u97304_text {
  2418. border-width:0px;
  2419. word-wrap:break-word;
  2420. text-transform:none;
  2421. }
  2422. #u97305_div {
  2423. border-width:0px;
  2424. position:absolute;
  2425. left:0px;
  2426. top:0px;
  2427. width:129px;
  2428. height:22px;
  2429. background:inherit;
  2430. background-color:rgba(255, 255, 255, 0);
  2431. border:none;
  2432. border-radius:0px;
  2433. -moz-box-shadow:none;
  2434. -webkit-box-shadow:none;
  2435. box-shadow:none;
  2436. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2437. font-weight:400;
  2438. font-style:normal;
  2439. font-size:16px;
  2440. }
  2441. #u97305 {
  2442. border-width:0px;
  2443. position:absolute;
  2444. left:147px;
  2445. top:699px;
  2446. width:129px;
  2447. height:22px;
  2448. display:flex;
  2449. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2450. font-weight:400;
  2451. font-style:normal;
  2452. font-size:16px;
  2453. }
  2454. #u97305 .text {
  2455. position:absolute;
  2456. align-self:flex-start;
  2457. padding:0px 0px 0px 0px;
  2458. box-sizing:border-box;
  2459. width:100%;
  2460. }
  2461. #u97305_text {
  2462. border-width:0px;
  2463. white-space:nowrap;
  2464. text-transform:none;
  2465. }
  2466. #u97306_div {
  2467. border-width:0px;
  2468. position:absolute;
  2469. left:0px;
  2470. top:0px;
  2471. width:1381px;
  2472. height:1154px;
  2473. background:inherit;
  2474. background-color:rgba(255, 255, 255, 1);
  2475. border:none;
  2476. border-radius:0px;
  2477. -moz-box-shadow:0px 0px 3px rgba(127, 127, 127, 0.349019607843137);
  2478. -webkit-box-shadow:0px 0px 3px rgba(127, 127, 127, 0.349019607843137);
  2479. box-shadow:0px 0px 3px rgba(127, 127, 127, 0.349019607843137);
  2480. }
  2481. #u97306 {
  2482. border-width:0px;
  2483. position:absolute;
  2484. left:330px;
  2485. top:50px;
  2486. width:1381px;
  2487. height:1154px;
  2488. display:flex;
  2489. }
  2490. #u97306 .text {
  2491. position:absolute;
  2492. align-self:center;
  2493. padding:2px 2px 2px 2px;
  2494. box-sizing:border-box;
  2495. width:100%;
  2496. }
  2497. #u97306_text {
  2498. border-width:0px;
  2499. word-wrap:break-word;
  2500. text-transform:none;
  2501. visibility:hidden;
  2502. }
  2503. #u97307 {
  2504. border-width:0px;
  2505. position:absolute;
  2506. left:349px;
  2507. top:201px;
  2508. width:1343px;
  2509. height:465px;
  2510. }
  2511. #u97308_img {
  2512. border-width:0px;
  2513. position:absolute;
  2514. left:0px;
  2515. top:0px;
  2516. width:208px;
  2517. height:41px;
  2518. }
  2519. #u97308 {
  2520. border-width:0px;
  2521. position:absolute;
  2522. left:0px;
  2523. top:0px;
  2524. width:208px;
  2525. height:41px;
  2526. display:flex;
  2527. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2528. font-weight:400;
  2529. font-style:normal;
  2530. font-size:12px;
  2531. color:#FFFFFF;
  2532. }
  2533. #u97308 .text {
  2534. position:absolute;
  2535. align-self:center;
  2536. padding:2px 2px 2px 0px;
  2537. box-sizing:border-box;
  2538. width:100%;
  2539. }
  2540. #u97308_text {
  2541. border-width:0px;
  2542. word-wrap:break-word;
  2543. text-transform:none;
  2544. }
  2545. #u97309_img {
  2546. border-width:0px;
  2547. position:absolute;
  2548. left:0px;
  2549. top:0px;
  2550. width:236px;
  2551. height:41px;
  2552. }
  2553. #u97309 {
  2554. border-width:0px;
  2555. position:absolute;
  2556. left:208px;
  2557. top:0px;
  2558. width:236px;
  2559. height:41px;
  2560. display:flex;
  2561. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2562. font-weight:400;
  2563. font-style:normal;
  2564. font-size:12px;
  2565. color:#FFFFFF;
  2566. }
  2567. #u97309 .text {
  2568. position:absolute;
  2569. align-self:center;
  2570. padding:2px 2px 2px 0px;
  2571. box-sizing:border-box;
  2572. width:100%;
  2573. }
  2574. #u97309_text {
  2575. border-width:0px;
  2576. word-wrap:break-word;
  2577. text-transform:none;
  2578. }
  2579. #u97310_img {
  2580. border-width:0px;
  2581. position:absolute;
  2582. left:0px;
  2583. top:0px;
  2584. width:236px;
  2585. height:41px;
  2586. }
  2587. #u97310 {
  2588. border-width:0px;
  2589. position:absolute;
  2590. left:444px;
  2591. top:0px;
  2592. width:236px;
  2593. height:41px;
  2594. display:flex;
  2595. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2596. font-weight:400;
  2597. font-style:normal;
  2598. font-size:12px;
  2599. color:#FFFFFF;
  2600. }
  2601. #u97310 .text {
  2602. position:absolute;
  2603. align-self:center;
  2604. padding:2px 2px 2px 0px;
  2605. box-sizing:border-box;
  2606. width:100%;
  2607. }
  2608. #u97310_text {
  2609. border-width:0px;
  2610. word-wrap:break-word;
  2611. text-transform:none;
  2612. }
  2613. #u97311_img {
  2614. border-width:0px;
  2615. position:absolute;
  2616. left:0px;
  2617. top:0px;
  2618. width:208px;
  2619. height:41px;
  2620. }
  2621. #u97311 {
  2622. border-width:0px;
  2623. position:absolute;
  2624. left:680px;
  2625. top:0px;
  2626. width:208px;
  2627. height:41px;
  2628. display:flex;
  2629. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2630. font-weight:400;
  2631. font-style:normal;
  2632. font-size:12px;
  2633. color:#FFFFFF;
  2634. }
  2635. #u97311 .text {
  2636. position:absolute;
  2637. align-self:center;
  2638. padding:2px 2px 2px 0px;
  2639. box-sizing:border-box;
  2640. width:100%;
  2641. }
  2642. #u97311_text {
  2643. border-width:0px;
  2644. word-wrap:break-word;
  2645. text-transform:none;
  2646. }
  2647. #u97312_img {
  2648. border-width:0px;
  2649. position:absolute;
  2650. left:0px;
  2651. top:0px;
  2652. width:224px;
  2653. height:41px;
  2654. }
  2655. #u97312 {
  2656. border-width:0px;
  2657. position:absolute;
  2658. left:888px;
  2659. top:0px;
  2660. width:224px;
  2661. height:41px;
  2662. display:flex;
  2663. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2664. font-weight:400;
  2665. font-style:normal;
  2666. font-size:12px;
  2667. color:#FFFFFF;
  2668. }
  2669. #u97312 .text {
  2670. position:absolute;
  2671. align-self:center;
  2672. padding:2px 2px 2px 0px;
  2673. box-sizing:border-box;
  2674. width:100%;
  2675. }
  2676. #u97312_text {
  2677. border-width:0px;
  2678. word-wrap:break-word;
  2679. text-transform:none;
  2680. }
  2681. #u97313_img {
  2682. border-width:0px;
  2683. position:absolute;
  2684. left:0px;
  2685. top:0px;
  2686. width:231px;
  2687. height:41px;
  2688. }
  2689. #u97313 {
  2690. border-width:0px;
  2691. position:absolute;
  2692. left:1112px;
  2693. top:0px;
  2694. width:231px;
  2695. height:41px;
  2696. display:flex;
  2697. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2698. font-weight:400;
  2699. font-style:normal;
  2700. font-size:12px;
  2701. color:#FFFFFF;
  2702. }
  2703. #u97313 .text {
  2704. position:absolute;
  2705. align-self:center;
  2706. padding:2px 2px 2px 0px;
  2707. box-sizing:border-box;
  2708. width:100%;
  2709. }
  2710. #u97313_text {
  2711. border-width:0px;
  2712. word-wrap:break-word;
  2713. text-transform:none;
  2714. }
  2715. #u97314_img {
  2716. border-width:0px;
  2717. position:absolute;
  2718. left:0px;
  2719. top:0px;
  2720. width:208px;
  2721. height:39px;
  2722. }
  2723. #u97314 {
  2724. border-width:0px;
  2725. position:absolute;
  2726. left:0px;
  2727. top:41px;
  2728. width:208px;
  2729. height:39px;
  2730. display:flex;
  2731. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2732. font-weight:400;
  2733. font-style:normal;
  2734. font-size:12px;
  2735. }
  2736. #u97314 .text {
  2737. position:absolute;
  2738. align-self:center;
  2739. padding:2px 2px 2px 0px;
  2740. box-sizing:border-box;
  2741. width:100%;
  2742. }
  2743. #u97314_text {
  2744. border-width:0px;
  2745. word-wrap:break-word;
  2746. text-transform:none;
  2747. }
  2748. #u97315_img {
  2749. border-width:0px;
  2750. position:absolute;
  2751. left:0px;
  2752. top:0px;
  2753. width:236px;
  2754. height:39px;
  2755. }
  2756. #u97315 {
  2757. border-width:0px;
  2758. position:absolute;
  2759. left:208px;
  2760. top:41px;
  2761. width:236px;
  2762. height:39px;
  2763. display:flex;
  2764. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2765. font-weight:400;
  2766. font-style:normal;
  2767. font-size:12px;
  2768. }
  2769. #u97315 .text {
  2770. position:absolute;
  2771. align-self:center;
  2772. padding:2px 2px 2px 0px;
  2773. box-sizing:border-box;
  2774. width:100%;
  2775. }
  2776. #u97315_text {
  2777. border-width:0px;
  2778. word-wrap:break-word;
  2779. text-transform:none;
  2780. visibility:hidden;
  2781. }
  2782. #u97316_img {
  2783. border-width:0px;
  2784. position:absolute;
  2785. left:0px;
  2786. top:0px;
  2787. width:236px;
  2788. height:39px;
  2789. }
  2790. #u97316 {
  2791. border-width:0px;
  2792. position:absolute;
  2793. left:444px;
  2794. top:41px;
  2795. width:236px;
  2796. height:39px;
  2797. display:flex;
  2798. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2799. font-weight:400;
  2800. font-style:normal;
  2801. font-size:12px;
  2802. }
  2803. #u97316 .text {
  2804. position:absolute;
  2805. align-self:center;
  2806. padding:2px 2px 2px 0px;
  2807. box-sizing:border-box;
  2808. width:100%;
  2809. }
  2810. #u97316_text {
  2811. border-width:0px;
  2812. word-wrap:break-word;
  2813. text-transform:none;
  2814. visibility:hidden;
  2815. }
  2816. #u97317_img {
  2817. border-width:0px;
  2818. position:absolute;
  2819. left:0px;
  2820. top:0px;
  2821. width:208px;
  2822. height:39px;
  2823. }
  2824. #u97317 {
  2825. border-width:0px;
  2826. position:absolute;
  2827. left:680px;
  2828. top:41px;
  2829. width:208px;
  2830. height:39px;
  2831. display:flex;
  2832. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2833. font-weight:400;
  2834. font-style:normal;
  2835. font-size:12px;
  2836. }
  2837. #u97317 .text {
  2838. position:absolute;
  2839. align-self:center;
  2840. padding:2px 2px 2px 0px;
  2841. box-sizing:border-box;
  2842. width:100%;
  2843. }
  2844. #u97317_text {
  2845. border-width:0px;
  2846. word-wrap:break-word;
  2847. text-transform:none;
  2848. visibility:hidden;
  2849. }
  2850. #u97318_img {
  2851. border-width:0px;
  2852. position:absolute;
  2853. left:0px;
  2854. top:0px;
  2855. width:224px;
  2856. height:39px;
  2857. }
  2858. #u97318 {
  2859. border-width:0px;
  2860. position:absolute;
  2861. left:888px;
  2862. top:41px;
  2863. width:224px;
  2864. height:39px;
  2865. display:flex;
  2866. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2867. font-weight:400;
  2868. font-style:normal;
  2869. font-size:12px;
  2870. }
  2871. #u97318 .text {
  2872. position:absolute;
  2873. align-self:center;
  2874. padding:2px 2px 2px 0px;
  2875. box-sizing:border-box;
  2876. width:100%;
  2877. }
  2878. #u97318_text {
  2879. border-width:0px;
  2880. word-wrap:break-word;
  2881. text-transform:none;
  2882. visibility:hidden;
  2883. }
  2884. #u97319_img {
  2885. border-width:0px;
  2886. position:absolute;
  2887. left:0px;
  2888. top:0px;
  2889. width:231px;
  2890. height:39px;
  2891. }
  2892. #u97319 {
  2893. border-width:0px;
  2894. position:absolute;
  2895. left:1112px;
  2896. top:41px;
  2897. width:231px;
  2898. height:39px;
  2899. display:flex;
  2900. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2901. font-weight:400;
  2902. font-style:normal;
  2903. font-size:12px;
  2904. color:#1890FF;
  2905. }
  2906. #u97319 .text {
  2907. position:absolute;
  2908. align-self:center;
  2909. padding:2px 2px 2px 0px;
  2910. box-sizing:border-box;
  2911. width:100%;
  2912. }
  2913. #u97319_text {
  2914. border-width:0px;
  2915. word-wrap:break-word;
  2916. text-transform:none;
  2917. }
  2918. #u97320_img {
  2919. border-width:0px;
  2920. position:absolute;
  2921. left:0px;
  2922. top:0px;
  2923. width:208px;
  2924. height:35px;
  2925. }
  2926. #u97320 {
  2927. border-width:0px;
  2928. position:absolute;
  2929. left:0px;
  2930. top:80px;
  2931. width:208px;
  2932. height:35px;
  2933. display:flex;
  2934. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2935. font-weight:400;
  2936. font-style:normal;
  2937. font-size:12px;
  2938. }
  2939. #u97320 .text {
  2940. position:absolute;
  2941. align-self:center;
  2942. padding:2px 2px 2px 0px;
  2943. box-sizing:border-box;
  2944. width:100%;
  2945. }
  2946. #u97320_text {
  2947. border-width:0px;
  2948. word-wrap:break-word;
  2949. text-transform:none;
  2950. }
  2951. #u97321_img {
  2952. border-width:0px;
  2953. position:absolute;
  2954. left:0px;
  2955. top:0px;
  2956. width:236px;
  2957. height:35px;
  2958. }
  2959. #u97321 {
  2960. border-width:0px;
  2961. position:absolute;
  2962. left:208px;
  2963. top:80px;
  2964. width:236px;
  2965. height:35px;
  2966. display:flex;
  2967. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2968. font-weight:400;
  2969. font-style:normal;
  2970. font-size:12px;
  2971. }
  2972. #u97321 .text {
  2973. position:absolute;
  2974. align-self:center;
  2975. padding:2px 2px 2px 0px;
  2976. box-sizing:border-box;
  2977. width:100%;
  2978. }
  2979. #u97321_text {
  2980. border-width:0px;
  2981. word-wrap:break-word;
  2982. text-transform:none;
  2983. visibility:hidden;
  2984. }
  2985. #u97322_img {
  2986. border-width:0px;
  2987. position:absolute;
  2988. left:0px;
  2989. top:0px;
  2990. width:236px;
  2991. height:35px;
  2992. }
  2993. #u97322 {
  2994. border-width:0px;
  2995. position:absolute;
  2996. left:444px;
  2997. top:80px;
  2998. width:236px;
  2999. height:35px;
  3000. display:flex;
  3001. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3002. font-weight:400;
  3003. font-style:normal;
  3004. font-size:12px;
  3005. }
  3006. #u97322 .text {
  3007. position:absolute;
  3008. align-self:center;
  3009. padding:2px 2px 2px 0px;
  3010. box-sizing:border-box;
  3011. width:100%;
  3012. }
  3013. #u97322_text {
  3014. border-width:0px;
  3015. word-wrap:break-word;
  3016. text-transform:none;
  3017. visibility:hidden;
  3018. }
  3019. #u97323_img {
  3020. border-width:0px;
  3021. position:absolute;
  3022. left:0px;
  3023. top:0px;
  3024. width:208px;
  3025. height:35px;
  3026. }
  3027. #u97323 {
  3028. border-width:0px;
  3029. position:absolute;
  3030. left:680px;
  3031. top:80px;
  3032. width:208px;
  3033. height:35px;
  3034. display:flex;
  3035. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3036. font-weight:400;
  3037. font-style:normal;
  3038. font-size:12px;
  3039. }
  3040. #u97323 .text {
  3041. position:absolute;
  3042. align-self:center;
  3043. padding:2px 2px 2px 0px;
  3044. box-sizing:border-box;
  3045. width:100%;
  3046. }
  3047. #u97323_text {
  3048. border-width:0px;
  3049. word-wrap:break-word;
  3050. text-transform:none;
  3051. visibility:hidden;
  3052. }
  3053. #u97324_img {
  3054. border-width:0px;
  3055. position:absolute;
  3056. left:0px;
  3057. top:0px;
  3058. width:224px;
  3059. height:35px;
  3060. }
  3061. #u97324 {
  3062. border-width:0px;
  3063. position:absolute;
  3064. left:888px;
  3065. top:80px;
  3066. width:224px;
  3067. height:35px;
  3068. display:flex;
  3069. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3070. font-weight:400;
  3071. font-style:normal;
  3072. font-size:12px;
  3073. }
  3074. #u97324 .text {
  3075. position:absolute;
  3076. align-self:center;
  3077. padding:2px 2px 2px 0px;
  3078. box-sizing:border-box;
  3079. width:100%;
  3080. }
  3081. #u97324_text {
  3082. border-width:0px;
  3083. word-wrap:break-word;
  3084. text-transform:none;
  3085. visibility:hidden;
  3086. }
  3087. #u97325_img {
  3088. border-width:0px;
  3089. position:absolute;
  3090. left:0px;
  3091. top:0px;
  3092. width:231px;
  3093. height:35px;
  3094. }
  3095. #u97325 {
  3096. border-width:0px;
  3097. position:absolute;
  3098. left:1112px;
  3099. top:80px;
  3100. width:231px;
  3101. height:35px;
  3102. display:flex;
  3103. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3104. font-weight:400;
  3105. font-style:normal;
  3106. font-size:12px;
  3107. color:#1890FF;
  3108. }
  3109. #u97325 .text {
  3110. position:absolute;
  3111. align-self:center;
  3112. padding:2px 2px 2px 0px;
  3113. box-sizing:border-box;
  3114. width:100%;
  3115. }
  3116. #u97325_text {
  3117. border-width:0px;
  3118. word-wrap:break-word;
  3119. text-transform:none;
  3120. }
  3121. #u97326_img {
  3122. border-width:0px;
  3123. position:absolute;
  3124. left:0px;
  3125. top:0px;
  3126. width:208px;
  3127. height:35px;
  3128. }
  3129. #u97326 {
  3130. border-width:0px;
  3131. position:absolute;
  3132. left:0px;
  3133. top:115px;
  3134. width:208px;
  3135. height:35px;
  3136. display:flex;
  3137. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3138. font-weight:400;
  3139. font-style:normal;
  3140. font-size:12px;
  3141. }
  3142. #u97326 .text {
  3143. position:absolute;
  3144. align-self:center;
  3145. padding:2px 2px 2px 0px;
  3146. box-sizing:border-box;
  3147. width:100%;
  3148. }
  3149. #u97326_text {
  3150. border-width:0px;
  3151. word-wrap:break-word;
  3152. text-transform:none;
  3153. visibility:hidden;
  3154. }
  3155. #u97327_img {
  3156. border-width:0px;
  3157. position:absolute;
  3158. left:0px;
  3159. top:0px;
  3160. width:236px;
  3161. height:35px;
  3162. }
  3163. #u97327 {
  3164. border-width:0px;
  3165. position:absolute;
  3166. left:208px;
  3167. top:115px;
  3168. width:236px;
  3169. height:35px;
  3170. display:flex;
  3171. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3172. font-weight:400;
  3173. font-style:normal;
  3174. font-size:12px;
  3175. }
  3176. #u97327 .text {
  3177. position:absolute;
  3178. align-self:center;
  3179. padding:2px 2px 2px 0px;
  3180. box-sizing:border-box;
  3181. width:100%;
  3182. }
  3183. #u97327_text {
  3184. border-width:0px;
  3185. word-wrap:break-word;
  3186. text-transform:none;
  3187. visibility:hidden;
  3188. }
  3189. #u97328_img {
  3190. border-width:0px;
  3191. position:absolute;
  3192. left:0px;
  3193. top:0px;
  3194. width:236px;
  3195. height:35px;
  3196. }
  3197. #u97328 {
  3198. border-width:0px;
  3199. position:absolute;
  3200. left:444px;
  3201. top:115px;
  3202. width:236px;
  3203. height:35px;
  3204. display:flex;
  3205. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3206. font-weight:400;
  3207. font-style:normal;
  3208. font-size:12px;
  3209. }
  3210. #u97328 .text {
  3211. position:absolute;
  3212. align-self:center;
  3213. padding:2px 2px 2px 0px;
  3214. box-sizing:border-box;
  3215. width:100%;
  3216. }
  3217. #u97328_text {
  3218. border-width:0px;
  3219. word-wrap:break-word;
  3220. text-transform:none;
  3221. visibility:hidden;
  3222. }
  3223. #u97329_img {
  3224. border-width:0px;
  3225. position:absolute;
  3226. left:0px;
  3227. top:0px;
  3228. width:208px;
  3229. height:35px;
  3230. }
  3231. #u97329 {
  3232. border-width:0px;
  3233. position:absolute;
  3234. left:680px;
  3235. top:115px;
  3236. width:208px;
  3237. height:35px;
  3238. display:flex;
  3239. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3240. font-weight:400;
  3241. font-style:normal;
  3242. font-size:12px;
  3243. }
  3244. #u97329 .text {
  3245. position:absolute;
  3246. align-self:center;
  3247. padding:2px 2px 2px 0px;
  3248. box-sizing:border-box;
  3249. width:100%;
  3250. }
  3251. #u97329_text {
  3252. border-width:0px;
  3253. word-wrap:break-word;
  3254. text-transform:none;
  3255. visibility:hidden;
  3256. }
  3257. #u97330_img {
  3258. border-width:0px;
  3259. position:absolute;
  3260. left:0px;
  3261. top:0px;
  3262. width:224px;
  3263. height:35px;
  3264. }
  3265. #u97330 {
  3266. border-width:0px;
  3267. position:absolute;
  3268. left:888px;
  3269. top:115px;
  3270. width:224px;
  3271. height:35px;
  3272. display:flex;
  3273. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3274. font-weight:400;
  3275. font-style:normal;
  3276. font-size:12px;
  3277. }
  3278. #u97330 .text {
  3279. position:absolute;
  3280. align-self:center;
  3281. padding:2px 2px 2px 0px;
  3282. box-sizing:border-box;
  3283. width:100%;
  3284. }
  3285. #u97330_text {
  3286. border-width:0px;
  3287. word-wrap:break-word;
  3288. text-transform:none;
  3289. visibility:hidden;
  3290. }
  3291. #u97331_img {
  3292. border-width:0px;
  3293. position:absolute;
  3294. left:0px;
  3295. top:0px;
  3296. width:231px;
  3297. height:35px;
  3298. }
  3299. #u97331 {
  3300. border-width:0px;
  3301. position:absolute;
  3302. left:1112px;
  3303. top:115px;
  3304. width:231px;
  3305. height:35px;
  3306. display:flex;
  3307. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3308. font-weight:400;
  3309. font-style:normal;
  3310. font-size:12px;
  3311. color:#1890FF;
  3312. }
  3313. #u97331 .text {
  3314. position:absolute;
  3315. align-self:center;
  3316. padding:2px 2px 2px 0px;
  3317. box-sizing:border-box;
  3318. width:100%;
  3319. }
  3320. #u97331_text {
  3321. border-width:0px;
  3322. word-wrap:break-word;
  3323. text-transform:none;
  3324. }
  3325. #u97332_img {
  3326. border-width:0px;
  3327. position:absolute;
  3328. left:0px;
  3329. top:0px;
  3330. width:208px;
  3331. height:34px;
  3332. }
  3333. #u97332 {
  3334. border-width:0px;
  3335. position:absolute;
  3336. left:0px;
  3337. top:150px;
  3338. width:208px;
  3339. height:34px;
  3340. display:flex;
  3341. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3342. font-weight:400;
  3343. font-style:normal;
  3344. font-size:12px;
  3345. }
  3346. #u97332 .text {
  3347. position:absolute;
  3348. align-self:center;
  3349. padding:2px 2px 2px 0px;
  3350. box-sizing:border-box;
  3351. width:100%;
  3352. }
  3353. #u97332_text {
  3354. border-width:0px;
  3355. word-wrap:break-word;
  3356. text-transform:none;
  3357. visibility:hidden;
  3358. }
  3359. #u97333_img {
  3360. border-width:0px;
  3361. position:absolute;
  3362. left:0px;
  3363. top:0px;
  3364. width:236px;
  3365. height:34px;
  3366. }
  3367. #u97333 {
  3368. border-width:0px;
  3369. position:absolute;
  3370. left:208px;
  3371. top:150px;
  3372. width:236px;
  3373. height:34px;
  3374. display:flex;
  3375. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3376. font-weight:400;
  3377. font-style:normal;
  3378. font-size:12px;
  3379. }
  3380. #u97333 .text {
  3381. position:absolute;
  3382. align-self:center;
  3383. padding:2px 2px 2px 0px;
  3384. box-sizing:border-box;
  3385. width:100%;
  3386. }
  3387. #u97333_text {
  3388. border-width:0px;
  3389. word-wrap:break-word;
  3390. text-transform:none;
  3391. visibility:hidden;
  3392. }
  3393. #u97334_img {
  3394. border-width:0px;
  3395. position:absolute;
  3396. left:0px;
  3397. top:0px;
  3398. width:236px;
  3399. height:34px;
  3400. }
  3401. #u97334 {
  3402. border-width:0px;
  3403. position:absolute;
  3404. left:444px;
  3405. top:150px;
  3406. width:236px;
  3407. height:34px;
  3408. display:flex;
  3409. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3410. font-weight:400;
  3411. font-style:normal;
  3412. font-size:12px;
  3413. }
  3414. #u97334 .text {
  3415. position:absolute;
  3416. align-self:center;
  3417. padding:2px 2px 2px 0px;
  3418. box-sizing:border-box;
  3419. width:100%;
  3420. }
  3421. #u97334_text {
  3422. border-width:0px;
  3423. word-wrap:break-word;
  3424. text-transform:none;
  3425. visibility:hidden;
  3426. }
  3427. #u97335_img {
  3428. border-width:0px;
  3429. position:absolute;
  3430. left:0px;
  3431. top:0px;
  3432. width:208px;
  3433. height:34px;
  3434. }
  3435. #u97335 {
  3436. border-width:0px;
  3437. position:absolute;
  3438. left:680px;
  3439. top:150px;
  3440. width:208px;
  3441. height:34px;
  3442. display:flex;
  3443. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3444. font-weight:400;
  3445. font-style:normal;
  3446. font-size:12px;
  3447. }
  3448. #u97335 .text {
  3449. position:absolute;
  3450. align-self:center;
  3451. padding:2px 2px 2px 0px;
  3452. box-sizing:border-box;
  3453. width:100%;
  3454. }
  3455. #u97335_text {
  3456. border-width:0px;
  3457. word-wrap:break-word;
  3458. text-transform:none;
  3459. visibility:hidden;
  3460. }
  3461. #u97336_img {
  3462. border-width:0px;
  3463. position:absolute;
  3464. left:0px;
  3465. top:0px;
  3466. width:224px;
  3467. height:34px;
  3468. }
  3469. #u97336 {
  3470. border-width:0px;
  3471. position:absolute;
  3472. left:888px;
  3473. top:150px;
  3474. width:224px;
  3475. height:34px;
  3476. display:flex;
  3477. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3478. font-weight:400;
  3479. font-style:normal;
  3480. font-size:12px;
  3481. }
  3482. #u97336 .text {
  3483. position:absolute;
  3484. align-self:center;
  3485. padding:2px 2px 2px 0px;
  3486. box-sizing:border-box;
  3487. width:100%;
  3488. }
  3489. #u97336_text {
  3490. border-width:0px;
  3491. word-wrap:break-word;
  3492. text-transform:none;
  3493. visibility:hidden;
  3494. }
  3495. #u97337_img {
  3496. border-width:0px;
  3497. position:absolute;
  3498. left:0px;
  3499. top:0px;
  3500. width:231px;
  3501. height:34px;
  3502. }
  3503. #u97337 {
  3504. border-width:0px;
  3505. position:absolute;
  3506. left:1112px;
  3507. top:150px;
  3508. width:231px;
  3509. height:34px;
  3510. display:flex;
  3511. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3512. font-weight:400;
  3513. font-style:normal;
  3514. font-size:12px;
  3515. color:#1890FF;
  3516. }
  3517. #u97337 .text {
  3518. position:absolute;
  3519. align-self:center;
  3520. padding:2px 2px 2px 0px;
  3521. box-sizing:border-box;
  3522. width:100%;
  3523. }
  3524. #u97337_text {
  3525. border-width:0px;
  3526. word-wrap:break-word;
  3527. text-transform:none;
  3528. }
  3529. #u97338_img {
  3530. border-width:0px;
  3531. position:absolute;
  3532. left:0px;
  3533. top:0px;
  3534. width:208px;
  3535. height:36px;
  3536. }
  3537. #u97338 {
  3538. border-width:0px;
  3539. position:absolute;
  3540. left:0px;
  3541. top:184px;
  3542. width:208px;
  3543. height:36px;
  3544. display:flex;
  3545. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3546. font-weight:400;
  3547. font-style:normal;
  3548. font-size:12px;
  3549. }
  3550. #u97338 .text {
  3551. position:absolute;
  3552. align-self:center;
  3553. padding:2px 2px 2px 0px;
  3554. box-sizing:border-box;
  3555. width:100%;
  3556. }
  3557. #u97338_text {
  3558. border-width:0px;
  3559. word-wrap:break-word;
  3560. text-transform:none;
  3561. visibility:hidden;
  3562. }
  3563. #u97339_img {
  3564. border-width:0px;
  3565. position:absolute;
  3566. left:0px;
  3567. top:0px;
  3568. width:236px;
  3569. height:36px;
  3570. }
  3571. #u97339 {
  3572. border-width:0px;
  3573. position:absolute;
  3574. left:208px;
  3575. top:184px;
  3576. width:236px;
  3577. height:36px;
  3578. display:flex;
  3579. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3580. font-weight:400;
  3581. font-style:normal;
  3582. font-size:12px;
  3583. }
  3584. #u97339 .text {
  3585. position:absolute;
  3586. align-self:center;
  3587. padding:2px 2px 2px 0px;
  3588. box-sizing:border-box;
  3589. width:100%;
  3590. }
  3591. #u97339_text {
  3592. border-width:0px;
  3593. word-wrap:break-word;
  3594. text-transform:none;
  3595. visibility:hidden;
  3596. }
  3597. #u97340_img {
  3598. border-width:0px;
  3599. position:absolute;
  3600. left:0px;
  3601. top:0px;
  3602. width:236px;
  3603. height:36px;
  3604. }
  3605. #u97340 {
  3606. border-width:0px;
  3607. position:absolute;
  3608. left:444px;
  3609. top:184px;
  3610. width:236px;
  3611. height:36px;
  3612. display:flex;
  3613. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3614. font-weight:400;
  3615. font-style:normal;
  3616. font-size:12px;
  3617. }
  3618. #u97340 .text {
  3619. position:absolute;
  3620. align-self:center;
  3621. padding:2px 2px 2px 0px;
  3622. box-sizing:border-box;
  3623. width:100%;
  3624. }
  3625. #u97340_text {
  3626. border-width:0px;
  3627. word-wrap:break-word;
  3628. text-transform:none;
  3629. visibility:hidden;
  3630. }
  3631. #u97341_img {
  3632. border-width:0px;
  3633. position:absolute;
  3634. left:0px;
  3635. top:0px;
  3636. width:208px;
  3637. height:36px;
  3638. }
  3639. #u97341 {
  3640. border-width:0px;
  3641. position:absolute;
  3642. left:680px;
  3643. top:184px;
  3644. width:208px;
  3645. height:36px;
  3646. display:flex;
  3647. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3648. font-weight:400;
  3649. font-style:normal;
  3650. font-size:12px;
  3651. }
  3652. #u97341 .text {
  3653. position:absolute;
  3654. align-self:center;
  3655. padding:2px 2px 2px 0px;
  3656. box-sizing:border-box;
  3657. width:100%;
  3658. }
  3659. #u97341_text {
  3660. border-width:0px;
  3661. word-wrap:break-word;
  3662. text-transform:none;
  3663. visibility:hidden;
  3664. }
  3665. #u97342_img {
  3666. border-width:0px;
  3667. position:absolute;
  3668. left:0px;
  3669. top:0px;
  3670. width:224px;
  3671. height:36px;
  3672. }
  3673. #u97342 {
  3674. border-width:0px;
  3675. position:absolute;
  3676. left:888px;
  3677. top:184px;
  3678. width:224px;
  3679. height:36px;
  3680. display:flex;
  3681. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3682. font-weight:400;
  3683. font-style:normal;
  3684. font-size:12px;
  3685. }
  3686. #u97342 .text {
  3687. position:absolute;
  3688. align-self:center;
  3689. padding:2px 2px 2px 0px;
  3690. box-sizing:border-box;
  3691. width:100%;
  3692. }
  3693. #u97342_text {
  3694. border-width:0px;
  3695. word-wrap:break-word;
  3696. text-transform:none;
  3697. visibility:hidden;
  3698. }
  3699. #u97343_img {
  3700. border-width:0px;
  3701. position:absolute;
  3702. left:0px;
  3703. top:0px;
  3704. width:231px;
  3705. height:36px;
  3706. }
  3707. #u97343 {
  3708. border-width:0px;
  3709. position:absolute;
  3710. left:1112px;
  3711. top:184px;
  3712. width:231px;
  3713. height:36px;
  3714. display:flex;
  3715. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3716. font-weight:400;
  3717. font-style:normal;
  3718. font-size:12px;
  3719. color:#1890FF;
  3720. }
  3721. #u97343 .text {
  3722. position:absolute;
  3723. align-self:center;
  3724. padding:2px 2px 2px 0px;
  3725. box-sizing:border-box;
  3726. width:100%;
  3727. }
  3728. #u97343_text {
  3729. border-width:0px;
  3730. word-wrap:break-word;
  3731. text-transform:none;
  3732. visibility:hidden;
  3733. }
  3734. #u97344_img {
  3735. border-width:0px;
  3736. position:absolute;
  3737. left:0px;
  3738. top:0px;
  3739. width:208px;
  3740. height:35px;
  3741. }
  3742. #u97344 {
  3743. border-width:0px;
  3744. position:absolute;
  3745. left:0px;
  3746. top:220px;
  3747. width:208px;
  3748. height:35px;
  3749. display:flex;
  3750. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3751. font-weight:400;
  3752. font-style:normal;
  3753. font-size:12px;
  3754. }
  3755. #u97344 .text {
  3756. position:absolute;
  3757. align-self:center;
  3758. padding:2px 2px 2px 0px;
  3759. box-sizing:border-box;
  3760. width:100%;
  3761. }
  3762. #u97344_text {
  3763. border-width:0px;
  3764. word-wrap:break-word;
  3765. text-transform:none;
  3766. visibility:hidden;
  3767. }
  3768. #u97345_img {
  3769. border-width:0px;
  3770. position:absolute;
  3771. left:0px;
  3772. top:0px;
  3773. width:236px;
  3774. height:35px;
  3775. }
  3776. #u97345 {
  3777. border-width:0px;
  3778. position:absolute;
  3779. left:208px;
  3780. top:220px;
  3781. width:236px;
  3782. height:35px;
  3783. display:flex;
  3784. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3785. font-weight:400;
  3786. font-style:normal;
  3787. font-size:12px;
  3788. }
  3789. #u97345 .text {
  3790. position:absolute;
  3791. align-self:center;
  3792. padding:2px 2px 2px 0px;
  3793. box-sizing:border-box;
  3794. width:100%;
  3795. }
  3796. #u97345_text {
  3797. border-width:0px;
  3798. word-wrap:break-word;
  3799. text-transform:none;
  3800. visibility:hidden;
  3801. }
  3802. #u97346_img {
  3803. border-width:0px;
  3804. position:absolute;
  3805. left:0px;
  3806. top:0px;
  3807. width:236px;
  3808. height:35px;
  3809. }
  3810. #u97346 {
  3811. border-width:0px;
  3812. position:absolute;
  3813. left:444px;
  3814. top:220px;
  3815. width:236px;
  3816. height:35px;
  3817. display:flex;
  3818. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3819. font-weight:400;
  3820. font-style:normal;
  3821. font-size:12px;
  3822. }
  3823. #u97346 .text {
  3824. position:absolute;
  3825. align-self:center;
  3826. padding:2px 2px 2px 0px;
  3827. box-sizing:border-box;
  3828. width:100%;
  3829. }
  3830. #u97346_text {
  3831. border-width:0px;
  3832. word-wrap:break-word;
  3833. text-transform:none;
  3834. visibility:hidden;
  3835. }
  3836. #u97347_img {
  3837. border-width:0px;
  3838. position:absolute;
  3839. left:0px;
  3840. top:0px;
  3841. width:208px;
  3842. height:35px;
  3843. }
  3844. #u97347 {
  3845. border-width:0px;
  3846. position:absolute;
  3847. left:680px;
  3848. top:220px;
  3849. width:208px;
  3850. height:35px;
  3851. display:flex;
  3852. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3853. font-weight:400;
  3854. font-style:normal;
  3855. font-size:12px;
  3856. }
  3857. #u97347 .text {
  3858. position:absolute;
  3859. align-self:center;
  3860. padding:2px 2px 2px 0px;
  3861. box-sizing:border-box;
  3862. width:100%;
  3863. }
  3864. #u97347_text {
  3865. border-width:0px;
  3866. word-wrap:break-word;
  3867. text-transform:none;
  3868. visibility:hidden;
  3869. }
  3870. #u97348_img {
  3871. border-width:0px;
  3872. position:absolute;
  3873. left:0px;
  3874. top:0px;
  3875. width:224px;
  3876. height:35px;
  3877. }
  3878. #u97348 {
  3879. border-width:0px;
  3880. position:absolute;
  3881. left:888px;
  3882. top:220px;
  3883. width:224px;
  3884. height:35px;
  3885. display:flex;
  3886. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3887. font-weight:400;
  3888. font-style:normal;
  3889. font-size:12px;
  3890. }
  3891. #u97348 .text {
  3892. position:absolute;
  3893. align-self:center;
  3894. padding:2px 2px 2px 0px;
  3895. box-sizing:border-box;
  3896. width:100%;
  3897. }
  3898. #u97348_text {
  3899. border-width:0px;
  3900. word-wrap:break-word;
  3901. text-transform:none;
  3902. visibility:hidden;
  3903. }
  3904. #u97349_img {
  3905. border-width:0px;
  3906. position:absolute;
  3907. left:0px;
  3908. top:0px;
  3909. width:231px;
  3910. height:35px;
  3911. }
  3912. #u97349 {
  3913. border-width:0px;
  3914. position:absolute;
  3915. left:1112px;
  3916. top:220px;
  3917. width:231px;
  3918. height:35px;
  3919. display:flex;
  3920. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3921. font-weight:400;
  3922. font-style:normal;
  3923. font-size:12px;
  3924. color:#1890FF;
  3925. }
  3926. #u97349 .text {
  3927. position:absolute;
  3928. align-self:center;
  3929. padding:2px 2px 2px 0px;
  3930. box-sizing:border-box;
  3931. width:100%;
  3932. }
  3933. #u97349_text {
  3934. border-width:0px;
  3935. word-wrap:break-word;
  3936. text-transform:none;
  3937. visibility:hidden;
  3938. }
  3939. #u97350_img {
  3940. border-width:0px;
  3941. position:absolute;
  3942. left:0px;
  3943. top:0px;
  3944. width:208px;
  3945. height:35px;
  3946. }
  3947. #u97350 {
  3948. border-width:0px;
  3949. position:absolute;
  3950. left:0px;
  3951. top:255px;
  3952. width:208px;
  3953. height:35px;
  3954. display:flex;
  3955. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3956. font-weight:400;
  3957. font-style:normal;
  3958. font-size:12px;
  3959. }
  3960. #u97350 .text {
  3961. position:absolute;
  3962. align-self:center;
  3963. padding:2px 2px 2px 0px;
  3964. box-sizing:border-box;
  3965. width:100%;
  3966. }
  3967. #u97350_text {
  3968. border-width:0px;
  3969. word-wrap:break-word;
  3970. text-transform:none;
  3971. visibility:hidden;
  3972. }
  3973. #u97351_img {
  3974. border-width:0px;
  3975. position:absolute;
  3976. left:0px;
  3977. top:0px;
  3978. width:236px;
  3979. height:35px;
  3980. }
  3981. #u97351 {
  3982. border-width:0px;
  3983. position:absolute;
  3984. left:208px;
  3985. top:255px;
  3986. width:236px;
  3987. height:35px;
  3988. display:flex;
  3989. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3990. font-weight:400;
  3991. font-style:normal;
  3992. font-size:12px;
  3993. }
  3994. #u97351 .text {
  3995. position:absolute;
  3996. align-self:center;
  3997. padding:2px 2px 2px 0px;
  3998. box-sizing:border-box;
  3999. width:100%;
  4000. }
  4001. #u97351_text {
  4002. border-width:0px;
  4003. word-wrap:break-word;
  4004. text-transform:none;
  4005. visibility:hidden;
  4006. }
  4007. #u97352_img {
  4008. border-width:0px;
  4009. position:absolute;
  4010. left:0px;
  4011. top:0px;
  4012. width:236px;
  4013. height:35px;
  4014. }
  4015. #u97352 {
  4016. border-width:0px;
  4017. position:absolute;
  4018. left:444px;
  4019. top:255px;
  4020. width:236px;
  4021. height:35px;
  4022. display:flex;
  4023. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4024. font-weight:400;
  4025. font-style:normal;
  4026. font-size:12px;
  4027. }
  4028. #u97352 .text {
  4029. position:absolute;
  4030. align-self:center;
  4031. padding:2px 2px 2px 0px;
  4032. box-sizing:border-box;
  4033. width:100%;
  4034. }
  4035. #u97352_text {
  4036. border-width:0px;
  4037. word-wrap:break-word;
  4038. text-transform:none;
  4039. visibility:hidden;
  4040. }
  4041. #u97353_img {
  4042. border-width:0px;
  4043. position:absolute;
  4044. left:0px;
  4045. top:0px;
  4046. width:208px;
  4047. height:35px;
  4048. }
  4049. #u97353 {
  4050. border-width:0px;
  4051. position:absolute;
  4052. left:680px;
  4053. top:255px;
  4054. width:208px;
  4055. height:35px;
  4056. display:flex;
  4057. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4058. font-weight:400;
  4059. font-style:normal;
  4060. font-size:12px;
  4061. }
  4062. #u97353 .text {
  4063. position:absolute;
  4064. align-self:center;
  4065. padding:2px 2px 2px 0px;
  4066. box-sizing:border-box;
  4067. width:100%;
  4068. }
  4069. #u97353_text {
  4070. border-width:0px;
  4071. word-wrap:break-word;
  4072. text-transform:none;
  4073. visibility:hidden;
  4074. }
  4075. #u97354_img {
  4076. border-width:0px;
  4077. position:absolute;
  4078. left:0px;
  4079. top:0px;
  4080. width:224px;
  4081. height:35px;
  4082. }
  4083. #u97354 {
  4084. border-width:0px;
  4085. position:absolute;
  4086. left:888px;
  4087. top:255px;
  4088. width:224px;
  4089. height:35px;
  4090. display:flex;
  4091. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4092. font-weight:400;
  4093. font-style:normal;
  4094. font-size:12px;
  4095. }
  4096. #u97354 .text {
  4097. position:absolute;
  4098. align-self:center;
  4099. padding:2px 2px 2px 0px;
  4100. box-sizing:border-box;
  4101. width:100%;
  4102. }
  4103. #u97354_text {
  4104. border-width:0px;
  4105. word-wrap:break-word;
  4106. text-transform:none;
  4107. visibility:hidden;
  4108. }
  4109. #u97355_img {
  4110. border-width:0px;
  4111. position:absolute;
  4112. left:0px;
  4113. top:0px;
  4114. width:231px;
  4115. height:35px;
  4116. }
  4117. #u97355 {
  4118. border-width:0px;
  4119. position:absolute;
  4120. left:1112px;
  4121. top:255px;
  4122. width:231px;
  4123. height:35px;
  4124. display:flex;
  4125. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4126. font-weight:400;
  4127. font-style:normal;
  4128. font-size:12px;
  4129. color:#1890FF;
  4130. }
  4131. #u97355 .text {
  4132. position:absolute;
  4133. align-self:center;
  4134. padding:2px 2px 2px 0px;
  4135. box-sizing:border-box;
  4136. width:100%;
  4137. }
  4138. #u97355_text {
  4139. border-width:0px;
  4140. word-wrap:break-word;
  4141. text-transform:none;
  4142. visibility:hidden;
  4143. }
  4144. #u97356_img {
  4145. border-width:0px;
  4146. position:absolute;
  4147. left:0px;
  4148. top:0px;
  4149. width:208px;
  4150. height:35px;
  4151. }
  4152. #u97356 {
  4153. border-width:0px;
  4154. position:absolute;
  4155. left:0px;
  4156. top:290px;
  4157. width:208px;
  4158. height:35px;
  4159. display:flex;
  4160. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4161. font-weight:400;
  4162. font-style:normal;
  4163. font-size:12px;
  4164. color:#606266;
  4165. }
  4166. #u97356 .text {
  4167. position:absolute;
  4168. align-self:center;
  4169. padding:2px 2px 2px 0px;
  4170. box-sizing:border-box;
  4171. width:100%;
  4172. }
  4173. #u97356_text {
  4174. border-width:0px;
  4175. word-wrap:break-word;
  4176. text-transform:none;
  4177. visibility:hidden;
  4178. }
  4179. #u97357_img {
  4180. border-width:0px;
  4181. position:absolute;
  4182. left:0px;
  4183. top:0px;
  4184. width:236px;
  4185. height:35px;
  4186. }
  4187. #u97357 {
  4188. border-width:0px;
  4189. position:absolute;
  4190. left:208px;
  4191. top:290px;
  4192. width:236px;
  4193. height:35px;
  4194. display:flex;
  4195. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4196. font-weight:400;
  4197. font-style:normal;
  4198. font-size:12px;
  4199. }
  4200. #u97357 .text {
  4201. position:absolute;
  4202. align-self:center;
  4203. padding:2px 2px 2px 0px;
  4204. box-sizing:border-box;
  4205. width:100%;
  4206. }
  4207. #u97357_text {
  4208. border-width:0px;
  4209. word-wrap:break-word;
  4210. text-transform:none;
  4211. visibility:hidden;
  4212. }
  4213. #u97358_img {
  4214. border-width:0px;
  4215. position:absolute;
  4216. left:0px;
  4217. top:0px;
  4218. width:236px;
  4219. height:35px;
  4220. }
  4221. #u97358 {
  4222. border-width:0px;
  4223. position:absolute;
  4224. left:444px;
  4225. top:290px;
  4226. width:236px;
  4227. height:35px;
  4228. display:flex;
  4229. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4230. font-weight:400;
  4231. font-style:normal;
  4232. font-size:12px;
  4233. }
  4234. #u97358 .text {
  4235. position:absolute;
  4236. align-self:center;
  4237. padding:2px 2px 2px 0px;
  4238. box-sizing:border-box;
  4239. width:100%;
  4240. }
  4241. #u97358_text {
  4242. border-width:0px;
  4243. word-wrap:break-word;
  4244. text-transform:none;
  4245. visibility:hidden;
  4246. }
  4247. #u97359_img {
  4248. border-width:0px;
  4249. position:absolute;
  4250. left:0px;
  4251. top:0px;
  4252. width:208px;
  4253. height:35px;
  4254. }
  4255. #u97359 {
  4256. border-width:0px;
  4257. position:absolute;
  4258. left:680px;
  4259. top:290px;
  4260. width:208px;
  4261. height:35px;
  4262. display:flex;
  4263. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4264. font-weight:400;
  4265. font-style:normal;
  4266. font-size:12px;
  4267. color:#606266;
  4268. }
  4269. #u97359 .text {
  4270. position:absolute;
  4271. align-self:center;
  4272. padding:2px 2px 2px 0px;
  4273. box-sizing:border-box;
  4274. width:100%;
  4275. }
  4276. #u97359_text {
  4277. border-width:0px;
  4278. word-wrap:break-word;
  4279. text-transform:none;
  4280. visibility:hidden;
  4281. }
  4282. #u97360_img {
  4283. border-width:0px;
  4284. position:absolute;
  4285. left:0px;
  4286. top:0px;
  4287. width:224px;
  4288. height:35px;
  4289. }
  4290. #u97360 {
  4291. border-width:0px;
  4292. position:absolute;
  4293. left:888px;
  4294. top:290px;
  4295. width:224px;
  4296. height:35px;
  4297. display:flex;
  4298. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4299. font-weight:400;
  4300. font-style:normal;
  4301. font-size:12px;
  4302. color:#606266;
  4303. }
  4304. #u97360 .text {
  4305. position:absolute;
  4306. align-self:center;
  4307. padding:2px 2px 2px 0px;
  4308. box-sizing:border-box;
  4309. width:100%;
  4310. }
  4311. #u97360_text {
  4312. border-width:0px;
  4313. word-wrap:break-word;
  4314. text-transform:none;
  4315. visibility:hidden;
  4316. }
  4317. #u97361_img {
  4318. border-width:0px;
  4319. position:absolute;
  4320. left:0px;
  4321. top:0px;
  4322. width:231px;
  4323. height:35px;
  4324. }
  4325. #u97361 {
  4326. border-width:0px;
  4327. position:absolute;
  4328. left:1112px;
  4329. top:290px;
  4330. width:231px;
  4331. height:35px;
  4332. display:flex;
  4333. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4334. font-weight:400;
  4335. font-style:normal;
  4336. font-size:12px;
  4337. color:#606266;
  4338. }
  4339. #u97361 .text {
  4340. position:absolute;
  4341. align-self:center;
  4342. padding:2px 2px 2px 0px;
  4343. box-sizing:border-box;
  4344. width:100%;
  4345. }
  4346. #u97361_text {
  4347. border-width:0px;
  4348. word-wrap:break-word;
  4349. text-transform:none;
  4350. visibility:hidden;
  4351. }
  4352. #u97362_img {
  4353. border-width:0px;
  4354. position:absolute;
  4355. left:0px;
  4356. top:0px;
  4357. width:208px;
  4358. height:35px;
  4359. }
  4360. #u97362 {
  4361. border-width:0px;
  4362. position:absolute;
  4363. left:0px;
  4364. top:325px;
  4365. width:208px;
  4366. height:35px;
  4367. display:flex;
  4368. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4369. font-weight:400;
  4370. font-style:normal;
  4371. font-size:12px;
  4372. color:#606266;
  4373. }
  4374. #u97362 .text {
  4375. position:absolute;
  4376. align-self:center;
  4377. padding:2px 2px 2px 0px;
  4378. box-sizing:border-box;
  4379. width:100%;
  4380. }
  4381. #u97362_text {
  4382. border-width:0px;
  4383. word-wrap:break-word;
  4384. text-transform:none;
  4385. visibility:hidden;
  4386. }
  4387. #u97363_img {
  4388. border-width:0px;
  4389. position:absolute;
  4390. left:0px;
  4391. top:0px;
  4392. width:236px;
  4393. height:35px;
  4394. }
  4395. #u97363 {
  4396. border-width:0px;
  4397. position:absolute;
  4398. left:208px;
  4399. top:325px;
  4400. width:236px;
  4401. height:35px;
  4402. display:flex;
  4403. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4404. font-weight:400;
  4405. font-style:normal;
  4406. font-size:12px;
  4407. color:#606266;
  4408. }
  4409. #u97363 .text {
  4410. position:absolute;
  4411. align-self:center;
  4412. padding:2px 2px 2px 0px;
  4413. box-sizing:border-box;
  4414. width:100%;
  4415. }
  4416. #u97363_text {
  4417. border-width:0px;
  4418. word-wrap:break-word;
  4419. text-transform:none;
  4420. visibility:hidden;
  4421. }
  4422. #u97364_img {
  4423. border-width:0px;
  4424. position:absolute;
  4425. left:0px;
  4426. top:0px;
  4427. width:236px;
  4428. height:35px;
  4429. }
  4430. #u97364 {
  4431. border-width:0px;
  4432. position:absolute;
  4433. left:444px;
  4434. top:325px;
  4435. width:236px;
  4436. height:35px;
  4437. display:flex;
  4438. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4439. font-weight:400;
  4440. font-style:normal;
  4441. font-size:12px;
  4442. color:#606266;
  4443. }
  4444. #u97364 .text {
  4445. position:absolute;
  4446. align-self:center;
  4447. padding:2px 2px 2px 0px;
  4448. box-sizing:border-box;
  4449. width:100%;
  4450. }
  4451. #u97364_text {
  4452. border-width:0px;
  4453. word-wrap:break-word;
  4454. text-transform:none;
  4455. visibility:hidden;
  4456. }
  4457. #u97365_img {
  4458. border-width:0px;
  4459. position:absolute;
  4460. left:0px;
  4461. top:0px;
  4462. width:208px;
  4463. height:35px;
  4464. }
  4465. #u97365 {
  4466. border-width:0px;
  4467. position:absolute;
  4468. left:680px;
  4469. top:325px;
  4470. width:208px;
  4471. height:35px;
  4472. display:flex;
  4473. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4474. font-weight:400;
  4475. font-style:normal;
  4476. font-size:12px;
  4477. color:#606266;
  4478. }
  4479. #u97365 .text {
  4480. position:absolute;
  4481. align-self:center;
  4482. padding:2px 2px 2px 0px;
  4483. box-sizing:border-box;
  4484. width:100%;
  4485. }
  4486. #u97365_text {
  4487. border-width:0px;
  4488. word-wrap:break-word;
  4489. text-transform:none;
  4490. visibility:hidden;
  4491. }
  4492. #u97366_img {
  4493. border-width:0px;
  4494. position:absolute;
  4495. left:0px;
  4496. top:0px;
  4497. width:224px;
  4498. height:35px;
  4499. }
  4500. #u97366 {
  4501. border-width:0px;
  4502. position:absolute;
  4503. left:888px;
  4504. top:325px;
  4505. width:224px;
  4506. height:35px;
  4507. display:flex;
  4508. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4509. font-weight:400;
  4510. font-style:normal;
  4511. font-size:12px;
  4512. color:#606266;
  4513. }
  4514. #u97366 .text {
  4515. position:absolute;
  4516. align-self:center;
  4517. padding:2px 2px 2px 0px;
  4518. box-sizing:border-box;
  4519. width:100%;
  4520. }
  4521. #u97366_text {
  4522. border-width:0px;
  4523. word-wrap:break-word;
  4524. text-transform:none;
  4525. visibility:hidden;
  4526. }
  4527. #u97367_img {
  4528. border-width:0px;
  4529. position:absolute;
  4530. left:0px;
  4531. top:0px;
  4532. width:231px;
  4533. height:35px;
  4534. }
  4535. #u97367 {
  4536. border-width:0px;
  4537. position:absolute;
  4538. left:1112px;
  4539. top:325px;
  4540. width:231px;
  4541. height:35px;
  4542. display:flex;
  4543. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4544. font-weight:400;
  4545. font-style:normal;
  4546. font-size:12px;
  4547. color:#606266;
  4548. }
  4549. #u97367 .text {
  4550. position:absolute;
  4551. align-self:center;
  4552. padding:2px 2px 2px 0px;
  4553. box-sizing:border-box;
  4554. width:100%;
  4555. }
  4556. #u97367_text {
  4557. border-width:0px;
  4558. word-wrap:break-word;
  4559. text-transform:none;
  4560. visibility:hidden;
  4561. }
  4562. #u97368_img {
  4563. border-width:0px;
  4564. position:absolute;
  4565. left:0px;
  4566. top:0px;
  4567. width:208px;
  4568. height:35px;
  4569. }
  4570. #u97368 {
  4571. border-width:0px;
  4572. position:absolute;
  4573. left:0px;
  4574. top:360px;
  4575. width:208px;
  4576. height:35px;
  4577. display:flex;
  4578. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4579. font-weight:400;
  4580. font-style:normal;
  4581. font-size:12px;
  4582. color:#606266;
  4583. }
  4584. #u97368 .text {
  4585. position:absolute;
  4586. align-self:center;
  4587. padding:2px 2px 2px 0px;
  4588. box-sizing:border-box;
  4589. width:100%;
  4590. }
  4591. #u97368_text {
  4592. border-width:0px;
  4593. word-wrap:break-word;
  4594. text-transform:none;
  4595. visibility:hidden;
  4596. }
  4597. #u97369_img {
  4598. border-width:0px;
  4599. position:absolute;
  4600. left:0px;
  4601. top:0px;
  4602. width:236px;
  4603. height:35px;
  4604. }
  4605. #u97369 {
  4606. border-width:0px;
  4607. position:absolute;
  4608. left:208px;
  4609. top:360px;
  4610. width:236px;
  4611. height:35px;
  4612. display:flex;
  4613. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4614. font-weight:400;
  4615. font-style:normal;
  4616. font-size:12px;
  4617. color:#606266;
  4618. }
  4619. #u97369 .text {
  4620. position:absolute;
  4621. align-self:center;
  4622. padding:2px 2px 2px 0px;
  4623. box-sizing:border-box;
  4624. width:100%;
  4625. }
  4626. #u97369_text {
  4627. border-width:0px;
  4628. word-wrap:break-word;
  4629. text-transform:none;
  4630. visibility:hidden;
  4631. }
  4632. #u97370_img {
  4633. border-width:0px;
  4634. position:absolute;
  4635. left:0px;
  4636. top:0px;
  4637. width:236px;
  4638. height:35px;
  4639. }
  4640. #u97370 {
  4641. border-width:0px;
  4642. position:absolute;
  4643. left:444px;
  4644. top:360px;
  4645. width:236px;
  4646. height:35px;
  4647. display:flex;
  4648. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4649. font-weight:400;
  4650. font-style:normal;
  4651. font-size:12px;
  4652. color:#606266;
  4653. }
  4654. #u97370 .text {
  4655. position:absolute;
  4656. align-self:center;
  4657. padding:2px 2px 2px 0px;
  4658. box-sizing:border-box;
  4659. width:100%;
  4660. }
  4661. #u97370_text {
  4662. border-width:0px;
  4663. word-wrap:break-word;
  4664. text-transform:none;
  4665. visibility:hidden;
  4666. }
  4667. #u97371_img {
  4668. border-width:0px;
  4669. position:absolute;
  4670. left:0px;
  4671. top:0px;
  4672. width:208px;
  4673. height:35px;
  4674. }
  4675. #u97371 {
  4676. border-width:0px;
  4677. position:absolute;
  4678. left:680px;
  4679. top:360px;
  4680. width:208px;
  4681. height:35px;
  4682. display:flex;
  4683. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4684. font-weight:400;
  4685. font-style:normal;
  4686. font-size:12px;
  4687. color:#606266;
  4688. }
  4689. #u97371 .text {
  4690. position:absolute;
  4691. align-self:center;
  4692. padding:2px 2px 2px 0px;
  4693. box-sizing:border-box;
  4694. width:100%;
  4695. }
  4696. #u97371_text {
  4697. border-width:0px;
  4698. word-wrap:break-word;
  4699. text-transform:none;
  4700. visibility:hidden;
  4701. }
  4702. #u97372_img {
  4703. border-width:0px;
  4704. position:absolute;
  4705. left:0px;
  4706. top:0px;
  4707. width:224px;
  4708. height:35px;
  4709. }
  4710. #u97372 {
  4711. border-width:0px;
  4712. position:absolute;
  4713. left:888px;
  4714. top:360px;
  4715. width:224px;
  4716. height:35px;
  4717. display:flex;
  4718. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4719. font-weight:400;
  4720. font-style:normal;
  4721. font-size:12px;
  4722. color:#606266;
  4723. }
  4724. #u97372 .text {
  4725. position:absolute;
  4726. align-self:center;
  4727. padding:2px 2px 2px 0px;
  4728. box-sizing:border-box;
  4729. width:100%;
  4730. }
  4731. #u97372_text {
  4732. border-width:0px;
  4733. word-wrap:break-word;
  4734. text-transform:none;
  4735. visibility:hidden;
  4736. }
  4737. #u97373_img {
  4738. border-width:0px;
  4739. position:absolute;
  4740. left:0px;
  4741. top:0px;
  4742. width:231px;
  4743. height:35px;
  4744. }
  4745. #u97373 {
  4746. border-width:0px;
  4747. position:absolute;
  4748. left:1112px;
  4749. top:360px;
  4750. width:231px;
  4751. height:35px;
  4752. display:flex;
  4753. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4754. font-weight:400;
  4755. font-style:normal;
  4756. font-size:12px;
  4757. color:#606266;
  4758. }
  4759. #u97373 .text {
  4760. position:absolute;
  4761. align-self:center;
  4762. padding:2px 2px 2px 0px;
  4763. box-sizing:border-box;
  4764. width:100%;
  4765. }
  4766. #u97373_text {
  4767. border-width:0px;
  4768. word-wrap:break-word;
  4769. text-transform:none;
  4770. visibility:hidden;
  4771. }
  4772. #u97374_img {
  4773. border-width:0px;
  4774. position:absolute;
  4775. left:0px;
  4776. top:0px;
  4777. width:208px;
  4778. height:35px;
  4779. }
  4780. #u97374 {
  4781. border-width:0px;
  4782. position:absolute;
  4783. left:0px;
  4784. top:395px;
  4785. width:208px;
  4786. height:35px;
  4787. display:flex;
  4788. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4789. font-weight:400;
  4790. font-style:normal;
  4791. font-size:12px;
  4792. color:#606266;
  4793. }
  4794. #u97374 .text {
  4795. position:absolute;
  4796. align-self:center;
  4797. padding:2px 2px 2px 0px;
  4798. box-sizing:border-box;
  4799. width:100%;
  4800. }
  4801. #u97374_text {
  4802. border-width:0px;
  4803. word-wrap:break-word;
  4804. text-transform:none;
  4805. visibility:hidden;
  4806. }
  4807. #u97375_img {
  4808. border-width:0px;
  4809. position:absolute;
  4810. left:0px;
  4811. top:0px;
  4812. width:236px;
  4813. height:35px;
  4814. }
  4815. #u97375 {
  4816. border-width:0px;
  4817. position:absolute;
  4818. left:208px;
  4819. top:395px;
  4820. width:236px;
  4821. height:35px;
  4822. display:flex;
  4823. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4824. font-weight:400;
  4825. font-style:normal;
  4826. font-size:12px;
  4827. color:#606266;
  4828. }
  4829. #u97375 .text {
  4830. position:absolute;
  4831. align-self:center;
  4832. padding:2px 2px 2px 0px;
  4833. box-sizing:border-box;
  4834. width:100%;
  4835. }
  4836. #u97375_text {
  4837. border-width:0px;
  4838. word-wrap:break-word;
  4839. text-transform:none;
  4840. visibility:hidden;
  4841. }
  4842. #u97376_img {
  4843. border-width:0px;
  4844. position:absolute;
  4845. left:0px;
  4846. top:0px;
  4847. width:236px;
  4848. height:35px;
  4849. }
  4850. #u97376 {
  4851. border-width:0px;
  4852. position:absolute;
  4853. left:444px;
  4854. top:395px;
  4855. width:236px;
  4856. height:35px;
  4857. display:flex;
  4858. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4859. font-weight:400;
  4860. font-style:normal;
  4861. font-size:12px;
  4862. color:#606266;
  4863. }
  4864. #u97376 .text {
  4865. position:absolute;
  4866. align-self:center;
  4867. padding:2px 2px 2px 0px;
  4868. box-sizing:border-box;
  4869. width:100%;
  4870. }
  4871. #u97376_text {
  4872. border-width:0px;
  4873. word-wrap:break-word;
  4874. text-transform:none;
  4875. visibility:hidden;
  4876. }
  4877. #u97377_img {
  4878. border-width:0px;
  4879. position:absolute;
  4880. left:0px;
  4881. top:0px;
  4882. width:208px;
  4883. height:35px;
  4884. }
  4885. #u97377 {
  4886. border-width:0px;
  4887. position:absolute;
  4888. left:680px;
  4889. top:395px;
  4890. width:208px;
  4891. height:35px;
  4892. display:flex;
  4893. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4894. font-weight:400;
  4895. font-style:normal;
  4896. font-size:12px;
  4897. color:#606266;
  4898. }
  4899. #u97377 .text {
  4900. position:absolute;
  4901. align-self:center;
  4902. padding:2px 2px 2px 0px;
  4903. box-sizing:border-box;
  4904. width:100%;
  4905. }
  4906. #u97377_text {
  4907. border-width:0px;
  4908. word-wrap:break-word;
  4909. text-transform:none;
  4910. visibility:hidden;
  4911. }
  4912. #u97378_img {
  4913. border-width:0px;
  4914. position:absolute;
  4915. left:0px;
  4916. top:0px;
  4917. width:224px;
  4918. height:35px;
  4919. }
  4920. #u97378 {
  4921. border-width:0px;
  4922. position:absolute;
  4923. left:888px;
  4924. top:395px;
  4925. width:224px;
  4926. height:35px;
  4927. display:flex;
  4928. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4929. font-weight:400;
  4930. font-style:normal;
  4931. font-size:12px;
  4932. color:#606266;
  4933. }
  4934. #u97378 .text {
  4935. position:absolute;
  4936. align-self:center;
  4937. padding:2px 2px 2px 0px;
  4938. box-sizing:border-box;
  4939. width:100%;
  4940. }
  4941. #u97378_text {
  4942. border-width:0px;
  4943. word-wrap:break-word;
  4944. text-transform:none;
  4945. visibility:hidden;
  4946. }
  4947. #u97379_img {
  4948. border-width:0px;
  4949. position:absolute;
  4950. left:0px;
  4951. top:0px;
  4952. width:231px;
  4953. height:35px;
  4954. }
  4955. #u97379 {
  4956. border-width:0px;
  4957. position:absolute;
  4958. left:1112px;
  4959. top:395px;
  4960. width:231px;
  4961. height:35px;
  4962. display:flex;
  4963. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4964. font-weight:400;
  4965. font-style:normal;
  4966. font-size:12px;
  4967. color:#606266;
  4968. }
  4969. #u97379 .text {
  4970. position:absolute;
  4971. align-self:center;
  4972. padding:2px 2px 2px 0px;
  4973. box-sizing:border-box;
  4974. width:100%;
  4975. }
  4976. #u97379_text {
  4977. border-width:0px;
  4978. word-wrap:break-word;
  4979. text-transform:none;
  4980. visibility:hidden;
  4981. }
  4982. #u97380_img {
  4983. border-width:0px;
  4984. position:absolute;
  4985. left:0px;
  4986. top:0px;
  4987. width:208px;
  4988. height:35px;
  4989. }
  4990. #u97380 {
  4991. border-width:0px;
  4992. position:absolute;
  4993. left:0px;
  4994. top:430px;
  4995. width:208px;
  4996. height:35px;
  4997. display:flex;
  4998. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4999. font-weight:400;
  5000. font-style:normal;
  5001. font-size:12px;
  5002. color:#606266;
  5003. }
  5004. #u97380 .text {
  5005. position:absolute;
  5006. align-self:center;
  5007. padding:2px 2px 2px 0px;
  5008. box-sizing:border-box;
  5009. width:100%;
  5010. }
  5011. #u97380_text {
  5012. border-width:0px;
  5013. word-wrap:break-word;
  5014. text-transform:none;
  5015. visibility:hidden;
  5016. }
  5017. #u97381_img {
  5018. border-width:0px;
  5019. position:absolute;
  5020. left:0px;
  5021. top:0px;
  5022. width:236px;
  5023. height:35px;
  5024. }
  5025. #u97381 {
  5026. border-width:0px;
  5027. position:absolute;
  5028. left:208px;
  5029. top:430px;
  5030. width:236px;
  5031. height:35px;
  5032. display:flex;
  5033. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  5034. font-weight:400;
  5035. font-style:normal;
  5036. font-size:12px;
  5037. color:#606266;
  5038. }
  5039. #u97381 .text {
  5040. position:absolute;
  5041. align-self:center;
  5042. padding:2px 2px 2px 0px;
  5043. box-sizing:border-box;
  5044. width:100%;
  5045. }
  5046. #u97381_text {
  5047. border-width:0px;
  5048. word-wrap:break-word;
  5049. text-transform:none;
  5050. visibility:hidden;
  5051. }
  5052. #u97382_img {
  5053. border-width:0px;
  5054. position:absolute;
  5055. left:0px;
  5056. top:0px;
  5057. width:236px;
  5058. height:35px;
  5059. }
  5060. #u97382 {
  5061. border-width:0px;
  5062. position:absolute;
  5063. left:444px;
  5064. top:430px;
  5065. width:236px;
  5066. height:35px;
  5067. display:flex;
  5068. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  5069. font-weight:400;
  5070. font-style:normal;
  5071. font-size:12px;
  5072. color:#606266;
  5073. }
  5074. #u97382 .text {
  5075. position:absolute;
  5076. align-self:center;
  5077. padding:2px 2px 2px 0px;
  5078. box-sizing:border-box;
  5079. width:100%;
  5080. }
  5081. #u97382_text {
  5082. border-width:0px;
  5083. word-wrap:break-word;
  5084. text-transform:none;
  5085. visibility:hidden;
  5086. }
  5087. #u97383_img {
  5088. border-width:0px;
  5089. position:absolute;
  5090. left:0px;
  5091. top:0px;
  5092. width:208px;
  5093. height:35px;
  5094. }
  5095. #u97383 {
  5096. border-width:0px;
  5097. position:absolute;
  5098. left:680px;
  5099. top:430px;
  5100. width:208px;
  5101. height:35px;
  5102. display:flex;
  5103. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  5104. font-weight:400;
  5105. font-style:normal;
  5106. font-size:12px;
  5107. color:#606266;
  5108. }
  5109. #u97383 .text {
  5110. position:absolute;
  5111. align-self:center;
  5112. padding:2px 2px 2px 0px;
  5113. box-sizing:border-box;
  5114. width:100%;
  5115. }
  5116. #u97383_text {
  5117. border-width:0px;
  5118. word-wrap:break-word;
  5119. text-transform:none;
  5120. visibility:hidden;
  5121. }
  5122. #u97384_img {
  5123. border-width:0px;
  5124. position:absolute;
  5125. left:0px;
  5126. top:0px;
  5127. width:224px;
  5128. height:35px;
  5129. }
  5130. #u97384 {
  5131. border-width:0px;
  5132. position:absolute;
  5133. left:888px;
  5134. top:430px;
  5135. width:224px;
  5136. height:35px;
  5137. display:flex;
  5138. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  5139. font-weight:400;
  5140. font-style:normal;
  5141. font-size:12px;
  5142. color:#606266;
  5143. }
  5144. #u97384 .text {
  5145. position:absolute;
  5146. align-self:center;
  5147. padding:2px 2px 2px 0px;
  5148. box-sizing:border-box;
  5149. width:100%;
  5150. }
  5151. #u97384_text {
  5152. border-width:0px;
  5153. word-wrap:break-word;
  5154. text-transform:none;
  5155. visibility:hidden;
  5156. }
  5157. #u97385_img {
  5158. border-width:0px;
  5159. position:absolute;
  5160. left:0px;
  5161. top:0px;
  5162. width:231px;
  5163. height:35px;
  5164. }
  5165. #u97385 {
  5166. border-width:0px;
  5167. position:absolute;
  5168. left:1112px;
  5169. top:430px;
  5170. width:231px;
  5171. height:35px;
  5172. display:flex;
  5173. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  5174. font-weight:400;
  5175. font-style:normal;
  5176. font-size:12px;
  5177. color:#606266;
  5178. }
  5179. #u97385 .text {
  5180. position:absolute;
  5181. align-self:center;
  5182. padding:2px 2px 2px 0px;
  5183. box-sizing:border-box;
  5184. width:100%;
  5185. }
  5186. #u97385_text {
  5187. border-width:0px;
  5188. word-wrap:break-word;
  5189. text-transform:none;
  5190. visibility:hidden;
  5191. }
  5192. #u97386_div {
  5193. border-width:0px;
  5194. position:absolute;
  5195. left:0px;
  5196. top:0px;
  5197. width:59px;
  5198. height:30px;
  5199. background:inherit;
  5200. background-color:rgba(41, 143, 255, 1);
  5201. border:none;
  5202. border-radius:4px;
  5203. -moz-box-shadow:none;
  5204. -webkit-box-shadow:none;
  5205. box-shadow:none;
  5206. font-family:'Microsoft YaHei', sans-serif;
  5207. font-weight:400;
  5208. font-style:normal;
  5209. font-size:14px;
  5210. color:#FFFFFF;
  5211. }
  5212. #u97386 {
  5213. border-width:0px;
  5214. position:absolute;
  5215. left:809px;
  5216. top:110px;
  5217. width:59px;
  5218. height:30px;
  5219. display:flex;
  5220. font-family:'Microsoft YaHei', sans-serif;
  5221. font-weight:400;
  5222. font-style:normal;
  5223. font-size:14px;
  5224. color:#FFFFFF;
  5225. }
  5226. #u97386 .text {
  5227. position:absolute;
  5228. align-self:center;
  5229. padding:5px 15px 5px 15px;
  5230. box-sizing:border-box;
  5231. width:100%;
  5232. }
  5233. #u97386_text {
  5234. border-width:0px;
  5235. white-space:nowrap;
  5236. text-transform:none;
  5237. }
  5238. #u97387_div {
  5239. border-width:0px;
  5240. position:absolute;
  5241. left:0px;
  5242. top:0px;
  5243. width:55px;
  5244. height:30px;
  5245. background:inherit;
  5246. background-color:rgba(255, 255, 255, 1);
  5247. box-sizing:border-box;
  5248. border-width:1px;
  5249. border-style:solid;
  5250. border-color:rgba(170, 170, 170, 1);
  5251. border-radius:4px;
  5252. -moz-box-shadow:none;
  5253. -webkit-box-shadow:none;
  5254. box-shadow:none;
  5255. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5256. font-weight:400;
  5257. font-style:normal;
  5258. font-size:12px;
  5259. color:#555555;
  5260. }
  5261. #u97387 {
  5262. border-width:0px;
  5263. position:absolute;
  5264. left:878px;
  5265. top:110px;
  5266. width:55px;
  5267. height:30px;
  5268. display:flex;
  5269. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5270. font-weight:400;
  5271. font-style:normal;
  5272. font-size:12px;
  5273. color:#555555;
  5274. }
  5275. #u97387 .text {
  5276. position:absolute;
  5277. align-self:center;
  5278. padding:5px 15px 5px 15px;
  5279. box-sizing:border-box;
  5280. width:100%;
  5281. }
  5282. #u97387_text {
  5283. border-width:0px;
  5284. white-space:nowrap;
  5285. text-transform:none;
  5286. }
  5287. #u97388 {
  5288. border-width:0px;
  5289. position:absolute;
  5290. left:0px;
  5291. top:0px;
  5292. width:0px;
  5293. height:0px;
  5294. }
  5295. #u97389_div {
  5296. border-width:0px;
  5297. position:absolute;
  5298. left:0px;
  5299. top:0px;
  5300. width:140px;
  5301. height:30px;
  5302. background:inherit;
  5303. background-color:rgba(255, 255, 255, 1);
  5304. box-sizing:border-box;
  5305. border-width:1px;
  5306. border-style:solid;
  5307. border-color:rgba(215, 215, 215, 1);
  5308. border-radius:4px;
  5309. -moz-box-shadow:none;
  5310. -webkit-box-shadow:none;
  5311. box-shadow:none;
  5312. font-size:11px;
  5313. }
  5314. #u97389 {
  5315. border-width:0px;
  5316. position:absolute;
  5317. left:649px;
  5318. top:110px;
  5319. width:140px;
  5320. height:30px;
  5321. display:flex;
  5322. font-size:11px;
  5323. }
  5324. #u97389 .text {
  5325. position:absolute;
  5326. align-self:center;
  5327. padding:2px 2px 2px 2px;
  5328. box-sizing:border-box;
  5329. width:100%;
  5330. }
  5331. #u97389_text {
  5332. border-width:0px;
  5333. word-wrap:break-word;
  5334. text-transform:none;
  5335. visibility:hidden;
  5336. }
  5337. #u97390_input {
  5338. position:absolute;
  5339. left:0px;
  5340. top:0px;
  5341. width:120px;
  5342. height:23px;
  5343. padding:2px 2px 2px 2px;
  5344. font-family:'ArialMT', 'Arial', sans-serif;
  5345. font-weight:400;
  5346. font-style:normal;
  5347. font-size:11px;
  5348. letter-spacing:normal;
  5349. color:#AAAAAA;
  5350. vertical-align:none;
  5351. text-align:left;
  5352. text-transform:none;
  5353. background-color:transparent;
  5354. border-color:transparent;
  5355. }
  5356. #u97390_input.disabled {
  5357. position:absolute;
  5358. left:0px;
  5359. top:0px;
  5360. width:120px;
  5361. height:23px;
  5362. padding:2px 2px 2px 2px;
  5363. font-family:'ArialMT', 'Arial', sans-serif;
  5364. font-weight:400;
  5365. font-style:normal;
  5366. font-size:11px;
  5367. letter-spacing:normal;
  5368. color:#AAAAAA;
  5369. vertical-align:none;
  5370. text-align:left;
  5371. text-transform:none;
  5372. background-color:transparent;
  5373. border-color:transparent;
  5374. }
  5375. #u97390_div {
  5376. border-width:0px;
  5377. position:absolute;
  5378. left:0px;
  5379. top:0px;
  5380. width:120px;
  5381. height:23px;
  5382. background:inherit;
  5383. background-color:rgba(255, 255, 255, 1);
  5384. border:none;
  5385. border-radius:0px;
  5386. -moz-box-shadow:none;
  5387. -webkit-box-shadow:none;
  5388. box-shadow:none;
  5389. font-size:11px;
  5390. color:#AAAAAA;
  5391. }
  5392. #u97390 {
  5393. border-width:0px;
  5394. position:absolute;
  5395. left:656px;
  5396. top:112px;
  5397. width:120px;
  5398. height:23px;
  5399. display:flex;
  5400. font-size:11px;
  5401. color:#AAAAAA;
  5402. }
  5403. #u97390 .text {
  5404. position:absolute;
  5405. align-self:flex-start;
  5406. padding:2px 2px 2px 2px;
  5407. box-sizing:border-box;
  5408. width:100%;
  5409. }
  5410. #u97390_div.disabled {
  5411. border-width:0px;
  5412. position:absolute;
  5413. left:0px;
  5414. top:0px;
  5415. width:120px;
  5416. height:23px;
  5417. background:inherit;
  5418. background-color:rgba(240, 240, 240, 1);
  5419. border:none;
  5420. border-radius:0px;
  5421. -moz-box-shadow:none;
  5422. -webkit-box-shadow:none;
  5423. box-shadow:none;
  5424. font-size:11px;
  5425. color:#AAAAAA;
  5426. }
  5427. #u97390.disabled {
  5428. }
  5429. .u97390_input_option {
  5430. font-size:11px;
  5431. }
  5432. #u97391_div {
  5433. border-width:0px;
  5434. position:absolute;
  5435. left:0px;
  5436. top:0px;
  5437. width:109px;
  5438. height:50px;
  5439. background:inherit;
  5440. background-color:rgba(255, 255, 255, 0);
  5441. border:none;
  5442. border-left:0px;
  5443. border-top:0px;
  5444. border-right:0px;
  5445. border-radius:0px;
  5446. border-bottom-right-radius:0px;
  5447. border-bottom-left-radius:0px;
  5448. -moz-box-shadow:none;
  5449. -webkit-box-shadow:none;
  5450. box-shadow:none;
  5451. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5452. font-weight:400;
  5453. font-style:normal;
  5454. font-size:18px;
  5455. }
  5456. #u97391 {
  5457. border-width:0px;
  5458. position:absolute;
  5459. left:349px;
  5460. top:50px;
  5461. width:109px;
  5462. height:50px;
  5463. display:flex;
  5464. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5465. font-weight:400;
  5466. font-style:normal;
  5467. font-size:18px;
  5468. }
  5469. #u97391 .text {
  5470. position:absolute;
  5471. align-self:center;
  5472. padding:0px 0px 0px 0px;
  5473. box-sizing:border-box;
  5474. width:100%;
  5475. }
  5476. #u97391_text {
  5477. border-width:0px;
  5478. white-space:nowrap;
  5479. text-transform:none;
  5480. }
  5481. #u97392 {
  5482. border-width:0px;
  5483. position:absolute;
  5484. left:0px;
  5485. top:0px;
  5486. width:0px;
  5487. height:0px;
  5488. }
  5489. #u97393_div {
  5490. border-width:0px;
  5491. position:absolute;
  5492. left:0px;
  5493. top:0px;
  5494. width:140px;
  5495. height:30px;
  5496. background:inherit;
  5497. background-color:rgba(255, 255, 255, 1);
  5498. box-sizing:border-box;
  5499. border-width:1px;
  5500. border-style:solid;
  5501. border-color:rgba(201, 201, 201, 1);
  5502. border-radius:4px;
  5503. -moz-box-shadow:none;
  5504. -webkit-box-shadow:none;
  5505. box-shadow:none;
  5506. font-family:'Microsoft YaHei', sans-serif;
  5507. font-weight:400;
  5508. font-style:normal;
  5509. font-size:14px;
  5510. color:#CCCCCC;
  5511. text-align:left;
  5512. }
  5513. #u97393 {
  5514. border-width:0px;
  5515. position:absolute;
  5516. left:349px;
  5517. top:110px;
  5518. width:140px;
  5519. height:30px;
  5520. display:flex;
  5521. font-family:'Microsoft YaHei', sans-serif;
  5522. font-weight:400;
  5523. font-style:normal;
  5524. font-size:14px;
  5525. color:#CCCCCC;
  5526. text-align:left;
  5527. }
  5528. #u97393 .text {
  5529. position:absolute;
  5530. align-self:center;
  5531. padding:2px 8px 2px 8px;
  5532. box-sizing:border-box;
  5533. width:100%;
  5534. }
  5535. #u97393_text {
  5536. border-width:0px;
  5537. word-wrap:break-word;
  5538. text-transform:none;
  5539. visibility:hidden;
  5540. }
  5541. #u97394_input {
  5542. position:absolute;
  5543. left:0px;
  5544. top:0px;
  5545. width:127px;
  5546. height:25px;
  5547. padding:2px 2px 2px 2px;
  5548. font-family:'Microsoft YaHei', sans-serif;
  5549. font-weight:400;
  5550. font-style:normal;
  5551. font-size:10px;
  5552. letter-spacing:normal;
  5553. color:#000000;
  5554. vertical-align:none;
  5555. text-align:left;
  5556. text-transform:none;
  5557. background-color:transparent;
  5558. border-color:transparent;
  5559. }
  5560. #u97394_input.disabled {
  5561. position:absolute;
  5562. left:0px;
  5563. top:0px;
  5564. width:127px;
  5565. height:25px;
  5566. padding:2px 2px 2px 2px;
  5567. font-family:'Microsoft YaHei', sans-serif;
  5568. font-weight:400;
  5569. font-style:normal;
  5570. font-size:10px;
  5571. letter-spacing:normal;
  5572. color:#000000;
  5573. vertical-align:none;
  5574. text-align:left;
  5575. text-transform:none;
  5576. background-color:transparent;
  5577. border-color:transparent;
  5578. }
  5579. #u97394_div {
  5580. border-width:0px;
  5581. position:absolute;
  5582. left:0px;
  5583. top:0px;
  5584. width:127px;
  5585. height:25px;
  5586. background:inherit;
  5587. background-color:rgba(255, 255, 255, 1);
  5588. border:none;
  5589. border-radius:0px;
  5590. -moz-box-shadow:none;
  5591. -webkit-box-shadow:none;
  5592. box-shadow:none;
  5593. font-family:'Microsoft YaHei', sans-serif;
  5594. font-weight:400;
  5595. font-style:normal;
  5596. font-size:10px;
  5597. }
  5598. #u97394 {
  5599. border-width:0px;
  5600. position:absolute;
  5601. left:357px;
  5602. top:111px;
  5603. width:127px;
  5604. height:25px;
  5605. display:flex;
  5606. font-family:'Microsoft YaHei', sans-serif;
  5607. font-weight:400;
  5608. font-style:normal;
  5609. font-size:10px;
  5610. }
  5611. #u97394 .text {
  5612. position:absolute;
  5613. align-self:center;
  5614. padding:2px 2px 2px 2px;
  5615. box-sizing:border-box;
  5616. width:100%;
  5617. }
  5618. #u97394_div.disabled {
  5619. border-width:0px;
  5620. position:absolute;
  5621. left:0px;
  5622. top:0px;
  5623. width:127px;
  5624. height:25px;
  5625. background:inherit;
  5626. background-color:rgba(240, 240, 240, 1);
  5627. border:none;
  5628. border-radius:0px;
  5629. -moz-box-shadow:none;
  5630. -webkit-box-shadow:none;
  5631. box-shadow:none;
  5632. font-family:'Microsoft YaHei', sans-serif;
  5633. font-weight:400;
  5634. font-style:normal;
  5635. font-size:10px;
  5636. }
  5637. #u97394.disabled {
  5638. }
  5639. #u97395 {
  5640. border-width:0px;
  5641. position:absolute;
  5642. left:0px;
  5643. top:0px;
  5644. width:0px;
  5645. height:0px;
  5646. }
  5647. #u97396_div {
  5648. border-width:0px;
  5649. position:absolute;
  5650. left:0px;
  5651. top:0px;
  5652. width:100px;
  5653. height:100px;
  5654. background:inherit;
  5655. background-color:rgba(255, 255, 255, 1);
  5656. border:none;
  5657. border-radius:4px;
  5658. -moz-box-shadow:0px 0px 3px rgba(127, 127, 127, 0.349019607843137);
  5659. -webkit-box-shadow:0px 0px 3px rgba(127, 127, 127, 0.349019607843137);
  5660. box-shadow:0px 0px 3px rgba(127, 127, 127, 0.349019607843137);
  5661. }
  5662. #u97396 {
  5663. border-width:0px;
  5664. position:absolute;
  5665. left:1487px;
  5666. top:275px;
  5667. width:100px;
  5668. height:100px;
  5669. display:flex;
  5670. }
  5671. #u97396 .text {
  5672. position:absolute;
  5673. align-self:center;
  5674. padding:2px 2px 2px 2px;
  5675. box-sizing:border-box;
  5676. width:100%;
  5677. }
  5678. #u97396_text {
  5679. border-width:0px;
  5680. word-wrap:break-word;
  5681. text-transform:none;
  5682. visibility:hidden;
  5683. }
  5684. #u97397_div {
  5685. border-width:0px;
  5686. position:absolute;
  5687. left:0px;
  5688. top:0px;
  5689. width:83px;
  5690. height:40px;
  5691. background:inherit;
  5692. background-color:rgba(255, 255, 255, 1);
  5693. box-sizing:border-box;
  5694. border-width:1px;
  5695. border-style:solid;
  5696. border-color:rgba(242, 242, 242, 1);
  5697. border-left:0px;
  5698. border-top:0px;
  5699. border-right:0px;
  5700. border-radius:4px;
  5701. border-bottom-right-radius:0px;
  5702. border-bottom-left-radius:0px;
  5703. -moz-box-shadow:none;
  5704. -webkit-box-shadow:none;
  5705. box-shadow:none;
  5706. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5707. font-weight:400;
  5708. font-style:normal;
  5709. font-size:14px;
  5710. }
  5711. #u97397 {
  5712. border-width:0px;
  5713. position:absolute;
  5714. left:1495px;
  5715. top:286px;
  5716. width:83px;
  5717. height:40px;
  5718. display:flex;
  5719. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5720. font-weight:400;
  5721. font-style:normal;
  5722. font-size:14px;
  5723. }
  5724. #u97397 .text {
  5725. position:absolute;
  5726. align-self:center;
  5727. padding:5px 0px 5px 0px;
  5728. box-sizing:border-box;
  5729. width:100%;
  5730. }
  5731. #u97397_text {
  5732. border-width:0px;
  5733. word-wrap:break-word;
  5734. text-transform:none;
  5735. }
  5736. #u97398_div {
  5737. border-width:0px;
  5738. position:absolute;
  5739. left:0px;
  5740. top:0px;
  5741. width:83px;
  5742. height:40px;
  5743. background:inherit;
  5744. background-color:rgba(255, 255, 255, 1);
  5745. border:none;
  5746. border-left:0px;
  5747. border-top:0px;
  5748. border-right:0px;
  5749. border-radius:4px;
  5750. border-bottom-right-radius:0px;
  5751. border-bottom-left-radius:0px;
  5752. -moz-box-shadow:none;
  5753. -webkit-box-shadow:none;
  5754. box-shadow:none;
  5755. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5756. font-weight:400;
  5757. font-style:normal;
  5758. font-size:14px;
  5759. }
  5760. #u97398 {
  5761. border-width:0px;
  5762. position:absolute;
  5763. left:1495px;
  5764. top:326px;
  5765. width:83px;
  5766. height:40px;
  5767. display:flex;
  5768. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5769. font-weight:400;
  5770. font-style:normal;
  5771. font-size:14px;
  5772. }
  5773. #u97398 .text {
  5774. position:absolute;
  5775. align-self:center;
  5776. padding:5px 0px 5px 0px;
  5777. box-sizing:border-box;
  5778. width:100%;
  5779. }
  5780. #u97398_text {
  5781. border-width:0px;
  5782. word-wrap:break-word;
  5783. text-transform:none;
  5784. }
  5785. #u97399_img {
  5786. border-width:0px;
  5787. position:absolute;
  5788. left:0px;
  5789. top:0px;
  5790. width:11px;
  5791. height:11px;
  5792. }
  5793. #u97399 {
  5794. border-width:0px;
  5795. position:absolute;
  5796. left:758px;
  5797. top:152px;
  5798. width:11px;
  5799. height:11px;
  5800. display:flex;
  5801. color:#FFFFFF;
  5802. }
  5803. #u97399 .text {
  5804. position:absolute;
  5805. align-self:center;
  5806. padding:2px 2px 2px 2px;
  5807. box-sizing:border-box;
  5808. width:100%;
  5809. }
  5810. #u97399_text {
  5811. border-width:0px;
  5812. word-wrap:break-word;
  5813. text-transform:none;
  5814. visibility:hidden;
  5815. }
  5816. #u97400_div {
  5817. border-width:0px;
  5818. position:absolute;
  5819. left:0px;
  5820. top:0px;
  5821. width:79px;
  5822. height:30px;
  5823. background:inherit;
  5824. background-color:rgba(25, 140, 251, 1);
  5825. border:none;
  5826. border-radius:4px;
  5827. -moz-box-shadow:none;
  5828. -webkit-box-shadow:none;
  5829. box-shadow:none;
  5830. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5831. font-weight:400;
  5832. font-style:normal;
  5833. font-size:12px;
  5834. color:#FFFFFF;
  5835. }
  5836. #u97400 {
  5837. border-width:0px;
  5838. position:absolute;
  5839. left:349px;
  5840. top:160px;
  5841. width:79px;
  5842. height:30px;
  5843. display:flex;
  5844. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5845. font-weight:400;
  5846. font-style:normal;
  5847. font-size:12px;
  5848. color:#FFFFFF;
  5849. }
  5850. #u97400 .text {
  5851. position:absolute;
  5852. align-self:center;
  5853. padding:5px 15px 5px 15px;
  5854. box-sizing:border-box;
  5855. width:100%;
  5856. }
  5857. #u97400_text {
  5858. border-width:0px;
  5859. white-space:nowrap;
  5860. text-transform:none;
  5861. }
  5862. #u97401 {
  5863. border-width:0px;
  5864. position:absolute;
  5865. left:0px;
  5866. top:0px;
  5867. width:0px;
  5868. height:0px;
  5869. }
  5870. #u97402_div {
  5871. border-width:0px;
  5872. position:absolute;
  5873. left:0px;
  5874. top:0px;
  5875. width:140px;
  5876. height:30px;
  5877. background:inherit;
  5878. background-color:rgba(255, 255, 255, 1);
  5879. box-sizing:border-box;
  5880. border-width:1px;
  5881. border-style:solid;
  5882. border-color:rgba(201, 201, 201, 1);
  5883. border-radius:4px;
  5884. -moz-box-shadow:none;
  5885. -webkit-box-shadow:none;
  5886. box-shadow:none;
  5887. font-family:'Microsoft YaHei', sans-serif;
  5888. font-weight:400;
  5889. font-style:normal;
  5890. font-size:14px;
  5891. color:#CCCCCC;
  5892. text-align:left;
  5893. }
  5894. #u97402 {
  5895. border-width:0px;
  5896. position:absolute;
  5897. left:499px;
  5898. top:110px;
  5899. width:140px;
  5900. height:30px;
  5901. display:flex;
  5902. font-family:'Microsoft YaHei', sans-serif;
  5903. font-weight:400;
  5904. font-style:normal;
  5905. font-size:14px;
  5906. color:#CCCCCC;
  5907. text-align:left;
  5908. }
  5909. #u97402 .text {
  5910. position:absolute;
  5911. align-self:center;
  5912. padding:2px 8px 2px 8px;
  5913. box-sizing:border-box;
  5914. width:100%;
  5915. }
  5916. #u97402_text {
  5917. border-width:0px;
  5918. word-wrap:break-word;
  5919. text-transform:none;
  5920. visibility:hidden;
  5921. }
  5922. #u97403_input {
  5923. position:absolute;
  5924. left:0px;
  5925. top:0px;
  5926. width:127px;
  5927. height:25px;
  5928. padding:2px 2px 2px 2px;
  5929. font-family:'Microsoft YaHei', sans-serif;
  5930. font-weight:400;
  5931. font-style:normal;
  5932. font-size:10px;
  5933. letter-spacing:normal;
  5934. color:#000000;
  5935. vertical-align:none;
  5936. text-align:left;
  5937. text-transform:none;
  5938. background-color:transparent;
  5939. border-color:transparent;
  5940. }
  5941. #u97403_input.disabled {
  5942. position:absolute;
  5943. left:0px;
  5944. top:0px;
  5945. width:127px;
  5946. height:25px;
  5947. padding:2px 2px 2px 2px;
  5948. font-family:'Microsoft YaHei', sans-serif;
  5949. font-weight:400;
  5950. font-style:normal;
  5951. font-size:10px;
  5952. letter-spacing:normal;
  5953. color:#000000;
  5954. vertical-align:none;
  5955. text-align:left;
  5956. text-transform:none;
  5957. background-color:transparent;
  5958. border-color:transparent;
  5959. }
  5960. #u97403_div {
  5961. border-width:0px;
  5962. position:absolute;
  5963. left:0px;
  5964. top:0px;
  5965. width:127px;
  5966. height:25px;
  5967. background:inherit;
  5968. background-color:rgba(255, 255, 255, 1);
  5969. border:none;
  5970. border-radius:0px;
  5971. -moz-box-shadow:none;
  5972. -webkit-box-shadow:none;
  5973. box-shadow:none;
  5974. font-family:'Microsoft YaHei', sans-serif;
  5975. font-weight:400;
  5976. font-style:normal;
  5977. font-size:10px;
  5978. }
  5979. #u97403 {
  5980. border-width:0px;
  5981. position:absolute;
  5982. left:507px;
  5983. top:111px;
  5984. width:127px;
  5985. height:25px;
  5986. display:flex;
  5987. font-family:'Microsoft YaHei', sans-serif;
  5988. font-weight:400;
  5989. font-style:normal;
  5990. font-size:10px;
  5991. }
  5992. #u97403 .text {
  5993. position:absolute;
  5994. align-self:center;
  5995. padding:2px 2px 2px 2px;
  5996. box-sizing:border-box;
  5997. width:100%;
  5998. }
  5999. #u97403_div.disabled {
  6000. border-width:0px;
  6001. position:absolute;
  6002. left:0px;
  6003. top:0px;
  6004. width:127px;
  6005. height:25px;
  6006. background:inherit;
  6007. background-color:rgba(240, 240, 240, 1);
  6008. border:none;
  6009. border-radius:0px;
  6010. -moz-box-shadow:none;
  6011. -webkit-box-shadow:none;
  6012. box-shadow:none;
  6013. font-family:'Microsoft YaHei', sans-serif;
  6014. font-weight:400;
  6015. font-style:normal;
  6016. font-size:10px;
  6017. }
  6018. #u97403.disabled {
  6019. }
  6020. #u97404_div {
  6021. border-width:0px;
  6022. position:absolute;
  6023. left:0px;
  6024. top:0px;
  6025. width:55px;
  6026. height:30px;
  6027. background:inherit;
  6028. background-color:rgba(255, 255, 255, 1);
  6029. box-sizing:border-box;
  6030. border-width:1px;
  6031. border-style:solid;
  6032. border-color:rgba(170, 170, 170, 1);
  6033. border-radius:4px;
  6034. -moz-box-shadow:none;
  6035. -webkit-box-shadow:none;
  6036. box-shadow:none;
  6037. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6038. font-weight:400;
  6039. font-style:normal;
  6040. font-size:12px;
  6041. color:#555555;
  6042. }
  6043. #u97404 {
  6044. border-width:0px;
  6045. position:absolute;
  6046. left:438px;
  6047. top:160px;
  6048. width:55px;
  6049. height:30px;
  6050. display:flex;
  6051. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6052. font-weight:400;
  6053. font-style:normal;
  6054. font-size:12px;
  6055. color:#555555;
  6056. }
  6057. #u97404 .text {
  6058. position:absolute;
  6059. align-self:center;
  6060. padding:5px 15px 5px 15px;
  6061. box-sizing:border-box;
  6062. width:100%;
  6063. }
  6064. #u97404_text {
  6065. border-width:0px;
  6066. white-space:nowrap;
  6067. text-transform:none;
  6068. }