styles.css 80 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395439643974398439944004401440244034404440544064407440844094410441144124413441444154416441744184419442044214422442344244425442644274428442944304431443244334434443544364437443844394440444144424443444444454446444744484449445044514452445344544455445644574458445944604461446244634464446544664467446844694470447144724473447444754476447744784479448044814482448344844485448644874488448944904491449244934494449544964497449844994500450145024503450445054506450745084509451045114512451345144515451645174518451945204521452245234524452545264527452845294530453145324533453445354536453745384539454045414542454345444545454645474548454945504551455245534554455545564557455845594560456145624563456445654566456745684569457045714572457345744575457645774578457945804581458245834584458545864587458845894590459145924593459445954596459745984599460046014602460346044605460646074608460946104611461246134614461546164617461846194620462146224623462446254626462746284629463046314632463346344635463646374638
  1. body {
  2. margin:0px;
  3. background-image:none;
  4. position:relative;
  5. left:0px;
  6. width:1600px;
  7. margin-left:auto;
  8. margin-right:auto;
  9. text-align:left;
  10. }
  11. .form_sketch {
  12. border-color:transparent;
  13. background-color:transparent;
  14. }
  15. #base {
  16. position:absolute;
  17. z-index:0;
  18. }
  19. #u42166_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. #u42166 {
  35. border-width:0px;
  36. position:absolute;
  37. left:120px;
  38. top:50px;
  39. width:1480px;
  40. height:1200px;
  41. display:flex;
  42. }
  43. #u42166 .text {
  44. position:absolute;
  45. align-self:center;
  46. padding:2px 2px 2px 2px;
  47. box-sizing:border-box;
  48. width:100%;
  49. }
  50. #u42166_text {
  51. border-width:0px;
  52. word-wrap:break-word;
  53. text-transform:none;
  54. visibility:hidden;
  55. }
  56. #u42167_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. #u42167 {
  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. #u42167 .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. #u42167_text {
  92. border-width:0px;
  93. white-space:nowrap;
  94. text-transform:none;
  95. }
  96. #u42168_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. #u42168 {
  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. #u42168 .text {
  123. position:absolute;
  124. align-self:center;
  125. padding:2px 2px 2px 2px;
  126. box-sizing:border-box;
  127. width:100%;
  128. }
  129. #u42168_text {
  130. border-width:0px;
  131. word-wrap:break-word;
  132. text-transform:none;
  133. visibility:hidden;
  134. }
  135. #u42169 {
  136. border-width:0px;
  137. position:absolute;
  138. left:0px;
  139. top:0px;
  140. width:0px;
  141. height:0px;
  142. }
  143. #u42170_img {
  144. border-width:0px;
  145. position:absolute;
  146. left:0px;
  147. top:0px;
  148. width:31px;
  149. height:31px;
  150. }
  151. #u42170 {
  152. border-width:0px;
  153. position:absolute;
  154. left:19px;
  155. top:10px;
  156. width:31px;
  157. height:31px;
  158. display:flex;
  159. }
  160. #u42170 .text {
  161. position:absolute;
  162. align-self:center;
  163. padding:2px 2px 2px 2px;
  164. box-sizing:border-box;
  165. width:100%;
  166. }
  167. #u42170_text {
  168. border-width:0px;
  169. word-wrap:break-word;
  170. text-transform:none;
  171. }
  172. #u42171_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. #u42171 {
  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. #u42171 .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. #u42171_text {
  214. border-width:0px;
  215. white-space:nowrap;
  216. text-transform:none;
  217. }
  218. #u42172_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. #u42172 {
  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. #u42172 .text {
  245. position:absolute;
  246. align-self:center;
  247. padding:2px 2px 2px 2px;
  248. box-sizing:border-box;
  249. width:100%;
  250. }
  251. #u42172_text {
  252. border-width:0px;
  253. word-wrap:break-word;
  254. text-transform:none;
  255. visibility:hidden;
  256. }
  257. #u42173 {
  258. border-width:0px;
  259. position:absolute;
  260. left:0px;
  261. top:0px;
  262. width:0px;
  263. height:0px;
  264. }
  265. #u42174_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. #u42174 {
  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. #u42174 .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. #u42174_text {
  307. border-width:0px;
  308. white-space:nowrap;
  309. text-transform:none;
  310. }
  311. #u42175_img {
  312. border-width:0px;
  313. position:absolute;
  314. left:0px;
  315. top:0px;
  316. width:14px;
  317. height:14px;
  318. }
  319. #u42175 {
  320. border-width:0px;
  321. position:absolute;
  322. left:20px;
  323. top:75px;
  324. width:14px;
  325. height:14px;
  326. display:flex;
  327. }
  328. #u42175 .text {
  329. position:absolute;
  330. align-self:center;
  331. padding:2px 2px 2px 2px;
  332. box-sizing:border-box;
  333. width:100%;
  334. }
  335. #u42175_text {
  336. border-width:0px;
  337. word-wrap:break-word;
  338. text-transform:none;
  339. visibility:hidden;
  340. }
  341. #u42176 {
  342. border-width:0px;
  343. position:absolute;
  344. left:0px;
  345. top:0px;
  346. width:0px;
  347. height:0px;
  348. }
  349. #u42177_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. #u42177 {
  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. #u42177 .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. #u42177_text {
  391. border-width:0px;
  392. white-space:nowrap;
  393. text-transform:none;
  394. }
  395. #u42178_img {
  396. border-width:0px;
  397. position:absolute;
  398. left:0px;
  399. top:0px;
  400. width:14px;
  401. height:14px;
  402. }
  403. #u42178 {
  404. border-width:0px;
  405. position:absolute;
  406. left:20px;
  407. top:151px;
  408. width:14px;
  409. height:14px;
  410. display:flex;
  411. }
  412. #u42178 .text {
  413. position:absolute;
  414. align-self:center;
  415. padding:2px 2px 2px 2px;
  416. box-sizing:border-box;
  417. width:100%;
  418. }
  419. #u42178_text {
  420. border-width:0px;
  421. word-wrap:break-word;
  422. text-transform:none;
  423. visibility:hidden;
  424. }
  425. #u42179 {
  426. border-width:0px;
  427. position:absolute;
  428. left:0px;
  429. top:0px;
  430. width:0px;
  431. height:0px;
  432. }
  433. #u42180_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. #u42180 {
  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. #u42180 .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. #u42180_text {
  475. border-width:0px;
  476. white-space:nowrap;
  477. text-transform:none;
  478. }
  479. #u42181_img {
  480. border-width:0px;
  481. position:absolute;
  482. left:0px;
  483. top:0px;
  484. width:14px;
  485. height:14px;
  486. }
  487. #u42181 {
  488. border-width:0px;
  489. position:absolute;
  490. left:20px;
  491. top:403px;
  492. width:14px;
  493. height:14px;
  494. display:flex;
  495. }
  496. #u42181 .text {
  497. position:absolute;
  498. align-self:center;
  499. padding:2px 2px 2px 2px;
  500. box-sizing:border-box;
  501. width:100%;
  502. }
  503. #u42181_text {
  504. border-width:0px;
  505. word-wrap:break-word;
  506. text-transform:none;
  507. visibility:hidden;
  508. }
  509. #u42182 {
  510. border-width:0px;
  511. position:absolute;
  512. left:0px;
  513. top:0px;
  514. width:0px;
  515. height:0px;
  516. }
  517. #u42183_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. #u42183 {
  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. #u42183 .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. #u42183_text {
  559. border-width:0px;
  560. white-space:nowrap;
  561. text-transform:none;
  562. }
  563. #u42184_img {
  564. border-width:0px;
  565. position:absolute;
  566. left:0px;
  567. top:0px;
  568. width:14px;
  569. height:14px;
  570. }
  571. #u42184 {
  572. border-width:0px;
  573. position:absolute;
  574. left:20px;
  575. top:113px;
  576. width:14px;
  577. height:14px;
  578. display:flex;
  579. }
  580. #u42184 .text {
  581. position:absolute;
  582. align-self:center;
  583. padding:2px 2px 2px 2px;
  584. box-sizing:border-box;
  585. width:100%;
  586. }
  587. #u42184_text {
  588. border-width:0px;
  589. word-wrap:break-word;
  590. text-transform:none;
  591. visibility:hidden;
  592. }
  593. #u42185 {
  594. border-width:0px;
  595. position:absolute;
  596. left:0px;
  597. top:0px;
  598. width:0px;
  599. height:0px;
  600. }
  601. #u42186_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. #u42186 {
  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. #u42186 .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. #u42186_text {
  643. border-width:0px;
  644. white-space:nowrap;
  645. text-transform:none;
  646. }
  647. #u42187_img {
  648. border-width:0px;
  649. position:absolute;
  650. left:0px;
  651. top:0px;
  652. width:14px;
  653. height:14px;
  654. }
  655. #u42187 {
  656. border-width:0px;
  657. position:absolute;
  658. left:20px;
  659. top:445px;
  660. width:14px;
  661. height:14px;
  662. display:flex;
  663. }
  664. #u42187 .text {
  665. position:absolute;
  666. align-self:center;
  667. padding:2px 2px 2px 2px;
  668. box-sizing:border-box;
  669. width:100%;
  670. }
  671. #u42187_text {
  672. border-width:0px;
  673. word-wrap:break-word;
  674. text-transform:none;
  675. visibility:hidden;
  676. }
  677. #u42188 {
  678. border-width:0px;
  679. position:absolute;
  680. left:0px;
  681. top:0px;
  682. width:0px;
  683. height:0px;
  684. }
  685. #u42189_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. #u42189 {
  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. #u42189 .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. #u42189_text {
  727. border-width:0px;
  728. white-space:nowrap;
  729. text-transform:none;
  730. }
  731. #u42190_img {
  732. border-width:0px;
  733. position:absolute;
  734. left:0px;
  735. top:0px;
  736. width:14px;
  737. height:14px;
  738. }
  739. #u42190 {
  740. border-width:0px;
  741. position:absolute;
  742. left:20px;
  743. top:319px;
  744. width:14px;
  745. height:14px;
  746. display:flex;
  747. }
  748. #u42190 .text {
  749. position:absolute;
  750. align-self:center;
  751. padding:2px 2px 2px 2px;
  752. box-sizing:border-box;
  753. width:100%;
  754. }
  755. #u42190_text {
  756. border-width:0px;
  757. word-wrap:break-word;
  758. text-transform:none;
  759. visibility:hidden;
  760. }
  761. #u42191 {
  762. border-width:0px;
  763. position:absolute;
  764. left:0px;
  765. top:0px;
  766. width:0px;
  767. height:0px;
  768. }
  769. #u42192_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. #u42192 {
  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. #u42192 .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. #u42192_text {
  811. border-width:0px;
  812. white-space:nowrap;
  813. text-transform:none;
  814. }
  815. #u42193_img {
  816. border-width:0px;
  817. position:absolute;
  818. left:0px;
  819. top:0px;
  820. width:14px;
  821. height:14px;
  822. }
  823. #u42193 {
  824. border-width:0px;
  825. position:absolute;
  826. left:20px;
  827. top:193px;
  828. width:14px;
  829. height:14px;
  830. display:flex;
  831. }
  832. #u42193 .text {
  833. position:absolute;
  834. align-self:center;
  835. padding:2px 2px 2px 2px;
  836. box-sizing:border-box;
  837. width:100%;
  838. }
  839. #u42193_text {
  840. border-width:0px;
  841. word-wrap:break-word;
  842. text-transform:none;
  843. visibility:hidden;
  844. }
  845. #u42194 {
  846. border-width:0px;
  847. position:absolute;
  848. left:0px;
  849. top:0px;
  850. width:0px;
  851. height:0px;
  852. }
  853. #u42195_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. #u42195 {
  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. #u42195 .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. #u42195_text {
  895. border-width:0px;
  896. white-space:nowrap;
  897. text-transform:none;
  898. }
  899. #u42196_img {
  900. border-width:0px;
  901. position:absolute;
  902. left:0px;
  903. top:0px;
  904. width:14px;
  905. height:14px;
  906. }
  907. #u42196 {
  908. border-width:0px;
  909. position:absolute;
  910. left:20px;
  911. top:361px;
  912. width:14px;
  913. height:14px;
  914. display:flex;
  915. }
  916. #u42196 .text {
  917. position:absolute;
  918. align-self:center;
  919. padding:2px 2px 2px 2px;
  920. box-sizing:border-box;
  921. width:100%;
  922. }
  923. #u42196_text {
  924. border-width:0px;
  925. word-wrap:break-word;
  926. text-transform:none;
  927. visibility:hidden;
  928. }
  929. #u42197 {
  930. border-width:0px;
  931. position:absolute;
  932. left:0px;
  933. top:0px;
  934. width:0px;
  935. height:0px;
  936. }
  937. #u42198_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. #u42198 {
  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. #u42198 .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. #u42198_text {
  979. border-width:0px;
  980. white-space:nowrap;
  981. text-transform:none;
  982. }
  983. #u42199_img {
  984. border-width:0px;
  985. position:absolute;
  986. left:0px;
  987. top:0px;
  988. width:14px;
  989. height:14px;
  990. }
  991. #u42199 {
  992. border-width:0px;
  993. position:absolute;
  994. left:20px;
  995. top:487px;
  996. width:14px;
  997. height:14px;
  998. display:flex;
  999. }
  1000. #u42199 .text {
  1001. position:absolute;
  1002. align-self:center;
  1003. padding:2px 2px 2px 2px;
  1004. box-sizing:border-box;
  1005. width:100%;
  1006. }
  1007. #u42199_text {
  1008. border-width:0px;
  1009. word-wrap:break-word;
  1010. text-transform:none;
  1011. visibility:hidden;
  1012. }
  1013. #u42200_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. #u42200 {
  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. #u42200 .text {
  1046. position:absolute;
  1047. align-self:center;
  1048. padding:0px 0px 0px 0px;
  1049. box-sizing:border-box;
  1050. width:100%;
  1051. }
  1052. #u42200_text {
  1053. border-width:0px;
  1054. white-space:nowrap;
  1055. text-transform:none;
  1056. }
  1057. #u42201_img {
  1058. border-width:0px;
  1059. position:absolute;
  1060. left:0px;
  1061. top:0px;
  1062. width:22px;
  1063. height:22px;
  1064. }
  1065. #u42201 {
  1066. border-width:0px;
  1067. position:absolute;
  1068. left:20px;
  1069. top:1144px;
  1070. width:22px;
  1071. height:22px;
  1072. display:flex;
  1073. }
  1074. #u42201 .text {
  1075. position:absolute;
  1076. align-self:center;
  1077. padding:2px 2px 2px 2px;
  1078. box-sizing:border-box;
  1079. width:100%;
  1080. }
  1081. #u42201_text {
  1082. border-width:0px;
  1083. word-wrap:break-word;
  1084. text-transform:none;
  1085. visibility:hidden;
  1086. }
  1087. #u42202_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. #u42202 {
  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. #u42202 .text {
  1120. position:absolute;
  1121. align-self:center;
  1122. padding:0px 0px 0px 0px;
  1123. box-sizing:border-box;
  1124. width:100%;
  1125. }
  1126. #u42202_text {
  1127. border-width:0px;
  1128. white-space:nowrap;
  1129. text-transform:none;
  1130. }
  1131. #u42203_img {
  1132. border-width:0px;
  1133. position:absolute;
  1134. left:0px;
  1135. top:0px;
  1136. width:22px;
  1137. height:22px;
  1138. }
  1139. #u42203 {
  1140. border-width:0px;
  1141. position:absolute;
  1142. left:20px;
  1143. top:1186px;
  1144. width:22px;
  1145. height:22px;
  1146. display:flex;
  1147. }
  1148. #u42203 .text {
  1149. position:absolute;
  1150. align-self:center;
  1151. padding:2px 2px 2px 2px;
  1152. box-sizing:border-box;
  1153. width:100%;
  1154. }
  1155. #u42203_text {
  1156. border-width:0px;
  1157. word-wrap:break-word;
  1158. text-transform:none;
  1159. visibility:hidden;
  1160. }
  1161. #u42204 {
  1162. border-width:0px;
  1163. position:absolute;
  1164. left:0px;
  1165. top:0px;
  1166. width:0px;
  1167. height:0px;
  1168. }
  1169. #u42205_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. #u42205 {
  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. #u42205 .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. #u42205_text {
  1211. border-width:0px;
  1212. white-space:nowrap;
  1213. text-transform:none;
  1214. }
  1215. #u42206_img {
  1216. border-width:0px;
  1217. position:absolute;
  1218. left:0px;
  1219. top:0px;
  1220. width:14px;
  1221. height:14px;
  1222. }
  1223. #u42206 {
  1224. border-width:0px;
  1225. position:absolute;
  1226. left:20px;
  1227. top:235px;
  1228. width:14px;
  1229. height:14px;
  1230. display:flex;
  1231. }
  1232. #u42206 .text {
  1233. position:absolute;
  1234. align-self:center;
  1235. padding:2px 2px 2px 2px;
  1236. box-sizing:border-box;
  1237. width:100%;
  1238. }
  1239. #u42206_text {
  1240. border-width:0px;
  1241. word-wrap:break-word;
  1242. text-transform:none;
  1243. visibility:hidden;
  1244. }
  1245. #u42207 {
  1246. border-width:0px;
  1247. position:absolute;
  1248. left:0px;
  1249. top:0px;
  1250. width:0px;
  1251. height:0px;
  1252. }
  1253. #u42208_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. #u42208 {
  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. #u42208 .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. #u42208_text {
  1295. border-width:0px;
  1296. white-space:nowrap;
  1297. text-transform:none;
  1298. }
  1299. #u42209_img {
  1300. border-width:0px;
  1301. position:absolute;
  1302. left:0px;
  1303. top:0px;
  1304. width:14px;
  1305. height:14px;
  1306. }
  1307. #u42209 {
  1308. border-width:0px;
  1309. position:absolute;
  1310. left:20px;
  1311. top:277px;
  1312. width:14px;
  1313. height:14px;
  1314. display:flex;
  1315. }
  1316. #u42209 .text {
  1317. position:absolute;
  1318. align-self:center;
  1319. padding:2px 2px 2px 2px;
  1320. box-sizing:border-box;
  1321. width:100%;
  1322. }
  1323. #u42209_text {
  1324. border-width:0px;
  1325. word-wrap:break-word;
  1326. text-transform:none;
  1327. visibility:hidden;
  1328. }
  1329. #u42210 {
  1330. border-width:0px;
  1331. position:absolute;
  1332. left:0px;
  1333. top:0px;
  1334. width:0px;
  1335. height:0px;
  1336. }
  1337. #u42211_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. #u42211_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. #u42211_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. #u42211 {
  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. #u42211 .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. #u42211_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. #u42211.disabled {
  1428. }
  1429. .u42211_input_option {
  1430. font-size:14px;
  1431. }
  1432. #u42212_img {
  1433. border-width:0px;
  1434. position:absolute;
  1435. left:0px;
  1436. top:0px;
  1437. width:22px;
  1438. height:22px;
  1439. }
  1440. #u42212 {
  1441. border-width:0px;
  1442. position:absolute;
  1443. left:1194px;
  1444. top:14px;
  1445. width:22px;
  1446. height:22px;
  1447. display:flex;
  1448. }
  1449. #u42212 .text {
  1450. position:absolute;
  1451. align-self:center;
  1452. padding:2px 2px 2px 2px;
  1453. box-sizing:border-box;
  1454. width:100%;
  1455. }
  1456. #u42212_text {
  1457. border-width:0px;
  1458. word-wrap:break-word;
  1459. text-transform:none;
  1460. visibility:hidden;
  1461. }
  1462. #u42213_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. #u42213 {
  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. #u42213 .text {
  1497. position:absolute;
  1498. align-self:center;
  1499. padding:0px 0px 0px 0px;
  1500. box-sizing:border-box;
  1501. width:100%;
  1502. }
  1503. #u42213_text {
  1504. border-width:0px;
  1505. word-wrap:break-word;
  1506. text-transform:none;
  1507. }
  1508. #u42214_img {
  1509. border-width:0px;
  1510. position:absolute;
  1511. left:0px;
  1512. top:0px;
  1513. width:2px;
  1514. height:12px;
  1515. }
  1516. #u42214 {
  1517. border-width:0px;
  1518. position:absolute;
  1519. left:1452px;
  1520. top:19px;
  1521. width:1px;
  1522. height:11px;
  1523. display:flex;
  1524. }
  1525. #u42214 .text {
  1526. position:absolute;
  1527. align-self:center;
  1528. padding:2px 2px 2px 2px;
  1529. box-sizing:border-box;
  1530. width:100%;
  1531. }
  1532. #u42214_text {
  1533. border-width:0px;
  1534. word-wrap:break-word;
  1535. text-transform:none;
  1536. visibility:hidden;
  1537. }
  1538. #u42215_div {
  1539. border-width:0px;
  1540. position:absolute;
  1541. left:0px;
  1542. top:0px;
  1543. width:1260px;
  1544. height:1191px;
  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. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1553. font-weight:400;
  1554. font-style:normal;
  1555. font-size:12px;
  1556. color:#FFFFFF;
  1557. text-align:left;
  1558. }
  1559. #u42215 {
  1560. border-width:0px;
  1561. position:absolute;
  1562. left:330px;
  1563. top:50px;
  1564. width:1260px;
  1565. height:1191px;
  1566. display:flex;
  1567. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1568. font-weight:400;
  1569. font-style:normal;
  1570. font-size:12px;
  1571. color:#FFFFFF;
  1572. text-align:left;
  1573. }
  1574. #u42215 .text {
  1575. position:absolute;
  1576. align-self:center;
  1577. padding:2px 2px 2px 50px;
  1578. box-sizing:border-box;
  1579. width:100%;
  1580. }
  1581. #u42215_text {
  1582. border-width:0px;
  1583. word-wrap:break-word;
  1584. text-transform:none;
  1585. visibility:hidden;
  1586. }
  1587. #u42216_div {
  1588. border-width:0px;
  1589. position:absolute;
  1590. left:0px;
  1591. top:0px;
  1592. width:109px;
  1593. height:50px;
  1594. background:inherit;
  1595. background-color:rgba(255, 255, 255, 0);
  1596. border:none;
  1597. border-left:0px;
  1598. border-top:0px;
  1599. border-right:0px;
  1600. border-radius:0px;
  1601. border-bottom-right-radius:0px;
  1602. border-bottom-left-radius:0px;
  1603. -moz-box-shadow:none;
  1604. -webkit-box-shadow:none;
  1605. box-shadow:none;
  1606. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1607. font-weight:400;
  1608. font-style:normal;
  1609. font-size:18px;
  1610. }
  1611. #u42216 {
  1612. border-width:0px;
  1613. position:absolute;
  1614. left:349px;
  1615. top:50px;
  1616. width:109px;
  1617. height:50px;
  1618. display:flex;
  1619. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1620. font-weight:400;
  1621. font-style:normal;
  1622. font-size:18px;
  1623. }
  1624. #u42216 .text {
  1625. position:absolute;
  1626. align-self:center;
  1627. padding:0px 0px 0px 0px;
  1628. box-sizing:border-box;
  1629. width:100%;
  1630. }
  1631. #u42216_text {
  1632. border-width:0px;
  1633. white-space:nowrap;
  1634. text-transform:none;
  1635. }
  1636. #u42217_img {
  1637. border-width:0px;
  1638. position:absolute;
  1639. left:0px;
  1640. top:0px;
  1641. width:100px;
  1642. height:100px;
  1643. }
  1644. #u42217 {
  1645. border-width:0px;
  1646. position:absolute;
  1647. left:389px;
  1648. top:135px;
  1649. width:100px;
  1650. height:100px;
  1651. display:flex;
  1652. }
  1653. #u42217 .text {
  1654. position:absolute;
  1655. align-self:center;
  1656. padding:2px 2px 2px 2px;
  1657. box-sizing:border-box;
  1658. width:100%;
  1659. }
  1660. #u42217_text {
  1661. border-width:0px;
  1662. word-wrap:break-word;
  1663. text-transform:none;
  1664. visibility:hidden;
  1665. }
  1666. #u42218_img {
  1667. border-width:0px;
  1668. position:absolute;
  1669. left:0px;
  1670. top:0px;
  1671. width:100px;
  1672. height:100px;
  1673. }
  1674. #u42218 {
  1675. border-width:0px;
  1676. position:absolute;
  1677. left:649px;
  1678. top:135px;
  1679. width:100px;
  1680. height:100px;
  1681. display:flex;
  1682. }
  1683. #u42218 .text {
  1684. position:absolute;
  1685. align-self:center;
  1686. padding:2px 2px 2px 2px;
  1687. box-sizing:border-box;
  1688. width:100%;
  1689. }
  1690. #u42218_text {
  1691. border-width:0px;
  1692. word-wrap:break-word;
  1693. text-transform:none;
  1694. visibility:hidden;
  1695. }
  1696. #u42219_div {
  1697. border-width:0px;
  1698. position:absolute;
  1699. left:0px;
  1700. top:0px;
  1701. width:91px;
  1702. height:150px;
  1703. background:inherit;
  1704. background-color:rgba(255, 255, 255, 0);
  1705. border:none;
  1706. border-left:0px;
  1707. border-top:0px;
  1708. border-right:0px;
  1709. border-radius:0px;
  1710. border-bottom-right-radius:0px;
  1711. border-bottom-left-radius:0px;
  1712. -moz-box-shadow:none;
  1713. -webkit-box-shadow:none;
  1714. box-shadow:none;
  1715. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1716. font-weight:400;
  1717. font-style:normal;
  1718. font-size:18px;
  1719. line-height:30px;
  1720. }
  1721. #u42219 {
  1722. border-width:0px;
  1723. position:absolute;
  1724. left:389px;
  1725. top:255px;
  1726. width:91px;
  1727. height:150px;
  1728. display:flex;
  1729. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1730. font-weight:400;
  1731. font-style:normal;
  1732. font-size:18px;
  1733. line-height:30px;
  1734. }
  1735. #u42219 .text {
  1736. position:absolute;
  1737. align-self:center;
  1738. padding:0px 0px 0px 0px;
  1739. box-sizing:border-box;
  1740. width:100%;
  1741. }
  1742. #u42219_text {
  1743. border-width:0px;
  1744. white-space:nowrap;
  1745. text-transform:none;
  1746. }
  1747. #u42220_div {
  1748. border-width:0px;
  1749. position:absolute;
  1750. left:0px;
  1751. top:0px;
  1752. width:91px;
  1753. height:150px;
  1754. background:inherit;
  1755. background-color:rgba(255, 255, 255, 0);
  1756. border:none;
  1757. border-left:0px;
  1758. border-top:0px;
  1759. border-right:0px;
  1760. border-radius:0px;
  1761. border-bottom-right-radius:0px;
  1762. border-bottom-left-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:18px;
  1770. line-height:30px;
  1771. }
  1772. #u42220 {
  1773. border-width:0px;
  1774. position:absolute;
  1775. left:649px;
  1776. top:255px;
  1777. width:91px;
  1778. height:150px;
  1779. display:flex;
  1780. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1781. font-weight:400;
  1782. font-style:normal;
  1783. font-size:18px;
  1784. line-height:30px;
  1785. }
  1786. #u42220 .text {
  1787. position:absolute;
  1788. align-self:center;
  1789. padding:0px 0px 0px 0px;
  1790. box-sizing:border-box;
  1791. width:100%;
  1792. }
  1793. #u42220_text {
  1794. border-width:0px;
  1795. white-space:nowrap;
  1796. text-transform:none;
  1797. }
  1798. #u42221_img {
  1799. border-width:0px;
  1800. position:absolute;
  1801. left:0px;
  1802. top:0px;
  1803. width:558px;
  1804. height:395px;
  1805. }
  1806. #u42221 {
  1807. border-width:0px;
  1808. position:absolute;
  1809. left:981px;
  1810. top:100px;
  1811. width:558px;
  1812. height:395px;
  1813. display:flex;
  1814. }
  1815. #u42221 .text {
  1816. position:absolute;
  1817. align-self:center;
  1818. padding:2px 2px 2px 2px;
  1819. box-sizing:border-box;
  1820. width:100%;
  1821. }
  1822. #u42221_text {
  1823. border-width:0px;
  1824. word-wrap:break-word;
  1825. text-transform:none;
  1826. visibility:hidden;
  1827. }
  1828. #u42222_div {
  1829. border-width:0px;
  1830. position:absolute;
  1831. left:0px;
  1832. top:0px;
  1833. width:242px;
  1834. height:50px;
  1835. background:inherit;
  1836. background-color:rgba(255, 255, 255, 0);
  1837. border:none;
  1838. border-left:0px;
  1839. border-top:0px;
  1840. border-right:0px;
  1841. border-radius:0px;
  1842. border-bottom-right-radius:0px;
  1843. border-bottom-left-radius:0px;
  1844. -moz-box-shadow:none;
  1845. -webkit-box-shadow:none;
  1846. box-shadow:none;
  1847. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1848. font-weight:400;
  1849. font-style:normal;
  1850. font-size:18px;
  1851. }
  1852. #u42222 {
  1853. border-width:0px;
  1854. position:absolute;
  1855. left:349px;
  1856. top:520px;
  1857. width:242px;
  1858. height:50px;
  1859. display:flex;
  1860. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1861. font-weight:400;
  1862. font-style:normal;
  1863. font-size:18px;
  1864. }
  1865. #u42222 .text {
  1866. position:absolute;
  1867. align-self:center;
  1868. padding:0px 0px 0px 0px;
  1869. box-sizing:border-box;
  1870. width:100%;
  1871. }
  1872. #u42222_text {
  1873. border-width:0px;
  1874. white-space:nowrap;
  1875. text-transform:none;
  1876. }
  1877. #u42223 {
  1878. border-width:0px;
  1879. position:absolute;
  1880. left:349px;
  1881. top:620px;
  1882. width:1190px;
  1883. height:238px;
  1884. }
  1885. #u42224_img {
  1886. border-width:0px;
  1887. position:absolute;
  1888. left:0px;
  1889. top:0px;
  1890. width:110px;
  1891. height:34px;
  1892. }
  1893. #u42224 {
  1894. border-width:0px;
  1895. position:absolute;
  1896. left:0px;
  1897. top:0px;
  1898. width:110px;
  1899. height:34px;
  1900. display:flex;
  1901. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1902. font-weight:400;
  1903. font-style:normal;
  1904. font-size:14px;
  1905. color:#FFFFFF;
  1906. line-height:30px;
  1907. }
  1908. #u42224 .text {
  1909. position:absolute;
  1910. align-self:center;
  1911. padding:2px 0px 2px 0px;
  1912. box-sizing:border-box;
  1913. width:100%;
  1914. }
  1915. #u42224_text {
  1916. border-width:0px;
  1917. word-wrap:break-word;
  1918. text-transform:none;
  1919. }
  1920. #u42225_img {
  1921. border-width:0px;
  1922. position:absolute;
  1923. left:0px;
  1924. top:0px;
  1925. width:216px;
  1926. height:34px;
  1927. }
  1928. #u42225 {
  1929. border-width:0px;
  1930. position:absolute;
  1931. left:110px;
  1932. top:0px;
  1933. width:216px;
  1934. height:34px;
  1935. display:flex;
  1936. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1937. font-weight:400;
  1938. font-style:normal;
  1939. font-size:14px;
  1940. color:#FFFFFF;
  1941. line-height:30px;
  1942. }
  1943. #u42225 .text {
  1944. position:absolute;
  1945. align-self:center;
  1946. padding:2px 0px 2px 0px;
  1947. box-sizing:border-box;
  1948. width:100%;
  1949. }
  1950. #u42225_text {
  1951. border-width:0px;
  1952. word-wrap:break-word;
  1953. text-transform:none;
  1954. }
  1955. #u42226_img {
  1956. border-width:0px;
  1957. position:absolute;
  1958. left:0px;
  1959. top:0px;
  1960. width:216px;
  1961. height:34px;
  1962. }
  1963. #u42226 {
  1964. border-width:0px;
  1965. position:absolute;
  1966. left:326px;
  1967. top:0px;
  1968. width:216px;
  1969. height:34px;
  1970. display:flex;
  1971. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1972. font-weight:400;
  1973. font-style:normal;
  1974. font-size:14px;
  1975. color:#FFFFFF;
  1976. line-height:30px;
  1977. }
  1978. #u42226 .text {
  1979. position:absolute;
  1980. align-self:center;
  1981. padding:2px 0px 2px 0px;
  1982. box-sizing:border-box;
  1983. width:100%;
  1984. }
  1985. #u42226_text {
  1986. border-width:0px;
  1987. word-wrap:break-word;
  1988. text-transform:none;
  1989. }
  1990. #u42227_img {
  1991. border-width:0px;
  1992. position:absolute;
  1993. left:0px;
  1994. top:0px;
  1995. width:216px;
  1996. height:34px;
  1997. }
  1998. #u42227 {
  1999. border-width:0px;
  2000. position:absolute;
  2001. left:542px;
  2002. top:0px;
  2003. width:216px;
  2004. height:34px;
  2005. display:flex;
  2006. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2007. font-weight:400;
  2008. font-style:normal;
  2009. font-size:14px;
  2010. color:#FFFFFF;
  2011. line-height:30px;
  2012. }
  2013. #u42227 .text {
  2014. position:absolute;
  2015. align-self:center;
  2016. padding:2px 0px 2px 0px;
  2017. box-sizing:border-box;
  2018. width:100%;
  2019. }
  2020. #u42227_text {
  2021. border-width:0px;
  2022. word-wrap:break-word;
  2023. text-transform:none;
  2024. }
  2025. #u42228_img {
  2026. border-width:0px;
  2027. position:absolute;
  2028. left:0px;
  2029. top:0px;
  2030. width:216px;
  2031. height:34px;
  2032. }
  2033. #u42228 {
  2034. border-width:0px;
  2035. position:absolute;
  2036. left:758px;
  2037. top:0px;
  2038. width:216px;
  2039. height:34px;
  2040. display:flex;
  2041. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2042. font-weight:400;
  2043. font-style:normal;
  2044. font-size:14px;
  2045. color:#FFFFFF;
  2046. line-height:30px;
  2047. }
  2048. #u42228 .text {
  2049. position:absolute;
  2050. align-self:center;
  2051. padding:2px 0px 2px 0px;
  2052. box-sizing:border-box;
  2053. width:100%;
  2054. }
  2055. #u42228_text {
  2056. border-width:0px;
  2057. word-wrap:break-word;
  2058. text-transform:none;
  2059. }
  2060. #u42229_img {
  2061. border-width:0px;
  2062. position:absolute;
  2063. left:0px;
  2064. top:0px;
  2065. width:216px;
  2066. height:34px;
  2067. }
  2068. #u42229 {
  2069. border-width:0px;
  2070. position:absolute;
  2071. left:974px;
  2072. top:0px;
  2073. width:216px;
  2074. height:34px;
  2075. display:flex;
  2076. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2077. font-weight:400;
  2078. font-style:normal;
  2079. font-size:14px;
  2080. color:#FFFFFF;
  2081. line-height:30px;
  2082. }
  2083. #u42229 .text {
  2084. position:absolute;
  2085. align-self:center;
  2086. padding:2px 0px 2px 0px;
  2087. box-sizing:border-box;
  2088. width:100%;
  2089. }
  2090. #u42229_text {
  2091. border-width:0px;
  2092. word-wrap:break-word;
  2093. text-transform:none;
  2094. }
  2095. #u42230_img {
  2096. border-width:0px;
  2097. position:absolute;
  2098. left:0px;
  2099. top:0px;
  2100. width:110px;
  2101. height:34px;
  2102. }
  2103. #u42230 {
  2104. border-width:0px;
  2105. position:absolute;
  2106. left:0px;
  2107. top:34px;
  2108. width:110px;
  2109. height:34px;
  2110. display:flex;
  2111. font-size:14px;
  2112. line-height:30px;
  2113. }
  2114. #u42230 .text {
  2115. position:absolute;
  2116. align-self:center;
  2117. padding:2px 0px 2px 0px;
  2118. box-sizing:border-box;
  2119. width:100%;
  2120. }
  2121. #u42230_text {
  2122. border-width:0px;
  2123. word-wrap:break-word;
  2124. text-transform:none;
  2125. }
  2126. #u42231_img {
  2127. border-width:0px;
  2128. position:absolute;
  2129. left:0px;
  2130. top:0px;
  2131. width:216px;
  2132. height:34px;
  2133. }
  2134. #u42231 {
  2135. border-width:0px;
  2136. position:absolute;
  2137. left:110px;
  2138. top:34px;
  2139. width:216px;
  2140. height:34px;
  2141. display:flex;
  2142. font-size:14px;
  2143. line-height:30px;
  2144. }
  2145. #u42231 .text {
  2146. position:absolute;
  2147. align-self:center;
  2148. padding:2px 0px 2px 0px;
  2149. box-sizing:border-box;
  2150. width:100%;
  2151. }
  2152. #u42231_text {
  2153. border-width:0px;
  2154. word-wrap:break-word;
  2155. text-transform:none;
  2156. visibility:hidden;
  2157. }
  2158. #u42232_img {
  2159. border-width:0px;
  2160. position:absolute;
  2161. left:0px;
  2162. top:0px;
  2163. width:216px;
  2164. height:34px;
  2165. }
  2166. #u42232 {
  2167. border-width:0px;
  2168. position:absolute;
  2169. left:326px;
  2170. top:34px;
  2171. width:216px;
  2172. height:34px;
  2173. display:flex;
  2174. font-size:14px;
  2175. line-height:30px;
  2176. }
  2177. #u42232 .text {
  2178. position:absolute;
  2179. align-self:center;
  2180. padding:2px 0px 2px 0px;
  2181. box-sizing:border-box;
  2182. width:100%;
  2183. }
  2184. #u42232_text {
  2185. border-width:0px;
  2186. word-wrap:break-word;
  2187. text-transform:none;
  2188. visibility:hidden;
  2189. }
  2190. #u42233_img {
  2191. border-width:0px;
  2192. position:absolute;
  2193. left:0px;
  2194. top:0px;
  2195. width:216px;
  2196. height:34px;
  2197. }
  2198. #u42233 {
  2199. border-width:0px;
  2200. position:absolute;
  2201. left:542px;
  2202. top:34px;
  2203. width:216px;
  2204. height:34px;
  2205. display:flex;
  2206. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2207. font-weight:400;
  2208. font-style:normal;
  2209. font-size:14px;
  2210. line-height:30px;
  2211. }
  2212. #u42233 .text {
  2213. position:absolute;
  2214. align-self:center;
  2215. padding:2px 0px 2px 0px;
  2216. box-sizing:border-box;
  2217. width:100%;
  2218. }
  2219. #u42233_text {
  2220. border-width:0px;
  2221. word-wrap:break-word;
  2222. text-transform:none;
  2223. }
  2224. #u42234_img {
  2225. border-width:0px;
  2226. position:absolute;
  2227. left:0px;
  2228. top:0px;
  2229. width:216px;
  2230. height:34px;
  2231. }
  2232. #u42234 {
  2233. border-width:0px;
  2234. position:absolute;
  2235. left:758px;
  2236. top:34px;
  2237. width:216px;
  2238. height:34px;
  2239. display:flex;
  2240. font-size:14px;
  2241. line-height:30px;
  2242. }
  2243. #u42234 .text {
  2244. position:absolute;
  2245. align-self:center;
  2246. padding:2px 0px 2px 0px;
  2247. box-sizing:border-box;
  2248. width:100%;
  2249. }
  2250. #u42234_text {
  2251. border-width:0px;
  2252. word-wrap:break-word;
  2253. text-transform:none;
  2254. visibility:hidden;
  2255. }
  2256. #u42235_img {
  2257. border-width:0px;
  2258. position:absolute;
  2259. left:0px;
  2260. top:0px;
  2261. width:216px;
  2262. height:34px;
  2263. }
  2264. #u42235 {
  2265. border-width:0px;
  2266. position:absolute;
  2267. left:974px;
  2268. top:34px;
  2269. width:216px;
  2270. height:34px;
  2271. display:flex;
  2272. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2273. font-weight:400;
  2274. font-style:normal;
  2275. font-size:14px;
  2276. line-height:30px;
  2277. }
  2278. #u42235 .text {
  2279. position:absolute;
  2280. align-self:center;
  2281. padding:2px 0px 2px 0px;
  2282. box-sizing:border-box;
  2283. width:100%;
  2284. }
  2285. #u42235_text {
  2286. border-width:0px;
  2287. word-wrap:break-word;
  2288. text-transform:none;
  2289. }
  2290. #u42236_img {
  2291. border-width:0px;
  2292. position:absolute;
  2293. left:0px;
  2294. top:0px;
  2295. width:110px;
  2296. height:34px;
  2297. }
  2298. #u42236 {
  2299. border-width:0px;
  2300. position:absolute;
  2301. left:0px;
  2302. top:68px;
  2303. width:110px;
  2304. height:34px;
  2305. display:flex;
  2306. font-size:14px;
  2307. line-height:30px;
  2308. }
  2309. #u42236 .text {
  2310. position:absolute;
  2311. align-self:center;
  2312. padding:2px 0px 2px 0px;
  2313. box-sizing:border-box;
  2314. width:100%;
  2315. }
  2316. #u42236_text {
  2317. border-width:0px;
  2318. word-wrap:break-word;
  2319. text-transform:none;
  2320. }
  2321. #u42237_img {
  2322. border-width:0px;
  2323. position:absolute;
  2324. left:0px;
  2325. top:0px;
  2326. width:216px;
  2327. height:34px;
  2328. }
  2329. #u42237 {
  2330. border-width:0px;
  2331. position:absolute;
  2332. left:110px;
  2333. top:68px;
  2334. width:216px;
  2335. height:34px;
  2336. display:flex;
  2337. font-size:14px;
  2338. line-height:30px;
  2339. }
  2340. #u42237 .text {
  2341. position:absolute;
  2342. align-self:center;
  2343. padding:2px 0px 2px 0px;
  2344. box-sizing:border-box;
  2345. width:100%;
  2346. }
  2347. #u42237_text {
  2348. border-width:0px;
  2349. word-wrap:break-word;
  2350. text-transform:none;
  2351. visibility:hidden;
  2352. }
  2353. #u42238_img {
  2354. border-width:0px;
  2355. position:absolute;
  2356. left:0px;
  2357. top:0px;
  2358. width:216px;
  2359. height:34px;
  2360. }
  2361. #u42238 {
  2362. border-width:0px;
  2363. position:absolute;
  2364. left:326px;
  2365. top:68px;
  2366. width:216px;
  2367. height:34px;
  2368. display:flex;
  2369. font-size:14px;
  2370. line-height:30px;
  2371. }
  2372. #u42238 .text {
  2373. position:absolute;
  2374. align-self:center;
  2375. padding:2px 0px 2px 0px;
  2376. box-sizing:border-box;
  2377. width:100%;
  2378. }
  2379. #u42238_text {
  2380. border-width:0px;
  2381. word-wrap:break-word;
  2382. text-transform:none;
  2383. visibility:hidden;
  2384. }
  2385. #u42239_img {
  2386. border-width:0px;
  2387. position:absolute;
  2388. left:0px;
  2389. top:0px;
  2390. width:216px;
  2391. height:34px;
  2392. }
  2393. #u42239 {
  2394. border-width:0px;
  2395. position:absolute;
  2396. left:542px;
  2397. top:68px;
  2398. width:216px;
  2399. height:34px;
  2400. display:flex;
  2401. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2402. font-weight:400;
  2403. font-style:normal;
  2404. font-size:14px;
  2405. line-height:30px;
  2406. }
  2407. #u42239 .text {
  2408. position:absolute;
  2409. align-self:center;
  2410. padding:2px 0px 2px 0px;
  2411. box-sizing:border-box;
  2412. width:100%;
  2413. }
  2414. #u42239_text {
  2415. border-width:0px;
  2416. word-wrap:break-word;
  2417. text-transform:none;
  2418. }
  2419. #u42240_img {
  2420. border-width:0px;
  2421. position:absolute;
  2422. left:0px;
  2423. top:0px;
  2424. width:216px;
  2425. height:34px;
  2426. }
  2427. #u42240 {
  2428. border-width:0px;
  2429. position:absolute;
  2430. left:758px;
  2431. top:68px;
  2432. width:216px;
  2433. height:34px;
  2434. display:flex;
  2435. font-size:14px;
  2436. line-height:30px;
  2437. }
  2438. #u42240 .text {
  2439. position:absolute;
  2440. align-self:center;
  2441. padding:2px 0px 2px 0px;
  2442. box-sizing:border-box;
  2443. width:100%;
  2444. }
  2445. #u42240_text {
  2446. border-width:0px;
  2447. word-wrap:break-word;
  2448. text-transform:none;
  2449. visibility:hidden;
  2450. }
  2451. #u42241_img {
  2452. border-width:0px;
  2453. position:absolute;
  2454. left:0px;
  2455. top:0px;
  2456. width:216px;
  2457. height:34px;
  2458. }
  2459. #u42241 {
  2460. border-width:0px;
  2461. position:absolute;
  2462. left:974px;
  2463. top:68px;
  2464. width:216px;
  2465. height:34px;
  2466. display:flex;
  2467. font-size:14px;
  2468. line-height:30px;
  2469. }
  2470. #u42241 .text {
  2471. position:absolute;
  2472. align-self:center;
  2473. padding:2px 0px 2px 0px;
  2474. box-sizing:border-box;
  2475. width:100%;
  2476. }
  2477. #u42241_text {
  2478. border-width:0px;
  2479. word-wrap:break-word;
  2480. text-transform:none;
  2481. visibility:hidden;
  2482. }
  2483. #u42242_img {
  2484. border-width:0px;
  2485. position:absolute;
  2486. left:0px;
  2487. top:0px;
  2488. width:110px;
  2489. height:34px;
  2490. }
  2491. #u42242 {
  2492. border-width:0px;
  2493. position:absolute;
  2494. left:0px;
  2495. top:102px;
  2496. width:110px;
  2497. height:34px;
  2498. display:flex;
  2499. font-size:14px;
  2500. line-height:30px;
  2501. }
  2502. #u42242 .text {
  2503. position:absolute;
  2504. align-self:center;
  2505. padding:2px 0px 2px 0px;
  2506. box-sizing:border-box;
  2507. width:100%;
  2508. }
  2509. #u42242_text {
  2510. border-width:0px;
  2511. word-wrap:break-word;
  2512. text-transform:none;
  2513. visibility:hidden;
  2514. }
  2515. #u42243_img {
  2516. border-width:0px;
  2517. position:absolute;
  2518. left:0px;
  2519. top:0px;
  2520. width:216px;
  2521. height:34px;
  2522. }
  2523. #u42243 {
  2524. border-width:0px;
  2525. position:absolute;
  2526. left:110px;
  2527. top:102px;
  2528. width:216px;
  2529. height:34px;
  2530. display:flex;
  2531. font-size:14px;
  2532. line-height:30px;
  2533. }
  2534. #u42243 .text {
  2535. position:absolute;
  2536. align-self:center;
  2537. padding:2px 0px 2px 0px;
  2538. box-sizing:border-box;
  2539. width:100%;
  2540. }
  2541. #u42243_text {
  2542. border-width:0px;
  2543. word-wrap:break-word;
  2544. text-transform:none;
  2545. visibility:hidden;
  2546. }
  2547. #u42244_img {
  2548. border-width:0px;
  2549. position:absolute;
  2550. left:0px;
  2551. top:0px;
  2552. width:216px;
  2553. height:34px;
  2554. }
  2555. #u42244 {
  2556. border-width:0px;
  2557. position:absolute;
  2558. left:326px;
  2559. top:102px;
  2560. width:216px;
  2561. height:34px;
  2562. display:flex;
  2563. font-size:14px;
  2564. line-height:30px;
  2565. }
  2566. #u42244 .text {
  2567. position:absolute;
  2568. align-self:center;
  2569. padding:2px 0px 2px 0px;
  2570. box-sizing:border-box;
  2571. width:100%;
  2572. }
  2573. #u42244_text {
  2574. border-width:0px;
  2575. word-wrap:break-word;
  2576. text-transform:none;
  2577. visibility:hidden;
  2578. }
  2579. #u42245_img {
  2580. border-width:0px;
  2581. position:absolute;
  2582. left:0px;
  2583. top:0px;
  2584. width:216px;
  2585. height:34px;
  2586. }
  2587. #u42245 {
  2588. border-width:0px;
  2589. position:absolute;
  2590. left:542px;
  2591. top:102px;
  2592. width:216px;
  2593. height:34px;
  2594. display:flex;
  2595. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2596. font-weight:400;
  2597. font-style:normal;
  2598. font-size:14px;
  2599. line-height:30px;
  2600. }
  2601. #u42245 .text {
  2602. position:absolute;
  2603. align-self:center;
  2604. padding:2px 0px 2px 0px;
  2605. box-sizing:border-box;
  2606. width:100%;
  2607. }
  2608. #u42245_text {
  2609. border-width:0px;
  2610. word-wrap:break-word;
  2611. text-transform:none;
  2612. }
  2613. #u42246_img {
  2614. border-width:0px;
  2615. position:absolute;
  2616. left:0px;
  2617. top:0px;
  2618. width:216px;
  2619. height:34px;
  2620. }
  2621. #u42246 {
  2622. border-width:0px;
  2623. position:absolute;
  2624. left:758px;
  2625. top:102px;
  2626. width:216px;
  2627. height:34px;
  2628. display:flex;
  2629. font-size:14px;
  2630. line-height:30px;
  2631. }
  2632. #u42246 .text {
  2633. position:absolute;
  2634. align-self:center;
  2635. padding:2px 0px 2px 0px;
  2636. box-sizing:border-box;
  2637. width:100%;
  2638. }
  2639. #u42246_text {
  2640. border-width:0px;
  2641. word-wrap:break-word;
  2642. text-transform:none;
  2643. visibility:hidden;
  2644. }
  2645. #u42247_img {
  2646. border-width:0px;
  2647. position:absolute;
  2648. left:0px;
  2649. top:0px;
  2650. width:216px;
  2651. height:34px;
  2652. }
  2653. #u42247 {
  2654. border-width:0px;
  2655. position:absolute;
  2656. left:974px;
  2657. top:102px;
  2658. width:216px;
  2659. height:34px;
  2660. display:flex;
  2661. font-size:14px;
  2662. line-height:30px;
  2663. }
  2664. #u42247 .text {
  2665. position:absolute;
  2666. align-self:center;
  2667. padding:2px 0px 2px 0px;
  2668. box-sizing:border-box;
  2669. width:100%;
  2670. }
  2671. #u42247_text {
  2672. border-width:0px;
  2673. word-wrap:break-word;
  2674. text-transform:none;
  2675. visibility:hidden;
  2676. }
  2677. #u42248_img {
  2678. border-width:0px;
  2679. position:absolute;
  2680. left:0px;
  2681. top:0px;
  2682. width:110px;
  2683. height:34px;
  2684. }
  2685. #u42248 {
  2686. border-width:0px;
  2687. position:absolute;
  2688. left:0px;
  2689. top:136px;
  2690. width:110px;
  2691. height:34px;
  2692. display:flex;
  2693. font-size:14px;
  2694. line-height:30px;
  2695. }
  2696. #u42248 .text {
  2697. position:absolute;
  2698. align-self:center;
  2699. padding:2px 0px 2px 0px;
  2700. box-sizing:border-box;
  2701. width:100%;
  2702. }
  2703. #u42248_text {
  2704. border-width:0px;
  2705. word-wrap:break-word;
  2706. text-transform:none;
  2707. visibility:hidden;
  2708. }
  2709. #u42249_img {
  2710. border-width:0px;
  2711. position:absolute;
  2712. left:0px;
  2713. top:0px;
  2714. width:216px;
  2715. height:34px;
  2716. }
  2717. #u42249 {
  2718. border-width:0px;
  2719. position:absolute;
  2720. left:110px;
  2721. top:136px;
  2722. width:216px;
  2723. height:34px;
  2724. display:flex;
  2725. font-size:14px;
  2726. line-height:30px;
  2727. }
  2728. #u42249 .text {
  2729. position:absolute;
  2730. align-self:center;
  2731. padding:2px 0px 2px 0px;
  2732. box-sizing:border-box;
  2733. width:100%;
  2734. }
  2735. #u42249_text {
  2736. border-width:0px;
  2737. word-wrap:break-word;
  2738. text-transform:none;
  2739. visibility:hidden;
  2740. }
  2741. #u42250_img {
  2742. border-width:0px;
  2743. position:absolute;
  2744. left:0px;
  2745. top:0px;
  2746. width:216px;
  2747. height:34px;
  2748. }
  2749. #u42250 {
  2750. border-width:0px;
  2751. position:absolute;
  2752. left:326px;
  2753. top:136px;
  2754. width:216px;
  2755. height:34px;
  2756. display:flex;
  2757. font-size:14px;
  2758. line-height:30px;
  2759. }
  2760. #u42250 .text {
  2761. position:absolute;
  2762. align-self:center;
  2763. padding:2px 0px 2px 0px;
  2764. box-sizing:border-box;
  2765. width:100%;
  2766. }
  2767. #u42250_text {
  2768. border-width:0px;
  2769. word-wrap:break-word;
  2770. text-transform:none;
  2771. visibility:hidden;
  2772. }
  2773. #u42251_img {
  2774. border-width:0px;
  2775. position:absolute;
  2776. left:0px;
  2777. top:0px;
  2778. width:216px;
  2779. height:34px;
  2780. }
  2781. #u42251 {
  2782. border-width:0px;
  2783. position:absolute;
  2784. left:542px;
  2785. top:136px;
  2786. width:216px;
  2787. height:34px;
  2788. display:flex;
  2789. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2790. font-weight:400;
  2791. font-style:normal;
  2792. font-size:14px;
  2793. line-height:30px;
  2794. }
  2795. #u42251 .text {
  2796. position:absolute;
  2797. align-self:center;
  2798. padding:2px 0px 2px 0px;
  2799. box-sizing:border-box;
  2800. width:100%;
  2801. }
  2802. #u42251_text {
  2803. border-width:0px;
  2804. word-wrap:break-word;
  2805. text-transform:none;
  2806. visibility:hidden;
  2807. }
  2808. #u42252_img {
  2809. border-width:0px;
  2810. position:absolute;
  2811. left:0px;
  2812. top:0px;
  2813. width:216px;
  2814. height:34px;
  2815. }
  2816. #u42252 {
  2817. border-width:0px;
  2818. position:absolute;
  2819. left:758px;
  2820. top:136px;
  2821. width:216px;
  2822. height:34px;
  2823. display:flex;
  2824. font-size:14px;
  2825. line-height:30px;
  2826. }
  2827. #u42252 .text {
  2828. position:absolute;
  2829. align-self:center;
  2830. padding:2px 0px 2px 0px;
  2831. box-sizing:border-box;
  2832. width:100%;
  2833. }
  2834. #u42252_text {
  2835. border-width:0px;
  2836. word-wrap:break-word;
  2837. text-transform:none;
  2838. visibility:hidden;
  2839. }
  2840. #u42253_img {
  2841. border-width:0px;
  2842. position:absolute;
  2843. left:0px;
  2844. top:0px;
  2845. width:216px;
  2846. height:34px;
  2847. }
  2848. #u42253 {
  2849. border-width:0px;
  2850. position:absolute;
  2851. left:974px;
  2852. top:136px;
  2853. width:216px;
  2854. height:34px;
  2855. display:flex;
  2856. font-size:14px;
  2857. line-height:30px;
  2858. }
  2859. #u42253 .text {
  2860. position:absolute;
  2861. align-self:center;
  2862. padding:2px 0px 2px 0px;
  2863. box-sizing:border-box;
  2864. width:100%;
  2865. }
  2866. #u42253_text {
  2867. border-width:0px;
  2868. word-wrap:break-word;
  2869. text-transform:none;
  2870. visibility:hidden;
  2871. }
  2872. #u42254_img {
  2873. border-width:0px;
  2874. position:absolute;
  2875. left:0px;
  2876. top:0px;
  2877. width:110px;
  2878. height:34px;
  2879. }
  2880. #u42254 {
  2881. border-width:0px;
  2882. position:absolute;
  2883. left:0px;
  2884. top:170px;
  2885. width:110px;
  2886. height:34px;
  2887. display:flex;
  2888. font-size:14px;
  2889. line-height:30px;
  2890. }
  2891. #u42254 .text {
  2892. position:absolute;
  2893. align-self:center;
  2894. padding:2px 0px 2px 0px;
  2895. box-sizing:border-box;
  2896. width:100%;
  2897. }
  2898. #u42254_text {
  2899. border-width:0px;
  2900. word-wrap:break-word;
  2901. text-transform:none;
  2902. visibility:hidden;
  2903. }
  2904. #u42255_img {
  2905. border-width:0px;
  2906. position:absolute;
  2907. left:0px;
  2908. top:0px;
  2909. width:216px;
  2910. height:34px;
  2911. }
  2912. #u42255 {
  2913. border-width:0px;
  2914. position:absolute;
  2915. left:110px;
  2916. top:170px;
  2917. width:216px;
  2918. height:34px;
  2919. display:flex;
  2920. font-size:14px;
  2921. line-height:30px;
  2922. }
  2923. #u42255 .text {
  2924. position:absolute;
  2925. align-self:center;
  2926. padding:2px 0px 2px 0px;
  2927. box-sizing:border-box;
  2928. width:100%;
  2929. }
  2930. #u42255_text {
  2931. border-width:0px;
  2932. word-wrap:break-word;
  2933. text-transform:none;
  2934. visibility:hidden;
  2935. }
  2936. #u42256_img {
  2937. border-width:0px;
  2938. position:absolute;
  2939. left:0px;
  2940. top:0px;
  2941. width:216px;
  2942. height:34px;
  2943. }
  2944. #u42256 {
  2945. border-width:0px;
  2946. position:absolute;
  2947. left:326px;
  2948. top:170px;
  2949. width:216px;
  2950. height:34px;
  2951. display:flex;
  2952. font-size:14px;
  2953. line-height:30px;
  2954. }
  2955. #u42256 .text {
  2956. position:absolute;
  2957. align-self:center;
  2958. padding:2px 0px 2px 0px;
  2959. box-sizing:border-box;
  2960. width:100%;
  2961. }
  2962. #u42256_text {
  2963. border-width:0px;
  2964. word-wrap:break-word;
  2965. text-transform:none;
  2966. visibility:hidden;
  2967. }
  2968. #u42257_img {
  2969. border-width:0px;
  2970. position:absolute;
  2971. left:0px;
  2972. top:0px;
  2973. width:216px;
  2974. height:34px;
  2975. }
  2976. #u42257 {
  2977. border-width:0px;
  2978. position:absolute;
  2979. left:542px;
  2980. top:170px;
  2981. width:216px;
  2982. height:34px;
  2983. display:flex;
  2984. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2985. font-weight:400;
  2986. font-style:normal;
  2987. font-size:14px;
  2988. line-height:30px;
  2989. }
  2990. #u42257 .text {
  2991. position:absolute;
  2992. align-self:center;
  2993. padding:2px 0px 2px 0px;
  2994. box-sizing:border-box;
  2995. width:100%;
  2996. }
  2997. #u42257_text {
  2998. border-width:0px;
  2999. word-wrap:break-word;
  3000. text-transform:none;
  3001. visibility:hidden;
  3002. }
  3003. #u42258_img {
  3004. border-width:0px;
  3005. position:absolute;
  3006. left:0px;
  3007. top:0px;
  3008. width:216px;
  3009. height:34px;
  3010. }
  3011. #u42258 {
  3012. border-width:0px;
  3013. position:absolute;
  3014. left:758px;
  3015. top:170px;
  3016. width:216px;
  3017. height:34px;
  3018. display:flex;
  3019. font-size:14px;
  3020. line-height:30px;
  3021. }
  3022. #u42258 .text {
  3023. position:absolute;
  3024. align-self:center;
  3025. padding:2px 0px 2px 0px;
  3026. box-sizing:border-box;
  3027. width:100%;
  3028. }
  3029. #u42258_text {
  3030. border-width:0px;
  3031. word-wrap:break-word;
  3032. text-transform:none;
  3033. visibility:hidden;
  3034. }
  3035. #u42259_img {
  3036. border-width:0px;
  3037. position:absolute;
  3038. left:0px;
  3039. top:0px;
  3040. width:216px;
  3041. height:34px;
  3042. }
  3043. #u42259 {
  3044. border-width:0px;
  3045. position:absolute;
  3046. left:974px;
  3047. top:170px;
  3048. width:216px;
  3049. height:34px;
  3050. display:flex;
  3051. font-size:14px;
  3052. line-height:30px;
  3053. }
  3054. #u42259 .text {
  3055. position:absolute;
  3056. align-self:center;
  3057. padding:2px 0px 2px 0px;
  3058. box-sizing:border-box;
  3059. width:100%;
  3060. }
  3061. #u42259_text {
  3062. border-width:0px;
  3063. word-wrap:break-word;
  3064. text-transform:none;
  3065. visibility:hidden;
  3066. }
  3067. #u42260_img {
  3068. border-width:0px;
  3069. position:absolute;
  3070. left:0px;
  3071. top:0px;
  3072. width:110px;
  3073. height:34px;
  3074. }
  3075. #u42260 {
  3076. border-width:0px;
  3077. position:absolute;
  3078. left:0px;
  3079. top:204px;
  3080. width:110px;
  3081. height:34px;
  3082. display:flex;
  3083. font-size:14px;
  3084. line-height:30px;
  3085. }
  3086. #u42260 .text {
  3087. position:absolute;
  3088. align-self:center;
  3089. padding:2px 0px 2px 0px;
  3090. box-sizing:border-box;
  3091. width:100%;
  3092. }
  3093. #u42260_text {
  3094. border-width:0px;
  3095. word-wrap:break-word;
  3096. text-transform:none;
  3097. visibility:hidden;
  3098. }
  3099. #u42261_img {
  3100. border-width:0px;
  3101. position:absolute;
  3102. left:0px;
  3103. top:0px;
  3104. width:216px;
  3105. height:34px;
  3106. }
  3107. #u42261 {
  3108. border-width:0px;
  3109. position:absolute;
  3110. left:110px;
  3111. top:204px;
  3112. width:216px;
  3113. height:34px;
  3114. display:flex;
  3115. font-size:14px;
  3116. line-height:30px;
  3117. }
  3118. #u42261 .text {
  3119. position:absolute;
  3120. align-self:center;
  3121. padding:2px 0px 2px 0px;
  3122. box-sizing:border-box;
  3123. width:100%;
  3124. }
  3125. #u42261_text {
  3126. border-width:0px;
  3127. word-wrap:break-word;
  3128. text-transform:none;
  3129. visibility:hidden;
  3130. }
  3131. #u42262_img {
  3132. border-width:0px;
  3133. position:absolute;
  3134. left:0px;
  3135. top:0px;
  3136. width:216px;
  3137. height:34px;
  3138. }
  3139. #u42262 {
  3140. border-width:0px;
  3141. position:absolute;
  3142. left:326px;
  3143. top:204px;
  3144. width:216px;
  3145. height:34px;
  3146. display:flex;
  3147. font-size:14px;
  3148. line-height:30px;
  3149. }
  3150. #u42262 .text {
  3151. position:absolute;
  3152. align-self:center;
  3153. padding:2px 0px 2px 0px;
  3154. box-sizing:border-box;
  3155. width:100%;
  3156. }
  3157. #u42262_text {
  3158. border-width:0px;
  3159. word-wrap:break-word;
  3160. text-transform:none;
  3161. visibility:hidden;
  3162. }
  3163. #u42263_img {
  3164. border-width:0px;
  3165. position:absolute;
  3166. left:0px;
  3167. top:0px;
  3168. width:216px;
  3169. height:34px;
  3170. }
  3171. #u42263 {
  3172. border-width:0px;
  3173. position:absolute;
  3174. left:542px;
  3175. top:204px;
  3176. width:216px;
  3177. height:34px;
  3178. display:flex;
  3179. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3180. font-weight:400;
  3181. font-style:normal;
  3182. font-size:14px;
  3183. line-height:30px;
  3184. }
  3185. #u42263 .text {
  3186. position:absolute;
  3187. align-self:center;
  3188. padding:2px 0px 2px 0px;
  3189. box-sizing:border-box;
  3190. width:100%;
  3191. }
  3192. #u42263_text {
  3193. border-width:0px;
  3194. word-wrap:break-word;
  3195. text-transform:none;
  3196. visibility:hidden;
  3197. }
  3198. #u42264_img {
  3199. border-width:0px;
  3200. position:absolute;
  3201. left:0px;
  3202. top:0px;
  3203. width:216px;
  3204. height:34px;
  3205. }
  3206. #u42264 {
  3207. border-width:0px;
  3208. position:absolute;
  3209. left:758px;
  3210. top:204px;
  3211. width:216px;
  3212. height:34px;
  3213. display:flex;
  3214. font-size:14px;
  3215. line-height:30px;
  3216. }
  3217. #u42264 .text {
  3218. position:absolute;
  3219. align-self:center;
  3220. padding:2px 0px 2px 0px;
  3221. box-sizing:border-box;
  3222. width:100%;
  3223. }
  3224. #u42264_text {
  3225. border-width:0px;
  3226. word-wrap:break-word;
  3227. text-transform:none;
  3228. visibility:hidden;
  3229. }
  3230. #u42265_img {
  3231. border-width:0px;
  3232. position:absolute;
  3233. left:0px;
  3234. top:0px;
  3235. width:216px;
  3236. height:34px;
  3237. }
  3238. #u42265 {
  3239. border-width:0px;
  3240. position:absolute;
  3241. left:974px;
  3242. top:204px;
  3243. width:216px;
  3244. height:34px;
  3245. display:flex;
  3246. font-size:14px;
  3247. line-height:30px;
  3248. }
  3249. #u42265 .text {
  3250. position:absolute;
  3251. align-self:center;
  3252. padding:2px 0px 2px 0px;
  3253. box-sizing:border-box;
  3254. width:100%;
  3255. }
  3256. #u42265_text {
  3257. border-width:0px;
  3258. word-wrap:break-word;
  3259. text-transform:none;
  3260. visibility:hidden;
  3261. }
  3262. #u42266 {
  3263. border-width:0px;
  3264. position:absolute;
  3265. left:0px;
  3266. top:0px;
  3267. width:0px;
  3268. height:0px;
  3269. }
  3270. #u42267_div {
  3271. border-width:0px;
  3272. position:absolute;
  3273. left:0px;
  3274. top:0px;
  3275. width:140px;
  3276. height:30px;
  3277. background:inherit;
  3278. background-color:rgba(255, 255, 255, 1);
  3279. box-sizing:border-box;
  3280. border-width:1px;
  3281. border-style:solid;
  3282. border-color:rgba(201, 201, 201, 1);
  3283. border-radius:4px;
  3284. -moz-box-shadow:none;
  3285. -webkit-box-shadow:none;
  3286. box-shadow:none;
  3287. font-family:'Microsoft YaHei', sans-serif;
  3288. font-weight:400;
  3289. font-style:normal;
  3290. font-size:14px;
  3291. color:#CCCCCC;
  3292. text-align:left;
  3293. }
  3294. #u42267 {
  3295. border-width:0px;
  3296. position:absolute;
  3297. left:502px;
  3298. top:570px;
  3299. width:140px;
  3300. height:30px;
  3301. display:flex;
  3302. font-family:'Microsoft YaHei', sans-serif;
  3303. font-weight:400;
  3304. font-style:normal;
  3305. font-size:14px;
  3306. color:#CCCCCC;
  3307. text-align:left;
  3308. }
  3309. #u42267 .text {
  3310. position:absolute;
  3311. align-self:center;
  3312. padding:2px 8px 2px 8px;
  3313. box-sizing:border-box;
  3314. width:100%;
  3315. }
  3316. #u42267_text {
  3317. border-width:0px;
  3318. word-wrap:break-word;
  3319. text-transform:none;
  3320. visibility:hidden;
  3321. }
  3322. #u42268_input {
  3323. position:absolute;
  3324. left:0px;
  3325. top:0px;
  3326. width:131px;
  3327. height:28px;
  3328. padding:2px 2px 2px 2px;
  3329. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3330. font-weight:400;
  3331. font-style:normal;
  3332. font-size:14px;
  3333. letter-spacing:normal;
  3334. color:#000000;
  3335. vertical-align:none;
  3336. text-align:left;
  3337. text-transform:none;
  3338. background-color:transparent;
  3339. border-color:transparent;
  3340. }
  3341. #u42268_input.disabled {
  3342. position:absolute;
  3343. left:0px;
  3344. top:0px;
  3345. width:131px;
  3346. height:28px;
  3347. padding:2px 2px 2px 2px;
  3348. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3349. font-weight:400;
  3350. font-style:normal;
  3351. font-size:14px;
  3352. letter-spacing:normal;
  3353. color:#000000;
  3354. vertical-align:none;
  3355. text-align:left;
  3356. text-transform:none;
  3357. background-color:transparent;
  3358. border-color:transparent;
  3359. }
  3360. #u42268_div {
  3361. border-width:0px;
  3362. position:absolute;
  3363. left:0px;
  3364. top:0px;
  3365. width:131px;
  3366. height:28px;
  3367. background:inherit;
  3368. background-color:rgba(255, 255, 255, 1);
  3369. border:none;
  3370. border-radius:0px;
  3371. -moz-box-shadow:none;
  3372. -webkit-box-shadow:none;
  3373. box-shadow:none;
  3374. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3375. font-weight:400;
  3376. font-style:normal;
  3377. font-size:14px;
  3378. }
  3379. #u42268 {
  3380. border-width:0px;
  3381. position:absolute;
  3382. left:507px;
  3383. top:571px;
  3384. width:131px;
  3385. height:28px;
  3386. display:flex;
  3387. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3388. font-weight:400;
  3389. font-style:normal;
  3390. font-size:14px;
  3391. }
  3392. #u42268 .text {
  3393. position:absolute;
  3394. align-self:center;
  3395. padding:2px 2px 2px 2px;
  3396. box-sizing:border-box;
  3397. width:100%;
  3398. }
  3399. #u42268_div.disabled {
  3400. border-width:0px;
  3401. position:absolute;
  3402. left:0px;
  3403. top:0px;
  3404. width:131px;
  3405. height:28px;
  3406. background:inherit;
  3407. background-color:rgba(240, 240, 240, 1);
  3408. border:none;
  3409. border-radius:0px;
  3410. -moz-box-shadow:none;
  3411. -webkit-box-shadow:none;
  3412. box-shadow:none;
  3413. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3414. font-weight:400;
  3415. font-style:normal;
  3416. font-size:14px;
  3417. }
  3418. #u42268.disabled {
  3419. }
  3420. #u42269 {
  3421. border-width:0px;
  3422. position:absolute;
  3423. left:0px;
  3424. top:0px;
  3425. width:0px;
  3426. height:0px;
  3427. }
  3428. #u42270_div {
  3429. border-width:0px;
  3430. position:absolute;
  3431. left:0px;
  3432. top:0px;
  3433. width:60px;
  3434. height:30px;
  3435. background:inherit;
  3436. background-color:rgba(24, 144, 255, 1);
  3437. border:none;
  3438. border-radius:4px;
  3439. -moz-box-shadow:none;
  3440. -webkit-box-shadow:none;
  3441. box-shadow:none;
  3442. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3443. font-weight:400;
  3444. font-style:normal;
  3445. font-size:14px;
  3446. color:#FFFFFF;
  3447. }
  3448. #u42270 {
  3449. border-width:0px;
  3450. position:absolute;
  3451. left:952px;
  3452. top:570px;
  3453. width:60px;
  3454. height:30px;
  3455. display:flex;
  3456. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3457. font-weight:400;
  3458. font-style:normal;
  3459. font-size:14px;
  3460. color:#FFFFFF;
  3461. }
  3462. #u42270 .text {
  3463. position:absolute;
  3464. align-self:center;
  3465. padding:2px 2px 2px 2px;
  3466. box-sizing:border-box;
  3467. width:100%;
  3468. }
  3469. #u42270_text {
  3470. border-width:0px;
  3471. word-wrap:break-word;
  3472. text-transform:none;
  3473. }
  3474. #u42271_div {
  3475. border-width:0px;
  3476. position:absolute;
  3477. left:0px;
  3478. top:0px;
  3479. width:60px;
  3480. height:30px;
  3481. background:inherit;
  3482. background-color:rgba(255, 255, 255, 1);
  3483. box-sizing:border-box;
  3484. border-width:1px;
  3485. border-style:solid;
  3486. border-color:rgba(170, 170, 170, 1);
  3487. border-radius:4px;
  3488. -moz-box-shadow:none;
  3489. -webkit-box-shadow:none;
  3490. box-shadow:none;
  3491. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3492. font-weight:400;
  3493. font-style:normal;
  3494. font-size:14px;
  3495. }
  3496. #u42271 {
  3497. border-width:0px;
  3498. position:absolute;
  3499. left:1022px;
  3500. top:570px;
  3501. width:60px;
  3502. height:30px;
  3503. display:flex;
  3504. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3505. font-weight:400;
  3506. font-style:normal;
  3507. font-size:14px;
  3508. }
  3509. #u42271 .text {
  3510. position:absolute;
  3511. align-self:center;
  3512. padding:2px 2px 2px 2px;
  3513. box-sizing:border-box;
  3514. width:100%;
  3515. }
  3516. #u42271_text {
  3517. border-width:0px;
  3518. word-wrap:break-word;
  3519. text-transform:none;
  3520. }
  3521. #u42272 {
  3522. border-width:0px;
  3523. position:absolute;
  3524. left:0px;
  3525. top:0px;
  3526. width:0px;
  3527. height:0px;
  3528. }
  3529. #u42273_div {
  3530. border-width:0px;
  3531. position:absolute;
  3532. left:0px;
  3533. top:0px;
  3534. width:140px;
  3535. height:30px;
  3536. background:inherit;
  3537. background-color:rgba(255, 255, 255, 1);
  3538. box-sizing:border-box;
  3539. border-width:1px;
  3540. border-style:solid;
  3541. border-color:rgba(215, 215, 215, 1);
  3542. border-radius:4px;
  3543. -moz-box-shadow:none;
  3544. -webkit-box-shadow:none;
  3545. box-shadow:none;
  3546. font-size:14px;
  3547. }
  3548. #u42273 {
  3549. border-width:0px;
  3550. position:absolute;
  3551. left:652px;
  3552. top:570px;
  3553. width:140px;
  3554. height:30px;
  3555. display:flex;
  3556. font-size:14px;
  3557. }
  3558. #u42273 .text {
  3559. position:absolute;
  3560. align-self:center;
  3561. padding:2px 2px 2px 2px;
  3562. box-sizing:border-box;
  3563. width:100%;
  3564. }
  3565. #u42273_text {
  3566. border-width:0px;
  3567. word-wrap:break-word;
  3568. text-transform:none;
  3569. visibility:hidden;
  3570. }
  3571. #u42274_input {
  3572. position:absolute;
  3573. left:0px;
  3574. top:0px;
  3575. width:134px;
  3576. height:23px;
  3577. padding:2px 2px 2px 2px;
  3578. font-family:'ArialMT', 'Arial', sans-serif;
  3579. font-weight:400;
  3580. font-style:normal;
  3581. font-size:14px;
  3582. letter-spacing:normal;
  3583. color:#AAAAAA;
  3584. vertical-align:none;
  3585. text-align:left;
  3586. text-transform:none;
  3587. background-color:transparent;
  3588. border-color:transparent;
  3589. }
  3590. #u42274_input.disabled {
  3591. position:absolute;
  3592. left:0px;
  3593. top:0px;
  3594. width:134px;
  3595. height:23px;
  3596. padding:2px 2px 2px 2px;
  3597. font-family:'ArialMT', 'Arial', sans-serif;
  3598. font-weight:400;
  3599. font-style:normal;
  3600. font-size:14px;
  3601. letter-spacing:normal;
  3602. color:#AAAAAA;
  3603. vertical-align:none;
  3604. text-align:left;
  3605. text-transform:none;
  3606. background-color:transparent;
  3607. border-color:transparent;
  3608. }
  3609. #u42274_div {
  3610. border-width:0px;
  3611. position:absolute;
  3612. left:0px;
  3613. top:0px;
  3614. width:134px;
  3615. height:23px;
  3616. background:inherit;
  3617. background-color:rgba(255, 255, 255, 1);
  3618. border:none;
  3619. border-radius:0px;
  3620. -moz-box-shadow:none;
  3621. -webkit-box-shadow:none;
  3622. box-shadow:none;
  3623. font-size:14px;
  3624. color:#AAAAAA;
  3625. }
  3626. #u42274 {
  3627. border-width:0px;
  3628. position:absolute;
  3629. left:656px;
  3630. top:572px;
  3631. width:134px;
  3632. height:23px;
  3633. display:flex;
  3634. font-size:14px;
  3635. color:#AAAAAA;
  3636. }
  3637. #u42274 .text {
  3638. position:absolute;
  3639. align-self:flex-start;
  3640. padding:2px 2px 2px 2px;
  3641. box-sizing:border-box;
  3642. width:100%;
  3643. }
  3644. #u42274_div.disabled {
  3645. border-width:0px;
  3646. position:absolute;
  3647. left:0px;
  3648. top:0px;
  3649. width:134px;
  3650. height:23px;
  3651. background:inherit;
  3652. background-color:rgba(240, 240, 240, 1);
  3653. border:none;
  3654. border-radius:0px;
  3655. -moz-box-shadow:none;
  3656. -webkit-box-shadow:none;
  3657. box-shadow:none;
  3658. font-size:14px;
  3659. color:#AAAAAA;
  3660. }
  3661. #u42274.disabled {
  3662. }
  3663. .u42274_input_option {
  3664. font-size:14px;
  3665. }
  3666. #u42275 {
  3667. border-width:0px;
  3668. position:absolute;
  3669. left:0px;
  3670. top:0px;
  3671. width:0px;
  3672. height:0px;
  3673. }
  3674. #u42276_div {
  3675. border-width:0px;
  3676. position:absolute;
  3677. left:0px;
  3678. top:0px;
  3679. width:140px;
  3680. height:30px;
  3681. background:inherit;
  3682. background-color:rgba(255, 255, 255, 1);
  3683. box-sizing:border-box;
  3684. border-width:1px;
  3685. border-style:solid;
  3686. border-color:rgba(215, 215, 215, 1);
  3687. border-radius:4px;
  3688. -moz-box-shadow:none;
  3689. -webkit-box-shadow:none;
  3690. box-shadow:none;
  3691. font-size:11px;
  3692. }
  3693. #u42276 {
  3694. border-width:0px;
  3695. position:absolute;
  3696. left:349px;
  3697. top:570px;
  3698. width:140px;
  3699. height:30px;
  3700. display:flex;
  3701. font-size:11px;
  3702. }
  3703. #u42276 .text {
  3704. position:absolute;
  3705. align-self:center;
  3706. padding:2px 2px 2px 2px;
  3707. box-sizing:border-box;
  3708. width:100%;
  3709. }
  3710. #u42276_text {
  3711. border-width:0px;
  3712. word-wrap:break-word;
  3713. text-transform:none;
  3714. visibility:hidden;
  3715. }
  3716. #u42277_input {
  3717. position:absolute;
  3718. left:0px;
  3719. top:0px;
  3720. width:126px;
  3721. height:23px;
  3722. padding:2px 2px 2px 2px;
  3723. font-family:'ArialMT', 'Arial', sans-serif;
  3724. font-weight:400;
  3725. font-style:normal;
  3726. font-size:11px;
  3727. letter-spacing:normal;
  3728. color:#AAAAAA;
  3729. vertical-align:none;
  3730. text-align:left;
  3731. text-transform:none;
  3732. background-color:transparent;
  3733. border-color:transparent;
  3734. }
  3735. #u42277_input.disabled {
  3736. position:absolute;
  3737. left:0px;
  3738. top:0px;
  3739. width:126px;
  3740. height:23px;
  3741. padding:2px 2px 2px 2px;
  3742. font-family:'ArialMT', 'Arial', sans-serif;
  3743. font-weight:400;
  3744. font-style:normal;
  3745. font-size:11px;
  3746. letter-spacing:normal;
  3747. color:#AAAAAA;
  3748. vertical-align:none;
  3749. text-align:left;
  3750. text-transform:none;
  3751. background-color:transparent;
  3752. border-color:transparent;
  3753. }
  3754. #u42277_div {
  3755. border-width:0px;
  3756. position:absolute;
  3757. left:0px;
  3758. top:0px;
  3759. width:126px;
  3760. height:23px;
  3761. background:inherit;
  3762. background-color:rgba(255, 255, 255, 1);
  3763. border:none;
  3764. border-radius:0px;
  3765. -moz-box-shadow:none;
  3766. -webkit-box-shadow:none;
  3767. box-shadow:none;
  3768. font-size:11px;
  3769. color:#AAAAAA;
  3770. }
  3771. #u42277 {
  3772. border-width:0px;
  3773. position:absolute;
  3774. left:356px;
  3775. top:572px;
  3776. width:126px;
  3777. height:23px;
  3778. display:flex;
  3779. font-size:11px;
  3780. color:#AAAAAA;
  3781. }
  3782. #u42277 .text {
  3783. position:absolute;
  3784. align-self:flex-start;
  3785. padding:2px 2px 2px 2px;
  3786. box-sizing:border-box;
  3787. width:100%;
  3788. }
  3789. #u42277_div.disabled {
  3790. border-width:0px;
  3791. position:absolute;
  3792. left:0px;
  3793. top:0px;
  3794. width:126px;
  3795. height:23px;
  3796. background:inherit;
  3797. background-color:rgba(240, 240, 240, 1);
  3798. border:none;
  3799. border-radius:0px;
  3800. -moz-box-shadow:none;
  3801. -webkit-box-shadow:none;
  3802. box-shadow:none;
  3803. font-size:11px;
  3804. color:#AAAAAA;
  3805. }
  3806. #u42277.disabled {
  3807. }
  3808. .u42277_input_option {
  3809. font-size:11px;
  3810. }
  3811. #u42278 {
  3812. border-width:0px;
  3813. position:absolute;
  3814. left:0px;
  3815. top:0px;
  3816. width:0px;
  3817. height:0px;
  3818. }
  3819. #u42279_div {
  3820. border-width:0px;
  3821. position:absolute;
  3822. left:0px;
  3823. top:0px;
  3824. width:140px;
  3825. height:30px;
  3826. background:inherit;
  3827. background-color:rgba(255, 255, 255, 1);
  3828. box-sizing:border-box;
  3829. border-width:1px;
  3830. border-style:solid;
  3831. border-color:rgba(215, 215, 215, 1);
  3832. border-radius:4px;
  3833. -moz-box-shadow:none;
  3834. -webkit-box-shadow:none;
  3835. box-shadow:none;
  3836. font-size:14px;
  3837. }
  3838. #u42279 {
  3839. border-width:0px;
  3840. position:absolute;
  3841. left:802px;
  3842. top:570px;
  3843. width:140px;
  3844. height:30px;
  3845. display:flex;
  3846. font-size:14px;
  3847. }
  3848. #u42279 .text {
  3849. position:absolute;
  3850. align-self:center;
  3851. padding:2px 2px 2px 2px;
  3852. box-sizing:border-box;
  3853. width:100%;
  3854. }
  3855. #u42279_text {
  3856. border-width:0px;
  3857. word-wrap:break-word;
  3858. text-transform:none;
  3859. visibility:hidden;
  3860. }
  3861. #u42280_input {
  3862. position:absolute;
  3863. left:0px;
  3864. top:0px;
  3865. width:134px;
  3866. height:23px;
  3867. padding:2px 2px 2px 2px;
  3868. font-family:'ArialMT', 'Arial', sans-serif;
  3869. font-weight:400;
  3870. font-style:normal;
  3871. font-size:14px;
  3872. letter-spacing:normal;
  3873. color:#AAAAAA;
  3874. vertical-align:none;
  3875. text-align:left;
  3876. text-transform:none;
  3877. background-color:transparent;
  3878. border-color:transparent;
  3879. }
  3880. #u42280_input.disabled {
  3881. position:absolute;
  3882. left:0px;
  3883. top:0px;
  3884. width:134px;
  3885. height:23px;
  3886. padding:2px 2px 2px 2px;
  3887. font-family:'ArialMT', 'Arial', sans-serif;
  3888. font-weight:400;
  3889. font-style:normal;
  3890. font-size:14px;
  3891. letter-spacing:normal;
  3892. color:#AAAAAA;
  3893. vertical-align:none;
  3894. text-align:left;
  3895. text-transform:none;
  3896. background-color:transparent;
  3897. border-color:transparent;
  3898. }
  3899. #u42280_div {
  3900. border-width:0px;
  3901. position:absolute;
  3902. left:0px;
  3903. top:0px;
  3904. width:134px;
  3905. height:23px;
  3906. background:inherit;
  3907. background-color:rgba(255, 255, 255, 1);
  3908. border:none;
  3909. border-radius:0px;
  3910. -moz-box-shadow:none;
  3911. -webkit-box-shadow:none;
  3912. box-shadow:none;
  3913. font-size:14px;
  3914. color:#AAAAAA;
  3915. }
  3916. #u42280 {
  3917. border-width:0px;
  3918. position:absolute;
  3919. left:806px;
  3920. top:572px;
  3921. width:134px;
  3922. height:23px;
  3923. display:flex;
  3924. font-size:14px;
  3925. color:#AAAAAA;
  3926. }
  3927. #u42280 .text {
  3928. position:absolute;
  3929. align-self:flex-start;
  3930. padding:2px 2px 2px 2px;
  3931. box-sizing:border-box;
  3932. width:100%;
  3933. }
  3934. #u42280_div.disabled {
  3935. border-width:0px;
  3936. position:absolute;
  3937. left:0px;
  3938. top:0px;
  3939. width:134px;
  3940. height:23px;
  3941. background:inherit;
  3942. background-color:rgba(240, 240, 240, 1);
  3943. border:none;
  3944. border-radius:0px;
  3945. -moz-box-shadow:none;
  3946. -webkit-box-shadow:none;
  3947. box-shadow:none;
  3948. font-size:14px;
  3949. color:#AAAAAA;
  3950. }
  3951. #u42280.disabled {
  3952. }
  3953. .u42280_input_option {
  3954. font-size:14px;
  3955. }
  3956. #u42281 {
  3957. border-width:0px;
  3958. position:absolute;
  3959. left:0px;
  3960. top:0px;
  3961. width:0px;
  3962. height:0px;
  3963. }
  3964. #u42282_div {
  3965. border-width:0px;
  3966. position:absolute;
  3967. left:0px;
  3968. top:0px;
  3969. width:200px;
  3970. height:1180px;
  3971. background:inherit;
  3972. background-color:rgba(255, 255, 255, 1);
  3973. border:none;
  3974. border-radius:0px;
  3975. -moz-box-shadow:none;
  3976. -webkit-box-shadow:none;
  3977. box-shadow:none;
  3978. }
  3979. #u42282 {
  3980. border-width:0px;
  3981. position:absolute;
  3982. left:120px;
  3983. top:50px;
  3984. width:200px;
  3985. height:1180px;
  3986. display:flex;
  3987. }
  3988. #u42282 .text {
  3989. position:absolute;
  3990. align-self:center;
  3991. padding:2px 2px 2px 2px;
  3992. box-sizing:border-box;
  3993. width:100%;
  3994. }
  3995. #u42282_text {
  3996. border-width:0px;
  3997. word-wrap:break-word;
  3998. text-transform:none;
  3999. visibility:hidden;
  4000. }
  4001. #u42283_div {
  4002. border-width:0px;
  4003. position:absolute;
  4004. left:0px;
  4005. top:0px;
  4006. width:200px;
  4007. height:60px;
  4008. background:inherit;
  4009. background-color:rgba(224, 231, 247, 1);
  4010. border:none;
  4011. border-radius:0px;
  4012. -moz-box-shadow:none;
  4013. -webkit-box-shadow:none;
  4014. box-shadow:none;
  4015. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  4016. font-weight:500;
  4017. font-style:normal;
  4018. font-size:18px;
  4019. }
  4020. #u42283 {
  4021. border-width:0px;
  4022. position:absolute;
  4023. left:120px;
  4024. top:50px;
  4025. width:200px;
  4026. height:60px;
  4027. display:flex;
  4028. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  4029. font-weight:500;
  4030. font-style:normal;
  4031. font-size:18px;
  4032. }
  4033. #u42283 .text {
  4034. position:absolute;
  4035. align-self:center;
  4036. padding:0px 0px 0px 20px;
  4037. box-sizing:border-box;
  4038. width:100%;
  4039. }
  4040. #u42283_text {
  4041. border-width:0px;
  4042. word-wrap:break-word;
  4043. text-transform:none;
  4044. }
  4045. #u42284_div {
  4046. border-width:0px;
  4047. position:absolute;
  4048. left:0px;
  4049. top:0px;
  4050. width:65px;
  4051. height:22px;
  4052. background:inherit;
  4053. background-color:rgba(255, 255, 255, 0);
  4054. border:none;
  4055. border-radius:0px;
  4056. -moz-box-shadow:none;
  4057. -webkit-box-shadow:none;
  4058. box-shadow:none;
  4059. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4060. font-weight:400;
  4061. font-style:normal;
  4062. font-size:16px;
  4063. }
  4064. #u42284 {
  4065. border-width:0px;
  4066. position:absolute;
  4067. left:147px;
  4068. top:161px;
  4069. width:65px;
  4070. height:22px;
  4071. display:flex;
  4072. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4073. font-weight:400;
  4074. font-style:normal;
  4075. font-size:16px;
  4076. }
  4077. #u42284 .text {
  4078. position:absolute;
  4079. align-self:flex-start;
  4080. padding:0px 0px 0px 0px;
  4081. box-sizing:border-box;
  4082. width:100%;
  4083. }
  4084. #u42284_text {
  4085. border-width:0px;
  4086. white-space:nowrap;
  4087. text-transform:none;
  4088. }
  4089. #u42285_div {
  4090. border-width:0px;
  4091. position:absolute;
  4092. left:0px;
  4093. top:0px;
  4094. width:65px;
  4095. height:22px;
  4096. background:inherit;
  4097. background-color:rgba(255, 255, 255, 0);
  4098. border:none;
  4099. border-radius:0px;
  4100. -moz-box-shadow:none;
  4101. -webkit-box-shadow:none;
  4102. box-shadow:none;
  4103. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4104. font-weight:400;
  4105. font-style:normal;
  4106. font-size:16px;
  4107. }
  4108. #u42285 {
  4109. border-width:0px;
  4110. position:absolute;
  4111. left:147px;
  4112. top:203px;
  4113. width:65px;
  4114. height:22px;
  4115. display:flex;
  4116. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4117. font-weight:400;
  4118. font-style:normal;
  4119. font-size:16px;
  4120. }
  4121. #u42285 .text {
  4122. position:absolute;
  4123. align-self:flex-start;
  4124. padding:0px 0px 0px 0px;
  4125. box-sizing:border-box;
  4126. width:100%;
  4127. }
  4128. #u42285_text {
  4129. border-width:0px;
  4130. white-space:nowrap;
  4131. text-transform:none;
  4132. }
  4133. #u42286_div {
  4134. border-width:0px;
  4135. position:absolute;
  4136. left:0px;
  4137. top:0px;
  4138. width:49px;
  4139. height:17px;
  4140. background:inherit;
  4141. background-color:rgba(255, 255, 255, 0);
  4142. border:none;
  4143. border-radius:0px;
  4144. -moz-box-shadow:none;
  4145. -webkit-box-shadow:none;
  4146. box-shadow:none;
  4147. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4148. font-weight:400;
  4149. font-style:normal;
  4150. font-size:12px;
  4151. color:#AAAAAA;
  4152. }
  4153. #u42286 {
  4154. border-width:0px;
  4155. position:absolute;
  4156. left:147px;
  4157. top:125px;
  4158. width:49px;
  4159. height:17px;
  4160. display:flex;
  4161. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4162. font-weight:400;
  4163. font-style:normal;
  4164. font-size:12px;
  4165. color:#AAAAAA;
  4166. }
  4167. #u42286 .text {
  4168. position:absolute;
  4169. align-self:flex-start;
  4170. padding:0px 0px 0px 0px;
  4171. box-sizing:border-box;
  4172. width:100%;
  4173. }
  4174. #u42286_text {
  4175. border-width:0px;
  4176. white-space:nowrap;
  4177. text-transform:none;
  4178. }
  4179. #u42287_div {
  4180. border-width:0px;
  4181. position:absolute;
  4182. left:0px;
  4183. top:0px;
  4184. width:65px;
  4185. height:22px;
  4186. background:inherit;
  4187. background-color:rgba(255, 255, 255, 0);
  4188. border:none;
  4189. border-radius:0px;
  4190. -moz-box-shadow:none;
  4191. -webkit-box-shadow:none;
  4192. box-shadow:none;
  4193. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4194. font-weight:400;
  4195. font-style:normal;
  4196. font-size:16px;
  4197. }
  4198. #u42287 {
  4199. border-width:0px;
  4200. position:absolute;
  4201. left:147px;
  4202. top:303px;
  4203. width:65px;
  4204. height:22px;
  4205. display:flex;
  4206. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4207. font-weight:400;
  4208. font-style:normal;
  4209. font-size:16px;
  4210. }
  4211. #u42287 .text {
  4212. position:absolute;
  4213. align-self:flex-start;
  4214. padding:0px 0px 0px 0px;
  4215. box-sizing:border-box;
  4216. width:100%;
  4217. }
  4218. #u42287_text {
  4219. border-width:0px;
  4220. white-space:nowrap;
  4221. text-transform:none;
  4222. }
  4223. #u42288_div {
  4224. border-width:0px;
  4225. position:absolute;
  4226. left:0px;
  4227. top:0px;
  4228. width:49px;
  4229. height:17px;
  4230. background:inherit;
  4231. background-color:rgba(255, 255, 255, 0);
  4232. border:none;
  4233. border-radius:0px;
  4234. -moz-box-shadow:none;
  4235. -webkit-box-shadow:none;
  4236. box-shadow:none;
  4237. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4238. font-weight:400;
  4239. font-style:normal;
  4240. font-size:12px;
  4241. color:#AAAAAA;
  4242. }
  4243. #u42288 {
  4244. border-width:0px;
  4245. position:absolute;
  4246. left:147px;
  4247. top:267px;
  4248. width:49px;
  4249. height:17px;
  4250. display:flex;
  4251. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4252. font-weight:400;
  4253. font-style:normal;
  4254. font-size:12px;
  4255. color:#AAAAAA;
  4256. }
  4257. #u42288 .text {
  4258. position:absolute;
  4259. align-self:flex-start;
  4260. padding:0px 0px 0px 0px;
  4261. box-sizing:border-box;
  4262. width:100%;
  4263. }
  4264. #u42288_text {
  4265. border-width:0px;
  4266. white-space:nowrap;
  4267. text-transform:none;
  4268. }
  4269. #u42289_img {
  4270. border-width:0px;
  4271. position:absolute;
  4272. left:0px;
  4273. top:0px;
  4274. width:201px;
  4275. height:2px;
  4276. }
  4277. #u42289 {
  4278. border-width:0px;
  4279. position:absolute;
  4280. left:120px;
  4281. top:245px;
  4282. width:200px;
  4283. height:1px;
  4284. display:flex;
  4285. }
  4286. #u42289 .text {
  4287. position:absolute;
  4288. align-self:center;
  4289. padding:2px 2px 2px 2px;
  4290. box-sizing:border-box;
  4291. width:100%;
  4292. }
  4293. #u42289_text {
  4294. border-width:0px;
  4295. word-wrap:break-word;
  4296. text-transform:none;
  4297. visibility:hidden;
  4298. }
  4299. #u42290_div {
  4300. border-width:0px;
  4301. position:absolute;
  4302. left:0px;
  4303. top:0px;
  4304. width:65px;
  4305. height:22px;
  4306. background:inherit;
  4307. background-color:rgba(255, 255, 255, 0);
  4308. border:none;
  4309. border-radius:0px;
  4310. -moz-box-shadow:none;
  4311. -webkit-box-shadow:none;
  4312. box-shadow:none;
  4313. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4314. font-weight:400;
  4315. font-style:normal;
  4316. font-size:16px;
  4317. }
  4318. #u42290 {
  4319. border-width:0px;
  4320. position:absolute;
  4321. left:147px;
  4322. top:345px;
  4323. width:65px;
  4324. height:22px;
  4325. display:flex;
  4326. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4327. font-weight:400;
  4328. font-style:normal;
  4329. font-size:16px;
  4330. }
  4331. #u42290 .text {
  4332. position:absolute;
  4333. align-self:flex-start;
  4334. padding:0px 0px 0px 0px;
  4335. box-sizing:border-box;
  4336. width:100%;
  4337. }
  4338. #u42290_text {
  4339. border-width:0px;
  4340. white-space:nowrap;
  4341. text-transform:none;
  4342. }
  4343. #u42291_div {
  4344. border-width:0px;
  4345. position:absolute;
  4346. left:0px;
  4347. top:0px;
  4348. width:81px;
  4349. height:22px;
  4350. background:inherit;
  4351. background-color:rgba(255, 255, 255, 0);
  4352. border:none;
  4353. border-radius:0px;
  4354. -moz-box-shadow:none;
  4355. -webkit-box-shadow:none;
  4356. box-shadow:none;
  4357. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4358. font-weight:400;
  4359. font-style:normal;
  4360. font-size:16px;
  4361. }
  4362. #u42291 {
  4363. border-width:0px;
  4364. position:absolute;
  4365. left:147px;
  4366. top:490px;
  4367. width:81px;
  4368. height:22px;
  4369. display:flex;
  4370. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4371. font-weight:400;
  4372. font-style:normal;
  4373. font-size:16px;
  4374. }
  4375. #u42291 .text {
  4376. position:absolute;
  4377. align-self:flex-start;
  4378. padding:0px 0px 0px 0px;
  4379. box-sizing:border-box;
  4380. width:100%;
  4381. }
  4382. #u42291_text {
  4383. border-width:0px;
  4384. white-space:nowrap;
  4385. text-transform:none;
  4386. }
  4387. #u42292_div {
  4388. border-width:0px;
  4389. position:absolute;
  4390. left:0px;
  4391. top:0px;
  4392. width:61px;
  4393. height:17px;
  4394. background:inherit;
  4395. background-color:rgba(255, 255, 255, 0);
  4396. border:none;
  4397. border-radius:0px;
  4398. -moz-box-shadow:none;
  4399. -webkit-box-shadow:none;
  4400. box-shadow:none;
  4401. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4402. font-weight:400;
  4403. font-style:normal;
  4404. font-size:12px;
  4405. color:#AAAAAA;
  4406. }
  4407. #u42292 {
  4408. border-width:0px;
  4409. position:absolute;
  4410. left:147px;
  4411. top:454px;
  4412. width:61px;
  4413. height:17px;
  4414. display:flex;
  4415. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4416. font-weight:400;
  4417. font-style:normal;
  4418. font-size:12px;
  4419. color:#AAAAAA;
  4420. }
  4421. #u42292 .text {
  4422. position:absolute;
  4423. align-self:flex-start;
  4424. padding:0px 0px 0px 0px;
  4425. box-sizing:border-box;
  4426. width:100%;
  4427. }
  4428. #u42292_text {
  4429. border-width:0px;
  4430. white-space:nowrap;
  4431. text-transform:none;
  4432. }
  4433. #u42293_img {
  4434. border-width:0px;
  4435. position:absolute;
  4436. left:0px;
  4437. top:0px;
  4438. width:201px;
  4439. height:2px;
  4440. }
  4441. #u42293 {
  4442. border-width:0px;
  4443. position:absolute;
  4444. left:120px;
  4445. top:432px;
  4446. width:200px;
  4447. height:1px;
  4448. display:flex;
  4449. }
  4450. #u42293 .text {
  4451. position:absolute;
  4452. align-self:center;
  4453. padding:2px 2px 2px 2px;
  4454. box-sizing:border-box;
  4455. width:100%;
  4456. }
  4457. #u42293_text {
  4458. border-width:0px;
  4459. word-wrap:break-word;
  4460. text-transform:none;
  4461. visibility:hidden;
  4462. }
  4463. #u42294_div {
  4464. border-width:0px;
  4465. position:absolute;
  4466. left:0px;
  4467. top:0px;
  4468. width:65px;
  4469. height:22px;
  4470. background:inherit;
  4471. background-color:rgba(255, 255, 255, 0);
  4472. border:none;
  4473. border-radius:0px;
  4474. -moz-box-shadow:none;
  4475. -webkit-box-shadow:none;
  4476. box-shadow:none;
  4477. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4478. font-weight:400;
  4479. font-style:normal;
  4480. font-size:16px;
  4481. }
  4482. #u42294 {
  4483. border-width:0px;
  4484. position:absolute;
  4485. left:147px;
  4486. top:532px;
  4487. width:65px;
  4488. height:22px;
  4489. display:flex;
  4490. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4491. font-weight:400;
  4492. font-style:normal;
  4493. font-size:16px;
  4494. }
  4495. #u42294 .text {
  4496. position:absolute;
  4497. align-self:flex-start;
  4498. padding:0px 0px 0px 0px;
  4499. box-sizing:border-box;
  4500. width:100%;
  4501. }
  4502. #u42294_text {
  4503. border-width:0px;
  4504. white-space:nowrap;
  4505. text-transform:none;
  4506. }
  4507. #u42295_div {
  4508. border-width:0px;
  4509. position:absolute;
  4510. left:0px;
  4511. top:0px;
  4512. width:65px;
  4513. height:22px;
  4514. background:inherit;
  4515. background-color:rgba(255, 255, 255, 0);
  4516. border:none;
  4517. border-radius:0px;
  4518. -moz-box-shadow:none;
  4519. -webkit-box-shadow:none;
  4520. box-shadow:none;
  4521. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4522. font-weight:400;
  4523. font-style:normal;
  4524. font-size:16px;
  4525. }
  4526. #u42295 {
  4527. border-width:0px;
  4528. position:absolute;
  4529. left:147px;
  4530. top:574px;
  4531. width:65px;
  4532. height:22px;
  4533. display:flex;
  4534. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4535. font-weight:400;
  4536. font-style:normal;
  4537. font-size:16px;
  4538. }
  4539. #u42295 .text {
  4540. position:absolute;
  4541. align-self:flex-start;
  4542. padding:0px 0px 0px 0px;
  4543. box-sizing:border-box;
  4544. width:100%;
  4545. }
  4546. #u42295_text {
  4547. border-width:0px;
  4548. white-space:nowrap;
  4549. text-transform:none;
  4550. }
  4551. #u42296_div {
  4552. border-width:0px;
  4553. position:absolute;
  4554. left:0px;
  4555. top:0px;
  4556. width:65px;
  4557. height:22px;
  4558. background:inherit;
  4559. background-color:rgba(255, 255, 255, 0);
  4560. border:none;
  4561. border-radius:0px;
  4562. -moz-box-shadow:none;
  4563. -webkit-box-shadow:none;
  4564. box-shadow:none;
  4565. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4566. font-weight:400;
  4567. font-style:normal;
  4568. font-size:16px;
  4569. }
  4570. #u42296 {
  4571. border-width:0px;
  4572. position:absolute;
  4573. left:147px;
  4574. top:392px;
  4575. width:65px;
  4576. height:22px;
  4577. display:flex;
  4578. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4579. font-weight:400;
  4580. font-style:normal;
  4581. font-size:16px;
  4582. }
  4583. #u42296 .text {
  4584. position:absolute;
  4585. align-self:flex-start;
  4586. padding:0px 0px 0px 0px;
  4587. box-sizing:border-box;
  4588. width:100%;
  4589. }
  4590. #u42296_text {
  4591. border-width:0px;
  4592. white-space:nowrap;
  4593. text-transform:none;
  4594. }
  4595. #u42297_div {
  4596. border-width:0px;
  4597. position:absolute;
  4598. left:0px;
  4599. top:0px;
  4600. width:65px;
  4601. height:22px;
  4602. background:inherit;
  4603. background-color:rgba(255, 255, 255, 0);
  4604. border:none;
  4605. border-radius:0px;
  4606. -moz-box-shadow:none;
  4607. -webkit-box-shadow:none;
  4608. box-shadow:none;
  4609. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4610. font-weight:400;
  4611. font-style:normal;
  4612. font-size:16px;
  4613. }
  4614. #u42297 {
  4615. border-width:0px;
  4616. position:absolute;
  4617. left:147px;
  4618. top:616px;
  4619. width:65px;
  4620. height:22px;
  4621. display:flex;
  4622. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4623. font-weight:400;
  4624. font-style:normal;
  4625. font-size:16px;
  4626. }
  4627. #u42297 .text {
  4628. position:absolute;
  4629. align-self:flex-start;
  4630. padding:0px 0px 0px 0px;
  4631. box-sizing:border-box;
  4632. width:100%;
  4633. }
  4634. #u42297_text {
  4635. border-width:0px;
  4636. white-space:nowrap;
  4637. text-transform:none;
  4638. }