styles.css 93 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395439643974398439944004401440244034404440544064407440844094410441144124413441444154416441744184419442044214422442344244425442644274428442944304431443244334434443544364437443844394440444144424443444444454446444744484449445044514452445344544455445644574458445944604461446244634464446544664467446844694470447144724473447444754476447744784479448044814482448344844485448644874488448944904491449244934494449544964497449844994500450145024503450445054506450745084509451045114512451345144515451645174518451945204521452245234524452545264527452845294530453145324533453445354536453745384539454045414542454345444545454645474548454945504551455245534554455545564557455845594560456145624563456445654566456745684569457045714572457345744575457645774578457945804581458245834584458545864587458845894590459145924593459445954596459745984599460046014602460346044605460646074608460946104611461246134614461546164617461846194620462146224623462446254626462746284629463046314632463346344635463646374638463946404641464246434644464546464647464846494650465146524653465446554656465746584659466046614662466346644665466646674668466946704671467246734674467546764677467846794680468146824683468446854686468746884689469046914692469346944695469646974698469947004701470247034704470547064707470847094710471147124713471447154716471747184719472047214722472347244725472647274728472947304731473247334734473547364737473847394740474147424743474447454746474747484749475047514752475347544755475647574758475947604761476247634764476547664767476847694770477147724773477447754776477747784779478047814782478347844785478647874788478947904791479247934794479547964797479847994800480148024803480448054806480748084809481048114812481348144815481648174818481948204821482248234824482548264827482848294830483148324833483448354836483748384839484048414842484348444845484648474848484948504851485248534854485548564857485848594860486148624863486448654866486748684869487048714872487348744875487648774878487948804881488248834884488548864887488848894890489148924893489448954896489748984899490049014902490349044905490649074908490949104911491249134914491549164917491849194920492149224923492449254926492749284929493049314932493349344935493649374938493949404941494249434944494549464947494849494950495149524953495449554956495749584959496049614962496349644965496649674968496949704971497249734974497549764977497849794980498149824983498449854986498749884989499049914992499349944995499649974998499950005001500250035004500550065007500850095010501150125013501450155016501750185019502050215022502350245025502650275028502950305031503250335034503550365037503850395040504150425043504450455046504750485049505050515052505350545055505650575058505950605061506250635064506550665067506850695070507150725073507450755076507750785079508050815082508350845085508650875088508950905091
  1. body {
  2. margin:0px;
  3. background-image:none;
  4. position:relative;
  5. left:-24px;
  6. width:1856px;
  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. #u2681 {
  20. border-width:0px;
  21. position:absolute;
  22. left:0px;
  23. top:0px;
  24. width:0px;
  25. height:0px;
  26. }
  27. #u2682_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. #u2682 {
  43. border-width:0px;
  44. position:absolute;
  45. left:280px;
  46. top:37px;
  47. width:1184px;
  48. height:64px;
  49. display:flex;
  50. }
  51. #u2682 .text {
  52. position:absolute;
  53. align-self:center;
  54. padding:2px 2px 2px 2px;
  55. box-sizing:border-box;
  56. width:100%;
  57. }
  58. #u2682_text {
  59. border-width:0px;
  60. word-wrap:break-word;
  61. text-transform:none;
  62. visibility:hidden;
  63. }
  64. #u2683_img {
  65. border-width:0px;
  66. position:absolute;
  67. left:0px;
  68. top:0px;
  69. width:20px;
  70. height:15px;
  71. }
  72. #u2683 {
  73. border-width:0px;
  74. position:absolute;
  75. left:308px;
  76. top:62px;
  77. width:20px;
  78. height:15px;
  79. display:flex;
  80. }
  81. #u2683 .text {
  82. position:absolute;
  83. align-self:center;
  84. padding:2px 2px 2px 2px;
  85. box-sizing:border-box;
  86. width:100%;
  87. }
  88. #u2683_text {
  89. border-width:0px;
  90. word-wrap:break-word;
  91. text-transform:none;
  92. visibility:hidden;
  93. }
  94. #u2684 {
  95. border-width:0px;
  96. position:absolute;
  97. left:0px;
  98. top:0px;
  99. width:0px;
  100. height:0px;
  101. }
  102. #u2685_img {
  103. border-width:0px;
  104. position:absolute;
  105. left:0px;
  106. top:0px;
  107. width:24px;
  108. height:24px;
  109. }
  110. #u2685 {
  111. border-width:0px;
  112. position:absolute;
  113. left:1341px;
  114. top:58px;
  115. width:24px;
  116. height:24px;
  117. display:flex;
  118. }
  119. #u2685 .text {
  120. position:absolute;
  121. align-self:center;
  122. padding:2px 2px 2px 2px;
  123. box-sizing:border-box;
  124. width:100%;
  125. }
  126. #u2685_text {
  127. border-width:0px;
  128. word-wrap:break-word;
  129. text-transform:none;
  130. visibility:hidden;
  131. }
  132. #u2686_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. #u2686 {
  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. #u2686 .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. #u2686_text {
  168. border-width:0px;
  169. white-space:nowrap;
  170. text-transform:none;
  171. }
  172. #u2687_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. #u2687 {
  188. border-width:0px;
  189. position:absolute;
  190. left:24px;
  191. top:37px;
  192. width:256px;
  193. height:1012px;
  194. display:flex;
  195. }
  196. #u2687 .text {
  197. position:absolute;
  198. align-self:center;
  199. padding:2px 2px 2px 2px;
  200. box-sizing:border-box;
  201. width:100%;
  202. }
  203. #u2687_text {
  204. border-width:0px;
  205. word-wrap:break-word;
  206. text-transform:none;
  207. visibility:hidden;
  208. }
  209. #u2688_img {
  210. border-width:0px;
  211. position:absolute;
  212. left:0px;
  213. top:0px;
  214. width:256px;
  215. height:65px;
  216. }
  217. #u2688 {
  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. #u2688 .text {
  234. position:absolute;
  235. align-self:center;
  236. padding:0px 0px 0px 68px;
  237. box-sizing:border-box;
  238. width:100%;
  239. }
  240. #u2688_text {
  241. border-width:0px;
  242. word-wrap:break-word;
  243. text-transform:none;
  244. }
  245. #u2689 {
  246. border-width:0px;
  247. position:absolute;
  248. left:0px;
  249. top:0px;
  250. width:0px;
  251. height:0px;
  252. }
  253. #u2690 {
  254. border-width:0px;
  255. position:absolute;
  256. left:0px;
  257. top:0px;
  258. width:0px;
  259. height:0px;
  260. }
  261. #u2691 {
  262. border-width:0px;
  263. position:absolute;
  264. left:0px;
  265. top:0px;
  266. width:0px;
  267. height:0px;
  268. }
  269. #u2692_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. #u2692 {
  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. #u2692 .text {
  308. position:absolute;
  309. align-self:center;
  310. padding:16px 2px 16px 50px;
  311. box-sizing:border-box;
  312. width:100%;
  313. }
  314. #u2692_text {
  315. border-width:0px;
  316. word-wrap:break-word;
  317. text-transform:none;
  318. }
  319. #u2693_img {
  320. border-width:0px;
  321. position:absolute;
  322. left:0px;
  323. top:0px;
  324. width:14px;
  325. height:14px;
  326. }
  327. #u2693 {
  328. border-width:0px;
  329. position:absolute;
  330. left:48px;
  331. top:122px;
  332. width:14px;
  333. height:14px;
  334. display:flex;
  335. }
  336. #u2693 .text {
  337. position:absolute;
  338. align-self:center;
  339. padding:2px 2px 2px 2px;
  340. box-sizing:border-box;
  341. width:100%;
  342. }
  343. #u2693_text {
  344. border-width:0px;
  345. word-wrap:break-word;
  346. text-transform:none;
  347. visibility:hidden;
  348. }
  349. #u2694_img {
  350. border-width:0px;
  351. position:absolute;
  352. left:0px;
  353. top:0px;
  354. width:7px;
  355. height:14px;
  356. }
  357. #u2694 {
  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. #u2694 .text {
  372. position:absolute;
  373. align-self:center;
  374. padding:0px 0px 0px 0px;
  375. box-sizing:border-box;
  376. width:100%;
  377. }
  378. #u2694_text {
  379. border-width:0px;
  380. white-space:nowrap;
  381. text-transform:none;
  382. }
  383. #u2695 {
  384. border-width:0px;
  385. position:absolute;
  386. left:0px;
  387. top:0px;
  388. width:0px;
  389. height:0px;
  390. }
  391. #u2696_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. #u2696 {
  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. #u2696 .text {
  430. position:absolute;
  431. align-self:center;
  432. padding:16px 2px 16px 50px;
  433. box-sizing:border-box;
  434. width:100%;
  435. }
  436. #u2696_text {
  437. border-width:0px;
  438. word-wrap:break-word;
  439. text-transform:none;
  440. }
  441. #u2697_img {
  442. border-width:0px;
  443. position:absolute;
  444. left:0px;
  445. top:0px;
  446. width:14px;
  447. height:14px;
  448. }
  449. #u2697 {
  450. border-width:0px;
  451. position:absolute;
  452. left:48px;
  453. top:825px;
  454. width:14px;
  455. height:14px;
  456. display:flex;
  457. }
  458. #u2697 .text {
  459. position:absolute;
  460. align-self:center;
  461. padding:2px 2px 2px 2px;
  462. box-sizing:border-box;
  463. width:100%;
  464. }
  465. #u2697_text {
  466. border-width:0px;
  467. word-wrap:break-word;
  468. text-transform:none;
  469. visibility:hidden;
  470. }
  471. #u2698_img {
  472. border-width:0px;
  473. position:absolute;
  474. left:0px;
  475. top:0px;
  476. width:7px;
  477. height:14px;
  478. }
  479. #u2698 {
  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. #u2698 .text {
  494. position:absolute;
  495. align-self:center;
  496. padding:0px 0px 0px 0px;
  497. box-sizing:border-box;
  498. width:100%;
  499. }
  500. #u2698_text {
  501. border-width:0px;
  502. white-space:nowrap;
  503. text-transform:none;
  504. }
  505. #u2699 {
  506. border-width:0px;
  507. position:absolute;
  508. left:0px;
  509. top:0px;
  510. width:0px;
  511. height:0px;
  512. }
  513. #u2700_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. #u2700 {
  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. #u2700 .text {
  552. position:absolute;
  553. align-self:center;
  554. padding:16px 2px 16px 50px;
  555. box-sizing:border-box;
  556. width:100%;
  557. }
  558. #u2700_text {
  559. border-width:0px;
  560. word-wrap:break-word;
  561. text-transform:none;
  562. }
  563. #u2701_img {
  564. border-width:0px;
  565. position:absolute;
  566. left:0px;
  567. top:0px;
  568. width:14px;
  569. height:14px;
  570. }
  571. #u2701 {
  572. border-width:0px;
  573. position:absolute;
  574. left:48px;
  575. top:879px;
  576. width:14px;
  577. height:14px;
  578. display:flex;
  579. }
  580. #u2701 .text {
  581. position:absolute;
  582. align-self:center;
  583. padding:2px 2px 2px 2px;
  584. box-sizing:border-box;
  585. width:100%;
  586. }
  587. #u2701_text {
  588. border-width:0px;
  589. word-wrap:break-word;
  590. text-transform:none;
  591. visibility:hidden;
  592. }
  593. #u2702_img {
  594. border-width:0px;
  595. position:absolute;
  596. left:0px;
  597. top:0px;
  598. width:7px;
  599. height:14px;
  600. }
  601. #u2702 {
  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. #u2702 .text {
  616. position:absolute;
  617. align-self:center;
  618. padding:0px 0px 0px 0px;
  619. box-sizing:border-box;
  620. width:100%;
  621. }
  622. #u2702_text {
  623. border-width:0px;
  624. white-space:nowrap;
  625. text-transform:none;
  626. }
  627. #u2703_img {
  628. border-width:0px;
  629. position:absolute;
  630. left:0px;
  631. top:0px;
  632. width:7px;
  633. height:14px;
  634. }
  635. #u2703 {
  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. #u2703 .text {
  650. position:absolute;
  651. align-self:center;
  652. padding:0px 0px 0px 0px;
  653. box-sizing:border-box;
  654. width:100%;
  655. }
  656. #u2703_text {
  657. border-width:0px;
  658. white-space:nowrap;
  659. text-transform:none;
  660. }
  661. #u2704 {
  662. border-width:0px;
  663. position:absolute;
  664. left:0px;
  665. top:0px;
  666. width:0px;
  667. height:0px;
  668. }
  669. #u2705_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. #u2705 {
  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. #u2705 .text {
  708. position:absolute;
  709. align-self:center;
  710. padding:16px 2px 16px 50px;
  711. box-sizing:border-box;
  712. width:100%;
  713. }
  714. #u2705_text {
  715. border-width:0px;
  716. word-wrap:break-word;
  717. text-transform:none;
  718. }
  719. #u2706_img {
  720. border-width:0px;
  721. position:absolute;
  722. left:0px;
  723. top:0px;
  724. width:15px;
  725. height:14px;
  726. }
  727. #u2706 {
  728. border-width:0px;
  729. position:absolute;
  730. left:48px;
  731. top:173px;
  732. width:15px;
  733. height:14px;
  734. display:flex;
  735. }
  736. #u2706 .text {
  737. position:absolute;
  738. align-self:center;
  739. padding:2px 2px 2px 2px;
  740. box-sizing:border-box;
  741. width:100%;
  742. }
  743. #u2706_text {
  744. border-width:0px;
  745. word-wrap:break-word;
  746. text-transform:none;
  747. visibility:hidden;
  748. }
  749. #u2707_img {
  750. border-width:0px;
  751. position:absolute;
  752. left:0px;
  753. top:0px;
  754. width:7px;
  755. height:14px;
  756. }
  757. #u2707 {
  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. #u2707 .text {
  772. position:absolute;
  773. align-self:center;
  774. padding:0px 0px 0px 0px;
  775. box-sizing:border-box;
  776. width:100%;
  777. }
  778. #u2707_text {
  779. border-width:0px;
  780. white-space:nowrap;
  781. text-transform:none;
  782. }
  783. #u2708 {
  784. border-width:0px;
  785. position:absolute;
  786. left:0px;
  787. top:0px;
  788. width:0px;
  789. height:0px;
  790. }
  791. #u2709 {
  792. border-width:0px;
  793. position:absolute;
  794. left:0px;
  795. top:0px;
  796. width:0px;
  797. height:0px;
  798. }
  799. #u2710_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. #u2710 {
  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. #u2710 .text {
  838. position:absolute;
  839. align-self:center;
  840. padding:12px 0px 12px 50px;
  841. box-sizing:border-box;
  842. width:100%;
  843. }
  844. #u2710_text {
  845. border-width:0px;
  846. word-wrap:break-word;
  847. text-transform:none;
  848. }
  849. #u2711 {
  850. border-width:0px;
  851. position:absolute;
  852. left:0px;
  853. top:0px;
  854. width:0px;
  855. height:0px;
  856. }
  857. #u2712_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. #u2712 {
  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. #u2712 .text {
  896. position:absolute;
  897. align-self:center;
  898. padding:16px 2px 16px 50px;
  899. box-sizing:border-box;
  900. width:100%;
  901. }
  902. #u2712_text {
  903. border-width:0px;
  904. word-wrap:break-word;
  905. text-transform:none;
  906. }
  907. #u2713_img {
  908. border-width:0px;
  909. position:absolute;
  910. left:0px;
  911. top:0px;
  912. width:14px;
  913. height:14px;
  914. }
  915. #u2713 {
  916. border-width:0px;
  917. position:absolute;
  918. left:48px;
  919. top:933px;
  920. width:14px;
  921. height:14px;
  922. display:flex;
  923. }
  924. #u2713 .text {
  925. position:absolute;
  926. align-self:center;
  927. padding:2px 2px 2px 2px;
  928. box-sizing:border-box;
  929. width:100%;
  930. }
  931. #u2713_text {
  932. border-width:0px;
  933. word-wrap:break-word;
  934. text-transform:none;
  935. visibility:hidden;
  936. }
  937. #u2714_img {
  938. border-width:0px;
  939. position:absolute;
  940. left:0px;
  941. top:0px;
  942. width:7px;
  943. height:14px;
  944. }
  945. #u2714 {
  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. #u2714 .text {
  960. position:absolute;
  961. align-self:center;
  962. padding:0px 0px 0px 0px;
  963. box-sizing:border-box;
  964. width:100%;
  965. }
  966. #u2714_text {
  967. border-width:0px;
  968. white-space:nowrap;
  969. text-transform:none;
  970. }
  971. #u2715 {
  972. border-width:0px;
  973. position:absolute;
  974. left:0px;
  975. top:0px;
  976. width:0px;
  977. height:0px;
  978. }
  979. #u2716_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. #u2716 {
  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. #u2716 .text {
  1018. position:absolute;
  1019. align-self:center;
  1020. padding:16px 2px 16px 50px;
  1021. box-sizing:border-box;
  1022. width:100%;
  1023. }
  1024. #u2716_text {
  1025. border-width:0px;
  1026. word-wrap:break-word;
  1027. text-transform:none;
  1028. }
  1029. #u2717_img {
  1030. border-width:0px;
  1031. position:absolute;
  1032. left:0px;
  1033. top:0px;
  1034. width:14px;
  1035. height:14px;
  1036. }
  1037. #u2717 {
  1038. border-width:0px;
  1039. position:absolute;
  1040. left:48px;
  1041. top:987px;
  1042. width:14px;
  1043. height:14px;
  1044. display:flex;
  1045. }
  1046. #u2717 .text {
  1047. position:absolute;
  1048. align-self:center;
  1049. padding:2px 2px 2px 2px;
  1050. box-sizing:border-box;
  1051. width:100%;
  1052. }
  1053. #u2717_text {
  1054. border-width:0px;
  1055. word-wrap:break-word;
  1056. text-transform:none;
  1057. visibility:hidden;
  1058. }
  1059. #u2718_img {
  1060. border-width:0px;
  1061. position:absolute;
  1062. left:0px;
  1063. top:0px;
  1064. width:7px;
  1065. height:14px;
  1066. }
  1067. #u2718 {
  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. #u2718 .text {
  1082. position:absolute;
  1083. align-self:center;
  1084. padding:0px 0px 0px 0px;
  1085. box-sizing:border-box;
  1086. width:100%;
  1087. }
  1088. #u2718_text {
  1089. border-width:0px;
  1090. white-space:nowrap;
  1091. text-transform:none;
  1092. }
  1093. #u2719 {
  1094. border-width:0px;
  1095. position:absolute;
  1096. left:0px;
  1097. top:0px;
  1098. width:0px;
  1099. height:0px;
  1100. }
  1101. #u2720_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. #u2720 {
  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. #u2720 .text {
  1140. position:absolute;
  1141. align-self:center;
  1142. padding:12px 0px 12px 50px;
  1143. box-sizing:border-box;
  1144. width:100%;
  1145. }
  1146. #u2720_text {
  1147. border-width:0px;
  1148. word-wrap:break-word;
  1149. text-transform:none;
  1150. }
  1151. #u2721 {
  1152. border-width:0px;
  1153. position:absolute;
  1154. left:0px;
  1155. top:0px;
  1156. width:0px;
  1157. height:0px;
  1158. }
  1159. #u2722_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. #u2722 {
  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. #u2722 .text {
  1198. position:absolute;
  1199. align-self:center;
  1200. padding:12px 0px 12px 50px;
  1201. box-sizing:border-box;
  1202. width:100%;
  1203. }
  1204. #u2722_text {
  1205. border-width:0px;
  1206. word-wrap:break-word;
  1207. text-transform:none;
  1208. }
  1209. #u2723_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. #u2723 {
  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. #u2723 .text {
  1248. position:absolute;
  1249. align-self:center;
  1250. padding:12px 0px 12px 50px;
  1251. box-sizing:border-box;
  1252. width:100%;
  1253. }
  1254. #u2723_text {
  1255. border-width:0px;
  1256. word-wrap:break-word;
  1257. text-transform:none;
  1258. }
  1259. #u2724_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. #u2724 {
  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. #u2724 .text {
  1298. position:absolute;
  1299. align-self:center;
  1300. padding:12px 0px 12px 50px;
  1301. box-sizing:border-box;
  1302. width:100%;
  1303. }
  1304. #u2724_text {
  1305. border-width:0px;
  1306. word-wrap:break-word;
  1307. text-transform:none;
  1308. }
  1309. #u2725_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. #u2725 {
  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. #u2725 .text {
  1348. position:absolute;
  1349. align-self:center;
  1350. padding:12px 0px 12px 50px;
  1351. box-sizing:border-box;
  1352. width:100%;
  1353. }
  1354. #u2725_text {
  1355. border-width:0px;
  1356. word-wrap:break-word;
  1357. text-transform:none;
  1358. }
  1359. #u2726_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. #u2726 {
  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. #u2726 .text {
  1398. position:absolute;
  1399. align-self:center;
  1400. padding:12px 0px 12px 50px;
  1401. box-sizing:border-box;
  1402. width:100%;
  1403. }
  1404. #u2726_text {
  1405. border-width:0px;
  1406. word-wrap:break-word;
  1407. text-transform:none;
  1408. }
  1409. #u2727_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. #u2727 {
  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. #u2727 .text {
  1448. position:absolute;
  1449. align-self:center;
  1450. padding:12px 0px 12px 50px;
  1451. box-sizing:border-box;
  1452. width:100%;
  1453. }
  1454. #u2727_text {
  1455. border-width:0px;
  1456. word-wrap:break-word;
  1457. text-transform:none;
  1458. }
  1459. #u2728_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. #u2728 {
  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. #u2728 .text {
  1498. position:absolute;
  1499. align-self:center;
  1500. padding:12px 0px 12px 50px;
  1501. box-sizing:border-box;
  1502. width:100%;
  1503. }
  1504. #u2728_text {
  1505. border-width:0px;
  1506. word-wrap:break-word;
  1507. text-transform:none;
  1508. }
  1509. #u2729_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. #u2729 {
  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. #u2729 .text {
  1548. position:absolute;
  1549. align-self:center;
  1550. padding:12px 0px 12px 50px;
  1551. box-sizing:border-box;
  1552. width:100%;
  1553. }
  1554. #u2729_text {
  1555. border-width:0px;
  1556. word-wrap:break-word;
  1557. text-transform:none;
  1558. }
  1559. #u2730_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. #u2730 {
  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. #u2730 .text {
  1606. position:absolute;
  1607. align-self:center;
  1608. padding:12px 0px 12px 74px;
  1609. box-sizing:border-box;
  1610. width:100%;
  1611. }
  1612. #u2730_text {
  1613. border-width:0px;
  1614. word-wrap:break-word;
  1615. text-transform:none;
  1616. }
  1617. #u2731 {
  1618. border-width:0px;
  1619. position:absolute;
  1620. left:0px;
  1621. top:0px;
  1622. width:0px;
  1623. height:0px;
  1624. }
  1625. #u2732_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. #u2732 {
  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. #u2732 .text {
  1664. position:absolute;
  1665. align-self:center;
  1666. padding:12px 0px 12px 50px;
  1667. box-sizing:border-box;
  1668. width:100%;
  1669. }
  1670. #u2732_text {
  1671. border-width:0px;
  1672. word-wrap:break-word;
  1673. text-transform:none;
  1674. }
  1675. #u2733_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. #u2733 {
  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. #u2733 .text {
  1714. position:absolute;
  1715. align-self:center;
  1716. padding:12px 0px 12px 50px;
  1717. box-sizing:border-box;
  1718. width:100%;
  1719. }
  1720. #u2733_text {
  1721. border-width:0px;
  1722. word-wrap:break-word;
  1723. text-transform:none;
  1724. }
  1725. #u2734_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. #u2734 {
  1741. border-width:0px;
  1742. position:absolute;
  1743. left:280px;
  1744. top:101px;
  1745. width:1239px;
  1746. height:948px;
  1747. display:flex;
  1748. }
  1749. #u2734 .text {
  1750. position:absolute;
  1751. align-self:center;
  1752. padding:2px 2px 2px 2px;
  1753. box-sizing:border-box;
  1754. width:100%;
  1755. }
  1756. #u2734_text {
  1757. border-width:0px;
  1758. word-wrap:break-word;
  1759. text-transform:none;
  1760. visibility:hidden;
  1761. }
  1762. #u2735 {
  1763. border-width:0px;
  1764. position:absolute;
  1765. left:0px;
  1766. top:0px;
  1767. width:0px;
  1768. height:0px;
  1769. }
  1770. #u2736_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. #u2736 {
  1793. border-width:0px;
  1794. position:absolute;
  1795. left:287px;
  1796. top:172px;
  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. #u2736 .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. #u2736_text {
  1816. border-width:0px;
  1817. word-wrap:break-word;
  1818. text-transform:none;
  1819. visibility:hidden;
  1820. }
  1821. #u2737 {
  1822. border-width:0px;
  1823. position:absolute;
  1824. left:287px;
  1825. top:173px;
  1826. width:32px;
  1827. height:32px;
  1828. }
  1829. #u2737_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. #u2737_state0_content {
  1848. border-width:0px;
  1849. position:absolute;
  1850. left:0px;
  1851. top:0px;
  1852. width:1px;
  1853. height:1px;
  1854. }
  1855. #u2738 {
  1856. border-width:0px;
  1857. position:absolute;
  1858. left:1404px;
  1859. top:173px;
  1860. width:32px;
  1861. height:32px;
  1862. }
  1863. #u2738_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. #u2738_state0_content {
  1882. border-width:0px;
  1883. position:absolute;
  1884. left:0px;
  1885. top:0px;
  1886. width:1px;
  1887. height:1px;
  1888. }
  1889. #u2739_div {
  1890. border-width:0px;
  1891. position:absolute;
  1892. left:0px;
  1893. top:0px;
  1894. width:1216px;
  1895. height:51px;
  1896. background:inherit;
  1897. background-color:rgba(255, 255, 255, 1);
  1898. box-sizing:border-box;
  1899. border-width:1px;
  1900. border-style:solid;
  1901. border-color:rgba(233, 233, 233, 1);
  1902. border-left:0px;
  1903. border-right:0px;
  1904. border-radius:0px;
  1905. border-top-left-radius:0px;
  1906. border-top-right-radius:0px;
  1907. border-bottom-right-radius:0px;
  1908. border-bottom-left-radius:0px;
  1909. -moz-box-shadow:none;
  1910. -webkit-box-shadow:none;
  1911. box-shadow:none;
  1912. font-family:"Malayalam MN", sans-serif;
  1913. font-weight:400;
  1914. font-style:normal;
  1915. text-align:left;
  1916. }
  1917. #u2739 {
  1918. border-width:0px;
  1919. position:absolute;
  1920. left:287px;
  1921. top:110px;
  1922. width:1216px;
  1923. height:51px;
  1924. display:flex;
  1925. font-family:"Malayalam MN", sans-serif;
  1926. font-weight:400;
  1927. font-style:normal;
  1928. text-align:left;
  1929. }
  1930. #u2739 .text {
  1931. position:absolute;
  1932. align-self:flex-start;
  1933. padding:18px 2px 2px 36px;
  1934. box-sizing:border-box;
  1935. width:100%;
  1936. }
  1937. #u2739_text {
  1938. border-width:0px;
  1939. word-wrap:break-word;
  1940. text-transform:none;
  1941. visibility:hidden;
  1942. }
  1943. #u2740_div {
  1944. border-width:0px;
  1945. position:absolute;
  1946. left:0px;
  1947. top:0px;
  1948. width:7px;
  1949. height:25px;
  1950. background:inherit;
  1951. background-color:rgba(40, 54, 254, 1);
  1952. border:none;
  1953. border-radius:0px;
  1954. -moz-box-shadow:none;
  1955. -webkit-box-shadow:none;
  1956. box-shadow:none;
  1957. }
  1958. #u2740 {
  1959. border-width:0px;
  1960. position:absolute;
  1961. left:303px;
  1962. top:123px;
  1963. width:7px;
  1964. height:25px;
  1965. display:flex;
  1966. }
  1967. #u2740 .text {
  1968. position:absolute;
  1969. align-self:center;
  1970. padding:2px 2px 2px 2px;
  1971. box-sizing:border-box;
  1972. width:100%;
  1973. }
  1974. #u2740_text {
  1975. border-width:0px;
  1976. word-wrap:break-word;
  1977. text-transform:none;
  1978. visibility:hidden;
  1979. }
  1980. #u2741_div {
  1981. border-width:0px;
  1982. position:absolute;
  1983. left:0px;
  1984. top:0px;
  1985. width:56px;
  1986. height:16px;
  1987. background:inherit;
  1988. background-color:rgba(255, 255, 255, 0);
  1989. border:none;
  1990. border-radius:0px;
  1991. -moz-box-shadow:none;
  1992. -webkit-box-shadow:none;
  1993. box-shadow:none;
  1994. font-family:"Arial Negreta", "Arial Normal", "Arial", sans-serif;
  1995. font-weight:700;
  1996. font-style:normal;
  1997. font-size:14px;
  1998. color:#2836FE;
  1999. }
  2000. #u2741 {
  2001. border-width:0px;
  2002. position:absolute;
  2003. left:318px;
  2004. top:128px;
  2005. width:56px;
  2006. height:16px;
  2007. display:flex;
  2008. font-family:"Arial Negreta", "Arial Normal", "Arial", sans-serif;
  2009. font-weight:700;
  2010. font-style:normal;
  2011. font-size:14px;
  2012. color:#2836FE;
  2013. }
  2014. #u2741 .text {
  2015. position:absolute;
  2016. align-self:flex-start;
  2017. padding:0px 0px 0px 0px;
  2018. box-sizing:border-box;
  2019. width:100%;
  2020. }
  2021. #u2741_text {
  2022. border-width:0px;
  2023. white-space:nowrap;
  2024. text-transform:none;
  2025. }
  2026. #u2742_div {
  2027. border-width:0px;
  2028. position:absolute;
  2029. left:0px;
  2030. top:0px;
  2031. width:95px;
  2032. height:37px;
  2033. background:inherit;
  2034. background-color:rgba(40, 54, 254, 1);
  2035. border:none;
  2036. border-radius:4px;
  2037. -moz-box-shadow:none;
  2038. -webkit-box-shadow:none;
  2039. box-shadow:none;
  2040. font-family:"Microsoft Tai Le", sans-serif;
  2041. font-weight:400;
  2042. font-style:normal;
  2043. font-size:14px;
  2044. color:#FFFFFF;
  2045. line-height:22px;
  2046. }
  2047. #u2742 {
  2048. border-width:0px;
  2049. position:absolute;
  2050. left:1385px;
  2051. top:180px;
  2052. width:95px;
  2053. height:37px;
  2054. display:flex;
  2055. font-family:"Microsoft Tai Le", sans-serif;
  2056. font-weight:400;
  2057. font-style:normal;
  2058. font-size:14px;
  2059. color:#FFFFFF;
  2060. line-height:22px;
  2061. }
  2062. #u2742 .text {
  2063. position:absolute;
  2064. align-self:center;
  2065. padding:0px 16px 0px 16px;
  2066. box-sizing:border-box;
  2067. width:100%;
  2068. }
  2069. #u2742_text {
  2070. border-width:0px;
  2071. word-wrap:break-word;
  2072. text-transform:none;
  2073. }
  2074. #u2743 {
  2075. border-width:0px;
  2076. position:absolute;
  2077. left:0px;
  2078. top:0px;
  2079. width:0px;
  2080. height:0px;
  2081. }
  2082. #u2744 {
  2083. border-width:0px;
  2084. position:absolute;
  2085. left:0px;
  2086. top:0px;
  2087. width:0px;
  2088. height:0px;
  2089. }
  2090. #u2745_div {
  2091. border-width:0px;
  2092. position:absolute;
  2093. left:0px;
  2094. top:0px;
  2095. width:1177px;
  2096. height:54px;
  2097. background:inherit;
  2098. background-color:rgba(250, 250, 250, 1);
  2099. box-sizing:border-box;
  2100. border-width:1px;
  2101. border-style:solid;
  2102. border-color:rgba(232, 232, 232, 1);
  2103. border-radius:4px;
  2104. border-bottom-right-radius:0px;
  2105. border-bottom-left-radius:0px;
  2106. -moz-box-shadow:none;
  2107. -webkit-box-shadow:none;
  2108. box-shadow:none;
  2109. font-family:"Microsoft YaHei", sans-serif;
  2110. font-weight:400;
  2111. font-style:normal;
  2112. font-size:12px;
  2113. color:#666666;
  2114. line-height:18px;
  2115. }
  2116. #u2745 {
  2117. border-width:0px;
  2118. position:absolute;
  2119. left:303px;
  2120. top:238px;
  2121. width:1177px;
  2122. height:54px;
  2123. display:flex;
  2124. font-family:"Microsoft YaHei", sans-serif;
  2125. font-weight:400;
  2126. font-style:normal;
  2127. font-size:12px;
  2128. color:#666666;
  2129. line-height:18px;
  2130. }
  2131. #u2745 .text {
  2132. position:absolute;
  2133. align-self:center;
  2134. padding:2px 16px 2px 16px;
  2135. box-sizing:border-box;
  2136. width:100%;
  2137. }
  2138. #u2745_text {
  2139. border-width:0px;
  2140. word-wrap:break-word;
  2141. text-transform:none;
  2142. visibility:hidden;
  2143. }
  2144. #u2746_div {
  2145. border-width:0px;
  2146. position:absolute;
  2147. left:0px;
  2148. top:0px;
  2149. width:1177px;
  2150. height:54px;
  2151. background:inherit;
  2152. background-color:rgba(255, 255, 255, 1);
  2153. box-sizing:border-box;
  2154. border-width:1px;
  2155. border-style:solid;
  2156. border-color:rgba(232, 232, 232, 1);
  2157. border-left:0px;
  2158. border-right:0px;
  2159. border-radius:4px;
  2160. border-top-left-radius:0px;
  2161. border-top-right-radius:0px;
  2162. border-bottom-right-radius:0px;
  2163. border-bottom-left-radius:0px;
  2164. -moz-box-shadow:none;
  2165. -webkit-box-shadow:none;
  2166. box-shadow:none;
  2167. font-family:"Microsoft YaHei", sans-serif;
  2168. font-weight:400;
  2169. font-style:normal;
  2170. font-size:12px;
  2171. color:#666666;
  2172. line-height:18px;
  2173. }
  2174. #u2746 {
  2175. border-width:0px;
  2176. position:absolute;
  2177. left:303px;
  2178. top:291px;
  2179. width:1177px;
  2180. height:54px;
  2181. display:flex;
  2182. font-family:"Microsoft YaHei", sans-serif;
  2183. font-weight:400;
  2184. font-style:normal;
  2185. font-size:12px;
  2186. color:#666666;
  2187. line-height:18px;
  2188. }
  2189. #u2746 .text {
  2190. position:absolute;
  2191. align-self:center;
  2192. padding:2px 16px 2px 16px;
  2193. box-sizing:border-box;
  2194. width:100%;
  2195. }
  2196. #u2746_text {
  2197. border-width:0px;
  2198. word-wrap:break-word;
  2199. text-transform:none;
  2200. visibility:hidden;
  2201. }
  2202. #u2747_div {
  2203. border-width:0px;
  2204. position:absolute;
  2205. left:0px;
  2206. top:0px;
  2207. width:1177px;
  2208. height:54px;
  2209. background:inherit;
  2210. background-color:rgba(255, 255, 255, 1);
  2211. box-sizing:border-box;
  2212. border-width:1px;
  2213. border-style:solid;
  2214. border-color:rgba(232, 232, 232, 1);
  2215. border-left:0px;
  2216. border-right:0px;
  2217. border-radius:4px;
  2218. border-top-left-radius:0px;
  2219. border-top-right-radius:0px;
  2220. border-bottom-right-radius:0px;
  2221. border-bottom-left-radius:0px;
  2222. -moz-box-shadow:none;
  2223. -webkit-box-shadow:none;
  2224. box-shadow:none;
  2225. font-family:"Microsoft YaHei", sans-serif;
  2226. font-weight:400;
  2227. font-style:normal;
  2228. font-size:12px;
  2229. color:#666666;
  2230. line-height:18px;
  2231. }
  2232. #u2747 {
  2233. border-width:0px;
  2234. position:absolute;
  2235. left:303px;
  2236. top:344px;
  2237. width:1177px;
  2238. height:54px;
  2239. display:flex;
  2240. font-family:"Microsoft YaHei", sans-serif;
  2241. font-weight:400;
  2242. font-style:normal;
  2243. font-size:12px;
  2244. color:#666666;
  2245. line-height:18px;
  2246. }
  2247. #u2747 .text {
  2248. position:absolute;
  2249. align-self:center;
  2250. padding:2px 16px 2px 16px;
  2251. box-sizing:border-box;
  2252. width:100%;
  2253. }
  2254. #u2747_text {
  2255. border-width:0px;
  2256. word-wrap:break-word;
  2257. text-transform:none;
  2258. visibility:hidden;
  2259. }
  2260. #u2748_div {
  2261. border-width:0px;
  2262. position:absolute;
  2263. left:0px;
  2264. top:0px;
  2265. width:1176px;
  2266. height:54px;
  2267. background:inherit;
  2268. background-color:rgba(255, 255, 255, 1);
  2269. box-sizing:border-box;
  2270. border-width:1px;
  2271. border-style:solid;
  2272. border-color:rgba(232, 232, 232, 1);
  2273. border-left:0px;
  2274. border-right:0px;
  2275. border-radius:4px;
  2276. border-top-left-radius:0px;
  2277. border-top-right-radius:0px;
  2278. border-bottom-right-radius:0px;
  2279. border-bottom-left-radius:0px;
  2280. -moz-box-shadow:none;
  2281. -webkit-box-shadow:none;
  2282. box-shadow:none;
  2283. font-family:"Microsoft YaHei", sans-serif;
  2284. font-weight:400;
  2285. font-style:normal;
  2286. font-size:12px;
  2287. color:#666666;
  2288. line-height:18px;
  2289. }
  2290. #u2748 {
  2291. border-width:0px;
  2292. position:absolute;
  2293. left:303px;
  2294. top:397px;
  2295. width:1176px;
  2296. height:54px;
  2297. display:flex;
  2298. font-family:"Microsoft YaHei", sans-serif;
  2299. font-weight:400;
  2300. font-style:normal;
  2301. font-size:12px;
  2302. color:#666666;
  2303. line-height:18px;
  2304. }
  2305. #u2748 .text {
  2306. position:absolute;
  2307. align-self:center;
  2308. padding:2px 16px 2px 16px;
  2309. box-sizing:border-box;
  2310. width:100%;
  2311. }
  2312. #u2748_text {
  2313. border-width:0px;
  2314. word-wrap:break-word;
  2315. text-transform:none;
  2316. visibility:hidden;
  2317. }
  2318. #u2749 {
  2319. border-width:0px;
  2320. position:absolute;
  2321. left:0px;
  2322. top:0px;
  2323. width:0px;
  2324. height:0px;
  2325. }
  2326. #u2750_div {
  2327. border-width:0px;
  2328. position:absolute;
  2329. left:0px;
  2330. top:0px;
  2331. width:328px;
  2332. height:54px;
  2333. background:inherit;
  2334. background-color:rgba(255, 255, 255, 0);
  2335. border:none;
  2336. border-left:0px;
  2337. border-top:0px;
  2338. border-right:0px;
  2339. border-radius:4px;
  2340. border-bottom-right-radius:0px;
  2341. border-bottom-left-radius:0px;
  2342. -moz-box-shadow:none;
  2343. -webkit-box-shadow:none;
  2344. box-shadow:none;
  2345. font-family:"Microsoft Tai Le Bold", "Microsoft Tai Le", sans-serif;
  2346. font-weight:700;
  2347. font-style:normal;
  2348. font-size:14px;
  2349. color:rgba(0, 0, 0, 0.8470588235294118);
  2350. text-align:left;
  2351. line-height:53px;
  2352. }
  2353. #u2750 {
  2354. border-width:0px;
  2355. position:absolute;
  2356. left:600px;
  2357. top:238px;
  2358. width:328px;
  2359. height:54px;
  2360. display:flex;
  2361. font-family:"Microsoft Tai Le Bold", "Microsoft Tai Le", sans-serif;
  2362. font-weight:700;
  2363. font-style:normal;
  2364. font-size:14px;
  2365. color:rgba(0, 0, 0, 0.8470588235294118);
  2366. text-align:left;
  2367. line-height:53px;
  2368. }
  2369. #u2750 .text {
  2370. position:absolute;
  2371. align-self:center;
  2372. padding:0px 16px 0px 16px;
  2373. box-sizing:border-box;
  2374. width:100%;
  2375. }
  2376. #u2750_text {
  2377. border-width:0px;
  2378. word-wrap:break-word;
  2379. text-transform:none;
  2380. }
  2381. #u2751_div {
  2382. border-width:0px;
  2383. position:absolute;
  2384. left:0px;
  2385. top:0px;
  2386. width:328px;
  2387. height:159px;
  2388. background:inherit;
  2389. background-color:rgba(255, 255, 255, 0);
  2390. border:none;
  2391. border-left:0px;
  2392. border-top:0px;
  2393. border-right:0px;
  2394. border-radius:4px;
  2395. border-bottom-right-radius:0px;
  2396. border-bottom-left-radius:0px;
  2397. -moz-box-shadow:none;
  2398. -webkit-box-shadow:none;
  2399. box-shadow:none;
  2400. font-family:"Microsoft Tai Le", sans-serif;
  2401. font-weight:400;
  2402. font-style:normal;
  2403. font-size:14px;
  2404. color:rgba(0, 0, 0, 0.6470588235294118);
  2405. text-align:left;
  2406. line-height:53px;
  2407. }
  2408. #u2751 {
  2409. border-width:0px;
  2410. position:absolute;
  2411. left:600px;
  2412. top:292px;
  2413. width:328px;
  2414. height:159px;
  2415. display:flex;
  2416. font-family:"Microsoft Tai Le", sans-serif;
  2417. font-weight:400;
  2418. font-style:normal;
  2419. font-size:14px;
  2420. color:rgba(0, 0, 0, 0.6470588235294118);
  2421. text-align:left;
  2422. line-height:53px;
  2423. }
  2424. #u2751 .text {
  2425. position:absolute;
  2426. align-self:flex-start;
  2427. padding:0px 16px 0px 16px;
  2428. box-sizing:border-box;
  2429. width:100%;
  2430. }
  2431. #u2751_text {
  2432. border-width:0px;
  2433. word-wrap:break-word;
  2434. text-transform:none;
  2435. }
  2436. #u2752 {
  2437. border-width:0px;
  2438. position:absolute;
  2439. left:0px;
  2440. top:0px;
  2441. width:0px;
  2442. height:0px;
  2443. }
  2444. #u2753_div {
  2445. border-width:0px;
  2446. position:absolute;
  2447. left:0px;
  2448. top:0px;
  2449. width:93px;
  2450. height:54px;
  2451. background:inherit;
  2452. background-color:rgba(255, 255, 255, 0);
  2453. border:none;
  2454. border-left:0px;
  2455. border-top:0px;
  2456. border-right:0px;
  2457. border-radius:4px;
  2458. border-bottom-right-radius:0px;
  2459. border-bottom-left-radius:0px;
  2460. -moz-box-shadow:none;
  2461. -webkit-box-shadow:none;
  2462. box-shadow:none;
  2463. font-family:"Microsoft Tai Le Bold", "Microsoft Tai Le", sans-serif;
  2464. font-weight:700;
  2465. font-style:normal;
  2466. font-size:14px;
  2467. color:rgba(0, 0, 0, 0.8470588235294118);
  2468. text-align:left;
  2469. line-height:53px;
  2470. }
  2471. #u2753 {
  2472. border-width:0px;
  2473. position:absolute;
  2474. left:942px;
  2475. top:238px;
  2476. width:93px;
  2477. height:54px;
  2478. display:flex;
  2479. font-family:"Microsoft Tai Le Bold", "Microsoft Tai Le", sans-serif;
  2480. font-weight:700;
  2481. font-style:normal;
  2482. font-size:14px;
  2483. color:rgba(0, 0, 0, 0.8470588235294118);
  2484. text-align:left;
  2485. line-height:53px;
  2486. }
  2487. #u2753 .text {
  2488. position:absolute;
  2489. align-self:center;
  2490. padding:0px 16px 0px 16px;
  2491. box-sizing:border-box;
  2492. width:100%;
  2493. }
  2494. #u2753_text {
  2495. border-width:0px;
  2496. word-wrap:break-word;
  2497. text-transform:none;
  2498. }
  2499. #u2754_div {
  2500. border-width:0px;
  2501. position:absolute;
  2502. left:0px;
  2503. top:0px;
  2504. width:113px;
  2505. height:159px;
  2506. background:inherit;
  2507. background-color:rgba(255, 255, 255, 0);
  2508. border:none;
  2509. border-left:0px;
  2510. border-top:0px;
  2511. border-right:0px;
  2512. border-radius:4px;
  2513. border-bottom-right-radius:0px;
  2514. border-bottom-left-radius:0px;
  2515. -moz-box-shadow:none;
  2516. -webkit-box-shadow:none;
  2517. box-shadow:none;
  2518. font-family:"Microsoft Tai Le", sans-serif;
  2519. font-weight:400;
  2520. font-style:normal;
  2521. font-size:14px;
  2522. color:rgba(0, 0, 0, 0.6470588235294118);
  2523. text-align:left;
  2524. line-height:53px;
  2525. }
  2526. #u2754 {
  2527. border-width:0px;
  2528. position:absolute;
  2529. left:942px;
  2530. top:292px;
  2531. width:113px;
  2532. height:159px;
  2533. display:flex;
  2534. font-family:"Microsoft Tai Le", sans-serif;
  2535. font-weight:400;
  2536. font-style:normal;
  2537. font-size:14px;
  2538. color:rgba(0, 0, 0, 0.6470588235294118);
  2539. text-align:left;
  2540. line-height:53px;
  2541. }
  2542. #u2754 .text {
  2543. position:absolute;
  2544. align-self:flex-start;
  2545. padding:0px 16px 0px 16px;
  2546. box-sizing:border-box;
  2547. width:100%;
  2548. }
  2549. #u2754_text {
  2550. border-width:0px;
  2551. word-wrap:break-word;
  2552. text-transform:none;
  2553. }
  2554. #u2755 {
  2555. border-width:0px;
  2556. position:absolute;
  2557. left:0px;
  2558. top:0px;
  2559. width:0px;
  2560. height:0px;
  2561. }
  2562. #u2756_div {
  2563. border-width:0px;
  2564. position:absolute;
  2565. left:0px;
  2566. top:0px;
  2567. width:117px;
  2568. height:54px;
  2569. background:inherit;
  2570. background-color:rgba(255, 255, 255, 0);
  2571. border:none;
  2572. border-left:0px;
  2573. border-top:0px;
  2574. border-right:0px;
  2575. border-radius:4px;
  2576. border-bottom-right-radius:0px;
  2577. border-bottom-left-radius:0px;
  2578. -moz-box-shadow:none;
  2579. -webkit-box-shadow:none;
  2580. box-shadow:none;
  2581. font-family:"Microsoft Tai Le Bold", "Microsoft Tai Le", sans-serif;
  2582. font-weight:700;
  2583. font-style:normal;
  2584. font-size:14px;
  2585. color:rgba(0, 0, 0, 0.8470588235294118);
  2586. text-align:left;
  2587. line-height:53px;
  2588. }
  2589. #u2756 {
  2590. border-width:0px;
  2591. position:absolute;
  2592. left:471px;
  2593. top:238px;
  2594. width:117px;
  2595. height:54px;
  2596. display:flex;
  2597. font-family:"Microsoft Tai Le Bold", "Microsoft Tai Le", sans-serif;
  2598. font-weight:700;
  2599. font-style:normal;
  2600. font-size:14px;
  2601. color:rgba(0, 0, 0, 0.8470588235294118);
  2602. text-align:left;
  2603. line-height:53px;
  2604. }
  2605. #u2756 .text {
  2606. position:absolute;
  2607. align-self:center;
  2608. padding:0px 16px 0px 16px;
  2609. box-sizing:border-box;
  2610. width:100%;
  2611. }
  2612. #u2756_text {
  2613. border-width:0px;
  2614. word-wrap:break-word;
  2615. text-transform:none;
  2616. }
  2617. #u2757_div {
  2618. border-width:0px;
  2619. position:absolute;
  2620. left:0px;
  2621. top:0px;
  2622. width:144px;
  2623. height:159px;
  2624. background:inherit;
  2625. background-color:rgba(255, 255, 255, 0);
  2626. border:none;
  2627. border-left:0px;
  2628. border-top:0px;
  2629. border-right:0px;
  2630. border-radius:4px;
  2631. border-bottom-right-radius:0px;
  2632. border-bottom-left-radius:0px;
  2633. -moz-box-shadow:none;
  2634. -webkit-box-shadow:none;
  2635. box-shadow:none;
  2636. font-family:"SF UI Text", sans-serif;
  2637. font-weight:400;
  2638. font-style:normal;
  2639. font-size:14px;
  2640. color:rgba(0, 0, 0, 0.6470588235294118);
  2641. text-align:left;
  2642. line-height:53px;
  2643. }
  2644. #u2757 {
  2645. border-width:0px;
  2646. position:absolute;
  2647. left:471px;
  2648. top:292px;
  2649. width:144px;
  2650. height:159px;
  2651. display:flex;
  2652. font-family:"SF UI Text", sans-serif;
  2653. font-weight:400;
  2654. font-style:normal;
  2655. font-size:14px;
  2656. color:rgba(0, 0, 0, 0.6470588235294118);
  2657. text-align:left;
  2658. line-height:53px;
  2659. }
  2660. #u2757 .text {
  2661. position:absolute;
  2662. align-self:flex-start;
  2663. padding:0px 16px 0px 16px;
  2664. box-sizing:border-box;
  2665. width:100%;
  2666. }
  2667. #u2757_text {
  2668. border-width:0px;
  2669. word-wrap:break-word;
  2670. text-transform:none;
  2671. }
  2672. #u2758 {
  2673. border-width:0px;
  2674. position:absolute;
  2675. left:0px;
  2676. top:0px;
  2677. width:0px;
  2678. height:0px;
  2679. }
  2680. #u2759_div {
  2681. border-width:0px;
  2682. position:absolute;
  2683. left:0px;
  2684. top:0px;
  2685. width:64px;
  2686. height:54px;
  2687. background:inherit;
  2688. background-color:rgba(255, 255, 255, 0);
  2689. border:none;
  2690. border-left:0px;
  2691. border-top:0px;
  2692. border-right:0px;
  2693. border-radius:4px;
  2694. border-bottom-right-radius:0px;
  2695. border-bottom-left-radius:0px;
  2696. -moz-box-shadow:none;
  2697. -webkit-box-shadow:none;
  2698. box-shadow:none;
  2699. font-family:"Microsoft Tai Le Bold", "Microsoft Tai Le", sans-serif;
  2700. font-weight:700;
  2701. font-style:normal;
  2702. font-size:14px;
  2703. color:rgba(0, 0, 0, 0.8470588235294118);
  2704. text-align:left;
  2705. line-height:53px;
  2706. }
  2707. #u2759 {
  2708. border-width:0px;
  2709. position:absolute;
  2710. left:1226px;
  2711. top:238px;
  2712. width:64px;
  2713. height:54px;
  2714. display:flex;
  2715. font-family:"Microsoft Tai Le Bold", "Microsoft Tai Le", sans-serif;
  2716. font-weight:700;
  2717. font-style:normal;
  2718. font-size:14px;
  2719. color:rgba(0, 0, 0, 0.8470588235294118);
  2720. text-align:left;
  2721. line-height:53px;
  2722. }
  2723. #u2759 .text {
  2724. position:absolute;
  2725. align-self:center;
  2726. padding:0px 16px 0px 16px;
  2727. box-sizing:border-box;
  2728. width:100%;
  2729. }
  2730. #u2759_text {
  2731. border-width:0px;
  2732. word-wrap:break-word;
  2733. text-transform:none;
  2734. }
  2735. #u2760_div {
  2736. border-width:0px;
  2737. position:absolute;
  2738. left:0px;
  2739. top:0px;
  2740. width:254px;
  2741. height:159px;
  2742. background:inherit;
  2743. background-color:rgba(255, 255, 255, 0);
  2744. border:none;
  2745. border-left:0px;
  2746. border-top:0px;
  2747. border-right:0px;
  2748. border-radius:4px;
  2749. border-bottom-right-radius:0px;
  2750. border-bottom-left-radius:0px;
  2751. -moz-box-shadow:none;
  2752. -webkit-box-shadow:none;
  2753. box-shadow:none;
  2754. font-family:"Microsoft YaHei", sans-serif;
  2755. font-weight:400;
  2756. font-style:normal;
  2757. font-size:14px;
  2758. color:#1890FF;
  2759. text-align:left;
  2760. line-height:53px;
  2761. }
  2762. #u2760 {
  2763. border-width:0px;
  2764. position:absolute;
  2765. left:1226px;
  2766. top:292px;
  2767. width:254px;
  2768. height:159px;
  2769. display:flex;
  2770. font-family:"Microsoft YaHei", sans-serif;
  2771. font-weight:400;
  2772. font-style:normal;
  2773. font-size:14px;
  2774. color:#1890FF;
  2775. text-align:left;
  2776. line-height:53px;
  2777. }
  2778. #u2760 .text {
  2779. position:absolute;
  2780. align-self:flex-start;
  2781. padding:0px 16px 0px 16px;
  2782. box-sizing:border-box;
  2783. width:100%;
  2784. }
  2785. #u2760_text {
  2786. border-width:0px;
  2787. word-wrap:break-word;
  2788. text-transform:none;
  2789. }
  2790. #u2761 {
  2791. border-width:0px;
  2792. position:absolute;
  2793. left:0px;
  2794. top:0px;
  2795. width:0px;
  2796. height:0px;
  2797. }
  2798. #u2762_div {
  2799. border-width:0px;
  2800. position:absolute;
  2801. left:0px;
  2802. top:0px;
  2803. width:117px;
  2804. height:54px;
  2805. background:inherit;
  2806. background-color:rgba(255, 255, 255, 0);
  2807. border:none;
  2808. border-left:0px;
  2809. border-top:0px;
  2810. border-right:0px;
  2811. border-radius:4px;
  2812. border-bottom-right-radius:0px;
  2813. border-bottom-left-radius:0px;
  2814. -moz-box-shadow:none;
  2815. -webkit-box-shadow:none;
  2816. box-shadow:none;
  2817. font-family:"Microsoft Tai Le Bold", "Microsoft Tai Le", sans-serif;
  2818. font-weight:700;
  2819. font-style:normal;
  2820. font-size:14px;
  2821. color:rgba(0, 0, 0, 0.8470588235294118);
  2822. text-align:left;
  2823. line-height:53px;
  2824. }
  2825. #u2762 {
  2826. border-width:0px;
  2827. position:absolute;
  2828. left:303px;
  2829. top:238px;
  2830. width:117px;
  2831. height:54px;
  2832. display:flex;
  2833. font-family:"Microsoft Tai Le Bold", "Microsoft Tai Le", sans-serif;
  2834. font-weight:700;
  2835. font-style:normal;
  2836. font-size:14px;
  2837. color:rgba(0, 0, 0, 0.8470588235294118);
  2838. text-align:left;
  2839. line-height:53px;
  2840. }
  2841. #u2762 .text {
  2842. position:absolute;
  2843. align-self:center;
  2844. padding:0px 16px 0px 16px;
  2845. box-sizing:border-box;
  2846. width:100%;
  2847. }
  2848. #u2762_text {
  2849. border-width:0px;
  2850. word-wrap:break-word;
  2851. text-transform:none;
  2852. }
  2853. #u2763_div {
  2854. border-width:0px;
  2855. position:absolute;
  2856. left:0px;
  2857. top:0px;
  2858. width:144px;
  2859. height:159px;
  2860. background:inherit;
  2861. background-color:rgba(255, 255, 255, 0);
  2862. border:none;
  2863. border-left:0px;
  2864. border-top:0px;
  2865. border-right:0px;
  2866. border-radius:4px;
  2867. border-bottom-right-radius:0px;
  2868. border-bottom-left-radius:0px;
  2869. -moz-box-shadow:none;
  2870. -webkit-box-shadow:none;
  2871. box-shadow:none;
  2872. font-family:"SF UI Text", sans-serif;
  2873. font-weight:400;
  2874. font-style:normal;
  2875. font-size:14px;
  2876. color:rgba(0, 0, 0, 0.6470588235294118);
  2877. text-align:left;
  2878. line-height:53px;
  2879. }
  2880. #u2763 {
  2881. border-width:0px;
  2882. position:absolute;
  2883. left:303px;
  2884. top:292px;
  2885. width:144px;
  2886. height:159px;
  2887. display:flex;
  2888. font-family:"SF UI Text", sans-serif;
  2889. font-weight:400;
  2890. font-style:normal;
  2891. font-size:14px;
  2892. color:rgba(0, 0, 0, 0.6470588235294118);
  2893. text-align:left;
  2894. line-height:53px;
  2895. }
  2896. #u2763 .text {
  2897. position:absolute;
  2898. align-self:flex-start;
  2899. padding:0px 16px 0px 16px;
  2900. box-sizing:border-box;
  2901. width:100%;
  2902. }
  2903. #u2763_text {
  2904. border-width:0px;
  2905. word-wrap:break-word;
  2906. text-transform:none;
  2907. }
  2908. #u2764 {
  2909. border-width:0px;
  2910. position:absolute;
  2911. left:0px;
  2912. top:0px;
  2913. width:0px;
  2914. height:0px;
  2915. }
  2916. #u2765_div {
  2917. border-width:0px;
  2918. position:absolute;
  2919. left:0px;
  2920. top:0px;
  2921. width:93px;
  2922. height:54px;
  2923. background:inherit;
  2924. background-color:rgba(255, 255, 255, 0);
  2925. border:none;
  2926. border-left:0px;
  2927. border-top:0px;
  2928. border-right:0px;
  2929. border-radius:4px;
  2930. border-bottom-right-radius:0px;
  2931. border-bottom-left-radius:0px;
  2932. -moz-box-shadow:none;
  2933. -webkit-box-shadow:none;
  2934. box-shadow:none;
  2935. font-family:"Microsoft Tai Le Bold", "Microsoft Tai Le", sans-serif;
  2936. font-weight:700;
  2937. font-style:normal;
  2938. font-size:14px;
  2939. color:rgba(0, 0, 0, 0.8470588235294118);
  2940. text-align:left;
  2941. line-height:53px;
  2942. }
  2943. #u2765 {
  2944. border-width:0px;
  2945. position:absolute;
  2946. left:1089px;
  2947. top:238px;
  2948. width:93px;
  2949. height:54px;
  2950. display:flex;
  2951. font-family:"Microsoft Tai Le Bold", "Microsoft Tai Le", sans-serif;
  2952. font-weight:700;
  2953. font-style:normal;
  2954. font-size:14px;
  2955. color:rgba(0, 0, 0, 0.8470588235294118);
  2956. text-align:left;
  2957. line-height:53px;
  2958. }
  2959. #u2765 .text {
  2960. position:absolute;
  2961. align-self:center;
  2962. padding:0px 16px 0px 16px;
  2963. box-sizing:border-box;
  2964. width:100%;
  2965. }
  2966. #u2765_text {
  2967. border-width:0px;
  2968. word-wrap:break-word;
  2969. text-transform:none;
  2970. }
  2971. #u2766_div {
  2972. border-width:0px;
  2973. position:absolute;
  2974. left:0px;
  2975. top:0px;
  2976. width:119px;
  2977. height:159px;
  2978. background:inherit;
  2979. background-color:rgba(255, 255, 255, 0);
  2980. border:none;
  2981. border-left:0px;
  2982. border-top:0px;
  2983. border-right:0px;
  2984. border-radius:4px;
  2985. border-bottom-right-radius:0px;
  2986. border-bottom-left-radius:0px;
  2987. -moz-box-shadow:none;
  2988. -webkit-box-shadow:none;
  2989. box-shadow:none;
  2990. font-family:"Microsoft Tai Le", sans-serif;
  2991. font-weight:400;
  2992. font-style:normal;
  2993. font-size:14px;
  2994. color:rgba(0, 0, 0, 0.6470588235294118);
  2995. text-align:left;
  2996. line-height:53px;
  2997. }
  2998. #u2766 {
  2999. border-width:0px;
  3000. position:absolute;
  3001. left:1089px;
  3002. top:292px;
  3003. width:119px;
  3004. height:159px;
  3005. display:flex;
  3006. font-family:"Microsoft Tai Le", sans-serif;
  3007. font-weight:400;
  3008. font-style:normal;
  3009. font-size:14px;
  3010. color:rgba(0, 0, 0, 0.6470588235294118);
  3011. text-align:left;
  3012. line-height:53px;
  3013. }
  3014. #u2766 .text {
  3015. position:absolute;
  3016. align-self:flex-start;
  3017. padding:0px 16px 0px 16px;
  3018. box-sizing:border-box;
  3019. width:100%;
  3020. }
  3021. #u2766_text {
  3022. border-width:0px;
  3023. word-wrap:break-word;
  3024. text-transform:none;
  3025. }
  3026. #u2767 {
  3027. border-width:0px;
  3028. position:absolute;
  3029. left:0px;
  3030. top:0px;
  3031. width:0px;
  3032. height:0px;
  3033. }
  3034. #u2768_div {
  3035. border-width:0px;
  3036. position:absolute;
  3037. left:0px;
  3038. top:0px;
  3039. width:117px;
  3040. height:54px;
  3041. background:inherit;
  3042. background-color:rgba(255, 255, 255, 0);
  3043. border:none;
  3044. border-left:0px;
  3045. border-top:0px;
  3046. border-right:0px;
  3047. border-radius:4px;
  3048. border-bottom-right-radius:0px;
  3049. border-bottom-left-radius:0px;
  3050. -moz-box-shadow:none;
  3051. -webkit-box-shadow:none;
  3052. box-shadow:none;
  3053. font-family:"Microsoft Tai Le Bold", "Microsoft Tai Le", sans-serif;
  3054. font-weight:700;
  3055. font-style:normal;
  3056. font-size:14px;
  3057. color:rgba(0, 0, 0, 0.8470588235294118);
  3058. text-align:left;
  3059. line-height:53px;
  3060. }
  3061. #u2768 {
  3062. border-width:0px;
  3063. position:absolute;
  3064. left:391px;
  3065. top:238px;
  3066. width:117px;
  3067. height:54px;
  3068. display:flex;
  3069. font-family:"Microsoft Tai Le Bold", "Microsoft Tai Le", sans-serif;
  3070. font-weight:700;
  3071. font-style:normal;
  3072. font-size:14px;
  3073. color:rgba(0, 0, 0, 0.8470588235294118);
  3074. text-align:left;
  3075. line-height:53px;
  3076. }
  3077. #u2768 .text {
  3078. position:absolute;
  3079. align-self:center;
  3080. padding:0px 16px 0px 16px;
  3081. box-sizing:border-box;
  3082. width:100%;
  3083. }
  3084. #u2768_text {
  3085. border-width:0px;
  3086. word-wrap:break-word;
  3087. text-transform:none;
  3088. }
  3089. #u2769_div {
  3090. border-width:0px;
  3091. position:absolute;
  3092. left:0px;
  3093. top:0px;
  3094. width:144px;
  3095. height:159px;
  3096. background:inherit;
  3097. background-color:rgba(255, 255, 255, 0);
  3098. border:none;
  3099. border-left:0px;
  3100. border-top:0px;
  3101. border-right:0px;
  3102. border-radius:4px;
  3103. border-bottom-right-radius:0px;
  3104. border-bottom-left-radius:0px;
  3105. -moz-box-shadow:none;
  3106. -webkit-box-shadow:none;
  3107. box-shadow:none;
  3108. font-family:"SF UI Text", sans-serif;
  3109. font-weight:400;
  3110. font-style:normal;
  3111. font-size:14px;
  3112. color:rgba(0, 0, 0, 0.6470588235294118);
  3113. text-align:left;
  3114. line-height:53px;
  3115. }
  3116. #u2769 {
  3117. border-width:0px;
  3118. position:absolute;
  3119. left:391px;
  3120. top:292px;
  3121. width:144px;
  3122. height:159px;
  3123. display:flex;
  3124. font-family:"SF UI Text", sans-serif;
  3125. font-weight:400;
  3126. font-style:normal;
  3127. font-size:14px;
  3128. color:rgba(0, 0, 0, 0.6470588235294118);
  3129. text-align:left;
  3130. line-height:53px;
  3131. }
  3132. #u2769 .text {
  3133. position:absolute;
  3134. align-self:flex-start;
  3135. padding:0px 16px 0px 16px;
  3136. box-sizing:border-box;
  3137. width:100%;
  3138. }
  3139. #u2769_text {
  3140. border-width:0px;
  3141. word-wrap:break-word;
  3142. text-transform:none;
  3143. }
  3144. #u2770 {
  3145. border-width:0px;
  3146. position:absolute;
  3147. left:0px;
  3148. top:0px;
  3149. width:0px;
  3150. height:0px;
  3151. }
  3152. #u2771_div {
  3153. border-width:0px;
  3154. position:absolute;
  3155. left:0px;
  3156. top:0px;
  3157. width:51px;
  3158. height:22px;
  3159. background:inherit;
  3160. background-color:rgba(255, 255, 255, 0);
  3161. border:none;
  3162. border-radius:0px;
  3163. -moz-box-shadow:none;
  3164. -webkit-box-shadow:none;
  3165. box-shadow:none;
  3166. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  3167. font-weight:400;
  3168. font-style:normal;
  3169. color:rgba(0, 0, 0, 0.42745098039215684);
  3170. line-height:22px;
  3171. }
  3172. #u2771 {
  3173. border-width:0px;
  3174. position:absolute;
  3175. left:303px;
  3176. top:478px;
  3177. width:51px;
  3178. height:22px;
  3179. display:flex;
  3180. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  3181. font-weight:400;
  3182. font-style:normal;
  3183. color:rgba(0, 0, 0, 0.42745098039215684);
  3184. line-height:22px;
  3185. }
  3186. #u2771 .text {
  3187. position:absolute;
  3188. align-self:flex-start;
  3189. padding:0px 0px 0px 0px;
  3190. box-sizing:border-box;
  3191. width:100%;
  3192. }
  3193. #u2771_text {
  3194. border-width:0px;
  3195. white-space:nowrap;
  3196. text-transform:none;
  3197. }
  3198. #u2772_div {
  3199. border-width:0px;
  3200. position:absolute;
  3201. left:0px;
  3202. top:0px;
  3203. width:32px;
  3204. height:32px;
  3205. background:inherit;
  3206. background-color:rgba(24, 144, 255, 1);
  3207. border:none;
  3208. border-radius:6px;
  3209. -moz-box-shadow:none;
  3210. -webkit-box-shadow:none;
  3211. box-shadow:none;
  3212. font-size:14px;
  3213. color:#FFFFFF;
  3214. line-height:22px;
  3215. }
  3216. #u2772 {
  3217. border-width:0px;
  3218. position:absolute;
  3219. left:415px;
  3220. top:473px;
  3221. width:32px;
  3222. height:32px;
  3223. display:flex;
  3224. font-size:14px;
  3225. color:#FFFFFF;
  3226. line-height:22px;
  3227. }
  3228. #u2772 .text {
  3229. position:absolute;
  3230. align-self:center;
  3231. padding:2px 2px 2px 2px;
  3232. box-sizing:border-box;
  3233. width:100%;
  3234. }
  3235. #u2772_text {
  3236. border-width:0px;
  3237. word-wrap:break-word;
  3238. text-transform:none;
  3239. }
  3240. #u2773_div {
  3241. border-width:0px;
  3242. position:absolute;
  3243. left:0px;
  3244. top:0px;
  3245. width:32px;
  3246. height:32px;
  3247. background:inherit;
  3248. background-color:rgba(255, 255, 255, 1);
  3249. box-sizing:border-box;
  3250. border-width:1px;
  3251. border-style:solid;
  3252. border-color:rgba(217, 217, 217, 1);
  3253. border-radius:6px;
  3254. -moz-box-shadow:none;
  3255. -webkit-box-shadow:none;
  3256. box-shadow:none;
  3257. font-size:14px;
  3258. color:rgba(0, 0, 0, 0.6470588235294118);
  3259. line-height:22px;
  3260. }
  3261. #u2773 {
  3262. border-width:0px;
  3263. position:absolute;
  3264. left:455px;
  3265. top:473px;
  3266. width:32px;
  3267. height:32px;
  3268. display:flex;
  3269. font-size:14px;
  3270. color:rgba(0, 0, 0, 0.6470588235294118);
  3271. line-height:22px;
  3272. }
  3273. #u2773 .text {
  3274. position:absolute;
  3275. align-self:center;
  3276. padding:2px 2px 2px 2px;
  3277. box-sizing:border-box;
  3278. width:100%;
  3279. }
  3280. #u2773_text {
  3281. border-width:0px;
  3282. word-wrap:break-word;
  3283. text-transform:none;
  3284. }
  3285. #u2774_div {
  3286. border-width:0px;
  3287. position:absolute;
  3288. left:0px;
  3289. top:0px;
  3290. width:32px;
  3291. height:32px;
  3292. background:inherit;
  3293. background-color:rgba(255, 255, 255, 1);
  3294. box-sizing:border-box;
  3295. border-width:1px;
  3296. border-style:solid;
  3297. border-color:rgba(217, 217, 217, 1);
  3298. border-radius:6px;
  3299. -moz-box-shadow:none;
  3300. -webkit-box-shadow:none;
  3301. box-shadow:none;
  3302. font-size:14px;
  3303. color:rgba(0, 0, 0, 0.6470588235294118);
  3304. line-height:22px;
  3305. }
  3306. #u2774 {
  3307. border-width:0px;
  3308. position:absolute;
  3309. left:495px;
  3310. top:473px;
  3311. width:32px;
  3312. height:32px;
  3313. display:flex;
  3314. font-size:14px;
  3315. color:rgba(0, 0, 0, 0.6470588235294118);
  3316. line-height:22px;
  3317. }
  3318. #u2774 .text {
  3319. position:absolute;
  3320. align-self:center;
  3321. padding:2px 2px 2px 2px;
  3322. box-sizing:border-box;
  3323. width:100%;
  3324. }
  3325. #u2774_text {
  3326. border-width:0px;
  3327. word-wrap:break-word;
  3328. text-transform:none;
  3329. }
  3330. #u2775_div {
  3331. border-width:0px;
  3332. position:absolute;
  3333. left:0px;
  3334. top:0px;
  3335. width:32px;
  3336. height:32px;
  3337. background:inherit;
  3338. background-color:rgba(255, 255, 255, 1);
  3339. box-sizing:border-box;
  3340. border-width:1px;
  3341. border-style:solid;
  3342. border-color:rgba(217, 217, 217, 1);
  3343. border-radius:6px;
  3344. -moz-box-shadow:none;
  3345. -webkit-box-shadow:none;
  3346. box-shadow:none;
  3347. font-size:14px;
  3348. color:rgba(0, 0, 0, 0.6470588235294118);
  3349. line-height:22px;
  3350. }
  3351. #u2775 {
  3352. border-width:0px;
  3353. position:absolute;
  3354. left:535px;
  3355. top:473px;
  3356. width:32px;
  3357. height:32px;
  3358. display:flex;
  3359. font-size:14px;
  3360. color:rgba(0, 0, 0, 0.6470588235294118);
  3361. line-height:22px;
  3362. }
  3363. #u2775 .text {
  3364. position:absolute;
  3365. align-self:center;
  3366. padding:2px 2px 2px 2px;
  3367. box-sizing:border-box;
  3368. width:100%;
  3369. }
  3370. #u2775_text {
  3371. border-width:0px;
  3372. word-wrap:break-word;
  3373. text-transform:none;
  3374. }
  3375. #u2776_div {
  3376. border-width:0px;
  3377. position:absolute;
  3378. left:0px;
  3379. top:0px;
  3380. width:32px;
  3381. height:32px;
  3382. background:inherit;
  3383. background-color:rgba(255, 255, 255, 1);
  3384. box-sizing:border-box;
  3385. border-width:1px;
  3386. border-style:solid;
  3387. border-color:rgba(217, 217, 217, 1);
  3388. border-radius:6px;
  3389. -moz-box-shadow:none;
  3390. -webkit-box-shadow:none;
  3391. box-shadow:none;
  3392. font-size:14px;
  3393. color:rgba(0, 0, 0, 0.6470588235294118);
  3394. line-height:22px;
  3395. }
  3396. #u2776 {
  3397. border-width:0px;
  3398. position:absolute;
  3399. left:575px;
  3400. top:473px;
  3401. width:32px;
  3402. height:32px;
  3403. display:flex;
  3404. font-size:14px;
  3405. color:rgba(0, 0, 0, 0.6470588235294118);
  3406. line-height:22px;
  3407. }
  3408. #u2776 .text {
  3409. position:absolute;
  3410. align-self:center;
  3411. padding:2px 2px 2px 2px;
  3412. box-sizing:border-box;
  3413. width:100%;
  3414. }
  3415. #u2776_text {
  3416. border-width:0px;
  3417. word-wrap:break-word;
  3418. text-transform:none;
  3419. }
  3420. #u2777_div {
  3421. border-width:0px;
  3422. position:absolute;
  3423. left:0px;
  3424. top:0px;
  3425. width:32px;
  3426. height:32px;
  3427. background:inherit;
  3428. background-color:rgba(255, 255, 255, 1);
  3429. box-sizing:border-box;
  3430. border-width:1px;
  3431. border-style:solid;
  3432. border-color:rgba(217, 217, 217, 1);
  3433. border-radius:6px;
  3434. -moz-box-shadow:none;
  3435. -webkit-box-shadow:none;
  3436. box-shadow:none;
  3437. font-size:14px;
  3438. color:rgba(0, 0, 0, 0.6470588235294118);
  3439. line-height:22px;
  3440. }
  3441. #u2777 {
  3442. border-width:0px;
  3443. position:absolute;
  3444. left:735px;
  3445. top:473px;
  3446. width:32px;
  3447. height:32px;
  3448. display:flex;
  3449. font-size:14px;
  3450. color:rgba(0, 0, 0, 0.6470588235294118);
  3451. line-height:22px;
  3452. }
  3453. #u2777 .text {
  3454. position:absolute;
  3455. align-self:center;
  3456. padding:2px 2px 2px 2px;
  3457. box-sizing:border-box;
  3458. width:100%;
  3459. }
  3460. #u2777_text {
  3461. border-width:0px;
  3462. word-wrap:break-word;
  3463. text-transform:none;
  3464. }
  3465. #u2778_div {
  3466. border-width:0px;
  3467. position:absolute;
  3468. left:0px;
  3469. top:0px;
  3470. width:28px;
  3471. height:22px;
  3472. background:inherit;
  3473. background-color:rgba(255, 255, 255, 0);
  3474. border:none;
  3475. border-radius:0px;
  3476. -moz-box-shadow:none;
  3477. -webkit-box-shadow:none;
  3478. box-shadow:none;
  3479. font-family:"Microsoft YaHei", sans-serif;
  3480. font-weight:400;
  3481. font-style:normal;
  3482. font-size:14px;
  3483. color:rgba(0, 0, 0, 0.6470588235294118);
  3484. line-height:22px;
  3485. }
  3486. #u2778 {
  3487. border-width:0px;
  3488. position:absolute;
  3489. left:926px;
  3490. top:478px;
  3491. width:28px;
  3492. height:22px;
  3493. display:flex;
  3494. font-family:"Microsoft YaHei", sans-serif;
  3495. font-weight:400;
  3496. font-style:normal;
  3497. font-size:14px;
  3498. color:rgba(0, 0, 0, 0.6470588235294118);
  3499. line-height:22px;
  3500. }
  3501. #u2778 .text {
  3502. position:absolute;
  3503. align-self:flex-start;
  3504. padding:0px 0px 0px 0px;
  3505. box-sizing:border-box;
  3506. width:100%;
  3507. }
  3508. #u2778_text {
  3509. border-width:0px;
  3510. white-space:nowrap;
  3511. text-transform:none;
  3512. }
  3513. #u2779_div {
  3514. border-width:0px;
  3515. position:absolute;
  3516. left:0px;
  3517. top:0px;
  3518. width:48px;
  3519. height:32px;
  3520. background:inherit;
  3521. background-color:rgba(255, 255, 255, 1);
  3522. box-sizing:border-box;
  3523. border-width:1px;
  3524. border-style:solid;
  3525. border-color:rgba(217, 217, 217, 1);
  3526. border-radius:6px;
  3527. -moz-box-shadow:none;
  3528. -webkit-box-shadow:none;
  3529. box-shadow:none;
  3530. font-size:14px;
  3531. color:rgba(0, 0, 0, 0.6470588235294118);
  3532. text-align:left;
  3533. line-height:22px;
  3534. }
  3535. #u2779 {
  3536. border-width:0px;
  3537. position:absolute;
  3538. left:963px;
  3539. top:473px;
  3540. width:48px;
  3541. height:32px;
  3542. display:flex;
  3543. font-size:14px;
  3544. color:rgba(0, 0, 0, 0.6470588235294118);
  3545. text-align:left;
  3546. line-height:22px;
  3547. }
  3548. #u2779 .text {
  3549. position:absolute;
  3550. align-self:center;
  3551. padding:2px 2px 2px 16px;
  3552. box-sizing:border-box;
  3553. width:100%;
  3554. }
  3555. #u2779_text {
  3556. border-width:0px;
  3557. word-wrap:break-word;
  3558. text-transform:none;
  3559. }
  3560. #u2780_div {
  3561. border-width:0px;
  3562. position:absolute;
  3563. left:0px;
  3564. top:0px;
  3565. width:14px;
  3566. height:22px;
  3567. background:inherit;
  3568. background-color:rgba(255, 255, 255, 0);
  3569. border:none;
  3570. border-radius:0px;
  3571. -moz-box-shadow:none;
  3572. -webkit-box-shadow:none;
  3573. box-shadow:none;
  3574. font-family:"Microsoft YaHei", sans-serif;
  3575. font-weight:400;
  3576. font-style:normal;
  3577. font-size:14px;
  3578. color:rgba(0, 0, 0, 0.6470588235294118);
  3579. line-height:22px;
  3580. }
  3581. #u2780 {
  3582. border-width:0px;
  3583. position:absolute;
  3584. left:1019px;
  3585. top:478px;
  3586. width:14px;
  3587. height:22px;
  3588. display:flex;
  3589. font-family:"Microsoft YaHei", sans-serif;
  3590. font-weight:400;
  3591. font-style:normal;
  3592. font-size:14px;
  3593. color:rgba(0, 0, 0, 0.6470588235294118);
  3594. line-height:22px;
  3595. }
  3596. #u2780 .text {
  3597. position:absolute;
  3598. align-self:flex-start;
  3599. padding:0px 0px 2px 0px;
  3600. box-sizing:border-box;
  3601. width:100%;
  3602. }
  3603. #u2780_text {
  3604. border-width:0px;
  3605. white-space:nowrap;
  3606. text-transform:none;
  3607. }
  3608. #u2781_div {
  3609. border-width:0px;
  3610. position:absolute;
  3611. left:0px;
  3612. top:0px;
  3613. width:32px;
  3614. height:32px;
  3615. background:inherit;
  3616. background-color:rgba(255, 255, 255, 1);
  3617. box-sizing:border-box;
  3618. border-width:1px;
  3619. border-style:solid;
  3620. border-color:rgba(217, 217, 217, 1);
  3621. border-radius:6px;
  3622. -moz-box-shadow:none;
  3623. -webkit-box-shadow:none;
  3624. box-shadow:none;
  3625. font-size:14px;
  3626. color:rgba(0, 0, 0, 0.6470588235294118);
  3627. line-height:22px;
  3628. }
  3629. #u2781 {
  3630. border-width:0px;
  3631. position:absolute;
  3632. left:695px;
  3633. top:473px;
  3634. width:32px;
  3635. height:32px;
  3636. display:flex;
  3637. font-size:14px;
  3638. color:rgba(0, 0, 0, 0.6470588235294118);
  3639. line-height:22px;
  3640. }
  3641. #u2781 .text {
  3642. position:absolute;
  3643. align-self:center;
  3644. padding:2px 2px 2px 2px;
  3645. box-sizing:border-box;
  3646. width:100%;
  3647. }
  3648. #u2781_text {
  3649. border-width:0px;
  3650. word-wrap:break-word;
  3651. text-transform:none;
  3652. }
  3653. #u2782_div {
  3654. border-width:0px;
  3655. position:absolute;
  3656. left:0px;
  3657. top:0px;
  3658. width:32px;
  3659. height:32px;
  3660. background:inherit;
  3661. background-color:rgba(255, 255, 255, 1);
  3662. box-sizing:border-box;
  3663. border-width:1px;
  3664. border-style:solid;
  3665. border-color:rgba(217, 217, 217, 1);
  3666. border-radius:6px;
  3667. -moz-box-shadow:none;
  3668. -webkit-box-shadow:none;
  3669. box-shadow:none;
  3670. font-size:14px;
  3671. color:rgba(0, 0, 0, 0.6470588235294118);
  3672. line-height:22px;
  3673. }
  3674. #u2782 {
  3675. border-width:0px;
  3676. position:absolute;
  3677. left:655px;
  3678. top:473px;
  3679. width:32px;
  3680. height:32px;
  3681. display:flex;
  3682. font-size:14px;
  3683. color:rgba(0, 0, 0, 0.6470588235294118);
  3684. line-height:22px;
  3685. }
  3686. #u2782 .text {
  3687. position:absolute;
  3688. align-self:center;
  3689. padding:2px 2px 2px 2px;
  3690. box-sizing:border-box;
  3691. width:100%;
  3692. }
  3693. #u2782_text {
  3694. border-width:0px;
  3695. word-wrap:break-word;
  3696. text-transform:none;
  3697. }
  3698. #u2783_div {
  3699. border-width:0px;
  3700. position:absolute;
  3701. left:0px;
  3702. top:0px;
  3703. width:32px;
  3704. height:32px;
  3705. background:inherit;
  3706. background-color:rgba(255, 255, 255, 1);
  3707. box-sizing:border-box;
  3708. border-width:1px;
  3709. border-style:solid;
  3710. border-color:rgba(217, 217, 217, 1);
  3711. border-radius:6px;
  3712. -moz-box-shadow:none;
  3713. -webkit-box-shadow:none;
  3714. box-shadow:none;
  3715. font-size:14px;
  3716. color:rgba(0, 0, 0, 0.6470588235294118);
  3717. line-height:22px;
  3718. }
  3719. #u2783 {
  3720. border-width:0px;
  3721. position:absolute;
  3722. left:615px;
  3723. top:473px;
  3724. width:32px;
  3725. height:32px;
  3726. display:flex;
  3727. font-size:14px;
  3728. color:rgba(0, 0, 0, 0.6470588235294118);
  3729. line-height:22px;
  3730. }
  3731. #u2783 .text {
  3732. position:absolute;
  3733. align-self:center;
  3734. padding:2px 2px 2px 2px;
  3735. box-sizing:border-box;
  3736. width:100%;
  3737. }
  3738. #u2783_text {
  3739. border-width:0px;
  3740. word-wrap:break-word;
  3741. text-transform:none;
  3742. }
  3743. #u2784 {
  3744. border-width:0px;
  3745. position:absolute;
  3746. left:0px;
  3747. top:0px;
  3748. width:0px;
  3749. height:0px;
  3750. }
  3751. #u2785_div {
  3752. border-width:0px;
  3753. position:absolute;
  3754. left:0px;
  3755. top:0px;
  3756. width:88px;
  3757. height:32px;
  3758. background:inherit;
  3759. background-color:rgba(255, 255, 255, 1);
  3760. box-sizing:border-box;
  3761. border-width:1px;
  3762. border-style:solid;
  3763. border-color:rgba(217, 217, 217, 1);
  3764. border-radius:6px;
  3765. -moz-box-shadow:none;
  3766. -webkit-box-shadow:none;
  3767. box-shadow:none;
  3768. font-size:14px;
  3769. color:rgba(0, 0, 0, 0.6470588235294118);
  3770. text-align:left;
  3771. line-height:22px;
  3772. }
  3773. #u2785 {
  3774. border-width:0px;
  3775. position:absolute;
  3776. left:823px;
  3777. top:473px;
  3778. width:88px;
  3779. height:32px;
  3780. display:flex;
  3781. font-size:14px;
  3782. color:rgba(0, 0, 0, 0.6470588235294118);
  3783. text-align:left;
  3784. line-height:22px;
  3785. }
  3786. #u2785 .text {
  3787. position:absolute;
  3788. align-self:center;
  3789. padding:2px 30px 2px 8px;
  3790. box-sizing:border-box;
  3791. width:100%;
  3792. }
  3793. #u2785_text {
  3794. border-width:0px;
  3795. white-space:nowrap;
  3796. text-transform:none;
  3797. }
  3798. #u2786_img {
  3799. border-width:0px;
  3800. position:absolute;
  3801. left:0px;
  3802. top:0px;
  3803. width:14px;
  3804. height:14px;
  3805. }
  3806. #u2786 {
  3807. border-width:0px;
  3808. position:absolute;
  3809. left:888px;
  3810. top:482px;
  3811. width:14px;
  3812. height:14px;
  3813. display:flex;
  3814. -webkit-transform:rotate(90deg);
  3815. -moz-transform:rotate(90deg);
  3816. -ms-transform:rotate(90deg);
  3817. transform:rotate(90deg);
  3818. opacity:0.4000000059604645;
  3819. }
  3820. #u2786 .text {
  3821. position:absolute;
  3822. align-self:center;
  3823. padding:2px 2px 2px 2px;
  3824. box-sizing:border-box;
  3825. width:100%;
  3826. }
  3827. #u2786_text {
  3828. border-width:0px;
  3829. word-wrap:break-word;
  3830. text-transform:none;
  3831. visibility:hidden;
  3832. }
  3833. #u2787 {
  3834. border-width:0px;
  3835. position:absolute;
  3836. left:0px;
  3837. top:0px;
  3838. width:0px;
  3839. height:0px;
  3840. }
  3841. #u2788_div {
  3842. border-width:0px;
  3843. position:absolute;
  3844. left:0px;
  3845. top:0px;
  3846. width:32px;
  3847. height:32px;
  3848. background:inherit;
  3849. background-color:rgba(255, 255, 255, 1);
  3850. box-sizing:border-box;
  3851. border-width:1px;
  3852. border-style:solid;
  3853. border-color:rgba(217, 217, 217, 1);
  3854. border-radius:6px;
  3855. -moz-box-shadow:none;
  3856. -webkit-box-shadow:none;
  3857. box-shadow:none;
  3858. font-size:12px;
  3859. color:#666666;
  3860. }
  3861. #u2788 {
  3862. border-width:0px;
  3863. position:absolute;
  3864. left:375px;
  3865. top:473px;
  3866. width:32px;
  3867. height:32px;
  3868. display:flex;
  3869. font-size:12px;
  3870. color:#666666;
  3871. }
  3872. #u2788 .text {
  3873. position:absolute;
  3874. align-self:center;
  3875. padding:2px 2px 2px 2px;
  3876. box-sizing:border-box;
  3877. width:100%;
  3878. }
  3879. #u2788_text {
  3880. border-width:0px;
  3881. word-wrap:break-word;
  3882. text-transform:none;
  3883. visibility:hidden;
  3884. }
  3885. #u2789_img {
  3886. border-width:0px;
  3887. position:absolute;
  3888. left:0px;
  3889. top:0px;
  3890. width:14px;
  3891. height:14px;
  3892. }
  3893. #u2789 {
  3894. border-width:0px;
  3895. position:absolute;
  3896. left:384px;
  3897. top:482px;
  3898. width:14px;
  3899. height:14px;
  3900. display:flex;
  3901. -webkit-transform:rotate(180deg);
  3902. -moz-transform:rotate(180deg);
  3903. -ms-transform:rotate(180deg);
  3904. transform:rotate(180deg);
  3905. opacity:0.4000000059604645;
  3906. }
  3907. #u2789 .text {
  3908. position:absolute;
  3909. align-self:center;
  3910. padding:2px 2px 2px 2px;
  3911. box-sizing:border-box;
  3912. width:100%;
  3913. }
  3914. #u2789_text {
  3915. border-width:0px;
  3916. word-wrap:break-word;
  3917. text-transform:none;
  3918. visibility:hidden;
  3919. }
  3920. #u2790 {
  3921. border-width:0px;
  3922. position:absolute;
  3923. left:0px;
  3924. top:0px;
  3925. width:0px;
  3926. height:0px;
  3927. }
  3928. #u2791_div {
  3929. border-width:0px;
  3930. position:absolute;
  3931. left:0px;
  3932. top:0px;
  3933. width:32px;
  3934. height:32px;
  3935. background:inherit;
  3936. background-color:rgba(255, 255, 255, 1);
  3937. box-sizing:border-box;
  3938. border-width:1px;
  3939. border-style:solid;
  3940. border-color:rgba(217, 217, 217, 1);
  3941. border-radius:6px;
  3942. -moz-box-shadow:none;
  3943. -webkit-box-shadow:none;
  3944. box-shadow:none;
  3945. font-size:12px;
  3946. color:#666666;
  3947. }
  3948. #u2791 {
  3949. border-width:0px;
  3950. position:absolute;
  3951. left:775px;
  3952. top:473px;
  3953. width:32px;
  3954. height:32px;
  3955. display:flex;
  3956. font-size:12px;
  3957. color:#666666;
  3958. }
  3959. #u2791 .text {
  3960. position:absolute;
  3961. align-self:center;
  3962. padding:2px 2px 2px 2px;
  3963. box-sizing:border-box;
  3964. width:100%;
  3965. }
  3966. #u2791_text {
  3967. border-width:0px;
  3968. word-wrap:break-word;
  3969. text-transform:none;
  3970. visibility:hidden;
  3971. }
  3972. #u2792_img {
  3973. border-width:0px;
  3974. position:absolute;
  3975. left:0px;
  3976. top:0px;
  3977. width:14px;
  3978. height:14px;
  3979. }
  3980. #u2792 {
  3981. border-width:0px;
  3982. position:absolute;
  3983. left:784px;
  3984. top:482px;
  3985. width:14px;
  3986. height:14px;
  3987. display:flex;
  3988. opacity:0.4000000059604645;
  3989. }
  3990. #u2792 .text {
  3991. position:absolute;
  3992. align-self:center;
  3993. padding:2px 2px 2px 2px;
  3994. box-sizing:border-box;
  3995. width:100%;
  3996. }
  3997. #u2792_text {
  3998. border-width:0px;
  3999. word-wrap:break-word;
  4000. text-transform:none;
  4001. visibility:hidden;
  4002. }
  4003. #u2793 {
  4004. border-width:0px;
  4005. position:absolute;
  4006. left:0px;
  4007. top:0px;
  4008. width:0px;
  4009. height:0px;
  4010. }
  4011. #u2794 {
  4012. border-width:0px;
  4013. position:absolute;
  4014. left:0px;
  4015. top:0px;
  4016. width:0px;
  4017. height:0px;
  4018. }
  4019. #u2795_div {
  4020. border-width:0px;
  4021. position:absolute;
  4022. left:0px;
  4023. top:0px;
  4024. width:70px;
  4025. height:47px;
  4026. background:inherit;
  4027. background-color:rgba(255, 255, 255, 0);
  4028. border:none;
  4029. border-radius:0px;
  4030. -moz-box-shadow:none;
  4031. -webkit-box-shadow:none;
  4032. box-shadow:none;
  4033. font-family:"Microsoft Tai Le", sans-serif;
  4034. font-weight:400;
  4035. font-style:normal;
  4036. font-size:14px;
  4037. color:rgba(0, 0, 0, 0.8470588235294118);
  4038. text-align:right;
  4039. line-height:22px;
  4040. }
  4041. #u2795 {
  4042. border-width:0px;
  4043. position:absolute;
  4044. left:303px;
  4045. top:180px;
  4046. width:70px;
  4047. height:47px;
  4048. display:flex;
  4049. font-family:"Microsoft Tai Le", sans-serif;
  4050. font-weight:400;
  4051. font-style:normal;
  4052. font-size:14px;
  4053. color:rgba(0, 0, 0, 0.8470588235294118);
  4054. text-align:right;
  4055. line-height:22px;
  4056. }
  4057. #u2795 .text {
  4058. position:absolute;
  4059. align-self:flex-start;
  4060. padding:5px 0px 29px 0px;
  4061. box-sizing:border-box;
  4062. width:100%;
  4063. }
  4064. #u2795_text {
  4065. border-width:0px;
  4066. white-space:nowrap;
  4067. text-transform:none;
  4068. }
  4069. #u2796_div {
  4070. border-width:0px;
  4071. position:absolute;
  4072. left:0px;
  4073. top:0px;
  4074. width:180px;
  4075. height:32px;
  4076. background:inherit;
  4077. background-color:rgba(255, 255, 255, 1);
  4078. box-sizing:border-box;
  4079. border-width:1px;
  4080. border-style:solid;
  4081. border-color:rgba(217, 217, 217, 1);
  4082. border-radius:4px;
  4083. -moz-box-shadow:none;
  4084. -webkit-box-shadow:none;
  4085. box-shadow:none;
  4086. font-family:"Microsoft Tai Le", sans-serif;
  4087. font-weight:400;
  4088. font-style:normal;
  4089. font-size:14px;
  4090. color:rgba(0, 0, 0, 0.24705882352941178);
  4091. text-align:left;
  4092. line-height:22px;
  4093. }
  4094. #u2796 {
  4095. border-width:0px;
  4096. position:absolute;
  4097. left:373px;
  4098. top:180px;
  4099. width:180px;
  4100. height:32px;
  4101. display:flex;
  4102. font-family:"Microsoft Tai Le", sans-serif;
  4103. font-weight:400;
  4104. font-style:normal;
  4105. font-size:14px;
  4106. color:rgba(0, 0, 0, 0.24705882352941178);
  4107. text-align:left;
  4108. line-height:22px;
  4109. }
  4110. #u2796 .text {
  4111. position:absolute;
  4112. align-self:flex-start;
  4113. padding:5px 0px 5px 12px;
  4114. box-sizing:border-box;
  4115. width:100%;
  4116. }
  4117. #u2796_text {
  4118. border-width:0px;
  4119. word-wrap:break-word;
  4120. text-transform:none;
  4121. }
  4122. #u2797_div {
  4123. border-width:0px;
  4124. position:absolute;
  4125. left:0px;
  4126. top:0px;
  4127. width:180px;
  4128. height:14px;
  4129. background:inherit;
  4130. background-color:rgba(255, 51, 153, 1);
  4131. border:none;
  4132. border-radius:0px;
  4133. -moz-box-shadow:none;
  4134. -webkit-box-shadow:none;
  4135. box-shadow:none;
  4136. color:#FFFFFF;
  4137. }
  4138. #u2797 {
  4139. border-width:0px;
  4140. position:absolute;
  4141. left:373px;
  4142. top:212px;
  4143. width:180px;
  4144. height:14px;
  4145. display:flex;
  4146. opacity:0;
  4147. color:#FFFFFF;
  4148. }
  4149. #u2797 .text {
  4150. position:absolute;
  4151. align-self:center;
  4152. padding:2px 2px 2px 2px;
  4153. box-sizing:border-box;
  4154. width:100%;
  4155. }
  4156. #u2797_text {
  4157. border-width:0px;
  4158. word-wrap:break-word;
  4159. text-transform:none;
  4160. }
  4161. #u2798_div {
  4162. border-width:0px;
  4163. position:absolute;
  4164. left:0px;
  4165. top:0px;
  4166. width:103px;
  4167. height:37px;
  4168. background:inherit;
  4169. background-color:rgba(24, 144, 255, 1);
  4170. border:none;
  4171. border-radius:4px;
  4172. -moz-box-shadow:none;
  4173. -webkit-box-shadow:none;
  4174. box-shadow:none;
  4175. font-family:"Microsoft YaHei", sans-serif;
  4176. font-weight:400;
  4177. font-style:normal;
  4178. font-size:14px;
  4179. color:#FFFFFF;
  4180. line-height:22px;
  4181. }
  4182. #u2798 {
  4183. border-width:0px;
  4184. position:absolute;
  4185. left:908px;
  4186. top:180px;
  4187. width:103px;
  4188. height:37px;
  4189. display:flex;
  4190. font-family:"Microsoft YaHei", sans-serif;
  4191. font-weight:400;
  4192. font-style:normal;
  4193. font-size:14px;
  4194. color:#FFFFFF;
  4195. line-height:22px;
  4196. }
  4197. #u2798 .text {
  4198. position:absolute;
  4199. align-self:center;
  4200. padding:0px 16px 0px 16px;
  4201. box-sizing:border-box;
  4202. width:100%;
  4203. }
  4204. #u2798_text {
  4205. border-width:0px;
  4206. word-wrap:break-word;
  4207. text-transform:none;
  4208. }
  4209. #u2799 {
  4210. border-width:0px;
  4211. position:absolute;
  4212. left:0px;
  4213. top:0px;
  4214. width:0px;
  4215. height:0px;
  4216. }
  4217. #u2800 {
  4218. border-width:0px;
  4219. position:absolute;
  4220. left:0px;
  4221. top:0px;
  4222. width:0px;
  4223. height:0px;
  4224. }
  4225. #u2801_div {
  4226. border-width:0px;
  4227. position:absolute;
  4228. left:0px;
  4229. top:0px;
  4230. width:240px;
  4231. height:36px;
  4232. background:inherit;
  4233. background-color:rgba(255, 255, 255, 1);
  4234. box-sizing:border-box;
  4235. border-width:1px;
  4236. border-style:solid;
  4237. border-color:rgba(220, 223, 230, 1);
  4238. border-radius:4px;
  4239. -moz-box-shadow:none;
  4240. -webkit-box-shadow:none;
  4241. box-shadow:none;
  4242. font-size:14px;
  4243. color:#C0C4CC;
  4244. text-align:left;
  4245. }
  4246. #u2801 {
  4247. border-width:0px;
  4248. position:absolute;
  4249. left:640px;
  4250. top:180px;
  4251. width:240px;
  4252. height:36px;
  4253. display:flex;
  4254. font-size:14px;
  4255. color:#C0C4CC;
  4256. text-align:left;
  4257. }
  4258. #u2801 .text {
  4259. position:absolute;
  4260. align-self:center;
  4261. padding:2px 2px 2px 13px;
  4262. box-sizing:border-box;
  4263. width:100%;
  4264. }
  4265. #u2801_div.mouseOver {
  4266. border-width:0px;
  4267. position:absolute;
  4268. left:0px;
  4269. top:0px;
  4270. width:240px;
  4271. height:36px;
  4272. background:inherit;
  4273. background-color:rgba(255, 255, 255, 1);
  4274. box-sizing:border-box;
  4275. border-width:1px;
  4276. border-style:solid;
  4277. border-color:rgba(192, 196, 204, 1);
  4278. border-radius:4px;
  4279. -moz-box-shadow:none;
  4280. -webkit-box-shadow:none;
  4281. box-shadow:none;
  4282. font-size:14px;
  4283. color:#C0C4CC;
  4284. text-align:left;
  4285. }
  4286. #u2801.mouseOver {
  4287. }
  4288. #u2801_div.selected {
  4289. border-width:0px;
  4290. position:absolute;
  4291. left:0px;
  4292. top:0px;
  4293. width:240px;
  4294. height:36px;
  4295. background:inherit;
  4296. background-color:rgba(255, 255, 255, 1);
  4297. box-sizing:border-box;
  4298. border-width:1px;
  4299. border-style:solid;
  4300. border-color:rgba(64, 158, 255, 1);
  4301. border-radius:4px;
  4302. -moz-box-shadow:none;
  4303. -webkit-box-shadow:none;
  4304. box-shadow:none;
  4305. font-size:14px;
  4306. color:#C0C4CC;
  4307. text-align:left;
  4308. }
  4309. #u2801.selected {
  4310. }
  4311. #u2801_div.disabled {
  4312. border-width:0px;
  4313. position:absolute;
  4314. left:0px;
  4315. top:0px;
  4316. width:240px;
  4317. height:36px;
  4318. background:inherit;
  4319. background-color:rgba(245, 247, 250, 1);
  4320. box-sizing:border-box;
  4321. border-width:1px;
  4322. border-style:solid;
  4323. border-color:rgba(220, 223, 230, 1);
  4324. border-radius:4px;
  4325. -moz-box-shadow:none;
  4326. -webkit-box-shadow:none;
  4327. box-shadow:none;
  4328. font-size:14px;
  4329. color:#C0C4CC;
  4330. text-align:left;
  4331. }
  4332. #u2801.disabled {
  4333. }
  4334. #u2801_div.mouseOver.selected {
  4335. border-width:0px;
  4336. position:absolute;
  4337. left:0px;
  4338. top:0px;
  4339. width:240px;
  4340. height:36px;
  4341. background:inherit;
  4342. background-color:rgba(255, 255, 255, 1);
  4343. box-sizing:border-box;
  4344. border-width:1px;
  4345. border-style:solid;
  4346. border-color:rgba(64, 158, 255, 1);
  4347. border-radius:4px;
  4348. -moz-box-shadow:none;
  4349. -webkit-box-shadow:none;
  4350. box-shadow:none;
  4351. font-size:14px;
  4352. color:#C0C4CC;
  4353. text-align:left;
  4354. }
  4355. #u2801.mouseOver.selected {
  4356. }
  4357. #u2801_div.selected.disabled {
  4358. border-width:0px;
  4359. position:absolute;
  4360. left:0px;
  4361. top:0px;
  4362. width:240px;
  4363. height:36px;
  4364. background:inherit;
  4365. background-color:rgba(245, 247, 250, 1);
  4366. box-sizing:border-box;
  4367. border-width:1px;
  4368. border-style:solid;
  4369. border-color:rgba(64, 158, 255, 1);
  4370. border-radius:4px;
  4371. -moz-box-shadow:none;
  4372. -webkit-box-shadow:none;
  4373. box-shadow:none;
  4374. font-size:14px;
  4375. color:#C0C4CC;
  4376. text-align:left;
  4377. }
  4378. #u2801.selected.disabled {
  4379. }
  4380. #u2801_text {
  4381. border-width:0px;
  4382. word-wrap:break-word;
  4383. text-transform:none;
  4384. }
  4385. #u2802_img {
  4386. border-width:0px;
  4387. position:absolute;
  4388. left:0px;
  4389. top:0px;
  4390. width:10px;
  4391. height:6px;
  4392. }
  4393. #u2802 {
  4394. border-width:0px;
  4395. position:absolute;
  4396. left:856px;
  4397. top:195px;
  4398. width:10px;
  4399. height:6px;
  4400. display:flex;
  4401. }
  4402. #u2802 .text {
  4403. position:absolute;
  4404. align-self:center;
  4405. padding:2px 2px 2px 20px;
  4406. box-sizing:border-box;
  4407. width:100%;
  4408. }
  4409. #u2802_text {
  4410. border-width:0px;
  4411. word-wrap:break-word;
  4412. text-transform:none;
  4413. visibility:hidden;
  4414. }
  4415. #u2803 {
  4416. position:absolute;
  4417. left:640px;
  4418. top:220px;
  4419. visibility:hidden;
  4420. }
  4421. #u2803_state0 {
  4422. position:relative;
  4423. left:0px;
  4424. top:0px;
  4425. width:240px;
  4426. height:102px;
  4427. background-image:none;
  4428. border:none;
  4429. border-radius:0px;
  4430. -moz-box-shadow:none;
  4431. -webkit-box-shadow:none;
  4432. box-shadow:none;
  4433. }
  4434. #u2803_state0_content {
  4435. border-width:0px;
  4436. position:absolute;
  4437. left:0px;
  4438. top:0px;
  4439. width:1px;
  4440. height:1px;
  4441. }
  4442. #u2804_div {
  4443. border-width:0px;
  4444. position:absolute;
  4445. left:0px;
  4446. top:0px;
  4447. width:240px;
  4448. height:98px;
  4449. background:inherit;
  4450. background-color:rgba(255, 255, 255, 1);
  4451. box-sizing:border-box;
  4452. border-width:1px;
  4453. border-style:solid;
  4454. border-color:rgba(220, 223, 230, 1);
  4455. border-radius:2px;
  4456. -moz-box-shadow:0px 2px 12px rgba(0, 0, 0, 0.09803921568627451);
  4457. -webkit-box-shadow:0px 2px 12px rgba(0, 0, 0, 0.09803921568627451);
  4458. box-shadow:0px 2px 12px rgba(0, 0, 0, 0.09803921568627451);
  4459. }
  4460. #u2804 {
  4461. border-width:0px;
  4462. position:absolute;
  4463. left:0px;
  4464. top:4px;
  4465. width:240px;
  4466. height:98px;
  4467. display:flex;
  4468. }
  4469. #u2804 .text {
  4470. position:absolute;
  4471. align-self:center;
  4472. padding:2px 2px 2px 2px;
  4473. box-sizing:border-box;
  4474. width:100%;
  4475. }
  4476. #u2804_text {
  4477. border-width:0px;
  4478. word-wrap:break-word;
  4479. text-transform:none;
  4480. visibility:hidden;
  4481. }
  4482. #u2805_img {
  4483. border-width:0px;
  4484. position:absolute;
  4485. left:0px;
  4486. top:0px;
  4487. width:7px;
  4488. height:4px;
  4489. }
  4490. #u2805 {
  4491. border-width:0px;
  4492. position:absolute;
  4493. left:22px;
  4494. top:0px;
  4495. width:7px;
  4496. height:4px;
  4497. display:flex;
  4498. }
  4499. #u2805 .text {
  4500. position:absolute;
  4501. align-self:center;
  4502. padding:2px 2px 2px 2px;
  4503. box-sizing:border-box;
  4504. width:100%;
  4505. }
  4506. #u2805_text {
  4507. border-width:0px;
  4508. word-wrap:break-word;
  4509. text-transform:none;
  4510. visibility:hidden;
  4511. }
  4512. #u2806_div {
  4513. border-width:0px;
  4514. position:absolute;
  4515. left:0px;
  4516. top:0px;
  4517. width:238px;
  4518. height:30px;
  4519. background:inherit;
  4520. background-color:rgba(255, 255, 255, 1);
  4521. border:none;
  4522. border-radius:0px;
  4523. -moz-box-shadow:none;
  4524. -webkit-box-shadow:none;
  4525. box-shadow:none;
  4526. text-align:left;
  4527. }
  4528. #u2806 {
  4529. border-width:0px;
  4530. position:absolute;
  4531. left:1px;
  4532. top:8px;
  4533. width:238px;
  4534. height:30px;
  4535. display:flex;
  4536. text-align:left;
  4537. }
  4538. #u2806 .text {
  4539. position:absolute;
  4540. align-self:center;
  4541. padding:2px 2px 2px 15px;
  4542. box-sizing:border-box;
  4543. width:100%;
  4544. }
  4545. #u2806_div.mouseOver {
  4546. border-width:0px;
  4547. position:absolute;
  4548. left:0px;
  4549. top:0px;
  4550. width:238px;
  4551. height:30px;
  4552. background:inherit;
  4553. background-color:rgba(245, 247, 250, 1);
  4554. border:none;
  4555. border-radius:0px;
  4556. -moz-box-shadow:none;
  4557. -webkit-box-shadow:none;
  4558. box-shadow:none;
  4559. text-align:left;
  4560. }
  4561. #u2806.mouseOver {
  4562. }
  4563. #u2806_div.selected {
  4564. border-width:0px;
  4565. position:absolute;
  4566. left:0px;
  4567. top:0px;
  4568. width:238px;
  4569. height:30px;
  4570. background:inherit;
  4571. background-color:rgba(255, 255, 255, 1);
  4572. border:none;
  4573. border-radius:0px;
  4574. -moz-box-shadow:none;
  4575. -webkit-box-shadow:none;
  4576. box-shadow:none;
  4577. text-align:left;
  4578. }
  4579. #u2806.selected {
  4580. }
  4581. #u2806_div.disabled {
  4582. border-width:0px;
  4583. position:absolute;
  4584. left:0px;
  4585. top:0px;
  4586. width:238px;
  4587. height:30px;
  4588. background:inherit;
  4589. background-color:rgba(255, 255, 255, 1);
  4590. border:none;
  4591. border-radius:0px;
  4592. -moz-box-shadow:none;
  4593. -webkit-box-shadow:none;
  4594. box-shadow:none;
  4595. text-align:left;
  4596. }
  4597. #u2806.disabled {
  4598. }
  4599. #u2806_div.mouseOver.selected {
  4600. border-width:0px;
  4601. position:absolute;
  4602. left:0px;
  4603. top:0px;
  4604. width:238px;
  4605. height:30px;
  4606. background:inherit;
  4607. background-color:rgba(245, 247, 250, 1);
  4608. border:none;
  4609. border-radius:0px;
  4610. -moz-box-shadow:none;
  4611. -webkit-box-shadow:none;
  4612. box-shadow:none;
  4613. text-align:left;
  4614. }
  4615. #u2806.mouseOver.selected {
  4616. }
  4617. #u2806_div.selected.disabled {
  4618. border-width:0px;
  4619. position:absolute;
  4620. left:0px;
  4621. top:0px;
  4622. width:238px;
  4623. height:30px;
  4624. background:inherit;
  4625. background-color:rgba(255, 255, 255, 1);
  4626. border:none;
  4627. border-radius:0px;
  4628. -moz-box-shadow:none;
  4629. -webkit-box-shadow:none;
  4630. box-shadow:none;
  4631. text-align:left;
  4632. }
  4633. #u2806.selected.disabled {
  4634. }
  4635. #u2806_text {
  4636. border-width:0px;
  4637. word-wrap:break-word;
  4638. text-transform:none;
  4639. }
  4640. #u2807_div {
  4641. border-width:0px;
  4642. position:absolute;
  4643. left:0px;
  4644. top:0px;
  4645. width:238px;
  4646. height:30px;
  4647. background:inherit;
  4648. background-color:rgba(255, 255, 255, 1);
  4649. border:none;
  4650. border-radius:0px;
  4651. -moz-box-shadow:none;
  4652. -webkit-box-shadow:none;
  4653. box-shadow:none;
  4654. text-align:left;
  4655. }
  4656. #u2807 {
  4657. border-width:0px;
  4658. position:absolute;
  4659. left:1px;
  4660. top:38px;
  4661. width:238px;
  4662. height:30px;
  4663. display:flex;
  4664. text-align:left;
  4665. }
  4666. #u2807 .text {
  4667. position:absolute;
  4668. align-self:center;
  4669. padding:2px 2px 2px 15px;
  4670. box-sizing:border-box;
  4671. width:100%;
  4672. }
  4673. #u2807_div.mouseOver {
  4674. border-width:0px;
  4675. position:absolute;
  4676. left:0px;
  4677. top:0px;
  4678. width:238px;
  4679. height:30px;
  4680. background:inherit;
  4681. background-color:rgba(245, 247, 250, 1);
  4682. border:none;
  4683. border-radius:0px;
  4684. -moz-box-shadow:none;
  4685. -webkit-box-shadow:none;
  4686. box-shadow:none;
  4687. text-align:left;
  4688. }
  4689. #u2807.mouseOver {
  4690. }
  4691. #u2807_div.selected {
  4692. border-width:0px;
  4693. position:absolute;
  4694. left:0px;
  4695. top:0px;
  4696. width:238px;
  4697. height:30px;
  4698. background:inherit;
  4699. background-color:rgba(255, 255, 255, 1);
  4700. border:none;
  4701. border-radius:0px;
  4702. -moz-box-shadow:none;
  4703. -webkit-box-shadow:none;
  4704. box-shadow:none;
  4705. text-align:left;
  4706. }
  4707. #u2807.selected {
  4708. }
  4709. #u2807_div.disabled {
  4710. border-width:0px;
  4711. position:absolute;
  4712. left:0px;
  4713. top:0px;
  4714. width:238px;
  4715. height:30px;
  4716. background:inherit;
  4717. background-color:rgba(255, 255, 255, 1);
  4718. border:none;
  4719. border-radius:0px;
  4720. -moz-box-shadow:none;
  4721. -webkit-box-shadow:none;
  4722. box-shadow:none;
  4723. text-align:left;
  4724. }
  4725. #u2807.disabled {
  4726. }
  4727. #u2807_div.mouseOver.selected {
  4728. border-width:0px;
  4729. position:absolute;
  4730. left:0px;
  4731. top:0px;
  4732. width:238px;
  4733. height:30px;
  4734. background:inherit;
  4735. background-color:rgba(245, 247, 250, 1);
  4736. border:none;
  4737. border-radius:0px;
  4738. -moz-box-shadow:none;
  4739. -webkit-box-shadow:none;
  4740. box-shadow:none;
  4741. text-align:left;
  4742. }
  4743. #u2807.mouseOver.selected {
  4744. }
  4745. #u2807_div.selected.disabled {
  4746. border-width:0px;
  4747. position:absolute;
  4748. left:0px;
  4749. top:0px;
  4750. width:238px;
  4751. height:30px;
  4752. background:inherit;
  4753. background-color:rgba(255, 255, 255, 1);
  4754. border:none;
  4755. border-radius:0px;
  4756. -moz-box-shadow:none;
  4757. -webkit-box-shadow:none;
  4758. box-shadow:none;
  4759. text-align:left;
  4760. }
  4761. #u2807.selected.disabled {
  4762. }
  4763. #u2807_text {
  4764. border-width:0px;
  4765. word-wrap:break-word;
  4766. text-transform:none;
  4767. }
  4768. #u2808_div {
  4769. border-width:0px;
  4770. position:absolute;
  4771. left:0px;
  4772. top:0px;
  4773. width:238px;
  4774. height:30px;
  4775. background:inherit;
  4776. background-color:rgba(255, 255, 255, 1);
  4777. border:none;
  4778. border-radius:0px;
  4779. -moz-box-shadow:none;
  4780. -webkit-box-shadow:none;
  4781. box-shadow:none;
  4782. text-align:left;
  4783. }
  4784. #u2808 {
  4785. border-width:0px;
  4786. position:absolute;
  4787. left:1px;
  4788. top:68px;
  4789. width:238px;
  4790. height:30px;
  4791. display:flex;
  4792. text-align:left;
  4793. }
  4794. #u2808 .text {
  4795. position:absolute;
  4796. align-self:center;
  4797. padding:2px 2px 2px 15px;
  4798. box-sizing:border-box;
  4799. width:100%;
  4800. }
  4801. #u2808_div.mouseOver {
  4802. border-width:0px;
  4803. position:absolute;
  4804. left:0px;
  4805. top:0px;
  4806. width:238px;
  4807. height:30px;
  4808. background:inherit;
  4809. background-color:rgba(245, 247, 250, 1);
  4810. border:none;
  4811. border-radius:0px;
  4812. -moz-box-shadow:none;
  4813. -webkit-box-shadow:none;
  4814. box-shadow:none;
  4815. text-align:left;
  4816. }
  4817. #u2808.mouseOver {
  4818. }
  4819. #u2808_div.selected {
  4820. border-width:0px;
  4821. position:absolute;
  4822. left:0px;
  4823. top:0px;
  4824. width:238px;
  4825. height:30px;
  4826. background:inherit;
  4827. background-color:rgba(255, 255, 255, 1);
  4828. border:none;
  4829. border-radius:0px;
  4830. -moz-box-shadow:none;
  4831. -webkit-box-shadow:none;
  4832. box-shadow:none;
  4833. text-align:left;
  4834. }
  4835. #u2808.selected {
  4836. }
  4837. #u2808_div.disabled {
  4838. border-width:0px;
  4839. position:absolute;
  4840. left:0px;
  4841. top:0px;
  4842. width:238px;
  4843. height:30px;
  4844. background:inherit;
  4845. background-color:rgba(255, 255, 255, 1);
  4846. border:none;
  4847. border-radius:0px;
  4848. -moz-box-shadow:none;
  4849. -webkit-box-shadow:none;
  4850. box-shadow:none;
  4851. text-align:left;
  4852. }
  4853. #u2808.disabled {
  4854. }
  4855. #u2808_div.mouseOver.selected {
  4856. border-width:0px;
  4857. position:absolute;
  4858. left:0px;
  4859. top:0px;
  4860. width:238px;
  4861. height:30px;
  4862. background:inherit;
  4863. background-color:rgba(245, 247, 250, 1);
  4864. border:none;
  4865. border-radius:0px;
  4866. -moz-box-shadow:none;
  4867. -webkit-box-shadow:none;
  4868. box-shadow:none;
  4869. text-align:left;
  4870. }
  4871. #u2808.mouseOver.selected {
  4872. }
  4873. #u2808_div.selected.disabled {
  4874. border-width:0px;
  4875. position:absolute;
  4876. left:0px;
  4877. top:0px;
  4878. width:238px;
  4879. height:30px;
  4880. background:inherit;
  4881. background-color:rgba(255, 255, 255, 1);
  4882. border:none;
  4883. border-radius:0px;
  4884. -moz-box-shadow:none;
  4885. -webkit-box-shadow:none;
  4886. box-shadow:none;
  4887. text-align:left;
  4888. }
  4889. #u2808.selected.disabled {
  4890. }
  4891. #u2808_text {
  4892. border-width:0px;
  4893. word-wrap:break-word;
  4894. text-transform:none;
  4895. }
  4896. #u2809_div {
  4897. border-width:0px;
  4898. position:absolute;
  4899. left:0px;
  4900. top:0px;
  4901. width:70px;
  4902. height:47px;
  4903. background:inherit;
  4904. background-color:rgba(255, 255, 255, 0);
  4905. border:none;
  4906. border-radius:0px;
  4907. -moz-box-shadow:none;
  4908. -webkit-box-shadow:none;
  4909. box-shadow:none;
  4910. font-family:"Microsoft Tai Le", sans-serif;
  4911. font-weight:400;
  4912. font-style:normal;
  4913. font-size:14px;
  4914. color:rgba(0, 0, 0, 0.8470588235294118);
  4915. text-align:right;
  4916. line-height:22px;
  4917. }
  4918. #u2809 {
  4919. border-width:0px;
  4920. position:absolute;
  4921. left:570px;
  4922. top:180px;
  4923. width:70px;
  4924. height:47px;
  4925. display:flex;
  4926. font-family:"Microsoft Tai Le", sans-serif;
  4927. font-weight:400;
  4928. font-style:normal;
  4929. font-size:14px;
  4930. color:rgba(0, 0, 0, 0.8470588235294118);
  4931. text-align:right;
  4932. line-height:22px;
  4933. }
  4934. #u2809 .text {
  4935. position:absolute;
  4936. align-self:flex-start;
  4937. padding:5px 0px 29px 0px;
  4938. box-sizing:border-box;
  4939. width:100%;
  4940. }
  4941. #u2809_text {
  4942. border-width:0px;
  4943. white-space:nowrap;
  4944. text-transform:none;
  4945. }
  4946. #u2810_div {
  4947. border-width:0px;
  4948. position:absolute;
  4949. left:0px;
  4950. top:0px;
  4951. width:228px;
  4952. height:134px;
  4953. background:inherit;
  4954. background-color:rgba(255, 223, 37, 1);
  4955. border:none;
  4956. border-radius:0px;
  4957. -moz-box-shadow:5px 5px 5px rgba(0, 0, 0, 0.2);
  4958. -webkit-box-shadow:5px 5px 5px rgba(0, 0, 0, 0.2);
  4959. box-shadow:5px 5px 5px rgba(0, 0, 0, 0.2);
  4960. }
  4961. #u2810 {
  4962. border-width:0px;
  4963. position:absolute;
  4964. left:608px;
  4965. top:0px;
  4966. width:228px;
  4967. height:134px;
  4968. display:flex;
  4969. }
  4970. #u2810 .text {
  4971. position:absolute;
  4972. align-self:flex-start;
  4973. padding:10px 10px 10px 10px;
  4974. box-sizing:border-box;
  4975. width:100%;
  4976. }
  4977. #u2810_text {
  4978. border-width:0px;
  4979. word-wrap:break-word;
  4980. text-transform:none;
  4981. }
  4982. #u2811_div {
  4983. border-width:0px;
  4984. position:absolute;
  4985. left:0px;
  4986. top:0px;
  4987. width:338px;
  4988. height:44px;
  4989. background:inherit;
  4990. background-color:rgba(255, 255, 255, 0);
  4991. box-sizing:border-box;
  4992. border-width:4px;
  4993. border-style:solid;
  4994. border-color:rgba(255, 77, 58, 1);
  4995. border-radius:0px;
  4996. -moz-box-shadow:none;
  4997. -webkit-box-shadow:none;
  4998. box-shadow:none;
  4999. }
  5000. #u2811 {
  5001. border-width:0px;
  5002. position:absolute;
  5003. left:553px;
  5004. top:176px;
  5005. width:338px;
  5006. height:44px;
  5007. display:flex;
  5008. }
  5009. #u2811 .text {
  5010. position:absolute;
  5011. align-self:center;
  5012. padding:2px 2px 2px 2px;
  5013. box-sizing:border-box;
  5014. width:100%;
  5015. }
  5016. #u2811_text {
  5017. border-width:0px;
  5018. word-wrap:break-word;
  5019. text-transform:none;
  5020. visibility:hidden;
  5021. }
  5022. #u2812 {
  5023. border-width:0px;
  5024. position:absolute;
  5025. left:722px;
  5026. top:176px;
  5027. width:0px;
  5028. height:0px;
  5029. }
  5030. #u2812_seg0 {
  5031. border-width:0px;
  5032. position:absolute;
  5033. left:-7px;
  5034. top:-42px;
  5035. width:14px;
  5036. height:49px;
  5037. }
  5038. #u2812_seg1 {
  5039. border-width:0px;
  5040. position:absolute;
  5041. left:-14px;
  5042. top:-45px;
  5043. width:28px;
  5044. height:28px;
  5045. }
  5046. #u2812_text {
  5047. border-width:0px;
  5048. position:absolute;
  5049. left:-50px;
  5050. top:-29px;
  5051. width:100px;
  5052. word-wrap:break-word;
  5053. text-transform:none;
  5054. visibility:hidden;
  5055. }
  5056. #u2813_div {
  5057. border-width:0px;
  5058. position:absolute;
  5059. left:0px;
  5060. top:0px;
  5061. width:326px;
  5062. height:666px;
  5063. background:inherit;
  5064. background-color:rgba(255, 223, 37, 1);
  5065. border:none;
  5066. border-radius:0px;
  5067. -moz-box-shadow:5px 5px 5px rgba(0, 0, 0, 0.2);
  5068. -webkit-box-shadow:5px 5px 5px rgba(0, 0, 0, 0.2);
  5069. box-shadow:5px 5px 5px rgba(0, 0, 0, 0.2);
  5070. }
  5071. #u2813 {
  5072. border-width:0px;
  5073. position:absolute;
  5074. left:1554px;
  5075. top:173px;
  5076. width:326px;
  5077. height:666px;
  5078. display:flex;
  5079. }
  5080. #u2813 .text {
  5081. position:absolute;
  5082. align-self:flex-start;
  5083. padding:10px 10px 10px 10px;
  5084. box-sizing:border-box;
  5085. width:100%;
  5086. }
  5087. #u2813_text {
  5088. border-width:0px;
  5089. word-wrap:break-word;
  5090. text-transform:none;
  5091. }