styles.css 91 KB

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