styles.css 61 KB

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