styles.css 69 KB

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