styles.css 53 KB

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