styles.css 73 KB

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