styles.css 74 KB

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