styles.css 79 KB

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