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. #u35970 {
  20. border-width:0px;
  21. position:absolute;
  22. left:0px;
  23. top:0px;
  24. width:1600px;
  25. height:1250px;
  26. }
  27. #u35971_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. #u35971 {
  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. #u35971 .text {
  52. position:absolute;
  53. align-self:center;
  54. padding:2px 2px 2px 2px;
  55. box-sizing:border-box;
  56. width:100%;
  57. }
  58. #u35971_text {
  59. border-width:0px;
  60. word-wrap:break-word;
  61. text-transform:none;
  62. visibility:hidden;
  63. }
  64. #u35972_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. #u35972 {
  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. #u35972 .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. #u35972_text {
  100. border-width:0px;
  101. white-space:nowrap;
  102. text-transform:none;
  103. }
  104. #u35973_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. #u35973 {
  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. #u35973 .text {
  131. position:absolute;
  132. align-self:center;
  133. padding:2px 2px 2px 2px;
  134. box-sizing:border-box;
  135. width:100%;
  136. }
  137. #u35973_text {
  138. border-width:0px;
  139. word-wrap:break-word;
  140. text-transform:none;
  141. visibility:hidden;
  142. }
  143. #u35974 {
  144. border-width:0px;
  145. position:absolute;
  146. left:0px;
  147. top:0px;
  148. width:0px;
  149. height:0px;
  150. }
  151. #u35975 {
  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. #u35975 .text {
  162. position:absolute;
  163. align-self:center;
  164. padding:2px 2px 2px 2px;
  165. box-sizing:border-box;
  166. width:100%;
  167. }
  168. #u35975_img {
  169. border-width:0px;
  170. position:absolute;
  171. left:0px;
  172. top:0px;
  173. width:31px;
  174. height:31px;
  175. }
  176. #u35975_text {
  177. border-width:0px;
  178. word-wrap:break-word;
  179. text-transform:none;
  180. }
  181. #u35976_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. #u35976 {
  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. #u35976 .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. #u35976_text {
  223. border-width:0px;
  224. white-space:nowrap;
  225. text-transform:none;
  226. }
  227. #u35977_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. #u35977 {
  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. #u35977 .text {
  254. position:absolute;
  255. align-self:center;
  256. padding:2px 2px 2px 2px;
  257. box-sizing:border-box;
  258. width:100%;
  259. }
  260. #u35977_text {
  261. border-width:0px;
  262. word-wrap:break-word;
  263. text-transform:none;
  264. visibility:hidden;
  265. }
  266. #u35978 {
  267. border-width:0px;
  268. position:absolute;
  269. left:0px;
  270. top:0px;
  271. width:0px;
  272. height:0px;
  273. }
  274. #u35979_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. #u35979 {
  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. #u35979 .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. #u35979_text {
  316. border-width:0px;
  317. white-space:nowrap;
  318. text-transform:none;
  319. }
  320. #u35980 {
  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. #u35980 .text {
  331. position:absolute;
  332. align-self:center;
  333. padding:2px 2px 2px 2px;
  334. box-sizing:border-box;
  335. width:100%;
  336. }
  337. #u35980_img {
  338. border-width:0px;
  339. position:absolute;
  340. left:0px;
  341. top:0px;
  342. width:14px;
  343. height:14px;
  344. }
  345. #u35980_text {
  346. border-width:0px;
  347. word-wrap:break-word;
  348. text-transform:none;
  349. visibility:hidden;
  350. }
  351. #u35981 {
  352. border-width:0px;
  353. position:absolute;
  354. left:0px;
  355. top:0px;
  356. width:0px;
  357. height:0px;
  358. }
  359. #u35982_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. #u35982 {
  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. #u35982 .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. #u35982_text {
  401. border-width:0px;
  402. white-space:nowrap;
  403. text-transform:none;
  404. }
  405. #u35983 {
  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. #u35983 .text {
  416. position:absolute;
  417. align-self:center;
  418. padding:2px 2px 2px 2px;
  419. box-sizing:border-box;
  420. width:100%;
  421. }
  422. #u35983_img {
  423. border-width:0px;
  424. position:absolute;
  425. left:0px;
  426. top:0px;
  427. width:14px;
  428. height:14px;
  429. }
  430. #u35983_text {
  431. border-width:0px;
  432. word-wrap:break-word;
  433. text-transform:none;
  434. visibility:hidden;
  435. }
  436. #u35984 {
  437. border-width:0px;
  438. position:absolute;
  439. left:0px;
  440. top:0px;
  441. width:0px;
  442. height:0px;
  443. }
  444. #u35985_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. #u35985 {
  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. #u35985 .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. #u35985_text {
  486. border-width:0px;
  487. white-space:nowrap;
  488. text-transform:none;
  489. }
  490. #u35986 {
  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. #u35986 .text {
  501. position:absolute;
  502. align-self:center;
  503. padding:2px 2px 2px 2px;
  504. box-sizing:border-box;
  505. width:100%;
  506. }
  507. #u35986_img {
  508. border-width:0px;
  509. position:absolute;
  510. left:0px;
  511. top:0px;
  512. width:14px;
  513. height:14px;
  514. }
  515. #u35986_text {
  516. border-width:0px;
  517. word-wrap:break-word;
  518. text-transform:none;
  519. visibility:hidden;
  520. }
  521. #u35987 {
  522. border-width:0px;
  523. position:absolute;
  524. left:0px;
  525. top:0px;
  526. width:0px;
  527. height:0px;
  528. }
  529. #u35988_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. #u35988 {
  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. #u35988 .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. #u35988_text {
  571. border-width:0px;
  572. white-space:nowrap;
  573. text-transform:none;
  574. }
  575. #u35989 {
  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. #u35989 .text {
  586. position:absolute;
  587. align-self:center;
  588. padding:2px 2px 2px 2px;
  589. box-sizing:border-box;
  590. width:100%;
  591. }
  592. #u35989_img {
  593. border-width:0px;
  594. position:absolute;
  595. left:0px;
  596. top:0px;
  597. width:14px;
  598. height:14px;
  599. }
  600. #u35989_text {
  601. border-width:0px;
  602. word-wrap:break-word;
  603. text-transform:none;
  604. visibility:hidden;
  605. }
  606. #u35990 {
  607. border-width:0px;
  608. position:absolute;
  609. left:0px;
  610. top:0px;
  611. width:0px;
  612. height:0px;
  613. }
  614. #u35991_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. #u35991 {
  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. #u35991 .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. #u35991_text {
  656. border-width:0px;
  657. white-space:nowrap;
  658. text-transform:none;
  659. }
  660. #u35992 {
  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. #u35992 .text {
  671. position:absolute;
  672. align-self:center;
  673. padding:2px 2px 2px 2px;
  674. box-sizing:border-box;
  675. width:100%;
  676. }
  677. #u35992_img {
  678. border-width:0px;
  679. position:absolute;
  680. left:0px;
  681. top:0px;
  682. width:14px;
  683. height:14px;
  684. }
  685. #u35992_text {
  686. border-width:0px;
  687. word-wrap:break-word;
  688. text-transform:none;
  689. visibility:hidden;
  690. }
  691. #u35993 {
  692. border-width:0px;
  693. position:absolute;
  694. left:0px;
  695. top:0px;
  696. width:0px;
  697. height:0px;
  698. }
  699. #u35994_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. #u35994 {
  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. #u35994 .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. #u35994_text {
  741. border-width:0px;
  742. white-space:nowrap;
  743. text-transform:none;
  744. }
  745. #u35995 {
  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. #u35995 .text {
  756. position:absolute;
  757. align-self:center;
  758. padding:2px 2px 2px 2px;
  759. box-sizing:border-box;
  760. width:100%;
  761. }
  762. #u35995_img {
  763. border-width:0px;
  764. position:absolute;
  765. left:0px;
  766. top:0px;
  767. width:14px;
  768. height:14px;
  769. }
  770. #u35995_text {
  771. border-width:0px;
  772. word-wrap:break-word;
  773. text-transform:none;
  774. visibility:hidden;
  775. }
  776. #u35996 {
  777. border-width:0px;
  778. position:absolute;
  779. left:0px;
  780. top:0px;
  781. width:0px;
  782. height:0px;
  783. }
  784. #u35997_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. #u35997 {
  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. #u35997 .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. #u35997_text {
  826. border-width:0px;
  827. white-space:nowrap;
  828. text-transform:none;
  829. }
  830. #u35998 {
  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. #u35998 .text {
  841. position:absolute;
  842. align-self:center;
  843. padding:2px 2px 2px 2px;
  844. box-sizing:border-box;
  845. width:100%;
  846. }
  847. #u35998_img {
  848. border-width:0px;
  849. position:absolute;
  850. left:0px;
  851. top:0px;
  852. width:14px;
  853. height:14px;
  854. }
  855. #u35998_text {
  856. border-width:0px;
  857. word-wrap:break-word;
  858. text-transform:none;
  859. visibility:hidden;
  860. }
  861. #u35999 {
  862. border-width:0px;
  863. position:absolute;
  864. left:0px;
  865. top:0px;
  866. width:0px;
  867. height:0px;
  868. }
  869. #u36000_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. #u36000 {
  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. #u36000 .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. #u36000_text {
  911. border-width:0px;
  912. white-space:nowrap;
  913. text-transform:none;
  914. }
  915. #u36001 {
  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. #u36001 .text {
  926. position:absolute;
  927. align-self:center;
  928. padding:2px 2px 2px 2px;
  929. box-sizing:border-box;
  930. width:100%;
  931. }
  932. #u36001_img {
  933. border-width:0px;
  934. position:absolute;
  935. left:0px;
  936. top:0px;
  937. width:14px;
  938. height:14px;
  939. }
  940. #u36001_text {
  941. border-width:0px;
  942. word-wrap:break-word;
  943. text-transform:none;
  944. visibility:hidden;
  945. }
  946. #u36002 {
  947. border-width:0px;
  948. position:absolute;
  949. left:0px;
  950. top:0px;
  951. width:0px;
  952. height:0px;
  953. }
  954. #u36003_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. #u36003 {
  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. #u36003 .text {
  987. position:absolute;
  988. align-self:center;
  989. padding:0px 0px 0px 0px;
  990. box-sizing:border-box;
  991. width:100%;
  992. }
  993. #u36003_text {
  994. border-width:0px;
  995. white-space:nowrap;
  996. text-transform:none;
  997. }
  998. #u36004 {
  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. #u36004 .text {
  1009. position:absolute;
  1010. align-self:center;
  1011. padding:2px 2px 2px 2px;
  1012. box-sizing:border-box;
  1013. width:100%;
  1014. }
  1015. #u36004_img {
  1016. border-width:0px;
  1017. position:absolute;
  1018. left:0px;
  1019. top:0px;
  1020. width:22px;
  1021. height:22px;
  1022. }
  1023. #u36004_text {
  1024. border-width:0px;
  1025. word-wrap:break-word;
  1026. text-transform:none;
  1027. visibility:hidden;
  1028. }
  1029. #u36005 {
  1030. border-width:0px;
  1031. position:absolute;
  1032. left:0px;
  1033. top:0px;
  1034. width:0px;
  1035. height:0px;
  1036. }
  1037. #u36006_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. #u36006 {
  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. #u36006 .text {
  1070. position:absolute;
  1071. align-self:center;
  1072. padding:0px 0px 0px 0px;
  1073. box-sizing:border-box;
  1074. width:100%;
  1075. }
  1076. #u36006_text {
  1077. border-width:0px;
  1078. white-space:nowrap;
  1079. text-transform:none;
  1080. }
  1081. #u36007 {
  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. #u36007 .text {
  1092. position:absolute;
  1093. align-self:center;
  1094. padding:2px 2px 2px 2px;
  1095. box-sizing:border-box;
  1096. width:100%;
  1097. }
  1098. #u36007_img {
  1099. border-width:0px;
  1100. position:absolute;
  1101. left:0px;
  1102. top:0px;
  1103. width:22px;
  1104. height:22px;
  1105. }
  1106. #u36007_text {
  1107. border-width:0px;
  1108. word-wrap:break-word;
  1109. text-transform:none;
  1110. visibility:hidden;
  1111. }
  1112. #u36008 {
  1113. border-width:0px;
  1114. position:absolute;
  1115. left:0px;
  1116. top:0px;
  1117. width:0px;
  1118. height:0px;
  1119. }
  1120. #u36009_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. #u36009 {
  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. #u36009 .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. #u36009_text {
  1162. border-width:0px;
  1163. white-space:nowrap;
  1164. text-transform:none;
  1165. }
  1166. #u36010 {
  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. #u36010 .text {
  1177. position:absolute;
  1178. align-self:center;
  1179. padding:2px 2px 2px 2px;
  1180. box-sizing:border-box;
  1181. width:100%;
  1182. }
  1183. #u36010_img {
  1184. border-width:0px;
  1185. position:absolute;
  1186. left:0px;
  1187. top:0px;
  1188. width:14px;
  1189. height:14px;
  1190. }
  1191. #u36010_text {
  1192. border-width:0px;
  1193. word-wrap:break-word;
  1194. text-transform:none;
  1195. visibility:hidden;
  1196. }
  1197. #u36011 {
  1198. border-width:0px;
  1199. position:absolute;
  1200. left:0px;
  1201. top:0px;
  1202. width:0px;
  1203. height:0px;
  1204. }
  1205. #u36012_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. #u36012_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. #u36012_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. #u36012 {
  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. #u36012 .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. #u36012_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. #u36012.disabled {
  1294. }
  1295. .u36012_input_option {
  1296. font-size:14px;
  1297. }
  1298. #u36013 {
  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. #u36013 .text {
  1309. position:absolute;
  1310. align-self:center;
  1311. padding:2px 2px 2px 2px;
  1312. box-sizing:border-box;
  1313. width:100%;
  1314. }
  1315. #u36013_img {
  1316. border-width:0px;
  1317. position:absolute;
  1318. left:0px;
  1319. top:0px;
  1320. width:22px;
  1321. height:22px;
  1322. }
  1323. #u36013_text {
  1324. border-width:0px;
  1325. word-wrap:break-word;
  1326. text-transform:none;
  1327. visibility:hidden;
  1328. }
  1329. #u36014_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. #u36014 {
  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. #u36014 .text {
  1364. position:absolute;
  1365. align-self:center;
  1366. padding:0px 0px 0px 0px;
  1367. box-sizing:border-box;
  1368. width:100%;
  1369. }
  1370. #u36014_text {
  1371. border-width:0px;
  1372. word-wrap:break-word;
  1373. text-transform:none;
  1374. }
  1375. #u36015 {
  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. #u36015 .text {
  1386. position:absolute;
  1387. align-self:center;
  1388. padding:2px 2px 2px 2px;
  1389. box-sizing:border-box;
  1390. width:100%;
  1391. }
  1392. #u36015_img {
  1393. border-width:0px;
  1394. position:absolute;
  1395. left:0px;
  1396. top:0px;
  1397. width:2px;
  1398. height:12px;
  1399. }
  1400. #u36015_text {
  1401. border-width:0px;
  1402. word-wrap:break-word;
  1403. text-transform:none;
  1404. visibility:hidden;
  1405. }
  1406. #u36016 {
  1407. border-width:0px;
  1408. position:absolute;
  1409. left:0px;
  1410. top:0px;
  1411. width:0px;
  1412. height:0px;
  1413. }
  1414. #u36017_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. #u36017 {
  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. #u36017 .text {
  1447. position:absolute;
  1448. align-self:center;
  1449. padding:0px 0px 0px 0px;
  1450. box-sizing:border-box;
  1451. width:100%;
  1452. }
  1453. #u36017_text {
  1454. border-width:0px;
  1455. white-space:nowrap;
  1456. text-transform:none;
  1457. }
  1458. #u36018 {
  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. #u36018 .text {
  1469. position:absolute;
  1470. align-self:center;
  1471. padding:2px 2px 2px 2px;
  1472. box-sizing:border-box;
  1473. width:100%;
  1474. }
  1475. #u36018_img {
  1476. border-width:0px;
  1477. position:absolute;
  1478. left:0px;
  1479. top:0px;
  1480. width:22px;
  1481. height:22px;
  1482. }
  1483. #u36018_text {
  1484. border-width:0px;
  1485. word-wrap:break-word;
  1486. text-transform:none;
  1487. visibility:hidden;
  1488. }
  1489. #u36019 {
  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. #u36019 .text {
  1500. position:absolute;
  1501. align-self:center;
  1502. padding:2px 2px 2px 2px;
  1503. box-sizing:border-box;
  1504. width:100%;
  1505. }
  1506. #u36019_img {
  1507. border-width:0px;
  1508. position:absolute;
  1509. left:0px;
  1510. top:0px;
  1511. width:69px;
  1512. height:2px;
  1513. }
  1514. #u36019_text {
  1515. border-width:0px;
  1516. word-wrap:break-word;
  1517. text-transform:none;
  1518. visibility:hidden;
  1519. }
  1520. #u36020 {
  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. #u36020 .text {
  1531. position:absolute;
  1532. align-self:center;
  1533. padding:2px 2px 2px 2px;
  1534. box-sizing:border-box;
  1535. width:100%;
  1536. }
  1537. #u36020_img {
  1538. border-width:0px;
  1539. position:absolute;
  1540. left:0px;
  1541. top:0px;
  1542. width:69px;
  1543. height:2px;
  1544. }
  1545. #u36020_text {
  1546. border-width:0px;
  1547. word-wrap:break-word;
  1548. text-transform:none;
  1549. visibility:hidden;
  1550. }
  1551. #u36021 {
  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. #u36021 .text {
  1562. position:absolute;
  1563. align-self:center;
  1564. padding:2px 2px 2px 2px;
  1565. box-sizing:border-box;
  1566. width:100%;
  1567. }
  1568. #u36021_img {
  1569. border-width:0px;
  1570. position:absolute;
  1571. left:0px;
  1572. top:0px;
  1573. width:57px;
  1574. height:2px;
  1575. }
  1576. #u36021_text {
  1577. border-width:0px;
  1578. word-wrap:break-word;
  1579. text-transform:none;
  1580. visibility:hidden;
  1581. }
  1582. #u36022 {
  1583. border-width:0px;
  1584. position:absolute;
  1585. left:0px;
  1586. top:0px;
  1587. width:0px;
  1588. height:0px;
  1589. }
  1590. #u36023_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. #u36023 {
  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. #u36023 .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. #u36023_text {
  1632. border-width:0px;
  1633. white-space:nowrap;
  1634. text-transform:none;
  1635. }
  1636. #u36024 {
  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. #u36024 .text {
  1647. position:absolute;
  1648. align-self:center;
  1649. padding:2px 2px 2px 2px;
  1650. box-sizing:border-box;
  1651. width:100%;
  1652. }
  1653. #u36024_img {
  1654. border-width:0px;
  1655. position:absolute;
  1656. left:0px;
  1657. top:0px;
  1658. width:18px;
  1659. height:14px;
  1660. }
  1661. #u36024_text {
  1662. border-width:0px;
  1663. word-wrap:break-word;
  1664. text-transform:none;
  1665. visibility:hidden;
  1666. }
  1667. #u36025_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. #u36025 {
  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. #u36025 .text {
  1692. position:absolute;
  1693. align-self:center;
  1694. padding:2px 2px 2px 2px;
  1695. box-sizing:border-box;
  1696. width:100%;
  1697. }
  1698. #u36025_text {
  1699. border-width:0px;
  1700. word-wrap:break-word;
  1701. text-transform:none;
  1702. visibility:hidden;
  1703. }
  1704. #u36026 {
  1705. border-width:0px;
  1706. position:absolute;
  1707. left:118px;
  1708. top:50px;
  1709. width:200px;
  1710. height:1190px;
  1711. }
  1712. #u36027 {
  1713. border-width:0px;
  1714. position:absolute;
  1715. left:0px;
  1716. top:0px;
  1717. width:0px;
  1718. height:0px;
  1719. }
  1720. #u36028_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. #u36028 {
  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. #u36028 .text {
  1745. position:absolute;
  1746. align-self:center;
  1747. padding:2px 2px 2px 2px;
  1748. box-sizing:border-box;
  1749. width:100%;
  1750. }
  1751. #u36028_text {
  1752. border-width:0px;
  1753. word-wrap:break-word;
  1754. text-transform:none;
  1755. visibility:hidden;
  1756. }
  1757. #u36029_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. #u36029 {
  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. #u36029 .text {
  1790. position:absolute;
  1791. align-self:center;
  1792. padding:0px 0px 0px 20px;
  1793. box-sizing:border-box;
  1794. width:100%;
  1795. }
  1796. #u36029_text {
  1797. border-width:0px;
  1798. word-wrap:break-word;
  1799. text-transform:none;
  1800. }
  1801. #u36030_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. #u36030 {
  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. #u36030 .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. #u36030_text {
  1841. border-width:0px;
  1842. white-space:nowrap;
  1843. text-transform:none;
  1844. }
  1845. #u36031_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. #u36031 {
  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. #u36031 .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. #u36031_text {
  1885. border-width:0px;
  1886. white-space:nowrap;
  1887. text-transform:none;
  1888. }
  1889. #u36032_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. #u36032 {
  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. #u36032 .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. #u36032_text {
  1929. border-width:0px;
  1930. white-space:nowrap;
  1931. text-transform:none;
  1932. }
  1933. #u36033_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. #u36033 {
  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. #u36033 .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. #u36033_text {
  1973. border-width:0px;
  1974. white-space:nowrap;
  1975. text-transform:none;
  1976. }
  1977. #u36034 {
  1978. border-width:0px;
  1979. position:absolute;
  1980. left:961px;
  1981. top:1183px;
  1982. width:600px;
  1983. height:30px;
  1984. }
  1985. #u36035 {
  1986. border-width:0px;
  1987. position:absolute;
  1988. left:0px;
  1989. top:0px;
  1990. width:0px;
  1991. height:0px;
  1992. }
  1993. #u36036_div {
  1994. border-width:0px;
  1995. position:absolute;
  1996. left:0px;
  1997. top:0px;
  1998. width:30px;
  1999. height:30px;
  2000. background:inherit;
  2001. background-color:rgba(255, 255, 255, 1);
  2002. box-sizing:border-box;
  2003. border-width:1px;
  2004. border-style:solid;
  2005. border-color:rgba(228, 228, 228, 1);
  2006. border-radius:4px;
  2007. filter:drop-shadow(none);
  2008. transition:none;
  2009. font-family:"Microsoft YaHei", sans-serif;
  2010. font-weight:400;
  2011. font-style:normal;
  2012. font-size:14px;
  2013. }
  2014. #u36036 {
  2015. border-width:0px;
  2016. position:absolute;
  2017. left:35px;
  2018. top:0px;
  2019. width:30px;
  2020. height:30px;
  2021. display:flex;
  2022. transition:none;
  2023. transform-origin:50% 50%;
  2024. font-family:"Microsoft YaHei", sans-serif;
  2025. font-weight:400;
  2026. font-style:normal;
  2027. font-size:14px;
  2028. }
  2029. #u36036 .text {
  2030. position:absolute;
  2031. align-self:center;
  2032. padding:2px 2px 2px 2px;
  2033. box-sizing:border-box;
  2034. width:100%;
  2035. }
  2036. #u36036_text {
  2037. border-width:0px;
  2038. word-wrap:break-word;
  2039. text-transform:none;
  2040. }
  2041. #u36037_div {
  2042. border-width:0px;
  2043. position:absolute;
  2044. left:0px;
  2045. top:0px;
  2046. width:49px;
  2047. height:30px;
  2048. background:inherit;
  2049. background-color:rgba(255, 255, 255, 0);
  2050. box-sizing:border-box;
  2051. border-width:1px;
  2052. border-style:solid;
  2053. border-color:rgba(188, 188, 188, 1);
  2054. border-radius:4px;
  2055. filter:drop-shadow(none);
  2056. transition:none;
  2057. font-family:"Microsoft YaHei", sans-serif;
  2058. font-weight:400;
  2059. font-style:normal;
  2060. font-size:14px;
  2061. color:#1E1E1E;
  2062. }
  2063. #u36037 {
  2064. border-width:0px;
  2065. position:absolute;
  2066. left:551px;
  2067. top:0px;
  2068. width:49px;
  2069. height:30px;
  2070. display:flex;
  2071. transition:none;
  2072. transform-origin:50% 50%;
  2073. font-family:"Microsoft YaHei", sans-serif;
  2074. font-weight:400;
  2075. font-style:normal;
  2076. font-size:14px;
  2077. color:#1E1E1E;
  2078. }
  2079. #u36037 .text {
  2080. position:absolute;
  2081. align-self:center;
  2082. padding:5px 10px 5px 10px;
  2083. box-sizing:border-box;
  2084. width:100%;
  2085. }
  2086. #u36037_text {
  2087. border-width:0px;
  2088. white-space:nowrap;
  2089. text-transform:none;
  2090. }
  2091. #u36038 {
  2092. border-width:0px;
  2093. position:absolute;
  2094. left:0px;
  2095. top:0px;
  2096. width:0px;
  2097. height:0px;
  2098. }
  2099. #u36039_div {
  2100. border-width:0px;
  2101. position:absolute;
  2102. left:0px;
  2103. top:0px;
  2104. width:33px;
  2105. height:24px;
  2106. background:inherit;
  2107. background-color:rgba(255, 255, 255, 1);
  2108. border-radius:0px;
  2109. filter:drop-shadow(none);
  2110. transition:none;
  2111. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2112. font-weight:400;
  2113. font-style:normal;
  2114. font-size:14px;
  2115. color:#BCBCBC;
  2116. text-align:left;
  2117. }
  2118. #u36039 {
  2119. border-width:0px;
  2120. position:absolute;
  2121. left:319px;
  2122. top:3px;
  2123. width:33px;
  2124. height:24px;
  2125. display:flex;
  2126. transition:none;
  2127. transform-origin:50% 50%;
  2128. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2129. font-weight:400;
  2130. font-style:normal;
  2131. font-size:14px;
  2132. color:#BCBCBC;
  2133. text-align:left;
  2134. }
  2135. #u36039 .text {
  2136. position:absolute;
  2137. align-self:center;
  2138. padding:2px 2px 2px 2px;
  2139. box-sizing:border-box;
  2140. width:100%;
  2141. }
  2142. #u36039_text {
  2143. border-width:0px;
  2144. white-space:nowrap;
  2145. text-transform:none;
  2146. }
  2147. #u36040_div {
  2148. border-width:0px;
  2149. position:absolute;
  2150. left:0px;
  2151. top:0px;
  2152. width:40px;
  2153. height:30px;
  2154. background:inherit;
  2155. background-color:rgba(255, 255, 255, 1);
  2156. box-sizing:border-box;
  2157. border-width:1px;
  2158. border-style:solid;
  2159. border-color:rgba(228, 228, 228, 1);
  2160. border-radius:4px;
  2161. filter:drop-shadow(none);
  2162. transition:none;
  2163. font-family:"Microsoft YaHei", sans-serif;
  2164. font-weight:400;
  2165. font-style:normal;
  2166. font-size:14px;
  2167. }
  2168. #u36040 {
  2169. border-width:0px;
  2170. position:absolute;
  2171. left:354px;
  2172. top:0px;
  2173. width:40px;
  2174. height:30px;
  2175. display:flex;
  2176. transition:none;
  2177. transform-origin:50% 50%;
  2178. font-family:"Microsoft YaHei", sans-serif;
  2179. font-weight:400;
  2180. font-style:normal;
  2181. font-size:14px;
  2182. }
  2183. #u36040 .text {
  2184. position:absolute;
  2185. align-self:center;
  2186. padding:2px 2px 2px 2px;
  2187. box-sizing:border-box;
  2188. width:100%;
  2189. }
  2190. #u36040_text {
  2191. border-width:0px;
  2192. word-wrap:break-word;
  2193. text-transform:none;
  2194. visibility:hidden;
  2195. }
  2196. #u36041_div {
  2197. border-width:0px;
  2198. position:absolute;
  2199. left:0px;
  2200. top:0px;
  2201. width:19px;
  2202. height:24px;
  2203. background:inherit;
  2204. background-color:rgba(255, 255, 255, 1);
  2205. border-radius:0px;
  2206. filter:drop-shadow(none);
  2207. transition:none;
  2208. font-family:"Microsoft YaHei", sans-serif;
  2209. font-weight:400;
  2210. font-style:normal;
  2211. font-size:14px;
  2212. color:#BCBCBC;
  2213. text-align:left;
  2214. }
  2215. #u36041 {
  2216. border-width:0px;
  2217. position:absolute;
  2218. left:396px;
  2219. top:4px;
  2220. width:19px;
  2221. height:24px;
  2222. display:flex;
  2223. transition:none;
  2224. transform-origin:50% 50%;
  2225. font-family:"Microsoft YaHei", sans-serif;
  2226. font-weight:400;
  2227. font-style:normal;
  2228. font-size:14px;
  2229. color:#BCBCBC;
  2230. text-align:left;
  2231. }
  2232. #u36041 .text {
  2233. position:absolute;
  2234. align-self:center;
  2235. padding:2px 2px 2px 2px;
  2236. box-sizing:border-box;
  2237. width:100%;
  2238. }
  2239. #u36041_text {
  2240. border-width:0px;
  2241. white-space:nowrap;
  2242. text-transform:none;
  2243. }
  2244. #u36042_input {
  2245. position:absolute;
  2246. left:0px;
  2247. top:0px;
  2248. width:34px;
  2249. height:25px;
  2250. padding:2px 2px 2px 2px;
  2251. font-family:"Microsoft YaHei", sans-serif;
  2252. font-weight:400;
  2253. font-style:normal;
  2254. font-size:13px;
  2255. letter-spacing:normal;
  2256. color:#000000;
  2257. vertical-align:none;
  2258. text-align:left;
  2259. text-transform:none;
  2260. background-color:transparent;
  2261. border-color:transparent;
  2262. }
  2263. #u36042_input.hint {
  2264. position:absolute;
  2265. left:0px;
  2266. top:0px;
  2267. width:34px;
  2268. height:25px;
  2269. padding:2px 2px 2px 2px;
  2270. font-family:"Microsoft YaHei", sans-serif;
  2271. font-weight:400;
  2272. font-style:normal;
  2273. font-size:13px;
  2274. letter-spacing:normal;
  2275. color:#999999;
  2276. vertical-align:none;
  2277. text-align:left;
  2278. text-transform:none;
  2279. background-color:transparent;
  2280. border-color:transparent;
  2281. }
  2282. #u36042_input.disabled {
  2283. position:absolute;
  2284. left:0px;
  2285. top:0px;
  2286. width:34px;
  2287. height:25px;
  2288. padding:2px 2px 2px 2px;
  2289. font-family:"Microsoft YaHei", sans-serif;
  2290. font-weight:400;
  2291. font-style:normal;
  2292. font-size:13px;
  2293. letter-spacing:normal;
  2294. color:#000000;
  2295. vertical-align:none;
  2296. text-align:left;
  2297. text-transform:none;
  2298. background-color:transparent;
  2299. border-color:transparent;
  2300. }
  2301. #u36042_input.hint.disabled {
  2302. position:absolute;
  2303. left:0px;
  2304. top:0px;
  2305. width:34px;
  2306. height:25px;
  2307. padding:2px 2px 2px 2px;
  2308. font-family:"Microsoft YaHei", sans-serif;
  2309. font-weight:400;
  2310. font-style:normal;
  2311. font-size:13px;
  2312. letter-spacing:normal;
  2313. color:#999999;
  2314. vertical-align:none;
  2315. text-align:left;
  2316. text-transform:none;
  2317. background-color:transparent;
  2318. border-color:transparent;
  2319. }
  2320. #u36042_div {
  2321. border-width:0px;
  2322. position:absolute;
  2323. left:0px;
  2324. top:0px;
  2325. width:34px;
  2326. height:25px;
  2327. background:inherit;
  2328. background-color:rgba(255, 255, 255, 1);
  2329. border-radius:0px;
  2330. filter:drop-shadow(none);
  2331. transition:none;
  2332. font-family:"Microsoft YaHei", sans-serif;
  2333. font-weight:400;
  2334. font-style:normal;
  2335. }
  2336. #u36042 {
  2337. border-width:0px;
  2338. position:absolute;
  2339. left:357px;
  2340. top:2px;
  2341. width:34px;
  2342. height:25px;
  2343. display:flex;
  2344. transition:none;
  2345. transform-origin:50% 50%;
  2346. font-family:"Microsoft YaHei", sans-serif;
  2347. font-weight:400;
  2348. font-style:normal;
  2349. }
  2350. #u36042 .text {
  2351. position:absolute;
  2352. align-self:center;
  2353. padding:2px 2px 2px 2px;
  2354. box-sizing:border-box;
  2355. width:100%;
  2356. }
  2357. #u36042_div.hint {
  2358. border-width:0px;
  2359. position:absolute;
  2360. left:0px;
  2361. top:0px;
  2362. width:34px;
  2363. height:25px;
  2364. background:inherit;
  2365. background-color:rgba(255, 255, 255, 1);
  2366. border-radius:0px;
  2367. filter:drop-shadow(none);
  2368. transition:none;
  2369. font-family:"Microsoft YaHei", sans-serif;
  2370. font-weight:400;
  2371. font-style:normal;
  2372. }
  2373. #u36042.hint {
  2374. }
  2375. #u36042_div.disabled {
  2376. border-width:0px;
  2377. position:absolute;
  2378. left:0px;
  2379. top:0px;
  2380. width:34px;
  2381. height:25px;
  2382. background:inherit;
  2383. background-color:rgba(240, 240, 240, 1);
  2384. border-radius:0px;
  2385. filter:drop-shadow(none);
  2386. transition:none;
  2387. font-family:"Microsoft YaHei", sans-serif;
  2388. font-weight:400;
  2389. font-style:normal;
  2390. }
  2391. #u36042.disabled {
  2392. }
  2393. #u36042_div.hint.disabled {
  2394. border-width:0px;
  2395. position:absolute;
  2396. left:0px;
  2397. top:0px;
  2398. width:34px;
  2399. height:25px;
  2400. background:inherit;
  2401. background-color:rgba(240, 240, 240, 1);
  2402. border-radius:0px;
  2403. filter:drop-shadow(none);
  2404. transition:none;
  2405. font-family:"Microsoft YaHei", sans-serif;
  2406. font-weight:400;
  2407. font-style:normal;
  2408. }
  2409. #u36042.hint.disabled {
  2410. }
  2411. #u36043_div {
  2412. border-width:0px;
  2413. position:absolute;
  2414. left:0px;
  2415. top:0px;
  2416. width:30px;
  2417. height:30px;
  2418. background:inherit;
  2419. background-color:rgba(41, 143, 255, 1);
  2420. border-radius:4px;
  2421. filter:drop-shadow(none);
  2422. transition:none;
  2423. font-family:"Microsoft YaHei", sans-serif;
  2424. font-weight:400;
  2425. font-style:normal;
  2426. font-size:14px;
  2427. color:#FFFFFF;
  2428. }
  2429. #u36043 {
  2430. border-width:0px;
  2431. position:absolute;
  2432. left:69px;
  2433. top:0px;
  2434. width:30px;
  2435. height:30px;
  2436. display:flex;
  2437. transition:none;
  2438. transform-origin:50% 50%;
  2439. font-family:"Microsoft YaHei", sans-serif;
  2440. font-weight:400;
  2441. font-style:normal;
  2442. font-size:14px;
  2443. color:#FFFFFF;
  2444. }
  2445. #u36043 .text {
  2446. position:absolute;
  2447. align-self:center;
  2448. padding:2px 2px 2px 2px;
  2449. box-sizing:border-box;
  2450. width:100%;
  2451. }
  2452. #u36043_text {
  2453. border-width:0px;
  2454. word-wrap:break-word;
  2455. text-transform:none;
  2456. }
  2457. #u36044_div {
  2458. border-width:0px;
  2459. position:absolute;
  2460. left:0px;
  2461. top:0px;
  2462. width:30px;
  2463. height:30px;
  2464. background:inherit;
  2465. background-color:rgba(255, 255, 255, 1);
  2466. box-sizing:border-box;
  2467. border-width:1px;
  2468. border-style:solid;
  2469. border-color:rgba(228, 228, 228, 1);
  2470. border-radius:4px;
  2471. filter:drop-shadow(none);
  2472. transition:none;
  2473. font-family:"Microsoft YaHei", sans-serif;
  2474. font-weight:400;
  2475. font-style:normal;
  2476. font-size:14px;
  2477. }
  2478. #u36044 {
  2479. border-width:0px;
  2480. position:absolute;
  2481. left:103px;
  2482. top:0px;
  2483. width:30px;
  2484. height:30px;
  2485. display:flex;
  2486. transition:none;
  2487. transform-origin:50% 50%;
  2488. font-family:"Microsoft YaHei", sans-serif;
  2489. font-weight:400;
  2490. font-style:normal;
  2491. font-size:14px;
  2492. }
  2493. #u36044 .text {
  2494. position:absolute;
  2495. align-self:center;
  2496. padding:2px 2px 2px 2px;
  2497. box-sizing:border-box;
  2498. width:100%;
  2499. }
  2500. #u36044_text {
  2501. border-width:0px;
  2502. word-wrap:break-word;
  2503. text-transform:none;
  2504. }
  2505. #u36045_div {
  2506. border-width:0px;
  2507. position:absolute;
  2508. left:0px;
  2509. top:0px;
  2510. width:30px;
  2511. height:30px;
  2512. background:inherit;
  2513. background-color:rgba(255, 255, 255, 1);
  2514. box-sizing:border-box;
  2515. border-width:1px;
  2516. border-style:solid;
  2517. border-color:rgba(228, 228, 228, 1);
  2518. border-radius:4px;
  2519. filter:drop-shadow(none);
  2520. transition:none;
  2521. font-family:"Microsoft YaHei", sans-serif;
  2522. font-weight:400;
  2523. font-style:normal;
  2524. font-size:14px;
  2525. }
  2526. #u36045 {
  2527. border-width:0px;
  2528. position:absolute;
  2529. left:137px;
  2530. top:0px;
  2531. width:30px;
  2532. height:30px;
  2533. display:flex;
  2534. transition:none;
  2535. transform-origin:50% 50%;
  2536. font-family:"Microsoft YaHei", sans-serif;
  2537. font-weight:400;
  2538. font-style:normal;
  2539. font-size:14px;
  2540. }
  2541. #u36045 .text {
  2542. position:absolute;
  2543. align-self:center;
  2544. padding:2px 2px 2px 2px;
  2545. box-sizing:border-box;
  2546. width:100%;
  2547. }
  2548. #u36045_text {
  2549. border-width:0px;
  2550. word-wrap:break-word;
  2551. text-transform:none;
  2552. }
  2553. #u36046_div {
  2554. border-width:0px;
  2555. position:absolute;
  2556. left:0px;
  2557. top:0px;
  2558. width:30px;
  2559. height:30px;
  2560. background:inherit;
  2561. background-color:rgba(255, 255, 255, 1);
  2562. border-radius:4px;
  2563. filter:drop-shadow(none);
  2564. transition:none;
  2565. font-family:"Microsoft YaHei", sans-serif;
  2566. font-weight:400;
  2567. font-style:normal;
  2568. font-size:14px;
  2569. }
  2570. #u36046 {
  2571. border-width:0px;
  2572. position:absolute;
  2573. left:167px;
  2574. top:0px;
  2575. width:30px;
  2576. height:30px;
  2577. display:flex;
  2578. transition:none;
  2579. transform-origin:50% 50%;
  2580. font-family:"Microsoft YaHei", sans-serif;
  2581. font-weight:400;
  2582. font-style:normal;
  2583. font-size:14px;
  2584. }
  2585. #u36046 .text {
  2586. position:absolute;
  2587. align-self:center;
  2588. padding:2px 2px 2px 2px;
  2589. box-sizing:border-box;
  2590. width:100%;
  2591. }
  2592. #u36046_text {
  2593. border-width:0px;
  2594. word-wrap:break-word;
  2595. text-transform:none;
  2596. }
  2597. #u36047_div {
  2598. border-width:0px;
  2599. position:absolute;
  2600. left:0px;
  2601. top:0px;
  2602. width:30px;
  2603. height:30px;
  2604. background:inherit;
  2605. background-color:rgba(255, 255, 255, 1);
  2606. box-sizing:border-box;
  2607. border-width:1px;
  2608. border-style:solid;
  2609. border-color:rgba(228, 228, 228, 1);
  2610. border-radius:4px;
  2611. filter:drop-shadow(none);
  2612. transition:none;
  2613. font-family:"Microsoft YaHei", sans-serif;
  2614. font-weight:400;
  2615. font-style:normal;
  2616. font-size:14px;
  2617. }
  2618. #u36047 {
  2619. border-width:0px;
  2620. position:absolute;
  2621. left:201px;
  2622. top:0px;
  2623. width:30px;
  2624. height:30px;
  2625. display:flex;
  2626. transition:none;
  2627. transform-origin:50% 50%;
  2628. font-family:"Microsoft YaHei", sans-serif;
  2629. font-weight:400;
  2630. font-style:normal;
  2631. font-size:14px;
  2632. }
  2633. #u36047 .text {
  2634. position:absolute;
  2635. align-self:center;
  2636. padding:2px 2px 2px 2px;
  2637. box-sizing:border-box;
  2638. width:100%;
  2639. }
  2640. #u36047_text {
  2641. border-width:0px;
  2642. word-wrap:break-word;
  2643. text-transform:none;
  2644. }
  2645. #u36048_div {
  2646. border-width:0px;
  2647. position:absolute;
  2648. left:0px;
  2649. top:0px;
  2650. width:32px;
  2651. height:21px;
  2652. background:inherit;
  2653. background-color:rgba(255, 255, 255, 1);
  2654. border-radius:15px;
  2655. filter:drop-shadow(none);
  2656. transition:none;
  2657. font-family:"Microsoft YaHei", sans-serif;
  2658. font-weight:400;
  2659. font-style:normal;
  2660. font-size:14px;
  2661. color:#1E1E1E;
  2662. }
  2663. #u36048 {
  2664. border-width:0px;
  2665. position:absolute;
  2666. left:275px;
  2667. top:5px;
  2668. width:32px;
  2669. height:21px;
  2670. display:flex;
  2671. transition:none;
  2672. transform-origin:50% 50%;
  2673. font-family:"Microsoft YaHei", sans-serif;
  2674. font-weight:400;
  2675. font-style:normal;
  2676. font-size:14px;
  2677. color:#1E1E1E;
  2678. }
  2679. #u36048 .text {
  2680. position:absolute;
  2681. align-self:center;
  2682. padding:2px 2px 2px 2px;
  2683. box-sizing:border-box;
  2684. width:100%;
  2685. }
  2686. #u36048_text {
  2687. border-width:0px;
  2688. white-space:nowrap;
  2689. text-transform:none;
  2690. }
  2691. #u36049 {
  2692. border-width:0px;
  2693. position:absolute;
  2694. left:0px;
  2695. top:0px;
  2696. width:0px;
  2697. height:0px;
  2698. }
  2699. #u36050_div {
  2700. border-width:0px;
  2701. position:absolute;
  2702. left:0px;
  2703. top:0px;
  2704. width:31px;
  2705. height:30px;
  2706. background:inherit;
  2707. background-color:rgba(255, 255, 255, 1);
  2708. box-sizing:border-box;
  2709. border-width:1px;
  2710. border-style:solid;
  2711. border-color:rgba(228, 228, 228, 1);
  2712. border-radius:4px;
  2713. filter:drop-shadow(none);
  2714. transition:none;
  2715. font-family:"Microsoft YaHei", sans-serif;
  2716. font-weight:400;
  2717. font-style:normal;
  2718. font-size:12px;
  2719. }
  2720. #u36050 {
  2721. border-width:0px;
  2722. position:absolute;
  2723. left:0px;
  2724. top:0px;
  2725. width:31px;
  2726. height:30px;
  2727. display:flex;
  2728. transition:none;
  2729. transform-origin:50% 50%;
  2730. font-family:"Microsoft YaHei", sans-serif;
  2731. font-weight:400;
  2732. font-style:normal;
  2733. font-size:12px;
  2734. }
  2735. #u36050 .text {
  2736. position:absolute;
  2737. align-self:center;
  2738. padding:2px 2px 2px 2px;
  2739. box-sizing:border-box;
  2740. width:100%;
  2741. }
  2742. #u36050_text {
  2743. border-width:0px;
  2744. word-wrap:break-word;
  2745. text-transform:none;
  2746. visibility:hidden;
  2747. }
  2748. #u36051 {
  2749. border-width:0px;
  2750. position:absolute;
  2751. left:12px;
  2752. top:8px;
  2753. width:8px;
  2754. height:14px;
  2755. display:flex;
  2756. transition:none;
  2757. font-family:"Microsoft YaHei", sans-serif;
  2758. font-weight:400;
  2759. font-style:normal;
  2760. font-size:12px;
  2761. }
  2762. #u36051 .text {
  2763. position:absolute;
  2764. align-self:center;
  2765. padding:2px 2px 2px 2px;
  2766. box-sizing:border-box;
  2767. width:100%;
  2768. }
  2769. #u36051_img {
  2770. border-width:0px;
  2771. position:absolute;
  2772. left:0px;
  2773. top:0px;
  2774. width:8px;
  2775. height:14px;
  2776. }
  2777. #u36051_text {
  2778. border-width:0px;
  2779. word-wrap:break-word;
  2780. text-transform:none;
  2781. visibility:hidden;
  2782. }
  2783. #u36052 {
  2784. border-width:0px;
  2785. position:absolute;
  2786. left:0px;
  2787. top:0px;
  2788. width:0px;
  2789. height:0px;
  2790. }
  2791. #u36053_div {
  2792. border-width:0px;
  2793. position:absolute;
  2794. left:0px;
  2795. top:0px;
  2796. width:31px;
  2797. height:30px;
  2798. background:inherit;
  2799. background-color:rgba(255, 255, 255, 1);
  2800. box-sizing:border-box;
  2801. border-width:1px;
  2802. border-style:solid;
  2803. border-color:rgba(228, 228, 228, 1);
  2804. border-radius:4px;
  2805. filter:drop-shadow(none);
  2806. transition:none;
  2807. font-family:"Microsoft YaHei", sans-serif;
  2808. font-weight:400;
  2809. font-style:normal;
  2810. font-size:12px;
  2811. }
  2812. #u36053 {
  2813. border-width:0px;
  2814. position:absolute;
  2815. left:234px;
  2816. top:0px;
  2817. width:31px;
  2818. height:30px;
  2819. display:flex;
  2820. transition:none;
  2821. transform-origin:50% 50%;
  2822. font-family:"Microsoft YaHei", sans-serif;
  2823. font-weight:400;
  2824. font-style:normal;
  2825. font-size:12px;
  2826. }
  2827. #u36053 .text {
  2828. position:absolute;
  2829. align-self:center;
  2830. padding:2px 2px 2px 2px;
  2831. box-sizing:border-box;
  2832. width:100%;
  2833. }
  2834. #u36053_text {
  2835. border-width:0px;
  2836. word-wrap:break-word;
  2837. text-transform:none;
  2838. visibility:hidden;
  2839. }
  2840. #u36054 {
  2841. border-width:0px;
  2842. position:absolute;
  2843. left:247px;
  2844. top:8px;
  2845. width:8px;
  2846. height:14px;
  2847. display:flex;
  2848. transition:none;
  2849. font-family:"Microsoft YaHei", sans-serif;
  2850. font-weight:400;
  2851. font-style:normal;
  2852. font-size:12px;
  2853. }
  2854. #u36054 .text {
  2855. position:absolute;
  2856. align-self:center;
  2857. padding:2px 2px 2px 2px;
  2858. box-sizing:border-box;
  2859. width:100%;
  2860. }
  2861. #u36054_img {
  2862. border-width:0px;
  2863. position:absolute;
  2864. left:0px;
  2865. top:0px;
  2866. width:8px;
  2867. height:14px;
  2868. }
  2869. #u36054_text {
  2870. border-width:0px;
  2871. word-wrap:break-word;
  2872. text-transform:none;
  2873. visibility:hidden;
  2874. }
  2875. #u36055 {
  2876. border-width:0px;
  2877. position:absolute;
  2878. left:0px;
  2879. top:0px;
  2880. width:0px;
  2881. height:0px;
  2882. }
  2883. #u36056_div {
  2884. border-width:0px;
  2885. position:absolute;
  2886. left:0px;
  2887. top:0px;
  2888. width:33px;
  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:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2896. font-weight:400;
  2897. font-style:normal;
  2898. font-size:14px;
  2899. color:#BCBCBC;
  2900. text-align:left;
  2901. }
  2902. #u36056 {
  2903. border-width:0px;
  2904. position:absolute;
  2905. left:435px;
  2906. top:3px;
  2907. width:33px;
  2908. height:24px;
  2909. display:flex;
  2910. transition:none;
  2911. transform-origin:50% 50%;
  2912. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2913. font-weight:400;
  2914. font-style:normal;
  2915. font-size:14px;
  2916. color:#BCBCBC;
  2917. text-align:left;
  2918. }
  2919. #u36056 .text {
  2920. position:absolute;
  2921. align-self:center;
  2922. padding:2px 2px 2px 2px;
  2923. box-sizing:border-box;
  2924. width:100%;
  2925. }
  2926. #u36056_text {
  2927. border-width:0px;
  2928. white-space:nowrap;
  2929. text-transform:none;
  2930. }
  2931. #u36057_div {
  2932. border-width:0px;
  2933. position:absolute;
  2934. left:0px;
  2935. top:0px;
  2936. width:40px;
  2937. height:30px;
  2938. background:inherit;
  2939. background-color:rgba(255, 255, 255, 1);
  2940. box-sizing:border-box;
  2941. border-width:1px;
  2942. border-style:solid;
  2943. border-color:rgba(228, 228, 228, 1);
  2944. border-radius:4px;
  2945. filter:drop-shadow(none);
  2946. transition:none;
  2947. font-family:"Microsoft YaHei", sans-serif;
  2948. font-weight:400;
  2949. font-style:normal;
  2950. font-size:14px;
  2951. }
  2952. #u36057 {
  2953. border-width:0px;
  2954. position:absolute;
  2955. left:470px;
  2956. top:0px;
  2957. width:40px;
  2958. height:30px;
  2959. display:flex;
  2960. transition:none;
  2961. transform-origin:50% 50%;
  2962. font-family:"Microsoft YaHei", sans-serif;
  2963. font-weight:400;
  2964. font-style:normal;
  2965. font-size:14px;
  2966. }
  2967. #u36057 .text {
  2968. position:absolute;
  2969. align-self:center;
  2970. padding:2px 2px 2px 2px;
  2971. box-sizing:border-box;
  2972. width:100%;
  2973. }
  2974. #u36057_text {
  2975. border-width:0px;
  2976. word-wrap:break-word;
  2977. text-transform:none;
  2978. visibility:hidden;
  2979. }
  2980. #u36058_div {
  2981. border-width:0px;
  2982. position:absolute;
  2983. left:0px;
  2984. top:0px;
  2985. width:19px;
  2986. height:24px;
  2987. background:inherit;
  2988. background-color:rgba(255, 255, 255, 1);
  2989. border-radius:0px;
  2990. filter:drop-shadow(none);
  2991. transition:none;
  2992. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2993. font-weight:400;
  2994. font-style:normal;
  2995. font-size:14px;
  2996. color:#BCBCBC;
  2997. text-align:left;
  2998. }
  2999. #u36058 {
  3000. border-width:0px;
  3001. position:absolute;
  3002. left:512px;
  3003. top:4px;
  3004. width:19px;
  3005. height:24px;
  3006. display:flex;
  3007. transition:none;
  3008. transform-origin:50% 50%;
  3009. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3010. font-weight:400;
  3011. font-style:normal;
  3012. font-size:14px;
  3013. color:#BCBCBC;
  3014. text-align:left;
  3015. }
  3016. #u36058 .text {
  3017. position:absolute;
  3018. align-self:center;
  3019. padding:2px 2px 2px 2px;
  3020. box-sizing:border-box;
  3021. width:100%;
  3022. }
  3023. #u36058_text {
  3024. border-width:0px;
  3025. white-space:nowrap;
  3026. text-transform:none;
  3027. }
  3028. #u36059_input {
  3029. position:absolute;
  3030. left:0px;
  3031. top:0px;
  3032. width:34px;
  3033. height:25px;
  3034. padding:2px 2px 2px 2px;
  3035. font-family:"Microsoft YaHei", sans-serif;
  3036. font-weight:400;
  3037. font-style:normal;
  3038. font-size:13px;
  3039. letter-spacing:normal;
  3040. color:#000000;
  3041. vertical-align:none;
  3042. text-align:left;
  3043. text-transform:none;
  3044. background-color:transparent;
  3045. border-color:transparent;
  3046. }
  3047. #u36059_input.hint {
  3048. position:absolute;
  3049. left:0px;
  3050. top:0px;
  3051. width:34px;
  3052. height:25px;
  3053. padding:2px 2px 2px 2px;
  3054. font-family:"Microsoft YaHei", sans-serif;
  3055. font-weight:400;
  3056. font-style:normal;
  3057. font-size:13px;
  3058. letter-spacing:normal;
  3059. color:#999999;
  3060. vertical-align:none;
  3061. text-align:left;
  3062. text-transform:none;
  3063. background-color:transparent;
  3064. border-color:transparent;
  3065. }
  3066. #u36059_input.disabled {
  3067. position:absolute;
  3068. left:0px;
  3069. top:0px;
  3070. width:34px;
  3071. height:25px;
  3072. padding:2px 2px 2px 2px;
  3073. font-family:"Microsoft YaHei", sans-serif;
  3074. font-weight:400;
  3075. font-style:normal;
  3076. font-size:13px;
  3077. letter-spacing:normal;
  3078. color:#000000;
  3079. vertical-align:none;
  3080. text-align:left;
  3081. text-transform:none;
  3082. background-color:transparent;
  3083. border-color:transparent;
  3084. }
  3085. #u36059_input.hint.disabled {
  3086. position:absolute;
  3087. left:0px;
  3088. top:0px;
  3089. width:34px;
  3090. height:25px;
  3091. padding:2px 2px 2px 2px;
  3092. font-family:"Microsoft YaHei", sans-serif;
  3093. font-weight:400;
  3094. font-style:normal;
  3095. font-size:13px;
  3096. letter-spacing:normal;
  3097. color:#999999;
  3098. vertical-align:none;
  3099. text-align:left;
  3100. text-transform:none;
  3101. background-color:transparent;
  3102. border-color:transparent;
  3103. }
  3104. #u36059_div {
  3105. border-width:0px;
  3106. position:absolute;
  3107. left:0px;
  3108. top:0px;
  3109. width:34px;
  3110. height:25px;
  3111. background:inherit;
  3112. background-color:rgba(255, 255, 255, 1);
  3113. border-radius:0px;
  3114. filter:drop-shadow(none);
  3115. transition:none;
  3116. font-family:"Microsoft YaHei", sans-serif;
  3117. font-weight:400;
  3118. font-style:normal;
  3119. }
  3120. #u36059 {
  3121. border-width:0px;
  3122. position:absolute;
  3123. left:473px;
  3124. top:2px;
  3125. width:34px;
  3126. height:25px;
  3127. display:flex;
  3128. transition:none;
  3129. transform-origin:50% 50%;
  3130. font-family:"Microsoft YaHei", sans-serif;
  3131. font-weight:400;
  3132. font-style:normal;
  3133. }
  3134. #u36059 .text {
  3135. position:absolute;
  3136. align-self:center;
  3137. padding:2px 2px 2px 2px;
  3138. box-sizing:border-box;
  3139. width:100%;
  3140. }
  3141. #u36059_div.hint {
  3142. border-width:0px;
  3143. position:absolute;
  3144. left:0px;
  3145. top:0px;
  3146. width:34px;
  3147. height:25px;
  3148. background:inherit;
  3149. background-color:rgba(255, 255, 255, 1);
  3150. border-radius:0px;
  3151. filter:drop-shadow(none);
  3152. transition:none;
  3153. font-family:"Microsoft YaHei", sans-serif;
  3154. font-weight:400;
  3155. font-style:normal;
  3156. }
  3157. #u36059.hint {
  3158. }
  3159. #u36059_div.disabled {
  3160. border-width:0px;
  3161. position:absolute;
  3162. left:0px;
  3163. top:0px;
  3164. width:34px;
  3165. height:25px;
  3166. background:inherit;
  3167. background-color:rgba(240, 240, 240, 1);
  3168. border-radius:0px;
  3169. filter:drop-shadow(none);
  3170. transition:none;
  3171. font-family:"Microsoft YaHei", sans-serif;
  3172. font-weight:400;
  3173. font-style:normal;
  3174. }
  3175. #u36059.disabled {
  3176. }
  3177. #u36059_div.hint.disabled {
  3178. border-width:0px;
  3179. position:absolute;
  3180. left:0px;
  3181. top:0px;
  3182. width:34px;
  3183. height:25px;
  3184. background:inherit;
  3185. background-color:rgba(240, 240, 240, 1);
  3186. border-radius:0px;
  3187. filter:drop-shadow(none);
  3188. transition:none;
  3189. font-family:"Microsoft YaHei", sans-serif;
  3190. font-weight:400;
  3191. font-style:normal;
  3192. }
  3193. #u36059.hint.disabled {
  3194. }
  3195. #u36060 {
  3196. border-width:0px;
  3197. position:absolute;
  3198. left:348px;
  3199. top:191px;
  3200. width:1226px;
  3201. height:98px;
  3202. }
  3203. #u36061 {
  3204. border-width:0px;
  3205. position:absolute;
  3206. left:0px;
  3207. top:0px;
  3208. width:60px;
  3209. height:34px;
  3210. display:flex;
  3211. transition:none;
  3212. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3213. font-weight:400;
  3214. font-style:normal;
  3215. font-size:14px;
  3216. color:#FFFFFF;
  3217. text-align:left;
  3218. line-height:30px;
  3219. }
  3220. #u36061 .text {
  3221. position:absolute;
  3222. align-self:center;
  3223. padding:2px 10px 2px 10px;
  3224. box-sizing:border-box;
  3225. width:100%;
  3226. }
  3227. #u36061_img {
  3228. border-width:0px;
  3229. position:absolute;
  3230. left:0px;
  3231. top:0px;
  3232. width:60px;
  3233. height:34px;
  3234. }
  3235. #u36061_text {
  3236. border-width:0px;
  3237. word-wrap:break-word;
  3238. text-transform:none;
  3239. }
  3240. #u36062 {
  3241. border-width:0px;
  3242. position:absolute;
  3243. left:60px;
  3244. top:0px;
  3245. width:242px;
  3246. height:34px;
  3247. display:flex;
  3248. transition:none;
  3249. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3250. font-weight:400;
  3251. font-style:normal;
  3252. font-size:14px;
  3253. color:#FFFFFF;
  3254. text-align:left;
  3255. line-height:30px;
  3256. }
  3257. #u36062 .text {
  3258. position:absolute;
  3259. align-self:center;
  3260. padding:2px 10px 2px 10px;
  3261. box-sizing:border-box;
  3262. width:100%;
  3263. }
  3264. #u36062_img {
  3265. border-width:0px;
  3266. position:absolute;
  3267. left:0px;
  3268. top:0px;
  3269. width:242px;
  3270. height:34px;
  3271. }
  3272. #u36062_text {
  3273. border-width:0px;
  3274. word-wrap:break-word;
  3275. text-transform:none;
  3276. }
  3277. #u36063 {
  3278. border-width:0px;
  3279. position:absolute;
  3280. left:302px;
  3281. top:0px;
  3282. width:248px;
  3283. height:34px;
  3284. display:flex;
  3285. transition:none;
  3286. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3287. font-weight:400;
  3288. font-style:normal;
  3289. font-size:14px;
  3290. color:#FFFFFF;
  3291. text-align:left;
  3292. line-height:30px;
  3293. }
  3294. #u36063 .text {
  3295. position:absolute;
  3296. align-self:center;
  3297. padding:2px 10px 2px 10px;
  3298. box-sizing:border-box;
  3299. width:100%;
  3300. }
  3301. #u36063_img {
  3302. border-width:0px;
  3303. position:absolute;
  3304. left:0px;
  3305. top:0px;
  3306. width:248px;
  3307. height:34px;
  3308. }
  3309. #u36063_text {
  3310. border-width:0px;
  3311. word-wrap:break-word;
  3312. text-transform:none;
  3313. }
  3314. #u36064 {
  3315. border-width:0px;
  3316. position:absolute;
  3317. left:550px;
  3318. top:0px;
  3319. width:248px;
  3320. height:34px;
  3321. display:flex;
  3322. transition:none;
  3323. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3324. font-weight:400;
  3325. font-style:normal;
  3326. font-size:14px;
  3327. color:#FFFFFF;
  3328. text-align:left;
  3329. line-height:30px;
  3330. }
  3331. #u36064 .text {
  3332. position:absolute;
  3333. align-self:center;
  3334. padding:2px 10px 2px 10px;
  3335. box-sizing:border-box;
  3336. width:100%;
  3337. }
  3338. #u36064_img {
  3339. border-width:0px;
  3340. position:absolute;
  3341. left:0px;
  3342. top:0px;
  3343. width:248px;
  3344. height:34px;
  3345. }
  3346. #u36064_text {
  3347. border-width:0px;
  3348. word-wrap:break-word;
  3349. text-transform:none;
  3350. }
  3351. #u36065 {
  3352. border-width:0px;
  3353. position:absolute;
  3354. left:798px;
  3355. top:0px;
  3356. width:248px;
  3357. height:34px;
  3358. display:flex;
  3359. transition:none;
  3360. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3361. font-weight:400;
  3362. font-style:normal;
  3363. font-size:14px;
  3364. color:#FFFFFF;
  3365. text-align:left;
  3366. line-height:30px;
  3367. }
  3368. #u36065 .text {
  3369. position:absolute;
  3370. align-self:center;
  3371. padding:2px 10px 2px 10px;
  3372. box-sizing:border-box;
  3373. width:100%;
  3374. }
  3375. #u36065_img {
  3376. border-width:0px;
  3377. position:absolute;
  3378. left:0px;
  3379. top:0px;
  3380. width:248px;
  3381. height:34px;
  3382. }
  3383. #u36065_text {
  3384. border-width:0px;
  3385. word-wrap:break-word;
  3386. text-transform:none;
  3387. }
  3388. #u36066 {
  3389. border-width:0px;
  3390. position:absolute;
  3391. left:1046px;
  3392. top:0px;
  3393. width:180px;
  3394. height:34px;
  3395. display:flex;
  3396. transition:none;
  3397. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3398. font-weight:400;
  3399. font-style:normal;
  3400. font-size:14px;
  3401. color:#FFFFFF;
  3402. text-align:left;
  3403. line-height:30px;
  3404. }
  3405. #u36066 .text {
  3406. position:absolute;
  3407. align-self:center;
  3408. padding:2px 10px 2px 10px;
  3409. box-sizing:border-box;
  3410. width:100%;
  3411. }
  3412. #u36066_img {
  3413. border-width:0px;
  3414. position:absolute;
  3415. left:0px;
  3416. top:0px;
  3417. width:180px;
  3418. height:34px;
  3419. }
  3420. #u36066_text {
  3421. border-width:0px;
  3422. word-wrap:break-word;
  3423. text-transform:none;
  3424. }
  3425. #u36067 {
  3426. border-width:0px;
  3427. position:absolute;
  3428. left:0px;
  3429. top:34px;
  3430. width:60px;
  3431. height:34px;
  3432. display:flex;
  3433. transition:none;
  3434. font-size:14px;
  3435. text-align:left;
  3436. line-height:30px;
  3437. }
  3438. #u36067 .text {
  3439. position:absolute;
  3440. align-self:center;
  3441. padding:2px 10px 2px 10px;
  3442. box-sizing:border-box;
  3443. width:100%;
  3444. }
  3445. #u36067_img {
  3446. border-width:0px;
  3447. position:absolute;
  3448. left:0px;
  3449. top:0px;
  3450. width:60px;
  3451. height:34px;
  3452. }
  3453. #u36067_text {
  3454. border-width:0px;
  3455. word-wrap:break-word;
  3456. text-transform:none;
  3457. }
  3458. #u36068 {
  3459. border-width:0px;
  3460. position:absolute;
  3461. left:60px;
  3462. top:34px;
  3463. width:242px;
  3464. height:34px;
  3465. display:flex;
  3466. transition:none;
  3467. font-size:14px;
  3468. text-align:left;
  3469. line-height:30px;
  3470. }
  3471. #u36068 .text {
  3472. position:absolute;
  3473. align-self:center;
  3474. padding:2px 10px 2px 10px;
  3475. box-sizing:border-box;
  3476. width:100%;
  3477. }
  3478. #u36068_img {
  3479. border-width:0px;
  3480. position:absolute;
  3481. left:0px;
  3482. top:0px;
  3483. width:242px;
  3484. height:34px;
  3485. }
  3486. #u36068_text {
  3487. border-width:0px;
  3488. word-wrap:break-word;
  3489. text-transform:none;
  3490. visibility:hidden;
  3491. }
  3492. #u36069 {
  3493. border-width:0px;
  3494. position:absolute;
  3495. left:302px;
  3496. top:34px;
  3497. width:248px;
  3498. height:34px;
  3499. display:flex;
  3500. transition:none;
  3501. font-size:14px;
  3502. text-align:left;
  3503. line-height:30px;
  3504. }
  3505. #u36069 .text {
  3506. position:absolute;
  3507. align-self:center;
  3508. padding:2px 10px 2px 10px;
  3509. box-sizing:border-box;
  3510. width:100%;
  3511. }
  3512. #u36069_img {
  3513. border-width:0px;
  3514. position:absolute;
  3515. left:0px;
  3516. top:0px;
  3517. width:248px;
  3518. height:34px;
  3519. }
  3520. #u36069_text {
  3521. border-width:0px;
  3522. word-wrap:break-word;
  3523. text-transform:none;
  3524. visibility:hidden;
  3525. }
  3526. #u36070 {
  3527. border-width:0px;
  3528. position:absolute;
  3529. left:550px;
  3530. top:34px;
  3531. width:248px;
  3532. height:34px;
  3533. display:flex;
  3534. transition:none;
  3535. font-size:14px;
  3536. text-align:left;
  3537. line-height:30px;
  3538. }
  3539. #u36070 .text {
  3540. position:absolute;
  3541. align-self:center;
  3542. padding:2px 10px 2px 10px;
  3543. box-sizing:border-box;
  3544. width:100%;
  3545. }
  3546. #u36070_img {
  3547. border-width:0px;
  3548. position:absolute;
  3549. left:0px;
  3550. top:0px;
  3551. width:248px;
  3552. height:34px;
  3553. }
  3554. #u36070_text {
  3555. border-width:0px;
  3556. word-wrap:break-word;
  3557. text-transform:none;
  3558. visibility:hidden;
  3559. }
  3560. #u36071 {
  3561. border-width:0px;
  3562. position:absolute;
  3563. left:798px;
  3564. top:34px;
  3565. width:248px;
  3566. height:34px;
  3567. display:flex;
  3568. transition:none;
  3569. font-size:14px;
  3570. text-align:left;
  3571. line-height:30px;
  3572. }
  3573. #u36071 .text {
  3574. position:absolute;
  3575. align-self:center;
  3576. padding:2px 10px 2px 10px;
  3577. box-sizing:border-box;
  3578. width:100%;
  3579. }
  3580. #u36071_img {
  3581. border-width:0px;
  3582. position:absolute;
  3583. left:0px;
  3584. top:0px;
  3585. width:248px;
  3586. height:34px;
  3587. }
  3588. #u36071_text {
  3589. border-width:0px;
  3590. word-wrap:break-word;
  3591. text-transform:none;
  3592. visibility:hidden;
  3593. }
  3594. #u36072 {
  3595. border-width:0px;
  3596. position:absolute;
  3597. left:1046px;
  3598. top:34px;
  3599. width:180px;
  3600. height:34px;
  3601. display:flex;
  3602. transition:none;
  3603. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3604. font-weight:400;
  3605. font-style:normal;
  3606. font-size:14px;
  3607. color:#1890FF;
  3608. text-align:left;
  3609. line-height:30px;
  3610. }
  3611. #u36072 .text {
  3612. position:absolute;
  3613. align-self:center;
  3614. padding:2px 10px 2px 10px;
  3615. box-sizing:border-box;
  3616. width:100%;
  3617. }
  3618. #u36072_img {
  3619. border-width:0px;
  3620. position:absolute;
  3621. left:0px;
  3622. top:0px;
  3623. width:180px;
  3624. height:34px;
  3625. }
  3626. #u36072_text {
  3627. border-width:0px;
  3628. word-wrap:break-word;
  3629. text-transform:none;
  3630. }
  3631. #u36073 {
  3632. border-width:0px;
  3633. position:absolute;
  3634. left:0px;
  3635. top:68px;
  3636. width:60px;
  3637. height:30px;
  3638. display:flex;
  3639. transition:none;
  3640. font-size:14px;
  3641. text-align:left;
  3642. line-height:30px;
  3643. }
  3644. #u36073 .text {
  3645. position:absolute;
  3646. align-self:center;
  3647. padding:2px 10px 2px 10px;
  3648. box-sizing:border-box;
  3649. width:100%;
  3650. }
  3651. #u36073_img {
  3652. border-width:0px;
  3653. position:absolute;
  3654. left:0px;
  3655. top:0px;
  3656. width:60px;
  3657. height:30px;
  3658. }
  3659. #u36073_text {
  3660. border-width:0px;
  3661. word-wrap:break-word;
  3662. text-transform:none;
  3663. visibility:hidden;
  3664. }
  3665. #u36074 {
  3666. border-width:0px;
  3667. position:absolute;
  3668. left:60px;
  3669. top:68px;
  3670. width:242px;
  3671. height:30px;
  3672. display:flex;
  3673. transition:none;
  3674. font-size:14px;
  3675. text-align:left;
  3676. line-height:30px;
  3677. }
  3678. #u36074 .text {
  3679. position:absolute;
  3680. align-self:center;
  3681. padding:2px 10px 2px 10px;
  3682. box-sizing:border-box;
  3683. width:100%;
  3684. }
  3685. #u36074_img {
  3686. border-width:0px;
  3687. position:absolute;
  3688. left:0px;
  3689. top:0px;
  3690. width:242px;
  3691. height:30px;
  3692. }
  3693. #u36074_text {
  3694. border-width:0px;
  3695. word-wrap:break-word;
  3696. text-transform:none;
  3697. visibility:hidden;
  3698. }
  3699. #u36075 {
  3700. border-width:0px;
  3701. position:absolute;
  3702. left:302px;
  3703. top:68px;
  3704. width:248px;
  3705. height:30px;
  3706. display:flex;
  3707. transition:none;
  3708. font-size:14px;
  3709. text-align:left;
  3710. line-height:30px;
  3711. }
  3712. #u36075 .text {
  3713. position:absolute;
  3714. align-self:center;
  3715. padding:2px 10px 2px 10px;
  3716. box-sizing:border-box;
  3717. width:100%;
  3718. }
  3719. #u36075_img {
  3720. border-width:0px;
  3721. position:absolute;
  3722. left:0px;
  3723. top:0px;
  3724. width:248px;
  3725. height:30px;
  3726. }
  3727. #u36075_text {
  3728. border-width:0px;
  3729. word-wrap:break-word;
  3730. text-transform:none;
  3731. visibility:hidden;
  3732. }
  3733. #u36076 {
  3734. border-width:0px;
  3735. position:absolute;
  3736. left:550px;
  3737. top:68px;
  3738. width:248px;
  3739. height:30px;
  3740. display:flex;
  3741. transition:none;
  3742. font-size:14px;
  3743. text-align:left;
  3744. line-height:30px;
  3745. }
  3746. #u36076 .text {
  3747. position:absolute;
  3748. align-self:center;
  3749. padding:2px 10px 2px 10px;
  3750. box-sizing:border-box;
  3751. width:100%;
  3752. }
  3753. #u36076_img {
  3754. border-width:0px;
  3755. position:absolute;
  3756. left:0px;
  3757. top:0px;
  3758. width:248px;
  3759. height:30px;
  3760. }
  3761. #u36076_text {
  3762. border-width:0px;
  3763. word-wrap:break-word;
  3764. text-transform:none;
  3765. visibility:hidden;
  3766. }
  3767. #u36077 {
  3768. border-width:0px;
  3769. position:absolute;
  3770. left:798px;
  3771. top:68px;
  3772. width:248px;
  3773. height:30px;
  3774. display:flex;
  3775. transition:none;
  3776. font-size:14px;
  3777. text-align:left;
  3778. line-height:30px;
  3779. }
  3780. #u36077 .text {
  3781. position:absolute;
  3782. align-self:center;
  3783. padding:2px 10px 2px 10px;
  3784. box-sizing:border-box;
  3785. width:100%;
  3786. }
  3787. #u36077_img {
  3788. border-width:0px;
  3789. position:absolute;
  3790. left:0px;
  3791. top:0px;
  3792. width:248px;
  3793. height:30px;
  3794. }
  3795. #u36077_text {
  3796. border-width:0px;
  3797. word-wrap:break-word;
  3798. text-transform:none;
  3799. visibility:hidden;
  3800. }
  3801. #u36078 {
  3802. border-width:0px;
  3803. position:absolute;
  3804. left:1046px;
  3805. top:68px;
  3806. width:180px;
  3807. height:30px;
  3808. display:flex;
  3809. transition:none;
  3810. font-size:14px;
  3811. color:#1890FF;
  3812. text-align:left;
  3813. line-height:30px;
  3814. }
  3815. #u36078 .text {
  3816. position:absolute;
  3817. align-self:center;
  3818. padding:2px 10px 2px 10px;
  3819. box-sizing:border-box;
  3820. width:100%;
  3821. }
  3822. #u36078_img {
  3823. border-width:0px;
  3824. position:absolute;
  3825. left:0px;
  3826. top:0px;
  3827. width:180px;
  3828. height:30px;
  3829. }
  3830. #u36078_text {
  3831. border-width:0px;
  3832. word-wrap:break-word;
  3833. text-transform:none;
  3834. visibility:hidden;
  3835. }
  3836. #u36079_div {
  3837. border-width:0px;
  3838. position:absolute;
  3839. left:0px;
  3840. top:0px;
  3841. width:105px;
  3842. height:30px;
  3843. background:inherit;
  3844. background-color:rgba(41, 143, 255, 1);
  3845. border-radius:4px;
  3846. filter:drop-shadow(none);
  3847. transition:none;
  3848. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3849. font-weight:400;
  3850. font-style:normal;
  3851. font-size:14px;
  3852. color:#FFFFFF;
  3853. }
  3854. #u36079 {
  3855. border-width:0px;
  3856. position:absolute;
  3857. left:348px;
  3858. top:151px;
  3859. width:105px;
  3860. height:30px;
  3861. display:flex;
  3862. transition:none;
  3863. transform-origin:50% 50%;
  3864. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3865. font-weight:400;
  3866. font-style:normal;
  3867. font-size:14px;
  3868. color:#FFFFFF;
  3869. }
  3870. #u36079 .text {
  3871. position:absolute;
  3872. align-self:center;
  3873. padding:5px 10px 5px 10px;
  3874. box-sizing:border-box;
  3875. width:100%;
  3876. }
  3877. #u36079_text {
  3878. border-width:0px;
  3879. word-wrap:break-word;
  3880. text-transform:none;
  3881. }
  3882. #u36080_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. #u36080 {
  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. #u36080 .text {
  3922. position:absolute;
  3923. align-self:center;
  3924. padding:0px 0px 0px 0px;
  3925. box-sizing:border-box;
  3926. width:100%;
  3927. }
  3928. #u36080_text {
  3929. border-width:0px;
  3930. word-wrap:break-word;
  3931. text-transform:none;
  3932. }
  3933. #u36081 {
  3934. border-width:0px;
  3935. position:absolute;
  3936. left:0px;
  3937. top:0px;
  3938. width:0px;
  3939. height:0px;
  3940. }
  3941. #u36082 {
  3942. border-width:0px;
  3943. position:absolute;
  3944. left:0px;
  3945. top:0px;
  3946. width:0px;
  3947. height:0px;
  3948. }
  3949. #u36083_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. #u36083 {
  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. #u36083 .text {
  3984. position:absolute;
  3985. align-self:center;
  3986. padding:2px 2px 2px 2px;
  3987. box-sizing:border-box;
  3988. width:100%;
  3989. }
  3990. #u36083_text {
  3991. border-width:0px;
  3992. word-wrap:break-word;
  3993. text-transform:none;
  3994. visibility:hidden;
  3995. }
  3996. #u36084_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. #u36084 {
  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. #u36084 .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. #u36084_text {
  4040. border-width:0px;
  4041. word-wrap:break-word;
  4042. text-transform:none;
  4043. }
  4044. #u36085_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. #u36085 {
  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. #u36085 .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. #u36085_text {
  4088. border-width:0px;
  4089. white-space:nowrap;
  4090. text-transform:none;
  4091. }
  4092. #u36086_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. #u36086 {
  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. #u36086 .text {
  4127. position:absolute;
  4128. align-self:center;
  4129. padding:2px 16px 2px 16px;
  4130. box-sizing:border-box;
  4131. width:100%;
  4132. }
  4133. #u36086_text {
  4134. border-width:0px;
  4135. white-space:nowrap;
  4136. text-transform:none;
  4137. }
  4138. #u36087_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. #u36087 {
  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. #u36087 .text {
  4179. position:absolute;
  4180. align-self:center;
  4181. padding:2px 16px 2px 16px;
  4182. box-sizing:border-box;
  4183. width:100%;
  4184. }
  4185. #u36087_text {
  4186. border-width:0px;
  4187. white-space:nowrap;
  4188. text-transform:none;
  4189. }
  4190. #u36088 {
  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. #u36088 .text {
  4201. position:absolute;
  4202. align-self:center;
  4203. padding:2px 2px 2px 2px;
  4204. box-sizing:border-box;
  4205. width:100%;
  4206. }
  4207. #u36088_img {
  4208. border-width:0px;
  4209. position:absolute;
  4210. left:0px;
  4211. top:0px;
  4212. width:20px;
  4213. height:20px;
  4214. }
  4215. #u36088_text {
  4216. border-width:0px;
  4217. word-wrap:break-word;
  4218. text-transform:none;
  4219. visibility:hidden;
  4220. }
  4221. #u36089 {
  4222. border-width:0px;
  4223. position:absolute;
  4224. left:0px;
  4225. top:0px;
  4226. width:0px;
  4227. height:0px;
  4228. }
  4229. #u36090_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. #u36090 {
  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. #u36090 .text {
  4264. position:absolute;
  4265. align-self:center;
  4266. padding:2px 2px 2px 2px;
  4267. box-sizing:border-box;
  4268. width:100%;
  4269. }
  4270. #u36090_text {
  4271. border-width:0px;
  4272. word-wrap:break-word;
  4273. text-transform:none;
  4274. visibility:hidden;
  4275. }
  4276. #u36091_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. #u36091 {
  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. #u36091 .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. #u36091_text {
  4320. border-width:0px;
  4321. word-wrap:break-word;
  4322. text-transform:none;
  4323. }
  4324. #u36092_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. #u36092 {
  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. #u36092 .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. #u36092_text {
  4368. border-width:0px;
  4369. white-space:nowrap;
  4370. text-transform:none;
  4371. }
  4372. #u36093_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. #u36093 {
  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. #u36093 .text {
  4407. position:absolute;
  4408. align-self:center;
  4409. padding:2px 16px 2px 16px;
  4410. box-sizing:border-box;
  4411. width:100%;
  4412. }
  4413. #u36093_text {
  4414. border-width:0px;
  4415. white-space:nowrap;
  4416. text-transform:none;
  4417. }
  4418. #u36094_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. #u36094 {
  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. #u36094 .text {
  4459. position:absolute;
  4460. align-self:center;
  4461. padding:2px 16px 2px 16px;
  4462. box-sizing:border-box;
  4463. width:100%;
  4464. }
  4465. #u36094_text {
  4466. border-width:0px;
  4467. white-space:nowrap;
  4468. text-transform:none;
  4469. }
  4470. #u36095 {
  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. #u36095 .text {
  4481. position:absolute;
  4482. align-self:center;
  4483. padding:2px 2px 2px 2px;
  4484. box-sizing:border-box;
  4485. width:100%;
  4486. }
  4487. #u36095_img {
  4488. border-width:0px;
  4489. position:absolute;
  4490. left:0px;
  4491. top:0px;
  4492. width:20px;
  4493. height:20px;
  4494. }
  4495. #u36095_text {
  4496. border-width:0px;
  4497. word-wrap:break-word;
  4498. text-transform:none;
  4499. visibility:hidden;
  4500. }