styles.css 100 KB

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