styles.css 71 KB

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