styles.css 54 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093
  1. body {
  2. margin:0px;
  3. background-image:none;
  4. position:relative;
  5. left:0px;
  6. width:1556px;
  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. #u41155_img {
  20. border-width:0px;
  21. position:absolute;
  22. left:0px;
  23. top:0px;
  24. width:433px;
  25. height:865px;
  26. }
  27. #u41155 {
  28. border-width:0px;
  29. position:absolute;
  30. left:458px;
  31. top:0px;
  32. width:433px;
  33. height:865px;
  34. display:flex;
  35. }
  36. #u41155 .text {
  37. position:absolute;
  38. align-self:center;
  39. padding:2px 2px 2px 2px;
  40. box-sizing:border-box;
  41. width:100%;
  42. }
  43. #u41155_text {
  44. border-width:0px;
  45. word-wrap:break-word;
  46. text-transform:none;
  47. visibility:hidden;
  48. }
  49. #u41156_div {
  50. border-width:0px;
  51. position:absolute;
  52. left:0px;
  53. top:0px;
  54. width:375px;
  55. height:40px;
  56. background:inherit;
  57. background-color:rgba(255, 255, 255, 1);
  58. box-sizing:border-box;
  59. border-width:1px;
  60. border-style:solid;
  61. border-color:rgba(215, 215, 215, 1);
  62. border-left:0px;
  63. border-top:0px;
  64. border-right:0px;
  65. border-radius:0px;
  66. border-bottom-right-radius:0px;
  67. border-bottom-left-radius:0px;
  68. -moz-box-shadow:none;
  69. -webkit-box-shadow:none;
  70. box-shadow:none;
  71. }
  72. #u41156 {
  73. border-width:0px;
  74. position:absolute;
  75. left:487px;
  76. top:67px;
  77. width:375px;
  78. height:40px;
  79. display:flex;
  80. }
  81. #u41156 .text {
  82. position:absolute;
  83. align-self:center;
  84. padding:2px 2px 2px 2px;
  85. box-sizing:border-box;
  86. width:100%;
  87. }
  88. #u41156_text {
  89. border-width:0px;
  90. word-wrap:break-word;
  91. text-transform:none;
  92. visibility:hidden;
  93. }
  94. #u41157 {
  95. border-width:0px;
  96. position:absolute;
  97. left:0px;
  98. top:0px;
  99. width:0px;
  100. height:0px;
  101. }
  102. #u41158_div {
  103. border-width:0px;
  104. position:absolute;
  105. left:0px;
  106. top:0px;
  107. width:88px;
  108. height:32px;
  109. background:inherit;
  110. background-color:rgba(255, 255, 255, 1);
  111. box-sizing:border-box;
  112. border-width:1px;
  113. border-style:solid;
  114. border-color:rgba(242, 242, 242, 1);
  115. border-radius:33px;
  116. -moz-box-shadow:none;
  117. -webkit-box-shadow:none;
  118. box-shadow:none;
  119. }
  120. #u41158 {
  121. border-width:0px;
  122. position:absolute;
  123. left:767px;
  124. top:71px;
  125. width:88px;
  126. height:32px;
  127. display:flex;
  128. }
  129. #u41158 .text {
  130. position:absolute;
  131. align-self:center;
  132. padding:2px 2px 2px 2px;
  133. box-sizing:border-box;
  134. width:100%;
  135. }
  136. #u41158_text {
  137. border-width:0px;
  138. word-wrap:break-word;
  139. text-transform:none;
  140. visibility:hidden;
  141. }
  142. #u41159 {
  143. border-width:0px;
  144. position:absolute;
  145. left:0px;
  146. top:0px;
  147. width:0px;
  148. height:0px;
  149. }
  150. #u41160_img {
  151. border-width:0px;
  152. position:absolute;
  153. left:0px;
  154. top:0px;
  155. width:18px;
  156. height:18px;
  157. }
  158. #u41160 {
  159. border-width:0px;
  160. position:absolute;
  161. left:830px;
  162. top:78px;
  163. width:18px;
  164. height:18px;
  165. display:flex;
  166. }
  167. #u41160 .text {
  168. position:absolute;
  169. align-self:center;
  170. padding:2px 2px 2px 2px;
  171. box-sizing:border-box;
  172. width:100%;
  173. }
  174. #u41160_text {
  175. border-width:0px;
  176. word-wrap:break-word;
  177. text-transform:none;
  178. visibility:hidden;
  179. }
  180. #u41161_img {
  181. border-width:0px;
  182. position:absolute;
  183. left:0px;
  184. top:0px;
  185. width:6px;
  186. height:6px;
  187. }
  188. #u41161 {
  189. border-width:0px;
  190. position:absolute;
  191. left:836px;
  192. top:84px;
  193. width:6px;
  194. height:6px;
  195. display:flex;
  196. }
  197. #u41161 .text {
  198. position:absolute;
  199. align-self:center;
  200. padding:2px 2px 2px 2px;
  201. box-sizing:border-box;
  202. width:100%;
  203. }
  204. #u41161_text {
  205. border-width:0px;
  206. word-wrap:break-word;
  207. text-transform:none;
  208. visibility:hidden;
  209. }
  210. #u41162 {
  211. border-width:0px;
  212. position:absolute;
  213. left:0px;
  214. top:0px;
  215. width:0px;
  216. height:0px;
  217. }
  218. #u41163_img {
  219. border-width:0px;
  220. position:absolute;
  221. left:0px;
  222. top:0px;
  223. width:5px;
  224. height:5px;
  225. }
  226. #u41163 {
  227. border-width:0px;
  228. position:absolute;
  229. left:781px;
  230. top:85px;
  231. width:5px;
  232. height:5px;
  233. display:flex;
  234. }
  235. #u41163 .text {
  236. position:absolute;
  237. align-self:center;
  238. padding:2px 2px 2px 2px;
  239. box-sizing:border-box;
  240. width:100%;
  241. }
  242. #u41163_text {
  243. border-width:0px;
  244. word-wrap:break-word;
  245. text-transform:none;
  246. visibility:hidden;
  247. }
  248. #u41164_img {
  249. border-width:0px;
  250. position:absolute;
  251. left:0px;
  252. top:0px;
  253. width:5px;
  254. height:5px;
  255. }
  256. #u41164 {
  257. border-width:0px;
  258. position:absolute;
  259. left:797px;
  260. top:85px;
  261. width:5px;
  262. height:5px;
  263. display:flex;
  264. }
  265. #u41164 .text {
  266. position:absolute;
  267. align-self:center;
  268. padding:2px 2px 2px 2px;
  269. box-sizing:border-box;
  270. width:100%;
  271. }
  272. #u41164_text {
  273. border-width:0px;
  274. word-wrap:break-word;
  275. text-transform:none;
  276. visibility:hidden;
  277. }
  278. #u41165_img {
  279. border-width:0px;
  280. position:absolute;
  281. left:0px;
  282. top:0px;
  283. width:7px;
  284. height:7px;
  285. }
  286. #u41165 {
  287. border-width:0px;
  288. position:absolute;
  289. left:788px;
  290. top:84px;
  291. width:7px;
  292. height:7px;
  293. display:flex;
  294. }
  295. #u41165 .text {
  296. position:absolute;
  297. align-self:center;
  298. padding:2px 2px 2px 2px;
  299. box-sizing:border-box;
  300. width:100%;
  301. }
  302. #u41165_text {
  303. border-width:0px;
  304. word-wrap:break-word;
  305. text-transform:none;
  306. visibility:hidden;
  307. }
  308. #u41166_img {
  309. border-width:0px;
  310. position:absolute;
  311. left:0px;
  312. top:0px;
  313. width:19px;
  314. height:2px;
  315. }
  316. #u41166 {
  317. border-width:0px;
  318. position:absolute;
  319. left:805px;
  320. top:87px;
  321. width:18px;
  322. height:1px;
  323. display:flex;
  324. -webkit-transform:rotate(90deg);
  325. -moz-transform:rotate(90deg);
  326. -ms-transform:rotate(90deg);
  327. transform:rotate(90deg);
  328. }
  329. #u41166 .text {
  330. position:absolute;
  331. align-self:center;
  332. padding:2px 2px 2px 2px;
  333. box-sizing:border-box;
  334. width:100%;
  335. }
  336. #u41166_text {
  337. border-width:0px;
  338. word-wrap:break-word;
  339. text-transform:none;
  340. visibility:hidden;
  341. }
  342. #u41167_img {
  343. border-width:0px;
  344. position:absolute;
  345. left:0px;
  346. top:0px;
  347. width:375px;
  348. height:44px;
  349. }
  350. #u41167 {
  351. border-width:0px;
  352. position:absolute;
  353. left:487px;
  354. top:24px;
  355. width:375px;
  356. height:44px;
  357. display:flex;
  358. }
  359. #u41167 .text {
  360. position:absolute;
  361. align-self:center;
  362. padding:2px 2px 2px 2px;
  363. box-sizing:border-box;
  364. width:100%;
  365. }
  366. #u41167_text {
  367. border-width:0px;
  368. word-wrap:break-word;
  369. text-transform:none;
  370. visibility:hidden;
  371. }
  372. #u41168_div {
  373. border-width:0px;
  374. position:absolute;
  375. left:0px;
  376. top:0px;
  377. width:375px;
  378. height:50px;
  379. background:inherit;
  380. background-color:rgba(255, 255, 255, 1);
  381. box-sizing:border-box;
  382. border-width:1px;
  383. border-style:solid;
  384. border-color:rgba(242, 242, 242, 1);
  385. border-radius:26px;
  386. border-top-left-radius:0px;
  387. border-top-right-radius:0px;
  388. -moz-box-shadow:none;
  389. -webkit-box-shadow:none;
  390. box-shadow:none;
  391. }
  392. #u41168 {
  393. border-width:0px;
  394. position:absolute;
  395. left:487px;
  396. top:788px;
  397. width:375px;
  398. height:50px;
  399. display:flex;
  400. }
  401. #u41168 .text {
  402. position:absolute;
  403. align-self:center;
  404. padding:2px 2px 2px 2px;
  405. box-sizing:border-box;
  406. width:100%;
  407. }
  408. #u41168_text {
  409. border-width:0px;
  410. word-wrap:break-word;
  411. text-transform:none;
  412. visibility:hidden;
  413. }
  414. #u41169 {
  415. border-width:0px;
  416. position:absolute;
  417. left:0px;
  418. top:0px;
  419. width:0px;
  420. height:0px;
  421. }
  422. #u41170_img {
  423. border-width:0px;
  424. position:absolute;
  425. left:0px;
  426. top:0px;
  427. width:24px;
  428. height:24px;
  429. }
  430. #u41170 {
  431. border-width:0px;
  432. position:absolute;
  433. left:527px;
  434. top:792px;
  435. width:24px;
  436. height:24px;
  437. display:flex;
  438. font-size:8px;
  439. }
  440. #u41170 .text {
  441. position:absolute;
  442. align-self:center;
  443. padding:2px 2px 2px 2px;
  444. box-sizing:border-box;
  445. width:100%;
  446. }
  447. #u41170_text {
  448. border-width:0px;
  449. word-wrap:break-word;
  450. text-transform:none;
  451. }
  452. #u41171_div {
  453. border-width:0px;
  454. position:absolute;
  455. left:0px;
  456. top:0px;
  457. width:25px;
  458. height:17px;
  459. background:inherit;
  460. background-color:rgba(255, 255, 255, 0);
  461. border:none;
  462. border-radius:0px;
  463. -moz-box-shadow:none;
  464. -webkit-box-shadow:none;
  465. box-shadow:none;
  466. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  467. font-weight:400;
  468. font-style:normal;
  469. font-size:12px;
  470. }
  471. #u41171 {
  472. border-width:0px;
  473. position:absolute;
  474. left:527px;
  475. top:817px;
  476. width:25px;
  477. height:17px;
  478. display:flex;
  479. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  480. font-weight:400;
  481. font-style:normal;
  482. font-size:12px;
  483. }
  484. #u41171 .text {
  485. position:absolute;
  486. align-self:flex-start;
  487. padding:0px 0px 0px 0px;
  488. box-sizing:border-box;
  489. width:100%;
  490. }
  491. #u41171_text {
  492. border-width:0px;
  493. white-space:nowrap;
  494. text-transform:none;
  495. }
  496. #u41172 {
  497. border-width:0px;
  498. position:absolute;
  499. left:0px;
  500. top:0px;
  501. width:0px;
  502. height:0px;
  503. }
  504. #u41173_img {
  505. border-width:0px;
  506. position:absolute;
  507. left:0px;
  508. top:0px;
  509. width:24px;
  510. height:24px;
  511. }
  512. #u41173 {
  513. border-width:0px;
  514. position:absolute;
  515. left:797px;
  516. top:794px;
  517. width:24px;
  518. height:24px;
  519. display:flex;
  520. font-size:8px;
  521. }
  522. #u41173 .text {
  523. position:absolute;
  524. align-self:center;
  525. padding:2px 2px 2px 2px;
  526. box-sizing:border-box;
  527. width:100%;
  528. }
  529. #u41173_text {
  530. border-width:0px;
  531. word-wrap:break-word;
  532. text-transform:none;
  533. }
  534. #u41174_div {
  535. border-width:0px;
  536. position:absolute;
  537. left:0px;
  538. top:0px;
  539. width:25px;
  540. height:17px;
  541. background:inherit;
  542. background-color:rgba(255, 255, 255, 0);
  543. border:none;
  544. border-radius:0px;
  545. -moz-box-shadow:none;
  546. -webkit-box-shadow:none;
  547. box-shadow:none;
  548. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  549. font-weight:400;
  550. font-style:normal;
  551. font-size:12px;
  552. }
  553. #u41174 {
  554. border-width:0px;
  555. position:absolute;
  556. left:797px;
  557. top:819px;
  558. width:25px;
  559. height:17px;
  560. display:flex;
  561. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  562. font-weight:400;
  563. font-style:normal;
  564. font-size:12px;
  565. }
  566. #u41174 .text {
  567. position:absolute;
  568. align-self:flex-start;
  569. padding:0px 0px 0px 0px;
  570. box-sizing:border-box;
  571. width:100%;
  572. }
  573. #u41174_text {
  574. border-width:0px;
  575. white-space:nowrap;
  576. text-transform:none;
  577. }
  578. #u41175_div {
  579. border-width:0px;
  580. position:absolute;
  581. left:0px;
  582. top:0px;
  583. width:375px;
  584. height:681px;
  585. background:inherit;
  586. background-color:rgba(242, 242, 242, 0.462745098039216);
  587. border:none;
  588. border-radius:0px;
  589. -moz-box-shadow:none;
  590. -webkit-box-shadow:none;
  591. box-shadow:none;
  592. }
  593. #u41175 {
  594. border-width:0px;
  595. position:absolute;
  596. left:487px;
  597. top:107px;
  598. width:375px;
  599. height:681px;
  600. display:flex;
  601. }
  602. #u41175 .text {
  603. position:absolute;
  604. align-self:center;
  605. padding:2px 2px 2px 2px;
  606. box-sizing:border-box;
  607. width:100%;
  608. }
  609. #u41175_text {
  610. border-width:0px;
  611. word-wrap:break-word;
  612. text-transform:none;
  613. visibility:hidden;
  614. }
  615. #u41176 {
  616. border-width:0px;
  617. position:absolute;
  618. left:0px;
  619. top:0px;
  620. width:0px;
  621. height:0px;
  622. }
  623. #u41177_img {
  624. border-width:0px;
  625. position:absolute;
  626. left:0px;
  627. top:0px;
  628. width:24px;
  629. height:24px;
  630. }
  631. #u41177 {
  632. border-width:0px;
  633. position:absolute;
  634. left:709px;
  635. top:792px;
  636. width:24px;
  637. height:24px;
  638. display:flex;
  639. font-size:8px;
  640. }
  641. #u41177 .text {
  642. position:absolute;
  643. align-self:center;
  644. padding:2px 2px 2px 2px;
  645. box-sizing:border-box;
  646. width:100%;
  647. }
  648. #u41177_text {
  649. border-width:0px;
  650. word-wrap:break-word;
  651. text-transform:none;
  652. }
  653. #u41178_div {
  654. border-width:0px;
  655. position:absolute;
  656. left:0px;
  657. top:0px;
  658. width:37px;
  659. height:17px;
  660. background:inherit;
  661. background-color:rgba(255, 255, 255, 0);
  662. border:none;
  663. border-radius:0px;
  664. -moz-box-shadow:none;
  665. -webkit-box-shadow:none;
  666. box-shadow:none;
  667. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  668. font-weight:400;
  669. font-style:normal;
  670. font-size:12px;
  671. }
  672. #u41178 {
  673. border-width:0px;
  674. position:absolute;
  675. left:703px;
  676. top:817px;
  677. width:37px;
  678. height:17px;
  679. display:flex;
  680. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  681. font-weight:400;
  682. font-style:normal;
  683. font-size:12px;
  684. }
  685. #u41178 .text {
  686. position:absolute;
  687. align-self:flex-start;
  688. padding:0px 0px 0px 0px;
  689. box-sizing:border-box;
  690. width:100%;
  691. }
  692. #u41178_text {
  693. border-width:0px;
  694. white-space:nowrap;
  695. text-transform:none;
  696. }
  697. #u41179 {
  698. border-width:0px;
  699. position:absolute;
  700. left:0px;
  701. top:0px;
  702. width:0px;
  703. height:0px;
  704. }
  705. #u41180_img {
  706. border-width:0px;
  707. position:absolute;
  708. left:0px;
  709. top:0px;
  710. width:24px;
  711. height:24px;
  712. }
  713. #u41180 {
  714. border-width:0px;
  715. position:absolute;
  716. left:615px;
  717. top:792px;
  718. width:24px;
  719. height:24px;
  720. display:flex;
  721. font-size:8px;
  722. }
  723. #u41180 .text {
  724. position:absolute;
  725. align-self:center;
  726. padding:2px 2px 2px 2px;
  727. box-sizing:border-box;
  728. width:100%;
  729. }
  730. #u41180_text {
  731. border-width:0px;
  732. word-wrap:break-word;
  733. text-transform:none;
  734. }
  735. #u41181_div {
  736. border-width:0px;
  737. position:absolute;
  738. left:0px;
  739. top:0px;
  740. width:37px;
  741. height:17px;
  742. background:inherit;
  743. background-color:rgba(255, 255, 255, 0);
  744. border:none;
  745. border-radius:0px;
  746. -moz-box-shadow:none;
  747. -webkit-box-shadow:none;
  748. box-shadow:none;
  749. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  750. font-weight:400;
  751. font-style:normal;
  752. font-size:12px;
  753. }
  754. #u41181 {
  755. border-width:0px;
  756. position:absolute;
  757. left:609px;
  758. top:817px;
  759. width:37px;
  760. height:17px;
  761. display:flex;
  762. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  763. font-weight:400;
  764. font-style:normal;
  765. font-size:12px;
  766. }
  767. #u41181 .text {
  768. position:absolute;
  769. align-self:flex-start;
  770. padding:0px 0px 0px 0px;
  771. box-sizing:border-box;
  772. width:100%;
  773. }
  774. #u41181_text {
  775. border-width:0px;
  776. white-space:nowrap;
  777. text-transform:none;
  778. }
  779. #u41182_div {
  780. border-width:0px;
  781. position:absolute;
  782. left:0px;
  783. top:0px;
  784. width:375px;
  785. height:734px;
  786. background:inherit;
  787. background-color:rgba(255, 255, 255, 1);
  788. border:none;
  789. border-radius:21px;
  790. border-top-left-radius:0px;
  791. border-top-right-radius:0px;
  792. -moz-box-shadow:none;
  793. -webkit-box-shadow:none;
  794. box-shadow:none;
  795. }
  796. #u41182 {
  797. border-width:0px;
  798. position:absolute;
  799. left:487px;
  800. top:107px;
  801. width:375px;
  802. height:734px;
  803. display:flex;
  804. }
  805. #u41182 .text {
  806. position:absolute;
  807. align-self:center;
  808. padding:2px 2px 2px 2px;
  809. box-sizing:border-box;
  810. width:100%;
  811. }
  812. #u41182_text {
  813. border-width:0px;
  814. word-wrap:break-word;
  815. text-transform:none;
  816. visibility:hidden;
  817. }
  818. #u41183 {
  819. border-width:0px;
  820. position:absolute;
  821. left:0px;
  822. top:0px;
  823. width:0px;
  824. height:0px;
  825. }
  826. #u41184_div {
  827. border-width:0px;
  828. position:absolute;
  829. left:0px;
  830. top:0px;
  831. width:375px;
  832. height:40px;
  833. background:inherit;
  834. background-color:rgba(255, 255, 255, 1);
  835. box-sizing:border-box;
  836. border-width:1px;
  837. border-style:solid;
  838. border-color:rgba(215, 215, 215, 1);
  839. border-left:0px;
  840. border-top:0px;
  841. border-right:0px;
  842. border-radius:0px;
  843. border-bottom-right-radius:0px;
  844. border-bottom-left-radius:0px;
  845. -moz-box-shadow:none;
  846. -webkit-box-shadow:none;
  847. box-shadow:none;
  848. }
  849. #u41184 {
  850. border-width:0px;
  851. position:absolute;
  852. left:487px;
  853. top:67px;
  854. width:375px;
  855. height:40px;
  856. display:flex;
  857. }
  858. #u41184 .text {
  859. position:absolute;
  860. align-self:center;
  861. padding:2px 2px 2px 2px;
  862. box-sizing:border-box;
  863. width:100%;
  864. }
  865. #u41184_text {
  866. border-width:0px;
  867. word-wrap:break-word;
  868. text-transform:none;
  869. visibility:hidden;
  870. }
  871. #u41185_img {
  872. border-width:0px;
  873. position:absolute;
  874. left:0px;
  875. top:0px;
  876. width:14px;
  877. height:14px;
  878. }
  879. #u41185 {
  880. border-width:0px;
  881. position:absolute;
  882. left:534px;
  883. top:81px;
  884. width:14px;
  885. height:14px;
  886. display:flex;
  887. }
  888. #u41185 .text {
  889. position:absolute;
  890. align-self:center;
  891. padding:2px 2px 2px 2px;
  892. box-sizing:border-box;
  893. width:100%;
  894. }
  895. #u41185_text {
  896. border-width:0px;
  897. word-wrap:break-word;
  898. text-transform:none;
  899. visibility:hidden;
  900. }
  901. #u41186_div {
  902. border-width:0px;
  903. position:absolute;
  904. left:0px;
  905. top:0px;
  906. width:129px;
  907. height:22px;
  908. background:inherit;
  909. background-color:rgba(255, 255, 255, 0);
  910. border:none;
  911. border-radius:0px;
  912. -moz-box-shadow:none;
  913. -webkit-box-shadow:none;
  914. box-shadow:none;
  915. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  916. font-weight:400;
  917. font-style:normal;
  918. font-size:16px;
  919. color:#000000;
  920. }
  921. #u41186 {
  922. border-width:0px;
  923. position:absolute;
  924. left:610px;
  925. top:76px;
  926. width:129px;
  927. height:22px;
  928. display:flex;
  929. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  930. font-weight:400;
  931. font-style:normal;
  932. font-size:16px;
  933. color:#000000;
  934. }
  935. #u41186 .text {
  936. position:absolute;
  937. align-self:flex-start;
  938. padding:0px 0px 0px 0px;
  939. box-sizing:border-box;
  940. width:100%;
  941. }
  942. #u41186_text {
  943. border-width:0px;
  944. white-space:nowrap;
  945. text-transform:none;
  946. }
  947. #u41187 {
  948. border-width:0px;
  949. position:absolute;
  950. left:0px;
  951. top:0px;
  952. width:0px;
  953. height:0px;
  954. }
  955. #u41188_img {
  956. border-width:0px;
  957. position:absolute;
  958. left:0px;
  959. top:0px;
  960. width:11px;
  961. height:18px;
  962. }
  963. #u41188 {
  964. border-width:0px;
  965. position:absolute;
  966. left:500px;
  967. top:79px;
  968. width:11px;
  969. height:18px;
  970. display:flex;
  971. }
  972. #u41188 .text {
  973. position:absolute;
  974. align-self:center;
  975. padding:2px 2px 2px 2px;
  976. box-sizing:border-box;
  977. width:100%;
  978. }
  979. #u41188_text {
  980. border-width:0px;
  981. word-wrap:break-word;
  982. text-transform:none;
  983. visibility:hidden;
  984. }
  985. #u41189_div {
  986. border-width:0px;
  987. position:absolute;
  988. left:0px;
  989. top:0px;
  990. width:347px;
  991. height:60px;
  992. background:inherit;
  993. background-color:rgba(255, 255, 255, 0);
  994. border:none;
  995. border-left:0px;
  996. border-top:0px;
  997. border-right:0px;
  998. border-radius:0px;
  999. border-bottom-right-radius:0px;
  1000. border-bottom-left-radius:0px;
  1001. -moz-box-shadow:none;
  1002. -webkit-box-shadow:none;
  1003. box-shadow:none;
  1004. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1005. font-style:normal;
  1006. font-size:14px;
  1007. line-height:30px;
  1008. }
  1009. #u41189 {
  1010. border-width:0px;
  1011. position:absolute;
  1012. left:502px;
  1013. top:177px;
  1014. width:347px;
  1015. height:60px;
  1016. display:flex;
  1017. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1018. font-style:normal;
  1019. font-size:14px;
  1020. line-height:30px;
  1021. }
  1022. #u41189 .text {
  1023. position:absolute;
  1024. align-self:flex-start;
  1025. padding:0px 0px 0px 0px;
  1026. box-sizing:border-box;
  1027. width:100%;
  1028. }
  1029. #u41189_text {
  1030. border-width:0px;
  1031. word-wrap:break-word;
  1032. text-transform:none;
  1033. }
  1034. #u41190_div {
  1035. border-width:0px;
  1036. position:absolute;
  1037. left:0px;
  1038. top:0px;
  1039. width:349px;
  1040. height:454px;
  1041. background:inherit;
  1042. background-color:rgba(242, 242, 242, 1);
  1043. border:none;
  1044. border-radius:9px;
  1045. -moz-box-shadow:none;
  1046. -webkit-box-shadow:none;
  1047. box-shadow:none;
  1048. }
  1049. #u41190 {
  1050. border-width:0px;
  1051. position:absolute;
  1052. left:500px;
  1053. top:247px;
  1054. width:349px;
  1055. height:454px;
  1056. display:flex;
  1057. }
  1058. #u41190 .text {
  1059. position:absolute;
  1060. align-self:center;
  1061. padding:2px 2px 2px 2px;
  1062. box-sizing:border-box;
  1063. width:100%;
  1064. }
  1065. #u41190_text {
  1066. border-width:0px;
  1067. word-wrap:break-word;
  1068. text-transform:none;
  1069. visibility:hidden;
  1070. }
  1071. #u41191 {
  1072. border-width:0px;
  1073. position:absolute;
  1074. left:0px;
  1075. top:0px;
  1076. width:0px;
  1077. height:0px;
  1078. }
  1079. #u41192_div {
  1080. border-width:0px;
  1081. position:absolute;
  1082. left:0px;
  1083. top:0px;
  1084. width:91px;
  1085. height:30px;
  1086. background:inherit;
  1087. background-color:rgba(255, 255, 255, 0);
  1088. border:none;
  1089. border-left:0px;
  1090. border-top:0px;
  1091. border-right:0px;
  1092. border-radius:0px;
  1093. border-bottom-right-radius:0px;
  1094. border-bottom-left-radius:0px;
  1095. -moz-box-shadow:none;
  1096. -webkit-box-shadow:none;
  1097. box-shadow:none;
  1098. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1099. font-weight:400;
  1100. font-style:normal;
  1101. font-size:18px;
  1102. line-height:30px;
  1103. }
  1104. #u41192 {
  1105. border-width:0px;
  1106. position:absolute;
  1107. left:521px;
  1108. top:298px;
  1109. width:91px;
  1110. height:30px;
  1111. display:flex;
  1112. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1113. font-weight:400;
  1114. font-style:normal;
  1115. font-size:18px;
  1116. line-height:30px;
  1117. }
  1118. #u41192 .text {
  1119. position:absolute;
  1120. align-self:flex-start;
  1121. padding:0px 0px 0px 0px;
  1122. box-sizing:border-box;
  1123. width:100%;
  1124. }
  1125. #u41192_text {
  1126. border-width:0px;
  1127. white-space:nowrap;
  1128. text-transform:none;
  1129. }
  1130. #u41193_div {
  1131. border-width:0px;
  1132. position:absolute;
  1133. left:0px;
  1134. top:0px;
  1135. width:55px;
  1136. height:30px;
  1137. background:inherit;
  1138. background-color:rgba(255, 255, 255, 0);
  1139. border:none;
  1140. border-left:0px;
  1141. border-top:0px;
  1142. border-right:0px;
  1143. border-radius:0px;
  1144. border-bottom-right-radius:0px;
  1145. border-bottom-left-radius:0px;
  1146. -moz-box-shadow:none;
  1147. -webkit-box-shadow:none;
  1148. box-shadow:none;
  1149. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1150. font-weight:400;
  1151. font-style:normal;
  1152. font-size:12px;
  1153. color:#AAAAAA;
  1154. line-height:30px;
  1155. }
  1156. #u41193 {
  1157. border-width:0px;
  1158. position:absolute;
  1159. left:521px;
  1160. top:267px;
  1161. width:55px;
  1162. height:30px;
  1163. display:flex;
  1164. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1165. font-weight:400;
  1166. font-style:normal;
  1167. font-size:12px;
  1168. color:#AAAAAA;
  1169. line-height:30px;
  1170. }
  1171. #u41193 .text {
  1172. position:absolute;
  1173. align-self:flex-start;
  1174. padding:0px 0px 0px 0px;
  1175. box-sizing:border-box;
  1176. width:100%;
  1177. }
  1178. #u41193_text {
  1179. border-width:0px;
  1180. white-space:nowrap;
  1181. text-transform:none;
  1182. }
  1183. #u41194 {
  1184. border-width:0px;
  1185. position:absolute;
  1186. left:0px;
  1187. top:0px;
  1188. width:0px;
  1189. height:0px;
  1190. }
  1191. #u41195_img {
  1192. border-width:0px;
  1193. position:absolute;
  1194. left:0px;
  1195. top:0px;
  1196. width:8px;
  1197. height:13px;
  1198. }
  1199. #u41195 {
  1200. border-width:0px;
  1201. position:absolute;
  1202. left:832px;
  1203. top:317px;
  1204. width:8px;
  1205. height:13px;
  1206. display:flex;
  1207. -webkit-transform:rotate(180deg);
  1208. -moz-transform:rotate(180deg);
  1209. -ms-transform:rotate(180deg);
  1210. transform:rotate(180deg);
  1211. }
  1212. #u41195 .text {
  1213. position:absolute;
  1214. align-self:center;
  1215. padding:2px 2px 2px 2px;
  1216. box-sizing:border-box;
  1217. width:100%;
  1218. }
  1219. #u41195_text {
  1220. border-width:0px;
  1221. word-wrap:break-word;
  1222. text-transform:none;
  1223. visibility:hidden;
  1224. }
  1225. #u41196_div {
  1226. border-width:0px;
  1227. position:absolute;
  1228. left:0px;
  1229. top:0px;
  1230. width:61px;
  1231. height:30px;
  1232. background:inherit;
  1233. background-color:rgba(255, 255, 255, 0);
  1234. border:none;
  1235. border-left:0px;
  1236. border-top:0px;
  1237. border-right:0px;
  1238. border-radius:0px;
  1239. border-bottom-right-radius:0px;
  1240. border-bottom-left-radius:0px;
  1241. -moz-box-shadow:none;
  1242. -webkit-box-shadow:none;
  1243. box-shadow:none;
  1244. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1245. font-weight:400;
  1246. font-style:normal;
  1247. font-size:10px;
  1248. color:#1890FF;
  1249. line-height:30px;
  1250. }
  1251. #u41196 {
  1252. border-width:0px;
  1253. position:absolute;
  1254. left:779px;
  1255. top:264px;
  1256. width:61px;
  1257. height:30px;
  1258. display:flex;
  1259. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1260. font-weight:400;
  1261. font-style:normal;
  1262. font-size:10px;
  1263. color:#1890FF;
  1264. line-height:30px;
  1265. }
  1266. #u41196 .text {
  1267. position:absolute;
  1268. align-self:flex-start;
  1269. padding:0px 0px 0px 0px;
  1270. box-sizing:border-box;
  1271. width:100%;
  1272. }
  1273. #u41196_text {
  1274. border-width:0px;
  1275. white-space:nowrap;
  1276. text-transform:none;
  1277. }
  1278. #u41197_div {
  1279. border-width:0px;
  1280. position:absolute;
  1281. left:0px;
  1282. top:0px;
  1283. width:332px;
  1284. height:40px;
  1285. background:inherit;
  1286. background-color:rgba(24, 144, 255, 0.4);
  1287. border:none;
  1288. border-radius:45px;
  1289. -moz-box-shadow:none;
  1290. -webkit-box-shadow:none;
  1291. box-shadow:none;
  1292. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1293. font-weight:400;
  1294. font-style:normal;
  1295. font-size:14px;
  1296. color:#FFFFFF;
  1297. }
  1298. #u41197 {
  1299. border-width:0px;
  1300. position:absolute;
  1301. left:508px;
  1302. top:781px;
  1303. width:332px;
  1304. height:40px;
  1305. display:flex;
  1306. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1307. font-weight:400;
  1308. font-style:normal;
  1309. font-size:14px;
  1310. color:#FFFFFF;
  1311. }
  1312. #u41197 .text {
  1313. position:absolute;
  1314. align-self:center;
  1315. padding:2px 2px 2px 2px;
  1316. box-sizing:border-box;
  1317. width:100%;
  1318. }
  1319. #u41197_text {
  1320. border-width:0px;
  1321. word-wrap:break-word;
  1322. text-transform:none;
  1323. }
  1324. #u41198_div {
  1325. border-width:0px;
  1326. position:absolute;
  1327. left:0px;
  1328. top:0px;
  1329. width:40px;
  1330. height:40px;
  1331. background:inherit;
  1332. background-color:rgba(24, 144, 255, 1);
  1333. border:none;
  1334. border-radius:4px;
  1335. -moz-box-shadow:none;
  1336. -webkit-box-shadow:none;
  1337. box-shadow:none;
  1338. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1339. font-weight:400;
  1340. font-style:normal;
  1341. color:#FFFFFF;
  1342. }
  1343. #u41198 {
  1344. border-width:0px;
  1345. position:absolute;
  1346. left:502px;
  1347. top:127px;
  1348. width:40px;
  1349. height:40px;
  1350. display:flex;
  1351. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1352. font-weight:400;
  1353. font-style:normal;
  1354. color:#FFFFFF;
  1355. }
  1356. #u41198 .text {
  1357. position:absolute;
  1358. align-self:center;
  1359. padding:2px 2px 2px 2px;
  1360. box-sizing:border-box;
  1361. width:100%;
  1362. }
  1363. #u41198_text {
  1364. border-width:0px;
  1365. word-wrap:break-word;
  1366. text-transform:none;
  1367. }
  1368. #u41199_div {
  1369. border-width:0px;
  1370. position:absolute;
  1371. left:0px;
  1372. top:0px;
  1373. width:279px;
  1374. height:25px;
  1375. background:inherit;
  1376. background-color:rgba(255, 255, 255, 0);
  1377. border:none;
  1378. border-left:0px;
  1379. border-top:0px;
  1380. border-right:0px;
  1381. border-radius:0px;
  1382. border-bottom-right-radius:0px;
  1383. border-bottom-left-radius:0px;
  1384. -moz-box-shadow:none;
  1385. -webkit-box-shadow:none;
  1386. box-shadow:none;
  1387. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  1388. font-weight:500;
  1389. font-style:normal;
  1390. font-size:18px;
  1391. }
  1392. #u41199 {
  1393. border-width:0px;
  1394. position:absolute;
  1395. left:558px;
  1396. top:135px;
  1397. width:279px;
  1398. height:25px;
  1399. display:flex;
  1400. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  1401. font-weight:500;
  1402. font-style:normal;
  1403. font-size:18px;
  1404. }
  1405. #u41199 .text {
  1406. position:absolute;
  1407. align-self:flex-start;
  1408. padding:0px 0px 0px 0px;
  1409. box-sizing:border-box;
  1410. width:100%;
  1411. }
  1412. #u41199_text {
  1413. border-width:0px;
  1414. word-wrap:break-word;
  1415. text-transform:none;
  1416. }
  1417. #u41200 {
  1418. border-width:0px;
  1419. position:absolute;
  1420. left:0px;
  1421. top:0px;
  1422. width:0px;
  1423. height:0px;
  1424. }
  1425. #u41201_div {
  1426. border-width:0px;
  1427. position:absolute;
  1428. left:0px;
  1429. top:0px;
  1430. width:37px;
  1431. height:30px;
  1432. background:inherit;
  1433. background-color:rgba(255, 255, 255, 0);
  1434. border:none;
  1435. border-left:0px;
  1436. border-top:0px;
  1437. border-right:0px;
  1438. border-radius:0px;
  1439. border-bottom-right-radius:0px;
  1440. border-bottom-left-radius:0px;
  1441. -moz-box-shadow:none;
  1442. -webkit-box-shadow:none;
  1443. box-shadow:none;
  1444. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1445. font-weight:400;
  1446. font-style:normal;
  1447. font-size:18px;
  1448. line-height:30px;
  1449. }
  1450. #u41201 {
  1451. border-width:0px;
  1452. position:absolute;
  1453. left:521px;
  1454. top:378px;
  1455. width:37px;
  1456. height:30px;
  1457. display:flex;
  1458. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1459. font-weight:400;
  1460. font-style:normal;
  1461. font-size:18px;
  1462. line-height:30px;
  1463. }
  1464. #u41201 .text {
  1465. position:absolute;
  1466. align-self:flex-start;
  1467. padding:0px 0px 0px 0px;
  1468. box-sizing:border-box;
  1469. width:100%;
  1470. }
  1471. #u41201_text {
  1472. border-width:0px;
  1473. white-space:nowrap;
  1474. text-transform:none;
  1475. }
  1476. #u41202_div {
  1477. border-width:0px;
  1478. position:absolute;
  1479. left:0px;
  1480. top:0px;
  1481. width:55px;
  1482. height:30px;
  1483. background:inherit;
  1484. background-color:rgba(255, 255, 255, 0);
  1485. border:none;
  1486. border-left:0px;
  1487. border-top:0px;
  1488. border-right:0px;
  1489. border-radius:0px;
  1490. border-bottom-right-radius:0px;
  1491. border-bottom-left-radius:0px;
  1492. -moz-box-shadow:none;
  1493. -webkit-box-shadow:none;
  1494. box-shadow:none;
  1495. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1496. font-weight:400;
  1497. font-style:normal;
  1498. font-size:12px;
  1499. color:#AAAAAA;
  1500. line-height:30px;
  1501. }
  1502. #u41202 {
  1503. border-width:0px;
  1504. position:absolute;
  1505. left:521px;
  1506. top:348px;
  1507. width:55px;
  1508. height:30px;
  1509. display:flex;
  1510. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1511. font-weight:400;
  1512. font-style:normal;
  1513. font-size:12px;
  1514. color:#AAAAAA;
  1515. line-height:30px;
  1516. }
  1517. #u41202 .text {
  1518. position:absolute;
  1519. align-self:flex-start;
  1520. padding:0px 0px 0px 0px;
  1521. box-sizing:border-box;
  1522. width:100%;
  1523. }
  1524. #u41202_text {
  1525. border-width:0px;
  1526. white-space:nowrap;
  1527. text-transform:none;
  1528. }
  1529. #u41203 {
  1530. border-width:0px;
  1531. position:absolute;
  1532. left:0px;
  1533. top:0px;
  1534. width:0px;
  1535. height:0px;
  1536. }
  1537. #u41204_div {
  1538. border-width:0px;
  1539. position:absolute;
  1540. left:0px;
  1541. top:0px;
  1542. width:163px;
  1543. height:30px;
  1544. background:inherit;
  1545. background-color:rgba(255, 255, 255, 0);
  1546. border:none;
  1547. border-left:0px;
  1548. border-top:0px;
  1549. border-right:0px;
  1550. border-radius:0px;
  1551. border-bottom-right-radius:0px;
  1552. border-bottom-left-radius:0px;
  1553. -moz-box-shadow:none;
  1554. -webkit-box-shadow:none;
  1555. box-shadow:none;
  1556. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1557. font-weight:400;
  1558. font-style:normal;
  1559. font-size:18px;
  1560. line-height:30px;
  1561. }
  1562. #u41204 {
  1563. border-width:0px;
  1564. position:absolute;
  1565. left:521px;
  1566. top:542px;
  1567. width:163px;
  1568. height:30px;
  1569. display:flex;
  1570. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1571. font-weight:400;
  1572. font-style:normal;
  1573. font-size:18px;
  1574. line-height:30px;
  1575. }
  1576. #u41204 .text {
  1577. position:absolute;
  1578. align-self:flex-start;
  1579. padding:0px 0px 0px 0px;
  1580. box-sizing:border-box;
  1581. width:100%;
  1582. }
  1583. #u41204_text {
  1584. border-width:0px;
  1585. white-space:nowrap;
  1586. text-transform:none;
  1587. }
  1588. #u41205_div {
  1589. border-width:0px;
  1590. position:absolute;
  1591. left:0px;
  1592. top:0px;
  1593. width:79px;
  1594. height:30px;
  1595. background:inherit;
  1596. background-color:rgba(255, 255, 255, 0);
  1597. border:none;
  1598. border-left:0px;
  1599. border-top:0px;
  1600. border-right:0px;
  1601. border-radius:0px;
  1602. border-bottom-right-radius:0px;
  1603. border-bottom-left-radius:0px;
  1604. -moz-box-shadow:none;
  1605. -webkit-box-shadow:none;
  1606. box-shadow:none;
  1607. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1608. font-weight:400;
  1609. font-style:normal;
  1610. font-size:12px;
  1611. color:#AAAAAA;
  1612. line-height:30px;
  1613. }
  1614. #u41205 {
  1615. border-width:0px;
  1616. position:absolute;
  1617. left:521px;
  1618. top:511px;
  1619. width:79px;
  1620. height:30px;
  1621. display:flex;
  1622. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1623. font-weight:400;
  1624. font-style:normal;
  1625. font-size:12px;
  1626. color:#AAAAAA;
  1627. line-height:30px;
  1628. }
  1629. #u41205 .text {
  1630. position:absolute;
  1631. align-self:flex-start;
  1632. padding:0px 0px 0px 0px;
  1633. box-sizing:border-box;
  1634. width:100%;
  1635. }
  1636. #u41205_text {
  1637. border-width:0px;
  1638. white-space:nowrap;
  1639. text-transform:none;
  1640. }
  1641. #u41206 {
  1642. border-width:0px;
  1643. position:absolute;
  1644. left:0px;
  1645. top:0px;
  1646. width:0px;
  1647. height:0px;
  1648. }
  1649. #u41207_div {
  1650. border-width:0px;
  1651. position:absolute;
  1652. left:0px;
  1653. top:0px;
  1654. width:91px;
  1655. height:30px;
  1656. background:inherit;
  1657. background-color:rgba(255, 255, 255, 0);
  1658. border:none;
  1659. border-left:0px;
  1660. border-top:0px;
  1661. border-right:0px;
  1662. border-radius:0px;
  1663. border-bottom-right-radius:0px;
  1664. border-bottom-left-radius:0px;
  1665. -moz-box-shadow:none;
  1666. -webkit-box-shadow:none;
  1667. box-shadow:none;
  1668. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1669. font-weight:400;
  1670. font-style:normal;
  1671. font-size:18px;
  1672. line-height:30px;
  1673. }
  1674. #u41207 {
  1675. border-width:0px;
  1676. position:absolute;
  1677. left:521px;
  1678. top:459px;
  1679. width:91px;
  1680. height:30px;
  1681. display:flex;
  1682. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1683. font-weight:400;
  1684. font-style:normal;
  1685. font-size:18px;
  1686. line-height:30px;
  1687. }
  1688. #u41207 .text {
  1689. position:absolute;
  1690. align-self:flex-start;
  1691. padding:0px 0px 0px 0px;
  1692. box-sizing:border-box;
  1693. width:100%;
  1694. }
  1695. #u41207_text {
  1696. border-width:0px;
  1697. white-space:nowrap;
  1698. text-transform:none;
  1699. }
  1700. #u41208_div {
  1701. border-width:0px;
  1702. position:absolute;
  1703. left:0px;
  1704. top:0px;
  1705. width:55px;
  1706. height:30px;
  1707. background:inherit;
  1708. background-color:rgba(255, 255, 255, 0);
  1709. border:none;
  1710. border-left:0px;
  1711. border-top:0px;
  1712. border-right:0px;
  1713. border-radius:0px;
  1714. border-bottom-right-radius:0px;
  1715. border-bottom-left-radius:0px;
  1716. -moz-box-shadow:none;
  1717. -webkit-box-shadow:none;
  1718. box-shadow:none;
  1719. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1720. font-weight:400;
  1721. font-style:normal;
  1722. font-size:12px;
  1723. color:#AAAAAA;
  1724. line-height:30px;
  1725. }
  1726. #u41208 {
  1727. border-width:0px;
  1728. position:absolute;
  1729. left:521px;
  1730. top:428px;
  1731. width:55px;
  1732. height:30px;
  1733. display:flex;
  1734. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1735. font-weight:400;
  1736. font-style:normal;
  1737. font-size:12px;
  1738. color:#AAAAAA;
  1739. line-height:30px;
  1740. }
  1741. #u41208 .text {
  1742. position:absolute;
  1743. align-self:flex-start;
  1744. padding:0px 0px 0px 0px;
  1745. box-sizing:border-box;
  1746. width:100%;
  1747. }
  1748. #u41208_text {
  1749. border-width:0px;
  1750. white-space:nowrap;
  1751. text-transform:none;
  1752. }
  1753. #u41209_img {
  1754. border-width:0px;
  1755. position:absolute;
  1756. left:0px;
  1757. top:0px;
  1758. width:8px;
  1759. height:13px;
  1760. }
  1761. #u41209 {
  1762. border-width:0px;
  1763. position:absolute;
  1764. left:832px;
  1765. top:478px;
  1766. width:8px;
  1767. height:13px;
  1768. display:flex;
  1769. -webkit-transform:rotate(180deg);
  1770. -moz-transform:rotate(180deg);
  1771. -ms-transform:rotate(180deg);
  1772. transform:rotate(180deg);
  1773. }
  1774. #u41209 .text {
  1775. position:absolute;
  1776. align-self:center;
  1777. padding:2px 2px 2px 2px;
  1778. box-sizing:border-box;
  1779. width:100%;
  1780. }
  1781. #u41209_text {
  1782. border-width:0px;
  1783. word-wrap:break-word;
  1784. text-transform:none;
  1785. visibility:hidden;
  1786. }
  1787. #u41211_img {
  1788. border-width:0px;
  1789. position:absolute;
  1790. left:0px;
  1791. top:0px;
  1792. width:433px;
  1793. height:865px;
  1794. }
  1795. #u41211 {
  1796. border-width:0px;
  1797. position:absolute;
  1798. left:0px;
  1799. top:0px;
  1800. width:433px;
  1801. height:865px;
  1802. display:flex;
  1803. }
  1804. #u41211 .text {
  1805. position:absolute;
  1806. align-self:center;
  1807. padding:2px 2px 2px 2px;
  1808. box-sizing:border-box;
  1809. width:100%;
  1810. }
  1811. #u41211_text {
  1812. border-width:0px;
  1813. word-wrap:break-word;
  1814. text-transform:none;
  1815. visibility:hidden;
  1816. }
  1817. #u41212_div {
  1818. border-width:0px;
  1819. position:absolute;
  1820. left:0px;
  1821. top:0px;
  1822. width:375px;
  1823. height:40px;
  1824. background:inherit;
  1825. background-color:rgba(255, 255, 255, 1);
  1826. box-sizing:border-box;
  1827. border-width:1px;
  1828. border-style:solid;
  1829. border-color:rgba(215, 215, 215, 1);
  1830. border-left:0px;
  1831. border-top:0px;
  1832. border-right:0px;
  1833. border-radius:0px;
  1834. border-bottom-right-radius:0px;
  1835. border-bottom-left-radius:0px;
  1836. -moz-box-shadow:none;
  1837. -webkit-box-shadow:none;
  1838. box-shadow:none;
  1839. }
  1840. #u41212 {
  1841. border-width:0px;
  1842. position:absolute;
  1843. left:29px;
  1844. top:67px;
  1845. width:375px;
  1846. height:40px;
  1847. display:flex;
  1848. }
  1849. #u41212 .text {
  1850. position:absolute;
  1851. align-self:center;
  1852. padding:2px 2px 2px 2px;
  1853. box-sizing:border-box;
  1854. width:100%;
  1855. }
  1856. #u41212_text {
  1857. border-width:0px;
  1858. word-wrap:break-word;
  1859. text-transform:none;
  1860. visibility:hidden;
  1861. }
  1862. #u41213 {
  1863. border-width:0px;
  1864. position:absolute;
  1865. left:0px;
  1866. top:0px;
  1867. width:0px;
  1868. height:0px;
  1869. }
  1870. #u41214_div {
  1871. border-width:0px;
  1872. position:absolute;
  1873. left:0px;
  1874. top:0px;
  1875. width:88px;
  1876. height:32px;
  1877. background:inherit;
  1878. background-color:rgba(255, 255, 255, 1);
  1879. box-sizing:border-box;
  1880. border-width:1px;
  1881. border-style:solid;
  1882. border-color:rgba(242, 242, 242, 1);
  1883. border-radius:33px;
  1884. -moz-box-shadow:none;
  1885. -webkit-box-shadow:none;
  1886. box-shadow:none;
  1887. }
  1888. #u41214 {
  1889. border-width:0px;
  1890. position:absolute;
  1891. left:309px;
  1892. top:71px;
  1893. width:88px;
  1894. height:32px;
  1895. display:flex;
  1896. }
  1897. #u41214 .text {
  1898. position:absolute;
  1899. align-self:center;
  1900. padding:2px 2px 2px 2px;
  1901. box-sizing:border-box;
  1902. width:100%;
  1903. }
  1904. #u41214_text {
  1905. border-width:0px;
  1906. word-wrap:break-word;
  1907. text-transform:none;
  1908. visibility:hidden;
  1909. }
  1910. #u41215 {
  1911. border-width:0px;
  1912. position:absolute;
  1913. left:0px;
  1914. top:0px;
  1915. width:0px;
  1916. height:0px;
  1917. }
  1918. #u41216_img {
  1919. border-width:0px;
  1920. position:absolute;
  1921. left:0px;
  1922. top:0px;
  1923. width:18px;
  1924. height:18px;
  1925. }
  1926. #u41216 {
  1927. border-width:0px;
  1928. position:absolute;
  1929. left:372px;
  1930. top:78px;
  1931. width:18px;
  1932. height:18px;
  1933. display:flex;
  1934. }
  1935. #u41216 .text {
  1936. position:absolute;
  1937. align-self:center;
  1938. padding:2px 2px 2px 2px;
  1939. box-sizing:border-box;
  1940. width:100%;
  1941. }
  1942. #u41216_text {
  1943. border-width:0px;
  1944. word-wrap:break-word;
  1945. text-transform:none;
  1946. visibility:hidden;
  1947. }
  1948. #u41217_img {
  1949. border-width:0px;
  1950. position:absolute;
  1951. left:0px;
  1952. top:0px;
  1953. width:6px;
  1954. height:6px;
  1955. }
  1956. #u41217 {
  1957. border-width:0px;
  1958. position:absolute;
  1959. left:378px;
  1960. top:84px;
  1961. width:6px;
  1962. height:6px;
  1963. display:flex;
  1964. }
  1965. #u41217 .text {
  1966. position:absolute;
  1967. align-self:center;
  1968. padding:2px 2px 2px 2px;
  1969. box-sizing:border-box;
  1970. width:100%;
  1971. }
  1972. #u41217_text {
  1973. border-width:0px;
  1974. word-wrap:break-word;
  1975. text-transform:none;
  1976. visibility:hidden;
  1977. }
  1978. #u41218 {
  1979. border-width:0px;
  1980. position:absolute;
  1981. left:0px;
  1982. top:0px;
  1983. width:0px;
  1984. height:0px;
  1985. }
  1986. #u41219_img {
  1987. border-width:0px;
  1988. position:absolute;
  1989. left:0px;
  1990. top:0px;
  1991. width:5px;
  1992. height:5px;
  1993. }
  1994. #u41219 {
  1995. border-width:0px;
  1996. position:absolute;
  1997. left:323px;
  1998. top:85px;
  1999. width:5px;
  2000. height:5px;
  2001. display:flex;
  2002. }
  2003. #u41219 .text {
  2004. position:absolute;
  2005. align-self:center;
  2006. padding:2px 2px 2px 2px;
  2007. box-sizing:border-box;
  2008. width:100%;
  2009. }
  2010. #u41219_text {
  2011. border-width:0px;
  2012. word-wrap:break-word;
  2013. text-transform:none;
  2014. visibility:hidden;
  2015. }
  2016. #u41220_img {
  2017. border-width:0px;
  2018. position:absolute;
  2019. left:0px;
  2020. top:0px;
  2021. width:5px;
  2022. height:5px;
  2023. }
  2024. #u41220 {
  2025. border-width:0px;
  2026. position:absolute;
  2027. left:339px;
  2028. top:85px;
  2029. width:5px;
  2030. height:5px;
  2031. display:flex;
  2032. }
  2033. #u41220 .text {
  2034. position:absolute;
  2035. align-self:center;
  2036. padding:2px 2px 2px 2px;
  2037. box-sizing:border-box;
  2038. width:100%;
  2039. }
  2040. #u41220_text {
  2041. border-width:0px;
  2042. word-wrap:break-word;
  2043. text-transform:none;
  2044. visibility:hidden;
  2045. }
  2046. #u41221_img {
  2047. border-width:0px;
  2048. position:absolute;
  2049. left:0px;
  2050. top:0px;
  2051. width:7px;
  2052. height:7px;
  2053. }
  2054. #u41221 {
  2055. border-width:0px;
  2056. position:absolute;
  2057. left:330px;
  2058. top:84px;
  2059. width:7px;
  2060. height:7px;
  2061. display:flex;
  2062. }
  2063. #u41221 .text {
  2064. position:absolute;
  2065. align-self:center;
  2066. padding:2px 2px 2px 2px;
  2067. box-sizing:border-box;
  2068. width:100%;
  2069. }
  2070. #u41221_text {
  2071. border-width:0px;
  2072. word-wrap:break-word;
  2073. text-transform:none;
  2074. visibility:hidden;
  2075. }
  2076. #u41222_img {
  2077. border-width:0px;
  2078. position:absolute;
  2079. left:0px;
  2080. top:0px;
  2081. width:19px;
  2082. height:2px;
  2083. }
  2084. #u41222 {
  2085. border-width:0px;
  2086. position:absolute;
  2087. left:347px;
  2088. top:87px;
  2089. width:18px;
  2090. height:1px;
  2091. display:flex;
  2092. -webkit-transform:rotate(90deg);
  2093. -moz-transform:rotate(90deg);
  2094. -ms-transform:rotate(90deg);
  2095. transform:rotate(90deg);
  2096. }
  2097. #u41222 .text {
  2098. position:absolute;
  2099. align-self:center;
  2100. padding:2px 2px 2px 2px;
  2101. box-sizing:border-box;
  2102. width:100%;
  2103. }
  2104. #u41222_text {
  2105. border-width:0px;
  2106. word-wrap:break-word;
  2107. text-transform:none;
  2108. visibility:hidden;
  2109. }
  2110. #u41223_img {
  2111. border-width:0px;
  2112. position:absolute;
  2113. left:0px;
  2114. top:0px;
  2115. width:375px;
  2116. height:44px;
  2117. }
  2118. #u41223 {
  2119. border-width:0px;
  2120. position:absolute;
  2121. left:29px;
  2122. top:24px;
  2123. width:375px;
  2124. height:44px;
  2125. display:flex;
  2126. }
  2127. #u41223 .text {
  2128. position:absolute;
  2129. align-self:center;
  2130. padding:2px 2px 2px 2px;
  2131. box-sizing:border-box;
  2132. width:100%;
  2133. }
  2134. #u41223_text {
  2135. border-width:0px;
  2136. word-wrap:break-word;
  2137. text-transform:none;
  2138. visibility:hidden;
  2139. }
  2140. #u41224_div {
  2141. border-width:0px;
  2142. position:absolute;
  2143. left:0px;
  2144. top:0px;
  2145. width:375px;
  2146. height:50px;
  2147. background:inherit;
  2148. background-color:rgba(255, 255, 255, 1);
  2149. box-sizing:border-box;
  2150. border-width:1px;
  2151. border-style:solid;
  2152. border-color:rgba(242, 242, 242, 1);
  2153. border-radius:26px;
  2154. border-top-left-radius:0px;
  2155. border-top-right-radius:0px;
  2156. -moz-box-shadow:none;
  2157. -webkit-box-shadow:none;
  2158. box-shadow:none;
  2159. }
  2160. #u41224 {
  2161. border-width:0px;
  2162. position:absolute;
  2163. left:29px;
  2164. top:788px;
  2165. width:375px;
  2166. height:50px;
  2167. display:flex;
  2168. }
  2169. #u41224 .text {
  2170. position:absolute;
  2171. align-self:center;
  2172. padding:2px 2px 2px 2px;
  2173. box-sizing:border-box;
  2174. width:100%;
  2175. }
  2176. #u41224_text {
  2177. border-width:0px;
  2178. word-wrap:break-word;
  2179. text-transform:none;
  2180. visibility:hidden;
  2181. }
  2182. #u41225 {
  2183. border-width:0px;
  2184. position:absolute;
  2185. left:0px;
  2186. top:0px;
  2187. width:0px;
  2188. height:0px;
  2189. }
  2190. #u41226_img {
  2191. border-width:0px;
  2192. position:absolute;
  2193. left:0px;
  2194. top:0px;
  2195. width:24px;
  2196. height:24px;
  2197. }
  2198. #u41226 {
  2199. border-width:0px;
  2200. position:absolute;
  2201. left:69px;
  2202. top:792px;
  2203. width:24px;
  2204. height:24px;
  2205. display:flex;
  2206. font-size:8px;
  2207. }
  2208. #u41226 .text {
  2209. position:absolute;
  2210. align-self:center;
  2211. padding:2px 2px 2px 2px;
  2212. box-sizing:border-box;
  2213. width:100%;
  2214. }
  2215. #u41226_text {
  2216. border-width:0px;
  2217. word-wrap:break-word;
  2218. text-transform:none;
  2219. }
  2220. #u41227_div {
  2221. border-width:0px;
  2222. position:absolute;
  2223. left:0px;
  2224. top:0px;
  2225. width:25px;
  2226. height:17px;
  2227. background:inherit;
  2228. background-color:rgba(255, 255, 255, 0);
  2229. border:none;
  2230. border-radius:0px;
  2231. -moz-box-shadow:none;
  2232. -webkit-box-shadow:none;
  2233. box-shadow:none;
  2234. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2235. font-weight:400;
  2236. font-style:normal;
  2237. font-size:12px;
  2238. }
  2239. #u41227 {
  2240. border-width:0px;
  2241. position:absolute;
  2242. left:69px;
  2243. top:817px;
  2244. width:25px;
  2245. height:17px;
  2246. display:flex;
  2247. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2248. font-weight:400;
  2249. font-style:normal;
  2250. font-size:12px;
  2251. }
  2252. #u41227 .text {
  2253. position:absolute;
  2254. align-self:flex-start;
  2255. padding:0px 0px 0px 0px;
  2256. box-sizing:border-box;
  2257. width:100%;
  2258. }
  2259. #u41227_text {
  2260. border-width:0px;
  2261. white-space:nowrap;
  2262. text-transform:none;
  2263. }
  2264. #u41228 {
  2265. border-width:0px;
  2266. position:absolute;
  2267. left:0px;
  2268. top:0px;
  2269. width:0px;
  2270. height:0px;
  2271. }
  2272. #u41229_img {
  2273. border-width:0px;
  2274. position:absolute;
  2275. left:0px;
  2276. top:0px;
  2277. width:24px;
  2278. height:24px;
  2279. }
  2280. #u41229 {
  2281. border-width:0px;
  2282. position:absolute;
  2283. left:339px;
  2284. top:794px;
  2285. width:24px;
  2286. height:24px;
  2287. display:flex;
  2288. font-size:8px;
  2289. }
  2290. #u41229 .text {
  2291. position:absolute;
  2292. align-self:center;
  2293. padding:2px 2px 2px 2px;
  2294. box-sizing:border-box;
  2295. width:100%;
  2296. }
  2297. #u41229_text {
  2298. border-width:0px;
  2299. word-wrap:break-word;
  2300. text-transform:none;
  2301. }
  2302. #u41230_div {
  2303. border-width:0px;
  2304. position:absolute;
  2305. left:0px;
  2306. top:0px;
  2307. width:25px;
  2308. height:17px;
  2309. background:inherit;
  2310. background-color:rgba(255, 255, 255, 0);
  2311. border:none;
  2312. border-radius:0px;
  2313. -moz-box-shadow:none;
  2314. -webkit-box-shadow:none;
  2315. box-shadow:none;
  2316. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2317. font-weight:400;
  2318. font-style:normal;
  2319. font-size:12px;
  2320. }
  2321. #u41230 {
  2322. border-width:0px;
  2323. position:absolute;
  2324. left:339px;
  2325. top:819px;
  2326. width:25px;
  2327. height:17px;
  2328. display:flex;
  2329. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2330. font-weight:400;
  2331. font-style:normal;
  2332. font-size:12px;
  2333. }
  2334. #u41230 .text {
  2335. position:absolute;
  2336. align-self:flex-start;
  2337. padding:0px 0px 0px 0px;
  2338. box-sizing:border-box;
  2339. width:100%;
  2340. }
  2341. #u41230_text {
  2342. border-width:0px;
  2343. white-space:nowrap;
  2344. text-transform:none;
  2345. }
  2346. #u41231_div {
  2347. border-width:0px;
  2348. position:absolute;
  2349. left:0px;
  2350. top:0px;
  2351. width:375px;
  2352. height:681px;
  2353. background:inherit;
  2354. background-color:rgba(242, 242, 242, 0.462745098039216);
  2355. border:none;
  2356. border-radius:0px;
  2357. -moz-box-shadow:none;
  2358. -webkit-box-shadow:none;
  2359. box-shadow:none;
  2360. }
  2361. #u41231 {
  2362. border-width:0px;
  2363. position:absolute;
  2364. left:29px;
  2365. top:107px;
  2366. width:375px;
  2367. height:681px;
  2368. display:flex;
  2369. }
  2370. #u41231 .text {
  2371. position:absolute;
  2372. align-self:center;
  2373. padding:2px 2px 2px 2px;
  2374. box-sizing:border-box;
  2375. width:100%;
  2376. }
  2377. #u41231_text {
  2378. border-width:0px;
  2379. word-wrap:break-word;
  2380. text-transform:none;
  2381. visibility:hidden;
  2382. }
  2383. #u41232 {
  2384. border-width:0px;
  2385. position:absolute;
  2386. left:0px;
  2387. top:0px;
  2388. width:0px;
  2389. height:0px;
  2390. }
  2391. #u41233_img {
  2392. border-width:0px;
  2393. position:absolute;
  2394. left:0px;
  2395. top:0px;
  2396. width:24px;
  2397. height:24px;
  2398. }
  2399. #u41233 {
  2400. border-width:0px;
  2401. position:absolute;
  2402. left:251px;
  2403. top:792px;
  2404. width:24px;
  2405. height:24px;
  2406. display:flex;
  2407. font-size:8px;
  2408. }
  2409. #u41233 .text {
  2410. position:absolute;
  2411. align-self:center;
  2412. padding:2px 2px 2px 2px;
  2413. box-sizing:border-box;
  2414. width:100%;
  2415. }
  2416. #u41233_text {
  2417. border-width:0px;
  2418. word-wrap:break-word;
  2419. text-transform:none;
  2420. }
  2421. #u41234_div {
  2422. border-width:0px;
  2423. position:absolute;
  2424. left:0px;
  2425. top:0px;
  2426. width:37px;
  2427. height:17px;
  2428. background:inherit;
  2429. background-color:rgba(255, 255, 255, 0);
  2430. border:none;
  2431. border-radius:0px;
  2432. -moz-box-shadow:none;
  2433. -webkit-box-shadow:none;
  2434. box-shadow:none;
  2435. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2436. font-weight:400;
  2437. font-style:normal;
  2438. font-size:12px;
  2439. }
  2440. #u41234 {
  2441. border-width:0px;
  2442. position:absolute;
  2443. left:245px;
  2444. top:817px;
  2445. width:37px;
  2446. height:17px;
  2447. display:flex;
  2448. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2449. font-weight:400;
  2450. font-style:normal;
  2451. font-size:12px;
  2452. }
  2453. #u41234 .text {
  2454. position:absolute;
  2455. align-self:flex-start;
  2456. padding:0px 0px 0px 0px;
  2457. box-sizing:border-box;
  2458. width:100%;
  2459. }
  2460. #u41234_text {
  2461. border-width:0px;
  2462. white-space:nowrap;
  2463. text-transform:none;
  2464. }
  2465. #u41235 {
  2466. border-width:0px;
  2467. position:absolute;
  2468. left:0px;
  2469. top:0px;
  2470. width:0px;
  2471. height:0px;
  2472. }
  2473. #u41236_img {
  2474. border-width:0px;
  2475. position:absolute;
  2476. left:0px;
  2477. top:0px;
  2478. width:24px;
  2479. height:24px;
  2480. }
  2481. #u41236 {
  2482. border-width:0px;
  2483. position:absolute;
  2484. left:157px;
  2485. top:792px;
  2486. width:24px;
  2487. height:24px;
  2488. display:flex;
  2489. font-size:8px;
  2490. }
  2491. #u41236 .text {
  2492. position:absolute;
  2493. align-self:center;
  2494. padding:2px 2px 2px 2px;
  2495. box-sizing:border-box;
  2496. width:100%;
  2497. }
  2498. #u41236_text {
  2499. border-width:0px;
  2500. word-wrap:break-word;
  2501. text-transform:none;
  2502. }
  2503. #u41237_div {
  2504. border-width:0px;
  2505. position:absolute;
  2506. left:0px;
  2507. top:0px;
  2508. width:37px;
  2509. height:17px;
  2510. background:inherit;
  2511. background-color:rgba(255, 255, 255, 0);
  2512. border:none;
  2513. border-radius:0px;
  2514. -moz-box-shadow:none;
  2515. -webkit-box-shadow:none;
  2516. box-shadow:none;
  2517. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2518. font-weight:400;
  2519. font-style:normal;
  2520. font-size:12px;
  2521. }
  2522. #u41237 {
  2523. border-width:0px;
  2524. position:absolute;
  2525. left:151px;
  2526. top:817px;
  2527. width:37px;
  2528. height:17px;
  2529. display:flex;
  2530. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2531. font-weight:400;
  2532. font-style:normal;
  2533. font-size:12px;
  2534. }
  2535. #u41237 .text {
  2536. position:absolute;
  2537. align-self:flex-start;
  2538. padding:0px 0px 0px 0px;
  2539. box-sizing:border-box;
  2540. width:100%;
  2541. }
  2542. #u41237_text {
  2543. border-width:0px;
  2544. white-space:nowrap;
  2545. text-transform:none;
  2546. }
  2547. #u41238_img {
  2548. border-width:0px;
  2549. position:absolute;
  2550. left:0px;
  2551. top:0px;
  2552. width:375px;
  2553. height:734px;
  2554. }
  2555. #u41238 {
  2556. border-width:0px;
  2557. position:absolute;
  2558. left:30px;
  2559. top:106px;
  2560. width:375px;
  2561. height:734px;
  2562. display:flex;
  2563. }
  2564. #u41238 .text {
  2565. position:absolute;
  2566. align-self:center;
  2567. padding:2px 2px 2px 2px;
  2568. box-sizing:border-box;
  2569. width:100%;
  2570. }
  2571. #u41238_text {
  2572. border-width:0px;
  2573. word-wrap:break-word;
  2574. text-transform:none;
  2575. visibility:hidden;
  2576. }
  2577. #u41239_div {
  2578. border-width:0px;
  2579. position:absolute;
  2580. left:0px;
  2581. top:0px;
  2582. width:376px;
  2583. height:776px;
  2584. background:inherit;
  2585. background-color:rgba(51, 51, 51, 1);
  2586. border:none;
  2587. border-radius:21px;
  2588. border-top-left-radius:0px;
  2589. border-top-right-radius:0px;
  2590. -moz-box-shadow:none;
  2591. -webkit-box-shadow:none;
  2592. box-shadow:none;
  2593. }
  2594. #u41239 {
  2595. border-width:0px;
  2596. position:absolute;
  2597. left:29px;
  2598. top:64px;
  2599. width:376px;
  2600. height:776px;
  2601. display:flex;
  2602. }
  2603. #u41239 .text {
  2604. position:absolute;
  2605. align-self:center;
  2606. padding:2px 2px 2px 2px;
  2607. box-sizing:border-box;
  2608. width:100%;
  2609. }
  2610. #u41239_text {
  2611. border-width:0px;
  2612. word-wrap:break-word;
  2613. text-transform:none;
  2614. visibility:hidden;
  2615. }
  2616. #u41240 {
  2617. border-width:0px;
  2618. position:absolute;
  2619. left:0px;
  2620. top:0px;
  2621. width:0px;
  2622. height:0px;
  2623. }
  2624. #u41241_div {
  2625. border-width:0px;
  2626. position:absolute;
  2627. left:0px;
  2628. top:0px;
  2629. width:285px;
  2630. height:292px;
  2631. background:inherit;
  2632. background-color:rgba(255, 255, 255, 0);
  2633. box-sizing:border-box;
  2634. border-width:2px;
  2635. border-style:solid;
  2636. border-color:rgba(255, 255, 255, 1);
  2637. border-radius:0px;
  2638. -moz-box-shadow:none;
  2639. -webkit-box-shadow:none;
  2640. box-shadow:none;
  2641. }
  2642. #u41241 {
  2643. border-width:0px;
  2644. position:absolute;
  2645. left:79px;
  2646. top:263px;
  2647. width:285px;
  2648. height:292px;
  2649. display:flex;
  2650. }
  2651. #u41241 .text {
  2652. position:absolute;
  2653. align-self:center;
  2654. padding:2px 2px 2px 2px;
  2655. box-sizing:border-box;
  2656. width:100%;
  2657. }
  2658. #u41241_text {
  2659. border-width:0px;
  2660. word-wrap:break-word;
  2661. text-transform:none;
  2662. visibility:hidden;
  2663. }
  2664. #u41242_div {
  2665. border-width:0px;
  2666. position:absolute;
  2667. left:0px;
  2668. top:0px;
  2669. width:206px;
  2670. height:321px;
  2671. background:inherit;
  2672. background-color:rgba(51, 51, 51, 1);
  2673. border:none;
  2674. border-radius:0px;
  2675. -moz-box-shadow:none;
  2676. -webkit-box-shadow:none;
  2677. box-shadow:none;
  2678. }
  2679. #u41242 {
  2680. border-width:0px;
  2681. position:absolute;
  2682. left:118px;
  2683. top:252px;
  2684. width:206px;
  2685. height:321px;
  2686. display:flex;
  2687. }
  2688. #u41242 .text {
  2689. position:absolute;
  2690. align-self:center;
  2691. padding:2px 2px 2px 2px;
  2692. box-sizing:border-box;
  2693. width:100%;
  2694. }
  2695. #u41242_text {
  2696. border-width:0px;
  2697. word-wrap:break-word;
  2698. text-transform:none;
  2699. visibility:hidden;
  2700. }
  2701. #u41243_div {
  2702. border-width:0px;
  2703. position:absolute;
  2704. left:0px;
  2705. top:0px;
  2706. width:225px;
  2707. height:317px;
  2708. background:inherit;
  2709. background-color:rgba(51, 51, 51, 1);
  2710. border:none;
  2711. border-radius:0px;
  2712. -moz-box-shadow:none;
  2713. -webkit-box-shadow:none;
  2714. box-shadow:none;
  2715. }
  2716. #u41243 {
  2717. border-width:0px;
  2718. position:absolute;
  2719. left:109px;
  2720. top:254px;
  2721. width:225px;
  2722. height:317px;
  2723. display:flex;
  2724. -webkit-transform:rotate(90deg);
  2725. -moz-transform:rotate(90deg);
  2726. -ms-transform:rotate(90deg);
  2727. transform:rotate(90deg);
  2728. }
  2729. #u41243 .text {
  2730. position:absolute;
  2731. align-self:center;
  2732. padding:2px 2px 2px 2px;
  2733. box-sizing:border-box;
  2734. width:100%;
  2735. }
  2736. #u41243_text {
  2737. border-width:0px;
  2738. word-wrap:break-word;
  2739. text-transform:none;
  2740. visibility:hidden;
  2741. }
  2742. #u41244_div {
  2743. border-width:0px;
  2744. position:absolute;
  2745. left:0px;
  2746. top:0px;
  2747. width:119px;
  2748. height:35px;
  2749. background:inherit;
  2750. background-color:rgba(255, 255, 255, 0);
  2751. box-sizing:border-box;
  2752. border-width:1px;
  2753. border-style:solid;
  2754. border-color:rgba(217, 0, 27, 1);
  2755. border-radius:0px;
  2756. -moz-box-shadow:none;
  2757. -webkit-box-shadow:none;
  2758. box-shadow:none;
  2759. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2760. font-weight:400;
  2761. font-style:normal;
  2762. font-size:18px;
  2763. color:#D9001B;
  2764. }
  2765. #u41244 {
  2766. border-width:0px;
  2767. position:absolute;
  2768. left:239px;
  2769. top:811px;
  2770. width:119px;
  2771. height:35px;
  2772. display:flex;
  2773. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2774. font-weight:400;
  2775. font-style:normal;
  2776. font-size:18px;
  2777. color:#D9001B;
  2778. }
  2779. #u41244 .text {
  2780. position:absolute;
  2781. align-self:center;
  2782. padding:5px 5px 5px 5px;
  2783. box-sizing:border-box;
  2784. width:100%;
  2785. }
  2786. #u41244_text {
  2787. border-width:0px;
  2788. white-space:nowrap;
  2789. text-transform:none;
  2790. }
  2791. #u41245_div {
  2792. border-width:0px;
  2793. position:absolute;
  2794. left:0px;
  2795. top:0px;
  2796. width:29px;
  2797. height:20px;
  2798. background:inherit;
  2799. background-color:rgba(255, 255, 255, 0);
  2800. border:none;
  2801. border-left:0px;
  2802. border-top:0px;
  2803. border-right:0px;
  2804. border-radius:0px;
  2805. border-bottom-right-radius:0px;
  2806. border-bottom-left-radius:0px;
  2807. -moz-box-shadow:none;
  2808. -webkit-box-shadow:none;
  2809. box-shadow:none;
  2810. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2811. font-weight:400;
  2812. font-style:normal;
  2813. font-size:14px;
  2814. color:#7F7F7F;
  2815. text-align:right;
  2816. }
  2817. #u41245 {
  2818. border-width:0px;
  2819. position:absolute;
  2820. left:202px;
  2821. top:781px;
  2822. width:29px;
  2823. height:20px;
  2824. display:flex;
  2825. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2826. font-weight:400;
  2827. font-style:normal;
  2828. font-size:14px;
  2829. color:#7F7F7F;
  2830. text-align:right;
  2831. }
  2832. #u41245 .text {
  2833. position:absolute;
  2834. align-self:center;
  2835. padding:0px 0px 0px 0px;
  2836. box-sizing:border-box;
  2837. width:100%;
  2838. }
  2839. #u41245_text {
  2840. border-width:0px;
  2841. white-space:nowrap;
  2842. text-transform:none;
  2843. }
  2844. #u41246 {
  2845. border-width:0px;
  2846. position:absolute;
  2847. left:231px;
  2848. top:791px;
  2849. width:0px;
  2850. height:0px;
  2851. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2852. font-weight:400;
  2853. font-style:normal;
  2854. font-size:12px;
  2855. color:#0089FE;
  2856. }
  2857. #u41246_seg0 {
  2858. border-width:0px;
  2859. position:absolute;
  2860. left:0px;
  2861. top:-5px;
  2862. width:73px;
  2863. height:10px;
  2864. }
  2865. #u41246_seg1 {
  2866. border-width:0px;
  2867. position:absolute;
  2868. left:63px;
  2869. top:-5px;
  2870. width:10px;
  2871. height:25px;
  2872. }
  2873. #u41246_seg2 {
  2874. border-width:0px;
  2875. position:absolute;
  2876. left:-6px;
  2877. top:-9px;
  2878. width:18px;
  2879. height:18px;
  2880. }
  2881. #u41246_seg3 {
  2882. border-width:0px;
  2883. position:absolute;
  2884. left:52px;
  2885. top:3px;
  2886. width:32px;
  2887. height:32px;
  2888. }
  2889. #u41246_text {
  2890. border-width:0px;
  2891. position:absolute;
  2892. left:-6px;
  2893. top:-8px;
  2894. width:100px;
  2895. word-wrap:break-word;
  2896. text-transform:none;
  2897. visibility:hidden;
  2898. }
  2899. #u41247_img {
  2900. border-width:0px;
  2901. position:absolute;
  2902. left:0px;
  2903. top:0px;
  2904. width:11px;
  2905. height:18px;
  2906. }
  2907. #u41247 {
  2908. border-width:0px;
  2909. position:absolute;
  2910. left:41px;
  2911. top:79px;
  2912. width:11px;
  2913. height:18px;
  2914. display:flex;
  2915. }
  2916. #u41247 .text {
  2917. position:absolute;
  2918. align-self:center;
  2919. padding:2px 2px 2px 2px;
  2920. box-sizing:border-box;
  2921. width:100%;
  2922. }
  2923. #u41247_text {
  2924. border-width:0px;
  2925. word-wrap:break-word;
  2926. text-transform:none;
  2927. visibility:hidden;
  2928. }
  2929. #u41248 {
  2930. border-width:0px;
  2931. position:absolute;
  2932. left:0px;
  2933. top:0px;
  2934. width:0px;
  2935. height:0px;
  2936. }
  2937. #u41249_div {
  2938. border-width:0px;
  2939. position:absolute;
  2940. left:0px;
  2941. top:0px;
  2942. width:127px;
  2943. height:30px;
  2944. background:inherit;
  2945. background-color:rgba(255, 255, 255, 0);
  2946. border:none;
  2947. border-left:0px;
  2948. border-top:0px;
  2949. border-right:0px;
  2950. border-radius:0px;
  2951. border-bottom-right-radius:0px;
  2952. border-bottom-left-radius:0px;
  2953. -moz-box-shadow:none;
  2954. -webkit-box-shadow:none;
  2955. box-shadow:none;
  2956. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2957. font-weight:400;
  2958. font-style:normal;
  2959. font-size:18px;
  2960. line-height:30px;
  2961. }
  2962. #u41249 {
  2963. border-width:0px;
  2964. position:absolute;
  2965. left:521px;
  2966. top:623px;
  2967. width:127px;
  2968. height:30px;
  2969. display:flex;
  2970. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2971. font-weight:400;
  2972. font-style:normal;
  2973. font-size:18px;
  2974. line-height:30px;
  2975. }
  2976. #u41249 .text {
  2977. position:absolute;
  2978. align-self:flex-start;
  2979. padding:0px 0px 0px 0px;
  2980. box-sizing:border-box;
  2981. width:100%;
  2982. }
  2983. #u41249_text {
  2984. border-width:0px;
  2985. white-space:nowrap;
  2986. text-transform:none;
  2987. }
  2988. #u41250_div {
  2989. border-width:0px;
  2990. position:absolute;
  2991. left:0px;
  2992. top:0px;
  2993. width:81px;
  2994. height:30px;
  2995. background:inherit;
  2996. background-color:rgba(255, 255, 255, 0);
  2997. border:none;
  2998. border-left:0px;
  2999. border-top:0px;
  3000. border-right:0px;
  3001. border-radius:0px;
  3002. border-bottom-right-radius:0px;
  3003. border-bottom-left-radius:0px;
  3004. -moz-box-shadow:none;
  3005. -webkit-box-shadow:none;
  3006. box-shadow:none;
  3007. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3008. font-weight:400;
  3009. font-style:normal;
  3010. font-size:12px;
  3011. color:#AAAAAA;
  3012. line-height:30px;
  3013. }
  3014. #u41250 {
  3015. border-width:0px;
  3016. position:absolute;
  3017. left:521px;
  3018. top:592px;
  3019. width:81px;
  3020. height:30px;
  3021. display:flex;
  3022. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3023. font-weight:400;
  3024. font-style:normal;
  3025. font-size:12px;
  3026. color:#AAAAAA;
  3027. line-height:30px;
  3028. }
  3029. #u41250 .text {
  3030. position:absolute;
  3031. align-self:flex-start;
  3032. padding:0px 0px 0px 0px;
  3033. box-sizing:border-box;
  3034. width:100%;
  3035. }
  3036. #u41250_text {
  3037. border-width:0px;
  3038. white-space:nowrap;
  3039. text-transform:none;
  3040. }
  3041. #u41251_div {
  3042. border-width:0px;
  3043. position:absolute;
  3044. left:0px;
  3045. top:0px;
  3046. width:638px;
  3047. height:210px;
  3048. background:inherit;
  3049. background-color:rgba(255, 255, 255, 0);
  3050. border:none;
  3051. border-left:0px;
  3052. border-top:0px;
  3053. border-right:0px;
  3054. border-radius:0px;
  3055. border-bottom-right-radius:0px;
  3056. border-bottom-left-radius:0px;
  3057. -moz-box-shadow:none;
  3058. -webkit-box-shadow:none;
  3059. box-shadow:none;
  3060. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3061. font-weight:400;
  3062. font-style:normal;
  3063. font-size:13px;
  3064. color:#D9001B;
  3065. line-height:30px;
  3066. }
  3067. #u41251 {
  3068. border-width:0px;
  3069. position:absolute;
  3070. left:918px;
  3071. top:68px;
  3072. width:638px;
  3073. height:210px;
  3074. display:flex;
  3075. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3076. font-weight:400;
  3077. font-style:normal;
  3078. font-size:13px;
  3079. color:#D9001B;
  3080. line-height:30px;
  3081. }
  3082. #u41251 .text {
  3083. position:absolute;
  3084. align-self:flex-start;
  3085. padding:0px 0px 0px 0px;
  3086. box-sizing:border-box;
  3087. width:100%;
  3088. }
  3089. #u41251_text {
  3090. border-width:0px;
  3091. word-wrap:break-word;
  3092. text-transform:none;
  3093. }