styles.css 103 KB

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