styles.css 89 KB

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