styles.css 90 KB

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