styles.css 88 KB

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