styles.css 76 KB

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