styles.css 88 KB

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