styles.css 88 KB

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