styles.css 59 KB

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