styles.css 61 KB

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