styles.css 72 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861
  1. body {
  2. margin:0px;
  3. background-image:none;
  4. position:relative;
  5. left:-30px;
  6. width:1600px;
  7. margin-left:auto;
  8. margin-right:auto;
  9. text-align:left;
  10. }
  11. .form_sketch {
  12. border-color:transparent;
  13. background-color:transparent;
  14. }
  15. #base {
  16. position:absolute;
  17. z-index:0;
  18. }
  19. #u36137 {
  20. border-width:0px;
  21. position:absolute;
  22. left:0px;
  23. top:0px;
  24. width:0px;
  25. height:0px;
  26. }
  27. #u36138_div {
  28. border-width:0px;
  29. position:absolute;
  30. left:0px;
  31. top:0px;
  32. width:1600px;
  33. height:1200px;
  34. background:inherit;
  35. background-color:rgba(242, 242, 242, 1);
  36. border:none;
  37. border-radius:0px;
  38. -moz-box-shadow:0px 0px 3px rgba(127, 127, 127, 0.349019607843137);
  39. -webkit-box-shadow:0px 0px 3px rgba(127, 127, 127, 0.349019607843137);
  40. box-shadow:0px 0px 3px rgba(127, 127, 127, 0.349019607843137);
  41. }
  42. #u36138 {
  43. border-width:0px;
  44. position:absolute;
  45. left:30px;
  46. top:14px;
  47. width:1600px;
  48. height:1200px;
  49. display:flex;
  50. }
  51. #u36138 .text {
  52. position:absolute;
  53. align-self:center;
  54. padding:2px 2px 2px 2px;
  55. box-sizing:border-box;
  56. width:100%;
  57. }
  58. #u36138_text {
  59. border-width:0px;
  60. word-wrap:break-word;
  61. text-transform:none;
  62. visibility:hidden;
  63. }
  64. #u36139_div {
  65. border-width:0px;
  66. position:absolute;
  67. left:0px;
  68. top:0px;
  69. width:278px;
  70. height:1200px;
  71. background:inherit;
  72. background-color:rgba(255, 255, 255, 1);
  73. box-sizing:border-box;
  74. border-width:1px;
  75. border-style:solid;
  76. border-color:rgba(215, 215, 215, 1);
  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:14px;
  85. color:#AAAAAA;
  86. text-align:center;
  87. line-height:30px;
  88. }
  89. #u36139 {
  90. border-width:0px;
  91. position:absolute;
  92. left:30px;
  93. top:14px;
  94. width:278px;
  95. height:1200px;
  96. display:flex;
  97. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  98. font-weight:400;
  99. font-style:normal;
  100. font-size:14px;
  101. color:#AAAAAA;
  102. text-align:center;
  103. line-height:30px;
  104. }
  105. #u36139 .text {
  106. position:absolute;
  107. align-self:center;
  108. padding:5px 10px 5px 10px;
  109. box-sizing:border-box;
  110. width:100%;
  111. }
  112. #u36139_text {
  113. border-width:0px;
  114. word-wrap:break-word;
  115. text-transform:none;
  116. visibility:hidden;
  117. }
  118. #u36140_div {
  119. border-width:0px;
  120. position:absolute;
  121. left:0px;
  122. top:0px;
  123. width:1600px;
  124. height:60px;
  125. background:inherit;
  126. background-color:rgba(255, 255, 255, 1);
  127. border:none;
  128. border-radius:0px;
  129. -moz-box-shadow:0px 0px 2px rgba(0, 0, 0, 0.349019607843137);
  130. -webkit-box-shadow:0px 0px 2px rgba(0, 0, 0, 0.349019607843137);
  131. box-shadow:0px 0px 2px rgba(0, 0, 0, 0.349019607843137);
  132. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  133. font-weight:400;
  134. font-style:normal;
  135. font-size:14px;
  136. color:#AAAAAA;
  137. text-align:center;
  138. line-height:30px;
  139. }
  140. #u36140 {
  141. border-width:0px;
  142. position:absolute;
  143. left:30px;
  144. top:14px;
  145. width:1600px;
  146. height:60px;
  147. display:flex;
  148. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  149. font-weight:400;
  150. font-style:normal;
  151. font-size:14px;
  152. color:#AAAAAA;
  153. text-align:center;
  154. line-height:30px;
  155. }
  156. #u36140 .text {
  157. position:absolute;
  158. align-self:center;
  159. padding:5px 10px 5px 10px;
  160. box-sizing:border-box;
  161. width:100%;
  162. }
  163. #u36140_text {
  164. border-width:0px;
  165. word-wrap:break-word;
  166. text-transform:none;
  167. visibility:hidden;
  168. }
  169. #u36141_div {
  170. border-width:0px;
  171. position:absolute;
  172. left:0px;
  173. top:0px;
  174. width:127px;
  175. height:60px;
  176. background:inherit;
  177. background-color:rgba(255, 255, 255, 0);
  178. border:none;
  179. border-left:0px;
  180. border-top:0px;
  181. border-right:0px;
  182. border-radius:0px;
  183. border-bottom-right-radius:0px;
  184. border-bottom-left-radius:0px;
  185. -moz-box-shadow:none;
  186. -webkit-box-shadow:none;
  187. box-shadow:none;
  188. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  189. font-weight:500;
  190. font-style:normal;
  191. font-size:18px;
  192. }
  193. #u36141 {
  194. border-width:0px;
  195. position:absolute;
  196. left:52px;
  197. top:14px;
  198. width:127px;
  199. height:60px;
  200. display:flex;
  201. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  202. font-weight:500;
  203. font-style:normal;
  204. font-size:18px;
  205. }
  206. #u36141 .text {
  207. position:absolute;
  208. align-self:center;
  209. padding:5px 0px 5px 0px;
  210. box-sizing:border-box;
  211. width:100%;
  212. }
  213. #u36141_text {
  214. border-width:0px;
  215. white-space:nowrap;
  216. text-transform:none;
  217. }
  218. #u36142_div {
  219. border-width:0px;
  220. position:absolute;
  221. left:0px;
  222. top:0px;
  223. width:60px;
  224. height:30px;
  225. background:inherit;
  226. background-color:rgba(25, 140, 251, 1);
  227. border:none;
  228. border-radius:4px;
  229. -moz-box-shadow:none;
  230. -webkit-box-shadow:none;
  231. box-shadow:none;
  232. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  233. font-weight:400;
  234. font-style:normal;
  235. font-size:14px;
  236. color:#FFFFFF;
  237. }
  238. #u36142 {
  239. border-width:0px;
  240. position:absolute;
  241. left:1530px;
  242. top:29px;
  243. width:60px;
  244. height:30px;
  245. display:flex;
  246. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  247. font-weight:400;
  248. font-style:normal;
  249. font-size:14px;
  250. color:#FFFFFF;
  251. }
  252. #u36142 .text {
  253. position:absolute;
  254. align-self:center;
  255. padding:2px 2px 2px 2px;
  256. box-sizing:border-box;
  257. width:100%;
  258. }
  259. #u36142_text {
  260. border-width:0px;
  261. word-wrap:break-word;
  262. text-transform:none;
  263. }
  264. #u36143_div {
  265. border-width:0px;
  266. position:absolute;
  267. left:0px;
  268. top:0px;
  269. width:1020px;
  270. height:130px;
  271. background:inherit;
  272. background-color:rgba(255, 255, 255, 1);
  273. border:none;
  274. border-radius:4px;
  275. -moz-box-shadow:0px 0px 2px rgba(0, 0, 0, 0.349019607843137);
  276. -webkit-box-shadow:0px 0px 2px rgba(0, 0, 0, 0.349019607843137);
  277. box-shadow:0px 0px 2px rgba(0, 0, 0, 0.349019607843137);
  278. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  279. font-weight:400;
  280. font-style:normal;
  281. font-size:14px;
  282. color:#AAAAAA;
  283. line-height:30px;
  284. }
  285. #u36143 {
  286. border-width:0px;
  287. position:absolute;
  288. left:319px;
  289. top:87px;
  290. width:1020px;
  291. height:130px;
  292. display:flex;
  293. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  294. font-weight:400;
  295. font-style:normal;
  296. font-size:14px;
  297. color:#AAAAAA;
  298. line-height:30px;
  299. }
  300. #u36143 .text {
  301. position:absolute;
  302. align-self:center;
  303. padding:5px 10px 5px 10px;
  304. box-sizing:border-box;
  305. width:100%;
  306. }
  307. #u36143_text {
  308. border-width:0px;
  309. word-wrap:break-word;
  310. text-transform:none;
  311. visibility:hidden;
  312. }
  313. #u36144_input {
  314. position:absolute;
  315. left:0px;
  316. top:0px;
  317. width:946px;
  318. height:50px;
  319. padding:2px 2px 2px 2px;
  320. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  321. font-weight:400;
  322. font-style:normal;
  323. font-size:18px;
  324. letter-spacing:normal;
  325. color:#000000;
  326. vertical-align:none;
  327. text-align:left;
  328. text-transform:none;
  329. background-color:transparent;
  330. border-color:transparent;
  331. }
  332. #u36144_input.disabled {
  333. position:absolute;
  334. left:0px;
  335. top:0px;
  336. width:946px;
  337. height:50px;
  338. padding:2px 2px 2px 2px;
  339. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  340. font-weight:400;
  341. font-style:normal;
  342. font-size:18px;
  343. letter-spacing:normal;
  344. color:#000000;
  345. vertical-align:none;
  346. text-align:left;
  347. text-transform:none;
  348. background-color:transparent;
  349. border-color:transparent;
  350. }
  351. #u36144_div {
  352. border-width:0px;
  353. position:absolute;
  354. left:0px;
  355. top:0px;
  356. width:946px;
  357. height:50px;
  358. background:inherit;
  359. background-color:rgba(255, 255, 255, 0);
  360. border:none;
  361. border-radius:0px;
  362. -moz-box-shadow:none;
  363. -webkit-box-shadow:none;
  364. box-shadow:none;
  365. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  366. font-weight:400;
  367. font-style:normal;
  368. font-size:18px;
  369. }
  370. #u36144 {
  371. border-width:0px;
  372. position:absolute;
  373. left:347px;
  374. top:97px;
  375. width:946px;
  376. height:50px;
  377. display:flex;
  378. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  379. font-weight:400;
  380. font-style:normal;
  381. font-size:18px;
  382. }
  383. #u36144 .text {
  384. position:absolute;
  385. align-self:center;
  386. padding:2px 2px 2px 2px;
  387. box-sizing:border-box;
  388. width:100%;
  389. }
  390. #u36144_div.disabled {
  391. border-width:0px;
  392. position:absolute;
  393. left:0px;
  394. top:0px;
  395. width:946px;
  396. height:50px;
  397. background:inherit;
  398. background-color:rgba(240, 240, 240, 1);
  399. border:none;
  400. border-radius:0px;
  401. -moz-box-shadow:none;
  402. -webkit-box-shadow:none;
  403. box-shadow:none;
  404. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  405. font-weight:400;
  406. font-style:normal;
  407. font-size:18px;
  408. }
  409. #u36144.disabled {
  410. }
  411. #u36145_input {
  412. position:absolute;
  413. left:0px;
  414. top:0px;
  415. width:946px;
  416. height:50px;
  417. padding:2px 2px 2px 2px;
  418. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  419. font-weight:400;
  420. font-style:normal;
  421. font-size:14px;
  422. letter-spacing:normal;
  423. color:#7F7F7F;
  424. vertical-align:none;
  425. text-align:left;
  426. text-transform:none;
  427. background-color:transparent;
  428. border-color:transparent;
  429. }
  430. #u36145_input.disabled {
  431. position:absolute;
  432. left:0px;
  433. top:0px;
  434. width:946px;
  435. height:50px;
  436. padding:2px 2px 2px 2px;
  437. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  438. font-weight:400;
  439. font-style:normal;
  440. font-size:14px;
  441. letter-spacing:normal;
  442. color:#7F7F7F;
  443. vertical-align:none;
  444. text-align:left;
  445. text-transform:none;
  446. background-color:transparent;
  447. border-color:transparent;
  448. }
  449. #u36145_div {
  450. border-width:0px;
  451. position:absolute;
  452. left:0px;
  453. top:0px;
  454. width:946px;
  455. height:50px;
  456. background:inherit;
  457. background-color:rgba(255, 255, 255, 0);
  458. border:none;
  459. border-radius:0px;
  460. -moz-box-shadow:none;
  461. -webkit-box-shadow:none;
  462. box-shadow:none;
  463. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  464. font-weight:400;
  465. font-style:normal;
  466. font-size:14px;
  467. color:#7F7F7F;
  468. }
  469. #u36145 {
  470. border-width:0px;
  471. position:absolute;
  472. left:347px;
  473. top:147px;
  474. width:946px;
  475. height:50px;
  476. display:flex;
  477. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  478. font-weight:400;
  479. font-style:normal;
  480. font-size:14px;
  481. color:#7F7F7F;
  482. }
  483. #u36145 .text {
  484. position:absolute;
  485. align-self:center;
  486. padding:2px 2px 2px 2px;
  487. box-sizing:border-box;
  488. width:100%;
  489. }
  490. #u36145_div.disabled {
  491. border-width:0px;
  492. position:absolute;
  493. left:0px;
  494. top:0px;
  495. width:946px;
  496. height:50px;
  497. background:inherit;
  498. background-color:rgba(240, 240, 240, 1);
  499. border:none;
  500. border-radius:0px;
  501. -moz-box-shadow:none;
  502. -webkit-box-shadow:none;
  503. box-shadow:none;
  504. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  505. font-weight:400;
  506. font-style:normal;
  507. font-size:14px;
  508. color:#7F7F7F;
  509. }
  510. #u36145.disabled {
  511. }
  512. #u36146 {
  513. border-width:0px;
  514. position:absolute;
  515. left:0px;
  516. top:0px;
  517. width:0px;
  518. height:0px;
  519. }
  520. #u36147_img {
  521. border-width:0px;
  522. position:absolute;
  523. left:0px;
  524. top:0px;
  525. width:77px;
  526. height:21px;
  527. }
  528. #u36147 {
  529. border-width:0px;
  530. position:absolute;
  531. left:1118px;
  532. top:109px;
  533. width:77px;
  534. height:21px;
  535. display:flex;
  536. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  537. font-weight:400;
  538. font-style:normal;
  539. font-size:12px;
  540. }
  541. #u36147 .text {
  542. position:absolute;
  543. align-self:center;
  544. padding:2px 2px 2px 2px;
  545. box-sizing:border-box;
  546. width:100%;
  547. }
  548. #u36147_text {
  549. border-width:0px;
  550. white-space:nowrap;
  551. text-transform:none;
  552. }
  553. #u36148_img {
  554. border-width:0px;
  555. position:absolute;
  556. left:0px;
  557. top:0px;
  558. width:41px;
  559. height:21px;
  560. }
  561. #u36148 {
  562. border-width:0px;
  563. position:absolute;
  564. left:1215px;
  565. top:109px;
  566. width:41px;
  567. height:21px;
  568. display:flex;
  569. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  570. font-weight:400;
  571. font-style:normal;
  572. font-size:12px;
  573. }
  574. #u36148 .text {
  575. position:absolute;
  576. align-self:center;
  577. padding:2px 2px 2px 2px;
  578. box-sizing:border-box;
  579. width:100%;
  580. }
  581. #u36148_text {
  582. border-width:0px;
  583. white-space:nowrap;
  584. text-transform:none;
  585. }
  586. #u36149_img {
  587. border-width:0px;
  588. position:absolute;
  589. left:0px;
  590. top:0px;
  591. width:41px;
  592. height:21px;
  593. }
  594. #u36149 {
  595. border-width:0px;
  596. position:absolute;
  597. left:1266px;
  598. top:109px;
  599. width:41px;
  600. height:21px;
  601. display:flex;
  602. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  603. font-weight:400;
  604. font-style:normal;
  605. font-size:12px;
  606. color:#AAAAAA;
  607. }
  608. #u36149 .text {
  609. position:absolute;
  610. align-self:center;
  611. padding:2px 2px 2px 2px;
  612. box-sizing:border-box;
  613. width:100%;
  614. }
  615. #u36149_text {
  616. border-width:0px;
  617. white-space:nowrap;
  618. text-transform:none;
  619. }
  620. #u36150_div {
  621. border-width:0px;
  622. position:absolute;
  623. left:0px;
  624. top:0px;
  625. width:278px;
  626. height:40px;
  627. background:inherit;
  628. background-color:rgba(242, 242, 242, 1);
  629. box-sizing:border-box;
  630. border-width:1px;
  631. border-style:solid;
  632. border-color:rgba(215, 215, 215, 1);
  633. border-radius:0px;
  634. -moz-box-shadow:none;
  635. -webkit-box-shadow:none;
  636. box-shadow:none;
  637. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  638. font-weight:400;
  639. font-style:normal;
  640. font-size:14px;
  641. }
  642. #u36150 {
  643. border-width:0px;
  644. position:absolute;
  645. left:30px;
  646. top:74px;
  647. width:278px;
  648. height:40px;
  649. display:flex;
  650. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  651. font-weight:400;
  652. font-style:normal;
  653. font-size:14px;
  654. }
  655. #u36150 .text {
  656. position:absolute;
  657. align-self:center;
  658. padding:5px 0px 5px 20px;
  659. box-sizing:border-box;
  660. width:100%;
  661. }
  662. #u36150_text {
  663. border-width:0px;
  664. word-wrap:break-word;
  665. text-transform:none;
  666. }
  667. #u36151 {
  668. border-width:0px;
  669. position:absolute;
  670. left:0px;
  671. top:0px;
  672. width:0px;
  673. height:0px;
  674. }
  675. #u36152_div {
  676. border-width:0px;
  677. position:absolute;
  678. left:0px;
  679. top:0px;
  680. width:100px;
  681. height:27px;
  682. background:inherit;
  683. background-color:rgba(242, 242, 242, 0.16078431372549);
  684. box-sizing:border-box;
  685. border-width:1px;
  686. border-style:solid;
  687. border-color:rgba(215, 215, 215, 1);
  688. border-radius:2px;
  689. -moz-box-shadow:none;
  690. -webkit-box-shadow:none;
  691. box-shadow:none;
  692. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  693. font-weight:400;
  694. font-style:normal;
  695. font-size:12px;
  696. text-align:left;
  697. }
  698. #u36152 {
  699. border-width:0px;
  700. position:absolute;
  701. left:52px;
  702. top:165px;
  703. width:100px;
  704. height:27px;
  705. display:flex;
  706. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  707. font-weight:400;
  708. font-style:normal;
  709. font-size:12px;
  710. text-align:left;
  711. }
  712. #u36152 .text {
  713. position:absolute;
  714. align-self:center;
  715. padding:5px 15px 5px 30px;
  716. box-sizing:border-box;
  717. width:100%;
  718. }
  719. #u36152_text {
  720. border-width:0px;
  721. word-wrap:break-word;
  722. text-transform:none;
  723. }
  724. #u36153_img {
  725. border-width:0px;
  726. position:absolute;
  727. left:0px;
  728. top:0px;
  729. width:12px;
  730. height:12px;
  731. }
  732. #u36153 {
  733. border-width:0px;
  734. position:absolute;
  735. left:63px;
  736. top:172px;
  737. width:12px;
  738. height:12px;
  739. display:flex;
  740. }
  741. #u36153 .text {
  742. position:absolute;
  743. align-self:center;
  744. padding:2px 2px 2px 2px;
  745. box-sizing:border-box;
  746. width:100%;
  747. }
  748. #u36153_text {
  749. border-width:0px;
  750. word-wrap:break-word;
  751. text-transform:none;
  752. visibility:hidden;
  753. }
  754. #u36154 {
  755. border-width:0px;
  756. position:absolute;
  757. left:0px;
  758. top:0px;
  759. width:0px;
  760. height:0px;
  761. }
  762. #u36155_div {
  763. border-width:0px;
  764. position:absolute;
  765. left:0px;
  766. top:0px;
  767. width:100px;
  768. height:27px;
  769. background:inherit;
  770. background-color:rgba(242, 242, 242, 0.16078431372549);
  771. box-sizing:border-box;
  772. border-width:1px;
  773. border-style:solid;
  774. border-color:rgba(215, 215, 215, 1);
  775. border-radius:2px;
  776. -moz-box-shadow:none;
  777. -webkit-box-shadow:none;
  778. box-shadow:none;
  779. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  780. font-weight:400;
  781. font-style:normal;
  782. font-size:12px;
  783. text-align:left;
  784. }
  785. #u36155 {
  786. border-width:0px;
  787. position:absolute;
  788. left:52px;
  789. top:128px;
  790. width:100px;
  791. height:27px;
  792. display:flex;
  793. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  794. font-weight:400;
  795. font-style:normal;
  796. font-size:12px;
  797. text-align:left;
  798. }
  799. #u36155 .text {
  800. position:absolute;
  801. align-self:center;
  802. padding:5px 15px 5px 30px;
  803. box-sizing:border-box;
  804. width:100%;
  805. }
  806. #u36155_text {
  807. border-width:0px;
  808. word-wrap:break-word;
  809. text-transform:none;
  810. }
  811. #u36156_img {
  812. border-width:0px;
  813. position:absolute;
  814. left:0px;
  815. top:0px;
  816. width:12px;
  817. height:12px;
  818. }
  819. #u36156 {
  820. border-width:0px;
  821. position:absolute;
  822. left:63px;
  823. top:135px;
  824. width:12px;
  825. height:12px;
  826. display:flex;
  827. }
  828. #u36156 .text {
  829. position:absolute;
  830. align-self:center;
  831. padding:2px 2px 2px 2px;
  832. box-sizing:border-box;
  833. width:100%;
  834. }
  835. #u36156_text {
  836. border-width:0px;
  837. word-wrap:break-word;
  838. text-transform:none;
  839. visibility:hidden;
  840. }
  841. #u36157 {
  842. border-width:0px;
  843. position:absolute;
  844. left:0px;
  845. top:0px;
  846. width:0px;
  847. height:0px;
  848. }
  849. #u36158_div {
  850. border-width:0px;
  851. position:absolute;
  852. left:0px;
  853. top:0px;
  854. width:100px;
  855. height:27px;
  856. background:inherit;
  857. background-color:rgba(242, 242, 242, 0.16078431372549);
  858. box-sizing:border-box;
  859. border-width:1px;
  860. border-style:solid;
  861. border-color:rgba(215, 215, 215, 1);
  862. border-radius:2px;
  863. -moz-box-shadow:none;
  864. -webkit-box-shadow:none;
  865. box-shadow:none;
  866. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  867. font-weight:400;
  868. font-style:normal;
  869. font-size:12px;
  870. text-align:left;
  871. }
  872. #u36158 {
  873. border-width:0px;
  874. position:absolute;
  875. left:176px;
  876. top:128px;
  877. width:100px;
  878. height:27px;
  879. display:flex;
  880. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  881. font-weight:400;
  882. font-style:normal;
  883. font-size:12px;
  884. text-align:left;
  885. }
  886. #u36158 .text {
  887. position:absolute;
  888. align-self:center;
  889. padding:5px 15px 5px 30px;
  890. box-sizing:border-box;
  891. width:100%;
  892. }
  893. #u36158_text {
  894. border-width:0px;
  895. word-wrap:break-word;
  896. text-transform:none;
  897. }
  898. #u36159_img {
  899. border-width:0px;
  900. position:absolute;
  901. left:0px;
  902. top:0px;
  903. width:12px;
  904. height:12px;
  905. }
  906. #u36159 {
  907. border-width:0px;
  908. position:absolute;
  909. left:187px;
  910. top:135px;
  911. width:12px;
  912. height:12px;
  913. display:flex;
  914. }
  915. #u36159 .text {
  916. position:absolute;
  917. align-self:center;
  918. padding:2px 2px 2px 2px;
  919. box-sizing:border-box;
  920. width:100%;
  921. }
  922. #u36159_text {
  923. border-width:0px;
  924. word-wrap:break-word;
  925. text-transform:none;
  926. visibility:hidden;
  927. }
  928. #u36160 {
  929. border-width:0px;
  930. position:absolute;
  931. left:0px;
  932. top:0px;
  933. width:0px;
  934. height:0px;
  935. }
  936. #u36161_div {
  937. border-width:0px;
  938. position:absolute;
  939. left:0px;
  940. top:0px;
  941. width:100px;
  942. height:27px;
  943. background:inherit;
  944. background-color:rgba(242, 242, 242, 0.16078431372549);
  945. box-sizing:border-box;
  946. border-width:1px;
  947. border-style:solid;
  948. border-color:rgba(215, 215, 215, 1);
  949. border-radius:2px;
  950. -moz-box-shadow:none;
  951. -webkit-box-shadow:none;
  952. box-shadow:none;
  953. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  954. font-weight:400;
  955. font-style:normal;
  956. font-size:12px;
  957. text-align:left;
  958. }
  959. #u36161 {
  960. border-width:0px;
  961. position:absolute;
  962. left:176px;
  963. top:165px;
  964. width:100px;
  965. height:27px;
  966. display:flex;
  967. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  968. font-weight:400;
  969. font-style:normal;
  970. font-size:12px;
  971. text-align:left;
  972. }
  973. #u36161 .text {
  974. position:absolute;
  975. align-self:center;
  976. padding:5px 15px 5px 30px;
  977. box-sizing:border-box;
  978. width:100%;
  979. }
  980. #u36161_text {
  981. border-width:0px;
  982. word-wrap:break-word;
  983. text-transform:none;
  984. }
  985. #u36162_img {
  986. border-width:0px;
  987. position:absolute;
  988. left:0px;
  989. top:0px;
  990. width:12px;
  991. height:12px;
  992. }
  993. #u36162 {
  994. border-width:0px;
  995. position:absolute;
  996. left:187px;
  997. top:172px;
  998. width:12px;
  999. height:12px;
  1000. display:flex;
  1001. }
  1002. #u36162 .text {
  1003. position:absolute;
  1004. align-self:center;
  1005. padding:2px 2px 2px 2px;
  1006. box-sizing:border-box;
  1007. width:100%;
  1008. }
  1009. #u36162_text {
  1010. border-width:0px;
  1011. word-wrap:break-word;
  1012. text-transform:none;
  1013. visibility:hidden;
  1014. }
  1015. #u36163 {
  1016. border-width:0px;
  1017. position:absolute;
  1018. left:0px;
  1019. top:0px;
  1020. width:0px;
  1021. height:0px;
  1022. }
  1023. #u36164_div {
  1024. border-width:0px;
  1025. position:absolute;
  1026. left:0px;
  1027. top:0px;
  1028. width:100px;
  1029. height:27px;
  1030. background:inherit;
  1031. background-color:rgba(242, 242, 242, 0.16078431372549);
  1032. box-sizing:border-box;
  1033. border-width:1px;
  1034. border-style:solid;
  1035. border-color:rgba(215, 215, 215, 1);
  1036. border-radius:2px;
  1037. -moz-box-shadow:none;
  1038. -webkit-box-shadow:none;
  1039. box-shadow:none;
  1040. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1041. font-weight:400;
  1042. font-style:normal;
  1043. font-size:12px;
  1044. text-align:left;
  1045. }
  1046. #u36164 {
  1047. border-width:0px;
  1048. position:absolute;
  1049. left:52px;
  1050. top:202px;
  1051. width:100px;
  1052. height:27px;
  1053. display:flex;
  1054. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1055. font-weight:400;
  1056. font-style:normal;
  1057. font-size:12px;
  1058. text-align:left;
  1059. }
  1060. #u36164 .text {
  1061. position:absolute;
  1062. align-self:center;
  1063. padding:5px 15px 5px 30px;
  1064. box-sizing:border-box;
  1065. width:100%;
  1066. }
  1067. #u36164_text {
  1068. border-width:0px;
  1069. word-wrap:break-word;
  1070. text-transform:none;
  1071. }
  1072. #u36165_img {
  1073. border-width:0px;
  1074. position:absolute;
  1075. left:0px;
  1076. top:0px;
  1077. width:12px;
  1078. height:12px;
  1079. }
  1080. #u36165 {
  1081. border-width:0px;
  1082. position:absolute;
  1083. left:63px;
  1084. top:209px;
  1085. width:12px;
  1086. height:12px;
  1087. display:flex;
  1088. }
  1089. #u36165 .text {
  1090. position:absolute;
  1091. align-self:center;
  1092. padding:2px 2px 2px 2px;
  1093. box-sizing:border-box;
  1094. width:100%;
  1095. }
  1096. #u36165_text {
  1097. border-width:0px;
  1098. word-wrap:break-word;
  1099. text-transform:none;
  1100. visibility:hidden;
  1101. }
  1102. #u36166 {
  1103. border-width:0px;
  1104. position:absolute;
  1105. left:0px;
  1106. top:0px;
  1107. width:0px;
  1108. height:0px;
  1109. }
  1110. #u36167_div {
  1111. border-width:0px;
  1112. position:absolute;
  1113. left:0px;
  1114. top:0px;
  1115. width:100px;
  1116. height:27px;
  1117. background:inherit;
  1118. background-color:rgba(242, 242, 242, 0.16078431372549);
  1119. box-sizing:border-box;
  1120. border-width:1px;
  1121. border-style:solid;
  1122. border-color:rgba(215, 215, 215, 1);
  1123. border-radius:2px;
  1124. -moz-box-shadow:none;
  1125. -webkit-box-shadow:none;
  1126. box-shadow:none;
  1127. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1128. font-weight:400;
  1129. font-style:normal;
  1130. font-size:12px;
  1131. text-align:left;
  1132. }
  1133. #u36167 {
  1134. border-width:0px;
  1135. position:absolute;
  1136. left:176px;
  1137. top:202px;
  1138. width:100px;
  1139. height:27px;
  1140. display:flex;
  1141. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1142. font-weight:400;
  1143. font-style:normal;
  1144. font-size:12px;
  1145. text-align:left;
  1146. }
  1147. #u36167 .text {
  1148. position:absolute;
  1149. align-self:center;
  1150. padding:5px 15px 5px 30px;
  1151. box-sizing:border-box;
  1152. width:100%;
  1153. }
  1154. #u36167_text {
  1155. border-width:0px;
  1156. word-wrap:break-word;
  1157. text-transform:none;
  1158. }
  1159. #u36168_img {
  1160. border-width:0px;
  1161. position:absolute;
  1162. left:0px;
  1163. top:0px;
  1164. width:12px;
  1165. height:12px;
  1166. }
  1167. #u36168 {
  1168. border-width:0px;
  1169. position:absolute;
  1170. left:187px;
  1171. top:209px;
  1172. width:12px;
  1173. height:12px;
  1174. display:flex;
  1175. }
  1176. #u36168 .text {
  1177. position:absolute;
  1178. align-self:center;
  1179. padding:2px 2px 2px 2px;
  1180. box-sizing:border-box;
  1181. width:100%;
  1182. }
  1183. #u36168_text {
  1184. border-width:0px;
  1185. word-wrap:break-word;
  1186. text-transform:none;
  1187. visibility:hidden;
  1188. }
  1189. #u36169 {
  1190. border-width:0px;
  1191. position:absolute;
  1192. left:0px;
  1193. top:0px;
  1194. width:0px;
  1195. height:0px;
  1196. }
  1197. #u36170_div {
  1198. border-width:0px;
  1199. position:absolute;
  1200. left:0px;
  1201. top:0px;
  1202. width:100px;
  1203. height:27px;
  1204. background:inherit;
  1205. background-color:rgba(242, 242, 242, 0.16078431372549);
  1206. box-sizing:border-box;
  1207. border-width:1px;
  1208. border-style:solid;
  1209. border-color:rgba(215, 215, 215, 1);
  1210. border-radius:2px;
  1211. -moz-box-shadow:none;
  1212. -webkit-box-shadow:none;
  1213. box-shadow:none;
  1214. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1215. font-weight:400;
  1216. font-style:normal;
  1217. font-size:12px;
  1218. text-align:left;
  1219. }
  1220. #u36170 {
  1221. border-width:0px;
  1222. position:absolute;
  1223. left:52px;
  1224. top:239px;
  1225. width:100px;
  1226. height:27px;
  1227. display:flex;
  1228. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1229. font-weight:400;
  1230. font-style:normal;
  1231. font-size:12px;
  1232. text-align:left;
  1233. }
  1234. #u36170 .text {
  1235. position:absolute;
  1236. align-self:center;
  1237. padding:5px 15px 5px 30px;
  1238. box-sizing:border-box;
  1239. width:100%;
  1240. }
  1241. #u36170_text {
  1242. border-width:0px;
  1243. word-wrap:break-word;
  1244. text-transform:none;
  1245. }
  1246. #u36171_img {
  1247. border-width:0px;
  1248. position:absolute;
  1249. left:0px;
  1250. top:0px;
  1251. width:12px;
  1252. height:12px;
  1253. }
  1254. #u36171 {
  1255. border-width:0px;
  1256. position:absolute;
  1257. left:63px;
  1258. top:246px;
  1259. width:12px;
  1260. height:12px;
  1261. display:flex;
  1262. }
  1263. #u36171 .text {
  1264. position:absolute;
  1265. align-self:center;
  1266. padding:2px 2px 2px 2px;
  1267. box-sizing:border-box;
  1268. width:100%;
  1269. }
  1270. #u36171_text {
  1271. border-width:0px;
  1272. word-wrap:break-word;
  1273. text-transform:none;
  1274. visibility:hidden;
  1275. }
  1276. #u36172 {
  1277. border-width:0px;
  1278. position:absolute;
  1279. left:0px;
  1280. top:0px;
  1281. width:0px;
  1282. height:0px;
  1283. }
  1284. #u36173_div {
  1285. border-width:0px;
  1286. position:absolute;
  1287. left:0px;
  1288. top:0px;
  1289. width:100px;
  1290. height:27px;
  1291. background:inherit;
  1292. background-color:rgba(242, 242, 242, 0.16078431372549);
  1293. box-sizing:border-box;
  1294. border-width:1px;
  1295. border-style:solid;
  1296. border-color:rgba(215, 215, 215, 1);
  1297. border-radius:2px;
  1298. -moz-box-shadow:none;
  1299. -webkit-box-shadow:none;
  1300. box-shadow:none;
  1301. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1302. font-weight:400;
  1303. font-style:normal;
  1304. font-size:12px;
  1305. text-align:left;
  1306. }
  1307. #u36173 {
  1308. border-width:0px;
  1309. position:absolute;
  1310. left:176px;
  1311. top:239px;
  1312. width:100px;
  1313. height:27px;
  1314. display:flex;
  1315. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1316. font-weight:400;
  1317. font-style:normal;
  1318. font-size:12px;
  1319. text-align:left;
  1320. }
  1321. #u36173 .text {
  1322. position:absolute;
  1323. align-self:center;
  1324. padding:5px 15px 5px 30px;
  1325. box-sizing:border-box;
  1326. width:100%;
  1327. }
  1328. #u36173_text {
  1329. border-width:0px;
  1330. word-wrap:break-word;
  1331. text-transform:none;
  1332. }
  1333. #u36174_img {
  1334. border-width:0px;
  1335. position:absolute;
  1336. left:0px;
  1337. top:0px;
  1338. width:12px;
  1339. height:12px;
  1340. }
  1341. #u36174 {
  1342. border-width:0px;
  1343. position:absolute;
  1344. left:187px;
  1345. top:246px;
  1346. width:12px;
  1347. height:12px;
  1348. display:flex;
  1349. }
  1350. #u36174 .text {
  1351. position:absolute;
  1352. align-self:center;
  1353. padding:2px 2px 2px 2px;
  1354. box-sizing:border-box;
  1355. width:100%;
  1356. }
  1357. #u36174_text {
  1358. border-width:0px;
  1359. word-wrap:break-word;
  1360. text-transform:none;
  1361. visibility:hidden;
  1362. }
  1363. #u36175 {
  1364. border-width:0px;
  1365. position:absolute;
  1366. left:0px;
  1367. top:0px;
  1368. width:0px;
  1369. height:0px;
  1370. }
  1371. #u36176_div {
  1372. border-width:0px;
  1373. position:absolute;
  1374. left:0px;
  1375. top:0px;
  1376. width:100px;
  1377. height:27px;
  1378. background:inherit;
  1379. background-color:rgba(242, 242, 242, 0.16078431372549);
  1380. box-sizing:border-box;
  1381. border-width:1px;
  1382. border-style:solid;
  1383. border-color:rgba(215, 215, 215, 1);
  1384. border-radius:2px;
  1385. -moz-box-shadow:none;
  1386. -webkit-box-shadow:none;
  1387. box-shadow:none;
  1388. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1389. font-weight:400;
  1390. font-style:normal;
  1391. font-size:12px;
  1392. text-align:left;
  1393. }
  1394. #u36176 {
  1395. border-width:0px;
  1396. position:absolute;
  1397. left:52px;
  1398. top:276px;
  1399. width:100px;
  1400. height:27px;
  1401. display:flex;
  1402. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1403. font-weight:400;
  1404. font-style:normal;
  1405. font-size:12px;
  1406. text-align:left;
  1407. }
  1408. #u36176 .text {
  1409. position:absolute;
  1410. align-self:center;
  1411. padding:5px 15px 5px 30px;
  1412. box-sizing:border-box;
  1413. width:100%;
  1414. }
  1415. #u36176_text {
  1416. border-width:0px;
  1417. word-wrap:break-word;
  1418. text-transform:none;
  1419. }
  1420. #u36177_img {
  1421. border-width:0px;
  1422. position:absolute;
  1423. left:0px;
  1424. top:0px;
  1425. width:12px;
  1426. height:12px;
  1427. }
  1428. #u36177 {
  1429. border-width:0px;
  1430. position:absolute;
  1431. left:63px;
  1432. top:283px;
  1433. width:12px;
  1434. height:12px;
  1435. display:flex;
  1436. }
  1437. #u36177 .text {
  1438. position:absolute;
  1439. align-self:center;
  1440. padding:2px 2px 2px 2px;
  1441. box-sizing:border-box;
  1442. width:100%;
  1443. }
  1444. #u36177_text {
  1445. border-width:0px;
  1446. word-wrap:break-word;
  1447. text-transform:none;
  1448. visibility:hidden;
  1449. }
  1450. #u36178 {
  1451. border-width:0px;
  1452. position:absolute;
  1453. left:0px;
  1454. top:0px;
  1455. width:0px;
  1456. height:0px;
  1457. }
  1458. #u36179_div {
  1459. border-width:0px;
  1460. position:absolute;
  1461. left:0px;
  1462. top:0px;
  1463. width:100px;
  1464. height:27px;
  1465. background:inherit;
  1466. background-color:rgba(242, 242, 242, 0.16078431372549);
  1467. box-sizing:border-box;
  1468. border-width:1px;
  1469. border-style:solid;
  1470. border-color:rgba(215, 215, 215, 1);
  1471. border-radius:2px;
  1472. -moz-box-shadow:none;
  1473. -webkit-box-shadow:none;
  1474. box-shadow:none;
  1475. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1476. font-weight:400;
  1477. font-style:normal;
  1478. font-size:12px;
  1479. text-align:left;
  1480. }
  1481. #u36179 {
  1482. border-width:0px;
  1483. position:absolute;
  1484. left:176px;
  1485. top:276px;
  1486. width:100px;
  1487. height:27px;
  1488. display:flex;
  1489. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1490. font-weight:400;
  1491. font-style:normal;
  1492. font-size:12px;
  1493. text-align:left;
  1494. }
  1495. #u36179 .text {
  1496. position:absolute;
  1497. align-self:center;
  1498. padding:5px 15px 5px 30px;
  1499. box-sizing:border-box;
  1500. width:100%;
  1501. }
  1502. #u36179_text {
  1503. border-width:0px;
  1504. word-wrap:break-word;
  1505. text-transform:none;
  1506. }
  1507. #u36180_img {
  1508. border-width:0px;
  1509. position:absolute;
  1510. left:0px;
  1511. top:0px;
  1512. width:12px;
  1513. height:12px;
  1514. }
  1515. #u36180 {
  1516. border-width:0px;
  1517. position:absolute;
  1518. left:187px;
  1519. top:283px;
  1520. width:12px;
  1521. height:12px;
  1522. display:flex;
  1523. }
  1524. #u36180 .text {
  1525. position:absolute;
  1526. align-self:center;
  1527. padding:2px 2px 2px 2px;
  1528. box-sizing:border-box;
  1529. width:100%;
  1530. }
  1531. #u36180_text {
  1532. border-width:0px;
  1533. word-wrap:break-word;
  1534. text-transform:none;
  1535. visibility:hidden;
  1536. }
  1537. #u36181 {
  1538. border-width:0px;
  1539. position:absolute;
  1540. left:0px;
  1541. top:0px;
  1542. width:0px;
  1543. height:0px;
  1544. }
  1545. #u36182_div {
  1546. border-width:0px;
  1547. position:absolute;
  1548. left:0px;
  1549. top:0px;
  1550. width:100px;
  1551. height:27px;
  1552. background:inherit;
  1553. background-color:rgba(242, 242, 242, 0.16078431372549);
  1554. box-sizing:border-box;
  1555. border-width:1px;
  1556. border-style:solid;
  1557. border-color:rgba(215, 215, 215, 1);
  1558. border-radius:2px;
  1559. -moz-box-shadow:none;
  1560. -webkit-box-shadow:none;
  1561. box-shadow:none;
  1562. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1563. font-weight:400;
  1564. font-style:normal;
  1565. font-size:12px;
  1566. text-align:left;
  1567. }
  1568. #u36182 {
  1569. border-width:0px;
  1570. position:absolute;
  1571. left:52px;
  1572. top:383px;
  1573. width:100px;
  1574. height:27px;
  1575. display:flex;
  1576. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1577. font-weight:400;
  1578. font-style:normal;
  1579. font-size:12px;
  1580. text-align:left;
  1581. }
  1582. #u36182 .text {
  1583. position:absolute;
  1584. align-self:center;
  1585. padding:5px 15px 5px 30px;
  1586. box-sizing:border-box;
  1587. width:100%;
  1588. }
  1589. #u36182_text {
  1590. border-width:0px;
  1591. word-wrap:break-word;
  1592. text-transform:none;
  1593. }
  1594. #u36183_img {
  1595. border-width:0px;
  1596. position:absolute;
  1597. left:0px;
  1598. top:0px;
  1599. width:12px;
  1600. height:12px;
  1601. }
  1602. #u36183 {
  1603. border-width:0px;
  1604. position:absolute;
  1605. left:63px;
  1606. top:390px;
  1607. width:12px;
  1608. height:12px;
  1609. display:flex;
  1610. }
  1611. #u36183 .text {
  1612. position:absolute;
  1613. align-self:center;
  1614. padding:2px 2px 2px 2px;
  1615. box-sizing:border-box;
  1616. width:100%;
  1617. }
  1618. #u36183_text {
  1619. border-width:0px;
  1620. word-wrap:break-word;
  1621. text-transform:none;
  1622. visibility:hidden;
  1623. }
  1624. #u36184 {
  1625. border-width:0px;
  1626. position:absolute;
  1627. left:0px;
  1628. top:0px;
  1629. width:0px;
  1630. height:0px;
  1631. }
  1632. #u36185_div {
  1633. border-width:0px;
  1634. position:absolute;
  1635. left:0px;
  1636. top:0px;
  1637. width:100px;
  1638. height:27px;
  1639. background:inherit;
  1640. background-color:rgba(242, 242, 242, 0.16078431372549);
  1641. box-sizing:border-box;
  1642. border-width:1px;
  1643. border-style:solid;
  1644. border-color:rgba(215, 215, 215, 1);
  1645. border-radius:2px;
  1646. -moz-box-shadow:none;
  1647. -webkit-box-shadow:none;
  1648. box-shadow:none;
  1649. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1650. font-weight:400;
  1651. font-style:normal;
  1652. font-size:12px;
  1653. text-align:left;
  1654. }
  1655. #u36185 {
  1656. border-width:0px;
  1657. position:absolute;
  1658. left:176px;
  1659. top:383px;
  1660. width:100px;
  1661. height:27px;
  1662. display:flex;
  1663. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1664. font-weight:400;
  1665. font-style:normal;
  1666. font-size:12px;
  1667. text-align:left;
  1668. }
  1669. #u36185 .text {
  1670. position:absolute;
  1671. align-self:center;
  1672. padding:5px 15px 5px 30px;
  1673. box-sizing:border-box;
  1674. width:100%;
  1675. }
  1676. #u36185_text {
  1677. border-width:0px;
  1678. word-wrap:break-word;
  1679. text-transform:none;
  1680. }
  1681. #u36186_img {
  1682. border-width:0px;
  1683. position:absolute;
  1684. left:0px;
  1685. top:0px;
  1686. width:12px;
  1687. height:12px;
  1688. }
  1689. #u36186 {
  1690. border-width:0px;
  1691. position:absolute;
  1692. left:187px;
  1693. top:390px;
  1694. width:12px;
  1695. height:12px;
  1696. display:flex;
  1697. }
  1698. #u36186 .text {
  1699. position:absolute;
  1700. align-self:center;
  1701. padding:2px 2px 2px 2px;
  1702. box-sizing:border-box;
  1703. width:100%;
  1704. }
  1705. #u36186_text {
  1706. border-width:0px;
  1707. word-wrap:break-word;
  1708. text-transform:none;
  1709. visibility:hidden;
  1710. }
  1711. #u36187 {
  1712. border-width:0px;
  1713. position:absolute;
  1714. left:0px;
  1715. top:0px;
  1716. width:0px;
  1717. height:0px;
  1718. }
  1719. #u36188_div {
  1720. border-width:0px;
  1721. position:absolute;
  1722. left:0px;
  1723. top:0px;
  1724. width:100px;
  1725. height:27px;
  1726. background:inherit;
  1727. background-color:rgba(242, 242, 242, 0.16078431372549);
  1728. box-sizing:border-box;
  1729. border-width:1px;
  1730. border-style:solid;
  1731. border-color:rgba(215, 215, 215, 1);
  1732. border-radius:2px;
  1733. -moz-box-shadow:none;
  1734. -webkit-box-shadow:none;
  1735. box-shadow:none;
  1736. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1737. font-weight:400;
  1738. font-style:normal;
  1739. font-size:12px;
  1740. text-align:left;
  1741. }
  1742. #u36188 {
  1743. border-width:0px;
  1744. position:absolute;
  1745. left:52px;
  1746. top:420px;
  1747. width:100px;
  1748. height:27px;
  1749. display:flex;
  1750. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1751. font-weight:400;
  1752. font-style:normal;
  1753. font-size:12px;
  1754. text-align:left;
  1755. }
  1756. #u36188 .text {
  1757. position:absolute;
  1758. align-self:center;
  1759. padding:5px 15px 5px 30px;
  1760. box-sizing:border-box;
  1761. width:100%;
  1762. }
  1763. #u36188_text {
  1764. border-width:0px;
  1765. word-wrap:break-word;
  1766. text-transform:none;
  1767. }
  1768. #u36189_img {
  1769. border-width:0px;
  1770. position:absolute;
  1771. left:0px;
  1772. top:0px;
  1773. width:12px;
  1774. height:12px;
  1775. }
  1776. #u36189 {
  1777. border-width:0px;
  1778. position:absolute;
  1779. left:63px;
  1780. top:427px;
  1781. width:12px;
  1782. height:12px;
  1783. display:flex;
  1784. }
  1785. #u36189 .text {
  1786. position:absolute;
  1787. align-self:center;
  1788. padding:2px 2px 2px 2px;
  1789. box-sizing:border-box;
  1790. width:100%;
  1791. }
  1792. #u36189_text {
  1793. border-width:0px;
  1794. word-wrap:break-word;
  1795. text-transform:none;
  1796. visibility:hidden;
  1797. }
  1798. #u36190 {
  1799. border-width:0px;
  1800. position:absolute;
  1801. left:0px;
  1802. top:0px;
  1803. width:0px;
  1804. height:0px;
  1805. }
  1806. #u36191_div {
  1807. border-width:0px;
  1808. position:absolute;
  1809. left:0px;
  1810. top:0px;
  1811. width:100px;
  1812. height:27px;
  1813. background:inherit;
  1814. background-color:rgba(242, 242, 242, 0.16078431372549);
  1815. box-sizing:border-box;
  1816. border-width:1px;
  1817. border-style:solid;
  1818. border-color:rgba(215, 215, 215, 1);
  1819. border-radius:2px;
  1820. -moz-box-shadow:none;
  1821. -webkit-box-shadow:none;
  1822. box-shadow:none;
  1823. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1824. font-weight:400;
  1825. font-style:normal;
  1826. font-size:12px;
  1827. text-align:left;
  1828. }
  1829. #u36191 {
  1830. border-width:0px;
  1831. position:absolute;
  1832. left:176px;
  1833. top:420px;
  1834. width:100px;
  1835. height:27px;
  1836. display:flex;
  1837. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1838. font-weight:400;
  1839. font-style:normal;
  1840. font-size:12px;
  1841. text-align:left;
  1842. }
  1843. #u36191 .text {
  1844. position:absolute;
  1845. align-self:center;
  1846. padding:5px 15px 5px 30px;
  1847. box-sizing:border-box;
  1848. width:100%;
  1849. }
  1850. #u36191_text {
  1851. border-width:0px;
  1852. word-wrap:break-word;
  1853. text-transform:none;
  1854. }
  1855. #u36192_img {
  1856. border-width:0px;
  1857. position:absolute;
  1858. left:0px;
  1859. top:0px;
  1860. width:12px;
  1861. height:12px;
  1862. }
  1863. #u36192 {
  1864. border-width:0px;
  1865. position:absolute;
  1866. left:187px;
  1867. top:427px;
  1868. width:12px;
  1869. height:12px;
  1870. display:flex;
  1871. }
  1872. #u36192 .text {
  1873. position:absolute;
  1874. align-self:center;
  1875. padding:2px 2px 2px 2px;
  1876. box-sizing:border-box;
  1877. width:100%;
  1878. }
  1879. #u36192_text {
  1880. border-width:0px;
  1881. word-wrap:break-word;
  1882. text-transform:none;
  1883. visibility:hidden;
  1884. }
  1885. #u36193 {
  1886. border-width:0px;
  1887. position:absolute;
  1888. left:0px;
  1889. top:0px;
  1890. width:0px;
  1891. height:0px;
  1892. }
  1893. #u36194_div {
  1894. border-width:0px;
  1895. position:absolute;
  1896. left:0px;
  1897. top:0px;
  1898. width:100px;
  1899. height:27px;
  1900. background:inherit;
  1901. background-color:rgba(242, 242, 242, 0.16078431372549);
  1902. box-sizing:border-box;
  1903. border-width:1px;
  1904. border-style:solid;
  1905. border-color:rgba(215, 215, 215, 1);
  1906. border-radius:2px;
  1907. -moz-box-shadow:none;
  1908. -webkit-box-shadow:none;
  1909. box-shadow:none;
  1910. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1911. font-weight:400;
  1912. font-style:normal;
  1913. font-size:12px;
  1914. text-align:left;
  1915. }
  1916. #u36194 {
  1917. border-width:0px;
  1918. position:absolute;
  1919. left:52px;
  1920. top:457px;
  1921. width:100px;
  1922. height:27px;
  1923. display:flex;
  1924. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1925. font-weight:400;
  1926. font-style:normal;
  1927. font-size:12px;
  1928. text-align:left;
  1929. }
  1930. #u36194 .text {
  1931. position:absolute;
  1932. align-self:center;
  1933. padding:5px 15px 5px 30px;
  1934. box-sizing:border-box;
  1935. width:100%;
  1936. }
  1937. #u36194_text {
  1938. border-width:0px;
  1939. word-wrap:break-word;
  1940. text-transform:none;
  1941. }
  1942. #u36195_img {
  1943. border-width:0px;
  1944. position:absolute;
  1945. left:0px;
  1946. top:0px;
  1947. width:12px;
  1948. height:12px;
  1949. }
  1950. #u36195 {
  1951. border-width:0px;
  1952. position:absolute;
  1953. left:63px;
  1954. top:464px;
  1955. width:12px;
  1956. height:12px;
  1957. display:flex;
  1958. }
  1959. #u36195 .text {
  1960. position:absolute;
  1961. align-self:center;
  1962. padding:2px 2px 2px 2px;
  1963. box-sizing:border-box;
  1964. width:100%;
  1965. }
  1966. #u36195_text {
  1967. border-width:0px;
  1968. word-wrap:break-word;
  1969. text-transform:none;
  1970. visibility:hidden;
  1971. }
  1972. #u36196 {
  1973. border-width:0px;
  1974. position:absolute;
  1975. left:0px;
  1976. top:0px;
  1977. width:0px;
  1978. height:0px;
  1979. }
  1980. #u36197_div {
  1981. border-width:0px;
  1982. position:absolute;
  1983. left:0px;
  1984. top:0px;
  1985. width:100px;
  1986. height:27px;
  1987. background:inherit;
  1988. background-color:rgba(242, 242, 242, 0.16078431372549);
  1989. box-sizing:border-box;
  1990. border-width:1px;
  1991. border-style:solid;
  1992. border-color:rgba(215, 215, 215, 1);
  1993. border-radius:2px;
  1994. -moz-box-shadow:none;
  1995. -webkit-box-shadow:none;
  1996. box-shadow:none;
  1997. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1998. font-weight:400;
  1999. font-style:normal;
  2000. font-size:12px;
  2001. text-align:left;
  2002. }
  2003. #u36197 {
  2004. border-width:0px;
  2005. position:absolute;
  2006. left:176px;
  2007. top:457px;
  2008. width:100px;
  2009. height:27px;
  2010. display:flex;
  2011. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2012. font-weight:400;
  2013. font-style:normal;
  2014. font-size:12px;
  2015. text-align:left;
  2016. }
  2017. #u36197 .text {
  2018. position:absolute;
  2019. align-self:center;
  2020. padding:5px 15px 5px 30px;
  2021. box-sizing:border-box;
  2022. width:100%;
  2023. }
  2024. #u36197_text {
  2025. border-width:0px;
  2026. word-wrap:break-word;
  2027. text-transform:none;
  2028. }
  2029. #u36198_img {
  2030. border-width:0px;
  2031. position:absolute;
  2032. left:0px;
  2033. top:0px;
  2034. width:12px;
  2035. height:12px;
  2036. }
  2037. #u36198 {
  2038. border-width:0px;
  2039. position:absolute;
  2040. left:187px;
  2041. top:464px;
  2042. width:12px;
  2043. height:12px;
  2044. display:flex;
  2045. }
  2046. #u36198 .text {
  2047. position:absolute;
  2048. align-self:center;
  2049. padding:2px 2px 2px 2px;
  2050. box-sizing:border-box;
  2051. width:100%;
  2052. }
  2053. #u36198_text {
  2054. border-width:0px;
  2055. word-wrap:break-word;
  2056. text-transform:none;
  2057. visibility:hidden;
  2058. }
  2059. #u36199_div {
  2060. border-width:0px;
  2061. position:absolute;
  2062. left:0px;
  2063. top:0px;
  2064. width:278px;
  2065. height:40px;
  2066. background:inherit;
  2067. background-color:rgba(242, 242, 242, 1);
  2068. box-sizing:border-box;
  2069. border-width:1px;
  2070. border-style:solid;
  2071. border-color:rgba(215, 215, 215, 1);
  2072. border-radius:0px;
  2073. -moz-box-shadow:none;
  2074. -webkit-box-shadow:none;
  2075. box-shadow:none;
  2076. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2077. font-weight:400;
  2078. font-style:normal;
  2079. font-size:14px;
  2080. }
  2081. #u36199 {
  2082. border-width:0px;
  2083. position:absolute;
  2084. left:30px;
  2085. top:323px;
  2086. width:278px;
  2087. height:40px;
  2088. display:flex;
  2089. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2090. font-weight:400;
  2091. font-style:normal;
  2092. font-size:14px;
  2093. }
  2094. #u36199 .text {
  2095. position:absolute;
  2096. align-self:center;
  2097. padding:5px 0px 5px 20px;
  2098. box-sizing:border-box;
  2099. width:100%;
  2100. }
  2101. #u36199_text {
  2102. border-width:0px;
  2103. word-wrap:break-word;
  2104. text-transform:none;
  2105. }
  2106. #u36200_div {
  2107. border-width:0px;
  2108. position:absolute;
  2109. left:0px;
  2110. top:0px;
  2111. width:278px;
  2112. height:40px;
  2113. background:inherit;
  2114. background-color:rgba(242, 242, 242, 1);
  2115. box-sizing:border-box;
  2116. border-width:1px;
  2117. border-style:solid;
  2118. border-color:rgba(215, 215, 215, 1);
  2119. border-radius:0px;
  2120. -moz-box-shadow:none;
  2121. -webkit-box-shadow:none;
  2122. box-shadow:none;
  2123. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2124. font-weight:400;
  2125. font-style:normal;
  2126. font-size:14px;
  2127. }
  2128. #u36200 {
  2129. border-width:0px;
  2130. position:absolute;
  2131. left:30px;
  2132. top:504px;
  2133. width:278px;
  2134. height:40px;
  2135. display:flex;
  2136. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2137. font-weight:400;
  2138. font-style:normal;
  2139. font-size:14px;
  2140. }
  2141. #u36200 .text {
  2142. position:absolute;
  2143. align-self:center;
  2144. padding:5px 0px 5px 20px;
  2145. box-sizing:border-box;
  2146. width:100%;
  2147. }
  2148. #u36200_text {
  2149. border-width:0px;
  2150. word-wrap:break-word;
  2151. text-transform:none;
  2152. }
  2153. #u36201 {
  2154. border-width:0px;
  2155. position:absolute;
  2156. left:0px;
  2157. top:0px;
  2158. width:0px;
  2159. height:0px;
  2160. }
  2161. #u36202_div {
  2162. border-width:0px;
  2163. position:absolute;
  2164. left:0px;
  2165. top:0px;
  2166. width:100px;
  2167. height:27px;
  2168. background:inherit;
  2169. background-color:rgba(242, 242, 242, 0.16078431372549);
  2170. box-sizing:border-box;
  2171. border-width:1px;
  2172. border-style:solid;
  2173. border-color:rgba(215, 215, 215, 1);
  2174. border-radius:2px;
  2175. -moz-box-shadow:none;
  2176. -webkit-box-shadow:none;
  2177. box-shadow:none;
  2178. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2179. font-weight:400;
  2180. font-style:normal;
  2181. font-size:12px;
  2182. text-align:left;
  2183. }
  2184. #u36202 {
  2185. border-width:0px;
  2186. position:absolute;
  2187. left:52px;
  2188. top:564px;
  2189. width:100px;
  2190. height:27px;
  2191. display:flex;
  2192. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2193. font-weight:400;
  2194. font-style:normal;
  2195. font-size:12px;
  2196. text-align:left;
  2197. }
  2198. #u36202 .text {
  2199. position:absolute;
  2200. align-self:center;
  2201. padding:5px 15px 5px 30px;
  2202. box-sizing:border-box;
  2203. width:100%;
  2204. }
  2205. #u36202_text {
  2206. border-width:0px;
  2207. word-wrap:break-word;
  2208. text-transform:none;
  2209. }
  2210. #u36203_img {
  2211. border-width:0px;
  2212. position:absolute;
  2213. left:0px;
  2214. top:0px;
  2215. width:12px;
  2216. height:12px;
  2217. }
  2218. #u36203 {
  2219. border-width:0px;
  2220. position:absolute;
  2221. left:63px;
  2222. top:571px;
  2223. width:12px;
  2224. height:12px;
  2225. display:flex;
  2226. }
  2227. #u36203 .text {
  2228. position:absolute;
  2229. align-self:center;
  2230. padding:2px 2px 2px 2px;
  2231. box-sizing:border-box;
  2232. width:100%;
  2233. }
  2234. #u36203_text {
  2235. border-width:0px;
  2236. word-wrap:break-word;
  2237. text-transform:none;
  2238. visibility:hidden;
  2239. }
  2240. #u36204_div {
  2241. border-width:0px;
  2242. position:absolute;
  2243. left:0px;
  2244. top:0px;
  2245. width:1020px;
  2246. height:987px;
  2247. background:inherit;
  2248. background-color:rgba(255, 255, 255, 1);
  2249. border:none;
  2250. border-radius:4px;
  2251. -moz-box-shadow:0px 0px 2px rgba(0, 0, 0, 0.349019607843137);
  2252. -webkit-box-shadow:0px 0px 2px rgba(0, 0, 0, 0.349019607843137);
  2253. box-shadow:0px 0px 2px rgba(0, 0, 0, 0.349019607843137);
  2254. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2255. font-weight:400;
  2256. font-style:normal;
  2257. font-size:14px;
  2258. color:#AAAAAA;
  2259. line-height:30px;
  2260. }
  2261. #u36204 {
  2262. border-width:0px;
  2263. position:absolute;
  2264. left:319px;
  2265. top:227px;
  2266. width:1020px;
  2267. height:987px;
  2268. display:flex;
  2269. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2270. font-weight:400;
  2271. font-style:normal;
  2272. font-size:14px;
  2273. color:#AAAAAA;
  2274. line-height:30px;
  2275. }
  2276. #u36204 .text {
  2277. position:absolute;
  2278. align-self:center;
  2279. padding:5px 10px 5px 10px;
  2280. box-sizing:border-box;
  2281. width:100%;
  2282. }
  2283. #u36204_text {
  2284. border-width:0px;
  2285. word-wrap:break-word;
  2286. text-transform:none;
  2287. visibility:hidden;
  2288. }
  2289. #u36205 {
  2290. border-width:0px;
  2291. position:absolute;
  2292. left:0px;
  2293. top:0px;
  2294. width:0px;
  2295. height:0px;
  2296. }
  2297. #u36206_div {
  2298. border-width:0px;
  2299. position:absolute;
  2300. left:0px;
  2301. top:0px;
  2302. width:280px;
  2303. height:40px;
  2304. background:inherit;
  2305. background-color:rgba(255, 255, 255, 1);
  2306. box-sizing:border-box;
  2307. border-width:1px;
  2308. border-style:solid;
  2309. border-color:rgba(215, 215, 215, 1);
  2310. border-radius:0px;
  2311. -moz-box-shadow:none;
  2312. -webkit-box-shadow:none;
  2313. box-shadow:none;
  2314. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2315. font-weight:400;
  2316. font-style:normal;
  2317. font-size:14px;
  2318. color:#FFFFFF;
  2319. text-align:center;
  2320. line-height:30px;
  2321. }
  2322. #u36206 {
  2323. border-width:0px;
  2324. position:absolute;
  2325. left:1350px;
  2326. top:87px;
  2327. width:280px;
  2328. height:40px;
  2329. display:flex;
  2330. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2331. font-weight:400;
  2332. font-style:normal;
  2333. font-size:14px;
  2334. color:#FFFFFF;
  2335. text-align:center;
  2336. line-height:30px;
  2337. }
  2338. #u36206 .text {
  2339. position:absolute;
  2340. align-self:center;
  2341. padding:5px 10px 5px 10px;
  2342. box-sizing:border-box;
  2343. width:100%;
  2344. }
  2345. #u36206_text {
  2346. border-width:0px;
  2347. word-wrap:break-word;
  2348. text-transform:none;
  2349. visibility:hidden;
  2350. }
  2351. #u36207_div {
  2352. border-width:0px;
  2353. position:absolute;
  2354. left:0px;
  2355. top:0px;
  2356. width:280px;
  2357. height:1090px;
  2358. background:inherit;
  2359. background-color:rgba(255, 255, 255, 1);
  2360. box-sizing:border-box;
  2361. border-width:1px;
  2362. border-style:solid;
  2363. border-color:rgba(215, 215, 215, 1);
  2364. border-radius:0px;
  2365. -moz-box-shadow:none;
  2366. -webkit-box-shadow:none;
  2367. box-shadow:none;
  2368. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2369. font-weight:400;
  2370. font-style:normal;
  2371. font-size:14px;
  2372. color:#FFFFFF;
  2373. text-align:center;
  2374. line-height:30px;
  2375. }
  2376. #u36207 {
  2377. border-width:0px;
  2378. position:absolute;
  2379. left:1350px;
  2380. top:127px;
  2381. width:280px;
  2382. height:1090px;
  2383. display:flex;
  2384. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2385. font-weight:400;
  2386. font-style:normal;
  2387. font-size:14px;
  2388. color:#FFFFFF;
  2389. text-align:center;
  2390. line-height:30px;
  2391. }
  2392. #u36207 .text {
  2393. position:absolute;
  2394. align-self:center;
  2395. padding:5px 10px 5px 10px;
  2396. box-sizing:border-box;
  2397. width:100%;
  2398. }
  2399. #u36207_text {
  2400. border-width:0px;
  2401. word-wrap:break-word;
  2402. text-transform:none;
  2403. }
  2404. #u36208_div {
  2405. border-width:0px;
  2406. position:absolute;
  2407. left:0px;
  2408. top:0px;
  2409. width:79px;
  2410. height:30px;
  2411. background:inherit;
  2412. background-color:rgba(255, 255, 255, 0);
  2413. border:none;
  2414. border-top:0px;
  2415. border-right:0px;
  2416. border-bottom:0px;
  2417. border-radius:0px;
  2418. border-top-left-radius:0px;
  2419. border-bottom-left-radius:0px;
  2420. -moz-box-shadow:none;
  2421. -webkit-box-shadow:none;
  2422. box-shadow:none;
  2423. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  2424. font-weight:500;
  2425. font-style:normal;
  2426. font-size:14px;
  2427. }
  2428. #u36208 {
  2429. border-width:0px;
  2430. position:absolute;
  2431. left:1370px;
  2432. top:136px;
  2433. width:79px;
  2434. height:30px;
  2435. display:flex;
  2436. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  2437. font-weight:500;
  2438. font-style:normal;
  2439. font-size:14px;
  2440. }
  2441. #u36208 .text {
  2442. position:absolute;
  2443. align-self:center;
  2444. padding:5px 10px 5px 0px;
  2445. box-sizing:border-box;
  2446. width:100%;
  2447. }
  2448. #u36208_text {
  2449. border-width:0px;
  2450. word-wrap:break-word;
  2451. text-transform:none;
  2452. }
  2453. #u36209 {
  2454. border-width:0px;
  2455. position:absolute;
  2456. left:0px;
  2457. top:0px;
  2458. width:0px;
  2459. height:0px;
  2460. }
  2461. #u36210_div {
  2462. border-width:0px;
  2463. position:absolute;
  2464. left:0px;
  2465. top:0px;
  2466. width:236px;
  2467. height:30px;
  2468. background:inherit;
  2469. background-color:rgba(255, 255, 255, 1);
  2470. box-sizing:border-box;
  2471. border-width:1px;
  2472. border-style:solid;
  2473. border-color:rgba(215, 215, 215, 1);
  2474. border-radius:2px;
  2475. -moz-box-shadow:none;
  2476. -webkit-box-shadow:none;
  2477. box-shadow:none;
  2478. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2479. font-weight:400;
  2480. font-style:normal;
  2481. font-size:12px;
  2482. text-align:left;
  2483. }
  2484. #u36210 {
  2485. border-width:0px;
  2486. position:absolute;
  2487. left:1370px;
  2488. top:272px;
  2489. width:236px;
  2490. height:30px;
  2491. display:flex;
  2492. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2493. font-weight:400;
  2494. font-style:normal;
  2495. font-size:12px;
  2496. text-align:left;
  2497. }
  2498. #u36210 .text {
  2499. position:absolute;
  2500. align-self:center;
  2501. padding:5px 15px 5px 30px;
  2502. box-sizing:border-box;
  2503. width:100%;
  2504. }
  2505. #u36210_text {
  2506. border-width:0px;
  2507. word-wrap:break-word;
  2508. text-transform:none;
  2509. visibility:hidden;
  2510. }
  2511. #u36211_input {
  2512. position:absolute;
  2513. left:0px;
  2514. top:0px;
  2515. width:212px;
  2516. height:28px;
  2517. padding:2px 2px 2px 2px;
  2518. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2519. font-weight:400;
  2520. font-style:normal;
  2521. font-size:14px;
  2522. letter-spacing:normal;
  2523. color:#000000;
  2524. vertical-align:none;
  2525. text-align:left;
  2526. text-transform:none;
  2527. background-color:transparent;
  2528. border-color:transparent;
  2529. }
  2530. #u36211_input.disabled {
  2531. position:absolute;
  2532. left:0px;
  2533. top:0px;
  2534. width:212px;
  2535. height:28px;
  2536. padding:2px 2px 2px 2px;
  2537. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2538. font-weight:400;
  2539. font-style:normal;
  2540. font-size:14px;
  2541. letter-spacing:normal;
  2542. color:#000000;
  2543. vertical-align:none;
  2544. text-align:left;
  2545. text-transform:none;
  2546. background-color:transparent;
  2547. border-color:transparent;
  2548. }
  2549. #u36211_div {
  2550. border-width:0px;
  2551. position:absolute;
  2552. left:0px;
  2553. top:0px;
  2554. width:212px;
  2555. height:28px;
  2556. background:inherit;
  2557. background-color:rgba(255, 255, 255, 0);
  2558. border:none;
  2559. border-radius:0px;
  2560. -moz-box-shadow:none;
  2561. -webkit-box-shadow:none;
  2562. box-shadow:none;
  2563. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2564. font-weight:400;
  2565. font-style:normal;
  2566. font-size:14px;
  2567. }
  2568. #u36211 {
  2569. border-width:0px;
  2570. position:absolute;
  2571. left:1381px;
  2572. top:273px;
  2573. width:212px;
  2574. height:28px;
  2575. display:flex;
  2576. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2577. font-weight:400;
  2578. font-style:normal;
  2579. font-size:14px;
  2580. }
  2581. #u36211 .text {
  2582. position:absolute;
  2583. align-self:center;
  2584. padding:2px 2px 2px 2px;
  2585. box-sizing:border-box;
  2586. width:100%;
  2587. }
  2588. #u36211_div.disabled {
  2589. border-width:0px;
  2590. position:absolute;
  2591. left:0px;
  2592. top:0px;
  2593. width:212px;
  2594. height:28px;
  2595. background:inherit;
  2596. background-color:rgba(240, 240, 240, 1);
  2597. border:none;
  2598. border-radius:0px;
  2599. -moz-box-shadow:none;
  2600. -webkit-box-shadow:none;
  2601. box-shadow:none;
  2602. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2603. font-weight:400;
  2604. font-style:normal;
  2605. font-size:14px;
  2606. }
  2607. #u36211.disabled {
  2608. }
  2609. #u36212_div {
  2610. border-width:0px;
  2611. position:absolute;
  2612. left:0px;
  2613. top:0px;
  2614. width:59px;
  2615. height:40px;
  2616. background:inherit;
  2617. background-color:rgba(255, 255, 255, 0);
  2618. border:none;
  2619. border-top:0px;
  2620. border-right:0px;
  2621. border-bottom:0px;
  2622. border-radius:0px;
  2623. border-top-left-radius:0px;
  2624. border-bottom-left-radius:0px;
  2625. -moz-box-shadow:none;
  2626. -webkit-box-shadow:none;
  2627. box-shadow:none;
  2628. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  2629. font-weight:500;
  2630. font-style:normal;
  2631. font-size:12px;
  2632. }
  2633. #u36212 {
  2634. border-width:0px;
  2635. position:absolute;
  2636. left:1370px;
  2637. top:173px;
  2638. width:59px;
  2639. height:40px;
  2640. display:flex;
  2641. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  2642. font-weight:500;
  2643. font-style:normal;
  2644. font-size:12px;
  2645. }
  2646. #u36212 .text {
  2647. position:absolute;
  2648. align-self:center;
  2649. padding:5px 10px 5px 0px;
  2650. box-sizing:border-box;
  2651. width:100%;
  2652. }
  2653. #u36212_text {
  2654. border-width:0px;
  2655. word-wrap:break-word;
  2656. text-transform:none;
  2657. }
  2658. #u36213_div {
  2659. border-width:0px;
  2660. position:absolute;
  2661. left:0px;
  2662. top:0px;
  2663. width:59px;
  2664. height:30px;
  2665. background:inherit;
  2666. background-color:rgba(255, 255, 255, 1);
  2667. box-sizing:border-box;
  2668. border-width:1px;
  2669. border-style:solid;
  2670. border-color:rgba(215, 215, 215, 1);
  2671. border-radius:2px;
  2672. -moz-box-shadow:none;
  2673. -webkit-box-shadow:none;
  2674. box-shadow:none;
  2675. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  2676. font-weight:500;
  2677. font-style:normal;
  2678. font-size:12px;
  2679. }
  2680. #u36213 {
  2681. border-width:0px;
  2682. position:absolute;
  2683. left:1370px;
  2684. top:208px;
  2685. width:59px;
  2686. height:30px;
  2687. display:flex;
  2688. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  2689. font-weight:500;
  2690. font-style:normal;
  2691. font-size:12px;
  2692. }
  2693. #u36213 .text {
  2694. position:absolute;
  2695. align-self:center;
  2696. padding:2px 2px 2px 2px;
  2697. box-sizing:border-box;
  2698. width:100%;
  2699. }
  2700. #u36213_text {
  2701. border-width:0px;
  2702. word-wrap:break-word;
  2703. text-transform:none;
  2704. }
  2705. #u36214_div {
  2706. border-width:0px;
  2707. position:absolute;
  2708. left:0px;
  2709. top:0px;
  2710. width:59px;
  2711. height:30px;
  2712. background:inherit;
  2713. background-color:rgba(255, 255, 255, 1);
  2714. box-sizing:border-box;
  2715. border-width:1px;
  2716. border-style:solid;
  2717. border-color:rgba(215, 215, 215, 1);
  2718. border-radius:2px;
  2719. -moz-box-shadow:none;
  2720. -webkit-box-shadow:none;
  2721. box-shadow:none;
  2722. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  2723. font-weight:500;
  2724. font-style:normal;
  2725. font-size:12px;
  2726. }
  2727. #u36214 {
  2728. border-width:0px;
  2729. position:absolute;
  2730. left:1429px;
  2731. top:208px;
  2732. width:59px;
  2733. height:30px;
  2734. display:flex;
  2735. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  2736. font-weight:500;
  2737. font-style:normal;
  2738. font-size:12px;
  2739. }
  2740. #u36214 .text {
  2741. position:absolute;
  2742. align-self:center;
  2743. padding:2px 2px 2px 2px;
  2744. box-sizing:border-box;
  2745. width:100%;
  2746. }
  2747. #u36214_text {
  2748. border-width:0px;
  2749. word-wrap:break-word;
  2750. text-transform:none;
  2751. }
  2752. #u36215_div {
  2753. border-width:0px;
  2754. position:absolute;
  2755. left:0px;
  2756. top:0px;
  2757. width:59px;
  2758. height:30px;
  2759. background:inherit;
  2760. background-color:rgba(255, 255, 255, 1);
  2761. box-sizing:border-box;
  2762. border-width:1px;
  2763. border-style:solid;
  2764. border-color:rgba(215, 215, 215, 1);
  2765. border-radius:2px;
  2766. -moz-box-shadow:none;
  2767. -webkit-box-shadow:none;
  2768. box-shadow:none;
  2769. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  2770. font-weight:500;
  2771. font-style:normal;
  2772. font-size:12px;
  2773. }
  2774. #u36215 {
  2775. border-width:0px;
  2776. position:absolute;
  2777. left:1488px;
  2778. top:208px;
  2779. width:59px;
  2780. height:30px;
  2781. display:flex;
  2782. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  2783. font-weight:500;
  2784. font-style:normal;
  2785. font-size:12px;
  2786. }
  2787. #u36215 .text {
  2788. position:absolute;
  2789. align-self:center;
  2790. padding:2px 2px 2px 2px;
  2791. box-sizing:border-box;
  2792. width:100%;
  2793. }
  2794. #u36215_text {
  2795. border-width:0px;
  2796. word-wrap:break-word;
  2797. text-transform:none;
  2798. }
  2799. #u36216_div {
  2800. border-width:0px;
  2801. position:absolute;
  2802. left:0px;
  2803. top:0px;
  2804. width:59px;
  2805. height:30px;
  2806. background:inherit;
  2807. background-color:rgba(245, 154, 35, 1);
  2808. box-sizing:border-box;
  2809. border-width:1px;
  2810. border-style:solid;
  2811. border-color:rgba(215, 215, 215, 1);
  2812. border-radius:2px;
  2813. -moz-box-shadow:none;
  2814. -webkit-box-shadow:none;
  2815. box-shadow:none;
  2816. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  2817. font-weight:500;
  2818. font-style:normal;
  2819. font-size:12px;
  2820. color:#FFFFFF;
  2821. }
  2822. #u36216 {
  2823. border-width:0px;
  2824. position:absolute;
  2825. left:1546px;
  2826. top:208px;
  2827. width:59px;
  2828. height:30px;
  2829. display:flex;
  2830. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  2831. font-weight:500;
  2832. font-style:normal;
  2833. font-size:12px;
  2834. color:#FFFFFF;
  2835. }
  2836. #u36216 .text {
  2837. position:absolute;
  2838. align-self:center;
  2839. padding:2px 2px 2px 2px;
  2840. box-sizing:border-box;
  2841. width:100%;
  2842. }
  2843. #u36216_text {
  2844. border-width:0px;
  2845. word-wrap:break-word;
  2846. text-transform:none;
  2847. }
  2848. #u36217 {
  2849. border-width:0px;
  2850. position:absolute;
  2851. left:0px;
  2852. top:0px;
  2853. width:0px;
  2854. height:0px;
  2855. }
  2856. #u36218_div {
  2857. border-width:0px;
  2858. position:absolute;
  2859. left:0px;
  2860. top:0px;
  2861. width:41px;
  2862. height:40px;
  2863. background:inherit;
  2864. background-color:rgba(255, 255, 255, 0);
  2865. border:none;
  2866. border-top:0px;
  2867. border-right:0px;
  2868. border-bottom:0px;
  2869. border-radius:0px;
  2870. border-top-left-radius:0px;
  2871. border-bottom-left-radius:0px;
  2872. -moz-box-shadow:none;
  2873. -webkit-box-shadow:none;
  2874. box-shadow:none;
  2875. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  2876. font-weight:500;
  2877. font-style:normal;
  2878. font-size:12px;
  2879. }
  2880. #u36218 {
  2881. border-width:0px;
  2882. position:absolute;
  2883. left:1370px;
  2884. top:238px;
  2885. width:41px;
  2886. height:40px;
  2887. display:flex;
  2888. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  2889. font-weight:500;
  2890. font-style:normal;
  2891. font-size:12px;
  2892. }
  2893. #u36218 .text {
  2894. position:absolute;
  2895. align-self:center;
  2896. padding:5px 10px 5px 0px;
  2897. box-sizing:border-box;
  2898. width:100%;
  2899. }
  2900. #u36218_text {
  2901. border-width:0px;
  2902. word-wrap:break-word;
  2903. text-transform:none;
  2904. }
  2905. #u36219_img {
  2906. border-width:0px;
  2907. position:absolute;
  2908. left:0px;
  2909. top:0px;
  2910. width:11px;
  2911. height:11px;
  2912. }
  2913. #u36219 {
  2914. border-width:0px;
  2915. position:absolute;
  2916. left:1400px;
  2917. top:253px;
  2918. width:11px;
  2919. height:11px;
  2920. display:flex;
  2921. }
  2922. #u36219 .text {
  2923. position:absolute;
  2924. align-self:center;
  2925. padding:2px 2px 2px 2px;
  2926. box-sizing:border-box;
  2927. width:100%;
  2928. }
  2929. #u36219_text {
  2930. border-width:0px;
  2931. word-wrap:break-word;
  2932. text-transform:none;
  2933. visibility:hidden;
  2934. }
  2935. #u36220_img {
  2936. border-width:0px;
  2937. position:absolute;
  2938. left:0px;
  2939. top:0px;
  2940. width:11px;
  2941. height:11px;
  2942. }
  2943. #u36220 {
  2944. border-width:0px;
  2945. position:absolute;
  2946. left:1424px;
  2947. top:181px;
  2948. width:11px;
  2949. height:11px;
  2950. display:flex;
  2951. }
  2952. #u36220 .text {
  2953. position:absolute;
  2954. align-self:center;
  2955. padding:2px 2px 2px 2px;
  2956. box-sizing:border-box;
  2957. width:100%;
  2958. }
  2959. #u36220_text {
  2960. border-width:0px;
  2961. word-wrap:break-word;
  2962. text-transform:none;
  2963. visibility:hidden;
  2964. }
  2965. #u36221_div {
  2966. border-width:0px;
  2967. position:absolute;
  2968. left:0px;
  2969. top:0px;
  2970. width:140px;
  2971. height:39px;
  2972. background:inherit;
  2973. background-color:rgba(255, 255, 255, 1);
  2974. box-sizing:border-box;
  2975. border-width:3px;
  2976. border-style:solid;
  2977. border-color:rgba(25, 140, 251, 1);
  2978. border-left:0px;
  2979. border-top:0px;
  2980. border-right:0px;
  2981. border-radius:0px;
  2982. border-bottom-right-radius:0px;
  2983. border-bottom-left-radius:0px;
  2984. -moz-box-shadow:none;
  2985. -webkit-box-shadow:none;
  2986. box-shadow:none;
  2987. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2988. font-weight:400;
  2989. font-style:normal;
  2990. font-size:14px;
  2991. color:#1890FF;
  2992. text-align:center;
  2993. line-height:30px;
  2994. }
  2995. #u36221 {
  2996. border-width:0px;
  2997. position:absolute;
  2998. left:1350px;
  2999. top:88px;
  3000. width:140px;
  3001. height:39px;
  3002. display:flex;
  3003. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3004. font-weight:400;
  3005. font-style:normal;
  3006. font-size:14px;
  3007. color:#1890FF;
  3008. text-align:center;
  3009. line-height:30px;
  3010. }
  3011. #u36221 .text {
  3012. position:absolute;
  3013. align-self:center;
  3014. padding:5px 10px 5px 10px;
  3015. box-sizing:border-box;
  3016. width:100%;
  3017. }
  3018. #u36221_text {
  3019. border-width:0px;
  3020. word-wrap:break-word;
  3021. text-transform:none;
  3022. }
  3023. #u36222_div {
  3024. border-width:0px;
  3025. position:absolute;
  3026. left:0px;
  3027. top:0px;
  3028. width:140px;
  3029. height:39px;
  3030. background:inherit;
  3031. background-color:rgba(255, 255, 255, 1);
  3032. border:none;
  3033. border-left:0px;
  3034. border-top:0px;
  3035. border-right:0px;
  3036. border-radius:0px;
  3037. border-bottom-right-radius:0px;
  3038. border-bottom-left-radius:0px;
  3039. -moz-box-shadow:none;
  3040. -webkit-box-shadow:none;
  3041. box-shadow:none;
  3042. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3043. font-weight:400;
  3044. font-style:normal;
  3045. font-size:14px;
  3046. text-align:center;
  3047. line-height:30px;
  3048. }
  3049. #u36222 {
  3050. border-width:0px;
  3051. position:absolute;
  3052. left:1489px;
  3053. top:88px;
  3054. width:140px;
  3055. height:39px;
  3056. display:flex;
  3057. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3058. font-weight:400;
  3059. font-style:normal;
  3060. font-size:14px;
  3061. text-align:center;
  3062. line-height:30px;
  3063. }
  3064. #u36222 .text {
  3065. position:absolute;
  3066. align-self:center;
  3067. padding:5px 10px 5px 10px;
  3068. box-sizing:border-box;
  3069. width:100%;
  3070. }
  3071. #u36222_text {
  3072. border-width:0px;
  3073. word-wrap:break-word;
  3074. text-transform:none;
  3075. }
  3076. #u36223_img {
  3077. border-width:0px;
  3078. position:absolute;
  3079. left:0px;
  3080. top:0px;
  3081. width:236px;
  3082. height:30px;
  3083. }
  3084. #u36223 {
  3085. border-width:0px;
  3086. position:absolute;
  3087. left:1370px;
  3088. top:392px;
  3089. width:236px;
  3090. height:30px;
  3091. display:flex;
  3092. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3093. font-weight:400;
  3094. font-style:normal;
  3095. font-size:10px;
  3096. }
  3097. #u36223 .text {
  3098. position:absolute;
  3099. align-self:center;
  3100. padding:2px 0px 2px 0px;
  3101. box-sizing:border-box;
  3102. width:100%;
  3103. }
  3104. #u36223_text {
  3105. border-width:0px;
  3106. word-wrap:break-word;
  3107. text-transform:none;
  3108. }
  3109. #u36224_div {
  3110. border-width:0px;
  3111. position:absolute;
  3112. left:0px;
  3113. top:0px;
  3114. width:236px;
  3115. height:30px;
  3116. background:inherit;
  3117. background-color:rgba(242, 242, 242, 1);
  3118. border:none;
  3119. border-radius:4px;
  3120. -moz-box-shadow:none;
  3121. -webkit-box-shadow:none;
  3122. box-shadow:none;
  3123. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3124. font-weight:400;
  3125. font-style:normal;
  3126. font-size:10px;
  3127. }
  3128. #u36224 {
  3129. border-width:0px;
  3130. position:absolute;
  3131. left:1370px;
  3132. top:432px;
  3133. width:236px;
  3134. height:30px;
  3135. display:flex;
  3136. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3137. font-weight:400;
  3138. font-style:normal;
  3139. font-size:10px;
  3140. }
  3141. #u36224 .text {
  3142. position:absolute;
  3143. align-self:center;
  3144. padding:5px 10px 5px 10px;
  3145. box-sizing:border-box;
  3146. width:100%;
  3147. }
  3148. #u36224_text {
  3149. border-width:0px;
  3150. word-wrap:break-word;
  3151. text-transform:none;
  3152. }
  3153. #u36225 {
  3154. border-width:0px;
  3155. position:absolute;
  3156. left:0px;
  3157. top:0px;
  3158. width:0px;
  3159. height:0px;
  3160. }
  3161. #u36226_div {
  3162. border-width:0px;
  3163. position:absolute;
  3164. left:0px;
  3165. top:0px;
  3166. width:87px;
  3167. height:40px;
  3168. background:inherit;
  3169. background-color:rgba(255, 255, 255, 0);
  3170. border:none;
  3171. border-top:0px;
  3172. border-right:0px;
  3173. border-bottom:0px;
  3174. border-radius:0px;
  3175. border-top-left-radius:0px;
  3176. border-bottom-left-radius:0px;
  3177. -moz-box-shadow:none;
  3178. -webkit-box-shadow:none;
  3179. box-shadow:none;
  3180. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  3181. font-weight:500;
  3182. font-style:normal;
  3183. font-size:12px;
  3184. }
  3185. #u36226 {
  3186. border-width:0px;
  3187. position:absolute;
  3188. left:1370px;
  3189. top:302px;
  3190. width:87px;
  3191. height:40px;
  3192. display:flex;
  3193. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  3194. font-weight:500;
  3195. font-style:normal;
  3196. font-size:12px;
  3197. }
  3198. #u36226 .text {
  3199. position:absolute;
  3200. align-self:center;
  3201. padding:5px 10px 5px 0px;
  3202. box-sizing:border-box;
  3203. width:100%;
  3204. }
  3205. #u36226_text {
  3206. border-width:0px;
  3207. word-wrap:break-word;
  3208. text-transform:none;
  3209. }
  3210. #u36227 {
  3211. border-width:0px;
  3212. position:absolute;
  3213. left:0px;
  3214. top:0px;
  3215. width:0px;
  3216. height:0px;
  3217. }
  3218. #u36228_div {
  3219. border-width:0px;
  3220. position:absolute;
  3221. left:0px;
  3222. top:0px;
  3223. width:236px;
  3224. height:30px;
  3225. background:inherit;
  3226. background-color:rgba(255, 255, 255, 1);
  3227. box-sizing:border-box;
  3228. border-width:1px;
  3229. border-style:solid;
  3230. border-color:rgba(215, 215, 215, 1);
  3231. border-radius:4px;
  3232. -moz-box-shadow:none;
  3233. -webkit-box-shadow:none;
  3234. box-shadow:none;
  3235. font-size:11px;
  3236. }
  3237. #u36228 {
  3238. border-width:0px;
  3239. position:absolute;
  3240. left:1370px;
  3241. top:342px;
  3242. width:236px;
  3243. height:30px;
  3244. display:flex;
  3245. font-size:11px;
  3246. }
  3247. #u36228 .text {
  3248. position:absolute;
  3249. align-self:center;
  3250. padding:2px 2px 2px 2px;
  3251. box-sizing:border-box;
  3252. width:100%;
  3253. }
  3254. #u36228_text {
  3255. border-width:0px;
  3256. word-wrap:break-word;
  3257. text-transform:none;
  3258. visibility:hidden;
  3259. }
  3260. #u36229_input {
  3261. position:absolute;
  3262. left:0px;
  3263. top:0px;
  3264. width:224px;
  3265. height:23px;
  3266. padding:2px 2px 2px 2px;
  3267. font-family:'ArialMT', 'Arial', sans-serif;
  3268. font-weight:400;
  3269. font-style:normal;
  3270. font-size:11px;
  3271. letter-spacing:normal;
  3272. color:#AAAAAA;
  3273. vertical-align:none;
  3274. text-align:left;
  3275. text-transform:none;
  3276. background-color:transparent;
  3277. border-color:transparent;
  3278. }
  3279. #u36229_input.disabled {
  3280. position:absolute;
  3281. left:0px;
  3282. top:0px;
  3283. width:224px;
  3284. height:23px;
  3285. padding:2px 2px 2px 2px;
  3286. font-family:'ArialMT', 'Arial', sans-serif;
  3287. font-weight:400;
  3288. font-style:normal;
  3289. font-size:11px;
  3290. letter-spacing:normal;
  3291. color:#AAAAAA;
  3292. vertical-align:none;
  3293. text-align:left;
  3294. text-transform:none;
  3295. background-color:transparent;
  3296. border-color:transparent;
  3297. }
  3298. #u36229_div {
  3299. border-width:0px;
  3300. position:absolute;
  3301. left:0px;
  3302. top:0px;
  3303. width:224px;
  3304. height:23px;
  3305. background:inherit;
  3306. background-color:rgba(255, 255, 255, 1);
  3307. border:none;
  3308. border-radius:0px;
  3309. -moz-box-shadow:none;
  3310. -webkit-box-shadow:none;
  3311. box-shadow:none;
  3312. font-size:11px;
  3313. color:#AAAAAA;
  3314. }
  3315. #u36229 {
  3316. border-width:0px;
  3317. position:absolute;
  3318. left:1376px;
  3319. top:344px;
  3320. width:224px;
  3321. height:23px;
  3322. display:flex;
  3323. font-size:11px;
  3324. color:#AAAAAA;
  3325. }
  3326. #u36229 .text {
  3327. position:absolute;
  3328. align-self:flex-start;
  3329. padding:2px 2px 2px 2px;
  3330. box-sizing:border-box;
  3331. width:100%;
  3332. }
  3333. #u36229_div.disabled {
  3334. border-width:0px;
  3335. position:absolute;
  3336. left:0px;
  3337. top:0px;
  3338. width:224px;
  3339. height:23px;
  3340. background:inherit;
  3341. background-color:rgba(240, 240, 240, 1);
  3342. border:none;
  3343. border-radius:0px;
  3344. -moz-box-shadow:none;
  3345. -webkit-box-shadow:none;
  3346. box-shadow:none;
  3347. font-size:11px;
  3348. color:#AAAAAA;
  3349. }
  3350. #u36229.disabled {
  3351. }
  3352. .u36229_input_option {
  3353. font-size:11px;
  3354. }
  3355. #u36230 {
  3356. border-width:0px;
  3357. position:absolute;
  3358. left:0px;
  3359. top:0px;
  3360. width:0px;
  3361. height:0px;
  3362. }
  3363. #u36231 {
  3364. border-width:0px;
  3365. position:absolute;
  3366. left:0px;
  3367. top:0px;
  3368. width:0px;
  3369. height:0px;
  3370. }
  3371. #u36232_div {
  3372. border-width:0px;
  3373. position:absolute;
  3374. left:0px;
  3375. top:0px;
  3376. width:74px;
  3377. height:26px;
  3378. background:inherit;
  3379. background-color:rgba(255, 255, 255, 0);
  3380. border:none;
  3381. border-top:0px;
  3382. border-right:0px;
  3383. border-bottom:0px;
  3384. border-radius:0px;
  3385. border-top-left-radius:0px;
  3386. border-bottom-left-radius:0px;
  3387. -moz-box-shadow:none;
  3388. -webkit-box-shadow:none;
  3389. box-shadow:none;
  3390. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3391. font-weight:400;
  3392. font-style:normal;
  3393. font-size:11px;
  3394. color:#198CFB;
  3395. }
  3396. #u36232 {
  3397. border-width:0px;
  3398. position:absolute;
  3399. left:1363px;
  3400. top:529px;
  3401. width:74px;
  3402. height:26px;
  3403. display:flex;
  3404. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3405. font-weight:400;
  3406. font-style:normal;
  3407. font-size:11px;
  3408. color:#198CFB;
  3409. }
  3410. #u36232 .text {
  3411. position:absolute;
  3412. align-self:center;
  3413. padding:5px 0px 5px 0px;
  3414. box-sizing:border-box;
  3415. width:100%;
  3416. }
  3417. #u36232_text {
  3418. border-width:0px;
  3419. word-wrap:break-word;
  3420. text-transform:none;
  3421. }
  3422. #u36233_img {
  3423. border-width:0px;
  3424. position:absolute;
  3425. left:0px;
  3426. top:0px;
  3427. width:255px;
  3428. height:2px;
  3429. }
  3430. #u36233 {
  3431. border-width:0px;
  3432. position:absolute;
  3433. left:1366px;
  3434. top:507px;
  3435. width:254px;
  3436. height:1px;
  3437. display:flex;
  3438. }
  3439. #u36233 .text {
  3440. position:absolute;
  3441. align-self:center;
  3442. padding:2px 2px 2px 2px;
  3443. box-sizing:border-box;
  3444. width:100%;
  3445. }
  3446. #u36233_text {
  3447. border-width:0px;
  3448. word-wrap:break-word;
  3449. text-transform:none;
  3450. visibility:hidden;
  3451. }
  3452. #u36234_div {
  3453. border-width:0px;
  3454. position:absolute;
  3455. left:0px;
  3456. top:0px;
  3457. width:74px;
  3458. height:30px;
  3459. background:inherit;
  3460. background-color:rgba(255, 255, 255, 1);
  3461. border:none;
  3462. border-top:0px;
  3463. border-right:0px;
  3464. border-bottom:0px;
  3465. border-radius:0px;
  3466. border-top-left-radius:0px;
  3467. border-bottom-left-radius:0px;
  3468. -moz-box-shadow:none;
  3469. -webkit-box-shadow:none;
  3470. box-shadow:none;
  3471. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3472. font-weight:400;
  3473. font-style:normal;
  3474. font-size:14px;
  3475. text-align:center;
  3476. }
  3477. #u36234 {
  3478. border-width:0px;
  3479. position:absolute;
  3480. left:1455px;
  3481. top:493px;
  3482. width:74px;
  3483. height:30px;
  3484. display:flex;
  3485. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3486. font-weight:400;
  3487. font-style:normal;
  3488. font-size:14px;
  3489. text-align:center;
  3490. }
  3491. #u36234 .text {
  3492. position:absolute;
  3493. align-self:center;
  3494. padding:5px 0px 5px 0px;
  3495. box-sizing:border-box;
  3496. width:100%;
  3497. }
  3498. #u36234_text {
  3499. border-width:0px;
  3500. word-wrap:break-word;
  3501. text-transform:none;
  3502. }
  3503. #u36235 {
  3504. border-width:0px;
  3505. position:absolute;
  3506. left:0px;
  3507. top:0px;
  3508. width:0px;
  3509. height:0px;
  3510. }
  3511. #u36236_div {
  3512. border-width:0px;
  3513. position:absolute;
  3514. left:0px;
  3515. top:0px;
  3516. width:954px;
  3517. height:160px;
  3518. background:inherit;
  3519. background-color:rgba(255, 255, 255, 0.0980392156862745);
  3520. border:none;
  3521. border-radius:11px;
  3522. -moz-box-shadow:none;
  3523. -webkit-box-shadow:none;
  3524. box-shadow:none;
  3525. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3526. font-weight:400;
  3527. font-style:normal;
  3528. font-size:14px;
  3529. color:#AAAAAA;
  3530. text-align:center;
  3531. line-height:30px;
  3532. }
  3533. #u36236 {
  3534. border-width:0px;
  3535. position:absolute;
  3536. left:353px;
  3537. top:255px;
  3538. width:954px;
  3539. height:160px;
  3540. display:flex;
  3541. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3542. font-weight:400;
  3543. font-style:normal;
  3544. font-size:14px;
  3545. color:#AAAAAA;
  3546. text-align:center;
  3547. line-height:30px;
  3548. }
  3549. #u36236 .text {
  3550. position:absolute;
  3551. align-self:center;
  3552. padding:5px 10px 5px 10px;
  3553. box-sizing:border-box;
  3554. width:100%;
  3555. }
  3556. #u36236_text {
  3557. border-width:0px;
  3558. word-wrap:break-word;
  3559. text-transform:none;
  3560. visibility:hidden;
  3561. }
  3562. #u36237_div {
  3563. border-width:0px;
  3564. position:absolute;
  3565. left:0px;
  3566. top:0px;
  3567. width:71px;
  3568. height:31px;
  3569. background:inherit;
  3570. background-color:rgba(255, 255, 255, 0);
  3571. border:none;
  3572. border-top:0px;
  3573. border-right:0px;
  3574. border-bottom:0px;
  3575. border-radius:0px;
  3576. border-top-left-radius:0px;
  3577. border-bottom-left-radius:0px;
  3578. -moz-box-shadow:none;
  3579. -webkit-box-shadow:none;
  3580. box-shadow:none;
  3581. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  3582. font-weight:500;
  3583. font-style:normal;
  3584. font-size:15px;
  3585. }
  3586. #u36237 {
  3587. border-width:0px;
  3588. position:absolute;
  3589. left:371px;
  3590. top:274px;
  3591. width:71px;
  3592. height:31px;
  3593. display:flex;
  3594. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  3595. font-weight:500;
  3596. font-style:normal;
  3597. font-size:15px;
  3598. }
  3599. #u36237 .text {
  3600. position:absolute;
  3601. align-self:center;
  3602. padding:5px 10px 5px 0px;
  3603. box-sizing:border-box;
  3604. width:100%;
  3605. }
  3606. #u36237_text {
  3607. border-width:0px;
  3608. white-space:nowrap;
  3609. text-transform:none;
  3610. }
  3611. #u36238 {
  3612. border-width:0px;
  3613. position:absolute;
  3614. left:0px;
  3615. top:0px;
  3616. width:0px;
  3617. height:0px;
  3618. }
  3619. #u36239_img {
  3620. border-width:0px;
  3621. position:absolute;
  3622. left:0px;
  3623. top:0px;
  3624. width:32px;
  3625. height:19px;
  3626. }
  3627. #u36239 {
  3628. border-width:0px;
  3629. position:absolute;
  3630. left:1233px;
  3631. top:255px;
  3632. width:32px;
  3633. height:19px;
  3634. display:flex;
  3635. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3636. font-weight:400;
  3637. font-style:normal;
  3638. font-size:10px;
  3639. }
  3640. #u36239 .text {
  3641. position:absolute;
  3642. align-self:center;
  3643. padding:2px 2px 2px 2px;
  3644. box-sizing:border-box;
  3645. width:100%;
  3646. }
  3647. #u36239_text {
  3648. border-width:0px;
  3649. word-wrap:break-word;
  3650. text-transform:none;
  3651. }
  3652. #u36240_img {
  3653. border-width:0px;
  3654. position:absolute;
  3655. left:0px;
  3656. top:0px;
  3657. width:32px;
  3658. height:19px;
  3659. }
  3660. #u36240 {
  3661. border-width:0px;
  3662. position:absolute;
  3663. left:1266px;
  3664. top:255px;
  3665. width:32px;
  3666. height:19px;
  3667. display:flex;
  3668. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3669. font-weight:400;
  3670. font-style:normal;
  3671. font-size:10px;
  3672. }
  3673. #u36240 .text {
  3674. position:absolute;
  3675. align-self:center;
  3676. padding:2px 2px 2px 2px;
  3677. box-sizing:border-box;
  3678. width:100%;
  3679. }
  3680. #u36240_text {
  3681. border-width:0px;
  3682. word-wrap:break-word;
  3683. text-transform:none;
  3684. }
  3685. #u36241_img {
  3686. border-width:0px;
  3687. position:absolute;
  3688. left:0px;
  3689. top:0px;
  3690. width:927px;
  3691. height:30px;
  3692. }
  3693. #u36241 {
  3694. border-width:0px;
  3695. position:absolute;
  3696. left:371px;
  3697. top:355px;
  3698. width:927px;
  3699. height:30px;
  3700. display:flex;
  3701. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3702. font-weight:400;
  3703. font-style:normal;
  3704. font-size:12px;
  3705. }
  3706. #u36241 .text {
  3707. position:absolute;
  3708. align-self:center;
  3709. padding:5px 15px 5px 30px;
  3710. box-sizing:border-box;
  3711. width:100%;
  3712. }
  3713. #u36241_text {
  3714. border-width:0px;
  3715. word-wrap:break-word;
  3716. text-transform:none;
  3717. }
  3718. #u36242_div {
  3719. border-width:0px;
  3720. position:absolute;
  3721. left:0px;
  3722. top:0px;
  3723. width:80px;
  3724. height:30px;
  3725. background:inherit;
  3726. background-color:rgba(25, 140, 251, 1);
  3727. border:none;
  3728. border-radius:4px;
  3729. -moz-box-shadow:0px 0px 5px rgba(25, 140, 251, 1);
  3730. -webkit-box-shadow:0px 0px 5px rgba(25, 140, 251, 1);
  3731. box-shadow:0px 0px 5px rgba(25, 140, 251, 1);
  3732. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3733. font-weight:400;
  3734. font-style:normal;
  3735. font-size:14px;
  3736. color:#FFFFFF;
  3737. }
  3738. #u36242 {
  3739. border-width:0px;
  3740. position:absolute;
  3741. left:371px;
  3742. top:315px;
  3743. width:80px;
  3744. height:30px;
  3745. display:flex;
  3746. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3747. font-weight:400;
  3748. font-style:normal;
  3749. font-size:14px;
  3750. color:#FFFFFF;
  3751. }
  3752. #u36242 .text {
  3753. position:absolute;
  3754. align-self:center;
  3755. padding:2px 2px 2px 2px;
  3756. box-sizing:border-box;
  3757. width:100%;
  3758. }
  3759. #u36242_text {
  3760. border-width:0px;
  3761. word-wrap:break-word;
  3762. text-transform:none;
  3763. }
  3764. #u36243_div {
  3765. border-width:0px;
  3766. position:absolute;
  3767. left:0px;
  3768. top:0px;
  3769. width:80px;
  3770. height:30px;
  3771. background:inherit;
  3772. background-color:rgba(255, 255, 255, 1);
  3773. box-sizing:border-box;
  3774. border-width:1px;
  3775. border-style:solid;
  3776. border-color:rgba(215, 215, 215, 1);
  3777. border-radius:4px;
  3778. -moz-box-shadow:none;
  3779. -webkit-box-shadow:none;
  3780. box-shadow:none;
  3781. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3782. font-weight:400;
  3783. font-style:normal;
  3784. font-size:14px;
  3785. color:#555555;
  3786. }
  3787. #u36243 {
  3788. border-width:0px;
  3789. position:absolute;
  3790. left:461px;
  3791. top:315px;
  3792. width:80px;
  3793. height:30px;
  3794. display:flex;
  3795. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3796. font-weight:400;
  3797. font-style:normal;
  3798. font-size:14px;
  3799. color:#555555;
  3800. }
  3801. #u36243 .text {
  3802. position:absolute;
  3803. align-self:center;
  3804. padding:2px 2px 2px 2px;
  3805. box-sizing:border-box;
  3806. width:100%;
  3807. }
  3808. #u36243_text {
  3809. border-width:0px;
  3810. word-wrap:break-word;
  3811. text-transform:none;
  3812. }
  3813. #u36244_div {
  3814. border-width:0px;
  3815. position:absolute;
  3816. left:0px;
  3817. top:0px;
  3818. width:80px;
  3819. height:30px;
  3820. background:inherit;
  3821. background-color:rgba(255, 255, 255, 1);
  3822. box-sizing:border-box;
  3823. border-width:1px;
  3824. border-style:solid;
  3825. border-color:rgba(215, 215, 215, 1);
  3826. border-radius:4px;
  3827. -moz-box-shadow:none;
  3828. -webkit-box-shadow:none;
  3829. box-shadow:none;
  3830. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3831. font-weight:400;
  3832. font-style:normal;
  3833. font-size:14px;
  3834. color:#555555;
  3835. }
  3836. #u36244 {
  3837. border-width:0px;
  3838. position:absolute;
  3839. left:551px;
  3840. top:315px;
  3841. width:80px;
  3842. height:30px;
  3843. display:flex;
  3844. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3845. font-weight:400;
  3846. font-style:normal;
  3847. font-size:14px;
  3848. color:#555555;
  3849. }
  3850. #u36244 .text {
  3851. position:absolute;
  3852. align-self:center;
  3853. padding:2px 2px 2px 2px;
  3854. box-sizing:border-box;
  3855. width:100%;
  3856. }
  3857. #u36244_text {
  3858. border-width:0px;
  3859. word-wrap:break-word;
  3860. text-transform:none;
  3861. }