styles.css 64 KB

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