styles.css 60 KB

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