styles.css 73 KB

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