styles.css 63 KB

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