styles.css 63 KB

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