styles.css 75 KB

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