styles.css 84 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395439643974398439944004401440244034404440544064407440844094410441144124413441444154416441744184419442044214422442344244425442644274428442944304431443244334434443544364437443844394440444144424443444444454446444744484449445044514452445344544455445644574458445944604461446244634464446544664467446844694470447144724473447444754476447744784479448044814482448344844485448644874488448944904491449244934494449544964497449844994500450145024503450445054506450745084509451045114512451345144515451645174518451945204521452245234524452545264527452845294530453145324533453445354536453745384539454045414542454345444545454645474548454945504551455245534554455545564557455845594560456145624563456445654566456745684569457045714572457345744575457645774578457945804581458245834584458545864587458845894590459145924593459445954596459745984599460046014602460346044605460646074608460946104611461246134614461546164617461846194620462146224623462446254626462746284629463046314632463346344635463646374638463946404641464246434644464546464647464846494650465146524653465446554656465746584659466046614662466346644665466646674668466946704671467246734674467546764677467846794680468146824683468446854686468746884689469046914692469346944695469646974698469947004701470247034704470547064707470847094710471147124713471447154716471747184719472047214722472347244725472647274728472947304731473247334734473547364737473847394740474147424743474447454746474747484749475047514752475347544755475647574758475947604761476247634764476547664767476847694770
  1. body {
  2. margin:0px;
  3. background-image:none;
  4. position:relative;
  5. left:-0px;
  6. width:2022px;
  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. #u1268_div {
  20. border-width:0px;
  21. position:absolute;
  22. left:0px;
  23. top:0px;
  24. width:1440px;
  25. height:999px;
  26. background:inherit;
  27. background-color:rgba(240, 242, 245, 1);
  28. border:none;
  29. border-radius:0px;
  30. -moz-box-shadow:none;
  31. -webkit-box-shadow:none;
  32. box-shadow:none;
  33. }
  34. #u1268 {
  35. border-width:0px;
  36. position:absolute;
  37. left:0px;
  38. top:0px;
  39. width:1440px;
  40. height:999px;
  41. display:flex;
  42. }
  43. #u1268 .text {
  44. position:absolute;
  45. align-self:center;
  46. padding:2px 2px 2px 2px;
  47. box-sizing:border-box;
  48. width:100%;
  49. }
  50. #u1268_text {
  51. border-width:0px;
  52. word-wrap:break-word;
  53. text-transform:none;
  54. }
  55. #u1269 {
  56. border-width:0px;
  57. position:absolute;
  58. left:0px;
  59. top:0px;
  60. width:0px;
  61. height:0px;
  62. }
  63. #u1270_div {
  64. border-width:0px;
  65. position:absolute;
  66. left:0px;
  67. top:0px;
  68. width:1184px;
  69. height:64px;
  70. background:inherit;
  71. background-color:rgba(255, 255, 255, 1);
  72. border:none;
  73. border-radius:0px;
  74. -moz-box-shadow:none;
  75. -webkit-box-shadow:none;
  76. box-shadow:none;
  77. }
  78. #u1270 {
  79. border-width:0px;
  80. position:absolute;
  81. left:256px;
  82. top:0px;
  83. width:1184px;
  84. height:64px;
  85. display:flex;
  86. }
  87. #u1270 .text {
  88. position:absolute;
  89. align-self:center;
  90. padding:2px 2px 2px 2px;
  91. box-sizing:border-box;
  92. width:100%;
  93. }
  94. #u1270_text {
  95. border-width:0px;
  96. word-wrap:break-word;
  97. text-transform:none;
  98. visibility:hidden;
  99. }
  100. #u1271_img {
  101. border-width:0px;
  102. position:absolute;
  103. left:0px;
  104. top:0px;
  105. width:20px;
  106. height:15px;
  107. }
  108. #u1271 {
  109. border-width:0px;
  110. position:absolute;
  111. left:284px;
  112. top:25px;
  113. width:20px;
  114. height:15px;
  115. display:flex;
  116. }
  117. #u1271 .text {
  118. position:absolute;
  119. align-self:center;
  120. padding:2px 2px 2px 2px;
  121. box-sizing:border-box;
  122. width:100%;
  123. }
  124. #u1271_text {
  125. border-width:0px;
  126. word-wrap:break-word;
  127. text-transform:none;
  128. visibility:hidden;
  129. }
  130. #u1272 {
  131. border-width:0px;
  132. position:absolute;
  133. left:0px;
  134. top:0px;
  135. width:0px;
  136. height:0px;
  137. }
  138. #u1273_img {
  139. border-width:0px;
  140. position:absolute;
  141. left:0px;
  142. top:0px;
  143. width:24px;
  144. height:24px;
  145. }
  146. #u1273 {
  147. border-width:0px;
  148. position:absolute;
  149. left:1317px;
  150. top:21px;
  151. width:24px;
  152. height:24px;
  153. display:flex;
  154. }
  155. #u1273 .text {
  156. position:absolute;
  157. align-self:center;
  158. padding:2px 2px 2px 2px;
  159. box-sizing:border-box;
  160. width:100%;
  161. }
  162. #u1273_text {
  163. border-width:0px;
  164. word-wrap:break-word;
  165. text-transform:none;
  166. visibility:hidden;
  167. }
  168. #u1274_div {
  169. border-width:0px;
  170. position:absolute;
  171. left:0px;
  172. top:0px;
  173. width:42px;
  174. height:22px;
  175. background:inherit;
  176. background-color:rgba(255, 255, 255, 0);
  177. border:none;
  178. border-radius:0px;
  179. -moz-box-shadow:none;
  180. -webkit-box-shadow:none;
  181. box-shadow:none;
  182. color:rgba(0, 0, 0, 0.6470588235294118);
  183. line-height:22px;
  184. }
  185. #u1274 {
  186. border-width:0px;
  187. position:absolute;
  188. left:1349px;
  189. top:22px;
  190. width:42px;
  191. height:22px;
  192. display:flex;
  193. color:rgba(0, 0, 0, 0.6470588235294118);
  194. line-height:22px;
  195. }
  196. #u1274 .text {
  197. position:absolute;
  198. align-self:flex-start;
  199. padding:0px 0px 0px 0px;
  200. box-sizing:border-box;
  201. width:100%;
  202. }
  203. #u1274_text {
  204. border-width:0px;
  205. white-space:nowrap;
  206. text-transform:none;
  207. }
  208. #u1275 {
  209. border-width:0px;
  210. position:absolute;
  211. left:0px;
  212. top:0px;
  213. width:0px;
  214. height:0px;
  215. }
  216. #u1276_div {
  217. border-width:0px;
  218. position:absolute;
  219. left:0px;
  220. top:0px;
  221. width:1149px;
  222. height:842px;
  223. background:inherit;
  224. background-color:rgba(255, 255, 255, 1);
  225. border:none;
  226. border-radius:4px;
  227. -moz-box-shadow:none;
  228. -webkit-box-shadow:none;
  229. box-shadow:none;
  230. font-family:"Microsoft Tai Le", sans-serif;
  231. font-weight:400;
  232. font-style:normal;
  233. font-size:14px;
  234. color:#666666;
  235. text-align:left;
  236. line-height:18px;
  237. }
  238. #u1276 {
  239. border-width:0px;
  240. position:absolute;
  241. left:277px;
  242. top:137px;
  243. width:1149px;
  244. height:842px;
  245. display:flex;
  246. font-family:"Microsoft Tai Le", sans-serif;
  247. font-weight:400;
  248. font-style:normal;
  249. font-size:14px;
  250. color:#666666;
  251. text-align:left;
  252. line-height:18px;
  253. }
  254. #u1276 .text {
  255. position:absolute;
  256. align-self:flex-start;
  257. padding:16px 16px 2px 16px;
  258. box-sizing:border-box;
  259. width:100%;
  260. }
  261. #u1276_text {
  262. border-width:0px;
  263. word-wrap:break-word;
  264. text-transform:none;
  265. visibility:hidden;
  266. }
  267. #u1277_div {
  268. border-width:0px;
  269. position:absolute;
  270. left:0px;
  271. top:0px;
  272. width:256px;
  273. height:999px;
  274. background:inherit;
  275. background-color:rgba(255, 255, 255, 1);
  276. border:none;
  277. border-radius:0px;
  278. -moz-box-shadow:2px 0px 4px rgba(0, 0, 0, 0.0784313725490196);
  279. -webkit-box-shadow:2px 0px 4px rgba(0, 0, 0, 0.0784313725490196);
  280. box-shadow:2px 0px 4px rgba(0, 0, 0, 0.0784313725490196);
  281. }
  282. #u1277 {
  283. border-width:0px;
  284. position:absolute;
  285. left:0px;
  286. top:0px;
  287. width:256px;
  288. height:999px;
  289. display:flex;
  290. }
  291. #u1277 .text {
  292. position:absolute;
  293. align-self:center;
  294. padding:2px 2px 2px 2px;
  295. box-sizing:border-box;
  296. width:100%;
  297. }
  298. #u1277_text {
  299. border-width:0px;
  300. word-wrap:break-word;
  301. text-transform:none;
  302. visibility:hidden;
  303. }
  304. #u1278_img {
  305. border-width:0px;
  306. position:absolute;
  307. left:0px;
  308. top:0px;
  309. width:256px;
  310. height:65px;
  311. }
  312. #u1278 {
  313. border-width:0px;
  314. position:absolute;
  315. left:0px;
  316. top:0px;
  317. width:256px;
  318. height:65px;
  319. display:flex;
  320. font-family:"PingFangSC-Semibold", "PingFang SC Semibold", "PingFang SC", sans-serif;
  321. font-weight:650;
  322. font-style:normal;
  323. font-size:18px;
  324. color:#2836FE;
  325. text-align:left;
  326. line-height:26px;
  327. }
  328. #u1278 .text {
  329. position:absolute;
  330. align-self:center;
  331. padding:0px 0px 0px 68px;
  332. box-sizing:border-box;
  333. width:100%;
  334. }
  335. #u1278_text {
  336. border-width:0px;
  337. word-wrap:break-word;
  338. text-transform:none;
  339. }
  340. #u1279_div {
  341. border-width:0px;
  342. position:absolute;
  343. left:0px;
  344. top:0px;
  345. width:1149px;
  346. height:51px;
  347. background:inherit;
  348. background-color:rgba(255, 255, 255, 1);
  349. box-sizing:border-box;
  350. border-width:1px;
  351. border-style:solid;
  352. border-color:rgba(233, 233, 233, 1);
  353. border-left:0px;
  354. border-right:0px;
  355. border-radius:0px;
  356. border-top-left-radius:0px;
  357. border-top-right-radius:0px;
  358. border-bottom-right-radius:0px;
  359. border-bottom-left-radius:0px;
  360. -moz-box-shadow:none;
  361. -webkit-box-shadow:none;
  362. box-shadow:none;
  363. font-family:"Malayalam MN", sans-serif;
  364. font-weight:400;
  365. font-style:normal;
  366. text-align:left;
  367. }
  368. #u1279 {
  369. border-width:0px;
  370. position:absolute;
  371. left:277px;
  372. top:74px;
  373. width:1149px;
  374. height:51px;
  375. display:flex;
  376. font-family:"Malayalam MN", sans-serif;
  377. font-weight:400;
  378. font-style:normal;
  379. text-align:left;
  380. }
  381. #u1279 .text {
  382. position:absolute;
  383. align-self:flex-start;
  384. padding:18px 2px 2px 36px;
  385. box-sizing:border-box;
  386. width:100%;
  387. }
  388. #u1279_text {
  389. border-width:0px;
  390. word-wrap:break-word;
  391. text-transform:none;
  392. visibility:hidden;
  393. }
  394. #u1280_div {
  395. border-width:0px;
  396. position:absolute;
  397. left:0px;
  398. top:0px;
  399. width:7px;
  400. height:25px;
  401. background:inherit;
  402. background-color:rgba(40, 54, 254, 1);
  403. border:none;
  404. border-radius:0px;
  405. -moz-box-shadow:none;
  406. -webkit-box-shadow:none;
  407. box-shadow:none;
  408. }
  409. #u1280 {
  410. border-width:0px;
  411. position:absolute;
  412. left:293px;
  413. top:87px;
  414. width:7px;
  415. height:25px;
  416. display:flex;
  417. }
  418. #u1280 .text {
  419. position:absolute;
  420. align-self:center;
  421. padding:2px 2px 2px 2px;
  422. box-sizing:border-box;
  423. width:100%;
  424. }
  425. #u1280_text {
  426. border-width:0px;
  427. word-wrap:break-word;
  428. text-transform:none;
  429. visibility:hidden;
  430. }
  431. #u1281_div {
  432. border-width:0px;
  433. position:absolute;
  434. left:0px;
  435. top:0px;
  436. width:56px;
  437. height:16px;
  438. background:inherit;
  439. background-color:rgba(255, 255, 255, 0);
  440. border:none;
  441. border-radius:0px;
  442. -moz-box-shadow:none;
  443. -webkit-box-shadow:none;
  444. box-shadow:none;
  445. font-family:"Arial Negreta", "Arial Normal", "Arial", sans-serif;
  446. font-weight:700;
  447. font-style:normal;
  448. font-size:14px;
  449. color:#2836FE;
  450. }
  451. #u1281 {
  452. border-width:0px;
  453. position:absolute;
  454. left:308px;
  455. top:92px;
  456. width:56px;
  457. height:16px;
  458. display:flex;
  459. font-family:"Arial Negreta", "Arial Normal", "Arial", sans-serif;
  460. font-weight:700;
  461. font-style:normal;
  462. font-size:14px;
  463. color:#2836FE;
  464. }
  465. #u1281 .text {
  466. position:absolute;
  467. align-self:flex-start;
  468. padding:0px 0px 0px 0px;
  469. box-sizing:border-box;
  470. width:100%;
  471. }
  472. #u1281_text {
  473. border-width:0px;
  474. white-space:nowrap;
  475. text-transform:none;
  476. }
  477. #u1282 {
  478. border-width:0px;
  479. position:absolute;
  480. left:0px;
  481. top:0px;
  482. width:0px;
  483. height:0px;
  484. }
  485. #u1283_div {
  486. border-width:0px;
  487. position:absolute;
  488. left:0px;
  489. top:0px;
  490. width:51px;
  491. height:22px;
  492. background:inherit;
  493. background-color:rgba(255, 255, 255, 0);
  494. border:none;
  495. border-radius:0px;
  496. -moz-box-shadow:none;
  497. -webkit-box-shadow:none;
  498. box-shadow:none;
  499. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  500. font-weight:400;
  501. font-style:normal;
  502. color:rgba(0, 0, 0, 0.42745098039215684);
  503. line-height:22px;
  504. }
  505. #u1283 {
  506. border-width:0px;
  507. position:absolute;
  508. left:680px;
  509. top:680px;
  510. width:51px;
  511. height:22px;
  512. display:flex;
  513. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  514. font-weight:400;
  515. font-style:normal;
  516. color:rgba(0, 0, 0, 0.42745098039215684);
  517. line-height:22px;
  518. }
  519. #u1283 .text {
  520. position:absolute;
  521. align-self:flex-start;
  522. padding:0px 0px 0px 0px;
  523. box-sizing:border-box;
  524. width:100%;
  525. }
  526. #u1283_text {
  527. border-width:0px;
  528. white-space:nowrap;
  529. text-transform:none;
  530. }
  531. #u1284_div {
  532. border-width:0px;
  533. position:absolute;
  534. left:0px;
  535. top:0px;
  536. width:32px;
  537. height:32px;
  538. background:inherit;
  539. background-color:rgba(24, 144, 255, 1);
  540. border:none;
  541. border-radius:6px;
  542. -moz-box-shadow:none;
  543. -webkit-box-shadow:none;
  544. box-shadow:none;
  545. font-size:14px;
  546. color:#FFFFFF;
  547. line-height:22px;
  548. }
  549. #u1284 {
  550. border-width:0px;
  551. position:absolute;
  552. left:792px;
  553. top:675px;
  554. width:32px;
  555. height:32px;
  556. display:flex;
  557. font-size:14px;
  558. color:#FFFFFF;
  559. line-height:22px;
  560. }
  561. #u1284 .text {
  562. position:absolute;
  563. align-self:center;
  564. padding:2px 2px 2px 2px;
  565. box-sizing:border-box;
  566. width:100%;
  567. }
  568. #u1284_text {
  569. border-width:0px;
  570. word-wrap:break-word;
  571. text-transform:none;
  572. }
  573. #u1285_div {
  574. border-width:0px;
  575. position:absolute;
  576. left:0px;
  577. top:0px;
  578. width:32px;
  579. height:32px;
  580. background:inherit;
  581. background-color:rgba(255, 255, 255, 1);
  582. box-sizing:border-box;
  583. border-width:1px;
  584. border-style:solid;
  585. border-color:rgba(217, 217, 217, 1);
  586. border-radius:6px;
  587. -moz-box-shadow:none;
  588. -webkit-box-shadow:none;
  589. box-shadow:none;
  590. font-size:14px;
  591. color:rgba(0, 0, 0, 0.6470588235294118);
  592. line-height:22px;
  593. }
  594. #u1285 {
  595. border-width:0px;
  596. position:absolute;
  597. left:832px;
  598. top:675px;
  599. width:32px;
  600. height:32px;
  601. display:flex;
  602. font-size:14px;
  603. color:rgba(0, 0, 0, 0.6470588235294118);
  604. line-height:22px;
  605. }
  606. #u1285 .text {
  607. position:absolute;
  608. align-self:center;
  609. padding:2px 2px 2px 2px;
  610. box-sizing:border-box;
  611. width:100%;
  612. }
  613. #u1285_text {
  614. border-width:0px;
  615. word-wrap:break-word;
  616. text-transform:none;
  617. }
  618. #u1286_div {
  619. border-width:0px;
  620. position:absolute;
  621. left:0px;
  622. top:0px;
  623. width:32px;
  624. height:32px;
  625. background:inherit;
  626. background-color:rgba(255, 255, 255, 1);
  627. box-sizing:border-box;
  628. border-width:1px;
  629. border-style:solid;
  630. border-color:rgba(217, 217, 217, 1);
  631. border-radius:6px;
  632. -moz-box-shadow:none;
  633. -webkit-box-shadow:none;
  634. box-shadow:none;
  635. font-size:14px;
  636. color:rgba(0, 0, 0, 0.6470588235294118);
  637. line-height:22px;
  638. }
  639. #u1286 {
  640. border-width:0px;
  641. position:absolute;
  642. left:872px;
  643. top:675px;
  644. width:32px;
  645. height:32px;
  646. display:flex;
  647. font-size:14px;
  648. color:rgba(0, 0, 0, 0.6470588235294118);
  649. line-height:22px;
  650. }
  651. #u1286 .text {
  652. position:absolute;
  653. align-self:center;
  654. padding:2px 2px 2px 2px;
  655. box-sizing:border-box;
  656. width:100%;
  657. }
  658. #u1286_text {
  659. border-width:0px;
  660. word-wrap:break-word;
  661. text-transform:none;
  662. }
  663. #u1287_div {
  664. border-width:0px;
  665. position:absolute;
  666. left:0px;
  667. top:0px;
  668. width:32px;
  669. height:32px;
  670. background:inherit;
  671. background-color:rgba(255, 255, 255, 1);
  672. box-sizing:border-box;
  673. border-width:1px;
  674. border-style:solid;
  675. border-color:rgba(217, 217, 217, 1);
  676. border-radius:6px;
  677. -moz-box-shadow:none;
  678. -webkit-box-shadow:none;
  679. box-shadow:none;
  680. font-size:14px;
  681. color:rgba(0, 0, 0, 0.6470588235294118);
  682. line-height:22px;
  683. }
  684. #u1287 {
  685. border-width:0px;
  686. position:absolute;
  687. left:912px;
  688. top:675px;
  689. width:32px;
  690. height:32px;
  691. display:flex;
  692. font-size:14px;
  693. color:rgba(0, 0, 0, 0.6470588235294118);
  694. line-height:22px;
  695. }
  696. #u1287 .text {
  697. position:absolute;
  698. align-self:center;
  699. padding:2px 2px 2px 2px;
  700. box-sizing:border-box;
  701. width:100%;
  702. }
  703. #u1287_text {
  704. border-width:0px;
  705. word-wrap:break-word;
  706. text-transform:none;
  707. }
  708. #u1288_div {
  709. border-width:0px;
  710. position:absolute;
  711. left:0px;
  712. top:0px;
  713. width:32px;
  714. height:32px;
  715. background:inherit;
  716. background-color:rgba(255, 255, 255, 1);
  717. box-sizing:border-box;
  718. border-width:1px;
  719. border-style:solid;
  720. border-color:rgba(217, 217, 217, 1);
  721. border-radius:6px;
  722. -moz-box-shadow:none;
  723. -webkit-box-shadow:none;
  724. box-shadow:none;
  725. font-size:14px;
  726. color:rgba(0, 0, 0, 0.6470588235294118);
  727. line-height:22px;
  728. }
  729. #u1288 {
  730. border-width:0px;
  731. position:absolute;
  732. left:952px;
  733. top:675px;
  734. width:32px;
  735. height:32px;
  736. display:flex;
  737. font-size:14px;
  738. color:rgba(0, 0, 0, 0.6470588235294118);
  739. line-height:22px;
  740. }
  741. #u1288 .text {
  742. position:absolute;
  743. align-self:center;
  744. padding:2px 2px 2px 2px;
  745. box-sizing:border-box;
  746. width:100%;
  747. }
  748. #u1288_text {
  749. border-width:0px;
  750. word-wrap:break-word;
  751. text-transform:none;
  752. }
  753. #u1289_div {
  754. border-width:0px;
  755. position:absolute;
  756. left:0px;
  757. top:0px;
  758. width:32px;
  759. height:32px;
  760. background:inherit;
  761. background-color:rgba(255, 255, 255, 1);
  762. box-sizing:border-box;
  763. border-width:1px;
  764. border-style:solid;
  765. border-color:rgba(217, 217, 217, 1);
  766. border-radius:6px;
  767. -moz-box-shadow:none;
  768. -webkit-box-shadow:none;
  769. box-shadow:none;
  770. font-size:14px;
  771. color:rgba(0, 0, 0, 0.6470588235294118);
  772. line-height:22px;
  773. }
  774. #u1289 {
  775. border-width:0px;
  776. position:absolute;
  777. left:1112px;
  778. top:675px;
  779. width:32px;
  780. height:32px;
  781. display:flex;
  782. font-size:14px;
  783. color:rgba(0, 0, 0, 0.6470588235294118);
  784. line-height:22px;
  785. }
  786. #u1289 .text {
  787. position:absolute;
  788. align-self:center;
  789. padding:2px 2px 2px 2px;
  790. box-sizing:border-box;
  791. width:100%;
  792. }
  793. #u1289_text {
  794. border-width:0px;
  795. word-wrap:break-word;
  796. text-transform:none;
  797. }
  798. #u1290_div {
  799. border-width:0px;
  800. position:absolute;
  801. left:0px;
  802. top:0px;
  803. width:28px;
  804. height:22px;
  805. background:inherit;
  806. background-color:rgba(255, 255, 255, 0);
  807. border:none;
  808. border-radius:0px;
  809. -moz-box-shadow:none;
  810. -webkit-box-shadow:none;
  811. box-shadow:none;
  812. font-family:"Microsoft YaHei", sans-serif;
  813. font-weight:400;
  814. font-style:normal;
  815. font-size:14px;
  816. color:rgba(0, 0, 0, 0.6470588235294118);
  817. line-height:22px;
  818. }
  819. #u1290 {
  820. border-width:0px;
  821. position:absolute;
  822. left:1303px;
  823. top:680px;
  824. width:28px;
  825. height:22px;
  826. display:flex;
  827. font-family:"Microsoft YaHei", sans-serif;
  828. font-weight:400;
  829. font-style:normal;
  830. font-size:14px;
  831. color:rgba(0, 0, 0, 0.6470588235294118);
  832. line-height:22px;
  833. }
  834. #u1290 .text {
  835. position:absolute;
  836. align-self:flex-start;
  837. padding:0px 0px 0px 0px;
  838. box-sizing:border-box;
  839. width:100%;
  840. }
  841. #u1290_text {
  842. border-width:0px;
  843. white-space:nowrap;
  844. text-transform:none;
  845. }
  846. #u1291_div {
  847. border-width:0px;
  848. position:absolute;
  849. left:0px;
  850. top:0px;
  851. width:48px;
  852. height:32px;
  853. background:inherit;
  854. background-color:rgba(255, 255, 255, 1);
  855. box-sizing:border-box;
  856. border-width:1px;
  857. border-style:solid;
  858. border-color:rgba(217, 217, 217, 1);
  859. border-radius:6px;
  860. -moz-box-shadow:none;
  861. -webkit-box-shadow:none;
  862. box-shadow:none;
  863. font-size:14px;
  864. color:rgba(0, 0, 0, 0.6470588235294118);
  865. text-align:left;
  866. line-height:22px;
  867. }
  868. #u1291 {
  869. border-width:0px;
  870. position:absolute;
  871. left:1340px;
  872. top:675px;
  873. width:48px;
  874. height:32px;
  875. display:flex;
  876. font-size:14px;
  877. color:rgba(0, 0, 0, 0.6470588235294118);
  878. text-align:left;
  879. line-height:22px;
  880. }
  881. #u1291 .text {
  882. position:absolute;
  883. align-self:center;
  884. padding:2px 2px 2px 16px;
  885. box-sizing:border-box;
  886. width:100%;
  887. }
  888. #u1291_text {
  889. border-width:0px;
  890. word-wrap:break-word;
  891. text-transform:none;
  892. }
  893. #u1292_div {
  894. border-width:0px;
  895. position:absolute;
  896. left:0px;
  897. top:0px;
  898. width:14px;
  899. height:22px;
  900. background:inherit;
  901. background-color:rgba(255, 255, 255, 0);
  902. border:none;
  903. border-radius:0px;
  904. -moz-box-shadow:none;
  905. -webkit-box-shadow:none;
  906. box-shadow:none;
  907. font-family:"Microsoft YaHei", sans-serif;
  908. font-weight:400;
  909. font-style:normal;
  910. font-size:14px;
  911. color:rgba(0, 0, 0, 0.6470588235294118);
  912. line-height:22px;
  913. }
  914. #u1292 {
  915. border-width:0px;
  916. position:absolute;
  917. left:1396px;
  918. top:680px;
  919. width:14px;
  920. height:22px;
  921. display:flex;
  922. font-family:"Microsoft YaHei", sans-serif;
  923. font-weight:400;
  924. font-style:normal;
  925. font-size:14px;
  926. color:rgba(0, 0, 0, 0.6470588235294118);
  927. line-height:22px;
  928. }
  929. #u1292 .text {
  930. position:absolute;
  931. align-self:flex-start;
  932. padding:0px 0px 2px 0px;
  933. box-sizing:border-box;
  934. width:100%;
  935. }
  936. #u1292_text {
  937. border-width:0px;
  938. white-space:nowrap;
  939. text-transform:none;
  940. }
  941. #u1293_div {
  942. border-width:0px;
  943. position:absolute;
  944. left:0px;
  945. top:0px;
  946. width:32px;
  947. height:32px;
  948. background:inherit;
  949. background-color:rgba(255, 255, 255, 1);
  950. box-sizing:border-box;
  951. border-width:1px;
  952. border-style:solid;
  953. border-color:rgba(217, 217, 217, 1);
  954. border-radius:6px;
  955. -moz-box-shadow:none;
  956. -webkit-box-shadow:none;
  957. box-shadow:none;
  958. font-size:14px;
  959. color:rgba(0, 0, 0, 0.6470588235294118);
  960. line-height:22px;
  961. }
  962. #u1293 {
  963. border-width:0px;
  964. position:absolute;
  965. left:1072px;
  966. top:675px;
  967. width:32px;
  968. height:32px;
  969. display:flex;
  970. font-size:14px;
  971. color:rgba(0, 0, 0, 0.6470588235294118);
  972. line-height:22px;
  973. }
  974. #u1293 .text {
  975. position:absolute;
  976. align-self:center;
  977. padding:2px 2px 2px 2px;
  978. box-sizing:border-box;
  979. width:100%;
  980. }
  981. #u1293_text {
  982. border-width:0px;
  983. word-wrap:break-word;
  984. text-transform:none;
  985. }
  986. #u1294_div {
  987. border-width:0px;
  988. position:absolute;
  989. left:0px;
  990. top:0px;
  991. width:32px;
  992. height:32px;
  993. background:inherit;
  994. background-color:rgba(255, 255, 255, 1);
  995. box-sizing:border-box;
  996. border-width:1px;
  997. border-style:solid;
  998. border-color:rgba(217, 217, 217, 1);
  999. border-radius:6px;
  1000. -moz-box-shadow:none;
  1001. -webkit-box-shadow:none;
  1002. box-shadow:none;
  1003. font-size:14px;
  1004. color:rgba(0, 0, 0, 0.6470588235294118);
  1005. line-height:22px;
  1006. }
  1007. #u1294 {
  1008. border-width:0px;
  1009. position:absolute;
  1010. left:1032px;
  1011. top:675px;
  1012. width:32px;
  1013. height:32px;
  1014. display:flex;
  1015. font-size:14px;
  1016. color:rgba(0, 0, 0, 0.6470588235294118);
  1017. line-height:22px;
  1018. }
  1019. #u1294 .text {
  1020. position:absolute;
  1021. align-self:center;
  1022. padding:2px 2px 2px 2px;
  1023. box-sizing:border-box;
  1024. width:100%;
  1025. }
  1026. #u1294_text {
  1027. border-width:0px;
  1028. word-wrap:break-word;
  1029. text-transform:none;
  1030. }
  1031. #u1295_div {
  1032. border-width:0px;
  1033. position:absolute;
  1034. left:0px;
  1035. top:0px;
  1036. width:32px;
  1037. height:32px;
  1038. background:inherit;
  1039. background-color:rgba(255, 255, 255, 1);
  1040. box-sizing:border-box;
  1041. border-width:1px;
  1042. border-style:solid;
  1043. border-color:rgba(217, 217, 217, 1);
  1044. border-radius:6px;
  1045. -moz-box-shadow:none;
  1046. -webkit-box-shadow:none;
  1047. box-shadow:none;
  1048. font-size:14px;
  1049. color:rgba(0, 0, 0, 0.6470588235294118);
  1050. line-height:22px;
  1051. }
  1052. #u1295 {
  1053. border-width:0px;
  1054. position:absolute;
  1055. left:992px;
  1056. top:675px;
  1057. width:32px;
  1058. height:32px;
  1059. display:flex;
  1060. font-size:14px;
  1061. color:rgba(0, 0, 0, 0.6470588235294118);
  1062. line-height:22px;
  1063. }
  1064. #u1295 .text {
  1065. position:absolute;
  1066. align-self:center;
  1067. padding:2px 2px 2px 2px;
  1068. box-sizing:border-box;
  1069. width:100%;
  1070. }
  1071. #u1295_text {
  1072. border-width:0px;
  1073. word-wrap:break-word;
  1074. text-transform:none;
  1075. }
  1076. #u1296 {
  1077. border-width:0px;
  1078. position:absolute;
  1079. left:0px;
  1080. top:0px;
  1081. width:0px;
  1082. height:0px;
  1083. }
  1084. #u1297_div {
  1085. border-width:0px;
  1086. position:absolute;
  1087. left:0px;
  1088. top:0px;
  1089. width:88px;
  1090. height:32px;
  1091. background:inherit;
  1092. background-color:rgba(255, 255, 255, 1);
  1093. box-sizing:border-box;
  1094. border-width:1px;
  1095. border-style:solid;
  1096. border-color:rgba(217, 217, 217, 1);
  1097. border-radius:6px;
  1098. -moz-box-shadow:none;
  1099. -webkit-box-shadow:none;
  1100. box-shadow:none;
  1101. font-size:14px;
  1102. color:rgba(0, 0, 0, 0.6470588235294118);
  1103. text-align:left;
  1104. line-height:22px;
  1105. }
  1106. #u1297 {
  1107. border-width:0px;
  1108. position:absolute;
  1109. left:1200px;
  1110. top:675px;
  1111. width:88px;
  1112. height:32px;
  1113. display:flex;
  1114. font-size:14px;
  1115. color:rgba(0, 0, 0, 0.6470588235294118);
  1116. text-align:left;
  1117. line-height:22px;
  1118. }
  1119. #u1297 .text {
  1120. position:absolute;
  1121. align-self:center;
  1122. padding:2px 30px 2px 8px;
  1123. box-sizing:border-box;
  1124. width:100%;
  1125. }
  1126. #u1297_text {
  1127. border-width:0px;
  1128. white-space:nowrap;
  1129. text-transform:none;
  1130. }
  1131. #u1298_img {
  1132. border-width:0px;
  1133. position:absolute;
  1134. left:0px;
  1135. top:0px;
  1136. width:14px;
  1137. height:14px;
  1138. }
  1139. #u1298 {
  1140. border-width:0px;
  1141. position:absolute;
  1142. left:1265px;
  1143. top:684px;
  1144. width:14px;
  1145. height:14px;
  1146. display:flex;
  1147. -webkit-transform:rotate(90deg);
  1148. -moz-transform:rotate(90deg);
  1149. -ms-transform:rotate(90deg);
  1150. transform:rotate(90deg);
  1151. opacity:0.4000000059604645;
  1152. }
  1153. #u1298 .text {
  1154. position:absolute;
  1155. align-self:center;
  1156. padding:2px 2px 2px 2px;
  1157. box-sizing:border-box;
  1158. width:100%;
  1159. }
  1160. #u1298_text {
  1161. border-width:0px;
  1162. word-wrap:break-word;
  1163. text-transform:none;
  1164. visibility:hidden;
  1165. }
  1166. #u1299 {
  1167. border-width:0px;
  1168. position:absolute;
  1169. left:0px;
  1170. top:0px;
  1171. width:0px;
  1172. height:0px;
  1173. }
  1174. #u1300_div {
  1175. border-width:0px;
  1176. position:absolute;
  1177. left:0px;
  1178. top:0px;
  1179. width:32px;
  1180. height:32px;
  1181. background:inherit;
  1182. background-color:rgba(255, 255, 255, 1);
  1183. box-sizing:border-box;
  1184. border-width:1px;
  1185. border-style:solid;
  1186. border-color:rgba(217, 217, 217, 1);
  1187. border-radius:6px;
  1188. -moz-box-shadow:none;
  1189. -webkit-box-shadow:none;
  1190. box-shadow:none;
  1191. font-size:12px;
  1192. color:#666666;
  1193. }
  1194. #u1300 {
  1195. border-width:0px;
  1196. position:absolute;
  1197. left:752px;
  1198. top:675px;
  1199. width:32px;
  1200. height:32px;
  1201. display:flex;
  1202. font-size:12px;
  1203. color:#666666;
  1204. }
  1205. #u1300 .text {
  1206. position:absolute;
  1207. align-self:center;
  1208. padding:2px 2px 2px 2px;
  1209. box-sizing:border-box;
  1210. width:100%;
  1211. }
  1212. #u1300_text {
  1213. border-width:0px;
  1214. word-wrap:break-word;
  1215. text-transform:none;
  1216. visibility:hidden;
  1217. }
  1218. #u1301_img {
  1219. border-width:0px;
  1220. position:absolute;
  1221. left:0px;
  1222. top:0px;
  1223. width:14px;
  1224. height:14px;
  1225. }
  1226. #u1301 {
  1227. border-width:0px;
  1228. position:absolute;
  1229. left:761px;
  1230. top:684px;
  1231. width:14px;
  1232. height:14px;
  1233. display:flex;
  1234. -webkit-transform:rotate(180deg);
  1235. -moz-transform:rotate(180deg);
  1236. -ms-transform:rotate(180deg);
  1237. transform:rotate(180deg);
  1238. opacity:0.4000000059604645;
  1239. }
  1240. #u1301 .text {
  1241. position:absolute;
  1242. align-self:center;
  1243. padding:2px 2px 2px 2px;
  1244. box-sizing:border-box;
  1245. width:100%;
  1246. }
  1247. #u1301_text {
  1248. border-width:0px;
  1249. word-wrap:break-word;
  1250. text-transform:none;
  1251. visibility:hidden;
  1252. }
  1253. #u1302 {
  1254. border-width:0px;
  1255. position:absolute;
  1256. left:0px;
  1257. top:0px;
  1258. width:0px;
  1259. height:0px;
  1260. }
  1261. #u1303_div {
  1262. border-width:0px;
  1263. position:absolute;
  1264. left:0px;
  1265. top:0px;
  1266. width:32px;
  1267. height:32px;
  1268. background:inherit;
  1269. background-color:rgba(255, 255, 255, 1);
  1270. box-sizing:border-box;
  1271. border-width:1px;
  1272. border-style:solid;
  1273. border-color:rgba(217, 217, 217, 1);
  1274. border-radius:6px;
  1275. -moz-box-shadow:none;
  1276. -webkit-box-shadow:none;
  1277. box-shadow:none;
  1278. font-size:12px;
  1279. color:#666666;
  1280. }
  1281. #u1303 {
  1282. border-width:0px;
  1283. position:absolute;
  1284. left:1152px;
  1285. top:675px;
  1286. width:32px;
  1287. height:32px;
  1288. display:flex;
  1289. font-size:12px;
  1290. color:#666666;
  1291. }
  1292. #u1303 .text {
  1293. position:absolute;
  1294. align-self:center;
  1295. padding:2px 2px 2px 2px;
  1296. box-sizing:border-box;
  1297. width:100%;
  1298. }
  1299. #u1303_text {
  1300. border-width:0px;
  1301. word-wrap:break-word;
  1302. text-transform:none;
  1303. visibility:hidden;
  1304. }
  1305. #u1304_img {
  1306. border-width:0px;
  1307. position:absolute;
  1308. left:0px;
  1309. top:0px;
  1310. width:14px;
  1311. height:14px;
  1312. }
  1313. #u1304 {
  1314. border-width:0px;
  1315. position:absolute;
  1316. left:1161px;
  1317. top:684px;
  1318. width:14px;
  1319. height:14px;
  1320. display:flex;
  1321. opacity:0.4000000059604645;
  1322. }
  1323. #u1304 .text {
  1324. position:absolute;
  1325. align-self:center;
  1326. padding:2px 2px 2px 2px;
  1327. box-sizing:border-box;
  1328. width:100%;
  1329. }
  1330. #u1304_text {
  1331. border-width:0px;
  1332. word-wrap:break-word;
  1333. text-transform:none;
  1334. visibility:hidden;
  1335. }
  1336. #u1305 {
  1337. border-width:0px;
  1338. position:absolute;
  1339. left:0px;
  1340. top:0px;
  1341. width:0px;
  1342. height:0px;
  1343. }
  1344. #u1306_div {
  1345. border-width:0px;
  1346. position:absolute;
  1347. left:0px;
  1348. top:0px;
  1349. width:256px;
  1350. height:54px;
  1351. background:inherit;
  1352. background-color:rgba(45, 183, 245, 0);
  1353. border:none;
  1354. border-radius:0px;
  1355. -moz-box-shadow:none;
  1356. -webkit-box-shadow:none;
  1357. box-shadow:none;
  1358. font-family:"Microsoft Tai Le", sans-serif;
  1359. font-weight:400;
  1360. font-style:normal;
  1361. font-size:14px;
  1362. color:rgba(0, 0, 0, 0.6470588235294118);
  1363. text-align:left;
  1364. line-height:22px;
  1365. }
  1366. #u1306 {
  1367. border-width:0px;
  1368. position:absolute;
  1369. left:0px;
  1370. top:65px;
  1371. width:256px;
  1372. height:54px;
  1373. display:flex;
  1374. font-family:"Microsoft Tai Le", sans-serif;
  1375. font-weight:400;
  1376. font-style:normal;
  1377. font-size:14px;
  1378. color:rgba(0, 0, 0, 0.6470588235294118);
  1379. text-align:left;
  1380. line-height:22px;
  1381. }
  1382. #u1306 .text {
  1383. position:absolute;
  1384. align-self:center;
  1385. padding:16px 2px 16px 50px;
  1386. box-sizing:border-box;
  1387. width:100%;
  1388. }
  1389. #u1306_text {
  1390. border-width:0px;
  1391. word-wrap:break-word;
  1392. text-transform:none;
  1393. }
  1394. #u1307_img {
  1395. border-width:0px;
  1396. position:absolute;
  1397. left:0px;
  1398. top:0px;
  1399. width:14px;
  1400. height:14px;
  1401. }
  1402. #u1307 {
  1403. border-width:0px;
  1404. position:absolute;
  1405. left:24px;
  1406. top:85px;
  1407. width:14px;
  1408. height:14px;
  1409. display:flex;
  1410. }
  1411. #u1307 .text {
  1412. position:absolute;
  1413. align-self:center;
  1414. padding:2px 2px 2px 2px;
  1415. box-sizing:border-box;
  1416. width:100%;
  1417. }
  1418. #u1307_text {
  1419. border-width:0px;
  1420. word-wrap:break-word;
  1421. text-transform:none;
  1422. visibility:hidden;
  1423. }
  1424. #u1308_img {
  1425. border-width:0px;
  1426. position:absolute;
  1427. left:0px;
  1428. top:0px;
  1429. width:7px;
  1430. height:14px;
  1431. }
  1432. #u1308 {
  1433. border-width:0px;
  1434. position:absolute;
  1435. left:231px;
  1436. top:85px;
  1437. width:7px;
  1438. height:14px;
  1439. display:flex;
  1440. font-family:"Anticon", sans-serif;
  1441. font-weight:400;
  1442. font-style:normal;
  1443. font-size:10px;
  1444. color:rgba(0, 0, 0, 0.6470588235294118);
  1445. }
  1446. #u1308 .text {
  1447. position:absolute;
  1448. align-self:center;
  1449. padding:0px 0px 0px 0px;
  1450. box-sizing:border-box;
  1451. width:100%;
  1452. }
  1453. #u1308_text {
  1454. border-width:0px;
  1455. white-space:nowrap;
  1456. text-transform:none;
  1457. }
  1458. #u1309 {
  1459. border-width:0px;
  1460. position:absolute;
  1461. left:0px;
  1462. top:0px;
  1463. width:0px;
  1464. height:0px;
  1465. }
  1466. #u1310_div {
  1467. border-width:0px;
  1468. position:absolute;
  1469. left:0px;
  1470. top:0px;
  1471. width:256px;
  1472. height:54px;
  1473. background:inherit;
  1474. background-color:rgba(45, 183, 245, 0);
  1475. border:none;
  1476. border-radius:0px;
  1477. -moz-box-shadow:none;
  1478. -webkit-box-shadow:none;
  1479. box-shadow:none;
  1480. font-family:"Microsoft Tai Le", sans-serif;
  1481. font-weight:400;
  1482. font-style:normal;
  1483. font-size:14px;
  1484. color:rgba(0, 0, 0, 0.6470588235294118);
  1485. text-align:left;
  1486. line-height:22px;
  1487. }
  1488. #u1310 {
  1489. border-width:0px;
  1490. position:absolute;
  1491. left:0px;
  1492. top:676px;
  1493. width:256px;
  1494. height:54px;
  1495. display:flex;
  1496. font-family:"Microsoft Tai Le", sans-serif;
  1497. font-weight:400;
  1498. font-style:normal;
  1499. font-size:14px;
  1500. color:rgba(0, 0, 0, 0.6470588235294118);
  1501. text-align:left;
  1502. line-height:22px;
  1503. }
  1504. #u1310 .text {
  1505. position:absolute;
  1506. align-self:center;
  1507. padding:16px 2px 16px 50px;
  1508. box-sizing:border-box;
  1509. width:100%;
  1510. }
  1511. #u1310_text {
  1512. border-width:0px;
  1513. word-wrap:break-word;
  1514. text-transform:none;
  1515. }
  1516. #u1311_img {
  1517. border-width:0px;
  1518. position:absolute;
  1519. left:0px;
  1520. top:0px;
  1521. width:14px;
  1522. height:14px;
  1523. }
  1524. #u1311 {
  1525. border-width:0px;
  1526. position:absolute;
  1527. left:24px;
  1528. top:696px;
  1529. width:14px;
  1530. height:14px;
  1531. display:flex;
  1532. }
  1533. #u1311 .text {
  1534. position:absolute;
  1535. align-self:center;
  1536. padding:2px 2px 2px 2px;
  1537. box-sizing:border-box;
  1538. width:100%;
  1539. }
  1540. #u1311_text {
  1541. border-width:0px;
  1542. word-wrap:break-word;
  1543. text-transform:none;
  1544. visibility:hidden;
  1545. }
  1546. #u1312_img {
  1547. border-width:0px;
  1548. position:absolute;
  1549. left:0px;
  1550. top:0px;
  1551. width:7px;
  1552. height:14px;
  1553. }
  1554. #u1312 {
  1555. border-width:0px;
  1556. position:absolute;
  1557. left:231px;
  1558. top:696px;
  1559. width:7px;
  1560. height:14px;
  1561. display:flex;
  1562. font-family:"Anticon", sans-serif;
  1563. font-weight:400;
  1564. font-style:normal;
  1565. font-size:10px;
  1566. color:rgba(0, 0, 0, 0.6470588235294118);
  1567. }
  1568. #u1312 .text {
  1569. position:absolute;
  1570. align-self:center;
  1571. padding:0px 0px 0px 0px;
  1572. box-sizing:border-box;
  1573. width:100%;
  1574. }
  1575. #u1312_text {
  1576. border-width:0px;
  1577. white-space:nowrap;
  1578. text-transform:none;
  1579. }
  1580. #u1313 {
  1581. border-width:0px;
  1582. position:absolute;
  1583. left:0px;
  1584. top:0px;
  1585. width:0px;
  1586. height:0px;
  1587. }
  1588. #u1314_div {
  1589. border-width:0px;
  1590. position:absolute;
  1591. left:0px;
  1592. top:0px;
  1593. width:256px;
  1594. height:54px;
  1595. background:inherit;
  1596. background-color:rgba(45, 183, 245, 0);
  1597. border:none;
  1598. border-radius:0px;
  1599. -moz-box-shadow:none;
  1600. -webkit-box-shadow:none;
  1601. box-shadow:none;
  1602. font-family:"Microsoft Tai Le", sans-serif;
  1603. font-weight:400;
  1604. font-style:normal;
  1605. font-size:14px;
  1606. color:rgba(0, 0, 0, 0.6470588235294118);
  1607. text-align:left;
  1608. line-height:22px;
  1609. }
  1610. #u1314 {
  1611. border-width:0px;
  1612. position:absolute;
  1613. left:0px;
  1614. top:730px;
  1615. width:256px;
  1616. height:54px;
  1617. display:flex;
  1618. font-family:"Microsoft Tai Le", sans-serif;
  1619. font-weight:400;
  1620. font-style:normal;
  1621. font-size:14px;
  1622. color:rgba(0, 0, 0, 0.6470588235294118);
  1623. text-align:left;
  1624. line-height:22px;
  1625. }
  1626. #u1314 .text {
  1627. position:absolute;
  1628. align-self:center;
  1629. padding:16px 2px 16px 50px;
  1630. box-sizing:border-box;
  1631. width:100%;
  1632. }
  1633. #u1314_text {
  1634. border-width:0px;
  1635. word-wrap:break-word;
  1636. text-transform:none;
  1637. }
  1638. #u1315_img {
  1639. border-width:0px;
  1640. position:absolute;
  1641. left:0px;
  1642. top:0px;
  1643. width:14px;
  1644. height:14px;
  1645. }
  1646. #u1315 {
  1647. border-width:0px;
  1648. position:absolute;
  1649. left:24px;
  1650. top:750px;
  1651. width:14px;
  1652. height:14px;
  1653. display:flex;
  1654. }
  1655. #u1315 .text {
  1656. position:absolute;
  1657. align-self:center;
  1658. padding:2px 2px 2px 2px;
  1659. box-sizing:border-box;
  1660. width:100%;
  1661. }
  1662. #u1315_text {
  1663. border-width:0px;
  1664. word-wrap:break-word;
  1665. text-transform:none;
  1666. visibility:hidden;
  1667. }
  1668. #u1316_img {
  1669. border-width:0px;
  1670. position:absolute;
  1671. left:0px;
  1672. top:0px;
  1673. width:7px;
  1674. height:14px;
  1675. }
  1676. #u1316 {
  1677. border-width:0px;
  1678. position:absolute;
  1679. left:231px;
  1680. top:750px;
  1681. width:7px;
  1682. height:14px;
  1683. display:flex;
  1684. font-family:"Anticon", sans-serif;
  1685. font-weight:400;
  1686. font-style:normal;
  1687. font-size:10px;
  1688. color:rgba(0, 0, 0, 0.6470588235294118);
  1689. }
  1690. #u1316 .text {
  1691. position:absolute;
  1692. align-self:center;
  1693. padding:0px 0px 0px 0px;
  1694. box-sizing:border-box;
  1695. width:100%;
  1696. }
  1697. #u1316_text {
  1698. border-width:0px;
  1699. white-space:nowrap;
  1700. text-transform:none;
  1701. }
  1702. #u1317 {
  1703. border-width:0px;
  1704. position:absolute;
  1705. left:0px;
  1706. top:0px;
  1707. width:0px;
  1708. height:0px;
  1709. }
  1710. #u1318_div {
  1711. border-width:0px;
  1712. position:absolute;
  1713. left:0px;
  1714. top:0px;
  1715. width:256px;
  1716. height:46px;
  1717. background:inherit;
  1718. background-color:rgba(255, 255, 255, 0);
  1719. border:none;
  1720. border-radius:0px;
  1721. -moz-box-shadow:none;
  1722. -webkit-box-shadow:none;
  1723. box-shadow:none;
  1724. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  1725. font-weight:400;
  1726. font-style:normal;
  1727. font-size:14px;
  1728. color:#000000;
  1729. text-align:left;
  1730. line-height:22px;
  1731. }
  1732. #u1318 {
  1733. border-width:0px;
  1734. position:absolute;
  1735. left:0px;
  1736. top:354px;
  1737. width:256px;
  1738. height:46px;
  1739. display:flex;
  1740. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  1741. font-weight:400;
  1742. font-style:normal;
  1743. font-size:14px;
  1744. color:#000000;
  1745. text-align:left;
  1746. line-height:22px;
  1747. }
  1748. #u1318 .text {
  1749. position:absolute;
  1750. align-self:center;
  1751. padding:12px 0px 12px 50px;
  1752. box-sizing:border-box;
  1753. width:100%;
  1754. }
  1755. #u1318_text {
  1756. border-width:0px;
  1757. word-wrap:break-word;
  1758. text-transform:none;
  1759. }
  1760. #u1319_img {
  1761. border-width:0px;
  1762. position:absolute;
  1763. left:0px;
  1764. top:0px;
  1765. width:7px;
  1766. height:14px;
  1767. }
  1768. #u1319 {
  1769. border-width:0px;
  1770. position:absolute;
  1771. left:231px;
  1772. top:369px;
  1773. width:7px;
  1774. height:14px;
  1775. display:flex;
  1776. font-family:"Anticon", sans-serif;
  1777. font-weight:400;
  1778. font-style:normal;
  1779. font-size:10px;
  1780. color:rgba(0, 0, 0, 0.6470588235294118);
  1781. }
  1782. #u1319 .text {
  1783. position:absolute;
  1784. align-self:center;
  1785. padding:0px 0px 0px 0px;
  1786. box-sizing:border-box;
  1787. width:100%;
  1788. }
  1789. #u1319_text {
  1790. border-width:0px;
  1791. white-space:nowrap;
  1792. text-transform:none;
  1793. }
  1794. #u1320 {
  1795. border-width:0px;
  1796. position:absolute;
  1797. left:0px;
  1798. top:0px;
  1799. width:0px;
  1800. height:0px;
  1801. }
  1802. #u1321_div {
  1803. border-width:0px;
  1804. position:absolute;
  1805. left:0px;
  1806. top:0px;
  1807. width:256px;
  1808. height:54px;
  1809. background:inherit;
  1810. background-color:rgba(45, 183, 245, 0);
  1811. border:none;
  1812. border-radius:0px;
  1813. -moz-box-shadow:none;
  1814. -webkit-box-shadow:none;
  1815. box-shadow:none;
  1816. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  1817. font-weight:400;
  1818. font-style:normal;
  1819. font-size:14px;
  1820. color:rgba(0, 0, 0, 0.6470588235294118);
  1821. text-align:left;
  1822. line-height:22px;
  1823. }
  1824. #u1321 {
  1825. border-width:0px;
  1826. position:absolute;
  1827. left:0px;
  1828. top:116px;
  1829. width:256px;
  1830. height:54px;
  1831. display:flex;
  1832. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  1833. font-weight:400;
  1834. font-style:normal;
  1835. font-size:14px;
  1836. color:rgba(0, 0, 0, 0.6470588235294118);
  1837. text-align:left;
  1838. line-height:22px;
  1839. }
  1840. #u1321 .text {
  1841. position:absolute;
  1842. align-self:center;
  1843. padding:16px 2px 16px 50px;
  1844. box-sizing:border-box;
  1845. width:100%;
  1846. }
  1847. #u1321_text {
  1848. border-width:0px;
  1849. word-wrap:break-word;
  1850. text-transform:none;
  1851. }
  1852. #u1322_img {
  1853. border-width:0px;
  1854. position:absolute;
  1855. left:0px;
  1856. top:0px;
  1857. width:15px;
  1858. height:14px;
  1859. }
  1860. #u1322 {
  1861. border-width:0px;
  1862. position:absolute;
  1863. left:24px;
  1864. top:136px;
  1865. width:15px;
  1866. height:14px;
  1867. display:flex;
  1868. }
  1869. #u1322 .text {
  1870. position:absolute;
  1871. align-self:center;
  1872. padding:2px 2px 2px 2px;
  1873. box-sizing:border-box;
  1874. width:100%;
  1875. }
  1876. #u1322_text {
  1877. border-width:0px;
  1878. word-wrap:break-word;
  1879. text-transform:none;
  1880. visibility:hidden;
  1881. }
  1882. #u1323_img {
  1883. border-width:0px;
  1884. position:absolute;
  1885. left:0px;
  1886. top:0px;
  1887. width:7px;
  1888. height:14px;
  1889. }
  1890. #u1323 {
  1891. border-width:0px;
  1892. position:absolute;
  1893. left:231px;
  1894. top:135px;
  1895. width:7px;
  1896. height:14px;
  1897. display:flex;
  1898. font-family:"Anticon", sans-serif;
  1899. font-weight:400;
  1900. font-style:normal;
  1901. font-size:10px;
  1902. color:rgba(0, 0, 0, 0.6470588235294118);
  1903. }
  1904. #u1323 .text {
  1905. position:absolute;
  1906. align-self:center;
  1907. padding:0px 0px 0px 0px;
  1908. box-sizing:border-box;
  1909. width:100%;
  1910. }
  1911. #u1323_text {
  1912. border-width:0px;
  1913. white-space:nowrap;
  1914. text-transform:none;
  1915. }
  1916. #u1324 {
  1917. border-width:0px;
  1918. position:absolute;
  1919. left:0px;
  1920. top:0px;
  1921. width:0px;
  1922. height:0px;
  1923. }
  1924. #u1325 {
  1925. border-width:0px;
  1926. position:absolute;
  1927. left:0px;
  1928. top:0px;
  1929. width:0px;
  1930. height:0px;
  1931. }
  1932. #u1326_div {
  1933. border-width:0px;
  1934. position:absolute;
  1935. left:0px;
  1936. top:0px;
  1937. width:256px;
  1938. height:46px;
  1939. background:inherit;
  1940. background-color:rgba(255, 255, 255, 0);
  1941. border:none;
  1942. border-radius:0px;
  1943. -moz-box-shadow:none;
  1944. -webkit-box-shadow:none;
  1945. box-shadow:none;
  1946. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  1947. font-weight:400;
  1948. font-style:normal;
  1949. font-size:14px;
  1950. color:rgba(0, 0, 0, 0.6470588235294118);
  1951. text-align:left;
  1952. line-height:22px;
  1953. }
  1954. #u1326 {
  1955. border-width:0px;
  1956. position:absolute;
  1957. left:0px;
  1958. top:170px;
  1959. width:256px;
  1960. height:46px;
  1961. display:flex;
  1962. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  1963. font-weight:400;
  1964. font-style:normal;
  1965. font-size:14px;
  1966. color:rgba(0, 0, 0, 0.6470588235294118);
  1967. text-align:left;
  1968. line-height:22px;
  1969. }
  1970. #u1326 .text {
  1971. position:absolute;
  1972. align-self:center;
  1973. padding:12px 0px 12px 50px;
  1974. box-sizing:border-box;
  1975. width:100%;
  1976. }
  1977. #u1326_text {
  1978. border-width:0px;
  1979. word-wrap:break-word;
  1980. text-transform:none;
  1981. }
  1982. #u1327 {
  1983. border-width:0px;
  1984. position:absolute;
  1985. left:0px;
  1986. top:0px;
  1987. width:0px;
  1988. height:0px;
  1989. }
  1990. #u1328_div {
  1991. border-width:0px;
  1992. position:absolute;
  1993. left:0px;
  1994. top:0px;
  1995. width:256px;
  1996. height:54px;
  1997. background:inherit;
  1998. background-color:rgba(45, 183, 245, 0);
  1999. border:none;
  2000. border-radius:0px;
  2001. -moz-box-shadow:none;
  2002. -webkit-box-shadow:none;
  2003. box-shadow:none;
  2004. font-family:"Microsoft Tai Le", sans-serif;
  2005. font-weight:400;
  2006. font-style:normal;
  2007. font-size:14px;
  2008. color:rgba(0, 0, 0, 0.6470588235294118);
  2009. text-align:left;
  2010. line-height:22px;
  2011. }
  2012. #u1328 {
  2013. border-width:0px;
  2014. position:absolute;
  2015. left:0px;
  2016. top:784px;
  2017. width:256px;
  2018. height:54px;
  2019. display:flex;
  2020. font-family:"Microsoft Tai Le", sans-serif;
  2021. font-weight:400;
  2022. font-style:normal;
  2023. font-size:14px;
  2024. color:rgba(0, 0, 0, 0.6470588235294118);
  2025. text-align:left;
  2026. line-height:22px;
  2027. }
  2028. #u1328 .text {
  2029. position:absolute;
  2030. align-self:center;
  2031. padding:16px 2px 16px 50px;
  2032. box-sizing:border-box;
  2033. width:100%;
  2034. }
  2035. #u1328_text {
  2036. border-width:0px;
  2037. word-wrap:break-word;
  2038. text-transform:none;
  2039. }
  2040. #u1329_img {
  2041. border-width:0px;
  2042. position:absolute;
  2043. left:0px;
  2044. top:0px;
  2045. width:14px;
  2046. height:14px;
  2047. }
  2048. #u1329 {
  2049. border-width:0px;
  2050. position:absolute;
  2051. left:24px;
  2052. top:804px;
  2053. width:14px;
  2054. height:14px;
  2055. display:flex;
  2056. }
  2057. #u1329 .text {
  2058. position:absolute;
  2059. align-self:center;
  2060. padding:2px 2px 2px 2px;
  2061. box-sizing:border-box;
  2062. width:100%;
  2063. }
  2064. #u1329_text {
  2065. border-width:0px;
  2066. word-wrap:break-word;
  2067. text-transform:none;
  2068. visibility:hidden;
  2069. }
  2070. #u1330_img {
  2071. border-width:0px;
  2072. position:absolute;
  2073. left:0px;
  2074. top:0px;
  2075. width:7px;
  2076. height:14px;
  2077. }
  2078. #u1330 {
  2079. border-width:0px;
  2080. position:absolute;
  2081. left:231px;
  2082. top:804px;
  2083. width:7px;
  2084. height:14px;
  2085. display:flex;
  2086. font-family:"Anticon", sans-serif;
  2087. font-weight:400;
  2088. font-style:normal;
  2089. font-size:10px;
  2090. color:rgba(0, 0, 0, 0.6470588235294118);
  2091. }
  2092. #u1330 .text {
  2093. position:absolute;
  2094. align-self:center;
  2095. padding:0px 0px 0px 0px;
  2096. box-sizing:border-box;
  2097. width:100%;
  2098. }
  2099. #u1330_text {
  2100. border-width:0px;
  2101. white-space:nowrap;
  2102. text-transform:none;
  2103. }
  2104. #u1331 {
  2105. border-width:0px;
  2106. position:absolute;
  2107. left:0px;
  2108. top:0px;
  2109. width:0px;
  2110. height:0px;
  2111. }
  2112. #u1332_div {
  2113. border-width:0px;
  2114. position:absolute;
  2115. left:0px;
  2116. top:0px;
  2117. width:256px;
  2118. height:54px;
  2119. background:inherit;
  2120. background-color:rgba(45, 183, 245, 0);
  2121. border:none;
  2122. border-radius:0px;
  2123. -moz-box-shadow:none;
  2124. -webkit-box-shadow:none;
  2125. box-shadow:none;
  2126. font-family:"Microsoft Tai Le", sans-serif;
  2127. font-weight:400;
  2128. font-style:normal;
  2129. font-size:14px;
  2130. color:rgba(0, 0, 0, 0.6470588235294118);
  2131. text-align:left;
  2132. line-height:22px;
  2133. }
  2134. #u1332 {
  2135. border-width:0px;
  2136. position:absolute;
  2137. left:0px;
  2138. top:892px;
  2139. width:256px;
  2140. height:54px;
  2141. display:flex;
  2142. font-family:"Microsoft Tai Le", sans-serif;
  2143. font-weight:400;
  2144. font-style:normal;
  2145. font-size:14px;
  2146. color:rgba(0, 0, 0, 0.6470588235294118);
  2147. text-align:left;
  2148. line-height:22px;
  2149. }
  2150. #u1332 .text {
  2151. position:absolute;
  2152. align-self:center;
  2153. padding:16px 2px 16px 50px;
  2154. box-sizing:border-box;
  2155. width:100%;
  2156. }
  2157. #u1332_text {
  2158. border-width:0px;
  2159. word-wrap:break-word;
  2160. text-transform:none;
  2161. }
  2162. #u1333_img {
  2163. border-width:0px;
  2164. position:absolute;
  2165. left:0px;
  2166. top:0px;
  2167. width:14px;
  2168. height:14px;
  2169. }
  2170. #u1333 {
  2171. border-width:0px;
  2172. position:absolute;
  2173. left:24px;
  2174. top:912px;
  2175. width:14px;
  2176. height:14px;
  2177. display:flex;
  2178. }
  2179. #u1333 .text {
  2180. position:absolute;
  2181. align-self:center;
  2182. padding:2px 2px 2px 2px;
  2183. box-sizing:border-box;
  2184. width:100%;
  2185. }
  2186. #u1333_text {
  2187. border-width:0px;
  2188. word-wrap:break-word;
  2189. text-transform:none;
  2190. visibility:hidden;
  2191. }
  2192. #u1334_img {
  2193. border-width:0px;
  2194. position:absolute;
  2195. left:0px;
  2196. top:0px;
  2197. width:7px;
  2198. height:14px;
  2199. }
  2200. #u1334 {
  2201. border-width:0px;
  2202. position:absolute;
  2203. left:231px;
  2204. top:912px;
  2205. width:7px;
  2206. height:14px;
  2207. display:flex;
  2208. font-family:"Anticon", sans-serif;
  2209. font-weight:400;
  2210. font-style:normal;
  2211. font-size:10px;
  2212. color:rgba(0, 0, 0, 0.6470588235294118);
  2213. }
  2214. #u1334 .text {
  2215. position:absolute;
  2216. align-self:center;
  2217. padding:0px 0px 0px 0px;
  2218. box-sizing:border-box;
  2219. width:100%;
  2220. }
  2221. #u1334_text {
  2222. border-width:0px;
  2223. white-space:nowrap;
  2224. text-transform:none;
  2225. }
  2226. #u1335 {
  2227. border-width:0px;
  2228. position:absolute;
  2229. left:0px;
  2230. top:0px;
  2231. width:0px;
  2232. height:0px;
  2233. }
  2234. #u1336_div {
  2235. border-width:0px;
  2236. position:absolute;
  2237. left:0px;
  2238. top:0px;
  2239. width:256px;
  2240. height:46px;
  2241. background:inherit;
  2242. background-color:rgba(255, 255, 255, 0);
  2243. border:none;
  2244. border-radius:0px;
  2245. -moz-box-shadow:none;
  2246. -webkit-box-shadow:none;
  2247. box-shadow:none;
  2248. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  2249. font-weight:400;
  2250. font-style:normal;
  2251. font-size:14px;
  2252. color:rgba(0, 0, 0, 0.6470588235294118);
  2253. text-align:left;
  2254. line-height:22px;
  2255. }
  2256. #u1336 {
  2257. border-width:0px;
  2258. position:absolute;
  2259. left:0px;
  2260. top:216px;
  2261. width:256px;
  2262. height:46px;
  2263. display:flex;
  2264. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  2265. font-weight:400;
  2266. font-style:normal;
  2267. font-size:14px;
  2268. color:rgba(0, 0, 0, 0.6470588235294118);
  2269. text-align:left;
  2270. line-height:22px;
  2271. }
  2272. #u1336 .text {
  2273. position:absolute;
  2274. align-self:center;
  2275. padding:12px 0px 12px 50px;
  2276. box-sizing:border-box;
  2277. width:100%;
  2278. }
  2279. #u1336_text {
  2280. border-width:0px;
  2281. word-wrap:break-word;
  2282. text-transform:none;
  2283. }
  2284. #u1337 {
  2285. border-width:0px;
  2286. position:absolute;
  2287. left:0px;
  2288. top:0px;
  2289. width:0px;
  2290. height:0px;
  2291. }
  2292. #u1338_div {
  2293. border-width:0px;
  2294. position:absolute;
  2295. left:0px;
  2296. top:0px;
  2297. width:256px;
  2298. height:46px;
  2299. background:inherit;
  2300. background-color:rgba(255, 255, 255, 0);
  2301. border:none;
  2302. border-radius:0px;
  2303. -moz-box-shadow:none;
  2304. -webkit-box-shadow:none;
  2305. box-shadow:none;
  2306. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  2307. font-weight:400;
  2308. font-style:normal;
  2309. font-size:14px;
  2310. color:rgba(0, 0, 0, 0.6470588235294118);
  2311. text-align:left;
  2312. line-height:22px;
  2313. }
  2314. #u1338 {
  2315. border-width:0px;
  2316. position:absolute;
  2317. left:0px;
  2318. top:262px;
  2319. width:256px;
  2320. height:46px;
  2321. display:flex;
  2322. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  2323. font-weight:400;
  2324. font-style:normal;
  2325. font-size:14px;
  2326. color:rgba(0, 0, 0, 0.6470588235294118);
  2327. text-align:left;
  2328. line-height:22px;
  2329. }
  2330. #u1338 .text {
  2331. position:absolute;
  2332. align-self:center;
  2333. padding:12px 0px 12px 50px;
  2334. box-sizing:border-box;
  2335. width:100%;
  2336. }
  2337. #u1338_text {
  2338. border-width:0px;
  2339. word-wrap:break-word;
  2340. text-transform:none;
  2341. }
  2342. #u1339_div {
  2343. border-width:0px;
  2344. position:absolute;
  2345. left:0px;
  2346. top:0px;
  2347. width:256px;
  2348. height:46px;
  2349. background:inherit;
  2350. background-color:rgba(255, 255, 255, 0);
  2351. border:none;
  2352. border-radius:0px;
  2353. -moz-box-shadow:none;
  2354. -webkit-box-shadow:none;
  2355. box-shadow:none;
  2356. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  2357. font-weight:400;
  2358. font-style:normal;
  2359. font-size:14px;
  2360. color:rgba(0, 0, 0, 0.6470588235294118);
  2361. text-align:left;
  2362. line-height:22px;
  2363. }
  2364. #u1339 {
  2365. border-width:0px;
  2366. position:absolute;
  2367. left:0px;
  2368. top:308px;
  2369. width:256px;
  2370. height:46px;
  2371. display:flex;
  2372. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  2373. font-weight:400;
  2374. font-style:normal;
  2375. font-size:14px;
  2376. color:rgba(0, 0, 0, 0.6470588235294118);
  2377. text-align:left;
  2378. line-height:22px;
  2379. }
  2380. #u1339 .text {
  2381. position:absolute;
  2382. align-self:center;
  2383. padding:12px 0px 12px 50px;
  2384. box-sizing:border-box;
  2385. width:100%;
  2386. }
  2387. #u1339_text {
  2388. border-width:0px;
  2389. word-wrap:break-word;
  2390. text-transform:none;
  2391. }
  2392. #u1340_div {
  2393. border-width:0px;
  2394. position:absolute;
  2395. left:0px;
  2396. top:0px;
  2397. width:256px;
  2398. height:46px;
  2399. background:inherit;
  2400. background-color:rgba(255, 255, 255, 0);
  2401. border:none;
  2402. border-radius:0px;
  2403. -moz-box-shadow:none;
  2404. -webkit-box-shadow:none;
  2405. box-shadow:none;
  2406. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  2407. font-weight:400;
  2408. font-style:normal;
  2409. font-size:14px;
  2410. color:rgba(0, 0, 0, 0.6470588235294118);
  2411. text-align:left;
  2412. line-height:22px;
  2413. }
  2414. #u1340 {
  2415. border-width:0px;
  2416. position:absolute;
  2417. left:0px;
  2418. top:400px;
  2419. width:256px;
  2420. height:46px;
  2421. display:flex;
  2422. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  2423. font-weight:400;
  2424. font-style:normal;
  2425. font-size:14px;
  2426. color:rgba(0, 0, 0, 0.6470588235294118);
  2427. text-align:left;
  2428. line-height:22px;
  2429. }
  2430. #u1340 .text {
  2431. position:absolute;
  2432. align-self:center;
  2433. padding:12px 0px 12px 50px;
  2434. box-sizing:border-box;
  2435. width:100%;
  2436. }
  2437. #u1340_text {
  2438. border-width:0px;
  2439. word-wrap:break-word;
  2440. text-transform:none;
  2441. }
  2442. #u1341_div {
  2443. border-width:0px;
  2444. position:absolute;
  2445. left:0px;
  2446. top:0px;
  2447. width:256px;
  2448. height:46px;
  2449. background:inherit;
  2450. background-color:rgba(255, 255, 255, 0);
  2451. border:none;
  2452. border-radius:0px;
  2453. -moz-box-shadow:none;
  2454. -webkit-box-shadow:none;
  2455. box-shadow:none;
  2456. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  2457. font-weight:400;
  2458. font-style:normal;
  2459. font-size:14px;
  2460. color:rgba(0, 0, 0, 0.6470588235294118);
  2461. text-align:left;
  2462. line-height:22px;
  2463. }
  2464. #u1341 {
  2465. border-width:0px;
  2466. position:absolute;
  2467. left:0px;
  2468. top:446px;
  2469. width:256px;
  2470. height:46px;
  2471. display:flex;
  2472. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  2473. font-weight:400;
  2474. font-style:normal;
  2475. font-size:14px;
  2476. color:rgba(0, 0, 0, 0.6470588235294118);
  2477. text-align:left;
  2478. line-height:22px;
  2479. }
  2480. #u1341 .text {
  2481. position:absolute;
  2482. align-self:center;
  2483. padding:12px 0px 12px 50px;
  2484. box-sizing:border-box;
  2485. width:100%;
  2486. }
  2487. #u1341_text {
  2488. border-width:0px;
  2489. word-wrap:break-word;
  2490. text-transform:none;
  2491. }
  2492. #u1342_div {
  2493. border-width:0px;
  2494. position:absolute;
  2495. left:0px;
  2496. top:0px;
  2497. width:256px;
  2498. height:46px;
  2499. background:inherit;
  2500. background-color:rgba(255, 255, 255, 0);
  2501. border:none;
  2502. border-radius:0px;
  2503. -moz-box-shadow:none;
  2504. -webkit-box-shadow:none;
  2505. box-shadow:none;
  2506. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  2507. font-weight:400;
  2508. font-style:normal;
  2509. font-size:14px;
  2510. color:rgba(0, 0, 0, 0.6470588235294118);
  2511. text-align:left;
  2512. line-height:22px;
  2513. }
  2514. #u1342 {
  2515. border-width:0px;
  2516. position:absolute;
  2517. left:0px;
  2518. top:492px;
  2519. width:256px;
  2520. height:46px;
  2521. display:flex;
  2522. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  2523. font-weight:400;
  2524. font-style:normal;
  2525. font-size:14px;
  2526. color:rgba(0, 0, 0, 0.6470588235294118);
  2527. text-align:left;
  2528. line-height:22px;
  2529. }
  2530. #u1342 .text {
  2531. position:absolute;
  2532. align-self:center;
  2533. padding:12px 0px 12px 50px;
  2534. box-sizing:border-box;
  2535. width:100%;
  2536. }
  2537. #u1342_text {
  2538. border-width:0px;
  2539. word-wrap:break-word;
  2540. text-transform:none;
  2541. }
  2542. #u1343_div {
  2543. border-width:0px;
  2544. position:absolute;
  2545. left:0px;
  2546. top:0px;
  2547. width:256px;
  2548. height:46px;
  2549. background:inherit;
  2550. background-color:rgba(255, 255, 255, 0);
  2551. border:none;
  2552. border-radius:0px;
  2553. -moz-box-shadow:none;
  2554. -webkit-box-shadow:none;
  2555. box-shadow:none;
  2556. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  2557. font-weight:400;
  2558. font-style:normal;
  2559. font-size:14px;
  2560. color:rgba(0, 0, 0, 0.6470588235294118);
  2561. text-align:left;
  2562. line-height:22px;
  2563. }
  2564. #u1343 {
  2565. border-width:0px;
  2566. position:absolute;
  2567. left:0px;
  2568. top:538px;
  2569. width:256px;
  2570. height:46px;
  2571. display:flex;
  2572. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  2573. font-weight:400;
  2574. font-style:normal;
  2575. font-size:14px;
  2576. color:rgba(0, 0, 0, 0.6470588235294118);
  2577. text-align:left;
  2578. line-height:22px;
  2579. }
  2580. #u1343 .text {
  2581. position:absolute;
  2582. align-self:center;
  2583. padding:12px 0px 12px 50px;
  2584. box-sizing:border-box;
  2585. width:100%;
  2586. }
  2587. #u1343_text {
  2588. border-width:0px;
  2589. word-wrap:break-word;
  2590. text-transform:none;
  2591. }
  2592. #u1344_div {
  2593. border-width:0px;
  2594. position:absolute;
  2595. left:0px;
  2596. top:0px;
  2597. width:256px;
  2598. height:46px;
  2599. background:inherit;
  2600. background-color:rgba(255, 255, 255, 0);
  2601. border:none;
  2602. border-radius:0px;
  2603. -moz-box-shadow:none;
  2604. -webkit-box-shadow:none;
  2605. box-shadow:none;
  2606. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  2607. font-weight:400;
  2608. font-style:normal;
  2609. font-size:14px;
  2610. color:rgba(0, 0, 0, 0.6470588235294118);
  2611. text-align:left;
  2612. line-height:22px;
  2613. }
  2614. #u1344 {
  2615. border-width:0px;
  2616. position:absolute;
  2617. left:0px;
  2618. top:630px;
  2619. width:256px;
  2620. height:46px;
  2621. display:flex;
  2622. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  2623. font-weight:400;
  2624. font-style:normal;
  2625. font-size:14px;
  2626. color:rgba(0, 0, 0, 0.6470588235294118);
  2627. text-align:left;
  2628. line-height:22px;
  2629. }
  2630. #u1344 .text {
  2631. position:absolute;
  2632. align-self:center;
  2633. padding:12px 0px 12px 50px;
  2634. box-sizing:border-box;
  2635. width:100%;
  2636. }
  2637. #u1344_text {
  2638. border-width:0px;
  2639. word-wrap:break-word;
  2640. text-transform:none;
  2641. }
  2642. #u1345_div {
  2643. border-width:0px;
  2644. position:absolute;
  2645. left:0px;
  2646. top:0px;
  2647. width:256px;
  2648. height:46px;
  2649. background:inherit;
  2650. background-color:rgba(255, 255, 255, 0);
  2651. border:none;
  2652. border-radius:0px;
  2653. -moz-box-shadow:none;
  2654. -webkit-box-shadow:none;
  2655. box-shadow:none;
  2656. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  2657. font-weight:400;
  2658. font-style:normal;
  2659. font-size:14px;
  2660. color:rgba(0, 0, 0, 0.6470588235294118);
  2661. text-align:left;
  2662. line-height:22px;
  2663. }
  2664. #u1345 {
  2665. border-width:0px;
  2666. position:absolute;
  2667. left:0px;
  2668. top:584px;
  2669. width:256px;
  2670. height:46px;
  2671. display:flex;
  2672. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  2673. font-weight:400;
  2674. font-style:normal;
  2675. font-size:14px;
  2676. color:rgba(0, 0, 0, 0.6470588235294118);
  2677. text-align:left;
  2678. line-height:22px;
  2679. }
  2680. #u1345 .text {
  2681. position:absolute;
  2682. align-self:center;
  2683. padding:12px 0px 12px 50px;
  2684. box-sizing:border-box;
  2685. width:100%;
  2686. }
  2687. #u1345_text {
  2688. border-width:0px;
  2689. word-wrap:break-word;
  2690. text-transform:none;
  2691. }
  2692. #u1346 {
  2693. border-width:0px;
  2694. position:absolute;
  2695. left:0px;
  2696. top:0px;
  2697. width:0px;
  2698. height:0px;
  2699. }
  2700. #u1347_div {
  2701. border-width:0px;
  2702. position:absolute;
  2703. left:0px;
  2704. top:0px;
  2705. width:256px;
  2706. height:54px;
  2707. background:inherit;
  2708. background-color:rgba(45, 183, 245, 0);
  2709. border:none;
  2710. border-radius:0px;
  2711. -moz-box-shadow:none;
  2712. -webkit-box-shadow:none;
  2713. box-shadow:none;
  2714. font-family:"Microsoft Tai Le", sans-serif;
  2715. font-weight:400;
  2716. font-style:normal;
  2717. font-size:14px;
  2718. color:rgba(0, 0, 0, 0.6470588235294118);
  2719. text-align:left;
  2720. line-height:22px;
  2721. }
  2722. #u1347 {
  2723. border-width:0px;
  2724. position:absolute;
  2725. left:0px;
  2726. top:838px;
  2727. width:256px;
  2728. height:54px;
  2729. display:flex;
  2730. font-family:"Microsoft Tai Le", sans-serif;
  2731. font-weight:400;
  2732. font-style:normal;
  2733. font-size:14px;
  2734. color:rgba(0, 0, 0, 0.6470588235294118);
  2735. text-align:left;
  2736. line-height:22px;
  2737. }
  2738. #u1347 .text {
  2739. position:absolute;
  2740. align-self:center;
  2741. padding:16px 2px 16px 50px;
  2742. box-sizing:border-box;
  2743. width:100%;
  2744. }
  2745. #u1347_text {
  2746. border-width:0px;
  2747. word-wrap:break-word;
  2748. text-transform:none;
  2749. }
  2750. #u1348_img {
  2751. border-width:0px;
  2752. position:absolute;
  2753. left:0px;
  2754. top:0px;
  2755. width:7px;
  2756. height:14px;
  2757. }
  2758. #u1348 {
  2759. border-width:0px;
  2760. position:absolute;
  2761. left:231px;
  2762. top:858px;
  2763. width:7px;
  2764. height:14px;
  2765. display:flex;
  2766. font-family:"Anticon", sans-serif;
  2767. font-weight:400;
  2768. font-style:normal;
  2769. font-size:10px;
  2770. color:rgba(0, 0, 0, 0.6470588235294118);
  2771. }
  2772. #u1348 .text {
  2773. position:absolute;
  2774. align-self:center;
  2775. padding:0px 0px 0px 0px;
  2776. box-sizing:border-box;
  2777. width:100%;
  2778. }
  2779. #u1348_text {
  2780. border-width:0px;
  2781. white-space:nowrap;
  2782. text-transform:none;
  2783. }
  2784. #u1349_div {
  2785. border-width:0px;
  2786. position:absolute;
  2787. left:0px;
  2788. top:0px;
  2789. width:180px;
  2790. height:32px;
  2791. background:inherit;
  2792. background-color:rgba(255, 255, 255, 1);
  2793. box-sizing:border-box;
  2794. border-width:1px;
  2795. border-style:solid;
  2796. border-color:rgba(217, 217, 217, 1);
  2797. border-radius:4px;
  2798. -moz-box-shadow:none;
  2799. -webkit-box-shadow:none;
  2800. box-shadow:none;
  2801. font-family:"Microsoft Tai Le", sans-serif;
  2802. font-weight:400;
  2803. font-style:normal;
  2804. font-size:14px;
  2805. color:rgba(0, 0, 0, 0.24705882352941178);
  2806. text-align:left;
  2807. line-height:22px;
  2808. }
  2809. #u1349 {
  2810. border-width:0px;
  2811. position:absolute;
  2812. left:293px;
  2813. top:156px;
  2814. width:180px;
  2815. height:32px;
  2816. display:flex;
  2817. font-family:"Microsoft Tai Le", sans-serif;
  2818. font-weight:400;
  2819. font-style:normal;
  2820. font-size:14px;
  2821. color:rgba(0, 0, 0, 0.24705882352941178);
  2822. text-align:left;
  2823. line-height:22px;
  2824. }
  2825. #u1349 .text {
  2826. position:absolute;
  2827. align-self:flex-start;
  2828. padding:5px 0px 5px 12px;
  2829. box-sizing:border-box;
  2830. width:100%;
  2831. }
  2832. #u1349_text {
  2833. border-width:0px;
  2834. word-wrap:break-word;
  2835. text-transform:none;
  2836. }
  2837. #u1350_div {
  2838. border-width:0px;
  2839. position:absolute;
  2840. left:0px;
  2841. top:0px;
  2842. width:67px;
  2843. height:37px;
  2844. background:inherit;
  2845. background-color:rgba(24, 144, 255, 1);
  2846. border:none;
  2847. border-radius:4px;
  2848. -moz-box-shadow:none;
  2849. -webkit-box-shadow:none;
  2850. box-shadow:none;
  2851. font-family:"Microsoft YaHei", sans-serif;
  2852. font-weight:400;
  2853. font-style:normal;
  2854. font-size:14px;
  2855. color:#FFFFFF;
  2856. line-height:22px;
  2857. }
  2858. #u1350 {
  2859. border-width:0px;
  2860. position:absolute;
  2861. left:1349px;
  2862. top:156px;
  2863. width:67px;
  2864. height:37px;
  2865. display:flex;
  2866. font-family:"Microsoft YaHei", sans-serif;
  2867. font-weight:400;
  2868. font-style:normal;
  2869. font-size:14px;
  2870. color:#FFFFFF;
  2871. line-height:22px;
  2872. }
  2873. #u1350 .text {
  2874. position:absolute;
  2875. align-self:center;
  2876. padding:0px 16px 0px 16px;
  2877. box-sizing:border-box;
  2878. width:100%;
  2879. }
  2880. #u1350_text {
  2881. border-width:0px;
  2882. word-wrap:break-word;
  2883. text-transform:none;
  2884. }
  2885. #u1351_input {
  2886. position:absolute;
  2887. left:0px;
  2888. top:0px;
  2889. width:127px;
  2890. height:32px;
  2891. padding:2px 2px 2px 2px;
  2892. font-family:"Arial Normal", "Arial", sans-serif;
  2893. font-weight:400;
  2894. font-style:normal;
  2895. font-size:13px;
  2896. letter-spacing:normal;
  2897. color:#D7D7D7;
  2898. vertical-align:none;
  2899. text-align:left;
  2900. text-transform:none;
  2901. background-color:transparent;
  2902. border-color:transparent;
  2903. }
  2904. #u1351_input.disabled {
  2905. position:absolute;
  2906. left:0px;
  2907. top:0px;
  2908. width:127px;
  2909. height:32px;
  2910. padding:2px 2px 2px 2px;
  2911. font-family:"Arial Normal", "Arial", sans-serif;
  2912. font-weight:400;
  2913. font-style:normal;
  2914. font-size:13px;
  2915. letter-spacing:normal;
  2916. color:#D7D7D7;
  2917. vertical-align:none;
  2918. text-align:left;
  2919. text-transform:none;
  2920. background-color:transparent;
  2921. border-color:transparent;
  2922. }
  2923. #u1351_div {
  2924. border-width:0px;
  2925. position:absolute;
  2926. left:0px;
  2927. top:0px;
  2928. width:127px;
  2929. height:32px;
  2930. background:inherit;
  2931. background-color:rgba(255, 255, 255, 1);
  2932. box-sizing:border-box;
  2933. border-width:1px;
  2934. border-style:solid;
  2935. border-color:rgba(215, 215, 215, 1);
  2936. border-radius:0px;
  2937. -moz-box-shadow:none;
  2938. -webkit-box-shadow:none;
  2939. box-shadow:none;
  2940. color:#D7D7D7;
  2941. }
  2942. #u1351 {
  2943. border-width:0px;
  2944. position:absolute;
  2945. left:501px;
  2946. top:156px;
  2947. width:127px;
  2948. height:32px;
  2949. display:flex;
  2950. color:#D7D7D7;
  2951. }
  2952. #u1351 .text {
  2953. position:absolute;
  2954. align-self:flex-start;
  2955. padding:2px 2px 2px 2px;
  2956. box-sizing:border-box;
  2957. width:100%;
  2958. }
  2959. #u1351_div.disabled {
  2960. border-width:0px;
  2961. position:absolute;
  2962. left:0px;
  2963. top:0px;
  2964. width:127px;
  2965. height:32px;
  2966. background:inherit;
  2967. background-color:rgba(240, 240, 240, 1);
  2968. box-sizing:border-box;
  2969. border-width:1px;
  2970. border-style:solid;
  2971. border-color:rgba(215, 215, 215, 1);
  2972. border-radius:0px;
  2973. -moz-box-shadow:none;
  2974. -webkit-box-shadow:none;
  2975. box-shadow:none;
  2976. color:#D7D7D7;
  2977. }
  2978. #u1351.disabled {
  2979. }
  2980. .u1351_input_option {
  2981. }
  2982. #u1352_input {
  2983. position:absolute;
  2984. left:0px;
  2985. top:0px;
  2986. width:127px;
  2987. height:32px;
  2988. padding:2px 2px 2px 2px;
  2989. font-family:"Arial Normal", "Arial", sans-serif;
  2990. font-weight:400;
  2991. font-style:normal;
  2992. font-size:13px;
  2993. letter-spacing:normal;
  2994. color:#D7D7D7;
  2995. vertical-align:none;
  2996. text-align:left;
  2997. text-transform:none;
  2998. background-color:transparent;
  2999. border-color:transparent;
  3000. }
  3001. #u1352_input.disabled {
  3002. position:absolute;
  3003. left:0px;
  3004. top:0px;
  3005. width:127px;
  3006. height:32px;
  3007. padding:2px 2px 2px 2px;
  3008. font-family:"Arial Normal", "Arial", sans-serif;
  3009. font-weight:400;
  3010. font-style:normal;
  3011. font-size:13px;
  3012. letter-spacing:normal;
  3013. color:#D7D7D7;
  3014. vertical-align:none;
  3015. text-align:left;
  3016. text-transform:none;
  3017. background-color:transparent;
  3018. border-color:transparent;
  3019. }
  3020. #u1352_div {
  3021. border-width:0px;
  3022. position:absolute;
  3023. left:0px;
  3024. top:0px;
  3025. width:127px;
  3026. height:32px;
  3027. background:inherit;
  3028. background-color:rgba(255, 255, 255, 1);
  3029. box-sizing:border-box;
  3030. border-width:1px;
  3031. border-style:solid;
  3032. border-color:rgba(215, 215, 215, 1);
  3033. border-radius:0px;
  3034. -moz-box-shadow:none;
  3035. -webkit-box-shadow:none;
  3036. box-shadow:none;
  3037. color:#D7D7D7;
  3038. }
  3039. #u1352 {
  3040. border-width:0px;
  3041. position:absolute;
  3042. left:648px;
  3043. top:156px;
  3044. width:127px;
  3045. height:32px;
  3046. display:flex;
  3047. color:#D7D7D7;
  3048. }
  3049. #u1352 .text {
  3050. position:absolute;
  3051. align-self:flex-start;
  3052. padding:2px 2px 2px 2px;
  3053. box-sizing:border-box;
  3054. width:100%;
  3055. }
  3056. #u1352_div.disabled {
  3057. border-width:0px;
  3058. position:absolute;
  3059. left:0px;
  3060. top:0px;
  3061. width:127px;
  3062. height:32px;
  3063. background:inherit;
  3064. background-color:rgba(240, 240, 240, 1);
  3065. box-sizing:border-box;
  3066. border-width:1px;
  3067. border-style:solid;
  3068. border-color:rgba(215, 215, 215, 1);
  3069. border-radius:0px;
  3070. -moz-box-shadow:none;
  3071. -webkit-box-shadow:none;
  3072. box-shadow:none;
  3073. color:#D7D7D7;
  3074. }
  3075. #u1352.disabled {
  3076. }
  3077. .u1352_input_option {
  3078. }
  3079. #u1353_div {
  3080. border-width:0px;
  3081. position:absolute;
  3082. left:0px;
  3083. top:0px;
  3084. width:136px;
  3085. height:40px;
  3086. background:inherit;
  3087. background-color:rgba(255, 255, 255, 1);
  3088. box-sizing:border-box;
  3089. border-width:1px;
  3090. border-style:solid;
  3091. border-color:rgba(215, 215, 215, 1);
  3092. border-radius:0px;
  3093. -moz-box-shadow:none;
  3094. -webkit-box-shadow:none;
  3095. box-shadow:none;
  3096. }
  3097. #u1353 {
  3098. border-width:0px;
  3099. position:absolute;
  3100. left:293px;
  3101. top:219px;
  3102. width:136px;
  3103. height:40px;
  3104. display:flex;
  3105. }
  3106. #u1353 .text {
  3107. position:absolute;
  3108. align-self:center;
  3109. padding:2px 2px 2px 2px;
  3110. box-sizing:border-box;
  3111. width:100%;
  3112. }
  3113. #u1353_text {
  3114. border-width:0px;
  3115. word-wrap:break-word;
  3116. text-transform:none;
  3117. }
  3118. #u1354_div {
  3119. border-width:0px;
  3120. position:absolute;
  3121. left:0px;
  3122. top:0px;
  3123. width:136px;
  3124. height:40px;
  3125. background:inherit;
  3126. background-color:rgba(255, 255, 255, 1);
  3127. box-sizing:border-box;
  3128. border-width:1px;
  3129. border-style:solid;
  3130. border-color:rgba(215, 215, 215, 1);
  3131. border-radius:0px;
  3132. -moz-box-shadow:none;
  3133. -webkit-box-shadow:none;
  3134. box-shadow:none;
  3135. }
  3136. #u1354 {
  3137. border-width:0px;
  3138. position:absolute;
  3139. left:428px;
  3140. top:219px;
  3141. width:136px;
  3142. height:40px;
  3143. display:flex;
  3144. }
  3145. #u1354 .text {
  3146. position:absolute;
  3147. align-self:center;
  3148. padding:2px 2px 2px 2px;
  3149. box-sizing:border-box;
  3150. width:100%;
  3151. }
  3152. #u1354_text {
  3153. border-width:0px;
  3154. word-wrap:break-word;
  3155. text-transform:none;
  3156. }
  3157. #u1355_div {
  3158. border-width:0px;
  3159. position:absolute;
  3160. left:0px;
  3161. top:0px;
  3162. width:116px;
  3163. height:40px;
  3164. background:inherit;
  3165. background-color:rgba(255, 255, 255, 1);
  3166. box-sizing:border-box;
  3167. border-width:1px;
  3168. border-style:solid;
  3169. border-color:rgba(215, 215, 215, 1);
  3170. border-radius:0px;
  3171. -moz-box-shadow:none;
  3172. -webkit-box-shadow:none;
  3173. box-shadow:none;
  3174. }
  3175. #u1355 {
  3176. border-width:0px;
  3177. position:absolute;
  3178. left:563px;
  3179. top:219px;
  3180. width:116px;
  3181. height:40px;
  3182. display:flex;
  3183. }
  3184. #u1355 .text {
  3185. position:absolute;
  3186. align-self:center;
  3187. padding:2px 2px 2px 2px;
  3188. box-sizing:border-box;
  3189. width:100%;
  3190. }
  3191. #u1355_text {
  3192. border-width:0px;
  3193. word-wrap:break-word;
  3194. text-transform:none;
  3195. }
  3196. #u1356_div {
  3197. border-width:0px;
  3198. position:absolute;
  3199. left:0px;
  3200. top:0px;
  3201. width:116px;
  3202. height:40px;
  3203. background:inherit;
  3204. background-color:rgba(255, 255, 255, 1);
  3205. box-sizing:border-box;
  3206. border-width:1px;
  3207. border-style:solid;
  3208. border-color:rgba(215, 215, 215, 1);
  3209. border-radius:0px;
  3210. -moz-box-shadow:none;
  3211. -webkit-box-shadow:none;
  3212. box-shadow:none;
  3213. }
  3214. #u1356 {
  3215. border-width:0px;
  3216. position:absolute;
  3217. left:678px;
  3218. top:219px;
  3219. width:116px;
  3220. height:40px;
  3221. display:flex;
  3222. }
  3223. #u1356 .text {
  3224. position:absolute;
  3225. align-self:center;
  3226. padding:2px 2px 2px 2px;
  3227. box-sizing:border-box;
  3228. width:100%;
  3229. }
  3230. #u1356_text {
  3231. border-width:0px;
  3232. word-wrap:break-word;
  3233. text-transform:none;
  3234. }
  3235. #u1357_div {
  3236. border-width:0px;
  3237. position:absolute;
  3238. left:0px;
  3239. top:0px;
  3240. width:109px;
  3241. height:40px;
  3242. background:inherit;
  3243. background-color:rgba(255, 255, 255, 1);
  3244. box-sizing:border-box;
  3245. border-width:1px;
  3246. border-style:solid;
  3247. border-color:rgba(215, 215, 215, 1);
  3248. border-radius:0px;
  3249. -moz-box-shadow:none;
  3250. -webkit-box-shadow:none;
  3251. box-shadow:none;
  3252. }
  3253. #u1357 {
  3254. border-width:0px;
  3255. position:absolute;
  3256. left:793px;
  3257. top:219px;
  3258. width:109px;
  3259. height:40px;
  3260. display:flex;
  3261. }
  3262. #u1357 .text {
  3263. position:absolute;
  3264. align-self:center;
  3265. padding:2px 2px 2px 2px;
  3266. box-sizing:border-box;
  3267. width:100%;
  3268. }
  3269. #u1357_text {
  3270. border-width:0px;
  3271. word-wrap:break-word;
  3272. text-transform:none;
  3273. }
  3274. #u1358_div {
  3275. border-width:0px;
  3276. position:absolute;
  3277. left:0px;
  3278. top:0px;
  3279. width:128px;
  3280. height:40px;
  3281. background:inherit;
  3282. background-color:rgba(255, 255, 255, 1);
  3283. box-sizing:border-box;
  3284. border-width:1px;
  3285. border-style:solid;
  3286. border-color:rgba(215, 215, 215, 1);
  3287. border-radius:0px;
  3288. -moz-box-shadow:none;
  3289. -webkit-box-shadow:none;
  3290. box-shadow:none;
  3291. }
  3292. #u1358 {
  3293. border-width:0px;
  3294. position:absolute;
  3295. left:901px;
  3296. top:219px;
  3297. width:128px;
  3298. height:40px;
  3299. display:flex;
  3300. }
  3301. #u1358 .text {
  3302. position:absolute;
  3303. align-self:center;
  3304. padding:2px 2px 2px 2px;
  3305. box-sizing:border-box;
  3306. width:100%;
  3307. }
  3308. #u1358_text {
  3309. border-width:0px;
  3310. word-wrap:break-word;
  3311. text-transform:none;
  3312. }
  3313. #u1359_div {
  3314. border-width:0px;
  3315. position:absolute;
  3316. left:0px;
  3317. top:0px;
  3318. width:128px;
  3319. height:40px;
  3320. background:inherit;
  3321. background-color:rgba(255, 255, 255, 1);
  3322. box-sizing:border-box;
  3323. border-width:1px;
  3324. border-style:solid;
  3325. border-color:rgba(215, 215, 215, 1);
  3326. border-radius:0px;
  3327. -moz-box-shadow:none;
  3328. -webkit-box-shadow:none;
  3329. box-shadow:none;
  3330. }
  3331. #u1359 {
  3332. border-width:0px;
  3333. position:absolute;
  3334. left:1028px;
  3335. top:219px;
  3336. width:128px;
  3337. height:40px;
  3338. display:flex;
  3339. }
  3340. #u1359 .text {
  3341. position:absolute;
  3342. align-self:center;
  3343. padding:2px 2px 2px 2px;
  3344. box-sizing:border-box;
  3345. width:100%;
  3346. }
  3347. #u1359_text {
  3348. border-width:0px;
  3349. word-wrap:break-word;
  3350. text-transform:none;
  3351. }
  3352. #u1360_div {
  3353. border-width:0px;
  3354. position:absolute;
  3355. left:0px;
  3356. top:0px;
  3357. width:128px;
  3358. height:40px;
  3359. background:inherit;
  3360. background-color:rgba(255, 255, 255, 1);
  3361. box-sizing:border-box;
  3362. border-width:1px;
  3363. border-style:solid;
  3364. border-color:rgba(215, 215, 215, 1);
  3365. border-radius:0px;
  3366. -moz-box-shadow:none;
  3367. -webkit-box-shadow:none;
  3368. box-shadow:none;
  3369. }
  3370. #u1360 {
  3371. border-width:0px;
  3372. position:absolute;
  3373. left:1155px;
  3374. top:219px;
  3375. width:128px;
  3376. height:40px;
  3377. display:flex;
  3378. }
  3379. #u1360 .text {
  3380. position:absolute;
  3381. align-self:center;
  3382. padding:2px 2px 2px 2px;
  3383. box-sizing:border-box;
  3384. width:100%;
  3385. }
  3386. #u1360_text {
  3387. border-width:0px;
  3388. word-wrap:break-word;
  3389. text-transform:none;
  3390. }
  3391. #u1361_div {
  3392. border-width:0px;
  3393. position:absolute;
  3394. left:0px;
  3395. top:0px;
  3396. width:128px;
  3397. height:40px;
  3398. background:inherit;
  3399. background-color:rgba(255, 255, 255, 1);
  3400. box-sizing:border-box;
  3401. border-width:1px;
  3402. border-style:solid;
  3403. border-color:rgba(215, 215, 215, 1);
  3404. border-radius:0px;
  3405. -moz-box-shadow:none;
  3406. -webkit-box-shadow:none;
  3407. box-shadow:none;
  3408. }
  3409. #u1361 {
  3410. border-width:0px;
  3411. position:absolute;
  3412. left:1282px;
  3413. top:219px;
  3414. width:128px;
  3415. height:40px;
  3416. display:flex;
  3417. }
  3418. #u1361 .text {
  3419. position:absolute;
  3420. align-self:center;
  3421. padding:2px 2px 2px 2px;
  3422. box-sizing:border-box;
  3423. width:100%;
  3424. }
  3425. #u1361_text {
  3426. border-width:0px;
  3427. word-wrap:break-word;
  3428. text-transform:none;
  3429. }
  3430. .u1363_div {
  3431. border-width:0px;
  3432. position:absolute;
  3433. left:0px;
  3434. top:0px;
  3435. width:136px;
  3436. height:40px;
  3437. background:inherit;
  3438. background-color:rgba(255, 255, 255, 1);
  3439. box-sizing:border-box;
  3440. border-width:1px;
  3441. border-style:solid;
  3442. border-color:rgba(215, 215, 215, 1);
  3443. border-radius:0px;
  3444. -moz-box-shadow:none;
  3445. -webkit-box-shadow:none;
  3446. box-shadow:none;
  3447. }
  3448. .u1363 {
  3449. border-width:0px;
  3450. position:absolute;
  3451. left:0px;
  3452. top:-1px;
  3453. width:136px;
  3454. height:40px;
  3455. display:flex;
  3456. }
  3457. .u1363 .text {
  3458. position:absolute;
  3459. align-self:center;
  3460. padding:2px 2px 2px 2px;
  3461. box-sizing:border-box;
  3462. width:100%;
  3463. }
  3464. .u1363_text {
  3465. border-width:0px;
  3466. word-wrap:break-word;
  3467. text-transform:none;
  3468. }
  3469. .u1364_div {
  3470. border-width:0px;
  3471. position:absolute;
  3472. left:0px;
  3473. top:0px;
  3474. width:136px;
  3475. height:40px;
  3476. background:inherit;
  3477. background-color:rgba(255, 255, 255, 1);
  3478. box-sizing:border-box;
  3479. border-width:1px;
  3480. border-style:solid;
  3481. border-color:rgba(215, 215, 215, 1);
  3482. border-radius:0px;
  3483. -moz-box-shadow:none;
  3484. -webkit-box-shadow:none;
  3485. box-shadow:none;
  3486. }
  3487. .u1364 {
  3488. border-width:0px;
  3489. position:absolute;
  3490. left:135px;
  3491. top:-1px;
  3492. width:136px;
  3493. height:40px;
  3494. display:flex;
  3495. }
  3496. .u1364 .text {
  3497. position:absolute;
  3498. align-self:center;
  3499. padding:2px 2px 2px 2px;
  3500. box-sizing:border-box;
  3501. width:100%;
  3502. }
  3503. .u1364_text {
  3504. border-width:0px;
  3505. word-wrap:break-word;
  3506. text-transform:none;
  3507. }
  3508. .u1365_div {
  3509. border-width:0px;
  3510. position:absolute;
  3511. left:0px;
  3512. top:0px;
  3513. width:116px;
  3514. height:40px;
  3515. background:inherit;
  3516. background-color:rgba(255, 255, 255, 1);
  3517. box-sizing:border-box;
  3518. border-width:1px;
  3519. border-style:solid;
  3520. border-color:rgba(215, 215, 215, 1);
  3521. border-radius:0px;
  3522. -moz-box-shadow:none;
  3523. -webkit-box-shadow:none;
  3524. box-shadow:none;
  3525. }
  3526. .u1365 {
  3527. border-width:0px;
  3528. position:absolute;
  3529. left:270px;
  3530. top:-1px;
  3531. width:116px;
  3532. height:40px;
  3533. display:flex;
  3534. }
  3535. .u1365 .text {
  3536. position:absolute;
  3537. align-self:center;
  3538. padding:2px 2px 2px 2px;
  3539. box-sizing:border-box;
  3540. width:100%;
  3541. }
  3542. .u1365_text {
  3543. border-width:0px;
  3544. word-wrap:break-word;
  3545. text-transform:none;
  3546. }
  3547. .u1366_div {
  3548. border-width:0px;
  3549. position:absolute;
  3550. left:0px;
  3551. top:0px;
  3552. width:116px;
  3553. height:40px;
  3554. background:inherit;
  3555. background-color:rgba(255, 255, 255, 1);
  3556. box-sizing:border-box;
  3557. border-width:1px;
  3558. border-style:solid;
  3559. border-color:rgba(215, 215, 215, 1);
  3560. border-radius:0px;
  3561. -moz-box-shadow:none;
  3562. -webkit-box-shadow:none;
  3563. box-shadow:none;
  3564. }
  3565. .u1366 {
  3566. border-width:0px;
  3567. position:absolute;
  3568. left:385px;
  3569. top:-1px;
  3570. width:116px;
  3571. height:40px;
  3572. display:flex;
  3573. }
  3574. .u1366 .text {
  3575. position:absolute;
  3576. align-self:center;
  3577. padding:2px 2px 2px 2px;
  3578. box-sizing:border-box;
  3579. width:100%;
  3580. }
  3581. .u1366_text {
  3582. border-width:0px;
  3583. word-wrap:break-word;
  3584. text-transform:none;
  3585. }
  3586. .u1367_div {
  3587. border-width:0px;
  3588. position:absolute;
  3589. left:0px;
  3590. top:0px;
  3591. width:109px;
  3592. height:40px;
  3593. background:inherit;
  3594. background-color:rgba(255, 255, 255, 1);
  3595. box-sizing:border-box;
  3596. border-width:1px;
  3597. border-style:solid;
  3598. border-color:rgba(215, 215, 215, 1);
  3599. border-radius:0px;
  3600. -moz-box-shadow:none;
  3601. -webkit-box-shadow:none;
  3602. box-shadow:none;
  3603. }
  3604. .u1367 {
  3605. border-width:0px;
  3606. position:absolute;
  3607. left:500px;
  3608. top:-1px;
  3609. width:109px;
  3610. height:40px;
  3611. display:flex;
  3612. }
  3613. .u1367 .text {
  3614. position:absolute;
  3615. align-self:center;
  3616. padding:2px 2px 2px 2px;
  3617. box-sizing:border-box;
  3618. width:100%;
  3619. }
  3620. .u1367_text {
  3621. border-width:0px;
  3622. word-wrap:break-word;
  3623. text-transform:none;
  3624. }
  3625. .u1368_div {
  3626. border-width:0px;
  3627. position:absolute;
  3628. left:0px;
  3629. top:0px;
  3630. width:128px;
  3631. height:40px;
  3632. background:inherit;
  3633. background-color:rgba(255, 255, 255, 1);
  3634. box-sizing:border-box;
  3635. border-width:1px;
  3636. border-style:solid;
  3637. border-color:rgba(215, 215, 215, 1);
  3638. border-radius:0px;
  3639. -moz-box-shadow:none;
  3640. -webkit-box-shadow:none;
  3641. box-shadow:none;
  3642. }
  3643. .u1368 {
  3644. border-width:0px;
  3645. position:absolute;
  3646. left:608px;
  3647. top:-1px;
  3648. width:128px;
  3649. height:40px;
  3650. display:flex;
  3651. }
  3652. .u1368 .text {
  3653. position:absolute;
  3654. align-self:center;
  3655. padding:2px 2px 2px 2px;
  3656. box-sizing:border-box;
  3657. width:100%;
  3658. }
  3659. .u1368_text {
  3660. border-width:0px;
  3661. word-wrap:break-word;
  3662. text-transform:none;
  3663. }
  3664. .u1369_div {
  3665. border-width:0px;
  3666. position:absolute;
  3667. left:0px;
  3668. top:0px;
  3669. width:128px;
  3670. height:40px;
  3671. background:inherit;
  3672. background-color:rgba(255, 255, 255, 1);
  3673. box-sizing:border-box;
  3674. border-width:1px;
  3675. border-style:solid;
  3676. border-color:rgba(215, 215, 215, 1);
  3677. border-radius:0px;
  3678. -moz-box-shadow:none;
  3679. -webkit-box-shadow:none;
  3680. box-shadow:none;
  3681. }
  3682. .u1369 {
  3683. border-width:0px;
  3684. position:absolute;
  3685. left:735px;
  3686. top:-1px;
  3687. width:128px;
  3688. height:40px;
  3689. display:flex;
  3690. }
  3691. .u1369 .text {
  3692. position:absolute;
  3693. align-self:center;
  3694. padding:2px 2px 2px 2px;
  3695. box-sizing:border-box;
  3696. width:100%;
  3697. }
  3698. .u1369_text {
  3699. border-width:0px;
  3700. word-wrap:break-word;
  3701. text-transform:none;
  3702. }
  3703. .u1370_div {
  3704. border-width:0px;
  3705. position:absolute;
  3706. left:0px;
  3707. top:0px;
  3708. width:128px;
  3709. height:40px;
  3710. background:inherit;
  3711. background-color:rgba(255, 255, 255, 1);
  3712. box-sizing:border-box;
  3713. border-width:1px;
  3714. border-style:solid;
  3715. border-color:rgba(215, 215, 215, 1);
  3716. border-radius:0px;
  3717. -moz-box-shadow:none;
  3718. -webkit-box-shadow:none;
  3719. box-shadow:none;
  3720. }
  3721. .u1370 {
  3722. border-width:0px;
  3723. position:absolute;
  3724. left:862px;
  3725. top:-1px;
  3726. width:128px;
  3727. height:40px;
  3728. display:flex;
  3729. }
  3730. .u1370 .text {
  3731. position:absolute;
  3732. align-self:center;
  3733. padding:2px 2px 2px 2px;
  3734. box-sizing:border-box;
  3735. width:100%;
  3736. }
  3737. .u1370_text {
  3738. border-width:0px;
  3739. word-wrap:break-word;
  3740. text-transform:none;
  3741. }
  3742. .u1371_div {
  3743. border-width:0px;
  3744. position:absolute;
  3745. left:0px;
  3746. top:0px;
  3747. width:128px;
  3748. height:40px;
  3749. background:inherit;
  3750. background-color:rgba(255, 255, 255, 1);
  3751. box-sizing:border-box;
  3752. border-width:1px;
  3753. border-style:solid;
  3754. border-color:rgba(215, 215, 215, 1);
  3755. border-radius:0px;
  3756. -moz-box-shadow:none;
  3757. -webkit-box-shadow:none;
  3758. box-shadow:none;
  3759. }
  3760. .u1371 {
  3761. border-width:0px;
  3762. position:absolute;
  3763. left:989px;
  3764. top:-1px;
  3765. width:128px;
  3766. height:40px;
  3767. display:flex;
  3768. }
  3769. .u1371 .text {
  3770. position:absolute;
  3771. align-self:center;
  3772. padding:2px 2px 2px 2px;
  3773. box-sizing:border-box;
  3774. width:100%;
  3775. }
  3776. .u1371_text {
  3777. border-width:0px;
  3778. word-wrap:break-word;
  3779. text-transform:none;
  3780. }
  3781. #u1362-1 {
  3782. border-width:0px;
  3783. position:absolute;
  3784. left:0px;
  3785. top:0px;
  3786. width:1117px;
  3787. height:39px;
  3788. }
  3789. #u1362-2 {
  3790. border-width:0px;
  3791. position:absolute;
  3792. left:0px;
  3793. top:39px;
  3794. width:1117px;
  3795. height:39px;
  3796. }
  3797. #u1362-3 {
  3798. border-width:0px;
  3799. position:absolute;
  3800. left:0px;
  3801. top:78px;
  3802. width:1117px;
  3803. height:39px;
  3804. }
  3805. #u1362-4 {
  3806. border-width:0px;
  3807. position:absolute;
  3808. left:0px;
  3809. top:117px;
  3810. width:1117px;
  3811. height:39px;
  3812. }
  3813. #u1362-5 {
  3814. border-width:0px;
  3815. position:absolute;
  3816. left:0px;
  3817. top:156px;
  3818. width:1117px;
  3819. height:39px;
  3820. }
  3821. #u1362-6 {
  3822. border-width:0px;
  3823. position:absolute;
  3824. left:0px;
  3825. top:195px;
  3826. width:1117px;
  3827. height:39px;
  3828. }
  3829. #u1362-7 {
  3830. border-width:0px;
  3831. position:absolute;
  3832. left:0px;
  3833. top:234px;
  3834. width:1117px;
  3835. height:39px;
  3836. }
  3837. #u1362-8 {
  3838. border-width:0px;
  3839. position:absolute;
  3840. left:0px;
  3841. top:273px;
  3842. width:1117px;
  3843. height:39px;
  3844. }
  3845. #u1362-9 {
  3846. border-width:0px;
  3847. position:absolute;
  3848. left:0px;
  3849. top:312px;
  3850. width:1117px;
  3851. height:39px;
  3852. }
  3853. #u1362-10 {
  3854. border-width:0px;
  3855. position:absolute;
  3856. left:0px;
  3857. top:351px;
  3858. width:1117px;
  3859. height:39px;
  3860. }
  3861. #u1362 {
  3862. border-width:0px;
  3863. position:absolute;
  3864. left:293px;
  3865. top:259px;
  3866. width:1117px;
  3867. height:390px;
  3868. background:inherit;
  3869. background-color:rgba(242, 242, 242, 1);
  3870. border:none;
  3871. border-radius:0px;
  3872. }
  3873. #u1372_div {
  3874. border-width:0px;
  3875. position:absolute;
  3876. left:0px;
  3877. top:0px;
  3878. width:560px;
  3879. height:80px;
  3880. background:inherit;
  3881. background-color:rgba(255, 255, 255, 0);
  3882. border:none;
  3883. border-radius:0px;
  3884. -moz-box-shadow:none;
  3885. -webkit-box-shadow:none;
  3886. box-shadow:none;
  3887. color:#D9001B;
  3888. }
  3889. #u1372 {
  3890. border-width:0px;
  3891. position:absolute;
  3892. left:1462px;
  3893. top:374px;
  3894. width:560px;
  3895. height:80px;
  3896. display:flex;
  3897. color:#D9001B;
  3898. }
  3899. #u1372 .text {
  3900. position:absolute;
  3901. align-self:flex-start;
  3902. padding:0px 0px 0px 0px;
  3903. box-sizing:border-box;
  3904. width:100%;
  3905. }
  3906. #u1372_text {
  3907. border-width:0px;
  3908. white-space:nowrap;
  3909. text-transform:none;
  3910. }
  3911. #u1373 {
  3912. border-width:0px;
  3913. position:absolute;
  3914. left:965px;
  3915. top:219px;
  3916. width:0px;
  3917. height:0px;
  3918. }
  3919. #u1373_seg0 {
  3920. border-width:0px;
  3921. position:absolute;
  3922. left:-5px;
  3923. top:-24px;
  3924. width:10px;
  3925. height:24px;
  3926. }
  3927. #u1373_seg1 {
  3928. border-width:0px;
  3929. position:absolute;
  3930. left:-5px;
  3931. top:-24px;
  3932. width:495px;
  3933. height:10px;
  3934. }
  3935. #u1373_seg2 {
  3936. border-width:0px;
  3937. position:absolute;
  3938. left:480px;
  3939. top:-24px;
  3940. width:10px;
  3941. height:224px;
  3942. }
  3943. #u1373_seg3 {
  3944. border-width:0px;
  3945. position:absolute;
  3946. left:480px;
  3947. top:190px;
  3948. width:17px;
  3949. height:10px;
  3950. }
  3951. #u1373_seg4 {
  3952. border-width:0px;
  3953. position:absolute;
  3954. left:485px;
  3955. top:185px;
  3956. width:20px;
  3957. height:20px;
  3958. }
  3959. #u1373_text {
  3960. border-width:0px;
  3961. position:absolute;
  3962. left:296px;
  3963. top:-27px;
  3964. width:100px;
  3965. word-wrap:break-word;
  3966. text-transform:none;
  3967. visibility:hidden;
  3968. }
  3969. #u1374 {
  3970. border-width:0px;
  3971. position:absolute;
  3972. left:1219px;
  3973. top:219px;
  3974. width:0px;
  3975. height:0px;
  3976. }
  3977. #u1374_seg0 {
  3978. border-width:0px;
  3979. position:absolute;
  3980. left:-5px;
  3981. top:-24px;
  3982. width:10px;
  3983. height:24px;
  3984. }
  3985. #u1374_seg1 {
  3986. border-width:0px;
  3987. position:absolute;
  3988. left:-5px;
  3989. top:-24px;
  3990. width:241px;
  3991. height:10px;
  3992. }
  3993. #u1374_seg2 {
  3994. border-width:0px;
  3995. position:absolute;
  3996. left:226px;
  3997. top:-24px;
  3998. width:10px;
  3999. height:224px;
  4000. }
  4001. #u1374_seg3 {
  4002. border-width:0px;
  4003. position:absolute;
  4004. left:226px;
  4005. top:190px;
  4006. width:17px;
  4007. height:10px;
  4008. }
  4009. #u1374_seg4 {
  4010. border-width:0px;
  4011. position:absolute;
  4012. left:231px;
  4013. top:185px;
  4014. width:20px;
  4015. height:20px;
  4016. }
  4017. #u1374_text {
  4018. border-width:0px;
  4019. position:absolute;
  4020. left:169px;
  4021. top:-27px;
  4022. width:100px;
  4023. word-wrap:break-word;
  4024. text-transform:none;
  4025. visibility:hidden;
  4026. }
  4027. #u1375 {
  4028. border-width:0px;
  4029. position:absolute;
  4030. left:1346px;
  4031. top:219px;
  4032. width:0px;
  4033. height:0px;
  4034. }
  4035. #u1375_seg0 {
  4036. border-width:0px;
  4037. position:absolute;
  4038. left:-5px;
  4039. top:-24px;
  4040. width:10px;
  4041. height:24px;
  4042. }
  4043. #u1375_seg1 {
  4044. border-width:0px;
  4045. position:absolute;
  4046. left:-5px;
  4047. top:-24px;
  4048. width:114px;
  4049. height:10px;
  4050. }
  4051. #u1375_seg2 {
  4052. border-width:0px;
  4053. position:absolute;
  4054. left:99px;
  4055. top:-24px;
  4056. width:10px;
  4057. height:224px;
  4058. }
  4059. #u1375_seg3 {
  4060. border-width:0px;
  4061. position:absolute;
  4062. left:99px;
  4063. top:190px;
  4064. width:17px;
  4065. height:10px;
  4066. }
  4067. #u1375_seg4 {
  4068. border-width:0px;
  4069. position:absolute;
  4070. left:104px;
  4071. top:185px;
  4072. width:20px;
  4073. height:20px;
  4074. }
  4075. #u1375_text {
  4076. border-width:0px;
  4077. position:absolute;
  4078. left:54px;
  4079. top:24px;
  4080. width:100px;
  4081. word-wrap:break-word;
  4082. text-transform:none;
  4083. visibility:hidden;
  4084. }
  4085. #u1376 {
  4086. border-width:0px;
  4087. position:absolute;
  4088. left:0px;
  4089. top:0px;
  4090. width:0px;
  4091. height:0px;
  4092. }
  4093. #u1377_div {
  4094. border-width:0px;
  4095. position:absolute;
  4096. left:0px;
  4097. top:0px;
  4098. width:263px;
  4099. height:32px;
  4100. background:inherit;
  4101. background-color:rgba(255, 255, 255, 1);
  4102. box-sizing:border-box;
  4103. border-width:1px;
  4104. border-style:solid;
  4105. border-color:rgba(220, 223, 230, 1);
  4106. border-radius:4px;
  4107. -moz-box-shadow:none;
  4108. -webkit-box-shadow:none;
  4109. box-shadow:none;
  4110. color:#C0C4CC;
  4111. text-align:left;
  4112. }
  4113. #u1377 {
  4114. border-width:0px;
  4115. position:absolute;
  4116. left:785px;
  4117. top:156px;
  4118. width:263px;
  4119. height:32px;
  4120. display:flex;
  4121. color:#C0C4CC;
  4122. text-align:left;
  4123. }
  4124. #u1377 .text {
  4125. position:absolute;
  4126. align-self:center;
  4127. padding:2px 2px 2px 40px;
  4128. box-sizing:border-box;
  4129. width:100%;
  4130. }
  4131. #u1377_div.mouseOver {
  4132. border-width:0px;
  4133. position:absolute;
  4134. left:0px;
  4135. top:0px;
  4136. width:263px;
  4137. height:32px;
  4138. background:inherit;
  4139. background-color:rgba(255, 255, 255, 1);
  4140. box-sizing:border-box;
  4141. border-width:1px;
  4142. border-style:solid;
  4143. border-color:rgba(192, 196, 204, 1);
  4144. border-radius:4px;
  4145. -moz-box-shadow:none;
  4146. -webkit-box-shadow:none;
  4147. box-shadow:none;
  4148. color:#C0C4CC;
  4149. text-align:left;
  4150. }
  4151. #u1377.mouseOver {
  4152. }
  4153. #u1377_div.selected {
  4154. border-width:0px;
  4155. position:absolute;
  4156. left:0px;
  4157. top:0px;
  4158. width:263px;
  4159. height:32px;
  4160. background:inherit;
  4161. background-color:rgba(255, 255, 255, 1);
  4162. box-sizing:border-box;
  4163. border-width:1px;
  4164. border-style:solid;
  4165. border-color:rgba(64, 158, 255, 1);
  4166. border-radius:4px;
  4167. -moz-box-shadow:none;
  4168. -webkit-box-shadow:none;
  4169. box-shadow:none;
  4170. color:#C0C4CC;
  4171. text-align:left;
  4172. }
  4173. #u1377.selected {
  4174. }
  4175. #u1377_div.mouseOver.selected {
  4176. border-width:0px;
  4177. position:absolute;
  4178. left:0px;
  4179. top:0px;
  4180. width:263px;
  4181. height:32px;
  4182. background:inherit;
  4183. background-color:rgba(255, 255, 255, 1);
  4184. box-sizing:border-box;
  4185. border-width:1px;
  4186. border-style:solid;
  4187. border-color:rgba(64, 158, 255, 1);
  4188. border-radius:4px;
  4189. -moz-box-shadow:none;
  4190. -webkit-box-shadow:none;
  4191. box-shadow:none;
  4192. color:#C0C4CC;
  4193. text-align:left;
  4194. }
  4195. #u1377.mouseOver.selected {
  4196. }
  4197. #u1377_text {
  4198. border-width:0px;
  4199. word-wrap:break-word;
  4200. text-transform:none;
  4201. visibility:hidden;
  4202. }
  4203. #u1378_img {
  4204. border-width:0px;
  4205. position:absolute;
  4206. left:0px;
  4207. top:0px;
  4208. width:14px;
  4209. height:14px;
  4210. }
  4211. #u1378 {
  4212. border-width:0px;
  4213. position:absolute;
  4214. left:799px;
  4215. top:166px;
  4216. width:14px;
  4217. height:14px;
  4218. display:flex;
  4219. font-family:"Arial Normal", "Arial", sans-serif;
  4220. font-weight:400;
  4221. font-style:normal;
  4222. color:rgba(0, 0, 0, 0.8470588235294118);
  4223. }
  4224. #u1378 .text {
  4225. position:absolute;
  4226. align-self:center;
  4227. padding:2px 2px 2px 2px;
  4228. box-sizing:border-box;
  4229. width:100%;
  4230. }
  4231. #u1378_text {
  4232. border-width:0px;
  4233. word-wrap:break-word;
  4234. text-transform:none;
  4235. visibility:hidden;
  4236. }
  4237. #u1379_div {
  4238. border-width:0px;
  4239. position:absolute;
  4240. left:0px;
  4241. top:0px;
  4242. width:13px;
  4243. height:16px;
  4244. background:inherit;
  4245. background-color:rgba(255, 255, 255, 0);
  4246. border:none;
  4247. border-radius:0px;
  4248. -moz-box-shadow:none;
  4249. -webkit-box-shadow:none;
  4250. box-shadow:none;
  4251. font-family:"Microsoft YaHei UI", sans-serif;
  4252. font-weight:400;
  4253. font-style:normal;
  4254. font-size:13px;
  4255. color:#5E6D82;
  4256. }
  4257. #u1379 {
  4258. border-width:0px;
  4259. position:absolute;
  4260. left:916px;
  4261. top:164px;
  4262. width:13px;
  4263. height:16px;
  4264. display:flex;
  4265. font-family:"Microsoft YaHei UI", sans-serif;
  4266. font-weight:400;
  4267. font-style:normal;
  4268. font-size:13px;
  4269. color:#5E6D82;
  4270. }
  4271. #u1379 .text {
  4272. position:absolute;
  4273. align-self:flex-start;
  4274. padding:0px 0px 0px 0px;
  4275. box-sizing:border-box;
  4276. width:100%;
  4277. }
  4278. #u1379_text {
  4279. border-width:0px;
  4280. white-space:nowrap;
  4281. text-transform:none;
  4282. }
  4283. #u1380_div {
  4284. border-width:0px;
  4285. position:absolute;
  4286. left:0px;
  4287. top:0px;
  4288. width:78px;
  4289. height:15px;
  4290. background:inherit;
  4291. background-color:rgba(255, 255, 255, 0);
  4292. border:none;
  4293. border-radius:0px;
  4294. -moz-box-shadow:none;
  4295. -webkit-box-shadow:none;
  4296. box-shadow:none;
  4297. font-size:13px;
  4298. color:#C0C4CC;
  4299. text-align:center;
  4300. }
  4301. #u1380 {
  4302. border-width:0px;
  4303. position:absolute;
  4304. left:821px;
  4305. top:165px;
  4306. width:78px;
  4307. height:15px;
  4308. display:flex;
  4309. font-size:13px;
  4310. color:#C0C4CC;
  4311. text-align:center;
  4312. }
  4313. #u1380 .text {
  4314. position:absolute;
  4315. align-self:flex-start;
  4316. padding:0px 0px 0px 0px;
  4317. box-sizing:border-box;
  4318. width:100%;
  4319. }
  4320. #u1380_text {
  4321. border-width:0px;
  4322. white-space:nowrap;
  4323. text-transform:none;
  4324. }
  4325. #u1381_div {
  4326. border-width:0px;
  4327. position:absolute;
  4328. left:0px;
  4329. top:0px;
  4330. width:78px;
  4331. height:15px;
  4332. background:inherit;
  4333. background-color:rgba(255, 255, 255, 0);
  4334. border:none;
  4335. border-radius:0px;
  4336. -moz-box-shadow:none;
  4337. -webkit-box-shadow:none;
  4338. box-shadow:none;
  4339. font-size:13px;
  4340. color:#C0C4CC;
  4341. text-align:center;
  4342. }
  4343. #u1381 {
  4344. border-width:0px;
  4345. position:absolute;
  4346. left:946px;
  4347. top:165px;
  4348. width:78px;
  4349. height:15px;
  4350. display:flex;
  4351. font-size:13px;
  4352. color:#C0C4CC;
  4353. text-align:center;
  4354. }
  4355. #u1381 .text {
  4356. position:absolute;
  4357. align-self:flex-start;
  4358. padding:0px 0px 0px 0px;
  4359. box-sizing:border-box;
  4360. width:100%;
  4361. }
  4362. #u1381_text {
  4363. border-width:0px;
  4364. white-space:nowrap;
  4365. text-transform:none;
  4366. }
  4367. #u1382 {
  4368. border-width:0px;
  4369. position:absolute;
  4370. left:0px;
  4371. top:0px;
  4372. width:0px;
  4373. height:0px;
  4374. }
  4375. #u1383_div {
  4376. border-width:0px;
  4377. position:absolute;
  4378. left:0px;
  4379. top:0px;
  4380. width:263px;
  4381. height:32px;
  4382. background:inherit;
  4383. background-color:rgba(255, 255, 255, 1);
  4384. box-sizing:border-box;
  4385. border-width:1px;
  4386. border-style:solid;
  4387. border-color:rgba(220, 223, 230, 1);
  4388. border-radius:4px;
  4389. -moz-box-shadow:none;
  4390. -webkit-box-shadow:none;
  4391. box-shadow:none;
  4392. color:#C0C4CC;
  4393. text-align:left;
  4394. }
  4395. #u1383 {
  4396. border-width:0px;
  4397. position:absolute;
  4398. left:1066px;
  4399. top:156px;
  4400. width:263px;
  4401. height:32px;
  4402. display:flex;
  4403. color:#C0C4CC;
  4404. text-align:left;
  4405. }
  4406. #u1383 .text {
  4407. position:absolute;
  4408. align-self:center;
  4409. padding:2px 2px 2px 40px;
  4410. box-sizing:border-box;
  4411. width:100%;
  4412. }
  4413. #u1383_div.mouseOver {
  4414. border-width:0px;
  4415. position:absolute;
  4416. left:0px;
  4417. top:0px;
  4418. width:263px;
  4419. height:32px;
  4420. background:inherit;
  4421. background-color:rgba(255, 255, 255, 1);
  4422. box-sizing:border-box;
  4423. border-width:1px;
  4424. border-style:solid;
  4425. border-color:rgba(192, 196, 204, 1);
  4426. border-radius:4px;
  4427. -moz-box-shadow:none;
  4428. -webkit-box-shadow:none;
  4429. box-shadow:none;
  4430. color:#C0C4CC;
  4431. text-align:left;
  4432. }
  4433. #u1383.mouseOver {
  4434. }
  4435. #u1383_div.selected {
  4436. border-width:0px;
  4437. position:absolute;
  4438. left:0px;
  4439. top:0px;
  4440. width:263px;
  4441. height:32px;
  4442. background:inherit;
  4443. background-color:rgba(255, 255, 255, 1);
  4444. box-sizing:border-box;
  4445. border-width:1px;
  4446. border-style:solid;
  4447. border-color:rgba(64, 158, 255, 1);
  4448. border-radius:4px;
  4449. -moz-box-shadow:none;
  4450. -webkit-box-shadow:none;
  4451. box-shadow:none;
  4452. color:#C0C4CC;
  4453. text-align:left;
  4454. }
  4455. #u1383.selected {
  4456. }
  4457. #u1383_div.mouseOver.selected {
  4458. border-width:0px;
  4459. position:absolute;
  4460. left:0px;
  4461. top:0px;
  4462. width:263px;
  4463. height:32px;
  4464. background:inherit;
  4465. background-color:rgba(255, 255, 255, 1);
  4466. box-sizing:border-box;
  4467. border-width:1px;
  4468. border-style:solid;
  4469. border-color:rgba(64, 158, 255, 1);
  4470. border-radius:4px;
  4471. -moz-box-shadow:none;
  4472. -webkit-box-shadow:none;
  4473. box-shadow:none;
  4474. color:#C0C4CC;
  4475. text-align:left;
  4476. }
  4477. #u1383.mouseOver.selected {
  4478. }
  4479. #u1383_text {
  4480. border-width:0px;
  4481. word-wrap:break-word;
  4482. text-transform:none;
  4483. visibility:hidden;
  4484. }
  4485. #u1384_img {
  4486. border-width:0px;
  4487. position:absolute;
  4488. left:0px;
  4489. top:0px;
  4490. width:14px;
  4491. height:14px;
  4492. }
  4493. #u1384 {
  4494. border-width:0px;
  4495. position:absolute;
  4496. left:1080px;
  4497. top:166px;
  4498. width:14px;
  4499. height:14px;
  4500. display:flex;
  4501. font-family:"Arial Normal", "Arial", sans-serif;
  4502. font-weight:400;
  4503. font-style:normal;
  4504. color:rgba(0, 0, 0, 0.8470588235294118);
  4505. }
  4506. #u1384 .text {
  4507. position:absolute;
  4508. align-self:center;
  4509. padding:2px 2px 2px 2px;
  4510. box-sizing:border-box;
  4511. width:100%;
  4512. }
  4513. #u1384_text {
  4514. border-width:0px;
  4515. word-wrap:break-word;
  4516. text-transform:none;
  4517. visibility:hidden;
  4518. }
  4519. #u1385_div {
  4520. border-width:0px;
  4521. position:absolute;
  4522. left:0px;
  4523. top:0px;
  4524. width:13px;
  4525. height:16px;
  4526. background:inherit;
  4527. background-color:rgba(255, 255, 255, 0);
  4528. border:none;
  4529. border-radius:0px;
  4530. -moz-box-shadow:none;
  4531. -webkit-box-shadow:none;
  4532. box-shadow:none;
  4533. font-family:"Microsoft YaHei UI", sans-serif;
  4534. font-weight:400;
  4535. font-style:normal;
  4536. font-size:13px;
  4537. color:#5E6D82;
  4538. }
  4539. #u1385 {
  4540. border-width:0px;
  4541. position:absolute;
  4542. left:1197px;
  4543. top:164px;
  4544. width:13px;
  4545. height:16px;
  4546. display:flex;
  4547. font-family:"Microsoft YaHei UI", sans-serif;
  4548. font-weight:400;
  4549. font-style:normal;
  4550. font-size:13px;
  4551. color:#5E6D82;
  4552. }
  4553. #u1385 .text {
  4554. position:absolute;
  4555. align-self:flex-start;
  4556. padding:0px 0px 0px 0px;
  4557. box-sizing:border-box;
  4558. width:100%;
  4559. }
  4560. #u1385_text {
  4561. border-width:0px;
  4562. white-space:nowrap;
  4563. text-transform:none;
  4564. }
  4565. #u1386_div {
  4566. border-width:0px;
  4567. position:absolute;
  4568. left:0px;
  4569. top:0px;
  4570. width:78px;
  4571. height:15px;
  4572. background:inherit;
  4573. background-color:rgba(255, 255, 255, 0);
  4574. border:none;
  4575. border-radius:0px;
  4576. -moz-box-shadow:none;
  4577. -webkit-box-shadow:none;
  4578. box-shadow:none;
  4579. font-size:13px;
  4580. color:#C0C4CC;
  4581. text-align:center;
  4582. }
  4583. #u1386 {
  4584. border-width:0px;
  4585. position:absolute;
  4586. left:1102px;
  4587. top:165px;
  4588. width:78px;
  4589. height:15px;
  4590. display:flex;
  4591. font-size:13px;
  4592. color:#C0C4CC;
  4593. text-align:center;
  4594. }
  4595. #u1386 .text {
  4596. position:absolute;
  4597. align-self:flex-start;
  4598. padding:0px 0px 0px 0px;
  4599. box-sizing:border-box;
  4600. width:100%;
  4601. }
  4602. #u1386_text {
  4603. border-width:0px;
  4604. white-space:nowrap;
  4605. text-transform:none;
  4606. }
  4607. #u1387_div {
  4608. border-width:0px;
  4609. position:absolute;
  4610. left:0px;
  4611. top:0px;
  4612. width:78px;
  4613. height:15px;
  4614. background:inherit;
  4615. background-color:rgba(255, 255, 255, 0);
  4616. border:none;
  4617. border-radius:0px;
  4618. -moz-box-shadow:none;
  4619. -webkit-box-shadow:none;
  4620. box-shadow:none;
  4621. font-size:13px;
  4622. color:#C0C4CC;
  4623. text-align:center;
  4624. }
  4625. #u1387 {
  4626. border-width:0px;
  4627. position:absolute;
  4628. left:1227px;
  4629. top:165px;
  4630. width:78px;
  4631. height:15px;
  4632. display:flex;
  4633. font-size:13px;
  4634. color:#C0C4CC;
  4635. text-align:center;
  4636. }
  4637. #u1387 .text {
  4638. position:absolute;
  4639. align-self:flex-start;
  4640. padding:0px 0px 0px 0px;
  4641. box-sizing:border-box;
  4642. width:100%;
  4643. }
  4644. #u1387_text {
  4645. border-width:0px;
  4646. white-space:nowrap;
  4647. text-transform:none;
  4648. }
  4649. #u1388_div {
  4650. border-width:0px;
  4651. position:absolute;
  4652. left:0px;
  4653. top:0px;
  4654. width:560px;
  4655. height:64px;
  4656. background:inherit;
  4657. background-color:rgba(255, 255, 255, 0);
  4658. border:none;
  4659. border-radius:0px;
  4660. -moz-box-shadow:none;
  4661. -webkit-box-shadow:none;
  4662. box-shadow:none;
  4663. color:#D9001B;
  4664. }
  4665. #u1388 {
  4666. border-width:0px;
  4667. position:absolute;
  4668. left:1462px;
  4669. top:100px;
  4670. width:560px;
  4671. height:64px;
  4672. display:flex;
  4673. color:#D9001B;
  4674. }
  4675. #u1388 .text {
  4676. position:absolute;
  4677. align-self:flex-start;
  4678. padding:0px 0px 0px 0px;
  4679. box-sizing:border-box;
  4680. width:100%;
  4681. }
  4682. #u1388_text {
  4683. border-width:0px;
  4684. white-space:nowrap;
  4685. text-transform:none;
  4686. }
  4687. #u1389 {
  4688. border-width:0px;
  4689. position:absolute;
  4690. left:913px;
  4691. top:156px;
  4692. width:0px;
  4693. height:0px;
  4694. }
  4695. #u1389_seg0 {
  4696. border-width:0px;
  4697. position:absolute;
  4698. left:-5px;
  4699. top:-29px;
  4700. width:10px;
  4701. height:29px;
  4702. }
  4703. #u1389_seg1 {
  4704. border-width:0px;
  4705. position:absolute;
  4706. left:-5px;
  4707. top:-29px;
  4708. width:554px;
  4709. height:10px;
  4710. }
  4711. #u1389_seg2 {
  4712. border-width:0px;
  4713. position:absolute;
  4714. left:537px;
  4715. top:-34px;
  4716. width:20px;
  4717. height:20px;
  4718. }
  4719. #u1389_text {
  4720. border-width:0px;
  4721. position:absolute;
  4722. left:212px;
  4723. top:-32px;
  4724. width:100px;
  4725. word-wrap:break-word;
  4726. text-transform:none;
  4727. visibility:hidden;
  4728. }
  4729. #u1390 {
  4730. border-width:0px;
  4731. position:absolute;
  4732. left:1198px;
  4733. top:156px;
  4734. width:0px;
  4735. height:0px;
  4736. }
  4737. #u1390_seg0 {
  4738. border-width:0px;
  4739. position:absolute;
  4740. left:-5px;
  4741. top:-29px;
  4742. width:10px;
  4743. height:29px;
  4744. }
  4745. #u1390_seg1 {
  4746. border-width:0px;
  4747. position:absolute;
  4748. left:-5px;
  4749. top:-29px;
  4750. width:269px;
  4751. height:10px;
  4752. }
  4753. #u1390_seg2 {
  4754. border-width:0px;
  4755. position:absolute;
  4756. left:252px;
  4757. top:-34px;
  4758. width:20px;
  4759. height:20px;
  4760. }
  4761. #u1390_text {
  4762. border-width:0px;
  4763. position:absolute;
  4764. left:70px;
  4765. top:-32px;
  4766. width:100px;
  4767. word-wrap:break-word;
  4768. text-transform:none;
  4769. visibility:hidden;
  4770. }