styles.css 59 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321
  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. #u29018_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. #u29018 {
  35. border-width:0px;
  36. position:absolute;
  37. left:120px;
  38. top:50px;
  39. width:1480px;
  40. height:1200px;
  41. display:flex;
  42. }
  43. #u29018 .text {
  44. position:absolute;
  45. align-self:center;
  46. padding:2px 2px 2px 2px;
  47. box-sizing:border-box;
  48. width:100%;
  49. }
  50. #u29018_text {
  51. border-width:0px;
  52. word-wrap:break-word;
  53. text-transform:none;
  54. visibility:hidden;
  55. }
  56. #u29019_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. #u29019 {
  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. #u29019 .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. #u29019_text {
  92. border-width:0px;
  93. white-space:nowrap;
  94. text-transform:none;
  95. }
  96. #u29020_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. #u29020 {
  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. #u29020 .text {
  123. position:absolute;
  124. align-self:center;
  125. padding:2px 2px 2px 2px;
  126. box-sizing:border-box;
  127. width:100%;
  128. }
  129. #u29020_text {
  130. border-width:0px;
  131. word-wrap:break-word;
  132. text-transform:none;
  133. visibility:hidden;
  134. }
  135. #u29021 {
  136. border-width:0px;
  137. position:absolute;
  138. left:0px;
  139. top:0px;
  140. width:0px;
  141. height:0px;
  142. }
  143. #u29022_img {
  144. border-width:0px;
  145. position:absolute;
  146. left:0px;
  147. top:0px;
  148. width:31px;
  149. height:31px;
  150. }
  151. #u29022 {
  152. border-width:0px;
  153. position:absolute;
  154. left:19px;
  155. top:10px;
  156. width:31px;
  157. height:31px;
  158. display:flex;
  159. }
  160. #u29022 .text {
  161. position:absolute;
  162. align-self:center;
  163. padding:2px 2px 2px 2px;
  164. box-sizing:border-box;
  165. width:100%;
  166. }
  167. #u29022_text {
  168. border-width:0px;
  169. word-wrap:break-word;
  170. text-transform:none;
  171. }
  172. #u29023_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. #u29023 {
  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. #u29023 .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. #u29023_text {
  214. border-width:0px;
  215. white-space:nowrap;
  216. text-transform:none;
  217. }
  218. #u29024_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. #u29024 {
  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. #u29024 .text {
  245. position:absolute;
  246. align-self:center;
  247. padding:2px 2px 2px 2px;
  248. box-sizing:border-box;
  249. width:100%;
  250. }
  251. #u29024_text {
  252. border-width:0px;
  253. word-wrap:break-word;
  254. text-transform:none;
  255. visibility:hidden;
  256. }
  257. #u29025 {
  258. border-width:0px;
  259. position:absolute;
  260. left:0px;
  261. top:0px;
  262. width:0px;
  263. height:0px;
  264. }
  265. #u29026_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. #u29026 {
  286. border-width:0px;
  287. position:absolute;
  288. left:39px;
  289. top:171px;
  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. #u29026 .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. #u29026_text {
  307. border-width:0px;
  308. white-space:nowrap;
  309. text-transform:none;
  310. }
  311. #u29027_img {
  312. border-width:0px;
  313. position:absolute;
  314. left:0px;
  315. top:0px;
  316. width:14px;
  317. height:14px;
  318. }
  319. #u29027 {
  320. border-width:0px;
  321. position:absolute;
  322. left:20px;
  323. top:175px;
  324. width:14px;
  325. height:14px;
  326. display:flex;
  327. }
  328. #u29027 .text {
  329. position:absolute;
  330. align-self:center;
  331. padding:2px 2px 2px 2px;
  332. box-sizing:border-box;
  333. width:100%;
  334. }
  335. #u29027_text {
  336. border-width:0px;
  337. word-wrap:break-word;
  338. text-transform:none;
  339. visibility:hidden;
  340. }
  341. #u29028 {
  342. border-width:0px;
  343. position:absolute;
  344. left:0px;
  345. top:0px;
  346. width:0px;
  347. height:0px;
  348. }
  349. #u29029_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. #u29029 {
  370. border-width:0px;
  371. position:absolute;
  372. left:39px;
  373. top:381px;
  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. #u29029 .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. #u29029_text {
  391. border-width:0px;
  392. white-space:nowrap;
  393. text-transform:none;
  394. }
  395. #u29030_img {
  396. border-width:0px;
  397. position:absolute;
  398. left:0px;
  399. top:0px;
  400. width:14px;
  401. height:14px;
  402. }
  403. #u29030 {
  404. border-width:0px;
  405. position:absolute;
  406. left:20px;
  407. top:385px;
  408. width:14px;
  409. height:14px;
  410. display:flex;
  411. }
  412. #u29030 .text {
  413. position:absolute;
  414. align-self:center;
  415. padding:2px 2px 2px 2px;
  416. box-sizing:border-box;
  417. width:100%;
  418. }
  419. #u29030_text {
  420. border-width:0px;
  421. word-wrap:break-word;
  422. text-transform:none;
  423. visibility:hidden;
  424. }
  425. #u29031 {
  426. border-width:0px;
  427. position:absolute;
  428. left:0px;
  429. top:0px;
  430. width:0px;
  431. height:0px;
  432. }
  433. #u29032_div {
  434. border-width:0px;
  435. position:absolute;
  436. left:0px;
  437. top:0px;
  438. width:49px;
  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. #u29032 {
  454. border-width:0px;
  455. position:absolute;
  456. left:39px;
  457. top:133px;
  458. width:49px;
  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. #u29032 .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. #u29032_text {
  475. border-width:0px;
  476. white-space:nowrap;
  477. text-transform:none;
  478. }
  479. #u29033_img {
  480. border-width:0px;
  481. position:absolute;
  482. left:0px;
  483. top:0px;
  484. width:14px;
  485. height:14px;
  486. }
  487. #u29033 {
  488. border-width:0px;
  489. position:absolute;
  490. left:20px;
  491. top:137px;
  492. width:14px;
  493. height:14px;
  494. display:flex;
  495. }
  496. #u29033 .text {
  497. position:absolute;
  498. align-self:center;
  499. padding:2px 2px 2px 2px;
  500. box-sizing:border-box;
  501. width:100%;
  502. }
  503. #u29033_text {
  504. border-width:0px;
  505. word-wrap:break-word;
  506. text-transform:none;
  507. visibility:hidden;
  508. }
  509. #u29034 {
  510. border-width:0px;
  511. position:absolute;
  512. left:0px;
  513. top:0px;
  514. width:0px;
  515. height:0px;
  516. }
  517. #u29035_div {
  518. border-width:0px;
  519. position:absolute;
  520. left:0px;
  521. top:0px;
  522. width:33px;
  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. #u29035 {
  538. border-width:0px;
  539. position:absolute;
  540. left:39px;
  541. top:423px;
  542. width:33px;
  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. #u29035 .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. #u29035_text {
  559. border-width:0px;
  560. white-space:nowrap;
  561. text-transform:none;
  562. }
  563. #u29036_img {
  564. border-width:0px;
  565. position:absolute;
  566. left:0px;
  567. top:0px;
  568. width:14px;
  569. height:14px;
  570. }
  571. #u29036 {
  572. border-width:0px;
  573. position:absolute;
  574. left:20px;
  575. top:427px;
  576. width:14px;
  577. height:14px;
  578. display:flex;
  579. }
  580. #u29036 .text {
  581. position:absolute;
  582. align-self:center;
  583. padding:2px 2px 2px 2px;
  584. box-sizing:border-box;
  585. width:100%;
  586. }
  587. #u29036_text {
  588. border-width:0px;
  589. word-wrap:break-word;
  590. text-transform:none;
  591. visibility:hidden;
  592. }
  593. #u29037 {
  594. border-width:0px;
  595. position:absolute;
  596. left:0px;
  597. top:0px;
  598. width:0px;
  599. height:0px;
  600. }
  601. #u29038_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. #u29038 {
  622. border-width:0px;
  623. position:absolute;
  624. left:39px;
  625. top:297px;
  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. #u29038 .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. #u29038_text {
  643. border-width:0px;
  644. white-space:nowrap;
  645. text-transform:none;
  646. }
  647. #u29039_img {
  648. border-width:0px;
  649. position:absolute;
  650. left:0px;
  651. top:0px;
  652. width:14px;
  653. height:14px;
  654. }
  655. #u29039 {
  656. border-width:0px;
  657. position:absolute;
  658. left:20px;
  659. top:301px;
  660. width:14px;
  661. height:14px;
  662. display:flex;
  663. }
  664. #u29039 .text {
  665. position:absolute;
  666. align-self:center;
  667. padding:2px 2px 2px 2px;
  668. box-sizing:border-box;
  669. width:100%;
  670. }
  671. #u29039_text {
  672. border-width:0px;
  673. word-wrap:break-word;
  674. text-transform:none;
  675. visibility:hidden;
  676. }
  677. #u29040 {
  678. border-width:0px;
  679. position:absolute;
  680. left:0px;
  681. top:0px;
  682. width:0px;
  683. height:0px;
  684. }
  685. #u29041_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. #u29041 {
  706. border-width:0px;
  707. position:absolute;
  708. left:39px;
  709. top:213px;
  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. #u29041 .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. #u29041_text {
  727. border-width:0px;
  728. white-space:nowrap;
  729. text-transform:none;
  730. }
  731. #u29042_img {
  732. border-width:0px;
  733. position:absolute;
  734. left:0px;
  735. top:0px;
  736. width:14px;
  737. height:14px;
  738. }
  739. #u29042 {
  740. border-width:0px;
  741. position:absolute;
  742. left:20px;
  743. top:217px;
  744. width:14px;
  745. height:14px;
  746. display:flex;
  747. }
  748. #u29042 .text {
  749. position:absolute;
  750. align-self:center;
  751. padding:2px 2px 2px 2px;
  752. box-sizing:border-box;
  753. width:100%;
  754. }
  755. #u29042_text {
  756. border-width:0px;
  757. word-wrap:break-word;
  758. text-transform:none;
  759. visibility:hidden;
  760. }
  761. #u29043 {
  762. border-width:0px;
  763. position:absolute;
  764. left:0px;
  765. top:0px;
  766. width:0px;
  767. height:0px;
  768. }
  769. #u29044_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. #u29044 {
  790. border-width:0px;
  791. position:absolute;
  792. left:39px;
  793. top:339px;
  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. #u29044 .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. #u29044_text {
  811. border-width:0px;
  812. white-space:nowrap;
  813. text-transform:none;
  814. }
  815. #u29045_img {
  816. border-width:0px;
  817. position:absolute;
  818. left:0px;
  819. top:0px;
  820. width:14px;
  821. height:14px;
  822. }
  823. #u29045 {
  824. border-width:0px;
  825. position:absolute;
  826. left:20px;
  827. top:343px;
  828. width:14px;
  829. height:14px;
  830. display:flex;
  831. }
  832. #u29045 .text {
  833. position:absolute;
  834. align-self:center;
  835. padding:2px 2px 2px 2px;
  836. box-sizing:border-box;
  837. width:100%;
  838. }
  839. #u29045_text {
  840. border-width:0px;
  841. word-wrap:break-word;
  842. text-transform:none;
  843. visibility:hidden;
  844. }
  845. #u29046 {
  846. border-width:0px;
  847. position:absolute;
  848. left:0px;
  849. top:0px;
  850. width:0px;
  851. height:0px;
  852. }
  853. #u29047_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. #u29047 {
  874. border-width:0px;
  875. position:absolute;
  876. left:39px;
  877. top:465px;
  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. #u29047 .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. #u29047_text {
  895. border-width:0px;
  896. white-space:nowrap;
  897. text-transform:none;
  898. }
  899. #u29048_img {
  900. border-width:0px;
  901. position:absolute;
  902. left:0px;
  903. top:0px;
  904. width:14px;
  905. height:14px;
  906. }
  907. #u29048 {
  908. border-width:0px;
  909. position:absolute;
  910. left:20px;
  911. top:469px;
  912. width:14px;
  913. height:14px;
  914. display:flex;
  915. }
  916. #u29048 .text {
  917. position:absolute;
  918. align-self:center;
  919. padding:2px 2px 2px 2px;
  920. box-sizing:border-box;
  921. width:100%;
  922. }
  923. #u29048_text {
  924. border-width:0px;
  925. word-wrap:break-word;
  926. text-transform:none;
  927. visibility:hidden;
  928. }
  929. #u29049 {
  930. border-width:0px;
  931. position:absolute;
  932. left:0px;
  933. top:0px;
  934. width:0px;
  935. height:0px;
  936. }
  937. #u29050_div {
  938. border-width:0px;
  939. position:absolute;
  940. left:0px;
  941. top:0px;
  942. width:29px;
  943. height:20px;
  944. background:inherit;
  945. background-color:rgba(255, 255, 255, 0);
  946. border:none;
  947. border-radius:25px;
  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. color:#FFFFFF;
  955. }
  956. #u29050 {
  957. border-width:0px;
  958. position:absolute;
  959. left:52px;
  960. top:1145px;
  961. width:29px;
  962. height:20px;
  963. display:flex;
  964. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  965. font-weight:400;
  966. font-style:normal;
  967. color:#FFFFFF;
  968. }
  969. #u29050 .text {
  970. position:absolute;
  971. align-self:center;
  972. padding:0px 0px 0px 0px;
  973. box-sizing:border-box;
  974. width:100%;
  975. }
  976. #u29050_text {
  977. border-width:0px;
  978. white-space:nowrap;
  979. text-transform:none;
  980. }
  981. #u29051_img {
  982. border-width:0px;
  983. position:absolute;
  984. left:0px;
  985. top:0px;
  986. width:22px;
  987. height:22px;
  988. }
  989. #u29051 {
  990. border-width:0px;
  991. position:absolute;
  992. left:20px;
  993. top:1144px;
  994. width:22px;
  995. height:22px;
  996. display:flex;
  997. }
  998. #u29051 .text {
  999. position:absolute;
  1000. align-self:center;
  1001. padding:2px 2px 2px 2px;
  1002. box-sizing:border-box;
  1003. width:100%;
  1004. }
  1005. #u29051_text {
  1006. border-width:0px;
  1007. word-wrap:break-word;
  1008. text-transform:none;
  1009. visibility:hidden;
  1010. }
  1011. #u29052 {
  1012. border-width:0px;
  1013. position:absolute;
  1014. left:0px;
  1015. top:0px;
  1016. width:0px;
  1017. height:0px;
  1018. }
  1019. #u29053_div {
  1020. border-width:0px;
  1021. position:absolute;
  1022. left:0px;
  1023. top:0px;
  1024. width:29px;
  1025. height:20px;
  1026. background:inherit;
  1027. background-color:rgba(255, 255, 255, 0);
  1028. border:none;
  1029. border-radius:25px;
  1030. -moz-box-shadow:none;
  1031. -webkit-box-shadow:none;
  1032. box-shadow:none;
  1033. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1034. font-weight:400;
  1035. font-style:normal;
  1036. color:#FFFFFF;
  1037. }
  1038. #u29053 {
  1039. border-width:0px;
  1040. position:absolute;
  1041. left:52px;
  1042. top:1187px;
  1043. width:29px;
  1044. height:20px;
  1045. display:flex;
  1046. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1047. font-weight:400;
  1048. font-style:normal;
  1049. color:#FFFFFF;
  1050. }
  1051. #u29053 .text {
  1052. position:absolute;
  1053. align-self:center;
  1054. padding:0px 0px 0px 0px;
  1055. box-sizing:border-box;
  1056. width:100%;
  1057. }
  1058. #u29053_text {
  1059. border-width:0px;
  1060. white-space:nowrap;
  1061. text-transform:none;
  1062. }
  1063. #u29054_img {
  1064. border-width:0px;
  1065. position:absolute;
  1066. left:0px;
  1067. top:0px;
  1068. width:22px;
  1069. height:22px;
  1070. }
  1071. #u29054 {
  1072. border-width:0px;
  1073. position:absolute;
  1074. left:20px;
  1075. top:1186px;
  1076. width:22px;
  1077. height:22px;
  1078. display:flex;
  1079. }
  1080. #u29054 .text {
  1081. position:absolute;
  1082. align-self:center;
  1083. padding:2px 2px 2px 2px;
  1084. box-sizing:border-box;
  1085. width:100%;
  1086. }
  1087. #u29054_text {
  1088. border-width:0px;
  1089. word-wrap:break-word;
  1090. text-transform:none;
  1091. visibility:hidden;
  1092. }
  1093. #u29055 {
  1094. border-width:0px;
  1095. position:absolute;
  1096. left:0px;
  1097. top:0px;
  1098. width:0px;
  1099. height:0px;
  1100. }
  1101. #u29056_div {
  1102. border-width:0px;
  1103. position:absolute;
  1104. left:0px;
  1105. top:0px;
  1106. width:33px;
  1107. height:22px;
  1108. background:inherit;
  1109. background-color:rgba(255, 255, 255, 0);
  1110. border:none;
  1111. border-radius:0px;
  1112. -moz-box-shadow:none;
  1113. -webkit-box-shadow:none;
  1114. box-shadow:none;
  1115. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1116. font-weight:400;
  1117. font-style:normal;
  1118. font-size:16px;
  1119. color:#FFFFFF;
  1120. }
  1121. #u29056 {
  1122. border-width:0px;
  1123. position:absolute;
  1124. left:39px;
  1125. top:255px;
  1126. width:33px;
  1127. height:22px;
  1128. display:flex;
  1129. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1130. font-weight:400;
  1131. font-style:normal;
  1132. font-size:16px;
  1133. color:#FFFFFF;
  1134. }
  1135. #u29056 .text {
  1136. position:absolute;
  1137. align-self:flex-start;
  1138. padding:0px 0px 0px 0px;
  1139. box-sizing:border-box;
  1140. width:100%;
  1141. }
  1142. #u29056_text {
  1143. border-width:0px;
  1144. white-space:nowrap;
  1145. text-transform:none;
  1146. }
  1147. #u29057_img {
  1148. border-width:0px;
  1149. position:absolute;
  1150. left:0px;
  1151. top:0px;
  1152. width:14px;
  1153. height:14px;
  1154. }
  1155. #u29057 {
  1156. border-width:0px;
  1157. position:absolute;
  1158. left:20px;
  1159. top:259px;
  1160. width:14px;
  1161. height:14px;
  1162. display:flex;
  1163. }
  1164. #u29057 .text {
  1165. position:absolute;
  1166. align-self:center;
  1167. padding:2px 2px 2px 2px;
  1168. box-sizing:border-box;
  1169. width:100%;
  1170. }
  1171. #u29057_text {
  1172. border-width:0px;
  1173. word-wrap:break-word;
  1174. text-transform:none;
  1175. visibility:hidden;
  1176. }
  1177. #u29058 {
  1178. border-width:0px;
  1179. position:absolute;
  1180. left:0px;
  1181. top:0px;
  1182. width:0px;
  1183. height:0px;
  1184. }
  1185. #u29059_input {
  1186. position:absolute;
  1187. left:0px;
  1188. top:0px;
  1189. width:214px;
  1190. height:27px;
  1191. padding:2px 2px 2px 2px;
  1192. font-family:'ArialMT', 'Arial', sans-serif;
  1193. font-weight:400;
  1194. font-style:normal;
  1195. font-size:14px;
  1196. letter-spacing:normal;
  1197. color:#FFFFFF;
  1198. vertical-align:none;
  1199. text-align:left;
  1200. text-transform:none;
  1201. background-color:transparent;
  1202. border-color:transparent;
  1203. }
  1204. #u29059_input.disabled {
  1205. position:absolute;
  1206. left:0px;
  1207. top:0px;
  1208. width:214px;
  1209. height:27px;
  1210. padding:2px 2px 2px 2px;
  1211. font-family:'ArialMT', 'Arial', sans-serif;
  1212. font-weight:400;
  1213. font-style:normal;
  1214. font-size:14px;
  1215. letter-spacing:normal;
  1216. color:#FFFFFF;
  1217. vertical-align:none;
  1218. text-align:left;
  1219. text-transform:none;
  1220. background-color:transparent;
  1221. border-color:transparent;
  1222. }
  1223. #u29059_div {
  1224. border-width:0px;
  1225. position:absolute;
  1226. left:0px;
  1227. top:0px;
  1228. width:214px;
  1229. height:27px;
  1230. background:inherit;
  1231. background-color:rgba(255, 255, 255, 0);
  1232. border:none;
  1233. border-radius:0px;
  1234. -moz-box-shadow:none;
  1235. -webkit-box-shadow:none;
  1236. box-shadow:none;
  1237. font-size:14px;
  1238. color:#FFFFFF;
  1239. }
  1240. #u29059 {
  1241. border-width:0px;
  1242. position:absolute;
  1243. left:1221px;
  1244. top:11px;
  1245. width:214px;
  1246. height:27px;
  1247. display:flex;
  1248. font-size:14px;
  1249. color:#FFFFFF;
  1250. }
  1251. #u29059 .text {
  1252. position:absolute;
  1253. align-self:flex-start;
  1254. padding:2px 2px 2px 2px;
  1255. box-sizing:border-box;
  1256. width:100%;
  1257. }
  1258. #u29059_div.disabled {
  1259. border-width:0px;
  1260. position:absolute;
  1261. left:0px;
  1262. top:0px;
  1263. width:214px;
  1264. height:27px;
  1265. background:inherit;
  1266. background-color:rgba(240, 240, 240, 1);
  1267. border:none;
  1268. border-radius:0px;
  1269. -moz-box-shadow:none;
  1270. -webkit-box-shadow:none;
  1271. box-shadow:none;
  1272. font-size:14px;
  1273. color:#FFFFFF;
  1274. }
  1275. #u29059.disabled {
  1276. }
  1277. .u29059_input_option {
  1278. font-size:14px;
  1279. }
  1280. #u29060_img {
  1281. border-width:0px;
  1282. position:absolute;
  1283. left:0px;
  1284. top:0px;
  1285. width:22px;
  1286. height:22px;
  1287. }
  1288. #u29060 {
  1289. border-width:0px;
  1290. position:absolute;
  1291. left:1194px;
  1292. top:14px;
  1293. width:22px;
  1294. height:22px;
  1295. display:flex;
  1296. }
  1297. #u29060 .text {
  1298. position:absolute;
  1299. align-self:center;
  1300. padding:2px 2px 2px 2px;
  1301. box-sizing:border-box;
  1302. width:100%;
  1303. }
  1304. #u29060_text {
  1305. border-width:0px;
  1306. word-wrap:break-word;
  1307. text-transform:none;
  1308. visibility:hidden;
  1309. }
  1310. #u29061_div {
  1311. border-width:0px;
  1312. position:absolute;
  1313. left:0px;
  1314. top:0px;
  1315. width:100px;
  1316. height:24px;
  1317. background:inherit;
  1318. background-color:rgba(242, 242, 242, 0.2);
  1319. border:none;
  1320. border-radius:25px;
  1321. -moz-box-shadow:none;
  1322. -webkit-box-shadow:none;
  1323. box-shadow:none;
  1324. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1325. font-weight:400;
  1326. font-style:normal;
  1327. color:#FFFFFF;
  1328. text-align:center;
  1329. }
  1330. #u29061 {
  1331. border-width:0px;
  1332. position:absolute;
  1333. left:1480px;
  1334. top:13px;
  1335. width:100px;
  1336. height:24px;
  1337. display:flex;
  1338. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1339. font-weight:400;
  1340. font-style:normal;
  1341. color:#FFFFFF;
  1342. text-align:center;
  1343. }
  1344. #u29061 .text {
  1345. position:absolute;
  1346. align-self:center;
  1347. padding:0px 0px 0px 0px;
  1348. box-sizing:border-box;
  1349. width:100%;
  1350. }
  1351. #u29061_text {
  1352. border-width:0px;
  1353. word-wrap:break-word;
  1354. text-transform:none;
  1355. }
  1356. #u29062_img {
  1357. border-width:0px;
  1358. position:absolute;
  1359. left:0px;
  1360. top:0px;
  1361. width:2px;
  1362. height:12px;
  1363. }
  1364. #u29062 {
  1365. border-width:0px;
  1366. position:absolute;
  1367. left:1452px;
  1368. top:19px;
  1369. width:1px;
  1370. height:11px;
  1371. display:flex;
  1372. }
  1373. #u29062 .text {
  1374. position:absolute;
  1375. align-self:center;
  1376. padding:2px 2px 2px 2px;
  1377. box-sizing:border-box;
  1378. width:100%;
  1379. }
  1380. #u29062_text {
  1381. border-width:0px;
  1382. word-wrap:break-word;
  1383. text-transform:none;
  1384. visibility:hidden;
  1385. }
  1386. #u29063 {
  1387. border-width:0px;
  1388. position:absolute;
  1389. left:0px;
  1390. top:0px;
  1391. width:0px;
  1392. height:0px;
  1393. }
  1394. #u29064_div {
  1395. border-width:0px;
  1396. position:absolute;
  1397. left:0px;
  1398. top:0px;
  1399. width:29px;
  1400. height:20px;
  1401. background:inherit;
  1402. background-color:rgba(255, 255, 255, 0);
  1403. border:none;
  1404. border-radius:25px;
  1405. -moz-box-shadow:none;
  1406. -webkit-box-shadow:none;
  1407. box-shadow:none;
  1408. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1409. font-weight:400;
  1410. font-style:normal;
  1411. color:#FFFFFF;
  1412. }
  1413. #u29064 {
  1414. border-width:0px;
  1415. position:absolute;
  1416. left:52px;
  1417. top:1082px;
  1418. width:29px;
  1419. height:20px;
  1420. display:flex;
  1421. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1422. font-weight:400;
  1423. font-style:normal;
  1424. color:#FFFFFF;
  1425. }
  1426. #u29064 .text {
  1427. position:absolute;
  1428. align-self:center;
  1429. padding:0px 0px 0px 0px;
  1430. box-sizing:border-box;
  1431. width:100%;
  1432. }
  1433. #u29064_text {
  1434. border-width:0px;
  1435. white-space:nowrap;
  1436. text-transform:none;
  1437. }
  1438. #u29065_img {
  1439. border-width:0px;
  1440. position:absolute;
  1441. left:0px;
  1442. top:0px;
  1443. width:22px;
  1444. height:22px;
  1445. }
  1446. #u29065 {
  1447. border-width:0px;
  1448. position:absolute;
  1449. left:20px;
  1450. top:1081px;
  1451. width:22px;
  1452. height:22px;
  1453. display:flex;
  1454. }
  1455. #u29065 .text {
  1456. position:absolute;
  1457. align-self:center;
  1458. padding:2px 2px 2px 2px;
  1459. box-sizing:border-box;
  1460. width:100%;
  1461. }
  1462. #u29065_text {
  1463. border-width:0px;
  1464. word-wrap:break-word;
  1465. text-transform:none;
  1466. visibility:hidden;
  1467. }
  1468. #u29066_img {
  1469. border-width:0px;
  1470. position:absolute;
  1471. left:0px;
  1472. top:0px;
  1473. width:69px;
  1474. height:2px;
  1475. }
  1476. #u29066 {
  1477. border-width:0px;
  1478. position:absolute;
  1479. left:20px;
  1480. top:1123px;
  1481. width:68px;
  1482. height:1px;
  1483. display:flex;
  1484. }
  1485. #u29066 .text {
  1486. position:absolute;
  1487. align-self:center;
  1488. padding:2px 2px 2px 2px;
  1489. box-sizing:border-box;
  1490. width:100%;
  1491. }
  1492. #u29066_text {
  1493. border-width:0px;
  1494. word-wrap:break-word;
  1495. text-transform:none;
  1496. visibility:hidden;
  1497. }
  1498. #u29067_img {
  1499. border-width:0px;
  1500. position:absolute;
  1501. left:0px;
  1502. top:0px;
  1503. width:69px;
  1504. height:2px;
  1505. }
  1506. #u29067 {
  1507. border-width:0px;
  1508. position:absolute;
  1509. left:20px;
  1510. top:1061px;
  1511. width:68px;
  1512. height:1px;
  1513. display:flex;
  1514. }
  1515. #u29067 .text {
  1516. position:absolute;
  1517. align-self:center;
  1518. padding:2px 2px 2px 2px;
  1519. box-sizing:border-box;
  1520. width:100%;
  1521. }
  1522. #u29067_text {
  1523. border-width:0px;
  1524. word-wrap:break-word;
  1525. text-transform:none;
  1526. visibility:hidden;
  1527. }
  1528. #u29068_img {
  1529. border-width:0px;
  1530. position:absolute;
  1531. left:0px;
  1532. top:0px;
  1533. width:57px;
  1534. height:2px;
  1535. }
  1536. #u29068 {
  1537. border-width:0px;
  1538. position:absolute;
  1539. left:20px;
  1540. top:112px;
  1541. width:56px;
  1542. height:1px;
  1543. display:flex;
  1544. }
  1545. #u29068 .text {
  1546. position:absolute;
  1547. align-self:center;
  1548. padding:2px 2px 2px 2px;
  1549. box-sizing:border-box;
  1550. width:100%;
  1551. }
  1552. #u29068_text {
  1553. border-width:0px;
  1554. word-wrap:break-word;
  1555. text-transform:none;
  1556. visibility:hidden;
  1557. }
  1558. #u29069 {
  1559. border-width:0px;
  1560. position:absolute;
  1561. left:0px;
  1562. top:0px;
  1563. width:0px;
  1564. height:0px;
  1565. }
  1566. #u29070_div {
  1567. border-width:0px;
  1568. position:absolute;
  1569. left:0px;
  1570. top:0px;
  1571. width:33px;
  1572. height:22px;
  1573. background:inherit;
  1574. background-color:rgba(255, 255, 255, 0);
  1575. border:none;
  1576. border-radius:0px;
  1577. -moz-box-shadow:none;
  1578. -webkit-box-shadow:none;
  1579. box-shadow:none;
  1580. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1581. font-weight:400;
  1582. font-style:normal;
  1583. font-size:16px;
  1584. color:#FFFFFF;
  1585. }
  1586. #u29070 {
  1587. border-width:0px;
  1588. position:absolute;
  1589. left:43px;
  1590. top:71px;
  1591. width:33px;
  1592. height:22px;
  1593. display:flex;
  1594. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1595. font-weight:400;
  1596. font-style:normal;
  1597. font-size:16px;
  1598. color:#FFFFFF;
  1599. }
  1600. #u29070 .text {
  1601. position:absolute;
  1602. align-self:flex-start;
  1603. padding:0px 0px 0px 0px;
  1604. box-sizing:border-box;
  1605. width:100%;
  1606. }
  1607. #u29070_text {
  1608. border-width:0px;
  1609. white-space:nowrap;
  1610. text-transform:none;
  1611. }
  1612. #u29071_img {
  1613. border-width:0px;
  1614. position:absolute;
  1615. left:0px;
  1616. top:0px;
  1617. width:18px;
  1618. height:14px;
  1619. }
  1620. #u29071 {
  1621. border-width:0px;
  1622. position:absolute;
  1623. left:20px;
  1624. top:75px;
  1625. width:18px;
  1626. height:14px;
  1627. display:flex;
  1628. }
  1629. #u29071 .text {
  1630. position:absolute;
  1631. align-self:center;
  1632. padding:2px 2px 2px 2px;
  1633. box-sizing:border-box;
  1634. width:100%;
  1635. }
  1636. #u29071_text {
  1637. border-width:0px;
  1638. word-wrap:break-word;
  1639. text-transform:none;
  1640. visibility:hidden;
  1641. }
  1642. #u29072_div {
  1643. border-width:0px;
  1644. position:absolute;
  1645. left:0px;
  1646. top:0px;
  1647. width:1257px;
  1648. height:1180px;
  1649. background:inherit;
  1650. background-color:rgba(255, 255, 255, 1);
  1651. box-sizing:border-box;
  1652. border-width:1px;
  1653. border-style:solid;
  1654. border-color:rgba(242, 242, 242, 1);
  1655. border-radius:0px;
  1656. -moz-box-shadow:none;
  1657. -webkit-box-shadow:none;
  1658. box-shadow:none;
  1659. }
  1660. #u29072 {
  1661. border-width:0px;
  1662. position:absolute;
  1663. left:332px;
  1664. top:50px;
  1665. width:1257px;
  1666. height:1180px;
  1667. display:flex;
  1668. }
  1669. #u29072 .text {
  1670. position:absolute;
  1671. align-self:center;
  1672. padding:2px 2px 2px 2px;
  1673. box-sizing:border-box;
  1674. width:100%;
  1675. }
  1676. #u29072_text {
  1677. border-width:0px;
  1678. word-wrap:break-word;
  1679. text-transform:none;
  1680. visibility:hidden;
  1681. }
  1682. #u29073_img {
  1683. border-width:0px;
  1684. position:absolute;
  1685. left:0px;
  1686. top:0px;
  1687. width:1258px;
  1688. height:2px;
  1689. }
  1690. #u29073 {
  1691. border-width:0px;
  1692. position:absolute;
  1693. left:332px;
  1694. top:103px;
  1695. width:1257px;
  1696. height:1px;
  1697. display:flex;
  1698. }
  1699. #u29073 .text {
  1700. position:absolute;
  1701. align-self:center;
  1702. padding:2px 2px 2px 2px;
  1703. box-sizing:border-box;
  1704. width:100%;
  1705. }
  1706. #u29073_text {
  1707. border-width:0px;
  1708. word-wrap:break-word;
  1709. text-transform:none;
  1710. visibility:hidden;
  1711. }
  1712. #u29074_div {
  1713. border-width:0px;
  1714. position:absolute;
  1715. left:0px;
  1716. top:0px;
  1717. width:85px;
  1718. height:50px;
  1719. background:inherit;
  1720. background-color:rgba(255, 255, 255, 0);
  1721. border:none;
  1722. border-left:0px;
  1723. border-top:0px;
  1724. border-right:0px;
  1725. border-radius:0px;
  1726. border-bottom-right-radius:0px;
  1727. border-bottom-left-radius:0px;
  1728. -moz-box-shadow:none;
  1729. -webkit-box-shadow:none;
  1730. box-shadow:none;
  1731. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1732. font-weight:400;
  1733. font-style:normal;
  1734. font-size:14px;
  1735. line-height:40px;
  1736. }
  1737. #u29074 {
  1738. border-width:0px;
  1739. position:absolute;
  1740. left:360px;
  1741. top:51px;
  1742. width:85px;
  1743. height:50px;
  1744. display:flex;
  1745. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1746. font-weight:400;
  1747. font-style:normal;
  1748. font-size:14px;
  1749. line-height:40px;
  1750. }
  1751. #u29074 .text {
  1752. position:absolute;
  1753. align-self:center;
  1754. padding:0px 0px 0px 0px;
  1755. box-sizing:border-box;
  1756. width:100%;
  1757. }
  1758. #u29074_text {
  1759. border-width:0px;
  1760. white-space:nowrap;
  1761. text-transform:none;
  1762. }
  1763. #u29075_div {
  1764. border-width:0px;
  1765. position:absolute;
  1766. left:0px;
  1767. top:0px;
  1768. width:85px;
  1769. height:50px;
  1770. background:inherit;
  1771. background-color:rgba(255, 255, 255, 0);
  1772. border:none;
  1773. border-left:0px;
  1774. border-top:0px;
  1775. border-right:0px;
  1776. border-radius:0px;
  1777. border-bottom-right-radius:0px;
  1778. border-bottom-left-radius:0px;
  1779. -moz-box-shadow:none;
  1780. -webkit-box-shadow:none;
  1781. box-shadow:none;
  1782. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1783. font-weight:400;
  1784. font-style:normal;
  1785. font-size:14px;
  1786. line-height:40px;
  1787. }
  1788. #u29075 {
  1789. border-width:0px;
  1790. position:absolute;
  1791. left:485px;
  1792. top:51px;
  1793. width:85px;
  1794. height:50px;
  1795. display:flex;
  1796. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1797. font-weight:400;
  1798. font-style:normal;
  1799. font-size:14px;
  1800. line-height:40px;
  1801. }
  1802. #u29075 .text {
  1803. position:absolute;
  1804. align-self:center;
  1805. padding:0px 0px 0px 0px;
  1806. box-sizing:border-box;
  1807. width:100%;
  1808. }
  1809. #u29075_text {
  1810. border-width:0px;
  1811. white-space:nowrap;
  1812. text-transform:none;
  1813. }
  1814. #u29076_div {
  1815. border-width:0px;
  1816. position:absolute;
  1817. left:0px;
  1818. top:0px;
  1819. width:113px;
  1820. height:50px;
  1821. background:inherit;
  1822. background-color:rgba(255, 255, 255, 0);
  1823. box-sizing:border-box;
  1824. border-width:2px;
  1825. border-style:solid;
  1826. border-color:rgba(41, 143, 255, 1);
  1827. border-left:0px;
  1828. border-top:0px;
  1829. border-right:0px;
  1830. border-radius:0px;
  1831. border-bottom-right-radius:0px;
  1832. border-bottom-left-radius:0px;
  1833. -moz-box-shadow:none;
  1834. -webkit-box-shadow:none;
  1835. box-shadow:none;
  1836. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1837. font-weight:400;
  1838. font-style:normal;
  1839. font-size:14px;
  1840. color:#298FFF;
  1841. line-height:40px;
  1842. }
  1843. #u29076 {
  1844. border-width:0px;
  1845. position:absolute;
  1846. left:610px;
  1847. top:51px;
  1848. width:113px;
  1849. height:50px;
  1850. display:flex;
  1851. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1852. font-weight:400;
  1853. font-style:normal;
  1854. font-size:14px;
  1855. color:#298FFF;
  1856. line-height:40px;
  1857. }
  1858. #u29076 .text {
  1859. position:absolute;
  1860. align-self:center;
  1861. padding:0px 0px 0px 0px;
  1862. box-sizing:border-box;
  1863. width:100%;
  1864. }
  1865. #u29076_text {
  1866. border-width:0px;
  1867. white-space:nowrap;
  1868. text-transform:none;
  1869. }
  1870. #u29077_div {
  1871. border-width:0px;
  1872. position:absolute;
  1873. left:0px;
  1874. top:0px;
  1875. width:357px;
  1876. height:35px;
  1877. background:inherit;
  1878. background-color:rgba(255, 255, 255, 0);
  1879. border:none;
  1880. border-top:0px;
  1881. border-right:0px;
  1882. border-bottom:0px;
  1883. border-radius:0px;
  1884. border-top-left-radius:0px;
  1885. border-bottom-left-radius:0px;
  1886. -moz-box-shadow:none;
  1887. -webkit-box-shadow:none;
  1888. box-shadow:none;
  1889. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  1890. font-weight:500;
  1891. font-style:normal;
  1892. font-size:18px;
  1893. }
  1894. #u29077 {
  1895. border-width:0px;
  1896. position:absolute;
  1897. left:381px;
  1898. top:133px;
  1899. width:357px;
  1900. height:35px;
  1901. display:flex;
  1902. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  1903. font-weight:500;
  1904. font-style:normal;
  1905. font-size:18px;
  1906. }
  1907. #u29077 .text {
  1908. position:absolute;
  1909. align-self:center;
  1910. padding:5px 10px 5px 0px;
  1911. box-sizing:border-box;
  1912. width:100%;
  1913. }
  1914. #u29077_text {
  1915. border-width:0px;
  1916. white-space:nowrap;
  1917. text-transform:none;
  1918. }
  1919. #u29078_div {
  1920. border-width:0px;
  1921. position:absolute;
  1922. left:0px;
  1923. top:0px;
  1924. width:80px;
  1925. height:30px;
  1926. background:inherit;
  1927. background-color:rgba(24, 144, 255, 1);
  1928. border:none;
  1929. border-radius:4px;
  1930. -moz-box-shadow:none;
  1931. -webkit-box-shadow:none;
  1932. box-shadow:none;
  1933. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1934. font-weight:400;
  1935. font-style:normal;
  1936. font-size:14px;
  1937. color:#FFFFFF;
  1938. }
  1939. #u29078 {
  1940. border-width:0px;
  1941. position:absolute;
  1942. left:381px;
  1943. top:521px;
  1944. width:80px;
  1945. height:30px;
  1946. display:flex;
  1947. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1948. font-weight:400;
  1949. font-style:normal;
  1950. font-size:14px;
  1951. color:#FFFFFF;
  1952. }
  1953. #u29078 .text {
  1954. position:absolute;
  1955. align-self:center;
  1956. padding:2px 2px 2px 2px;
  1957. box-sizing:border-box;
  1958. width:100%;
  1959. }
  1960. #u29078_text {
  1961. border-width:0px;
  1962. word-wrap:break-word;
  1963. text-transform:none;
  1964. }
  1965. #u29079_div {
  1966. border-width:0px;
  1967. position:absolute;
  1968. left:0px;
  1969. top:0px;
  1970. width:109px;
  1971. height:40px;
  1972. background:inherit;
  1973. background-color:rgba(255, 255, 255, 0);
  1974. border:none;
  1975. border-top:0px;
  1976. border-right:0px;
  1977. border-bottom:0px;
  1978. border-radius:0px;
  1979. border-top-left-radius:0px;
  1980. border-bottom-left-radius:0px;
  1981. -moz-box-shadow:none;
  1982. -webkit-box-shadow:none;
  1983. box-shadow:none;
  1984. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1985. font-weight:400;
  1986. font-style:normal;
  1987. font-size:14px;
  1988. }
  1989. #u29079 {
  1990. border-width:0px;
  1991. position:absolute;
  1992. left:381px;
  1993. top:258px;
  1994. width:109px;
  1995. height:40px;
  1996. display:flex;
  1997. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1998. font-weight:400;
  1999. font-style:normal;
  2000. font-size:14px;
  2001. }
  2002. #u29079 .text {
  2003. position:absolute;
  2004. align-self:center;
  2005. padding:5px 10px 5px 0px;
  2006. box-sizing:border-box;
  2007. width:100%;
  2008. }
  2009. #u29079_text {
  2010. border-width:0px;
  2011. white-space:nowrap;
  2012. text-transform:none;
  2013. }
  2014. #u29080 {
  2015. border-width:0px;
  2016. position:absolute;
  2017. left:0px;
  2018. top:0px;
  2019. width:0px;
  2020. height:0px;
  2021. }
  2022. #u29081_div {
  2023. border-width:0px;
  2024. position:absolute;
  2025. left:0px;
  2026. top:0px;
  2027. width:400px;
  2028. height:40px;
  2029. background:inherit;
  2030. background-color:rgba(255, 255, 255, 1);
  2031. box-sizing:border-box;
  2032. border-width:1px;
  2033. border-style:solid;
  2034. border-color:rgba(215, 215, 215, 1);
  2035. border-radius:4px;
  2036. -moz-box-shadow:none;
  2037. -webkit-box-shadow:none;
  2038. box-shadow:none;
  2039. font-size:14px;
  2040. }
  2041. #u29081 {
  2042. border-width:0px;
  2043. position:absolute;
  2044. left:381px;
  2045. top:298px;
  2046. width:400px;
  2047. height:40px;
  2048. display:flex;
  2049. font-size:14px;
  2050. }
  2051. #u29081 .text {
  2052. position:absolute;
  2053. align-self:center;
  2054. padding:2px 2px 2px 2px;
  2055. box-sizing:border-box;
  2056. width:100%;
  2057. }
  2058. #u29081_text {
  2059. border-width:0px;
  2060. word-wrap:break-word;
  2061. text-transform:none;
  2062. visibility:hidden;
  2063. }
  2064. #u29082_input {
  2065. position:absolute;
  2066. left:0px;
  2067. top:0px;
  2068. width:382px;
  2069. height:31px;
  2070. padding:2px 2px 2px 2px;
  2071. font-family:'ArialMT', 'Arial', sans-serif;
  2072. font-weight:400;
  2073. font-style:normal;
  2074. font-size:14px;
  2075. letter-spacing:normal;
  2076. color:#AAAAAA;
  2077. vertical-align:none;
  2078. text-align:left;
  2079. text-transform:none;
  2080. background-color:transparent;
  2081. border-color:transparent;
  2082. }
  2083. #u29082_input.disabled {
  2084. position:absolute;
  2085. left:0px;
  2086. top:0px;
  2087. width:382px;
  2088. height:31px;
  2089. padding:2px 2px 2px 2px;
  2090. font-family:'ArialMT', 'Arial', sans-serif;
  2091. font-weight:400;
  2092. font-style:normal;
  2093. font-size:14px;
  2094. letter-spacing:normal;
  2095. color:#AAAAAA;
  2096. vertical-align:none;
  2097. text-align:left;
  2098. text-transform:none;
  2099. background-color:transparent;
  2100. border-color:transparent;
  2101. }
  2102. #u29082_div {
  2103. border-width:0px;
  2104. position:absolute;
  2105. left:0px;
  2106. top:0px;
  2107. width:382px;
  2108. height:31px;
  2109. background:inherit;
  2110. background-color:rgba(255, 255, 255, 1);
  2111. border:none;
  2112. border-radius:0px;
  2113. -moz-box-shadow:none;
  2114. -webkit-box-shadow:none;
  2115. box-shadow:none;
  2116. font-size:14px;
  2117. color:#AAAAAA;
  2118. }
  2119. #u29082 {
  2120. border-width:0px;
  2121. position:absolute;
  2122. left:392px;
  2123. top:301px;
  2124. width:382px;
  2125. height:31px;
  2126. display:flex;
  2127. font-size:14px;
  2128. color:#AAAAAA;
  2129. }
  2130. #u29082 .text {
  2131. position:absolute;
  2132. align-self:flex-start;
  2133. padding:2px 2px 2px 2px;
  2134. box-sizing:border-box;
  2135. width:100%;
  2136. }
  2137. #u29082_div.disabled {
  2138. border-width:0px;
  2139. position:absolute;
  2140. left:0px;
  2141. top:0px;
  2142. width:382px;
  2143. height:31px;
  2144. background:inherit;
  2145. background-color:rgba(240, 240, 240, 1);
  2146. border:none;
  2147. border-radius:0px;
  2148. -moz-box-shadow:none;
  2149. -webkit-box-shadow:none;
  2150. box-shadow:none;
  2151. font-size:14px;
  2152. color:#AAAAAA;
  2153. }
  2154. #u29082.disabled {
  2155. }
  2156. .u29082_input_option {
  2157. font-size:14px;
  2158. }
  2159. #u29083_div {
  2160. border-width:0px;
  2161. position:absolute;
  2162. left:0px;
  2163. top:0px;
  2164. width:109px;
  2165. height:40px;
  2166. background:inherit;
  2167. background-color:rgba(255, 255, 255, 0);
  2168. border:none;
  2169. border-top:0px;
  2170. border-right:0px;
  2171. border-bottom:0px;
  2172. border-radius:0px;
  2173. border-top-left-radius:0px;
  2174. border-bottom-left-radius:0px;
  2175. -moz-box-shadow:none;
  2176. -webkit-box-shadow:none;
  2177. box-shadow:none;
  2178. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2179. font-weight:400;
  2180. font-style:normal;
  2181. font-size:14px;
  2182. }
  2183. #u29083 {
  2184. border-width:0px;
  2185. position:absolute;
  2186. left:381px;
  2187. top:396px;
  2188. width:109px;
  2189. height:40px;
  2190. display:flex;
  2191. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2192. font-weight:400;
  2193. font-style:normal;
  2194. font-size:14px;
  2195. }
  2196. #u29083 .text {
  2197. position:absolute;
  2198. align-self:center;
  2199. padding:5px 10px 5px 0px;
  2200. box-sizing:border-box;
  2201. width:100%;
  2202. }
  2203. #u29083_text {
  2204. border-width:0px;
  2205. white-space:nowrap;
  2206. text-transform:none;
  2207. }
  2208. #u29084 {
  2209. border-width:0px;
  2210. position:absolute;
  2211. left:0px;
  2212. top:0px;
  2213. width:0px;
  2214. height:0px;
  2215. }
  2216. #u29085_div {
  2217. border-width:0px;
  2218. position:absolute;
  2219. left:0px;
  2220. top:0px;
  2221. width:400px;
  2222. height:40px;
  2223. background:inherit;
  2224. background-color:rgba(255, 255, 255, 1);
  2225. box-sizing:border-box;
  2226. border-width:1px;
  2227. border-style:solid;
  2228. border-color:rgba(215, 215, 215, 1);
  2229. border-radius:4px;
  2230. -moz-box-shadow:none;
  2231. -webkit-box-shadow:none;
  2232. box-shadow:none;
  2233. font-size:14px;
  2234. }
  2235. #u29085 {
  2236. border-width:0px;
  2237. position:absolute;
  2238. left:381px;
  2239. top:441px;
  2240. width:400px;
  2241. height:40px;
  2242. display:flex;
  2243. font-size:14px;
  2244. }
  2245. #u29085 .text {
  2246. position:absolute;
  2247. align-self:center;
  2248. padding:2px 2px 2px 2px;
  2249. box-sizing:border-box;
  2250. width:100%;
  2251. }
  2252. #u29085_text {
  2253. border-width:0px;
  2254. word-wrap:break-word;
  2255. text-transform:none;
  2256. visibility:hidden;
  2257. }
  2258. #u29086_input {
  2259. position:absolute;
  2260. left:0px;
  2261. top:0px;
  2262. width:382px;
  2263. height:31px;
  2264. padding:2px 2px 2px 2px;
  2265. font-family:'ArialMT', 'Arial', sans-serif;
  2266. font-weight:400;
  2267. font-style:normal;
  2268. font-size:14px;
  2269. letter-spacing:normal;
  2270. color:#AAAAAA;
  2271. vertical-align:none;
  2272. text-align:left;
  2273. text-transform:none;
  2274. background-color:transparent;
  2275. border-color:transparent;
  2276. }
  2277. #u29086_input.disabled {
  2278. position:absolute;
  2279. left:0px;
  2280. top:0px;
  2281. width:382px;
  2282. height:31px;
  2283. padding:2px 2px 2px 2px;
  2284. font-family:'ArialMT', 'Arial', sans-serif;
  2285. font-weight:400;
  2286. font-style:normal;
  2287. font-size:14px;
  2288. letter-spacing:normal;
  2289. color:#AAAAAA;
  2290. vertical-align:none;
  2291. text-align:left;
  2292. text-transform:none;
  2293. background-color:transparent;
  2294. border-color:transparent;
  2295. }
  2296. #u29086_div {
  2297. border-width:0px;
  2298. position:absolute;
  2299. left:0px;
  2300. top:0px;
  2301. width:382px;
  2302. height:31px;
  2303. background:inherit;
  2304. background-color:rgba(255, 255, 255, 1);
  2305. border:none;
  2306. border-radius:0px;
  2307. -moz-box-shadow:none;
  2308. -webkit-box-shadow:none;
  2309. box-shadow:none;
  2310. font-size:14px;
  2311. color:#AAAAAA;
  2312. }
  2313. #u29086 {
  2314. border-width:0px;
  2315. position:absolute;
  2316. left:392px;
  2317. top:444px;
  2318. width:382px;
  2319. height:31px;
  2320. display:flex;
  2321. font-size:14px;
  2322. color:#AAAAAA;
  2323. }
  2324. #u29086 .text {
  2325. position:absolute;
  2326. align-self:flex-start;
  2327. padding:2px 2px 2px 2px;
  2328. box-sizing:border-box;
  2329. width:100%;
  2330. }
  2331. #u29086_div.disabled {
  2332. border-width:0px;
  2333. position:absolute;
  2334. left:0px;
  2335. top:0px;
  2336. width:382px;
  2337. height:31px;
  2338. background:inherit;
  2339. background-color:rgba(240, 240, 240, 1);
  2340. border:none;
  2341. border-radius:0px;
  2342. -moz-box-shadow:none;
  2343. -webkit-box-shadow:none;
  2344. box-shadow:none;
  2345. font-size:14px;
  2346. color:#AAAAAA;
  2347. }
  2348. #u29086.disabled {
  2349. }
  2350. .u29086_input_option {
  2351. font-size:14px;
  2352. }
  2353. #u29087 label {
  2354. left:0px;
  2355. width:100%;
  2356. }
  2357. #u29087_img {
  2358. border-width:0px;
  2359. position:absolute;
  2360. left:0px;
  2361. top:3px;
  2362. width:12px;
  2363. height:12px;
  2364. }
  2365. #u29087 {
  2366. border-width:0px;
  2367. position:absolute;
  2368. left:381px;
  2369. top:358px;
  2370. width:490px;
  2371. height:18px;
  2372. display:flex;
  2373. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2374. font-weight:400;
  2375. font-style:normal;
  2376. }
  2377. #u29087 .text {
  2378. position:absolute;
  2379. align-self:center;
  2380. padding:0px 2px 0px 2px;
  2381. box-sizing:border-box;
  2382. }
  2383. #u29087_img.selected {
  2384. }
  2385. #u29087.selected {
  2386. }
  2387. #u29087_img.disabled {
  2388. }
  2389. #u29087.disabled {
  2390. }
  2391. #u29087_img.selectedDisabled {
  2392. }
  2393. #u29087.selectedDisabled {
  2394. }
  2395. #u29087_text {
  2396. border-width:0px;
  2397. position:absolute;
  2398. left:14px;
  2399. top:0px;
  2400. width:474px;
  2401. word-wrap:break-word;
  2402. text-transform:none;
  2403. }
  2404. #u29087_input {
  2405. border-width:0px;
  2406. position:absolute;
  2407. left:0px;
  2408. top:0px;
  2409. width:0px;
  2410. height:0px;
  2411. opacity:0;
  2412. }
  2413. #u29088_div {
  2414. border-width:0px;
  2415. position:absolute;
  2416. left:0px;
  2417. top:0px;
  2418. width:57px;
  2419. height:50px;
  2420. background:inherit;
  2421. background-color:rgba(255, 255, 255, 0);
  2422. border:none;
  2423. border-left:0px;
  2424. border-top:0px;
  2425. border-right:0px;
  2426. border-radius:0px;
  2427. border-bottom-right-radius:0px;
  2428. border-bottom-left-radius:0px;
  2429. -moz-box-shadow:none;
  2430. -webkit-box-shadow:none;
  2431. box-shadow:none;
  2432. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2433. font-weight:400;
  2434. font-style:normal;
  2435. font-size:14px;
  2436. line-height:40px;
  2437. }
  2438. #u29088 {
  2439. border-width:0px;
  2440. position:absolute;
  2441. left:763px;
  2442. top:51px;
  2443. width:57px;
  2444. height:50px;
  2445. display:flex;
  2446. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2447. font-weight:400;
  2448. font-style:normal;
  2449. font-size:14px;
  2450. line-height:40px;
  2451. }
  2452. #u29088 .text {
  2453. position:absolute;
  2454. align-self:center;
  2455. padding:0px 0px 0px 0px;
  2456. box-sizing:border-box;
  2457. width:100%;
  2458. }
  2459. #u29088_text {
  2460. border-width:0px;
  2461. white-space:nowrap;
  2462. text-transform:none;
  2463. }
  2464. #u29090_div {
  2465. border-width:0px;
  2466. position:absolute;
  2467. left:0px;
  2468. top:0px;
  2469. width:200px;
  2470. height:1180px;
  2471. background:inherit;
  2472. background-color:rgba(255, 255, 255, 1);
  2473. border:none;
  2474. border-radius:0px;
  2475. -moz-box-shadow:none;
  2476. -webkit-box-shadow:none;
  2477. box-shadow:none;
  2478. }
  2479. #u29090 {
  2480. border-width:0px;
  2481. position:absolute;
  2482. left:120px;
  2483. top:50px;
  2484. width:200px;
  2485. height:1180px;
  2486. display:flex;
  2487. }
  2488. #u29090 .text {
  2489. position:absolute;
  2490. align-self:center;
  2491. padding:2px 2px 2px 2px;
  2492. box-sizing:border-box;
  2493. width:100%;
  2494. }
  2495. #u29090_text {
  2496. border-width:0px;
  2497. word-wrap:break-word;
  2498. text-transform:none;
  2499. visibility:hidden;
  2500. }
  2501. #u29091_div {
  2502. border-width:0px;
  2503. position:absolute;
  2504. left:0px;
  2505. top:0px;
  2506. width:200px;
  2507. height:60px;
  2508. background:inherit;
  2509. background-color:rgba(224, 231, 247, 1);
  2510. border:none;
  2511. border-radius:0px;
  2512. -moz-box-shadow:none;
  2513. -webkit-box-shadow:none;
  2514. box-shadow:none;
  2515. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  2516. font-weight:500;
  2517. font-style:normal;
  2518. font-size:18px;
  2519. }
  2520. #u29091 {
  2521. border-width:0px;
  2522. position:absolute;
  2523. left:120px;
  2524. top:50px;
  2525. width:200px;
  2526. height:60px;
  2527. display:flex;
  2528. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  2529. font-weight:500;
  2530. font-style:normal;
  2531. font-size:18px;
  2532. }
  2533. #u29091 .text {
  2534. position:absolute;
  2535. align-self:center;
  2536. padding:0px 0px 0px 20px;
  2537. box-sizing:border-box;
  2538. width:100%;
  2539. }
  2540. #u29091_text {
  2541. border-width:0px;
  2542. word-wrap:break-word;
  2543. text-transform:none;
  2544. }
  2545. #u29092_div {
  2546. border-width:0px;
  2547. position:absolute;
  2548. left:0px;
  2549. top:0px;
  2550. width:97px;
  2551. height:22px;
  2552. background:inherit;
  2553. background-color:rgba(255, 255, 255, 0);
  2554. border:none;
  2555. border-radius:0px;
  2556. -moz-box-shadow:none;
  2557. -webkit-box-shadow:none;
  2558. box-shadow:none;
  2559. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2560. font-weight:400;
  2561. font-style:normal;
  2562. font-size:16px;
  2563. }
  2564. #u29092 {
  2565. border-width:0px;
  2566. position:absolute;
  2567. left:147px;
  2568. top:161px;
  2569. width:97px;
  2570. height:22px;
  2571. display:flex;
  2572. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2573. font-weight:400;
  2574. font-style:normal;
  2575. font-size:16px;
  2576. }
  2577. #u29092 .text {
  2578. position:absolute;
  2579. align-self:flex-start;
  2580. padding:0px 0px 0px 0px;
  2581. box-sizing:border-box;
  2582. width:100%;
  2583. }
  2584. #u29092_text {
  2585. border-width:0px;
  2586. white-space:nowrap;
  2587. text-transform:none;
  2588. }
  2589. #u29093_div {
  2590. border-width:0px;
  2591. position:absolute;
  2592. left:0px;
  2593. top:0px;
  2594. width:97px;
  2595. height:22px;
  2596. background:inherit;
  2597. background-color:rgba(255, 255, 255, 0);
  2598. border:none;
  2599. border-radius:0px;
  2600. -moz-box-shadow:none;
  2601. -webkit-box-shadow:none;
  2602. box-shadow:none;
  2603. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2604. font-weight:400;
  2605. font-style:normal;
  2606. font-size:16px;
  2607. }
  2608. #u29093 {
  2609. border-width:0px;
  2610. position:absolute;
  2611. left:147px;
  2612. top:203px;
  2613. width:97px;
  2614. height:22px;
  2615. display:flex;
  2616. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2617. font-weight:400;
  2618. font-style:normal;
  2619. font-size:16px;
  2620. }
  2621. #u29093 .text {
  2622. position:absolute;
  2623. align-self:flex-start;
  2624. padding:0px 0px 0px 0px;
  2625. box-sizing:border-box;
  2626. width:100%;
  2627. }
  2628. #u29093_text {
  2629. border-width:0px;
  2630. white-space:nowrap;
  2631. text-transform:none;
  2632. }
  2633. #u29094_div {
  2634. border-width:0px;
  2635. position:absolute;
  2636. left:0px;
  2637. top:0px;
  2638. width:97px;
  2639. height:22px;
  2640. background:inherit;
  2641. background-color:rgba(255, 255, 255, 0);
  2642. border:none;
  2643. border-radius:0px;
  2644. -moz-box-shadow:none;
  2645. -webkit-box-shadow:none;
  2646. box-shadow:none;
  2647. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2648. font-weight:400;
  2649. font-style:normal;
  2650. font-size:16px;
  2651. }
  2652. #u29094 {
  2653. border-width:0px;
  2654. position:absolute;
  2655. left:147px;
  2656. top:247px;
  2657. width:97px;
  2658. height:22px;
  2659. display:flex;
  2660. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2661. font-weight:400;
  2662. font-style:normal;
  2663. font-size:16px;
  2664. }
  2665. #u29094 .text {
  2666. position:absolute;
  2667. align-self:flex-start;
  2668. padding:0px 0px 0px 0px;
  2669. box-sizing:border-box;
  2670. width:100%;
  2671. }
  2672. #u29094_text {
  2673. border-width:0px;
  2674. white-space:nowrap;
  2675. text-transform:none;
  2676. }
  2677. #u29095_div {
  2678. border-width:0px;
  2679. position:absolute;
  2680. left:0px;
  2681. top:0px;
  2682. width:49px;
  2683. height:17px;
  2684. background:inherit;
  2685. background-color:rgba(255, 255, 255, 0);
  2686. border:none;
  2687. border-radius:0px;
  2688. -moz-box-shadow:none;
  2689. -webkit-box-shadow:none;
  2690. box-shadow:none;
  2691. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2692. font-weight:400;
  2693. font-style:normal;
  2694. font-size:12px;
  2695. color:#AAAAAA;
  2696. }
  2697. #u29095 {
  2698. border-width:0px;
  2699. position:absolute;
  2700. left:147px;
  2701. top:125px;
  2702. width:49px;
  2703. height:17px;
  2704. display:flex;
  2705. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2706. font-weight:400;
  2707. font-style:normal;
  2708. font-size:12px;
  2709. color:#AAAAAA;
  2710. }
  2711. #u29095 .text {
  2712. position:absolute;
  2713. align-self:flex-start;
  2714. padding:0px 0px 0px 0px;
  2715. box-sizing:border-box;
  2716. width:100%;
  2717. }
  2718. #u29095_text {
  2719. border-width:0px;
  2720. white-space:nowrap;
  2721. text-transform:none;
  2722. }
  2723. #u29096_div {
  2724. border-width:0px;
  2725. position:absolute;
  2726. left:0px;
  2727. top:0px;
  2728. width:65px;
  2729. height:22px;
  2730. background:inherit;
  2731. background-color:rgba(255, 255, 255, 0);
  2732. border:none;
  2733. border-radius:0px;
  2734. -moz-box-shadow:none;
  2735. -webkit-box-shadow:none;
  2736. box-shadow:none;
  2737. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2738. font-weight:400;
  2739. font-style:normal;
  2740. font-size:16px;
  2741. }
  2742. #u29096 {
  2743. border-width:0px;
  2744. position:absolute;
  2745. left:147px;
  2746. top:347px;
  2747. width:65px;
  2748. height:22px;
  2749. display:flex;
  2750. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2751. font-weight:400;
  2752. font-style:normal;
  2753. font-size:16px;
  2754. }
  2755. #u29096 .text {
  2756. position:absolute;
  2757. align-self:flex-start;
  2758. padding:0px 0px 0px 0px;
  2759. box-sizing:border-box;
  2760. width:100%;
  2761. }
  2762. #u29096_text {
  2763. border-width:0px;
  2764. white-space:nowrap;
  2765. text-transform:none;
  2766. }
  2767. #u29097_div {
  2768. border-width:0px;
  2769. position:absolute;
  2770. left:0px;
  2771. top:0px;
  2772. width:49px;
  2773. height:17px;
  2774. background:inherit;
  2775. background-color:rgba(255, 255, 255, 0);
  2776. border:none;
  2777. border-radius:0px;
  2778. -moz-box-shadow:none;
  2779. -webkit-box-shadow:none;
  2780. box-shadow:none;
  2781. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2782. font-weight:400;
  2783. font-style:normal;
  2784. font-size:12px;
  2785. color:#AAAAAA;
  2786. }
  2787. #u29097 {
  2788. border-width:0px;
  2789. position:absolute;
  2790. left:147px;
  2791. top:311px;
  2792. width:49px;
  2793. height:17px;
  2794. display:flex;
  2795. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2796. font-weight:400;
  2797. font-style:normal;
  2798. font-size:12px;
  2799. color:#AAAAAA;
  2800. }
  2801. #u29097 .text {
  2802. position:absolute;
  2803. align-self:flex-start;
  2804. padding:0px 0px 0px 0px;
  2805. box-sizing:border-box;
  2806. width:100%;
  2807. }
  2808. #u29097_text {
  2809. border-width:0px;
  2810. white-space:nowrap;
  2811. text-transform:none;
  2812. }
  2813. #u29098_img {
  2814. border-width:0px;
  2815. position:absolute;
  2816. left:0px;
  2817. top:0px;
  2818. width:201px;
  2819. height:2px;
  2820. }
  2821. #u29098 {
  2822. border-width:0px;
  2823. position:absolute;
  2824. left:120px;
  2825. top:289px;
  2826. width:200px;
  2827. height:1px;
  2828. display:flex;
  2829. }
  2830. #u29098 .text {
  2831. position:absolute;
  2832. align-self:center;
  2833. padding:2px 2px 2px 2px;
  2834. box-sizing:border-box;
  2835. width:100%;
  2836. }
  2837. #u29098_text {
  2838. border-width:0px;
  2839. word-wrap:break-word;
  2840. text-transform:none;
  2841. visibility:hidden;
  2842. }
  2843. #u29099 {
  2844. border-width:0px;
  2845. position:absolute;
  2846. left:0px;
  2847. top:0px;
  2848. width:0px;
  2849. height:0px;
  2850. }
  2851. #u29100_div {
  2852. border-width:0px;
  2853. position:absolute;
  2854. left:0px;
  2855. top:0px;
  2856. width:400px;
  2857. height:30px;
  2858. background:inherit;
  2859. background-color:rgba(255, 255, 255, 1);
  2860. box-sizing:border-box;
  2861. border-width:1px;
  2862. border-style:solid;
  2863. border-color:rgba(215, 215, 215, 1);
  2864. border-radius:4px;
  2865. -moz-box-shadow:none;
  2866. -webkit-box-shadow:none;
  2867. box-shadow:none;
  2868. font-size:14px;
  2869. }
  2870. #u29100 {
  2871. border-width:0px;
  2872. position:absolute;
  2873. left:381px;
  2874. top:214px;
  2875. width:400px;
  2876. height:30px;
  2877. display:flex;
  2878. font-size:14px;
  2879. }
  2880. #u29100 .text {
  2881. position:absolute;
  2882. align-self:center;
  2883. padding:2px 2px 2px 2px;
  2884. box-sizing:border-box;
  2885. width:100%;
  2886. }
  2887. #u29100_text {
  2888. border-width:0px;
  2889. word-wrap:break-word;
  2890. text-transform:none;
  2891. visibility:hidden;
  2892. }
  2893. #u29101_input {
  2894. position:absolute;
  2895. left:0px;
  2896. top:0px;
  2897. width:383px;
  2898. height:23px;
  2899. padding:2px 2px 2px 2px;
  2900. font-family:'ArialMT', 'Arial', sans-serif;
  2901. font-weight:400;
  2902. font-style:normal;
  2903. font-size:14px;
  2904. letter-spacing:normal;
  2905. color:#AAAAAA;
  2906. vertical-align:none;
  2907. text-align:left;
  2908. text-transform:none;
  2909. background-color:transparent;
  2910. border-color:transparent;
  2911. }
  2912. #u29101_input.disabled {
  2913. position:absolute;
  2914. left:0px;
  2915. top:0px;
  2916. width:383px;
  2917. height:23px;
  2918. padding:2px 2px 2px 2px;
  2919. font-family:'ArialMT', 'Arial', sans-serif;
  2920. font-weight:400;
  2921. font-style:normal;
  2922. font-size:14px;
  2923. letter-spacing:normal;
  2924. color:#AAAAAA;
  2925. vertical-align:none;
  2926. text-align:left;
  2927. text-transform:none;
  2928. background-color:transparent;
  2929. border-color:transparent;
  2930. }
  2931. #u29101_div {
  2932. border-width:0px;
  2933. position:absolute;
  2934. left:0px;
  2935. top:0px;
  2936. width:383px;
  2937. height:23px;
  2938. background:inherit;
  2939. background-color:rgba(255, 255, 255, 1);
  2940. border:none;
  2941. border-radius:0px;
  2942. -moz-box-shadow:none;
  2943. -webkit-box-shadow:none;
  2944. box-shadow:none;
  2945. font-size:14px;
  2946. color:#AAAAAA;
  2947. }
  2948. #u29101 {
  2949. border-width:0px;
  2950. position:absolute;
  2951. left:394px;
  2952. top:216px;
  2953. width:383px;
  2954. height:23px;
  2955. display:flex;
  2956. font-size:14px;
  2957. color:#AAAAAA;
  2958. }
  2959. #u29101 .text {
  2960. position:absolute;
  2961. align-self:flex-start;
  2962. padding:2px 2px 2px 2px;
  2963. box-sizing:border-box;
  2964. width:100%;
  2965. }
  2966. #u29101_div.disabled {
  2967. border-width:0px;
  2968. position:absolute;
  2969. left:0px;
  2970. top:0px;
  2971. width:383px;
  2972. height:23px;
  2973. background:inherit;
  2974. background-color:rgba(240, 240, 240, 1);
  2975. border:none;
  2976. border-radius:0px;
  2977. -moz-box-shadow:none;
  2978. -webkit-box-shadow:none;
  2979. box-shadow:none;
  2980. font-size:14px;
  2981. color:#AAAAAA;
  2982. }
  2983. #u29101.disabled {
  2984. }
  2985. .u29101_input_option {
  2986. font-size:14px;
  2987. }
  2988. #u29102_div {
  2989. border-width:0px;
  2990. position:absolute;
  2991. left:0px;
  2992. top:0px;
  2993. width:53px;
  2994. height:40px;
  2995. background:inherit;
  2996. background-color:rgba(255, 255, 255, 0);
  2997. border:none;
  2998. border-top:0px;
  2999. border-right:0px;
  3000. border-bottom:0px;
  3001. border-radius:0px;
  3002. border-top-left-radius:0px;
  3003. border-bottom-left-radius:0px;
  3004. -moz-box-shadow:none;
  3005. -webkit-box-shadow:none;
  3006. box-shadow:none;
  3007. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3008. font-weight:400;
  3009. font-style:normal;
  3010. font-size:14px;
  3011. }
  3012. #u29102 {
  3013. border-width:0px;
  3014. position:absolute;
  3015. left:381px;
  3016. top:176px;
  3017. width:53px;
  3018. height:40px;
  3019. display:flex;
  3020. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3021. font-weight:400;
  3022. font-style:normal;
  3023. font-size:14px;
  3024. }
  3025. #u29102 .text {
  3026. position:absolute;
  3027. align-self:center;
  3028. padding:5px 10px 5px 0px;
  3029. box-sizing:border-box;
  3030. width:100%;
  3031. }
  3032. #u29102_text {
  3033. border-width:0px;
  3034. white-space:nowrap;
  3035. text-transform:none;
  3036. }
  3037. #u29103 {
  3038. border-width:0px;
  3039. position:absolute;
  3040. left:0px;
  3041. top:0px;
  3042. width:0px;
  3043. height:0px;
  3044. }
  3045. #u29104 {
  3046. border-width:0px;
  3047. position:absolute;
  3048. left:0px;
  3049. top:0px;
  3050. width:0px;
  3051. height:0px;
  3052. }
  3053. #u29105_div {
  3054. border-width:0px;
  3055. position:absolute;
  3056. left:0px;
  3057. top:0px;
  3058. width:380px;
  3059. height:164px;
  3060. background:inherit;
  3061. background-color:rgba(255, 255, 255, 1);
  3062. box-sizing:border-box;
  3063. border-width:1px;
  3064. border-style:solid;
  3065. border-color:rgba(204, 204, 204, 1);
  3066. border-radius:4px;
  3067. -moz-box-shadow:0px 4px 12px rgba(0, 0, 0, 0.447058823529412);
  3068. -webkit-box-shadow:0px 4px 12px rgba(0, 0, 0, 0.447058823529412);
  3069. box-shadow:0px 4px 12px rgba(0, 0, 0, 0.447058823529412);
  3070. font-family:'Microsoft YaHei', sans-serif;
  3071. font-weight:400;
  3072. font-style:normal;
  3073. }
  3074. #u29105 {
  3075. border-width:0px;
  3076. position:absolute;
  3077. left:829px;
  3078. top:387px;
  3079. width:380px;
  3080. height:164px;
  3081. display:flex;
  3082. font-family:'Microsoft YaHei', sans-serif;
  3083. font-weight:400;
  3084. font-style:normal;
  3085. }
  3086. #u29105 .text {
  3087. position:absolute;
  3088. align-self:center;
  3089. padding:2px 2px 2px 2px;
  3090. box-sizing:border-box;
  3091. width:100%;
  3092. }
  3093. #u29105_text {
  3094. border-width:0px;
  3095. word-wrap:break-word;
  3096. text-transform:none;
  3097. visibility:hidden;
  3098. }
  3099. #u29106_div {
  3100. border-width:0px;
  3101. position:absolute;
  3102. left:0px;
  3103. top:0px;
  3104. width:299px;
  3105. height:44px;
  3106. background:inherit;
  3107. background-color:rgba(255, 255, 255, 0);
  3108. border:none;
  3109. border-radius:0px;
  3110. -moz-box-shadow:none;
  3111. -webkit-box-shadow:none;
  3112. box-shadow:none;
  3113. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3114. font-weight:400;
  3115. font-style:normal;
  3116. font-size:14px;
  3117. color:#666666;
  3118. line-height:22px;
  3119. }
  3120. #u29106 {
  3121. border-width:0px;
  3122. position:absolute;
  3123. left:889px;
  3124. top:442px;
  3125. width:299px;
  3126. height:44px;
  3127. display:flex;
  3128. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3129. font-weight:400;
  3130. font-style:normal;
  3131. font-size:14px;
  3132. color:#666666;
  3133. line-height:22px;
  3134. }
  3135. #u29106 .text {
  3136. position:absolute;
  3137. align-self:flex-start;
  3138. padding:0px 0px 0px 0px;
  3139. box-sizing:border-box;
  3140. width:100%;
  3141. }
  3142. #u29106_text {
  3143. border-width:0px;
  3144. word-wrap:break-word;
  3145. text-transform:none;
  3146. }
  3147. #u29107_div {
  3148. border-width:0px;
  3149. position:absolute;
  3150. left:0px;
  3151. top:0px;
  3152. width:127px;
  3153. height:21px;
  3154. background:inherit;
  3155. background-color:rgba(255, 255, 255, 0);
  3156. border:none;
  3157. border-radius:0px;
  3158. -moz-box-shadow:none;
  3159. -webkit-box-shadow:none;
  3160. box-shadow:none;
  3161. font-family:'PingFangSC-Semibold', 'PingFang SC Semibold', 'PingFang SC', sans-serif;
  3162. font-weight:650;
  3163. font-style:normal;
  3164. font-size:18px;
  3165. color:#000000;
  3166. line-height:22px;
  3167. }
  3168. #u29107 {
  3169. border-width:0px;
  3170. position:absolute;
  3171. left:889px;
  3172. top:412px;
  3173. width:127px;
  3174. height:21px;
  3175. display:flex;
  3176. font-family:'PingFangSC-Semibold', 'PingFang SC Semibold', 'PingFang SC', sans-serif;
  3177. font-weight:650;
  3178. font-style:normal;
  3179. font-size:18px;
  3180. color:#000000;
  3181. line-height:22px;
  3182. }
  3183. #u29107 .text {
  3184. position:absolute;
  3185. align-self:flex-start;
  3186. padding:0px 0px 0px 0px;
  3187. box-sizing:border-box;
  3188. width:100%;
  3189. }
  3190. #u29107_text {
  3191. border-width:0px;
  3192. white-space:nowrap;
  3193. text-transform:none;
  3194. }
  3195. #u29108_div {
  3196. border-width:0px;
  3197. position:absolute;
  3198. left:0px;
  3199. top:0px;
  3200. width:61px;
  3201. height:30px;
  3202. background:inherit;
  3203. background-color:rgba(24, 144, 255, 1);
  3204. border:none;
  3205. border-radius:4px;
  3206. -moz-box-shadow:none;
  3207. -webkit-box-shadow:none;
  3208. box-shadow:none;
  3209. font-family:'Microsoft YaHei', sans-serif;
  3210. font-weight:400;
  3211. font-style:normal;
  3212. font-size:14px;
  3213. color:#FFFFFF;
  3214. }
  3215. #u29108 {
  3216. border-width:0px;
  3217. position:absolute;
  3218. left:1131px;
  3219. top:502px;
  3220. width:61px;
  3221. height:30px;
  3222. display:flex;
  3223. font-family:'Microsoft YaHei', sans-serif;
  3224. font-weight:400;
  3225. font-style:normal;
  3226. font-size:14px;
  3227. color:#FFFFFF;
  3228. }
  3229. #u29108 .text {
  3230. position:absolute;
  3231. align-self:center;
  3232. padding:2px 16px 2px 16px;
  3233. box-sizing:border-box;
  3234. width:100%;
  3235. }
  3236. #u29108_text {
  3237. border-width:0px;
  3238. white-space:nowrap;
  3239. text-transform:none;
  3240. }
  3241. #u29109_div {
  3242. border-width:0px;
  3243. position:absolute;
  3244. left:0px;
  3245. top:0px;
  3246. width:66px;
  3247. height:30px;
  3248. background:inherit;
  3249. background-color:rgba(255, 255, 255, 1);
  3250. box-sizing:border-box;
  3251. border-width:1px;
  3252. border-style:solid;
  3253. border-color:rgba(217, 217, 217, 1);
  3254. border-radius:4px;
  3255. -moz-box-shadow:none;
  3256. -webkit-box-shadow:none;
  3257. box-shadow:none;
  3258. font-family:'Microsoft YaHei', sans-serif;
  3259. font-weight:400;
  3260. font-style:normal;
  3261. font-size:14px;
  3262. color:rgba(0, 0, 0, 0.647058823529412);
  3263. line-height:21px;
  3264. }
  3265. #u29109 {
  3266. border-width:0px;
  3267. position:absolute;
  3268. left:1049px;
  3269. top:502px;
  3270. width:66px;
  3271. height:30px;
  3272. display:flex;
  3273. font-family:'Microsoft YaHei', sans-serif;
  3274. font-weight:400;
  3275. font-style:normal;
  3276. font-size:14px;
  3277. color:rgba(0, 0, 0, 0.647058823529412);
  3278. line-height:21px;
  3279. }
  3280. #u29109 .text {
  3281. position:absolute;
  3282. align-self:center;
  3283. padding:2px 16px 2px 16px;
  3284. box-sizing:border-box;
  3285. width:100%;
  3286. }
  3287. #u29109_text {
  3288. border-width:0px;
  3289. white-space:nowrap;
  3290. text-transform:none;
  3291. }
  3292. #u29110_img {
  3293. border-width:0px;
  3294. position:absolute;
  3295. left:0px;
  3296. top:0px;
  3297. width:20px;
  3298. height:20px;
  3299. }
  3300. #u29110 {
  3301. border-width:0px;
  3302. position:absolute;
  3303. left:858px;
  3304. top:416px;
  3305. width:20px;
  3306. height:20px;
  3307. display:flex;
  3308. }
  3309. #u29110 .text {
  3310. position:absolute;
  3311. align-self:center;
  3312. padding:2px 2px 2px 2px;
  3313. box-sizing:border-box;
  3314. width:100%;
  3315. }
  3316. #u29110_text {
  3317. border-width:0px;
  3318. word-wrap:break-word;
  3319. text-transform:none;
  3320. visibility:hidden;
  3321. }