styles.css 70 KB

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