styles.css 102 KB

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