styles.css 77 KB

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