styles.css 104 KB

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