styles.css 80 KB

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