styles.css 72 KB

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