styles.css 84 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080
  1. body {
  2. margin:0px;
  3. background-image:none;
  4. position:relative;
  5. left:-141px;
  6. width:1740px;
  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. #u819_div {
  20. border-width:0px;
  21. position:absolute;
  22. left:0px;
  23. top:0px;
  24. width:640px;
  25. height:1053px;
  26. background:inherit;
  27. background-color:rgba(255, 255, 255, 1);
  28. box-sizing:border-box;
  29. border-width:1px;
  30. border-style:solid;
  31. border-color:rgba(121, 121, 121, 1);
  32. border-radius:0px;
  33. -moz-box-shadow:none;
  34. -webkit-box-shadow:none;
  35. box-shadow:none;
  36. }
  37. #u819 {
  38. border-width:0px;
  39. position:absolute;
  40. left:141px;
  41. top:494px;
  42. width:640px;
  43. height:1053px;
  44. display:flex;
  45. }
  46. #u819 .text {
  47. position:absolute;
  48. align-self:center;
  49. padding:2px 2px 2px 2px;
  50. box-sizing:border-box;
  51. width:100%;
  52. }
  53. #u819_text {
  54. border-width:0px;
  55. word-wrap:break-word;
  56. text-transform:none;
  57. visibility:hidden;
  58. }
  59. #u820_div {
  60. border-width:0px;
  61. position:absolute;
  62. left:0px;
  63. top:0px;
  64. width:100px;
  65. height:60px;
  66. background:-webkit-linear-gradient(270deg, rgba(255, 255, 255, 1) 0%, rgba(242, 242, 242, 1) 0%, rgba(228, 228, 228, 1) 100%, rgba(255, 255, 255, 1) 100%);
  67. background:-moz-linear-gradient(180deg, rgba(255, 255, 255, 1) 0%, rgba(242, 242, 242, 1) 0%, rgba(228, 228, 228, 1) 100%, rgba(255, 255, 255, 1) 100%);
  68. background:linear-gradient(180deg, rgba(255, 255, 255, 1) 0%, rgba(242, 242, 242, 1) 0%, rgba(228, 228, 228, 1) 100%, rgba(255, 255, 255, 1) 100%);
  69. box-sizing:border-box;
  70. border-width:1px;
  71. border-style:solid;
  72. border-color:rgba(121, 121, 121, 1);
  73. border-radius:10px;
  74. -moz-box-shadow:none;
  75. -webkit-box-shadow:none;
  76. box-shadow:none;
  77. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  78. font-weight:400;
  79. font-style:normal;
  80. }
  81. #u820 {
  82. border-width:0px;
  83. position:absolute;
  84. left:199px;
  85. top:577px;
  86. width:100px;
  87. height:60px;
  88. display:flex;
  89. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  90. font-weight:400;
  91. font-style:normal;
  92. }
  93. #u820 .text {
  94. position:absolute;
  95. align-self:center;
  96. padding:2px 2px 2px 2px;
  97. box-sizing:border-box;
  98. width:100%;
  99. }
  100. #u820_text {
  101. border-width:0px;
  102. word-wrap:break-word;
  103. text-transform:none;
  104. }
  105. #u821_img {
  106. border-width:0px;
  107. position:absolute;
  108. left:0px;
  109. top:0px;
  110. width:100px;
  111. height:60px;
  112. }
  113. #u821 {
  114. border-width:0px;
  115. position:absolute;
  116. left:199px;
  117. top:756px;
  118. width:100px;
  119. height:60px;
  120. display:flex;
  121. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  122. font-weight:400;
  123. font-style:normal;
  124. }
  125. #u821 .text {
  126. position:absolute;
  127. align-self:center;
  128. padding:2px 2px 2px 2px;
  129. box-sizing:border-box;
  130. width:100%;
  131. }
  132. #u821_text {
  133. border-width:0px;
  134. word-wrap:break-word;
  135. text-transform:none;
  136. }
  137. #u822_div {
  138. border-width:0px;
  139. position:absolute;
  140. left:0px;
  141. top:0px;
  142. width:157px;
  143. height:60px;
  144. background:-webkit-linear-gradient(270deg, rgba(255, 255, 255, 1) 0%, rgba(242, 242, 242, 1) 0%, rgba(228, 228, 228, 1) 100%, rgba(255, 255, 255, 1) 100%);
  145. background:-moz-linear-gradient(180deg, rgba(255, 255, 255, 1) 0%, rgba(242, 242, 242, 1) 0%, rgba(228, 228, 228, 1) 100%, rgba(255, 255, 255, 1) 100%);
  146. background:linear-gradient(180deg, rgba(255, 255, 255, 1) 0%, rgba(242, 242, 242, 1) 0%, rgba(228, 228, 228, 1) 100%, rgba(255, 255, 255, 1) 100%);
  147. box-sizing:border-box;
  148. border-width:1px;
  149. border-style:solid;
  150. border-color:rgba(121, 121, 121, 1);
  151. border-radius:0px;
  152. -moz-box-shadow:none;
  153. -webkit-box-shadow:none;
  154. box-shadow:none;
  155. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  156. font-weight:400;
  157. font-style:normal;
  158. }
  159. #u822 {
  160. border-width:0px;
  161. position:absolute;
  162. left:170px;
  163. top:661px;
  164. width:157px;
  165. height:60px;
  166. display:flex;
  167. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  168. font-weight:400;
  169. font-style:normal;
  170. }
  171. #u822 .text {
  172. position:absolute;
  173. align-self:center;
  174. padding:2px 2px 2px 2px;
  175. box-sizing:border-box;
  176. width:100%;
  177. }
  178. #u822_text {
  179. border-width:0px;
  180. word-wrap:break-word;
  181. text-transform:none;
  182. }
  183. #u823_div {
  184. border-width:0px;
  185. position:absolute;
  186. left:0px;
  187. top:0px;
  188. width:157px;
  189. height:60px;
  190. background:-webkit-linear-gradient(270deg, rgba(255, 255, 255, 1) 0%, rgba(242, 242, 242, 1) 0%, rgba(228, 228, 228, 1) 100%, rgba(255, 255, 255, 1) 100%);
  191. background:-moz-linear-gradient(180deg, rgba(255, 255, 255, 1) 0%, rgba(242, 242, 242, 1) 0%, rgba(228, 228, 228, 1) 100%, rgba(255, 255, 255, 1) 100%);
  192. background:linear-gradient(180deg, rgba(255, 255, 255, 1) 0%, rgba(242, 242, 242, 1) 0%, rgba(228, 228, 228, 1) 100%, rgba(255, 255, 255, 1) 100%);
  193. box-sizing:border-box;
  194. border-width:1px;
  195. border-style:solid;
  196. border-color:rgba(121, 121, 121, 1);
  197. border-radius:0px;
  198. -moz-box-shadow:none;
  199. -webkit-box-shadow:none;
  200. box-shadow:none;
  201. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  202. font-weight:400;
  203. font-style:normal;
  204. }
  205. #u823 {
  206. border-width:0px;
  207. position:absolute;
  208. left:379px;
  209. top:756px;
  210. width:157px;
  211. height:60px;
  212. display:flex;
  213. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  214. font-weight:400;
  215. font-style:normal;
  216. }
  217. #u823 .text {
  218. position:absolute;
  219. align-self:center;
  220. padding:2px 2px 2px 2px;
  221. box-sizing:border-box;
  222. width:100%;
  223. }
  224. #u823_text {
  225. border-width:0px;
  226. word-wrap:break-word;
  227. text-transform:none;
  228. }
  229. #u824_div {
  230. border-width:0px;
  231. position:absolute;
  232. left:0px;
  233. top:0px;
  234. width:157px;
  235. height:60px;
  236. background:-webkit-linear-gradient(270deg, rgba(255, 255, 255, 1) 0%, rgba(242, 242, 242, 1) 0%, rgba(228, 228, 228, 1) 100%, rgba(255, 255, 255, 1) 100%);
  237. background:-moz-linear-gradient(180deg, rgba(255, 255, 255, 1) 0%, rgba(242, 242, 242, 1) 0%, rgba(228, 228, 228, 1) 100%, rgba(255, 255, 255, 1) 100%);
  238. background:linear-gradient(180deg, rgba(255, 255, 255, 1) 0%, rgba(242, 242, 242, 1) 0%, rgba(228, 228, 228, 1) 100%, rgba(255, 255, 255, 1) 100%);
  239. box-sizing:border-box;
  240. border-width:1px;
  241. border-style:solid;
  242. border-color:rgba(121, 121, 121, 1);
  243. border-radius:0px;
  244. -moz-box-shadow:none;
  245. -webkit-box-shadow:none;
  246. box-shadow:none;
  247. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  248. font-weight:400;
  249. font-style:normal;
  250. }
  251. #u824 {
  252. border-width:0px;
  253. position:absolute;
  254. left:170px;
  255. top:856px;
  256. width:157px;
  257. height:60px;
  258. display:flex;
  259. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  260. font-weight:400;
  261. font-style:normal;
  262. }
  263. #u824 .text {
  264. position:absolute;
  265. align-self:center;
  266. padding:2px 2px 2px 2px;
  267. box-sizing:border-box;
  268. width:100%;
  269. }
  270. #u824_text {
  271. border-width:0px;
  272. word-wrap:break-word;
  273. text-transform:none;
  274. }
  275. #u825 {
  276. border-width:0px;
  277. position:absolute;
  278. left:249px;
  279. top:721px;
  280. width:0px;
  281. height:0px;
  282. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  283. font-weight:400;
  284. font-style:normal;
  285. font-size:28px;
  286. color:#333333;
  287. }
  288. #u825_seg0 {
  289. border-width:0px;
  290. position:absolute;
  291. left:-5px;
  292. top:0px;
  293. width:10px;
  294. height:40px;
  295. }
  296. #u825_seg1 {
  297. border-width:0px;
  298. position:absolute;
  299. left:-10px;
  300. top:23px;
  301. width:20px;
  302. height:20px;
  303. }
  304. #u825_text {
  305. border-width:0px;
  306. position:absolute;
  307. left:-50px;
  308. top:10px;
  309. width:100px;
  310. word-wrap:break-word;
  311. text-transform:none;
  312. visibility:hidden;
  313. }
  314. #u826 {
  315. border-width:0px;
  316. position:absolute;
  317. left:249px;
  318. top:637px;
  319. width:0px;
  320. height:0px;
  321. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  322. font-weight:400;
  323. font-style:normal;
  324. font-size:28px;
  325. color:#333333;
  326. }
  327. #u826_seg0 {
  328. border-width:0px;
  329. position:absolute;
  330. left:-5px;
  331. top:0px;
  332. width:10px;
  333. height:29px;
  334. }
  335. #u826_seg1 {
  336. border-width:0px;
  337. position:absolute;
  338. left:-10px;
  339. top:12px;
  340. width:20px;
  341. height:20px;
  342. }
  343. #u826_text {
  344. border-width:0px;
  345. position:absolute;
  346. left:-50px;
  347. top:4px;
  348. width:100px;
  349. word-wrap:break-word;
  350. text-transform:none;
  351. visibility:hidden;
  352. }
  353. #u827 {
  354. border-width:0px;
  355. position:absolute;
  356. left:299px;
  357. top:786px;
  358. width:0px;
  359. height:0px;
  360. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  361. font-weight:400;
  362. font-style:normal;
  363. font-size:12px;
  364. color:#333333;
  365. }
  366. #u827_seg0 {
  367. border-width:0px;
  368. position:absolute;
  369. left:0px;
  370. top:-5px;
  371. width:86px;
  372. height:10px;
  373. }
  374. #u827_seg1 {
  375. border-width:0px;
  376. position:absolute;
  377. left:69px;
  378. top:-10px;
  379. width:20px;
  380. height:20px;
  381. }
  382. #u827_text {
  383. border-width:0px;
  384. position:absolute;
  385. left:-10px;
  386. top:-8px;
  387. width:100px;
  388. word-wrap:break-word;
  389. text-transform:none;
  390. }
  391. #u828 {
  392. border-width:0px;
  393. position:absolute;
  394. left:249px;
  395. top:816px;
  396. width:0px;
  397. height:0px;
  398. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  399. font-weight:400;
  400. font-style:normal;
  401. font-size:12px;
  402. color:#333333;
  403. }
  404. #u828_seg0 {
  405. border-width:0px;
  406. position:absolute;
  407. left:-5px;
  408. top:0px;
  409. width:10px;
  410. height:45px;
  411. }
  412. #u828_seg1 {
  413. border-width:0px;
  414. position:absolute;
  415. left:-10px;
  416. top:28px;
  417. width:20px;
  418. height:20px;
  419. }
  420. #u828_text {
  421. border-width:0px;
  422. position:absolute;
  423. left:-50px;
  424. top:12px;
  425. width:100px;
  426. word-wrap:break-word;
  427. text-transform:none;
  428. }
  429. #u829_img {
  430. border-width:0px;
  431. position:absolute;
  432. left:0px;
  433. top:0px;
  434. width:100px;
  435. height:60px;
  436. }
  437. #u829 {
  438. border-width:0px;
  439. position:absolute;
  440. left:408px;
  441. top:955px;
  442. width:100px;
  443. height:60px;
  444. display:flex;
  445. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  446. font-weight:400;
  447. font-style:normal;
  448. }
  449. #u829 .text {
  450. position:absolute;
  451. align-self:center;
  452. padding:2px 2px 2px 2px;
  453. box-sizing:border-box;
  454. width:100%;
  455. }
  456. #u829_text {
  457. border-width:0px;
  458. word-wrap:break-word;
  459. text-transform:none;
  460. }
  461. #u830 {
  462. border-width:0px;
  463. position:absolute;
  464. left:249px;
  465. top:918px;
  466. width:0px;
  467. height:0px;
  468. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  469. font-weight:400;
  470. font-style:normal;
  471. font-size:28px;
  472. color:#333333;
  473. }
  474. #u830_seg0 {
  475. border-width:0px;
  476. position:absolute;
  477. left:-5px;
  478. top:0px;
  479. width:10px;
  480. height:27px;
  481. }
  482. #u830_seg1 {
  483. border-width:0px;
  484. position:absolute;
  485. left:-5px;
  486. top:17px;
  487. width:219px;
  488. height:10px;
  489. }
  490. #u830_seg2 {
  491. border-width:0px;
  492. position:absolute;
  493. left:204px;
  494. top:17px;
  495. width:10px;
  496. height:20px;
  497. }
  498. #u830_seg3 {
  499. border-width:0px;
  500. position:absolute;
  501. left:199px;
  502. top:25px;
  503. width:20px;
  504. height:20px;
  505. }
  506. #u830_text {
  507. border-width:0px;
  508. position:absolute;
  509. left:51px;
  510. top:14px;
  511. width:100px;
  512. word-wrap:break-word;
  513. text-transform:none;
  514. visibility:hidden;
  515. }
  516. #u831 {
  517. border-width:0px;
  518. position:absolute;
  519. left:458px;
  520. top:816px;
  521. width:0px;
  522. height:0px;
  523. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  524. font-weight:400;
  525. font-style:normal;
  526. font-size:28px;
  527. color:#333333;
  528. }
  529. #u831_seg0 {
  530. border-width:0px;
  531. position:absolute;
  532. left:-5px;
  533. top:0px;
  534. width:10px;
  535. height:144px;
  536. }
  537. #u831_seg1 {
  538. border-width:0px;
  539. position:absolute;
  540. left:-10px;
  541. top:127px;
  542. width:20px;
  543. height:20px;
  544. }
  545. #u831_text {
  546. border-width:0px;
  547. position:absolute;
  548. left:-50px;
  549. top:62px;
  550. width:100px;
  551. word-wrap:break-word;
  552. text-transform:none;
  553. visibility:hidden;
  554. }
  555. #u832 {
  556. border-width:0px;
  557. position:absolute;
  558. left:459px;
  559. top:1015px;
  560. width:0px;
  561. height:0px;
  562. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  563. font-weight:400;
  564. font-style:normal;
  565. font-size:12px;
  566. color:#333333;
  567. }
  568. #u832_seg0 {
  569. border-width:0px;
  570. position:absolute;
  571. left:-5px;
  572. top:0px;
  573. width:10px;
  574. height:61px;
  575. }
  576. #u832_seg1 {
  577. border-width:0px;
  578. position:absolute;
  579. left:-10px;
  580. top:44px;
  581. width:20px;
  582. height:20px;
  583. }
  584. #u832_text {
  585. border-width:0px;
  586. position:absolute;
  587. left:-50px;
  588. top:20px;
  589. width:100px;
  590. word-wrap:break-word;
  591. text-transform:none;
  592. }
  593. #u833_div {
  594. border-width:0px;
  595. position:absolute;
  596. left:0px;
  597. top:0px;
  598. width:157px;
  599. height:60px;
  600. background:-webkit-linear-gradient(270deg, rgba(255, 255, 255, 1) 0%, rgba(242, 242, 242, 1) 0%, rgba(228, 228, 228, 1) 100%, rgba(255, 255, 255, 1) 100%);
  601. background:-moz-linear-gradient(180deg, rgba(255, 255, 255, 1) 0%, rgba(242, 242, 242, 1) 0%, rgba(228, 228, 228, 1) 100%, rgba(255, 255, 255, 1) 100%);
  602. background:linear-gradient(180deg, rgba(255, 255, 255, 1) 0%, rgba(242, 242, 242, 1) 0%, rgba(228, 228, 228, 1) 100%, rgba(255, 255, 255, 1) 100%);
  603. box-sizing:border-box;
  604. border-width:1px;
  605. border-style:solid;
  606. border-color:rgba(121, 121, 121, 1);
  607. border-radius:0px;
  608. -moz-box-shadow:none;
  609. -webkit-box-shadow:none;
  610. box-shadow:none;
  611. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  612. font-weight:400;
  613. font-style:normal;
  614. }
  615. #u833 {
  616. border-width:0px;
  617. position:absolute;
  618. left:594px;
  619. top:955px;
  620. width:157px;
  621. height:60px;
  622. display:flex;
  623. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  624. font-weight:400;
  625. font-style:normal;
  626. }
  627. #u833 .text {
  628. position:absolute;
  629. align-self:center;
  630. padding:2px 2px 2px 2px;
  631. box-sizing:border-box;
  632. width:100%;
  633. }
  634. #u833_text {
  635. border-width:0px;
  636. word-wrap:break-word;
  637. text-transform:none;
  638. }
  639. #u834 {
  640. border-width:0px;
  641. position:absolute;
  642. left:508px;
  643. top:985px;
  644. width:0px;
  645. height:0px;
  646. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  647. font-weight:400;
  648. font-style:normal;
  649. font-size:12px;
  650. color:#333333;
  651. }
  652. #u834_seg0 {
  653. border-width:0px;
  654. position:absolute;
  655. left:0px;
  656. top:-5px;
  657. width:91px;
  658. height:10px;
  659. }
  660. #u834_seg1 {
  661. border-width:0px;
  662. position:absolute;
  663. left:74px;
  664. top:-10px;
  665. width:20px;
  666. height:20px;
  667. }
  668. #u834_text {
  669. border-width:0px;
  670. position:absolute;
  671. left:-7px;
  672. top:-8px;
  673. width:100px;
  674. word-wrap:break-word;
  675. text-transform:none;
  676. }
  677. #u835_div {
  678. border-width:0px;
  679. position:absolute;
  680. left:0px;
  681. top:0px;
  682. width:157px;
  683. height:60px;
  684. background:-webkit-linear-gradient(270deg, rgba(255, 255, 255, 1) 0%, rgba(242, 242, 242, 1) 0%, rgba(228, 228, 228, 1) 100%, rgba(255, 255, 255, 1) 100%);
  685. background:-moz-linear-gradient(180deg, rgba(255, 255, 255, 1) 0%, rgba(242, 242, 242, 1) 0%, rgba(228, 228, 228, 1) 100%, rgba(255, 255, 255, 1) 100%);
  686. background:linear-gradient(180deg, rgba(255, 255, 255, 1) 0%, rgba(242, 242, 242, 1) 0%, rgba(228, 228, 228, 1) 100%, rgba(255, 255, 255, 1) 100%);
  687. box-sizing:border-box;
  688. border-width:1px;
  689. border-style:solid;
  690. border-color:rgba(121, 121, 121, 1);
  691. border-radius:0px;
  692. -moz-box-shadow:none;
  693. -webkit-box-shadow:none;
  694. box-shadow:none;
  695. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  696. font-weight:400;
  697. font-style:normal;
  698. }
  699. #u835 {
  700. border-width:0px;
  701. position:absolute;
  702. left:379px;
  703. top:1071px;
  704. width:157px;
  705. height:60px;
  706. display:flex;
  707. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  708. font-weight:400;
  709. font-style:normal;
  710. }
  711. #u835 .text {
  712. position:absolute;
  713. align-self:center;
  714. padding:2px 2px 2px 2px;
  715. box-sizing:border-box;
  716. width:100%;
  717. }
  718. #u835_text {
  719. border-width:0px;
  720. word-wrap:break-word;
  721. text-transform:none;
  722. }
  723. #u836 {
  724. border-width:0px;
  725. position:absolute;
  726. left:673px;
  727. top:1015px;
  728. width:0px;
  729. height:0px;
  730. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  731. font-weight:400;
  732. font-style:normal;
  733. font-size:28px;
  734. color:#333333;
  735. }
  736. #u836_seg0 {
  737. border-width:0px;
  738. position:absolute;
  739. left:-5px;
  740. top:0px;
  741. width:10px;
  742. height:93px;
  743. }
  744. #u836_seg1 {
  745. border-width:0px;
  746. position:absolute;
  747. left:-136px;
  748. top:83px;
  749. width:141px;
  750. height:10px;
  751. }
  752. #u836_seg2 {
  753. border-width:0px;
  754. position:absolute;
  755. left:-144px;
  756. top:78px;
  757. width:20px;
  758. height:20px;
  759. }
  760. #u836_text {
  761. border-width:0px;
  762. position:absolute;
  763. left:-74px;
  764. top:80px;
  765. width:100px;
  766. word-wrap:break-word;
  767. text-transform:none;
  768. visibility:hidden;
  769. }
  770. #u837_div {
  771. border-width:0px;
  772. position:absolute;
  773. left:0px;
  774. top:0px;
  775. width:100px;
  776. height:60px;
  777. background:-webkit-linear-gradient(270deg, rgba(255, 255, 255, 1) 0%, rgba(242, 242, 242, 1) 0%, rgba(228, 228, 228, 1) 100%, rgba(255, 255, 255, 1) 100%);
  778. background:-moz-linear-gradient(180deg, rgba(255, 255, 255, 1) 0%, rgba(242, 242, 242, 1) 0%, rgba(228, 228, 228, 1) 100%, rgba(255, 255, 255, 1) 100%);
  779. background:linear-gradient(180deg, rgba(255, 255, 255, 1) 0%, rgba(242, 242, 242, 1) 0%, rgba(228, 228, 228, 1) 100%, rgba(255, 255, 255, 1) 100%);
  780. box-sizing:border-box;
  781. border-width:1px;
  782. border-style:solid;
  783. border-color:rgba(121, 121, 121, 1);
  784. border-radius:10px;
  785. -moz-box-shadow:none;
  786. -webkit-box-shadow:none;
  787. box-shadow:none;
  788. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  789. font-weight:400;
  790. font-style:normal;
  791. }
  792. #u837 {
  793. border-width:0px;
  794. position:absolute;
  795. left:408px;
  796. top:1165px;
  797. width:100px;
  798. height:60px;
  799. display:flex;
  800. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  801. font-weight:400;
  802. font-style:normal;
  803. }
  804. #u837 .text {
  805. position:absolute;
  806. align-self:center;
  807. padding:2px 2px 2px 2px;
  808. box-sizing:border-box;
  809. width:100%;
  810. }
  811. #u837_text {
  812. border-width:0px;
  813. word-wrap:break-word;
  814. text-transform:none;
  815. }
  816. #u838 {
  817. border-width:0px;
  818. position:absolute;
  819. left:459px;
  820. top:1131px;
  821. width:0px;
  822. height:0px;
  823. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  824. font-weight:400;
  825. font-style:normal;
  826. font-size:28px;
  827. color:#333333;
  828. }
  829. #u838_seg0 {
  830. border-width:0px;
  831. position:absolute;
  832. left:-5px;
  833. top:0px;
  834. width:10px;
  835. height:39px;
  836. }
  837. #u838_seg1 {
  838. border-width:0px;
  839. position:absolute;
  840. left:-10px;
  841. top:22px;
  842. width:20px;
  843. height:20px;
  844. }
  845. #u838_text {
  846. border-width:0px;
  847. position:absolute;
  848. left:-50px;
  849. top:9px;
  850. width:100px;
  851. word-wrap:break-word;
  852. text-transform:none;
  853. visibility:hidden;
  854. }
  855. #u839_div {
  856. border-width:0px;
  857. position:absolute;
  858. left:0px;
  859. top:0px;
  860. width:73px;
  861. height:40px;
  862. background:inherit;
  863. background-color:rgba(255, 255, 255, 0);
  864. border:none;
  865. border-radius:0px;
  866. -moz-box-shadow:none;
  867. -webkit-box-shadow:none;
  868. box-shadow:none;
  869. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  870. font-weight:500;
  871. font-style:normal;
  872. font-size:18px;
  873. line-height:40px;
  874. }
  875. #u839 {
  876. border-width:0px;
  877. position:absolute;
  878. left:170px;
  879. top:515px;
  880. width:73px;
  881. height:40px;
  882. display:flex;
  883. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  884. font-weight:500;
  885. font-style:normal;
  886. font-size:18px;
  887. line-height:40px;
  888. }
  889. #u839 .text {
  890. position:absolute;
  891. align-self:flex-start;
  892. padding:0px 0px 0px 0px;
  893. box-sizing:border-box;
  894. width:100%;
  895. }
  896. #u839_text {
  897. border-width:0px;
  898. white-space:nowrap;
  899. text-transform:none;
  900. }
  901. #u840 {
  902. border-width:0px;
  903. position:absolute;
  904. left:0px;
  905. top:0px;
  906. width:0px;
  907. height:0px;
  908. }
  909. #u841_div {
  910. border-width:0px;
  911. position:absolute;
  912. left:0px;
  913. top:0px;
  914. width:1740px;
  915. height:416px;
  916. background:inherit;
  917. background-color:rgba(255, 255, 255, 1);
  918. box-sizing:border-box;
  919. border-width:1px;
  920. border-style:solid;
  921. border-color:rgba(121, 121, 121, 1);
  922. border-radius:0px;
  923. -moz-box-shadow:none;
  924. -webkit-box-shadow:none;
  925. box-shadow:none;
  926. }
  927. #u841 {
  928. border-width:0px;
  929. position:absolute;
  930. left:141px;
  931. top:78px;
  932. width:1740px;
  933. height:416px;
  934. display:flex;
  935. }
  936. #u841 .text {
  937. position:absolute;
  938. align-self:center;
  939. padding:2px 2px 2px 2px;
  940. box-sizing:border-box;
  941. width:100%;
  942. }
  943. #u841_text {
  944. border-width:0px;
  945. word-wrap:break-word;
  946. text-transform:none;
  947. visibility:hidden;
  948. }
  949. #u842 {
  950. border-width:0px;
  951. position:absolute;
  952. left:0px;
  953. top:0px;
  954. width:0px;
  955. height:0px;
  956. }
  957. #u843_div {
  958. border-width:0px;
  959. position:absolute;
  960. left:0px;
  961. top:0px;
  962. width:100px;
  963. height:60px;
  964. background:-webkit-linear-gradient(270deg, rgba(255, 255, 255, 1) 0%, rgba(242, 242, 242, 1) 0%, rgba(228, 228, 228, 1) 100%, rgba(255, 255, 255, 1) 100%);
  965. background:-moz-linear-gradient(180deg, rgba(255, 255, 255, 1) 0%, rgba(242, 242, 242, 1) 0%, rgba(228, 228, 228, 1) 100%, rgba(255, 255, 255, 1) 100%);
  966. background:linear-gradient(180deg, rgba(255, 255, 255, 1) 0%, rgba(242, 242, 242, 1) 0%, rgba(228, 228, 228, 1) 100%, rgba(255, 255, 255, 1) 100%);
  967. box-sizing:border-box;
  968. border-width:1px;
  969. border-style:solid;
  970. border-color:rgba(121, 121, 121, 1);
  971. border-radius:10px;
  972. -moz-box-shadow:none;
  973. -webkit-box-shadow:none;
  974. box-shadow:none;
  975. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  976. font-weight:400;
  977. font-style:normal;
  978. }
  979. #u843 {
  980. border-width:0px;
  981. position:absolute;
  982. left:215px;
  983. top:151px;
  984. width:100px;
  985. height:60px;
  986. display:flex;
  987. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  988. font-weight:400;
  989. font-style:normal;
  990. }
  991. #u843 .text {
  992. position:absolute;
  993. align-self:center;
  994. padding:2px 2px 2px 2px;
  995. box-sizing:border-box;
  996. width:100%;
  997. }
  998. #u843_text {
  999. border-width:0px;
  1000. word-wrap:break-word;
  1001. text-transform:none;
  1002. }
  1003. #u844_div {
  1004. border-width:0px;
  1005. position:absolute;
  1006. left:0px;
  1007. top:0px;
  1008. width:140px;
  1009. height:60px;
  1010. background:-webkit-linear-gradient(270deg, rgba(255, 255, 255, 1) 0%, rgba(242, 242, 242, 1) 0%, rgba(228, 228, 228, 1) 100%, rgba(255, 255, 255, 1) 100%);
  1011. background:-moz-linear-gradient(180deg, rgba(255, 255, 255, 1) 0%, rgba(242, 242, 242, 1) 0%, rgba(228, 228, 228, 1) 100%, rgba(255, 255, 255, 1) 100%);
  1012. background:linear-gradient(180deg, rgba(255, 255, 255, 1) 0%, rgba(242, 242, 242, 1) 0%, rgba(228, 228, 228, 1) 100%, rgba(255, 255, 255, 1) 100%);
  1013. box-sizing:border-box;
  1014. border-width:1px;
  1015. border-style:solid;
  1016. border-color:rgba(121, 121, 121, 1);
  1017. border-radius:0px;
  1018. -moz-box-shadow:none;
  1019. -webkit-box-shadow:none;
  1020. box-shadow:none;
  1021. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1022. font-weight:400;
  1023. font-style:normal;
  1024. }
  1025. #u844 {
  1026. border-width:0px;
  1027. position:absolute;
  1028. left:365px;
  1029. top:151px;
  1030. width:140px;
  1031. height:60px;
  1032. display:flex;
  1033. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1034. font-weight:400;
  1035. font-style:normal;
  1036. }
  1037. #u844 .text {
  1038. position:absolute;
  1039. align-self:center;
  1040. padding:2px 2px 2px 2px;
  1041. box-sizing:border-box;
  1042. width:100%;
  1043. }
  1044. #u844_text {
  1045. border-width:0px;
  1046. word-wrap:break-word;
  1047. text-transform:none;
  1048. }
  1049. #u845_div {
  1050. border-width:0px;
  1051. position:absolute;
  1052. left:0px;
  1053. top:0px;
  1054. width:140px;
  1055. height:60px;
  1056. background:-webkit-linear-gradient(270deg, rgba(255, 255, 255, 1) 0%, rgba(242, 242, 242, 1) 0%, rgba(228, 228, 228, 1) 100%, rgba(255, 255, 255, 1) 100%);
  1057. background:-moz-linear-gradient(180deg, rgba(255, 255, 255, 1) 0%, rgba(242, 242, 242, 1) 0%, rgba(228, 228, 228, 1) 100%, rgba(255, 255, 255, 1) 100%);
  1058. background:linear-gradient(180deg, rgba(255, 255, 255, 1) 0%, rgba(242, 242, 242, 1) 0%, rgba(228, 228, 228, 1) 100%, rgba(255, 255, 255, 1) 100%);
  1059. box-sizing:border-box;
  1060. border-width:1px;
  1061. border-style:solid;
  1062. border-color:rgba(121, 121, 121, 1);
  1063. border-radius:0px;
  1064. -moz-box-shadow:none;
  1065. -webkit-box-shadow:none;
  1066. box-shadow:none;
  1067. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1068. font-weight:400;
  1069. font-style:normal;
  1070. }
  1071. #u845 {
  1072. border-width:0px;
  1073. position:absolute;
  1074. left:555px;
  1075. top:151px;
  1076. width:140px;
  1077. height:60px;
  1078. display:flex;
  1079. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1080. font-weight:400;
  1081. font-style:normal;
  1082. }
  1083. #u845 .text {
  1084. position:absolute;
  1085. align-self:center;
  1086. padding:2px 2px 2px 2px;
  1087. box-sizing:border-box;
  1088. width:100%;
  1089. }
  1090. #u845_text {
  1091. border-width:0px;
  1092. word-wrap:break-word;
  1093. text-transform:none;
  1094. }
  1095. #u846_div {
  1096. border-width:0px;
  1097. position:absolute;
  1098. left:0px;
  1099. top:0px;
  1100. width:140px;
  1101. height:60px;
  1102. background:-webkit-linear-gradient(270deg, rgba(255, 255, 255, 1) 0%, rgba(242, 242, 242, 1) 0%, rgba(228, 228, 228, 1) 100%, rgba(255, 255, 255, 1) 100%);
  1103. background:-moz-linear-gradient(180deg, rgba(255, 255, 255, 1) 0%, rgba(242, 242, 242, 1) 0%, rgba(228, 228, 228, 1) 100%, rgba(255, 255, 255, 1) 100%);
  1104. background:linear-gradient(180deg, rgba(255, 255, 255, 1) 0%, rgba(242, 242, 242, 1) 0%, rgba(228, 228, 228, 1) 100%, rgba(255, 255, 255, 1) 100%);
  1105. box-sizing:border-box;
  1106. border-width:1px;
  1107. border-style:solid;
  1108. border-color:rgba(121, 121, 121, 1);
  1109. border-radius:0px;
  1110. -moz-box-shadow:none;
  1111. -webkit-box-shadow:none;
  1112. box-shadow:none;
  1113. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1114. font-weight:400;
  1115. font-style:normal;
  1116. }
  1117. #u846 {
  1118. border-width:0px;
  1119. position:absolute;
  1120. left:555px;
  1121. top:323px;
  1122. width:140px;
  1123. height:60px;
  1124. display:flex;
  1125. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1126. font-weight:400;
  1127. font-style:normal;
  1128. }
  1129. #u846 .text {
  1130. position:absolute;
  1131. align-self:center;
  1132. padding:2px 2px 2px 2px;
  1133. box-sizing:border-box;
  1134. width:100%;
  1135. }
  1136. #u846_text {
  1137. border-width:0px;
  1138. word-wrap:break-word;
  1139. text-transform:none;
  1140. }
  1141. #u847_img {
  1142. border-width:0px;
  1143. position:absolute;
  1144. left:0px;
  1145. top:0px;
  1146. width:100px;
  1147. height:60px;
  1148. }
  1149. #u847 {
  1150. border-width:0px;
  1151. position:absolute;
  1152. left:575px;
  1153. top:229px;
  1154. width:100px;
  1155. height:60px;
  1156. display:flex;
  1157. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1158. font-weight:400;
  1159. font-style:normal;
  1160. }
  1161. #u847 .text {
  1162. position:absolute;
  1163. align-self:center;
  1164. padding:2px 2px 2px 2px;
  1165. box-sizing:border-box;
  1166. width:100%;
  1167. }
  1168. #u847_text {
  1169. border-width:0px;
  1170. word-wrap:break-word;
  1171. text-transform:none;
  1172. }
  1173. #u848_div {
  1174. border-width:0px;
  1175. position:absolute;
  1176. left:0px;
  1177. top:0px;
  1178. width:140px;
  1179. height:60px;
  1180. background:-webkit-linear-gradient(270deg, rgba(255, 255, 255, 1) 0%, rgba(242, 242, 242, 1) 0%, rgba(228, 228, 228, 1) 100%, rgba(255, 255, 255, 1) 100%);
  1181. background:-moz-linear-gradient(180deg, rgba(255, 255, 255, 1) 0%, rgba(242, 242, 242, 1) 0%, rgba(228, 228, 228, 1) 100%, rgba(255, 255, 255, 1) 100%);
  1182. background:linear-gradient(180deg, rgba(255, 255, 255, 1) 0%, rgba(242, 242, 242, 1) 0%, rgba(228, 228, 228, 1) 100%, rgba(255, 255, 255, 1) 100%);
  1183. box-sizing:border-box;
  1184. border-width:1px;
  1185. border-style:solid;
  1186. border-color:rgba(121, 121, 121, 1);
  1187. border-radius:0px;
  1188. -moz-box-shadow:none;
  1189. -webkit-box-shadow:none;
  1190. box-shadow:none;
  1191. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1192. font-weight:400;
  1193. font-style:normal;
  1194. }
  1195. #u848 {
  1196. border-width:0px;
  1197. position:absolute;
  1198. left:725px;
  1199. top:323px;
  1200. width:140px;
  1201. height:60px;
  1202. display:flex;
  1203. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1204. font-weight:400;
  1205. font-style:normal;
  1206. }
  1207. #u848 .text {
  1208. position:absolute;
  1209. align-self:center;
  1210. padding:2px 2px 2px 2px;
  1211. box-sizing:border-box;
  1212. width:100%;
  1213. }
  1214. #u848_text {
  1215. border-width:0px;
  1216. word-wrap:break-word;
  1217. text-transform:none;
  1218. }
  1219. #u849 {
  1220. border-width:0px;
  1221. position:absolute;
  1222. left:625px;
  1223. top:211px;
  1224. width:0px;
  1225. height:0px;
  1226. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1227. font-weight:400;
  1228. font-style:normal;
  1229. font-size:28px;
  1230. color:#333333;
  1231. }
  1232. #u849_seg0 {
  1233. border-width:0px;
  1234. position:absolute;
  1235. left:-5px;
  1236. top:0px;
  1237. width:10px;
  1238. height:23px;
  1239. }
  1240. #u849_seg1 {
  1241. border-width:0px;
  1242. position:absolute;
  1243. left:-10px;
  1244. top:6px;
  1245. width:20px;
  1246. height:20px;
  1247. }
  1248. #u849_text {
  1249. border-width:0px;
  1250. position:absolute;
  1251. left:-50px;
  1252. top:1px;
  1253. width:100px;
  1254. word-wrap:break-word;
  1255. text-transform:none;
  1256. visibility:hidden;
  1257. }
  1258. #u850 {
  1259. border-width:0px;
  1260. position:absolute;
  1261. left:625px;
  1262. top:289px;
  1263. width:0px;
  1264. height:0px;
  1265. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1266. font-weight:400;
  1267. font-style:normal;
  1268. font-size:12px;
  1269. color:#333333;
  1270. }
  1271. #u850_seg0 {
  1272. border-width:0px;
  1273. position:absolute;
  1274. left:-5px;
  1275. top:0px;
  1276. width:10px;
  1277. height:39px;
  1278. }
  1279. #u850_seg1 {
  1280. border-width:0px;
  1281. position:absolute;
  1282. left:-10px;
  1283. top:22px;
  1284. width:20px;
  1285. height:20px;
  1286. }
  1287. #u850_text {
  1288. border-width:0px;
  1289. position:absolute;
  1290. left:-50px;
  1291. top:8px;
  1292. width:100px;
  1293. word-wrap:break-word;
  1294. text-transform:none;
  1295. }
  1296. #u851 {
  1297. border-width:0px;
  1298. position:absolute;
  1299. left:695px;
  1300. top:353px;
  1301. width:0px;
  1302. height:0px;
  1303. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1304. font-weight:400;
  1305. font-style:normal;
  1306. font-size:28px;
  1307. color:#333333;
  1308. }
  1309. #u851_seg0 {
  1310. border-width:0px;
  1311. position:absolute;
  1312. left:0px;
  1313. top:-5px;
  1314. width:35px;
  1315. height:10px;
  1316. }
  1317. #u851_seg1 {
  1318. border-width:0px;
  1319. position:absolute;
  1320. left:18px;
  1321. top:-10px;
  1322. width:20px;
  1323. height:20px;
  1324. }
  1325. #u851_text {
  1326. border-width:0px;
  1327. position:absolute;
  1328. left:-35px;
  1329. top:-8px;
  1330. width:100px;
  1331. word-wrap:break-word;
  1332. text-transform:none;
  1333. visibility:hidden;
  1334. }
  1335. #u852_div {
  1336. border-width:0px;
  1337. position:absolute;
  1338. left:0px;
  1339. top:0px;
  1340. width:140px;
  1341. height:60px;
  1342. background:-webkit-linear-gradient(270deg, rgba(255, 255, 255, 1) 0%, rgba(242, 242, 242, 1) 0%, rgba(228, 228, 228, 1) 100%, rgba(255, 255, 255, 1) 100%);
  1343. background:-moz-linear-gradient(180deg, rgba(255, 255, 255, 1) 0%, rgba(242, 242, 242, 1) 0%, rgba(228, 228, 228, 1) 100%, rgba(255, 255, 255, 1) 100%);
  1344. background:linear-gradient(180deg, rgba(255, 255, 255, 1) 0%, rgba(242, 242, 242, 1) 0%, rgba(228, 228, 228, 1) 100%, rgba(255, 255, 255, 1) 100%);
  1345. box-sizing:border-box;
  1346. border-width:1px;
  1347. border-style:solid;
  1348. border-color:rgba(121, 121, 121, 1);
  1349. border-radius:0px;
  1350. -moz-box-shadow:none;
  1351. -webkit-box-shadow:none;
  1352. box-shadow:none;
  1353. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1354. font-weight:400;
  1355. font-style:normal;
  1356. }
  1357. #u852 {
  1358. border-width:0px;
  1359. position:absolute;
  1360. left:895px;
  1361. top:323px;
  1362. width:140px;
  1363. height:60px;
  1364. display:flex;
  1365. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1366. font-weight:400;
  1367. font-style:normal;
  1368. }
  1369. #u852 .text {
  1370. position:absolute;
  1371. align-self:center;
  1372. padding:2px 2px 2px 2px;
  1373. box-sizing:border-box;
  1374. width:100%;
  1375. }
  1376. #u852_text {
  1377. border-width:0px;
  1378. word-wrap:break-word;
  1379. text-transform:none;
  1380. }
  1381. #u853 {
  1382. border-width:0px;
  1383. position:absolute;
  1384. left:865px;
  1385. top:353px;
  1386. width:0px;
  1387. height:0px;
  1388. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1389. font-weight:400;
  1390. font-style:normal;
  1391. font-size:28px;
  1392. color:#333333;
  1393. }
  1394. #u853_seg0 {
  1395. border-width:0px;
  1396. position:absolute;
  1397. left:0px;
  1398. top:-5px;
  1399. width:35px;
  1400. height:10px;
  1401. }
  1402. #u853_seg1 {
  1403. border-width:0px;
  1404. position:absolute;
  1405. left:18px;
  1406. top:-10px;
  1407. width:20px;
  1408. height:20px;
  1409. }
  1410. #u853_text {
  1411. border-width:0px;
  1412. position:absolute;
  1413. left:-35px;
  1414. top:-8px;
  1415. width:100px;
  1416. word-wrap:break-word;
  1417. text-transform:none;
  1418. visibility:hidden;
  1419. }
  1420. #u854 {
  1421. border-width:0px;
  1422. position:absolute;
  1423. left:315px;
  1424. top:181px;
  1425. width:0px;
  1426. height:0px;
  1427. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1428. font-weight:400;
  1429. font-style:normal;
  1430. font-size:28px;
  1431. color:#333333;
  1432. }
  1433. #u854_seg0 {
  1434. border-width:0px;
  1435. position:absolute;
  1436. left:0px;
  1437. top:-5px;
  1438. width:55px;
  1439. height:10px;
  1440. }
  1441. #u854_seg1 {
  1442. border-width:0px;
  1443. position:absolute;
  1444. left:38px;
  1445. top:-10px;
  1446. width:20px;
  1447. height:20px;
  1448. }
  1449. #u854_text {
  1450. border-width:0px;
  1451. position:absolute;
  1452. left:-25px;
  1453. top:-8px;
  1454. width:100px;
  1455. word-wrap:break-word;
  1456. text-transform:none;
  1457. visibility:hidden;
  1458. }
  1459. #u855 {
  1460. border-width:0px;
  1461. position:absolute;
  1462. left:505px;
  1463. top:181px;
  1464. width:0px;
  1465. height:0px;
  1466. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1467. font-weight:400;
  1468. font-style:normal;
  1469. font-size:28px;
  1470. color:#333333;
  1471. }
  1472. #u855_seg0 {
  1473. border-width:0px;
  1474. position:absolute;
  1475. left:0px;
  1476. top:-5px;
  1477. width:55px;
  1478. height:10px;
  1479. }
  1480. #u855_seg1 {
  1481. border-width:0px;
  1482. position:absolute;
  1483. left:38px;
  1484. top:-10px;
  1485. width:20px;
  1486. height:20px;
  1487. }
  1488. #u855_text {
  1489. border-width:0px;
  1490. position:absolute;
  1491. left:-25px;
  1492. top:-8px;
  1493. width:100px;
  1494. word-wrap:break-word;
  1495. text-transform:none;
  1496. visibility:hidden;
  1497. }
  1498. #u856_img {
  1499. border-width:0px;
  1500. position:absolute;
  1501. left:0px;
  1502. top:0px;
  1503. width:100px;
  1504. height:60px;
  1505. }
  1506. #u856 {
  1507. border-width:0px;
  1508. position:absolute;
  1509. left:1065px;
  1510. top:323px;
  1511. width:100px;
  1512. height:60px;
  1513. display:flex;
  1514. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1515. font-weight:400;
  1516. font-style:normal;
  1517. }
  1518. #u856 .text {
  1519. position:absolute;
  1520. align-self:center;
  1521. padding:2px 2px 2px 2px;
  1522. box-sizing:border-box;
  1523. width:100%;
  1524. }
  1525. #u856_text {
  1526. border-width:0px;
  1527. word-wrap:break-word;
  1528. text-transform:none;
  1529. }
  1530. #u857_div {
  1531. border-width:0px;
  1532. position:absolute;
  1533. left:0px;
  1534. top:0px;
  1535. width:140px;
  1536. height:60px;
  1537. background:-webkit-linear-gradient(270deg, rgba(255, 255, 255, 1) 0%, rgba(242, 242, 242, 1) 0%, rgba(228, 228, 228, 1) 100%, rgba(255, 255, 255, 1) 100%);
  1538. background:-moz-linear-gradient(180deg, rgba(255, 255, 255, 1) 0%, rgba(242, 242, 242, 1) 0%, rgba(228, 228, 228, 1) 100%, rgba(255, 255, 255, 1) 100%);
  1539. background:linear-gradient(180deg, rgba(255, 255, 255, 1) 0%, rgba(242, 242, 242, 1) 0%, rgba(228, 228, 228, 1) 100%, rgba(255, 255, 255, 1) 100%);
  1540. box-sizing:border-box;
  1541. border-width:1px;
  1542. border-style:solid;
  1543. border-color:rgba(121, 121, 121, 1);
  1544. border-radius:0px;
  1545. -moz-box-shadow:none;
  1546. -webkit-box-shadow:none;
  1547. box-shadow:none;
  1548. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1549. font-weight:400;
  1550. font-style:normal;
  1551. }
  1552. #u857 {
  1553. border-width:0px;
  1554. position:absolute;
  1555. left:1045px;
  1556. top:411px;
  1557. width:140px;
  1558. height:60px;
  1559. display:flex;
  1560. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1561. font-weight:400;
  1562. font-style:normal;
  1563. }
  1564. #u857 .text {
  1565. position:absolute;
  1566. align-self:center;
  1567. padding:2px 2px 2px 2px;
  1568. box-sizing:border-box;
  1569. width:100%;
  1570. }
  1571. #u857_text {
  1572. border-width:0px;
  1573. word-wrap:break-word;
  1574. text-transform:none;
  1575. }
  1576. #u858_div {
  1577. border-width:0px;
  1578. position:absolute;
  1579. left:0px;
  1580. top:0px;
  1581. width:140px;
  1582. height:60px;
  1583. background:-webkit-linear-gradient(270deg, rgba(255, 255, 255, 1) 0%, rgba(242, 242, 242, 1) 0%, rgba(228, 228, 228, 1) 100%, rgba(255, 255, 255, 1) 100%);
  1584. background:-moz-linear-gradient(180deg, rgba(255, 255, 255, 1) 0%, rgba(242, 242, 242, 1) 0%, rgba(228, 228, 228, 1) 100%, rgba(255, 255, 255, 1) 100%);
  1585. background:linear-gradient(180deg, rgba(255, 255, 255, 1) 0%, rgba(242, 242, 242, 1) 0%, rgba(228, 228, 228, 1) 100%, rgba(255, 255, 255, 1) 100%);
  1586. box-sizing:border-box;
  1587. border-width:1px;
  1588. border-style:solid;
  1589. border-color:rgba(121, 121, 121, 1);
  1590. border-radius:0px;
  1591. -moz-box-shadow:none;
  1592. -webkit-box-shadow:none;
  1593. box-shadow:none;
  1594. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1595. font-weight:400;
  1596. font-style:normal;
  1597. }
  1598. #u858 {
  1599. border-width:0px;
  1600. position:absolute;
  1601. left:1215px;
  1602. top:323px;
  1603. width:140px;
  1604. height:60px;
  1605. display:flex;
  1606. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1607. font-weight:400;
  1608. font-style:normal;
  1609. }
  1610. #u858 .text {
  1611. position:absolute;
  1612. align-self:center;
  1613. padding:2px 2px 2px 2px;
  1614. box-sizing:border-box;
  1615. width:100%;
  1616. }
  1617. #u858_text {
  1618. border-width:0px;
  1619. word-wrap:break-word;
  1620. text-transform:none;
  1621. }
  1622. #u859 {
  1623. border-width:0px;
  1624. position:absolute;
  1625. left:1035px;
  1626. top:353px;
  1627. width:0px;
  1628. height:0px;
  1629. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1630. font-weight:400;
  1631. font-style:normal;
  1632. font-size:28px;
  1633. color:#333333;
  1634. }
  1635. #u859_seg0 {
  1636. border-width:0px;
  1637. position:absolute;
  1638. left:0px;
  1639. top:-5px;
  1640. width:35px;
  1641. height:10px;
  1642. }
  1643. #u859_seg1 {
  1644. border-width:0px;
  1645. position:absolute;
  1646. left:18px;
  1647. top:-10px;
  1648. width:20px;
  1649. height:20px;
  1650. }
  1651. #u859_text {
  1652. border-width:0px;
  1653. position:absolute;
  1654. left:-35px;
  1655. top:-8px;
  1656. width:100px;
  1657. word-wrap:break-word;
  1658. text-transform:none;
  1659. visibility:hidden;
  1660. }
  1661. #u860 {
  1662. border-width:0px;
  1663. position:absolute;
  1664. left:1165px;
  1665. top:353px;
  1666. width:0px;
  1667. height:0px;
  1668. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1669. font-weight:400;
  1670. font-style:normal;
  1671. font-size:12px;
  1672. color:#333333;
  1673. }
  1674. #u860_seg0 {
  1675. border-width:0px;
  1676. position:absolute;
  1677. left:0px;
  1678. top:-5px;
  1679. width:55px;
  1680. height:10px;
  1681. }
  1682. #u860_seg1 {
  1683. border-width:0px;
  1684. position:absolute;
  1685. left:38px;
  1686. top:-10px;
  1687. width:20px;
  1688. height:20px;
  1689. }
  1690. #u860_text {
  1691. border-width:0px;
  1692. position:absolute;
  1693. left:-25px;
  1694. top:-8px;
  1695. width:100px;
  1696. word-wrap:break-word;
  1697. text-transform:none;
  1698. }
  1699. #u861 {
  1700. border-width:0px;
  1701. position:absolute;
  1702. left:1115px;
  1703. top:383px;
  1704. width:0px;
  1705. height:0px;
  1706. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1707. font-weight:400;
  1708. font-style:normal;
  1709. font-size:12px;
  1710. color:#333333;
  1711. }
  1712. #u861_seg0 {
  1713. border-width:0px;
  1714. position:absolute;
  1715. left:-5px;
  1716. top:0px;
  1717. width:10px;
  1718. height:33px;
  1719. }
  1720. #u861_seg1 {
  1721. border-width:0px;
  1722. position:absolute;
  1723. left:-10px;
  1724. top:16px;
  1725. width:20px;
  1726. height:20px;
  1727. }
  1728. #u861_text {
  1729. border-width:0px;
  1730. position:absolute;
  1731. left:-50px;
  1732. top:6px;
  1733. width:100px;
  1734. word-wrap:break-word;
  1735. text-transform:none;
  1736. }
  1737. #u862_div {
  1738. border-width:0px;
  1739. position:absolute;
  1740. left:0px;
  1741. top:0px;
  1742. width:100px;
  1743. height:60px;
  1744. background:-webkit-linear-gradient(270deg, rgba(255, 255, 255, 1) 0%, rgba(242, 242, 242, 1) 0%, rgba(228, 228, 228, 1) 100%, rgba(255, 255, 255, 1) 100%);
  1745. background:-moz-linear-gradient(180deg, rgba(255, 255, 255, 1) 0%, rgba(242, 242, 242, 1) 0%, rgba(228, 228, 228, 1) 100%, rgba(255, 255, 255, 1) 100%);
  1746. background:linear-gradient(180deg, rgba(255, 255, 255, 1) 0%, rgba(242, 242, 242, 1) 0%, rgba(228, 228, 228, 1) 100%, rgba(255, 255, 255, 1) 100%);
  1747. box-sizing:border-box;
  1748. border-width:1px;
  1749. border-style:solid;
  1750. border-color:rgba(121, 121, 121, 1);
  1751. border-radius:10px;
  1752. -moz-box-shadow:none;
  1753. -webkit-box-shadow:none;
  1754. box-shadow:none;
  1755. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1756. font-weight:400;
  1757. font-style:normal;
  1758. }
  1759. #u862 {
  1760. border-width:0px;
  1761. position:absolute;
  1762. left:1405px;
  1763. top:323px;
  1764. width:100px;
  1765. height:60px;
  1766. display:flex;
  1767. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1768. font-weight:400;
  1769. font-style:normal;
  1770. }
  1771. #u862 .text {
  1772. position:absolute;
  1773. align-self:center;
  1774. padding:2px 2px 2px 2px;
  1775. box-sizing:border-box;
  1776. width:100%;
  1777. }
  1778. #u862_text {
  1779. border-width:0px;
  1780. word-wrap:break-word;
  1781. text-transform:none;
  1782. }
  1783. #u863 {
  1784. border-width:0px;
  1785. position:absolute;
  1786. left:1355px;
  1787. top:353px;
  1788. width:0px;
  1789. height:0px;
  1790. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1791. font-weight:400;
  1792. font-style:normal;
  1793. font-size:28px;
  1794. color:#333333;
  1795. }
  1796. #u863_seg0 {
  1797. border-width:0px;
  1798. position:absolute;
  1799. left:0px;
  1800. top:-5px;
  1801. width:55px;
  1802. height:10px;
  1803. }
  1804. #u863_seg1 {
  1805. border-width:0px;
  1806. position:absolute;
  1807. left:38px;
  1808. top:-10px;
  1809. width:20px;
  1810. height:20px;
  1811. }
  1812. #u863_text {
  1813. border-width:0px;
  1814. position:absolute;
  1815. left:-25px;
  1816. top:-8px;
  1817. width:100px;
  1818. word-wrap:break-word;
  1819. text-transform:none;
  1820. visibility:hidden;
  1821. }
  1822. #u864 {
  1823. border-width:0px;
  1824. position:absolute;
  1825. left:1185px;
  1826. top:441px;
  1827. width:0px;
  1828. height:0px;
  1829. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1830. font-weight:400;
  1831. font-style:normal;
  1832. font-size:28px;
  1833. color:#333333;
  1834. }
  1835. #u864_seg0 {
  1836. border-width:0px;
  1837. position:absolute;
  1838. left:0px;
  1839. top:-5px;
  1840. width:275px;
  1841. height:10px;
  1842. }
  1843. #u864_seg1 {
  1844. border-width:0px;
  1845. position:absolute;
  1846. left:265px;
  1847. top:-58px;
  1848. width:10px;
  1849. height:63px;
  1850. }
  1851. #u864_seg2 {
  1852. border-width:0px;
  1853. position:absolute;
  1854. left:260px;
  1855. top:-66px;
  1856. width:20px;
  1857. height:20px;
  1858. }
  1859. #u864_text {
  1860. border-width:0px;
  1861. position:absolute;
  1862. left:114px;
  1863. top:-8px;
  1864. width:100px;
  1865. word-wrap:break-word;
  1866. text-transform:none;
  1867. visibility:hidden;
  1868. }
  1869. #u865 {
  1870. border-width:0px;
  1871. position:absolute;
  1872. left:675px;
  1873. top:259px;
  1874. width:0px;
  1875. height:0px;
  1876. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1877. font-weight:400;
  1878. font-style:normal;
  1879. font-size:12px;
  1880. color:#333333;
  1881. }
  1882. #u865_seg0 {
  1883. border-width:0px;
  1884. position:absolute;
  1885. left:0px;
  1886. top:-5px;
  1887. width:125px;
  1888. height:10px;
  1889. }
  1890. #u865_seg1 {
  1891. border-width:0px;
  1892. position:absolute;
  1893. left:115px;
  1894. top:-5px;
  1895. width:10px;
  1896. height:69px;
  1897. }
  1898. #u865_seg2 {
  1899. border-width:0px;
  1900. position:absolute;
  1901. left:110px;
  1902. top:52px;
  1903. width:20px;
  1904. height:20px;
  1905. }
  1906. #u865_text {
  1907. border-width:0px;
  1908. position:absolute;
  1909. left:42px;
  1910. top:-8px;
  1911. width:100px;
  1912. word-wrap:break-word;
  1913. text-transform:none;
  1914. }
  1915. #u866_div {
  1916. border-width:0px;
  1917. position:absolute;
  1918. left:0px;
  1919. top:0px;
  1920. width:181px;
  1921. height:40px;
  1922. background:inherit;
  1923. background-color:rgba(255, 255, 255, 0);
  1924. border:none;
  1925. border-radius:0px;
  1926. -moz-box-shadow:none;
  1927. -webkit-box-shadow:none;
  1928. box-shadow:none;
  1929. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  1930. font-weight:500;
  1931. font-style:normal;
  1932. font-size:18px;
  1933. line-height:40px;
  1934. }
  1935. #u866 {
  1936. border-width:0px;
  1937. position:absolute;
  1938. left:163px;
  1939. top:97px;
  1940. width:181px;
  1941. height:40px;
  1942. display:flex;
  1943. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  1944. font-weight:500;
  1945. font-style:normal;
  1946. font-size:18px;
  1947. line-height:40px;
  1948. }
  1949. #u866 .text {
  1950. position:absolute;
  1951. align-self:flex-start;
  1952. padding:0px 0px 0px 0px;
  1953. box-sizing:border-box;
  1954. width:100%;
  1955. }
  1956. #u866_text {
  1957. border-width:0px;
  1958. white-space:nowrap;
  1959. text-transform:none;
  1960. }
  1961. #u867_div {
  1962. border-width:0px;
  1963. position:absolute;
  1964. left:0px;
  1965. top:0px;
  1966. width:600px;
  1967. height:1053px;
  1968. background:inherit;
  1969. background-color:rgba(255, 255, 255, 1);
  1970. box-sizing:border-box;
  1971. border-width:1px;
  1972. border-style:solid;
  1973. border-color:rgba(121, 121, 121, 1);
  1974. border-radius:0px;
  1975. -moz-box-shadow:none;
  1976. -webkit-box-shadow:none;
  1977. box-shadow:none;
  1978. }
  1979. #u867 {
  1980. border-width:0px;
  1981. position:absolute;
  1982. left:781px;
  1983. top:494px;
  1984. width:600px;
  1985. height:1053px;
  1986. display:flex;
  1987. }
  1988. #u867 .text {
  1989. position:absolute;
  1990. align-self:center;
  1991. padding:2px 2px 2px 2px;
  1992. box-sizing:border-box;
  1993. width:100%;
  1994. }
  1995. #u867_text {
  1996. border-width:0px;
  1997. word-wrap:break-word;
  1998. text-transform:none;
  1999. visibility:hidden;
  2000. }
  2001. #u868_div {
  2002. border-width:0px;
  2003. position:absolute;
  2004. left:0px;
  2005. top:0px;
  2006. width:100px;
  2007. height:60px;
  2008. background:-webkit-linear-gradient(270deg, rgba(255, 255, 255, 1) 0%, rgba(242, 242, 242, 1) 0%, rgba(228, 228, 228, 1) 100%, rgba(255, 255, 255, 1) 100%);
  2009. background:-moz-linear-gradient(180deg, rgba(255, 255, 255, 1) 0%, rgba(242, 242, 242, 1) 0%, rgba(228, 228, 228, 1) 100%, rgba(255, 255, 255, 1) 100%);
  2010. background:linear-gradient(180deg, rgba(255, 255, 255, 1) 0%, rgba(242, 242, 242, 1) 0%, rgba(228, 228, 228, 1) 100%, rgba(255, 255, 255, 1) 100%);
  2011. box-sizing:border-box;
  2012. border-width:1px;
  2013. border-style:solid;
  2014. border-color:rgba(121, 121, 121, 1);
  2015. border-radius:10px;
  2016. -moz-box-shadow:none;
  2017. -webkit-box-shadow:none;
  2018. box-shadow:none;
  2019. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2020. font-weight:400;
  2021. font-style:normal;
  2022. }
  2023. #u868 {
  2024. border-width:0px;
  2025. position:absolute;
  2026. left:843px;
  2027. top:577px;
  2028. width:100px;
  2029. height:60px;
  2030. display:flex;
  2031. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2032. font-weight:400;
  2033. font-style:normal;
  2034. }
  2035. #u868 .text {
  2036. position:absolute;
  2037. align-self:center;
  2038. padding:2px 2px 2px 2px;
  2039. box-sizing:border-box;
  2040. width:100%;
  2041. }
  2042. #u868_text {
  2043. border-width:0px;
  2044. word-wrap:break-word;
  2045. text-transform:none;
  2046. }
  2047. #u869_div {
  2048. border-width:0px;
  2049. position:absolute;
  2050. left:0px;
  2051. top:0px;
  2052. width:140px;
  2053. height:60px;
  2054. background:-webkit-linear-gradient(270deg, rgba(255, 255, 255, 1) 0%, rgba(242, 242, 242, 1) 0%, rgba(228, 228, 228, 1) 100%, rgba(255, 255, 255, 1) 100%);
  2055. background:-moz-linear-gradient(180deg, rgba(255, 255, 255, 1) 0%, rgba(242, 242, 242, 1) 0%, rgba(228, 228, 228, 1) 100%, rgba(255, 255, 255, 1) 100%);
  2056. background:linear-gradient(180deg, rgba(255, 255, 255, 1) 0%, rgba(242, 242, 242, 1) 0%, rgba(228, 228, 228, 1) 100%, rgba(255, 255, 255, 1) 100%);
  2057. box-sizing:border-box;
  2058. border-width:1px;
  2059. border-style:solid;
  2060. border-color:rgba(121, 121, 121, 1);
  2061. border-radius:0px;
  2062. -moz-box-shadow:none;
  2063. -webkit-box-shadow:none;
  2064. box-shadow:none;
  2065. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2066. font-weight:400;
  2067. font-style:normal;
  2068. }
  2069. #u869 {
  2070. border-width:0px;
  2071. position:absolute;
  2072. left:823px;
  2073. top:661px;
  2074. width:140px;
  2075. height:60px;
  2076. display:flex;
  2077. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2078. font-weight:400;
  2079. font-style:normal;
  2080. }
  2081. #u869 .text {
  2082. position:absolute;
  2083. align-self:center;
  2084. padding:2px 2px 2px 2px;
  2085. box-sizing:border-box;
  2086. width:100%;
  2087. }
  2088. #u869_text {
  2089. border-width:0px;
  2090. word-wrap:break-word;
  2091. text-transform:none;
  2092. }
  2093. #u870_div {
  2094. border-width:0px;
  2095. position:absolute;
  2096. left:0px;
  2097. top:0px;
  2098. width:140px;
  2099. height:60px;
  2100. background:-webkit-linear-gradient(270deg, rgba(255, 255, 255, 1) 0%, rgba(242, 242, 242, 1) 0%, rgba(228, 228, 228, 1) 100%, rgba(255, 255, 255, 1) 100%);
  2101. background:-moz-linear-gradient(180deg, rgba(255, 255, 255, 1) 0%, rgba(242, 242, 242, 1) 0%, rgba(228, 228, 228, 1) 100%, rgba(255, 255, 255, 1) 100%);
  2102. background:linear-gradient(180deg, rgba(255, 255, 255, 1) 0%, rgba(242, 242, 242, 1) 0%, rgba(228, 228, 228, 1) 100%, rgba(255, 255, 255, 1) 100%);
  2103. box-sizing:border-box;
  2104. border-width:1px;
  2105. border-style:solid;
  2106. border-color:rgba(121, 121, 121, 1);
  2107. border-radius:0px;
  2108. -moz-box-shadow:none;
  2109. -webkit-box-shadow:none;
  2110. box-shadow:none;
  2111. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2112. font-weight:400;
  2113. font-style:normal;
  2114. }
  2115. #u870 {
  2116. border-width:0px;
  2117. position:absolute;
  2118. left:823px;
  2119. top:749px;
  2120. width:140px;
  2121. height:60px;
  2122. display:flex;
  2123. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2124. font-weight:400;
  2125. font-style:normal;
  2126. }
  2127. #u870 .text {
  2128. position:absolute;
  2129. align-self:center;
  2130. padding:2px 2px 2px 2px;
  2131. box-sizing:border-box;
  2132. width:100%;
  2133. }
  2134. #u870_text {
  2135. border-width:0px;
  2136. word-wrap:break-word;
  2137. text-transform:none;
  2138. }
  2139. #u871_div {
  2140. border-width:0px;
  2141. position:absolute;
  2142. left:0px;
  2143. top:0px;
  2144. width:140px;
  2145. height:60px;
  2146. background:-webkit-linear-gradient(270deg, rgba(255, 255, 255, 1) 0%, rgba(242, 242, 242, 1) 0%, rgba(228, 228, 228, 1) 100%, rgba(255, 255, 255, 1) 100%);
  2147. background:-moz-linear-gradient(180deg, rgba(255, 255, 255, 1) 0%, rgba(242, 242, 242, 1) 0%, rgba(228, 228, 228, 1) 100%, rgba(255, 255, 255, 1) 100%);
  2148. background:linear-gradient(180deg, rgba(255, 255, 255, 1) 0%, rgba(242, 242, 242, 1) 0%, rgba(228, 228, 228, 1) 100%, rgba(255, 255, 255, 1) 100%);
  2149. box-sizing:border-box;
  2150. border-width:1px;
  2151. border-style:solid;
  2152. border-color:rgba(121, 121, 121, 1);
  2153. border-radius:0px;
  2154. -moz-box-shadow:none;
  2155. -webkit-box-shadow:none;
  2156. box-shadow:none;
  2157. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2158. font-weight:400;
  2159. font-style:normal;
  2160. }
  2161. #u871 {
  2162. border-width:0px;
  2163. position:absolute;
  2164. left:1021px;
  2165. top:836px;
  2166. width:140px;
  2167. height:60px;
  2168. display:flex;
  2169. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2170. font-weight:400;
  2171. font-style:normal;
  2172. }
  2173. #u871 .text {
  2174. position:absolute;
  2175. align-self:center;
  2176. padding:2px 2px 2px 2px;
  2177. box-sizing:border-box;
  2178. width:100%;
  2179. }
  2180. #u871_text {
  2181. border-width:0px;
  2182. word-wrap:break-word;
  2183. text-transform:none;
  2184. }
  2185. #u872_div {
  2186. border-width:0px;
  2187. position:absolute;
  2188. left:0px;
  2189. top:0px;
  2190. width:140px;
  2191. height:60px;
  2192. background:-webkit-linear-gradient(270deg, rgba(255, 255, 255, 1) 0%, rgba(242, 242, 242, 1) 0%, rgba(228, 228, 228, 1) 100%, rgba(255, 255, 255, 1) 100%);
  2193. background:-moz-linear-gradient(180deg, rgba(255, 255, 255, 1) 0%, rgba(242, 242, 242, 1) 0%, rgba(228, 228, 228, 1) 100%, rgba(255, 255, 255, 1) 100%);
  2194. background:linear-gradient(180deg, rgba(255, 255, 255, 1) 0%, rgba(242, 242, 242, 1) 0%, rgba(228, 228, 228, 1) 100%, rgba(255, 255, 255, 1) 100%);
  2195. box-sizing:border-box;
  2196. border-width:1px;
  2197. border-style:solid;
  2198. border-color:rgba(121, 121, 121, 1);
  2199. border-radius:0px;
  2200. -moz-box-shadow:none;
  2201. -webkit-box-shadow:none;
  2202. box-shadow:none;
  2203. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2204. font-weight:400;
  2205. font-style:normal;
  2206. }
  2207. #u872 {
  2208. border-width:0px;
  2209. position:absolute;
  2210. left:823px;
  2211. top:938px;
  2212. width:140px;
  2213. height:60px;
  2214. display:flex;
  2215. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2216. font-weight:400;
  2217. font-style:normal;
  2218. }
  2219. #u872 .text {
  2220. position:absolute;
  2221. align-self:center;
  2222. padding:2px 2px 2px 2px;
  2223. box-sizing:border-box;
  2224. width:100%;
  2225. }
  2226. #u872_text {
  2227. border-width:0px;
  2228. word-wrap:break-word;
  2229. text-transform:none;
  2230. }
  2231. #u873_img {
  2232. border-width:0px;
  2233. position:absolute;
  2234. left:0px;
  2235. top:0px;
  2236. width:100px;
  2237. height:60px;
  2238. }
  2239. #u873 {
  2240. border-width:0px;
  2241. position:absolute;
  2242. left:843px;
  2243. top:836px;
  2244. width:100px;
  2245. height:60px;
  2246. display:flex;
  2247. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2248. font-weight:400;
  2249. font-style:normal;
  2250. }
  2251. #u873 .text {
  2252. position:absolute;
  2253. align-self:center;
  2254. padding:2px 2px 2px 2px;
  2255. box-sizing:border-box;
  2256. width:100%;
  2257. }
  2258. #u873_text {
  2259. border-width:0px;
  2260. word-wrap:break-word;
  2261. text-transform:none;
  2262. }
  2263. #u874 {
  2264. border-width:0px;
  2265. position:absolute;
  2266. left:893px;
  2267. top:637px;
  2268. width:0px;
  2269. height:0px;
  2270. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2271. font-weight:400;
  2272. font-style:normal;
  2273. font-size:28px;
  2274. color:#333333;
  2275. }
  2276. #u874_seg0 {
  2277. border-width:0px;
  2278. position:absolute;
  2279. left:-5px;
  2280. top:0px;
  2281. width:10px;
  2282. height:29px;
  2283. }
  2284. #u874_seg1 {
  2285. border-width:0px;
  2286. position:absolute;
  2287. left:-10px;
  2288. top:12px;
  2289. width:20px;
  2290. height:20px;
  2291. }
  2292. #u874_text {
  2293. border-width:0px;
  2294. position:absolute;
  2295. left:-50px;
  2296. top:4px;
  2297. width:100px;
  2298. word-wrap:break-word;
  2299. text-transform:none;
  2300. visibility:hidden;
  2301. }
  2302. #u875 {
  2303. border-width:0px;
  2304. position:absolute;
  2305. left:893px;
  2306. top:721px;
  2307. width:0px;
  2308. height:0px;
  2309. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2310. font-weight:400;
  2311. font-style:normal;
  2312. font-size:28px;
  2313. color:#333333;
  2314. }
  2315. #u875_seg0 {
  2316. border-width:0px;
  2317. position:absolute;
  2318. left:-5px;
  2319. top:0px;
  2320. width:10px;
  2321. height:33px;
  2322. }
  2323. #u875_seg1 {
  2324. border-width:0px;
  2325. position:absolute;
  2326. left:-10px;
  2327. top:16px;
  2328. width:20px;
  2329. height:20px;
  2330. }
  2331. #u875_text {
  2332. border-width:0px;
  2333. position:absolute;
  2334. left:-50px;
  2335. top:6px;
  2336. width:100px;
  2337. word-wrap:break-word;
  2338. text-transform:none;
  2339. visibility:hidden;
  2340. }
  2341. #u876 {
  2342. border-width:0px;
  2343. position:absolute;
  2344. left:893px;
  2345. top:809px;
  2346. width:0px;
  2347. height:0px;
  2348. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2349. font-weight:400;
  2350. font-style:normal;
  2351. font-size:28px;
  2352. color:#333333;
  2353. }
  2354. #u876_seg0 {
  2355. border-width:0px;
  2356. position:absolute;
  2357. left:-5px;
  2358. top:0px;
  2359. width:10px;
  2360. height:32px;
  2361. }
  2362. #u876_seg1 {
  2363. border-width:0px;
  2364. position:absolute;
  2365. left:-10px;
  2366. top:15px;
  2367. width:20px;
  2368. height:20px;
  2369. }
  2370. #u876_text {
  2371. border-width:0px;
  2372. position:absolute;
  2373. left:-50px;
  2374. top:6px;
  2375. width:100px;
  2376. word-wrap:break-word;
  2377. text-transform:none;
  2378. visibility:hidden;
  2379. }
  2380. #u877 {
  2381. border-width:0px;
  2382. position:absolute;
  2383. left:943px;
  2384. top:866px;
  2385. width:0px;
  2386. height:0px;
  2387. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2388. font-weight:400;
  2389. font-style:normal;
  2390. font-size:10px;
  2391. color:#333333;
  2392. }
  2393. #u877_seg0 {
  2394. border-width:0px;
  2395. position:absolute;
  2396. left:0px;
  2397. top:-5px;
  2398. width:83px;
  2399. height:10px;
  2400. }
  2401. #u877_seg1 {
  2402. border-width:0px;
  2403. position:absolute;
  2404. left:66px;
  2405. top:-10px;
  2406. width:20px;
  2407. height:20px;
  2408. }
  2409. #u877_text {
  2410. border-width:0px;
  2411. position:absolute;
  2412. left:-11px;
  2413. top:-7px;
  2414. width:100px;
  2415. word-wrap:break-word;
  2416. text-transform:none;
  2417. }
  2418. #u878 {
  2419. border-width:0px;
  2420. position:absolute;
  2421. left:893px;
  2422. top:896px;
  2423. width:0px;
  2424. height:0px;
  2425. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2426. font-weight:400;
  2427. font-style:normal;
  2428. font-size:12px;
  2429. color:#333333;
  2430. }
  2431. #u878_seg0 {
  2432. border-width:0px;
  2433. position:absolute;
  2434. left:-5px;
  2435. top:0px;
  2436. width:10px;
  2437. height:47px;
  2438. }
  2439. #u878_seg1 {
  2440. border-width:0px;
  2441. position:absolute;
  2442. left:-10px;
  2443. top:30px;
  2444. width:20px;
  2445. height:20px;
  2446. }
  2447. #u878_text {
  2448. border-width:0px;
  2449. position:absolute;
  2450. left:-50px;
  2451. top:12px;
  2452. width:100px;
  2453. word-wrap:break-word;
  2454. text-transform:none;
  2455. }
  2456. #u879_div {
  2457. border-width:0px;
  2458. position:absolute;
  2459. left:0px;
  2460. top:0px;
  2461. width:140px;
  2462. height:60px;
  2463. background:-webkit-linear-gradient(270deg, rgba(255, 255, 255, 1) 0%, rgba(242, 242, 242, 1) 0%, rgba(228, 228, 228, 1) 100%, rgba(255, 255, 255, 1) 100%);
  2464. background:-moz-linear-gradient(180deg, rgba(255, 255, 255, 1) 0%, rgba(242, 242, 242, 1) 0%, rgba(228, 228, 228, 1) 100%, rgba(255, 255, 255, 1) 100%);
  2465. background:linear-gradient(180deg, rgba(255, 255, 255, 1) 0%, rgba(242, 242, 242, 1) 0%, rgba(228, 228, 228, 1) 100%, rgba(255, 255, 255, 1) 100%);
  2466. box-sizing:border-box;
  2467. border-width:1px;
  2468. border-style:solid;
  2469. border-color:rgba(121, 121, 121, 1);
  2470. border-radius:0px;
  2471. -moz-box-shadow:none;
  2472. -webkit-box-shadow:none;
  2473. box-shadow:none;
  2474. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2475. font-weight:400;
  2476. font-style:normal;
  2477. }
  2478. #u879 {
  2479. border-width:0px;
  2480. position:absolute;
  2481. left:1021px;
  2482. top:938px;
  2483. width:140px;
  2484. height:60px;
  2485. display:flex;
  2486. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2487. font-weight:400;
  2488. font-style:normal;
  2489. }
  2490. #u879 .text {
  2491. position:absolute;
  2492. align-self:center;
  2493. padding:2px 2px 2px 2px;
  2494. box-sizing:border-box;
  2495. width:100%;
  2496. }
  2497. #u879_text {
  2498. border-width:0px;
  2499. word-wrap:break-word;
  2500. text-transform:none;
  2501. }
  2502. #u880_div {
  2503. border-width:0px;
  2504. position:absolute;
  2505. left:0px;
  2506. top:0px;
  2507. width:140px;
  2508. height:60px;
  2509. background:-webkit-linear-gradient(270deg, rgba(255, 255, 255, 1) 0%, rgba(242, 242, 242, 1) 0%, rgba(228, 228, 228, 1) 100%, rgba(255, 255, 255, 1) 100%);
  2510. background:-moz-linear-gradient(180deg, rgba(255, 255, 255, 1) 0%, rgba(242, 242, 242, 1) 0%, rgba(228, 228, 228, 1) 100%, rgba(255, 255, 255, 1) 100%);
  2511. background:linear-gradient(180deg, rgba(255, 255, 255, 1) 0%, rgba(242, 242, 242, 1) 0%, rgba(228, 228, 228, 1) 100%, rgba(255, 255, 255, 1) 100%);
  2512. box-sizing:border-box;
  2513. border-width:1px;
  2514. border-style:solid;
  2515. border-color:rgba(121, 121, 121, 1);
  2516. border-radius:0px;
  2517. -moz-box-shadow:none;
  2518. -webkit-box-shadow:none;
  2519. box-shadow:none;
  2520. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2521. font-weight:400;
  2522. font-style:normal;
  2523. }
  2524. #u880 {
  2525. border-width:0px;
  2526. position:absolute;
  2527. left:823px;
  2528. top:1028px;
  2529. width:140px;
  2530. height:60px;
  2531. display:flex;
  2532. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2533. font-weight:400;
  2534. font-style:normal;
  2535. }
  2536. #u880 .text {
  2537. position:absolute;
  2538. align-self:center;
  2539. padding:2px 2px 2px 2px;
  2540. box-sizing:border-box;
  2541. width:100%;
  2542. }
  2543. #u880_text {
  2544. border-width:0px;
  2545. word-wrap:break-word;
  2546. text-transform:none;
  2547. }
  2548. #u881 {
  2549. border-width:0px;
  2550. position:absolute;
  2551. left:893px;
  2552. top:998px;
  2553. width:0px;
  2554. height:0px;
  2555. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2556. font-weight:400;
  2557. font-style:normal;
  2558. font-size:28px;
  2559. color:#333333;
  2560. }
  2561. #u881_seg0 {
  2562. border-width:0px;
  2563. position:absolute;
  2564. left:-5px;
  2565. top:0px;
  2566. width:10px;
  2567. height:35px;
  2568. }
  2569. #u881_seg1 {
  2570. border-width:0px;
  2571. position:absolute;
  2572. left:-10px;
  2573. top:18px;
  2574. width:20px;
  2575. height:20px;
  2576. }
  2577. #u881_text {
  2578. border-width:0px;
  2579. position:absolute;
  2580. left:-50px;
  2581. top:7px;
  2582. width:100px;
  2583. word-wrap:break-word;
  2584. text-transform:none;
  2585. visibility:hidden;
  2586. }
  2587. #u882_div {
  2588. border-width:0px;
  2589. position:absolute;
  2590. left:0px;
  2591. top:0px;
  2592. width:100px;
  2593. height:60px;
  2594. background:-webkit-linear-gradient(270deg, rgba(255, 255, 255, 1) 0%, rgba(242, 242, 242, 1) 0%, rgba(228, 228, 228, 1) 100%, rgba(255, 255, 255, 1) 100%);
  2595. background:-moz-linear-gradient(180deg, rgba(255, 255, 255, 1) 0%, rgba(242, 242, 242, 1) 0%, rgba(228, 228, 228, 1) 100%, rgba(255, 255, 255, 1) 100%);
  2596. background:linear-gradient(180deg, rgba(255, 255, 255, 1) 0%, rgba(242, 242, 242, 1) 0%, rgba(228, 228, 228, 1) 100%, rgba(255, 255, 255, 1) 100%);
  2597. box-sizing:border-box;
  2598. border-width:1px;
  2599. border-style:solid;
  2600. border-color:rgba(121, 121, 121, 1);
  2601. border-radius:10px;
  2602. -moz-box-shadow:none;
  2603. -webkit-box-shadow:none;
  2604. box-shadow:none;
  2605. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2606. font-weight:400;
  2607. font-style:normal;
  2608. }
  2609. #u882 {
  2610. border-width:0px;
  2611. position:absolute;
  2612. left:1041px;
  2613. top:1432px;
  2614. width:100px;
  2615. height:60px;
  2616. display:flex;
  2617. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2618. font-weight:400;
  2619. font-style:normal;
  2620. }
  2621. #u882 .text {
  2622. position:absolute;
  2623. align-self:center;
  2624. padding:2px 2px 2px 2px;
  2625. box-sizing:border-box;
  2626. width:100%;
  2627. }
  2628. #u882_text {
  2629. border-width:0px;
  2630. word-wrap:break-word;
  2631. text-transform:none;
  2632. }
  2633. #u883_div {
  2634. border-width:0px;
  2635. position:absolute;
  2636. left:0px;
  2637. top:0px;
  2638. width:100px;
  2639. height:60px;
  2640. background:-webkit-linear-gradient(270deg, rgba(255, 255, 255, 1) 0%, rgba(242, 242, 242, 1) 0%, rgba(228, 228, 228, 1) 100%, rgba(255, 255, 255, 1) 100%);
  2641. background:-moz-linear-gradient(180deg, rgba(255, 255, 255, 1) 0%, rgba(242, 242, 242, 1) 0%, rgba(228, 228, 228, 1) 100%, rgba(255, 255, 255, 1) 100%);
  2642. background:linear-gradient(180deg, rgba(255, 255, 255, 1) 0%, rgba(242, 242, 242, 1) 0%, rgba(228, 228, 228, 1) 100%, rgba(255, 255, 255, 1) 100%);
  2643. box-sizing:border-box;
  2644. border-width:1px;
  2645. border-style:solid;
  2646. border-color:rgba(121, 121, 121, 1);
  2647. border-radius:0px;
  2648. -moz-box-shadow:none;
  2649. -webkit-box-shadow:none;
  2650. box-shadow:none;
  2651. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2652. font-weight:400;
  2653. font-style:normal;
  2654. }
  2655. #u883 {
  2656. border-width:0px;
  2657. position:absolute;
  2658. left:1041px;
  2659. top:1316px;
  2660. width:100px;
  2661. height:60px;
  2662. display:flex;
  2663. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2664. font-weight:400;
  2665. font-style:normal;
  2666. }
  2667. #u883 .text {
  2668. position:absolute;
  2669. align-self:center;
  2670. padding:2px 2px 2px 2px;
  2671. box-sizing:border-box;
  2672. width:100%;
  2673. }
  2674. #u883_text {
  2675. border-width:0px;
  2676. word-wrap:break-word;
  2677. text-transform:none;
  2678. }
  2679. #u884_div {
  2680. border-width:0px;
  2681. position:absolute;
  2682. left:0px;
  2683. top:0px;
  2684. width:100px;
  2685. height:60px;
  2686. background:-webkit-linear-gradient(270deg, rgba(255, 255, 255, 1) 0%, rgba(242, 242, 242, 1) 0%, rgba(228, 228, 228, 1) 100%, rgba(255, 255, 255, 1) 100%);
  2687. background:-moz-linear-gradient(180deg, rgba(255, 255, 255, 1) 0%, rgba(242, 242, 242, 1) 0%, rgba(228, 228, 228, 1) 100%, rgba(255, 255, 255, 1) 100%);
  2688. background:linear-gradient(180deg, rgba(255, 255, 255, 1) 0%, rgba(242, 242, 242, 1) 0%, rgba(228, 228, 228, 1) 100%, rgba(255, 255, 255, 1) 100%);
  2689. box-sizing:border-box;
  2690. border-width:1px;
  2691. border-style:solid;
  2692. border-color:rgba(121, 121, 121, 1);
  2693. border-radius:0px;
  2694. -moz-box-shadow:none;
  2695. -webkit-box-shadow:none;
  2696. box-shadow:none;
  2697. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2698. font-weight:400;
  2699. font-style:normal;
  2700. }
  2701. #u884 {
  2702. border-width:0px;
  2703. position:absolute;
  2704. left:823px;
  2705. top:1123px;
  2706. width:100px;
  2707. height:60px;
  2708. display:flex;
  2709. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2710. font-weight:400;
  2711. font-style:normal;
  2712. }
  2713. #u884 .text {
  2714. position:absolute;
  2715. align-self:center;
  2716. padding:2px 2px 2px 2px;
  2717. box-sizing:border-box;
  2718. width:100%;
  2719. }
  2720. #u884_text {
  2721. border-width:0px;
  2722. word-wrap:break-word;
  2723. text-transform:none;
  2724. }
  2725. #u885 {
  2726. border-width:0px;
  2727. position:absolute;
  2728. left:1091px;
  2729. top:896px;
  2730. width:0px;
  2731. height:0px;
  2732. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2733. font-weight:400;
  2734. font-style:normal;
  2735. font-size:28px;
  2736. color:#333333;
  2737. }
  2738. #u885_seg0 {
  2739. border-width:0px;
  2740. position:absolute;
  2741. left:-5px;
  2742. top:0px;
  2743. width:10px;
  2744. height:47px;
  2745. }
  2746. #u885_seg1 {
  2747. border-width:0px;
  2748. position:absolute;
  2749. left:-10px;
  2750. top:30px;
  2751. width:20px;
  2752. height:20px;
  2753. }
  2754. #u885_text {
  2755. border-width:0px;
  2756. position:absolute;
  2757. left:-50px;
  2758. top:13px;
  2759. width:100px;
  2760. word-wrap:break-word;
  2761. text-transform:none;
  2762. visibility:hidden;
  2763. }
  2764. #u886_div {
  2765. border-width:0px;
  2766. position:absolute;
  2767. left:0px;
  2768. top:0px;
  2769. width:156px;
  2770. height:60px;
  2771. background:-webkit-linear-gradient(270deg, rgba(255, 255, 255, 1) 0%, rgba(242, 242, 242, 1) 0%, rgba(228, 228, 228, 1) 100%, rgba(255, 255, 255, 1) 100%);
  2772. background:-moz-linear-gradient(180deg, rgba(255, 255, 255, 1) 0%, rgba(242, 242, 242, 1) 0%, rgba(228, 228, 228, 1) 100%, rgba(255, 255, 255, 1) 100%);
  2773. background:linear-gradient(180deg, rgba(255, 255, 255, 1) 0%, rgba(242, 242, 242, 1) 0%, rgba(228, 228, 228, 1) 100%, rgba(255, 255, 255, 1) 100%);
  2774. box-sizing:border-box;
  2775. border-width:1px;
  2776. border-style:solid;
  2777. border-color:rgba(121, 121, 121, 1);
  2778. border-radius:0px;
  2779. -moz-box-shadow:none;
  2780. -webkit-box-shadow:none;
  2781. box-shadow:none;
  2782. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2783. font-weight:400;
  2784. font-style:normal;
  2785. }
  2786. #u886 {
  2787. border-width:0px;
  2788. position:absolute;
  2789. left:1199px;
  2790. top:938px;
  2791. width:156px;
  2792. height:60px;
  2793. display:flex;
  2794. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2795. font-weight:400;
  2796. font-style:normal;
  2797. }
  2798. #u886 .text {
  2799. position:absolute;
  2800. align-self:center;
  2801. padding:2px 2px 2px 2px;
  2802. box-sizing:border-box;
  2803. width:100%;
  2804. }
  2805. #u886_text {
  2806. border-width:0px;
  2807. word-wrap:break-word;
  2808. text-transform:none;
  2809. }
  2810. #u887_div {
  2811. border-width:0px;
  2812. position:absolute;
  2813. left:0px;
  2814. top:0px;
  2815. width:145px;
  2816. height:40px;
  2817. background:inherit;
  2818. background-color:rgba(255, 255, 255, 0);
  2819. border:none;
  2820. border-radius:0px;
  2821. -moz-box-shadow:none;
  2822. -webkit-box-shadow:none;
  2823. box-shadow:none;
  2824. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  2825. font-weight:500;
  2826. font-style:normal;
  2827. font-size:18px;
  2828. line-height:40px;
  2829. }
  2830. #u887 {
  2831. border-width:0px;
  2832. position:absolute;
  2833. left:805px;
  2834. top:510px;
  2835. width:145px;
  2836. height:40px;
  2837. display:flex;
  2838. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  2839. font-weight:500;
  2840. font-style:normal;
  2841. font-size:18px;
  2842. line-height:40px;
  2843. }
  2844. #u887 .text {
  2845. position:absolute;
  2846. align-self:flex-start;
  2847. padding:0px 0px 0px 0px;
  2848. box-sizing:border-box;
  2849. width:100%;
  2850. }
  2851. #u887_text {
  2852. border-width:0px;
  2853. white-space:nowrap;
  2854. text-transform:none;
  2855. }
  2856. #u888_img {
  2857. border-width:0px;
  2858. position:absolute;
  2859. left:0px;
  2860. top:0px;
  2861. width:100px;
  2862. height:60px;
  2863. }
  2864. #u888 {
  2865. border-width:0px;
  2866. position:absolute;
  2867. left:1041px;
  2868. top:1123px;
  2869. width:100px;
  2870. height:60px;
  2871. display:flex;
  2872. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2873. font-weight:400;
  2874. font-style:normal;
  2875. }
  2876. #u888 .text {
  2877. position:absolute;
  2878. align-self:center;
  2879. padding:2px 2px 2px 2px;
  2880. box-sizing:border-box;
  2881. width:100%;
  2882. }
  2883. #u888_text {
  2884. border-width:0px;
  2885. word-wrap:break-word;
  2886. text-transform:none;
  2887. }
  2888. #u889_div {
  2889. border-width:0px;
  2890. position:absolute;
  2891. left:0px;
  2892. top:0px;
  2893. width:500px;
  2894. height:1053px;
  2895. background:inherit;
  2896. background-color:rgba(255, 255, 255, 1);
  2897. box-sizing:border-box;
  2898. border-width:1px;
  2899. border-style:solid;
  2900. border-color:rgba(121, 121, 121, 1);
  2901. border-radius:0px;
  2902. -moz-box-shadow:none;
  2903. -webkit-box-shadow:none;
  2904. box-shadow:none;
  2905. }
  2906. #u889 {
  2907. border-width:0px;
  2908. position:absolute;
  2909. left:1381px;
  2910. top:494px;
  2911. width:500px;
  2912. height:1053px;
  2913. display:flex;
  2914. }
  2915. #u889 .text {
  2916. position:absolute;
  2917. align-self:center;
  2918. padding:2px 2px 2px 2px;
  2919. box-sizing:border-box;
  2920. width:100%;
  2921. }
  2922. #u889_text {
  2923. border-width:0px;
  2924. word-wrap:break-word;
  2925. text-transform:none;
  2926. visibility:hidden;
  2927. }
  2928. #u890 {
  2929. border-width:0px;
  2930. position:absolute;
  2931. left:0px;
  2932. top:0px;
  2933. width:0px;
  2934. height:0px;
  2935. }
  2936. #u891_div {
  2937. border-width:0px;
  2938. position:absolute;
  2939. left:0px;
  2940. top:0px;
  2941. width:100px;
  2942. height:60px;
  2943. background:-webkit-linear-gradient(270deg, rgba(255, 255, 255, 1) 0%, rgba(242, 242, 242, 1) 0%, rgba(228, 228, 228, 1) 100%, rgba(255, 255, 255, 1) 100%);
  2944. background:-moz-linear-gradient(180deg, rgba(255, 255, 255, 1) 0%, rgba(242, 242, 242, 1) 0%, rgba(228, 228, 228, 1) 100%, rgba(255, 255, 255, 1) 100%);
  2945. background:linear-gradient(180deg, rgba(255, 255, 255, 1) 0%, rgba(242, 242, 242, 1) 0%, rgba(228, 228, 228, 1) 100%, rgba(255, 255, 255, 1) 100%);
  2946. box-sizing:border-box;
  2947. border-width:1px;
  2948. border-style:solid;
  2949. border-color:rgba(121, 121, 121, 1);
  2950. border-radius:10px;
  2951. -moz-box-shadow:none;
  2952. -webkit-box-shadow:none;
  2953. box-shadow:none;
  2954. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2955. font-weight:400;
  2956. font-style:normal;
  2957. }
  2958. #u891 {
  2959. border-width:0px;
  2960. position:absolute;
  2961. left:1472px;
  2962. top:577px;
  2963. width:100px;
  2964. height:60px;
  2965. display:flex;
  2966. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2967. font-weight:400;
  2968. font-style:normal;
  2969. }
  2970. #u891 .text {
  2971. position:absolute;
  2972. align-self:center;
  2973. padding:2px 2px 2px 2px;
  2974. box-sizing:border-box;
  2975. width:100%;
  2976. }
  2977. #u891_text {
  2978. border-width:0px;
  2979. word-wrap:break-word;
  2980. text-transform:none;
  2981. }
  2982. #u892_div {
  2983. border-width:0px;
  2984. position:absolute;
  2985. left:0px;
  2986. top:0px;
  2987. width:157px;
  2988. height:60px;
  2989. background:-webkit-linear-gradient(270deg, rgba(255, 255, 255, 1) 0%, rgba(242, 242, 242, 1) 0%, rgba(228, 228, 228, 1) 100%, rgba(255, 255, 255, 1) 100%);
  2990. background:-moz-linear-gradient(180deg, rgba(255, 255, 255, 1) 0%, rgba(242, 242, 242, 1) 0%, rgba(228, 228, 228, 1) 100%, rgba(255, 255, 255, 1) 100%);
  2991. background:linear-gradient(180deg, rgba(255, 255, 255, 1) 0%, rgba(242, 242, 242, 1) 0%, rgba(228, 228, 228, 1) 100%, rgba(255, 255, 255, 1) 100%);
  2992. box-sizing:border-box;
  2993. border-width:1px;
  2994. border-style:solid;
  2995. border-color:rgba(121, 121, 121, 1);
  2996. border-radius:0px;
  2997. -moz-box-shadow:none;
  2998. -webkit-box-shadow:none;
  2999. box-shadow:none;
  3000. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3001. font-weight:400;
  3002. font-style:normal;
  3003. }
  3004. #u892 {
  3005. border-width:0px;
  3006. position:absolute;
  3007. left:1443px;
  3008. top:667px;
  3009. width:157px;
  3010. height:60px;
  3011. display:flex;
  3012. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3013. font-weight:400;
  3014. font-style:normal;
  3015. }
  3016. #u892 .text {
  3017. position:absolute;
  3018. align-self:center;
  3019. padding:2px 2px 2px 2px;
  3020. box-sizing:border-box;
  3021. width:100%;
  3022. }
  3023. #u892_text {
  3024. border-width:0px;
  3025. word-wrap:break-word;
  3026. text-transform:none;
  3027. }
  3028. #u893_div {
  3029. border-width:0px;
  3030. position:absolute;
  3031. left:0px;
  3032. top:0px;
  3033. width:157px;
  3034. height:60px;
  3035. background:-webkit-linear-gradient(270deg, rgba(255, 255, 255, 1) 0%, rgba(242, 242, 242, 1) 0%, rgba(228, 228, 228, 1) 100%, rgba(255, 255, 255, 1) 100%);
  3036. background:-moz-linear-gradient(180deg, rgba(255, 255, 255, 1) 0%, rgba(242, 242, 242, 1) 0%, rgba(228, 228, 228, 1) 100%, rgba(255, 255, 255, 1) 100%);
  3037. background:linear-gradient(180deg, rgba(255, 255, 255, 1) 0%, rgba(242, 242, 242, 1) 0%, rgba(228, 228, 228, 1) 100%, rgba(255, 255, 255, 1) 100%);
  3038. box-sizing:border-box;
  3039. border-width:1px;
  3040. border-style:solid;
  3041. border-color:rgba(121, 121, 121, 1);
  3042. border-radius:0px;
  3043. -moz-box-shadow:none;
  3044. -webkit-box-shadow:none;
  3045. box-shadow:none;
  3046. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3047. font-weight:400;
  3048. font-style:normal;
  3049. }
  3050. #u893 {
  3051. border-width:0px;
  3052. position:absolute;
  3053. left:1443px;
  3054. top:757px;
  3055. width:157px;
  3056. height:60px;
  3057. display:flex;
  3058. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3059. font-weight:400;
  3060. font-style:normal;
  3061. }
  3062. #u893 .text {
  3063. position:absolute;
  3064. align-self:center;
  3065. padding:2px 2px 2px 2px;
  3066. box-sizing:border-box;
  3067. width:100%;
  3068. }
  3069. #u893_text {
  3070. border-width:0px;
  3071. word-wrap:break-word;
  3072. text-transform:none;
  3073. }
  3074. #u894_div {
  3075. border-width:0px;
  3076. position:absolute;
  3077. left:0px;
  3078. top:0px;
  3079. width:157px;
  3080. height:60px;
  3081. background:-webkit-linear-gradient(270deg, rgba(255, 255, 255, 1) 0%, rgba(242, 242, 242, 1) 0%, rgba(228, 228, 228, 1) 100%, rgba(255, 255, 255, 1) 100%);
  3082. background:-moz-linear-gradient(180deg, rgba(255, 255, 255, 1) 0%, rgba(242, 242, 242, 1) 0%, rgba(228, 228, 228, 1) 100%, rgba(255, 255, 255, 1) 100%);
  3083. background:linear-gradient(180deg, rgba(255, 255, 255, 1) 0%, rgba(242, 242, 242, 1) 0%, rgba(228, 228, 228, 1) 100%, rgba(255, 255, 255, 1) 100%);
  3084. box-sizing:border-box;
  3085. border-width:1px;
  3086. border-style:solid;
  3087. border-color:rgba(121, 121, 121, 1);
  3088. border-radius:0px;
  3089. -moz-box-shadow:none;
  3090. -webkit-box-shadow:none;
  3091. box-shadow:none;
  3092. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3093. font-weight:400;
  3094. font-style:normal;
  3095. }
  3096. #u894 {
  3097. border-width:0px;
  3098. position:absolute;
  3099. left:1662px;
  3100. top:854px;
  3101. width:157px;
  3102. height:60px;
  3103. display:flex;
  3104. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3105. font-weight:400;
  3106. font-style:normal;
  3107. }
  3108. #u894 .text {
  3109. position:absolute;
  3110. align-self:center;
  3111. padding:2px 2px 2px 2px;
  3112. box-sizing:border-box;
  3113. width:100%;
  3114. }
  3115. #u894_text {
  3116. border-width:0px;
  3117. word-wrap:break-word;
  3118. text-transform:none;
  3119. }
  3120. #u895_div {
  3121. border-width:0px;
  3122. position:absolute;
  3123. left:0px;
  3124. top:0px;
  3125. width:157px;
  3126. height:60px;
  3127. background:-webkit-linear-gradient(270deg, rgba(255, 255, 255, 1) 0%, rgba(242, 242, 242, 1) 0%, rgba(228, 228, 228, 1) 100%, rgba(255, 255, 255, 1) 100%);
  3128. background:-moz-linear-gradient(180deg, rgba(255, 255, 255, 1) 0%, rgba(242, 242, 242, 1) 0%, rgba(228, 228, 228, 1) 100%, rgba(255, 255, 255, 1) 100%);
  3129. background:linear-gradient(180deg, rgba(255, 255, 255, 1) 0%, rgba(242, 242, 242, 1) 0%, rgba(228, 228, 228, 1) 100%, rgba(255, 255, 255, 1) 100%);
  3130. box-sizing:border-box;
  3131. border-width:1px;
  3132. border-style:solid;
  3133. border-color:rgba(121, 121, 121, 1);
  3134. border-radius:0px;
  3135. -moz-box-shadow:none;
  3136. -webkit-box-shadow:none;
  3137. box-shadow:none;
  3138. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3139. font-weight:400;
  3140. font-style:normal;
  3141. }
  3142. #u895 {
  3143. border-width:0px;
  3144. position:absolute;
  3145. left:1443px;
  3146. top:966px;
  3147. width:157px;
  3148. height:60px;
  3149. display:flex;
  3150. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3151. font-weight:400;
  3152. font-style:normal;
  3153. }
  3154. #u895 .text {
  3155. position:absolute;
  3156. align-self:center;
  3157. padding:2px 2px 2px 2px;
  3158. box-sizing:border-box;
  3159. width:100%;
  3160. }
  3161. #u895_text {
  3162. border-width:0px;
  3163. word-wrap:break-word;
  3164. text-transform:none;
  3165. }
  3166. #u896_img {
  3167. border-width:0px;
  3168. position:absolute;
  3169. left:0px;
  3170. top:0px;
  3171. width:100px;
  3172. height:60px;
  3173. }
  3174. #u896 {
  3175. border-width:0px;
  3176. position:absolute;
  3177. left:1472px;
  3178. top:854px;
  3179. width:100px;
  3180. height:60px;
  3181. display:flex;
  3182. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3183. font-weight:400;
  3184. font-style:normal;
  3185. }
  3186. #u896 .text {
  3187. position:absolute;
  3188. align-self:center;
  3189. padding:2px 2px 2px 2px;
  3190. box-sizing:border-box;
  3191. width:100%;
  3192. }
  3193. #u896_text {
  3194. border-width:0px;
  3195. word-wrap:break-word;
  3196. text-transform:none;
  3197. }
  3198. #u897 {
  3199. border-width:0px;
  3200. position:absolute;
  3201. left:1522px;
  3202. top:637px;
  3203. width:0px;
  3204. height:0px;
  3205. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3206. font-weight:400;
  3207. font-style:normal;
  3208. font-size:28px;
  3209. color:#333333;
  3210. }
  3211. #u897_seg0 {
  3212. border-width:0px;
  3213. position:absolute;
  3214. left:-5px;
  3215. top:0px;
  3216. width:10px;
  3217. height:35px;
  3218. }
  3219. #u897_seg1 {
  3220. border-width:0px;
  3221. position:absolute;
  3222. left:-10px;
  3223. top:18px;
  3224. width:20px;
  3225. height:20px;
  3226. }
  3227. #u897_text {
  3228. border-width:0px;
  3229. position:absolute;
  3230. left:-50px;
  3231. top:7px;
  3232. width:100px;
  3233. word-wrap:break-word;
  3234. text-transform:none;
  3235. visibility:hidden;
  3236. }
  3237. #u898 {
  3238. border-width:0px;
  3239. position:absolute;
  3240. left:1522px;
  3241. top:727px;
  3242. width:0px;
  3243. height:0px;
  3244. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3245. font-weight:400;
  3246. font-style:normal;
  3247. font-size:28px;
  3248. color:#333333;
  3249. }
  3250. #u898_seg0 {
  3251. border-width:0px;
  3252. position:absolute;
  3253. left:-5px;
  3254. top:0px;
  3255. width:10px;
  3256. height:35px;
  3257. }
  3258. #u898_seg1 {
  3259. border-width:0px;
  3260. position:absolute;
  3261. left:-10px;
  3262. top:18px;
  3263. width:20px;
  3264. height:20px;
  3265. }
  3266. #u898_text {
  3267. border-width:0px;
  3268. position:absolute;
  3269. left:-50px;
  3270. top:7px;
  3271. width:100px;
  3272. word-wrap:break-word;
  3273. text-transform:none;
  3274. visibility:hidden;
  3275. }
  3276. #u899 {
  3277. border-width:0px;
  3278. position:absolute;
  3279. left:1522px;
  3280. top:817px;
  3281. width:0px;
  3282. height:0px;
  3283. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3284. font-weight:400;
  3285. font-style:normal;
  3286. font-size:28px;
  3287. color:#333333;
  3288. }
  3289. #u899_seg0 {
  3290. border-width:0px;
  3291. position:absolute;
  3292. left:-5px;
  3293. top:0px;
  3294. width:10px;
  3295. height:42px;
  3296. }
  3297. #u899_seg1 {
  3298. border-width:0px;
  3299. position:absolute;
  3300. left:-10px;
  3301. top:25px;
  3302. width:20px;
  3303. height:20px;
  3304. }
  3305. #u899_text {
  3306. border-width:0px;
  3307. position:absolute;
  3308. left:-50px;
  3309. top:10px;
  3310. width:100px;
  3311. word-wrap:break-word;
  3312. text-transform:none;
  3313. visibility:hidden;
  3314. }
  3315. #u900 {
  3316. border-width:0px;
  3317. position:absolute;
  3318. left:1572px;
  3319. top:884px;
  3320. width:0px;
  3321. height:0px;
  3322. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3323. font-weight:400;
  3324. font-style:normal;
  3325. font-size:12px;
  3326. color:#333333;
  3327. }
  3328. #u900_seg0 {
  3329. border-width:0px;
  3330. position:absolute;
  3331. left:0px;
  3332. top:-5px;
  3333. width:95px;
  3334. height:10px;
  3335. }
  3336. #u900_seg1 {
  3337. border-width:0px;
  3338. position:absolute;
  3339. left:78px;
  3340. top:-10px;
  3341. width:20px;
  3342. height:20px;
  3343. }
  3344. #u900_text {
  3345. border-width:0px;
  3346. position:absolute;
  3347. left:-5px;
  3348. top:-8px;
  3349. width:100px;
  3350. word-wrap:break-word;
  3351. text-transform:none;
  3352. }
  3353. #u901 {
  3354. border-width:0px;
  3355. position:absolute;
  3356. left:1522px;
  3357. top:914px;
  3358. width:0px;
  3359. height:0px;
  3360. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3361. font-weight:400;
  3362. font-style:normal;
  3363. font-size:12px;
  3364. color:#333333;
  3365. }
  3366. #u901_seg0 {
  3367. border-width:0px;
  3368. position:absolute;
  3369. left:-5px;
  3370. top:0px;
  3371. width:10px;
  3372. height:57px;
  3373. }
  3374. #u901_seg1 {
  3375. border-width:0px;
  3376. position:absolute;
  3377. left:-10px;
  3378. top:40px;
  3379. width:20px;
  3380. height:20px;
  3381. }
  3382. #u901_text {
  3383. border-width:0px;
  3384. position:absolute;
  3385. left:-50px;
  3386. top:18px;
  3387. width:100px;
  3388. word-wrap:break-word;
  3389. text-transform:none;
  3390. }
  3391. #u902 {
  3392. border-width:0px;
  3393. position:absolute;
  3394. left:1522px;
  3395. top:1026px;
  3396. width:0px;
  3397. height:0px;
  3398. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3399. font-weight:400;
  3400. font-style:normal;
  3401. font-size:28px;
  3402. color:#333333;
  3403. }
  3404. #u902_seg0 {
  3405. border-width:0px;
  3406. position:absolute;
  3407. left:-5px;
  3408. top:0px;
  3409. width:10px;
  3410. height:141px;
  3411. }
  3412. #u902_seg1 {
  3413. border-width:0px;
  3414. position:absolute;
  3415. left:-10px;
  3416. top:124px;
  3417. width:20px;
  3418. height:20px;
  3419. }
  3420. #u902_text {
  3421. border-width:0px;
  3422. position:absolute;
  3423. left:-50px;
  3424. top:60px;
  3425. width:100px;
  3426. word-wrap:break-word;
  3427. text-transform:none;
  3428. visibility:hidden;
  3429. }
  3430. #u903_div {
  3431. border-width:0px;
  3432. position:absolute;
  3433. left:0px;
  3434. top:0px;
  3435. width:100px;
  3436. height:60px;
  3437. background:-webkit-linear-gradient(270deg, rgba(255, 255, 255, 1) 0%, rgba(242, 242, 242, 1) 0%, rgba(228, 228, 228, 1) 100%, rgba(255, 255, 255, 1) 100%);
  3438. background:-moz-linear-gradient(180deg, rgba(255, 255, 255, 1) 0%, rgba(242, 242, 242, 1) 0%, rgba(228, 228, 228, 1) 100%, rgba(255, 255, 255, 1) 100%);
  3439. background:linear-gradient(180deg, rgba(255, 255, 255, 1) 0%, rgba(242, 242, 242, 1) 0%, rgba(228, 228, 228, 1) 100%, rgba(255, 255, 255, 1) 100%);
  3440. box-sizing:border-box;
  3441. border-width:1px;
  3442. border-style:solid;
  3443. border-color:rgba(121, 121, 121, 1);
  3444. border-radius:10px;
  3445. -moz-box-shadow:none;
  3446. -webkit-box-shadow:none;
  3447. box-shadow:none;
  3448. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3449. font-weight:400;
  3450. font-style:normal;
  3451. }
  3452. #u903 {
  3453. border-width:0px;
  3454. position:absolute;
  3455. left:1472px;
  3456. top:1162px;
  3457. width:100px;
  3458. height:60px;
  3459. display:flex;
  3460. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3461. font-weight:400;
  3462. font-style:normal;
  3463. }
  3464. #u903 .text {
  3465. position:absolute;
  3466. align-self:center;
  3467. padding:2px 2px 2px 2px;
  3468. box-sizing:border-box;
  3469. width:100%;
  3470. }
  3471. #u903_text {
  3472. border-width:0px;
  3473. word-wrap:break-word;
  3474. text-transform:none;
  3475. }
  3476. #u904 {
  3477. border-width:0px;
  3478. position:absolute;
  3479. left:1741px;
  3480. top:914px;
  3481. width:0px;
  3482. height:0px;
  3483. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3484. font-weight:400;
  3485. font-style:normal;
  3486. font-size:28px;
  3487. color:#333333;
  3488. }
  3489. #u904_seg0 {
  3490. border-width:0px;
  3491. position:absolute;
  3492. left:-5px;
  3493. top:0px;
  3494. width:10px;
  3495. height:283px;
  3496. }
  3497. #u904_seg1 {
  3498. border-width:0px;
  3499. position:absolute;
  3500. left:-169px;
  3501. top:273px;
  3502. width:174px;
  3503. height:10px;
  3504. }
  3505. #u904_seg2 {
  3506. border-width:0px;
  3507. position:absolute;
  3508. left:-177px;
  3509. top:268px;
  3510. width:20px;
  3511. height:20px;
  3512. }
  3513. #u904_text {
  3514. border-width:0px;
  3515. position:absolute;
  3516. left:-50px;
  3517. top:216px;
  3518. width:100px;
  3519. word-wrap:break-word;
  3520. text-transform:none;
  3521. visibility:hidden;
  3522. }
  3523. #u905_div {
  3524. border-width:0px;
  3525. position:absolute;
  3526. left:0px;
  3527. top:0px;
  3528. width:109px;
  3529. height:40px;
  3530. background:inherit;
  3531. background-color:rgba(255, 255, 255, 0);
  3532. border:none;
  3533. border-radius:0px;
  3534. -moz-box-shadow:none;
  3535. -webkit-box-shadow:none;
  3536. box-shadow:none;
  3537. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  3538. font-weight:500;
  3539. font-style:normal;
  3540. font-size:18px;
  3541. line-height:40px;
  3542. }
  3543. #u905 {
  3544. border-width:0px;
  3545. position:absolute;
  3546. left:1406px;
  3547. top:514px;
  3548. width:109px;
  3549. height:40px;
  3550. display:flex;
  3551. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  3552. font-weight:500;
  3553. font-style:normal;
  3554. font-size:18px;
  3555. line-height:40px;
  3556. }
  3557. #u905 .text {
  3558. position:absolute;
  3559. align-self:flex-start;
  3560. padding:0px 0px 0px 0px;
  3561. box-sizing:border-box;
  3562. width:100%;
  3563. }
  3564. #u905_text {
  3565. border-width:0px;
  3566. white-space:nowrap;
  3567. text-transform:none;
  3568. }
  3569. #u906_img {
  3570. border-width:0px;
  3571. position:absolute;
  3572. left:0px;
  3573. top:0px;
  3574. width:100px;
  3575. height:60px;
  3576. }
  3577. #u906 {
  3578. border-width:0px;
  3579. position:absolute;
  3580. left:1041px;
  3581. top:1213px;
  3582. width:100px;
  3583. height:60px;
  3584. display:flex;
  3585. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3586. font-weight:400;
  3587. font-style:normal;
  3588. }
  3589. #u906 .text {
  3590. position:absolute;
  3591. align-self:center;
  3592. padding:2px 2px 2px 2px;
  3593. box-sizing:border-box;
  3594. width:100%;
  3595. }
  3596. #u906_text {
  3597. border-width:0px;
  3598. word-wrap:break-word;
  3599. text-transform:none;
  3600. }
  3601. #u907 {
  3602. border-width:0px;
  3603. position:absolute;
  3604. left:963px;
  3605. top:1058px;
  3606. width:0px;
  3607. height:0px;
  3608. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3609. font-weight:400;
  3610. font-style:normal;
  3611. font-size:10px;
  3612. color:#333333;
  3613. }
  3614. #u907_seg0 {
  3615. border-width:0px;
  3616. position:absolute;
  3617. left:0px;
  3618. top:-5px;
  3619. width:133px;
  3620. height:10px;
  3621. }
  3622. #u907_seg1 {
  3623. border-width:0px;
  3624. position:absolute;
  3625. left:123px;
  3626. top:-5px;
  3627. width:10px;
  3628. height:70px;
  3629. }
  3630. #u907_seg2 {
  3631. border-width:0px;
  3632. position:absolute;
  3633. left:118px;
  3634. top:53px;
  3635. width:20px;
  3636. height:20px;
  3637. }
  3638. #u907_text {
  3639. border-width:0px;
  3640. position:absolute;
  3641. left:46px;
  3642. top:-8px;
  3643. width:100px;
  3644. word-wrap:break-word;
  3645. text-transform:none;
  3646. visibility:hidden;
  3647. }
  3648. #u908 {
  3649. border-width:0px;
  3650. position:absolute;
  3651. left:1091px;
  3652. top:998px;
  3653. width:0px;
  3654. height:0px;
  3655. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3656. font-weight:400;
  3657. font-style:normal;
  3658. font-size:10px;
  3659. color:#333333;
  3660. }
  3661. #u908_seg0 {
  3662. border-width:0px;
  3663. position:absolute;
  3664. left:-5px;
  3665. top:0px;
  3666. width:10px;
  3667. height:130px;
  3668. }
  3669. #u908_seg1 {
  3670. border-width:0px;
  3671. position:absolute;
  3672. left:-10px;
  3673. top:113px;
  3674. width:20px;
  3675. height:20px;
  3676. }
  3677. #u908_text {
  3678. border-width:0px;
  3679. position:absolute;
  3680. left:-50px;
  3681. top:54px;
  3682. width:100px;
  3683. word-wrap:break-word;
  3684. text-transform:none;
  3685. visibility:hidden;
  3686. }
  3687. #u909_div {
  3688. border-width:0px;
  3689. position:absolute;
  3690. left:0px;
  3691. top:0px;
  3692. width:100px;
  3693. height:60px;
  3694. background:-webkit-linear-gradient(270deg, rgba(255, 255, 255, 1) 0%, rgba(242, 242, 242, 1) 0%, rgba(228, 228, 228, 1) 100%, rgba(255, 255, 255, 1) 100%);
  3695. background:-moz-linear-gradient(180deg, rgba(255, 255, 255, 1) 0%, rgba(242, 242, 242, 1) 0%, rgba(228, 228, 228, 1) 100%, rgba(255, 255, 255, 1) 100%);
  3696. background:linear-gradient(180deg, rgba(255, 255, 255, 1) 0%, rgba(242, 242, 242, 1) 0%, rgba(228, 228, 228, 1) 100%, rgba(255, 255, 255, 1) 100%);
  3697. box-sizing:border-box;
  3698. border-width:1px;
  3699. border-style:solid;
  3700. border-color:rgba(121, 121, 121, 1);
  3701. border-radius:0px;
  3702. -moz-box-shadow:none;
  3703. -webkit-box-shadow:none;
  3704. box-shadow:none;
  3705. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3706. font-weight:400;
  3707. font-style:normal;
  3708. }
  3709. #u909 {
  3710. border-width:0px;
  3711. position:absolute;
  3712. left:911px;
  3713. top:1316px;
  3714. width:100px;
  3715. height:60px;
  3716. display:flex;
  3717. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3718. font-weight:400;
  3719. font-style:normal;
  3720. }
  3721. #u909 .text {
  3722. position:absolute;
  3723. align-self:center;
  3724. padding:2px 2px 2px 2px;
  3725. box-sizing:border-box;
  3726. width:100%;
  3727. }
  3728. #u909_text {
  3729. border-width:0px;
  3730. word-wrap:break-word;
  3731. text-transform:none;
  3732. }
  3733. #u910 {
  3734. border-width:0px;
  3735. position:absolute;
  3736. left:1041px;
  3737. top:1153px;
  3738. width:0px;
  3739. height:0px;
  3740. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3741. font-weight:400;
  3742. font-style:normal;
  3743. font-size:10px;
  3744. color:#333333;
  3745. }
  3746. #u910_seg0 {
  3747. border-width:0px;
  3748. position:absolute;
  3749. left:-118px;
  3750. top:-5px;
  3751. width:123px;
  3752. height:10px;
  3753. }
  3754. #u910_seg1 {
  3755. border-width:0px;
  3756. position:absolute;
  3757. left:-126px;
  3758. top:-10px;
  3759. width:20px;
  3760. height:20px;
  3761. }
  3762. #u910_text {
  3763. border-width:0px;
  3764. position:absolute;
  3765. left:-109px;
  3766. top:-7px;
  3767. width:100px;
  3768. word-wrap:break-word;
  3769. text-transform:none;
  3770. }
  3771. #u911 {
  3772. border-width:0px;
  3773. position:absolute;
  3774. left:1091px;
  3775. top:1183px;
  3776. width:0px;
  3777. height:0px;
  3778. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3779. font-weight:400;
  3780. font-style:normal;
  3781. font-size:10px;
  3782. color:#333333;
  3783. }
  3784. #u911_seg0 {
  3785. border-width:0px;
  3786. position:absolute;
  3787. left:-5px;
  3788. top:0px;
  3789. width:10px;
  3790. height:35px;
  3791. }
  3792. #u911_seg1 {
  3793. border-width:0px;
  3794. position:absolute;
  3795. left:-10px;
  3796. top:18px;
  3797. width:20px;
  3798. height:20px;
  3799. }
  3800. #u911_text {
  3801. border-width:0px;
  3802. position:absolute;
  3803. left:-50px;
  3804. top:8px;
  3805. width:100px;
  3806. word-wrap:break-word;
  3807. text-transform:none;
  3808. }
  3809. #u912 {
  3810. border-width:0px;
  3811. position:absolute;
  3812. left:1277px;
  3813. top:998px;
  3814. width:0px;
  3815. height:0px;
  3816. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3817. font-weight:400;
  3818. font-style:normal;
  3819. font-size:10px;
  3820. color:#333333;
  3821. }
  3822. #u912_seg0 {
  3823. border-width:0px;
  3824. position:absolute;
  3825. left:-5px;
  3826. top:0px;
  3827. width:10px;
  3828. height:250px;
  3829. }
  3830. #u912_seg1 {
  3831. border-width:0px;
  3832. position:absolute;
  3833. left:-136px;
  3834. top:240px;
  3835. width:141px;
  3836. height:10px;
  3837. }
  3838. #u912_seg2 {
  3839. border-width:0px;
  3840. position:absolute;
  3841. left:-144px;
  3842. top:235px;
  3843. width:20px;
  3844. height:20px;
  3845. }
  3846. #u912_text {
  3847. border-width:0px;
  3848. position:absolute;
  3849. left:-50px;
  3850. top:182px;
  3851. width:100px;
  3852. word-wrap:break-word;
  3853. text-transform:none;
  3854. visibility:hidden;
  3855. }
  3856. #u913 {
  3857. border-width:0px;
  3858. position:absolute;
  3859. left:1091px;
  3860. top:1273px;
  3861. width:0px;
  3862. height:0px;
  3863. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3864. font-weight:400;
  3865. font-style:normal;
  3866. font-size:10px;
  3867. color:#333333;
  3868. }
  3869. #u913_seg0 {
  3870. border-width:0px;
  3871. position:absolute;
  3872. left:-5px;
  3873. top:0px;
  3874. width:10px;
  3875. height:48px;
  3876. }
  3877. #u913_seg1 {
  3878. border-width:0px;
  3879. position:absolute;
  3880. left:-10px;
  3881. top:31px;
  3882. width:20px;
  3883. height:20px;
  3884. }
  3885. #u913_text {
  3886. border-width:0px;
  3887. position:absolute;
  3888. left:-50px;
  3889. top:14px;
  3890. width:100px;
  3891. word-wrap:break-word;
  3892. text-transform:none;
  3893. }
  3894. #u914 {
  3895. border-width:0px;
  3896. position:absolute;
  3897. left:1041px;
  3898. top:1243px;
  3899. width:0px;
  3900. height:0px;
  3901. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3902. font-weight:400;
  3903. font-style:normal;
  3904. font-size:10px;
  3905. color:#333333;
  3906. }
  3907. #u914_seg0 {
  3908. border-width:0px;
  3909. position:absolute;
  3910. left:-85px;
  3911. top:-5px;
  3912. width:85px;
  3913. height:10px;
  3914. }
  3915. #u914_seg1 {
  3916. border-width:0px;
  3917. position:absolute;
  3918. left:-85px;
  3919. top:-5px;
  3920. width:10px;
  3921. height:78px;
  3922. }
  3923. #u914_seg2 {
  3924. border-width:0px;
  3925. position:absolute;
  3926. left:-90px;
  3927. top:61px;
  3928. width:20px;
  3929. height:20px;
  3930. }
  3931. #u914_text {
  3932. border-width:0px;
  3933. position:absolute;
  3934. left:-126px;
  3935. top:-7px;
  3936. width:100px;
  3937. word-wrap:break-word;
  3938. text-transform:none;
  3939. }
  3940. #u915 {
  3941. border-width:0px;
  3942. position:absolute;
  3943. left:873px;
  3944. top:1183px;
  3945. width:0px;
  3946. height:0px;
  3947. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3948. font-weight:400;
  3949. font-style:normal;
  3950. font-size:10px;
  3951. color:#333333;
  3952. }
  3953. #u915_seg0 {
  3954. border-width:0px;
  3955. position:absolute;
  3956. left:-5px;
  3957. top:0px;
  3958. width:10px;
  3959. height:284px;
  3960. }
  3961. #u915_seg1 {
  3962. border-width:0px;
  3963. position:absolute;
  3964. left:-5px;
  3965. top:274px;
  3966. width:173px;
  3967. height:10px;
  3968. }
  3969. #u915_seg2 {
  3970. border-width:0px;
  3971. position:absolute;
  3972. left:156px;
  3973. top:269px;
  3974. width:20px;
  3975. height:20px;
  3976. }
  3977. #u915_text {
  3978. border-width:0px;
  3979. position:absolute;
  3980. left:-50px;
  3981. top:216px;
  3982. width:100px;
  3983. word-wrap:break-word;
  3984. text-transform:none;
  3985. visibility:hidden;
  3986. }
  3987. #u916 {
  3988. border-width:0px;
  3989. position:absolute;
  3990. left:961px;
  3991. top:1376px;
  3992. width:0px;
  3993. height:0px;
  3994. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3995. font-weight:400;
  3996. font-style:normal;
  3997. font-size:10px;
  3998. color:#333333;
  3999. }
  4000. #u916_seg0 {
  4001. border-width:0px;
  4002. position:absolute;
  4003. left:-5px;
  4004. top:0px;
  4005. width:10px;
  4006. height:29px;
  4007. }
  4008. #u916_seg1 {
  4009. border-width:0px;
  4010. position:absolute;
  4011. left:-5px;
  4012. top:19px;
  4013. width:140px;
  4014. height:10px;
  4015. }
  4016. #u916_seg2 {
  4017. border-width:0px;
  4018. position:absolute;
  4019. left:125px;
  4020. top:19px;
  4021. width:10px;
  4022. height:37px;
  4023. }
  4024. #u916_seg3 {
  4025. border-width:0px;
  4026. position:absolute;
  4027. left:120px;
  4028. top:44px;
  4029. width:20px;
  4030. height:20px;
  4031. }
  4032. #u916_text {
  4033. border-width:0px;
  4034. position:absolute;
  4035. left:19px;
  4036. top:16px;
  4037. width:100px;
  4038. word-wrap:break-word;
  4039. text-transform:none;
  4040. visibility:hidden;
  4041. }
  4042. #u917 {
  4043. border-width:0px;
  4044. position:absolute;
  4045. left:1091px;
  4046. top:1376px;
  4047. width:0px;
  4048. height:0px;
  4049. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4050. font-weight:400;
  4051. font-style:normal;
  4052. font-size:10px;
  4053. color:#333333;
  4054. }
  4055. #u917_seg0 {
  4056. border-width:0px;
  4057. position:absolute;
  4058. left:-5px;
  4059. top:0px;
  4060. width:10px;
  4061. height:61px;
  4062. }
  4063. #u917_seg1 {
  4064. border-width:0px;
  4065. position:absolute;
  4066. left:-10px;
  4067. top:44px;
  4068. width:20px;
  4069. height:20px;
  4070. }
  4071. #u917_text {
  4072. border-width:0px;
  4073. position:absolute;
  4074. left:-50px;
  4075. top:20px;
  4076. width:100px;
  4077. word-wrap:break-word;
  4078. text-transform:none;
  4079. visibility:hidden;
  4080. }