styles.css 58 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204
  1. body {
  2. margin:0px;
  3. background-image:none;
  4. position:relative;
  5. left:-116px;
  6. width:1734px;
  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. #u30937 {
  20. border-width:0px;
  21. position:absolute;
  22. left:0px;
  23. top:0px;
  24. width:0px;
  25. height:0px;
  26. }
  27. #u30938_div {
  28. border-width:0px;
  29. position:absolute;
  30. left:0px;
  31. top:0px;
  32. width:800px;
  33. height:1199px;
  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. #u30938 {
  46. border-width:0px;
  47. position:absolute;
  48. left:116px;
  49. top:51px;
  50. width:800px;
  51. height:1199px;
  52. display:flex;
  53. }
  54. #u30938 .text {
  55. position:absolute;
  56. align-self:center;
  57. padding:2px 2px 2px 2px;
  58. box-sizing:border-box;
  59. width:100%;
  60. }
  61. #u30938_text {
  62. border-width:0px;
  63. word-wrap:break-word;
  64. text-transform:none;
  65. visibility:hidden;
  66. }
  67. #u30939_div {
  68. border-width:0px;
  69. position:absolute;
  70. left:0px;
  71. top:0px;
  72. width:109px;
  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. #u30939 {
  89. border-width:0px;
  90. position:absolute;
  91. left:136px;
  92. top:73px;
  93. width:109px;
  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. #u30939 .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. #u30939_text {
  111. border-width:0px;
  112. white-space:nowrap;
  113. text-transform:none;
  114. }
  115. #u30940 {
  116. border-width:0px;
  117. position:absolute;
  118. left:0px;
  119. top:0px;
  120. width:0px;
  121. height:0px;
  122. }
  123. #u30941_div {
  124. border-width:0px;
  125. position:absolute;
  126. left:0px;
  127. top:0px;
  128. width:40px;
  129. height:40px;
  130. background:inherit;
  131. background-color:rgba(255, 255, 255, 0);
  132. border:none;
  133. border-top:0px;
  134. border-right:0px;
  135. border-bottom:0px;
  136. border-radius:0px;
  137. border-top-left-radius:0px;
  138. border-bottom-left-radius:0px;
  139. -moz-box-shadow:none;
  140. -webkit-box-shadow:none;
  141. box-shadow:none;
  142. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  143. font-weight:500;
  144. font-style:normal;
  145. font-size:18px;
  146. text-align:center;
  147. }
  148. #u30941 {
  149. border-width:0px;
  150. position:absolute;
  151. left:876px;
  152. top:51px;
  153. width:40px;
  154. height:40px;
  155. display:flex;
  156. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  157. font-weight:500;
  158. font-style:normal;
  159. font-size:18px;
  160. text-align:center;
  161. }
  162. #u30941 .text {
  163. position:absolute;
  164. align-self:center;
  165. padding:5px 10px 5px 0px;
  166. box-sizing:border-box;
  167. width:100%;
  168. }
  169. #u30941_text {
  170. border-width:0px;
  171. word-wrap:break-word;
  172. text-transform:none;
  173. }
  174. #u30942_img {
  175. border-width:0px;
  176. position:absolute;
  177. left:0px;
  178. top:0px;
  179. width:13px;
  180. height:13px;
  181. }
  182. #u30942 {
  183. border-width:0px;
  184. position:absolute;
  185. left:863px;
  186. top:65px;
  187. width:13px;
  188. height:13px;
  189. display:flex;
  190. }
  191. #u30942 .text {
  192. position:absolute;
  193. align-self:center;
  194. padding:2px 2px 2px 2px;
  195. box-sizing:border-box;
  196. width:100%;
  197. }
  198. #u30942_text {
  199. border-width:0px;
  200. word-wrap:break-word;
  201. text-transform:none;
  202. visibility:hidden;
  203. }
  204. #u30943 {
  205. border-width:0px;
  206. position:absolute;
  207. left:0px;
  208. top:0px;
  209. width:0px;
  210. height:0px;
  211. }
  212. #u30944_div {
  213. border-width:0px;
  214. position:absolute;
  215. left:0px;
  216. top:0px;
  217. width:800px;
  218. height:60px;
  219. background:inherit;
  220. background-color:rgba(255, 255, 255, 1);
  221. box-sizing:border-box;
  222. border-width:1px;
  223. border-style:solid;
  224. border-color:rgba(215, 215, 215, 1);
  225. border-radius:0px;
  226. -moz-box-shadow:none;
  227. -webkit-box-shadow:none;
  228. box-shadow:none;
  229. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  230. font-weight:400;
  231. font-style:normal;
  232. font-size:14px;
  233. color:#AAAAAA;
  234. text-align:center;
  235. line-height:30px;
  236. }
  237. #u30944 {
  238. border-width:0px;
  239. position:absolute;
  240. left:116px;
  241. top:1190px;
  242. width:800px;
  243. height:60px;
  244. display:flex;
  245. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  246. font-weight:400;
  247. font-style:normal;
  248. font-size:14px;
  249. color:#AAAAAA;
  250. text-align:center;
  251. line-height:30px;
  252. }
  253. #u30944 .text {
  254. position:absolute;
  255. align-self:center;
  256. padding:5px 10px 5px 10px;
  257. box-sizing:border-box;
  258. width:100%;
  259. }
  260. #u30944_text {
  261. border-width:0px;
  262. word-wrap:break-word;
  263. text-transform:none;
  264. visibility:hidden;
  265. }
  266. #u30945_div {
  267. border-width:0px;
  268. position:absolute;
  269. left:0px;
  270. top:0px;
  271. width:80px;
  272. height:30px;
  273. background:inherit;
  274. background-color:rgba(24, 144, 255, 1);
  275. border:none;
  276. border-radius:4px;
  277. -moz-box-shadow:none;
  278. -webkit-box-shadow:none;
  279. box-shadow:none;
  280. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  281. font-weight:400;
  282. font-style:normal;
  283. font-size:14px;
  284. color:#FFFFFF;
  285. }
  286. #u30945 {
  287. border-width:0px;
  288. position:absolute;
  289. left:791px;
  290. top:1205px;
  291. width:80px;
  292. height:30px;
  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:#FFFFFF;
  299. }
  300. #u30945 .text {
  301. position:absolute;
  302. align-self:center;
  303. padding:2px 2px 2px 2px;
  304. box-sizing:border-box;
  305. width:100%;
  306. }
  307. #u30945_text {
  308. border-width:0px;
  309. word-wrap:break-word;
  310. text-transform:none;
  311. }
  312. #u30946_div {
  313. border-width:0px;
  314. position:absolute;
  315. left:0px;
  316. top:0px;
  317. width:80px;
  318. height:30px;
  319. background:inherit;
  320. background-color:rgba(255, 255, 255, 1);
  321. box-sizing:border-box;
  322. border-width:1px;
  323. border-style:solid;
  324. border-color:rgba(170, 170, 170, 1);
  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. }
  334. #u30946 {
  335. border-width:0px;
  336. position:absolute;
  337. left:701px;
  338. top:1205px;
  339. width:80px;
  340. height:30px;
  341. display:flex;
  342. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  343. font-weight:400;
  344. font-style:normal;
  345. font-size:14px;
  346. }
  347. #u30946 .text {
  348. position:absolute;
  349. align-self:center;
  350. padding:2px 2px 2px 2px;
  351. box-sizing:border-box;
  352. width:100%;
  353. }
  354. #u30946_text {
  355. border-width:0px;
  356. word-wrap:break-word;
  357. text-transform:none;
  358. }
  359. #u30947 {
  360. border-width:0px;
  361. position:absolute;
  362. left:0px;
  363. top:0px;
  364. width:0px;
  365. height:0px;
  366. }
  367. #u30948_div {
  368. border-width:0px;
  369. position:absolute;
  370. left:0px;
  371. top:0px;
  372. width:598px;
  373. height:40px;
  374. background:inherit;
  375. background-color:rgba(255, 255, 255, 1);
  376. box-sizing:border-box;
  377. border-width:1px;
  378. border-style:solid;
  379. border-color:rgba(170, 170, 170, 1);
  380. border-radius:4px;
  381. -moz-box-shadow:none;
  382. -webkit-box-shadow:none;
  383. box-shadow:none;
  384. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  385. font-weight:400;
  386. font-style:normal;
  387. text-align:left;
  388. }
  389. #u30948 {
  390. border-width:0px;
  391. position:absolute;
  392. left:246px;
  393. top:176px;
  394. width:598px;
  395. height:40px;
  396. display:flex;
  397. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  398. font-weight:400;
  399. font-style:normal;
  400. text-align:left;
  401. }
  402. #u30948 .text {
  403. position:absolute;
  404. align-self:center;
  405. padding:2px 2px 2px 10px;
  406. box-sizing:border-box;
  407. width:100%;
  408. }
  409. #u30948_text {
  410. border-width:0px;
  411. word-wrap:break-word;
  412. text-transform:none;
  413. visibility:hidden;
  414. }
  415. #u30949_input {
  416. position:absolute;
  417. left:0px;
  418. top:0px;
  419. width:374px;
  420. height:31px;
  421. padding:2px 2px 2px 2px;
  422. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  423. font-weight:400;
  424. font-style:normal;
  425. font-size:13px;
  426. letter-spacing:normal;
  427. color:#AAAAAA;
  428. vertical-align:none;
  429. text-align:left;
  430. text-transform:none;
  431. background-color:transparent;
  432. border-color:transparent;
  433. }
  434. #u30949_input.disabled {
  435. position:absolute;
  436. left:0px;
  437. top:0px;
  438. width:374px;
  439. height:31px;
  440. padding:2px 2px 2px 2px;
  441. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  442. font-weight:400;
  443. font-style:normal;
  444. font-size:13px;
  445. letter-spacing:normal;
  446. color:#AAAAAA;
  447. vertical-align:none;
  448. text-align:left;
  449. text-transform:none;
  450. background-color:transparent;
  451. border-color:transparent;
  452. }
  453. #u30949_div {
  454. border-width:0px;
  455. position:absolute;
  456. left:0px;
  457. top:0px;
  458. width:374px;
  459. height:31px;
  460. background:inherit;
  461. background-color:rgba(255, 255, 255, 0);
  462. border:none;
  463. border-radius:0px;
  464. -moz-box-shadow:none;
  465. -webkit-box-shadow:none;
  466. box-shadow:none;
  467. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  468. font-weight:400;
  469. font-style:normal;
  470. color:#AAAAAA;
  471. }
  472. #u30949 {
  473. border-width:0px;
  474. position:absolute;
  475. left:256px;
  476. top:181px;
  477. width:374px;
  478. height:31px;
  479. display:flex;
  480. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  481. font-weight:400;
  482. font-style:normal;
  483. color:#AAAAAA;
  484. }
  485. #u30949 .text {
  486. position:absolute;
  487. align-self:center;
  488. padding:2px 2px 2px 2px;
  489. box-sizing:border-box;
  490. width:100%;
  491. }
  492. #u30949_div.disabled {
  493. border-width:0px;
  494. position:absolute;
  495. left:0px;
  496. top:0px;
  497. width:374px;
  498. height:31px;
  499. background:inherit;
  500. background-color:rgba(240, 240, 240, 1);
  501. border:none;
  502. border-radius:0px;
  503. -moz-box-shadow:none;
  504. -webkit-box-shadow:none;
  505. box-shadow:none;
  506. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  507. font-weight:400;
  508. font-style:normal;
  509. color:#AAAAAA;
  510. }
  511. #u30949.disabled {
  512. }
  513. #u30950 {
  514. border-width:0px;
  515. position:absolute;
  516. left:0px;
  517. top:0px;
  518. width:0px;
  519. height:0px;
  520. }
  521. #u30951_div {
  522. border-width:0px;
  523. position:absolute;
  524. left:0px;
  525. top:0px;
  526. width:597px;
  527. height:40px;
  528. background:inherit;
  529. background-color:rgba(255, 255, 255, 1);
  530. box-sizing:border-box;
  531. border-width:1px;
  532. border-style:solid;
  533. border-color:rgba(170, 170, 170, 1);
  534. border-radius:4px;
  535. -moz-box-shadow:none;
  536. -webkit-box-shadow:none;
  537. box-shadow:none;
  538. }
  539. #u30951 {
  540. border-width:0px;
  541. position:absolute;
  542. left:247px;
  543. top:1028px;
  544. width:597px;
  545. height:40px;
  546. display:flex;
  547. }
  548. #u30951 .text {
  549. position:absolute;
  550. align-self:center;
  551. padding:2px 2px 2px 0px;
  552. box-sizing:border-box;
  553. width:100%;
  554. }
  555. #u30951_text {
  556. border-width:0px;
  557. word-wrap:break-word;
  558. text-transform:none;
  559. visibility:hidden;
  560. }
  561. #u30952_input {
  562. position:absolute;
  563. left:0px;
  564. top:0px;
  565. width:567px;
  566. height:30px;
  567. padding:2px 2px 2px 0px;
  568. font-family:'ArialMT', 'Arial', sans-serif;
  569. font-weight:400;
  570. font-style:normal;
  571. font-size:13px;
  572. letter-spacing:normal;
  573. color:#AAAAAA;
  574. vertical-align:none;
  575. text-align:left;
  576. text-transform:none;
  577. background-color:transparent;
  578. border-color:transparent;
  579. }
  580. #u30952_input.disabled {
  581. position:absolute;
  582. left:0px;
  583. top:0px;
  584. width:567px;
  585. height:30px;
  586. padding:2px 2px 2px 0px;
  587. font-family:'ArialMT', 'Arial', sans-serif;
  588. font-weight:400;
  589. font-style:normal;
  590. font-size:13px;
  591. letter-spacing:normal;
  592. color:#AAAAAA;
  593. vertical-align:none;
  594. text-align:left;
  595. text-transform:none;
  596. background-color:transparent;
  597. border-color:transparent;
  598. }
  599. #u30952_div {
  600. border-width:0px;
  601. position:absolute;
  602. left:0px;
  603. top:0px;
  604. width:567px;
  605. height:30px;
  606. background:inherit;
  607. background-color:rgba(255, 255, 255, 1);
  608. border:none;
  609. border-radius:0px;
  610. -moz-box-shadow:none;
  611. -webkit-box-shadow:none;
  612. box-shadow:none;
  613. color:#AAAAAA;
  614. }
  615. #u30952 {
  616. border-width:0px;
  617. position:absolute;
  618. left:261px;
  619. top:1032px;
  620. width:567px;
  621. height:30px;
  622. display:flex;
  623. color:#AAAAAA;
  624. }
  625. #u30952 .text {
  626. position:absolute;
  627. align-self:flex-start;
  628. padding:2px 2px 2px 0px;
  629. box-sizing:border-box;
  630. width:100%;
  631. }
  632. #u30952_div.disabled {
  633. border-width:0px;
  634. position:absolute;
  635. left:0px;
  636. top:0px;
  637. width:567px;
  638. height:30px;
  639. background:inherit;
  640. background-color:rgba(240, 240, 240, 1);
  641. border:none;
  642. border-radius:0px;
  643. -moz-box-shadow:none;
  644. -webkit-box-shadow:none;
  645. box-shadow:none;
  646. color:#AAAAAA;
  647. }
  648. #u30952.disabled {
  649. }
  650. .u30952_input_option {
  651. }
  652. #u30953_div {
  653. border-width:0px;
  654. position:absolute;
  655. left:0px;
  656. top:0px;
  657. width:78px;
  658. height:30px;
  659. background:inherit;
  660. background-color:rgba(255, 255, 255, 0);
  661. border:none;
  662. border-top:0px;
  663. border-right:0px;
  664. border-bottom:0px;
  665. border-radius:0px;
  666. border-top-left-radius:0px;
  667. border-bottom-left-radius:0px;
  668. -moz-box-shadow:none;
  669. -webkit-box-shadow:none;
  670. box-shadow:none;
  671. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  672. font-weight:400;
  673. font-style:normal;
  674. font-size:14px;
  675. }
  676. #u30953 {
  677. border-width:0px;
  678. position:absolute;
  679. left:159px;
  680. top:181px;
  681. width:78px;
  682. height:30px;
  683. display:flex;
  684. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  685. font-weight:400;
  686. font-style:normal;
  687. font-size:14px;
  688. }
  689. #u30953 .text {
  690. position:absolute;
  691. align-self:center;
  692. padding:5px 0px 5px 0px;
  693. box-sizing:border-box;
  694. width:100%;
  695. }
  696. #u30953_text {
  697. border-width:0px;
  698. white-space:nowrap;
  699. text-transform:none;
  700. }
  701. #u30954 {
  702. border-width:0px;
  703. position:absolute;
  704. left:0px;
  705. top:0px;
  706. width:0px;
  707. height:0px;
  708. }
  709. #u30955_div {
  710. border-width:0px;
  711. position:absolute;
  712. left:0px;
  713. top:0px;
  714. width:597px;
  715. height:40px;
  716. background:inherit;
  717. background-color:rgba(255, 255, 255, 1);
  718. box-sizing:border-box;
  719. border-width:1px;
  720. border-style:solid;
  721. border-color:rgba(170, 170, 170, 1);
  722. border-radius:4px;
  723. -moz-box-shadow:none;
  724. -webkit-box-shadow:none;
  725. box-shadow:none;
  726. }
  727. #u30955 {
  728. border-width:0px;
  729. position:absolute;
  730. left:248px;
  731. top:930px;
  732. width:597px;
  733. height:40px;
  734. display:flex;
  735. }
  736. #u30955 .text {
  737. position:absolute;
  738. align-self:center;
  739. padding:2px 2px 2px 0px;
  740. box-sizing:border-box;
  741. width:100%;
  742. }
  743. #u30955_text {
  744. border-width:0px;
  745. word-wrap:break-word;
  746. text-transform:none;
  747. visibility:hidden;
  748. }
  749. #u30956_input {
  750. position:absolute;
  751. left:0px;
  752. top:0px;
  753. width:565px;
  754. height:30px;
  755. padding:2px 2px 2px 0px;
  756. font-family:'ArialMT', 'Arial', sans-serif;
  757. font-weight:400;
  758. font-style:normal;
  759. font-size:13px;
  760. letter-spacing:normal;
  761. color:#AAAAAA;
  762. vertical-align:none;
  763. text-align:left;
  764. text-transform:none;
  765. background-color:transparent;
  766. border-color:transparent;
  767. }
  768. #u30956_input.disabled {
  769. position:absolute;
  770. left:0px;
  771. top:0px;
  772. width:565px;
  773. height:30px;
  774. padding:2px 2px 2px 0px;
  775. font-family:'ArialMT', 'Arial', sans-serif;
  776. font-weight:400;
  777. font-style:normal;
  778. font-size:13px;
  779. letter-spacing:normal;
  780. color:#AAAAAA;
  781. vertical-align:none;
  782. text-align:left;
  783. text-transform:none;
  784. background-color:transparent;
  785. border-color:transparent;
  786. }
  787. #u30956_div {
  788. border-width:0px;
  789. position:absolute;
  790. left:0px;
  791. top:0px;
  792. width:565px;
  793. height:30px;
  794. background:inherit;
  795. background-color:rgba(255, 255, 255, 1);
  796. border:none;
  797. border-radius:0px;
  798. -moz-box-shadow:none;
  799. -webkit-box-shadow:none;
  800. box-shadow:none;
  801. color:#AAAAAA;
  802. }
  803. #u30956 {
  804. border-width:0px;
  805. position:absolute;
  806. left:264px;
  807. top:934px;
  808. width:565px;
  809. height:30px;
  810. display:flex;
  811. color:#AAAAAA;
  812. }
  813. #u30956 .text {
  814. position:absolute;
  815. align-self:flex-start;
  816. padding:2px 2px 2px 0px;
  817. box-sizing:border-box;
  818. width:100%;
  819. }
  820. #u30956_div.disabled {
  821. border-width:0px;
  822. position:absolute;
  823. left:0px;
  824. top:0px;
  825. width:565px;
  826. height:30px;
  827. background:inherit;
  828. background-color:rgba(240, 240, 240, 1);
  829. border:none;
  830. border-radius:0px;
  831. -moz-box-shadow:none;
  832. -webkit-box-shadow:none;
  833. box-shadow:none;
  834. color:#AAAAAA;
  835. }
  836. #u30956.disabled {
  837. }
  838. .u30956_input_option {
  839. }
  840. #u30957_div {
  841. border-width:0px;
  842. position:absolute;
  843. left:0px;
  844. top:0px;
  845. width:71px;
  846. height:30px;
  847. background:inherit;
  848. background-color:rgba(255, 255, 255, 0);
  849. border:none;
  850. border-top:0px;
  851. border-right:0px;
  852. border-bottom:0px;
  853. border-radius:0px;
  854. border-top-left-radius:0px;
  855. border-bottom-left-radius:0px;
  856. -moz-box-shadow:none;
  857. -webkit-box-shadow:none;
  858. box-shadow:none;
  859. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  860. font-weight:400;
  861. font-style:normal;
  862. font-size:14px;
  863. text-align:right;
  864. }
  865. #u30957 {
  866. border-width:0px;
  867. position:absolute;
  868. left:166px;
  869. top:935px;
  870. width:71px;
  871. height:30px;
  872. display:flex;
  873. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  874. font-weight:400;
  875. font-style:normal;
  876. font-size:14px;
  877. text-align:right;
  878. }
  879. #u30957 .text {
  880. position:absolute;
  881. align-self:center;
  882. padding:5px 0px 5px 0px;
  883. box-sizing:border-box;
  884. width:100%;
  885. }
  886. #u30957_text {
  887. border-width:0px;
  888. white-space:nowrap;
  889. text-transform:none;
  890. }
  891. #u30958_div {
  892. border-width:0px;
  893. position:absolute;
  894. left:0px;
  895. top:0px;
  896. width:71px;
  897. height:30px;
  898. background:inherit;
  899. background-color:rgba(255, 255, 255, 0);
  900. border:none;
  901. border-top:0px;
  902. border-right:0px;
  903. border-bottom:0px;
  904. border-radius:0px;
  905. border-top-left-radius:0px;
  906. border-bottom-left-radius:0px;
  907. -moz-box-shadow:none;
  908. -webkit-box-shadow:none;
  909. box-shadow:none;
  910. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  911. font-weight:400;
  912. font-style:normal;
  913. font-size:14px;
  914. text-align:right;
  915. }
  916. #u30958 {
  917. border-width:0px;
  918. position:absolute;
  919. left:166px;
  920. top:983px;
  921. width:71px;
  922. height:30px;
  923. display:flex;
  924. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  925. font-weight:400;
  926. font-style:normal;
  927. font-size:14px;
  928. text-align:right;
  929. }
  930. #u30958 .text {
  931. position:absolute;
  932. align-self:center;
  933. padding:5px 0px 5px 0px;
  934. box-sizing:border-box;
  935. width:100%;
  936. }
  937. #u30958_text {
  938. border-width:0px;
  939. white-space:nowrap;
  940. text-transform:none;
  941. }
  942. #u30959 {
  943. border-width:0px;
  944. position:absolute;
  945. left:0px;
  946. top:0px;
  947. width:0px;
  948. height:0px;
  949. }
  950. #u30960_div {
  951. border-width:0px;
  952. position:absolute;
  953. left:0px;
  954. top:0px;
  955. width:597px;
  956. height:80px;
  957. background:inherit;
  958. background-color:rgba(255, 255, 255, 1);
  959. box-sizing:border-box;
  960. border-width:1px;
  961. border-style:solid;
  962. border-color:rgba(201, 201, 201, 1);
  963. border-radius:4px;
  964. -moz-box-shadow:none;
  965. -webkit-box-shadow:none;
  966. box-shadow:none;
  967. font-family:'Microsoft YaHei', sans-serif;
  968. font-weight:400;
  969. font-style:normal;
  970. font-size:14px;
  971. color:#CCCCCC;
  972. text-align:left;
  973. }
  974. #u30960 {
  975. border-width:0px;
  976. position:absolute;
  977. left:248px;
  978. top:366px;
  979. width:597px;
  980. height:80px;
  981. display:flex;
  982. font-family:'Microsoft YaHei', sans-serif;
  983. font-weight:400;
  984. font-style:normal;
  985. font-size:14px;
  986. color:#CCCCCC;
  987. text-align:left;
  988. }
  989. #u30960 .text {
  990. position:absolute;
  991. align-self:center;
  992. padding:2px 8px 2px 8px;
  993. box-sizing:border-box;
  994. width:100%;
  995. }
  996. #u30960_text {
  997. border-width:0px;
  998. word-wrap:break-word;
  999. text-transform:none;
  1000. visibility:hidden;
  1001. }
  1002. #u30961_input {
  1003. position:absolute;
  1004. left:0px;
  1005. top:0px;
  1006. width:567px;
  1007. height:60px;
  1008. padding:2px 2px 2px 2px;
  1009. font-family:'ArialMT', 'Arial', sans-serif;
  1010. font-weight:400;
  1011. font-style:normal;
  1012. font-size:13px;
  1013. letter-spacing:normal;
  1014. color:#000000;
  1015. vertical-align:none;
  1016. text-align:left;
  1017. text-transform:none;
  1018. background-color:transparent;
  1019. border-color:transparent;
  1020. resize:none;
  1021. }
  1022. #u30961_input.disabled {
  1023. position:absolute;
  1024. left:0px;
  1025. top:0px;
  1026. width:567px;
  1027. height:60px;
  1028. padding:2px 2px 2px 2px;
  1029. font-family:'ArialMT', 'Arial', sans-serif;
  1030. font-weight:400;
  1031. font-style:normal;
  1032. font-size:13px;
  1033. letter-spacing:normal;
  1034. color:#000000;
  1035. vertical-align:none;
  1036. text-align:left;
  1037. text-transform:none;
  1038. background-color:transparent;
  1039. border-color:transparent;
  1040. resize:none;
  1041. }
  1042. #u30961_div {
  1043. border-width:0px;
  1044. position:absolute;
  1045. left:0px;
  1046. top:0px;
  1047. width:567px;
  1048. height:60px;
  1049. background:inherit;
  1050. background-color:rgba(255, 255, 255, 1);
  1051. border:none;
  1052. border-radius:0px;
  1053. -moz-box-shadow:none;
  1054. -webkit-box-shadow:none;
  1055. box-shadow:none;
  1056. }
  1057. #u30961 {
  1058. border-width:0px;
  1059. position:absolute;
  1060. left:262px;
  1061. top:376px;
  1062. width:567px;
  1063. height:60px;
  1064. display:flex;
  1065. }
  1066. #u30961 .text {
  1067. position:absolute;
  1068. align-self:flex-start;
  1069. padding:2px 2px 2px 2px;
  1070. box-sizing:border-box;
  1071. width:100%;
  1072. }
  1073. #u30961_div.disabled {
  1074. border-width:0px;
  1075. position:absolute;
  1076. left:0px;
  1077. top:0px;
  1078. width:567px;
  1079. height:60px;
  1080. background:inherit;
  1081. background-color:rgba(240, 240, 240, 1);
  1082. border:none;
  1083. border-radius:0px;
  1084. -moz-box-shadow:none;
  1085. -webkit-box-shadow:none;
  1086. box-shadow:none;
  1087. }
  1088. #u30961.disabled {
  1089. }
  1090. #u30962_div {
  1091. border-width:0px;
  1092. position:absolute;
  1093. left:0px;
  1094. top:0px;
  1095. width:95px;
  1096. height:24px;
  1097. background:inherit;
  1098. background-color:rgba(255, 255, 255, 0);
  1099. border:none;
  1100. border-top:0px;
  1101. border-right:0px;
  1102. border-bottom:0px;
  1103. border-radius:0px;
  1104. border-top-left-radius:0px;
  1105. border-bottom-left-radius:0px;
  1106. -moz-box-shadow:none;
  1107. -webkit-box-shadow:none;
  1108. box-shadow:none;
  1109. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1110. font-weight:400;
  1111. font-style:normal;
  1112. font-size:10px;
  1113. color:#7F7F7F;
  1114. text-align:right;
  1115. }
  1116. #u30962 {
  1117. border-width:0px;
  1118. position:absolute;
  1119. left:750px;
  1120. top:419px;
  1121. width:95px;
  1122. height:24px;
  1123. display:flex;
  1124. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1125. font-weight:400;
  1126. font-style:normal;
  1127. font-size:10px;
  1128. color:#7F7F7F;
  1129. text-align:right;
  1130. }
  1131. #u30962 .text {
  1132. position:absolute;
  1133. align-self:center;
  1134. padding:5px 10px 5px 0px;
  1135. box-sizing:border-box;
  1136. width:100%;
  1137. }
  1138. #u30962_text {
  1139. border-width:0px;
  1140. word-wrap:break-word;
  1141. text-transform:none;
  1142. }
  1143. #u30963_div {
  1144. border-width:0px;
  1145. position:absolute;
  1146. left:0px;
  1147. top:0px;
  1148. width:43px;
  1149. height:30px;
  1150. background:inherit;
  1151. background-color:rgba(255, 255, 255, 0);
  1152. border:none;
  1153. border-top:0px;
  1154. border-right:0px;
  1155. border-bottom:0px;
  1156. border-radius:0px;
  1157. border-top-left-radius:0px;
  1158. border-bottom-left-radius:0px;
  1159. -moz-box-shadow:none;
  1160. -webkit-box-shadow:none;
  1161. box-shadow:none;
  1162. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1163. font-weight:400;
  1164. font-style:normal;
  1165. font-size:14px;
  1166. text-align:right;
  1167. }
  1168. #u30963 {
  1169. border-width:0px;
  1170. position:absolute;
  1171. left:194px;
  1172. top:376px;
  1173. width:43px;
  1174. height:30px;
  1175. display:flex;
  1176. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1177. font-weight:400;
  1178. font-style:normal;
  1179. font-size:14px;
  1180. text-align:right;
  1181. }
  1182. #u30963 .text {
  1183. position:absolute;
  1184. align-self:center;
  1185. padding:5px 0px 5px 0px;
  1186. box-sizing:border-box;
  1187. width:100%;
  1188. }
  1189. #u30963_text {
  1190. border-width:0px;
  1191. white-space:nowrap;
  1192. text-transform:none;
  1193. }
  1194. #u30964 {
  1195. border-width:0px;
  1196. position:absolute;
  1197. left:0px;
  1198. top:0px;
  1199. width:0px;
  1200. height:0px;
  1201. }
  1202. #u30965_div {
  1203. border-width:0px;
  1204. position:absolute;
  1205. left:0px;
  1206. top:0px;
  1207. width:597px;
  1208. height:40px;
  1209. background:inherit;
  1210. background-color:rgba(255, 255, 255, 1);
  1211. box-sizing:border-box;
  1212. border-width:1px;
  1213. border-style:solid;
  1214. border-color:rgba(170, 170, 170, 1);
  1215. border-radius:4px;
  1216. -moz-box-shadow:none;
  1217. -webkit-box-shadow:none;
  1218. box-shadow:none;
  1219. }
  1220. #u30965 {
  1221. border-width:0px;
  1222. position:absolute;
  1223. left:248px;
  1224. top:978px;
  1225. width:597px;
  1226. height:40px;
  1227. display:flex;
  1228. }
  1229. #u30965 .text {
  1230. position:absolute;
  1231. align-self:center;
  1232. padding:2px 2px 2px 0px;
  1233. box-sizing:border-box;
  1234. width:100%;
  1235. }
  1236. #u30965_text {
  1237. border-width:0px;
  1238. word-wrap:break-word;
  1239. text-transform:none;
  1240. visibility:hidden;
  1241. }
  1242. #u30966_input {
  1243. position:absolute;
  1244. left:0px;
  1245. top:0px;
  1246. width:565px;
  1247. height:30px;
  1248. padding:2px 2px 2px 0px;
  1249. font-family:'ArialMT', 'Arial', sans-serif;
  1250. font-weight:400;
  1251. font-style:normal;
  1252. font-size:13px;
  1253. letter-spacing:normal;
  1254. color:#AAAAAA;
  1255. vertical-align:none;
  1256. text-align:left;
  1257. text-transform:none;
  1258. background-color:transparent;
  1259. border-color:transparent;
  1260. }
  1261. #u30966_input.disabled {
  1262. position:absolute;
  1263. left:0px;
  1264. top:0px;
  1265. width:565px;
  1266. height:30px;
  1267. padding:2px 2px 2px 0px;
  1268. font-family:'ArialMT', 'Arial', sans-serif;
  1269. font-weight:400;
  1270. font-style:normal;
  1271. font-size:13px;
  1272. letter-spacing:normal;
  1273. color:#AAAAAA;
  1274. vertical-align:none;
  1275. text-align:left;
  1276. text-transform:none;
  1277. background-color:transparent;
  1278. border-color:transparent;
  1279. }
  1280. #u30966_div {
  1281. border-width:0px;
  1282. position:absolute;
  1283. left:0px;
  1284. top:0px;
  1285. width:565px;
  1286. height:30px;
  1287. background:inherit;
  1288. background-color:rgba(255, 255, 255, 1);
  1289. border:none;
  1290. border-radius:0px;
  1291. -moz-box-shadow:none;
  1292. -webkit-box-shadow:none;
  1293. box-shadow:none;
  1294. color:#AAAAAA;
  1295. }
  1296. #u30966 {
  1297. border-width:0px;
  1298. position:absolute;
  1299. left:264px;
  1300. top:982px;
  1301. width:565px;
  1302. height:30px;
  1303. display:flex;
  1304. color:#AAAAAA;
  1305. }
  1306. #u30966 .text {
  1307. position:absolute;
  1308. align-self:flex-start;
  1309. padding:2px 2px 2px 0px;
  1310. box-sizing:border-box;
  1311. width:100%;
  1312. }
  1313. #u30966_div.disabled {
  1314. border-width:0px;
  1315. position:absolute;
  1316. left:0px;
  1317. top:0px;
  1318. width:565px;
  1319. height:30px;
  1320. background:inherit;
  1321. background-color:rgba(240, 240, 240, 1);
  1322. border:none;
  1323. border-radius:0px;
  1324. -moz-box-shadow:none;
  1325. -webkit-box-shadow:none;
  1326. box-shadow:none;
  1327. color:#AAAAAA;
  1328. }
  1329. #u30966.disabled {
  1330. }
  1331. .u30966_input_option {
  1332. }
  1333. #u30967 {
  1334. border-width:0px;
  1335. position:absolute;
  1336. left:0px;
  1337. top:0px;
  1338. width:0px;
  1339. height:0px;
  1340. }
  1341. #u30968_div {
  1342. border-width:0px;
  1343. position:absolute;
  1344. left:0px;
  1345. top:0px;
  1346. width:200px;
  1347. height:130px;
  1348. background:inherit;
  1349. background-color:rgba(255, 255, 255, 1);
  1350. box-sizing:border-box;
  1351. border-width:1px;
  1352. border-style:solid;
  1353. border-color:rgba(215, 215, 215, 1);
  1354. border-radius:4px;
  1355. -moz-box-shadow:none;
  1356. -webkit-box-shadow:none;
  1357. box-shadow:none;
  1358. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1359. font-weight:400;
  1360. font-style:normal;
  1361. font-size:40px;
  1362. color:#CCCCCC;
  1363. }
  1364. #u30968 {
  1365. border-width:0px;
  1366. position:absolute;
  1367. left:248px;
  1368. top:226px;
  1369. width:200px;
  1370. height:130px;
  1371. display:flex;
  1372. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1373. font-weight:400;
  1374. font-style:normal;
  1375. font-size:40px;
  1376. color:#CCCCCC;
  1377. }
  1378. #u30968 .text {
  1379. position:absolute;
  1380. align-self:center;
  1381. padding:2px 8px 2px 8px;
  1382. box-sizing:border-box;
  1383. width:100%;
  1384. }
  1385. #u30968_text {
  1386. border-width:0px;
  1387. word-wrap:break-word;
  1388. text-transform:none;
  1389. }
  1390. #u30969_div {
  1391. border-width:0px;
  1392. position:absolute;
  1393. left:0px;
  1394. top:0px;
  1395. width:381px;
  1396. height:50px;
  1397. background:inherit;
  1398. background-color:rgba(255, 255, 255, 0);
  1399. border:none;
  1400. border-top:0px;
  1401. border-right:0px;
  1402. border-bottom:0px;
  1403. border-radius:0px;
  1404. border-top-left-radius:0px;
  1405. border-bottom-left-radius:0px;
  1406. -moz-box-shadow:none;
  1407. -webkit-box-shadow:none;
  1408. box-shadow:none;
  1409. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1410. font-weight:400;
  1411. font-style:normal;
  1412. font-size:14px;
  1413. color:#BCBCBC;
  1414. }
  1415. #u30969 {
  1416. border-width:0px;
  1417. position:absolute;
  1418. left:464px;
  1419. top:277px;
  1420. width:381px;
  1421. height:50px;
  1422. display:flex;
  1423. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1424. font-weight:400;
  1425. font-style:normal;
  1426. font-size:14px;
  1427. color:#BCBCBC;
  1428. }
  1429. #u30969 .text {
  1430. position:absolute;
  1431. align-self:center;
  1432. padding:5px 10px 5px 0px;
  1433. box-sizing:border-box;
  1434. width:100%;
  1435. }
  1436. #u30969_text {
  1437. border-width:0px;
  1438. word-wrap:break-word;
  1439. text-transform:none;
  1440. }
  1441. #u30970_div {
  1442. border-width:0px;
  1443. position:absolute;
  1444. left:0px;
  1445. top:0px;
  1446. width:43px;
  1447. height:30px;
  1448. background:inherit;
  1449. background-color:rgba(255, 255, 255, 0);
  1450. border:none;
  1451. border-top:0px;
  1452. border-right:0px;
  1453. border-bottom:0px;
  1454. border-radius:0px;
  1455. border-top-left-radius:0px;
  1456. border-bottom-left-radius:0px;
  1457. -moz-box-shadow:none;
  1458. -webkit-box-shadow:none;
  1459. box-shadow:none;
  1460. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1461. font-weight:400;
  1462. font-style:normal;
  1463. font-size:14px;
  1464. text-align:right;
  1465. }
  1466. #u30970 {
  1467. border-width:0px;
  1468. position:absolute;
  1469. left:194px;
  1470. top:226px;
  1471. width:43px;
  1472. height:30px;
  1473. display:flex;
  1474. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1475. font-weight:400;
  1476. font-style:normal;
  1477. font-size:14px;
  1478. text-align:right;
  1479. }
  1480. #u30970 .text {
  1481. position:absolute;
  1482. align-self:center;
  1483. padding:5px 0px 5px 0px;
  1484. box-sizing:border-box;
  1485. width:100%;
  1486. }
  1487. #u30970_text {
  1488. border-width:0px;
  1489. white-space:nowrap;
  1490. text-transform:none;
  1491. }
  1492. #u30971_div {
  1493. border-width:0px;
  1494. position:absolute;
  1495. left:0px;
  1496. top:0px;
  1497. width:78px;
  1498. height:30px;
  1499. background:inherit;
  1500. background-color:rgba(255, 255, 255, 0);
  1501. border:none;
  1502. border-top:0px;
  1503. border-right:0px;
  1504. border-bottom:0px;
  1505. border-radius:0px;
  1506. border-top-left-radius:0px;
  1507. border-bottom-left-radius:0px;
  1508. -moz-box-shadow:none;
  1509. -webkit-box-shadow:none;
  1510. box-shadow:none;
  1511. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1512. font-weight:400;
  1513. font-style:normal;
  1514. font-size:14px;
  1515. text-align:right;
  1516. }
  1517. #u30971 {
  1518. border-width:0px;
  1519. position:absolute;
  1520. left:159px;
  1521. top:457px;
  1522. width:78px;
  1523. height:30px;
  1524. display:flex;
  1525. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1526. font-weight:400;
  1527. font-style:normal;
  1528. font-size:14px;
  1529. text-align:right;
  1530. }
  1531. #u30971 .text {
  1532. position:absolute;
  1533. align-self:center;
  1534. padding:5px 0px 5px 0px;
  1535. box-sizing:border-box;
  1536. width:100%;
  1537. }
  1538. #u30971_text {
  1539. border-width:0px;
  1540. white-space:nowrap;
  1541. text-transform:none;
  1542. }
  1543. #u30972_img {
  1544. border-width:0px;
  1545. position:absolute;
  1546. left:0px;
  1547. top:0px;
  1548. width:603px;
  1549. height:292px;
  1550. }
  1551. #u30972 {
  1552. border-width:0px;
  1553. position:absolute;
  1554. left:248px;
  1555. top:456px;
  1556. width:603px;
  1557. height:292px;
  1558. display:flex;
  1559. font-family:'Microsoft YaHei', sans-serif;
  1560. font-weight:400;
  1561. font-style:normal;
  1562. font-size:14px;
  1563. }
  1564. #u30972 .text {
  1565. position:absolute;
  1566. align-self:center;
  1567. padding:2px 2px 2px 2px;
  1568. box-sizing:border-box;
  1569. width:100%;
  1570. }
  1571. #u30972_text {
  1572. border-width:0px;
  1573. word-wrap:break-word;
  1574. text-transform:none;
  1575. visibility:hidden;
  1576. }
  1577. #u30973_div {
  1578. border-width:0px;
  1579. position:absolute;
  1580. left:0px;
  1581. top:0px;
  1582. width:71px;
  1583. height:30px;
  1584. background:inherit;
  1585. background-color:rgba(255, 255, 255, 0);
  1586. border:none;
  1587. border-top:0px;
  1588. border-right:0px;
  1589. border-bottom:0px;
  1590. border-radius:0px;
  1591. border-top-left-radius:0px;
  1592. border-bottom-left-radius:0px;
  1593. -moz-box-shadow:none;
  1594. -webkit-box-shadow:none;
  1595. box-shadow:none;
  1596. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1597. font-weight:400;
  1598. font-style:normal;
  1599. font-size:14px;
  1600. text-align:right;
  1601. }
  1602. #u30973 {
  1603. border-width:0px;
  1604. position:absolute;
  1605. left:169px;
  1606. top:850px;
  1607. width:71px;
  1608. height:30px;
  1609. display:flex;
  1610. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1611. font-weight:400;
  1612. font-style:normal;
  1613. font-size:14px;
  1614. text-align:right;
  1615. }
  1616. #u30973 .text {
  1617. position:absolute;
  1618. align-self:center;
  1619. padding:5px 0px 5px 0px;
  1620. box-sizing:border-box;
  1621. width:100%;
  1622. }
  1623. #u30973_text {
  1624. border-width:0px;
  1625. white-space:nowrap;
  1626. text-transform:none;
  1627. }
  1628. #u30974_div {
  1629. border-width:0px;
  1630. position:absolute;
  1631. left:0px;
  1632. top:0px;
  1633. width:135px;
  1634. height:30px;
  1635. background:inherit;
  1636. background-color:rgba(24, 144, 255, 1);
  1637. border:none;
  1638. border-radius:4px;
  1639. -moz-box-shadow:none;
  1640. -webkit-box-shadow:none;
  1641. box-shadow:none;
  1642. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1643. font-weight:400;
  1644. font-style:normal;
  1645. font-size:14px;
  1646. color:#FFFFFF;
  1647. }
  1648. #u30974 {
  1649. border-width:0px;
  1650. position:absolute;
  1651. left:251px;
  1652. top:850px;
  1653. width:135px;
  1654. height:30px;
  1655. display:flex;
  1656. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1657. font-weight:400;
  1658. font-style:normal;
  1659. font-size:14px;
  1660. color:#FFFFFF;
  1661. }
  1662. #u30974 .text {
  1663. position:absolute;
  1664. align-self:center;
  1665. padding:2px 2px 2px 2px;
  1666. box-sizing:border-box;
  1667. width:100%;
  1668. }
  1669. #u30974_text {
  1670. border-width:0px;
  1671. word-wrap:break-word;
  1672. text-transform:none;
  1673. }
  1674. #u30975 {
  1675. border-width:0px;
  1676. position:absolute;
  1677. left:0px;
  1678. top:0px;
  1679. width:0px;
  1680. height:0px;
  1681. }
  1682. #u30976_div {
  1683. border-width:0px;
  1684. position:absolute;
  1685. left:0px;
  1686. top:0px;
  1687. width:160px;
  1688. height:30px;
  1689. background:inherit;
  1690. background-color:rgba(255, 255, 255, 1);
  1691. box-sizing:border-box;
  1692. border-width:1px;
  1693. border-style:solid;
  1694. border-color:rgba(201, 201, 201, 1);
  1695. border-radius:0px;
  1696. -moz-box-shadow:none;
  1697. -webkit-box-shadow:none;
  1698. box-shadow:none;
  1699. font-family:'Microsoft YaHei', sans-serif;
  1700. font-weight:400;
  1701. font-style:normal;
  1702. font-size:12px;
  1703. color:#666666;
  1704. text-align:left;
  1705. }
  1706. #u30976 {
  1707. border-width:0px;
  1708. position:absolute;
  1709. left:250px;
  1710. top:758px;
  1711. width:160px;
  1712. height:30px;
  1713. display:flex;
  1714. font-family:'Microsoft YaHei', sans-serif;
  1715. font-weight:400;
  1716. font-style:normal;
  1717. font-size:12px;
  1718. color:#666666;
  1719. text-align:left;
  1720. }
  1721. #u30976 .text {
  1722. position:absolute;
  1723. align-self:center;
  1724. padding:2px 2px 2px 2px;
  1725. box-sizing:border-box;
  1726. width:100%;
  1727. }
  1728. #u30976_text {
  1729. border-width:0px;
  1730. word-wrap:break-word;
  1731. text-transform:none;
  1732. visibility:hidden;
  1733. }
  1734. #u30977_input {
  1735. position:absolute;
  1736. left:0px;
  1737. top:0px;
  1738. width:119px;
  1739. height:25px;
  1740. padding:2px 2px 2px 2px;
  1741. font-family:'Microsoft YaHei', sans-serif;
  1742. font-weight:400;
  1743. font-style:normal;
  1744. font-size:12px;
  1745. letter-spacing:normal;
  1746. color:#666666;
  1747. vertical-align:none;
  1748. text-align:left;
  1749. text-transform:none;
  1750. background-color:transparent;
  1751. border-color:transparent;
  1752. }
  1753. #u30977_input.disabled {
  1754. position:absolute;
  1755. left:0px;
  1756. top:0px;
  1757. width:119px;
  1758. height:25px;
  1759. padding:2px 2px 2px 2px;
  1760. font-family:'Microsoft YaHei', sans-serif;
  1761. font-weight:400;
  1762. font-style:normal;
  1763. font-size:12px;
  1764. letter-spacing:normal;
  1765. color:#666666;
  1766. vertical-align:none;
  1767. text-align:left;
  1768. text-transform:none;
  1769. background-color:transparent;
  1770. border-color:transparent;
  1771. }
  1772. #u30977_div {
  1773. border-width:0px;
  1774. position:absolute;
  1775. left:0px;
  1776. top:0px;
  1777. width:119px;
  1778. height:25px;
  1779. background:inherit;
  1780. background-color:rgba(255, 255, 255, 1);
  1781. border:none;
  1782. border-radius:0px;
  1783. -moz-box-shadow:none;
  1784. -webkit-box-shadow:none;
  1785. box-shadow:none;
  1786. font-family:'Microsoft YaHei', sans-serif;
  1787. font-weight:400;
  1788. font-style:normal;
  1789. font-size:12px;
  1790. color:#666666;
  1791. }
  1792. #u30977 {
  1793. border-width:0px;
  1794. position:absolute;
  1795. left:259px;
  1796. top:761px;
  1797. width:119px;
  1798. height:25px;
  1799. display:flex;
  1800. font-family:'Microsoft YaHei', sans-serif;
  1801. font-weight:400;
  1802. font-style:normal;
  1803. font-size:12px;
  1804. color:#666666;
  1805. }
  1806. #u30977 .text {
  1807. position:absolute;
  1808. align-self:center;
  1809. padding:2px 2px 2px 2px;
  1810. box-sizing:border-box;
  1811. width:100%;
  1812. }
  1813. #u30977_div.disabled {
  1814. border-width:0px;
  1815. position:absolute;
  1816. left:0px;
  1817. top:0px;
  1818. width:119px;
  1819. height:25px;
  1820. background:inherit;
  1821. background-color:rgba(240, 240, 240, 1);
  1822. border:none;
  1823. border-radius:0px;
  1824. -moz-box-shadow:none;
  1825. -webkit-box-shadow:none;
  1826. box-shadow:none;
  1827. font-family:'Microsoft YaHei', sans-serif;
  1828. font-weight:400;
  1829. font-style:normal;
  1830. font-size:12px;
  1831. color:#666666;
  1832. }
  1833. #u30977.disabled {
  1834. }
  1835. #u30978_div {
  1836. border-width:0px;
  1837. position:absolute;
  1838. left:0px;
  1839. top:0px;
  1840. width:72px;
  1841. height:30px;
  1842. background:inherit;
  1843. background-color:rgba(107, 107, 107, 1);
  1844. border:none;
  1845. border-radius:0px;
  1846. -moz-box-shadow:none;
  1847. -webkit-box-shadow:none;
  1848. box-shadow:none;
  1849. font-family:'Microsoft YaHei', sans-serif;
  1850. font-weight:400;
  1851. font-style:normal;
  1852. font-size:14px;
  1853. color:#FFFFFF;
  1854. }
  1855. #u30978 {
  1856. border-width:0px;
  1857. position:absolute;
  1858. left:420px;
  1859. top:758px;
  1860. width:72px;
  1861. height:30px;
  1862. display:flex;
  1863. font-family:'Microsoft YaHei', sans-serif;
  1864. font-weight:400;
  1865. font-style:normal;
  1866. font-size:14px;
  1867. color:#FFFFFF;
  1868. }
  1869. #u30978 .text {
  1870. position:absolute;
  1871. align-self:center;
  1872. padding:2px 2px 2px 2px;
  1873. box-sizing:border-box;
  1874. width:100%;
  1875. }
  1876. #u30978_text {
  1877. border-width:0px;
  1878. word-wrap:break-word;
  1879. text-transform:none;
  1880. }
  1881. #u30979_div {
  1882. border-width:0px;
  1883. position:absolute;
  1884. left:0px;
  1885. top:0px;
  1886. width:71px;
  1887. height:20px;
  1888. background:inherit;
  1889. background-color:rgba(255, 255, 255, 0);
  1890. border:none;
  1891. border-radius:0px;
  1892. -moz-box-shadow:none;
  1893. -webkit-box-shadow:none;
  1894. box-shadow:none;
  1895. font-family:'Microsoft YaHei', sans-serif;
  1896. font-weight:400;
  1897. font-style:normal;
  1898. font-size:14px;
  1899. text-align:right;
  1900. }
  1901. #u30979 {
  1902. border-width:0px;
  1903. position:absolute;
  1904. left:169px;
  1905. top:761px;
  1906. width:71px;
  1907. height:20px;
  1908. display:flex;
  1909. font-family:'Microsoft YaHei', sans-serif;
  1910. font-weight:400;
  1911. font-style:normal;
  1912. font-size:14px;
  1913. text-align:right;
  1914. }
  1915. #u30979 .text {
  1916. position:absolute;
  1917. align-self:flex-start;
  1918. padding:0px 0px 0px 0px;
  1919. box-sizing:border-box;
  1920. width:100%;
  1921. }
  1922. #u30979_text {
  1923. border-width:0px;
  1924. white-space:nowrap;
  1925. text-transform:none;
  1926. }
  1927. #u30980 {
  1928. border-width:0px;
  1929. position:absolute;
  1930. left:0px;
  1931. top:0px;
  1932. width:0px;
  1933. height:0px;
  1934. }
  1935. #u30981_div {
  1936. border-width:0px;
  1937. position:absolute;
  1938. left:0px;
  1939. top:0px;
  1940. width:100px;
  1941. height:30px;
  1942. background:inherit;
  1943. background-color:rgba(255, 255, 255, 1);
  1944. box-sizing:border-box;
  1945. border-width:1px;
  1946. border-style:solid;
  1947. border-color:rgba(228, 228, 228, 1);
  1948. border-radius:0px;
  1949. -moz-box-shadow:none;
  1950. -webkit-box-shadow:none;
  1951. box-shadow:none;
  1952. }
  1953. #u30981 {
  1954. border-width:0px;
  1955. position:absolute;
  1956. left:250px;
  1957. top:800px;
  1958. width:100px;
  1959. height:30px;
  1960. display:flex;
  1961. }
  1962. #u30981 .text {
  1963. position:absolute;
  1964. align-self:center;
  1965. padding:2px 2px 2px 2px;
  1966. box-sizing:border-box;
  1967. width:100%;
  1968. }
  1969. #u30981_text {
  1970. border-width:0px;
  1971. word-wrap:break-word;
  1972. text-transform:none;
  1973. visibility:hidden;
  1974. }
  1975. #u30982_div {
  1976. border-width:0px;
  1977. position:absolute;
  1978. left:0px;
  1979. top:0px;
  1980. width:57px;
  1981. height:20px;
  1982. background:inherit;
  1983. background-color:rgba(255, 255, 255, 0);
  1984. border:none;
  1985. border-radius:0px;
  1986. -moz-box-shadow:none;
  1987. -webkit-box-shadow:none;
  1988. box-shadow:none;
  1989. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1990. font-weight:400;
  1991. font-style:normal;
  1992. font-size:14px;
  1993. }
  1994. #u30982 {
  1995. border-width:0px;
  1996. position:absolute;
  1997. left:259px;
  1998. top:805px;
  1999. width:57px;
  2000. height:20px;
  2001. display:flex;
  2002. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2003. font-weight:400;
  2004. font-style:normal;
  2005. font-size:14px;
  2006. }
  2007. #u30982 .text {
  2008. position:absolute;
  2009. align-self:flex-start;
  2010. padding:0px 0px 0px 0px;
  2011. box-sizing:border-box;
  2012. width:100%;
  2013. }
  2014. #u30982_text {
  2015. border-width:0px;
  2016. white-space:nowrap;
  2017. text-transform:none;
  2018. }
  2019. #u30983_img {
  2020. border-width:0px;
  2021. position:absolute;
  2022. left:0px;
  2023. top:0px;
  2024. width:11px;
  2025. height:11px;
  2026. }
  2027. #u30983 {
  2028. border-width:0px;
  2029. position:absolute;
  2030. left:328px;
  2031. top:810px;
  2032. width:11px;
  2033. height:11px;
  2034. display:flex;
  2035. }
  2036. #u30983 .text {
  2037. position:absolute;
  2038. align-self:center;
  2039. padding:2px 2px 2px 2px;
  2040. box-sizing:border-box;
  2041. width:100%;
  2042. }
  2043. #u30983_text {
  2044. border-width:0px;
  2045. word-wrap:break-word;
  2046. text-transform:none;
  2047. visibility:hidden;
  2048. }
  2049. #u30984_div {
  2050. border-width:0px;
  2051. position:absolute;
  2052. left:0px;
  2053. top:0px;
  2054. width:211px;
  2055. height:16px;
  2056. background:inherit;
  2057. background-color:rgba(255, 255, 255, 0);
  2058. border:none;
  2059. border-radius:0px;
  2060. -moz-box-shadow:none;
  2061. -webkit-box-shadow:none;
  2062. box-shadow:none;
  2063. font-family:'Microsoft YaHei', sans-serif;
  2064. font-weight:400;
  2065. font-style:normal;
  2066. font-size:14px;
  2067. }
  2068. #u30984 {
  2069. border-width:0px;
  2070. position:absolute;
  2071. left:466px;
  2072. top:245px;
  2073. width:211px;
  2074. height:16px;
  2075. display:flex;
  2076. font-family:'Microsoft YaHei', sans-serif;
  2077. font-weight:400;
  2078. font-style:normal;
  2079. font-size:14px;
  2080. }
  2081. #u30984 .text {
  2082. position:absolute;
  2083. align-self:flex-start;
  2084. padding:0px 0px 0px 0px;
  2085. box-sizing:border-box;
  2086. width:100%;
  2087. }
  2088. #u30984_text {
  2089. border-width:0px;
  2090. white-space:nowrap;
  2091. text-transform:none;
  2092. }
  2093. #u30985 {
  2094. border-width:0px;
  2095. position:absolute;
  2096. left:0px;
  2097. top:0px;
  2098. width:0px;
  2099. height:0px;
  2100. }
  2101. #u30986_div {
  2102. border-width:0px;
  2103. position:absolute;
  2104. left:0px;
  2105. top:0px;
  2106. width:154px;
  2107. height:20px;
  2108. background:inherit;
  2109. background-color:rgba(255, 255, 255, 0);
  2110. border:none;
  2111. border-radius:0px;
  2112. -moz-box-shadow:none;
  2113. -webkit-box-shadow:none;
  2114. box-shadow:none;
  2115. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2116. font-weight:400;
  2117. font-style:normal;
  2118. font-size:14px;
  2119. }
  2120. #u30986 {
  2121. border-width:0px;
  2122. position:absolute;
  2123. left:262px;
  2124. top:895px;
  2125. width:154px;
  2126. height:20px;
  2127. display:flex;
  2128. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2129. font-weight:400;
  2130. font-style:normal;
  2131. font-size:14px;
  2132. }
  2133. #u30986 .text {
  2134. position:absolute;
  2135. align-self:flex-start;
  2136. padding:0px 0px 0px 0px;
  2137. box-sizing:border-box;
  2138. width:100%;
  2139. }
  2140. #u30986_text {
  2141. border-width:0px;
  2142. white-space:nowrap;
  2143. text-transform:none;
  2144. }
  2145. #u30987_img {
  2146. border-width:0px;
  2147. position:absolute;
  2148. left:0px;
  2149. top:0px;
  2150. width:11px;
  2151. height:11px;
  2152. }
  2153. #u30987 {
  2154. border-width:0px;
  2155. position:absolute;
  2156. left:426px;
  2157. top:900px;
  2158. width:11px;
  2159. height:11px;
  2160. display:flex;
  2161. }
  2162. #u30987 .text {
  2163. position:absolute;
  2164. align-self:center;
  2165. padding:2px 2px 2px 2px;
  2166. box-sizing:border-box;
  2167. width:100%;
  2168. }
  2169. #u30987_text {
  2170. border-width:0px;
  2171. word-wrap:break-word;
  2172. text-transform:none;
  2173. visibility:hidden;
  2174. }
  2175. #u30988 {
  2176. border-width:0px;
  2177. position:absolute;
  2178. left:0px;
  2179. top:0px;
  2180. width:0px;
  2181. height:0px;
  2182. }
  2183. #u30989_div {
  2184. border-width:0px;
  2185. position:absolute;
  2186. left:0px;
  2187. top:0px;
  2188. width:154px;
  2189. height:20px;
  2190. background:inherit;
  2191. background-color:rgba(255, 255, 255, 0);
  2192. border:none;
  2193. border-radius:0px;
  2194. -moz-box-shadow:none;
  2195. -webkit-box-shadow:none;
  2196. box-shadow:none;
  2197. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2198. font-weight:400;
  2199. font-style:normal;
  2200. font-size:14px;
  2201. }
  2202. #u30989 {
  2203. border-width:0px;
  2204. position:absolute;
  2205. left:457px;
  2206. top:895px;
  2207. width:154px;
  2208. height:20px;
  2209. display:flex;
  2210. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2211. font-weight:400;
  2212. font-style:normal;
  2213. font-size:14px;
  2214. }
  2215. #u30989 .text {
  2216. position:absolute;
  2217. align-self:flex-start;
  2218. padding:0px 0px 0px 0px;
  2219. box-sizing:border-box;
  2220. width:100%;
  2221. }
  2222. #u30989_text {
  2223. border-width:0px;
  2224. white-space:nowrap;
  2225. text-transform:none;
  2226. }
  2227. #u30990_img {
  2228. border-width:0px;
  2229. position:absolute;
  2230. left:0px;
  2231. top:0px;
  2232. width:11px;
  2233. height:11px;
  2234. }
  2235. #u30990 {
  2236. border-width:0px;
  2237. position:absolute;
  2238. left:621px;
  2239. top:900px;
  2240. width:11px;
  2241. height:11px;
  2242. display:flex;
  2243. }
  2244. #u30990 .text {
  2245. position:absolute;
  2246. align-self:center;
  2247. padding:2px 2px 2px 2px;
  2248. box-sizing:border-box;
  2249. width:100%;
  2250. }
  2251. #u30990_text {
  2252. border-width:0px;
  2253. word-wrap:break-word;
  2254. text-transform:none;
  2255. visibility:hidden;
  2256. }
  2257. #u30991_div {
  2258. border-width:0px;
  2259. position:absolute;
  2260. left:0px;
  2261. top:0px;
  2262. width:78px;
  2263. height:30px;
  2264. background:inherit;
  2265. background-color:rgba(255, 255, 255, 0);
  2266. border:none;
  2267. border-top:0px;
  2268. border-right:0px;
  2269. border-bottom:0px;
  2270. border-radius:0px;
  2271. border-top-left-radius:0px;
  2272. border-bottom-left-radius:0px;
  2273. -moz-box-shadow:none;
  2274. -webkit-box-shadow:none;
  2275. box-shadow:none;
  2276. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2277. font-weight:400;
  2278. font-style:normal;
  2279. font-size:14px;
  2280. text-align:right;
  2281. }
  2282. #u30991 {
  2283. border-width:0px;
  2284. position:absolute;
  2285. left:159px;
  2286. top:1033px;
  2287. width:78px;
  2288. height:30px;
  2289. display:flex;
  2290. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2291. font-weight:400;
  2292. font-style:normal;
  2293. font-size:14px;
  2294. text-align:right;
  2295. }
  2296. #u30991 .text {
  2297. position:absolute;
  2298. align-self:center;
  2299. padding:5px 0px 5px 0px;
  2300. box-sizing:border-box;
  2301. width:100%;
  2302. }
  2303. #u30991_text {
  2304. border-width:0px;
  2305. white-space:nowrap;
  2306. text-transform:none;
  2307. }
  2308. #u30992_div {
  2309. border-width:0px;
  2310. position:absolute;
  2311. left:0px;
  2312. top:0px;
  2313. width:78px;
  2314. height:30px;
  2315. background:inherit;
  2316. background-color:rgba(255, 255, 255, 0);
  2317. border:none;
  2318. border-top:0px;
  2319. border-right:0px;
  2320. border-bottom:0px;
  2321. border-radius:0px;
  2322. border-top-left-radius:0px;
  2323. border-bottom-left-radius:0px;
  2324. -moz-box-shadow:none;
  2325. -webkit-box-shadow:none;
  2326. box-shadow:none;
  2327. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2328. font-weight:400;
  2329. font-style:normal;
  2330. font-size:14px;
  2331. text-align:right;
  2332. }
  2333. #u30992 {
  2334. border-width:0px;
  2335. position:absolute;
  2336. left:159px;
  2337. top:131px;
  2338. width:78px;
  2339. height:30px;
  2340. display:flex;
  2341. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2342. font-weight:400;
  2343. font-style:normal;
  2344. font-size:14px;
  2345. text-align:right;
  2346. }
  2347. #u30992 .text {
  2348. position:absolute;
  2349. align-self:center;
  2350. padding:5px 0px 5px 0px;
  2351. box-sizing:border-box;
  2352. width:100%;
  2353. }
  2354. #u30992_text {
  2355. border-width:0px;
  2356. white-space:nowrap;
  2357. text-transform:none;
  2358. }
  2359. #u30993 label {
  2360. left:0px;
  2361. width:100%;
  2362. }
  2363. #u30993_img {
  2364. border-width:0px;
  2365. position:absolute;
  2366. left:0px;
  2367. top:3px;
  2368. width:12px;
  2369. height:12px;
  2370. }
  2371. #u30993 {
  2372. border-width:0px;
  2373. position:absolute;
  2374. left:248px;
  2375. top:139px;
  2376. width:100px;
  2377. height:18px;
  2378. display:flex;
  2379. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2380. font-weight:400;
  2381. font-style:normal;
  2382. }
  2383. #u30993 .text {
  2384. position:absolute;
  2385. align-self:center;
  2386. padding:0px 2px 0px 2px;
  2387. box-sizing:border-box;
  2388. }
  2389. #u30993_img.selected {
  2390. }
  2391. #u30993.selected {
  2392. }
  2393. #u30993_img.disabled {
  2394. }
  2395. #u30993.disabled {
  2396. }
  2397. #u30993_img.selectedDisabled {
  2398. }
  2399. #u30993.selectedDisabled {
  2400. }
  2401. #u30993_text {
  2402. border-width:0px;
  2403. position:absolute;
  2404. left:14px;
  2405. top:0px;
  2406. width:84px;
  2407. word-wrap:break-word;
  2408. text-transform:none;
  2409. }
  2410. #u30993_input {
  2411. border-width:0px;
  2412. position:absolute;
  2413. left:0px;
  2414. top:0px;
  2415. width:0px;
  2416. height:0px;
  2417. opacity:0;
  2418. }
  2419. #u30994 label {
  2420. left:0px;
  2421. width:100%;
  2422. }
  2423. #u30994_img {
  2424. border-width:0px;
  2425. position:absolute;
  2426. left:0px;
  2427. top:3px;
  2428. width:12px;
  2429. height:12px;
  2430. }
  2431. #u30994 {
  2432. border-width:0px;
  2433. position:absolute;
  2434. left:348px;
  2435. top:139px;
  2436. width:100px;
  2437. height:18px;
  2438. display:flex;
  2439. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2440. font-weight:400;
  2441. font-style:normal;
  2442. }
  2443. #u30994 .text {
  2444. position:absolute;
  2445. align-self:center;
  2446. padding:0px 2px 0px 2px;
  2447. box-sizing:border-box;
  2448. }
  2449. #u30994_img.selected {
  2450. }
  2451. #u30994.selected {
  2452. }
  2453. #u30994_img.disabled {
  2454. }
  2455. #u30994.disabled {
  2456. }
  2457. #u30994_img.selectedDisabled {
  2458. }
  2459. #u30994.selectedDisabled {
  2460. }
  2461. #u30994_text {
  2462. border-width:0px;
  2463. position:absolute;
  2464. left:14px;
  2465. top:0px;
  2466. width:84px;
  2467. word-wrap:break-word;
  2468. text-transform:none;
  2469. }
  2470. #u30994_input {
  2471. border-width:0px;
  2472. position:absolute;
  2473. left:0px;
  2474. top:0px;
  2475. width:0px;
  2476. height:0px;
  2477. opacity:0;
  2478. }
  2479. #u30995 label {
  2480. left:0px;
  2481. width:100%;
  2482. }
  2483. #u30995_img {
  2484. border-width:0px;
  2485. position:absolute;
  2486. left:0px;
  2487. top:3px;
  2488. width:12px;
  2489. height:12px;
  2490. }
  2491. #u30995 {
  2492. border-width:0px;
  2493. position:absolute;
  2494. left:448px;
  2495. top:139px;
  2496. width:100px;
  2497. height:18px;
  2498. display:flex;
  2499. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2500. font-weight:400;
  2501. font-style:normal;
  2502. }
  2503. #u30995 .text {
  2504. position:absolute;
  2505. align-self:center;
  2506. padding:0px 2px 0px 2px;
  2507. box-sizing:border-box;
  2508. }
  2509. #u30995_img.selected {
  2510. }
  2511. #u30995.selected {
  2512. }
  2513. #u30995_img.disabled {
  2514. }
  2515. #u30995.disabled {
  2516. }
  2517. #u30995_img.selectedDisabled {
  2518. }
  2519. #u30995.selectedDisabled {
  2520. }
  2521. #u30995_text {
  2522. border-width:0px;
  2523. position:absolute;
  2524. left:14px;
  2525. top:0px;
  2526. width:84px;
  2527. word-wrap:break-word;
  2528. text-transform:none;
  2529. }
  2530. #u30995_input {
  2531. border-width:0px;
  2532. position:absolute;
  2533. left:0px;
  2534. top:0px;
  2535. width:0px;
  2536. height:0px;
  2537. opacity:0;
  2538. }
  2539. #u30996 label {
  2540. left:0px;
  2541. width:100%;
  2542. }
  2543. #u30996_img {
  2544. border-width:0px;
  2545. position:absolute;
  2546. left:0px;
  2547. top:3px;
  2548. width:12px;
  2549. height:12px;
  2550. }
  2551. #u30996 {
  2552. border-width:0px;
  2553. position:absolute;
  2554. left:548px;
  2555. top:139px;
  2556. width:100px;
  2557. height:18px;
  2558. display:flex;
  2559. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2560. font-weight:400;
  2561. font-style:normal;
  2562. }
  2563. #u30996 .text {
  2564. position:absolute;
  2565. align-self:center;
  2566. padding:0px 2px 0px 2px;
  2567. box-sizing:border-box;
  2568. }
  2569. #u30996_img.selected {
  2570. }
  2571. #u30996.selected {
  2572. }
  2573. #u30996_img.disabled {
  2574. }
  2575. #u30996.disabled {
  2576. }
  2577. #u30996_img.selectedDisabled {
  2578. }
  2579. #u30996.selectedDisabled {
  2580. }
  2581. #u30996_text {
  2582. border-width:0px;
  2583. position:absolute;
  2584. left:14px;
  2585. top:0px;
  2586. width:84px;
  2587. word-wrap:break-word;
  2588. text-transform:none;
  2589. }
  2590. #u30996_input {
  2591. border-width:0px;
  2592. position:absolute;
  2593. left:0px;
  2594. top:0px;
  2595. width:0px;
  2596. height:0px;
  2597. opacity:0;
  2598. }
  2599. #u30997 label {
  2600. left:0px;
  2601. width:100%;
  2602. }
  2603. #u30997_img {
  2604. border-width:0px;
  2605. position:absolute;
  2606. left:0px;
  2607. top:3px;
  2608. width:12px;
  2609. height:12px;
  2610. }
  2611. #u30997 {
  2612. border-width:0px;
  2613. position:absolute;
  2614. left:648px;
  2615. top:139px;
  2616. width:100px;
  2617. height:18px;
  2618. display:flex;
  2619. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2620. font-weight:400;
  2621. font-style:normal;
  2622. }
  2623. #u30997 .text {
  2624. position:absolute;
  2625. align-self:center;
  2626. padding:0px 2px 0px 2px;
  2627. box-sizing:border-box;
  2628. }
  2629. #u30997_img.selected {
  2630. }
  2631. #u30997.selected {
  2632. }
  2633. #u30997_img.disabled {
  2634. }
  2635. #u30997.disabled {
  2636. }
  2637. #u30997_img.selectedDisabled {
  2638. }
  2639. #u30997.selectedDisabled {
  2640. }
  2641. #u30997_text {
  2642. border-width:0px;
  2643. position:absolute;
  2644. left:14px;
  2645. top:0px;
  2646. width:84px;
  2647. word-wrap:break-word;
  2648. text-transform:none;
  2649. }
  2650. #u30997_input {
  2651. border-width:0px;
  2652. position:absolute;
  2653. left:0px;
  2654. top:0px;
  2655. width:0px;
  2656. height:0px;
  2657. opacity:0;
  2658. }
  2659. #u30998 label {
  2660. left:0px;
  2661. width:100%;
  2662. }
  2663. #u30998_img {
  2664. border-width:0px;
  2665. position:absolute;
  2666. left:0px;
  2667. top:3px;
  2668. width:12px;
  2669. height:12px;
  2670. }
  2671. #u30998 {
  2672. border-width:0px;
  2673. position:absolute;
  2674. left:748px;
  2675. top:139px;
  2676. width:100px;
  2677. height:18px;
  2678. display:flex;
  2679. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2680. font-weight:400;
  2681. font-style:normal;
  2682. }
  2683. #u30998 .text {
  2684. position:absolute;
  2685. align-self:center;
  2686. padding:0px 2px 0px 2px;
  2687. box-sizing:border-box;
  2688. }
  2689. #u30998_img.selected {
  2690. }
  2691. #u30998.selected {
  2692. }
  2693. #u30998_img.disabled {
  2694. }
  2695. #u30998.disabled {
  2696. }
  2697. #u30998_img.selectedDisabled {
  2698. }
  2699. #u30998.selectedDisabled {
  2700. }
  2701. #u30998_text {
  2702. border-width:0px;
  2703. position:absolute;
  2704. left:14px;
  2705. top:0px;
  2706. width:84px;
  2707. word-wrap:break-word;
  2708. text-transform:none;
  2709. }
  2710. #u30998_input {
  2711. border-width:0px;
  2712. position:absolute;
  2713. left:0px;
  2714. top:0px;
  2715. width:0px;
  2716. height:0px;
  2717. opacity:0;
  2718. }
  2719. #u30999 {
  2720. border-width:0px;
  2721. position:absolute;
  2722. left:0px;
  2723. top:0px;
  2724. width:0px;
  2725. height:0px;
  2726. }
  2727. #u31000_div {
  2728. border-width:0px;
  2729. position:absolute;
  2730. left:0px;
  2731. top:0px;
  2732. width:841px;
  2733. height:480px;
  2734. background:inherit;
  2735. background-color:rgba(255, 255, 255, 1);
  2736. border:none;
  2737. border-radius:0px;
  2738. -moz-box-shadow:0px 0px 5px rgba(0, 0, 0, 0.349019607843137);
  2739. -webkit-box-shadow:0px 0px 5px rgba(0, 0, 0, 0.349019607843137);
  2740. box-shadow:0px 0px 5px rgba(0, 0, 0, 0.349019607843137);
  2741. }
  2742. #u31000 {
  2743. border-width:0px;
  2744. position:absolute;
  2745. left:1009px;
  2746. top:122px;
  2747. width:841px;
  2748. height:480px;
  2749. display:flex;
  2750. }
  2751. #u31000 .text {
  2752. position:absolute;
  2753. align-self:center;
  2754. padding:2px 2px 2px 2px;
  2755. box-sizing:border-box;
  2756. width:100%;
  2757. }
  2758. #u31000_text {
  2759. border-width:0px;
  2760. word-wrap:break-word;
  2761. text-transform:none;
  2762. visibility:hidden;
  2763. }
  2764. #u31001_img {
  2765. border-width:0px;
  2766. position:absolute;
  2767. left:0px;
  2768. top:0px;
  2769. width:240px;
  2770. height:170px;
  2771. }
  2772. #u31001 {
  2773. border-width:0px;
  2774. position:absolute;
  2775. left:1048px;
  2776. top:189px;
  2777. width:240px;
  2778. height:170px;
  2779. display:flex;
  2780. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2781. font-weight:400;
  2782. font-style:normal;
  2783. }
  2784. #u31001 .text {
  2785. position:absolute;
  2786. align-self:center;
  2787. padding:2px 2px 2px 2px;
  2788. box-sizing:border-box;
  2789. width:100%;
  2790. }
  2791. #u31001_text {
  2792. border-width:0px;
  2793. word-wrap:break-word;
  2794. text-transform:none;
  2795. }
  2796. #u31002_img {
  2797. border-width:0px;
  2798. position:absolute;
  2799. left:0px;
  2800. top:0px;
  2801. width:240px;
  2802. height:170px;
  2803. }
  2804. #u31002 {
  2805. border-width:0px;
  2806. position:absolute;
  2807. left:1308px;
  2808. top:189px;
  2809. width:240px;
  2810. height:170px;
  2811. display:flex;
  2812. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2813. font-weight:400;
  2814. font-style:normal;
  2815. }
  2816. #u31002 .text {
  2817. position:absolute;
  2818. align-self:center;
  2819. padding:2px 2px 2px 2px;
  2820. box-sizing:border-box;
  2821. width:100%;
  2822. }
  2823. #u31002_text {
  2824. border-width:0px;
  2825. word-wrap:break-word;
  2826. text-transform:none;
  2827. }
  2828. #u31003_img {
  2829. border-width:0px;
  2830. position:absolute;
  2831. left:0px;
  2832. top:0px;
  2833. width:240px;
  2834. height:170px;
  2835. }
  2836. #u31003 {
  2837. border-width:0px;
  2838. position:absolute;
  2839. left:1568px;
  2840. top:189px;
  2841. width:240px;
  2842. height:170px;
  2843. display:flex;
  2844. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2845. font-weight:400;
  2846. font-style:normal;
  2847. }
  2848. #u31003 .text {
  2849. position:absolute;
  2850. align-self:center;
  2851. padding:2px 2px 2px 2px;
  2852. box-sizing:border-box;
  2853. width:100%;
  2854. }
  2855. #u31003_text {
  2856. border-width:0px;
  2857. word-wrap:break-word;
  2858. text-transform:none;
  2859. }
  2860. #u31004_img {
  2861. border-width:0px;
  2862. position:absolute;
  2863. left:0px;
  2864. top:0px;
  2865. width:240px;
  2866. height:170px;
  2867. }
  2868. #u31004 {
  2869. border-width:0px;
  2870. position:absolute;
  2871. left:1048px;
  2872. top:379px;
  2873. width:240px;
  2874. height:170px;
  2875. display:flex;
  2876. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2877. font-weight:400;
  2878. font-style:normal;
  2879. }
  2880. #u31004 .text {
  2881. position:absolute;
  2882. align-self:center;
  2883. padding:2px 2px 2px 2px;
  2884. box-sizing:border-box;
  2885. width:100%;
  2886. }
  2887. #u31004_text {
  2888. border-width:0px;
  2889. word-wrap:break-word;
  2890. text-transform:none;
  2891. }
  2892. #u31005_div {
  2893. border-width:0px;
  2894. position:absolute;
  2895. left:0px;
  2896. top:0px;
  2897. width:109px;
  2898. height:35px;
  2899. background:inherit;
  2900. background-color:rgba(255, 255, 255, 0);
  2901. border:none;
  2902. border-top:0px;
  2903. border-right:0px;
  2904. border-bottom:0px;
  2905. border-radius:0px;
  2906. border-top-left-radius:0px;
  2907. border-bottom-left-radius:0px;
  2908. -moz-box-shadow:none;
  2909. -webkit-box-shadow:none;
  2910. box-shadow:none;
  2911. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  2912. font-weight:500;
  2913. font-style:normal;
  2914. font-size:18px;
  2915. }
  2916. #u31005 {
  2917. border-width:0px;
  2918. position:absolute;
  2919. left:1048px;
  2920. top:139px;
  2921. width:109px;
  2922. height:35px;
  2923. display:flex;
  2924. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  2925. font-weight:500;
  2926. font-style:normal;
  2927. font-size:18px;
  2928. }
  2929. #u31005 .text {
  2930. position:absolute;
  2931. align-self:center;
  2932. padding:5px 0px 5px 0px;
  2933. box-sizing:border-box;
  2934. width:100%;
  2935. }
  2936. #u31005_text {
  2937. border-width:0px;
  2938. white-space:nowrap;
  2939. text-transform:none;
  2940. }
  2941. #u31006_img {
  2942. border-width:0px;
  2943. position:absolute;
  2944. left:0px;
  2945. top:0px;
  2946. width:19px;
  2947. height:19px;
  2948. }
  2949. #u31006 {
  2950. border-width:0px;
  2951. position:absolute;
  2952. left:1269px;
  2953. top:189px;
  2954. width:19px;
  2955. height:19px;
  2956. display:flex;
  2957. }
  2958. #u31006 .text {
  2959. position:absolute;
  2960. align-self:center;
  2961. padding:2px 2px 2px 2px;
  2962. box-sizing:border-box;
  2963. width:100%;
  2964. }
  2965. #u31006_text {
  2966. border-width:0px;
  2967. word-wrap:break-word;
  2968. text-transform:none;
  2969. visibility:hidden;
  2970. }
  2971. #u31007_img {
  2972. border-width:0px;
  2973. position:absolute;
  2974. left:0px;
  2975. top:0px;
  2976. width:19px;
  2977. height:19px;
  2978. }
  2979. #u31007 {
  2980. border-width:0px;
  2981. position:absolute;
  2982. left:1528px;
  2983. top:189px;
  2984. width:19px;
  2985. height:19px;
  2986. display:flex;
  2987. }
  2988. #u31007 .text {
  2989. position:absolute;
  2990. align-self:center;
  2991. padding:2px 2px 2px 2px;
  2992. box-sizing:border-box;
  2993. width:100%;
  2994. }
  2995. #u31007_text {
  2996. border-width:0px;
  2997. word-wrap:break-word;
  2998. text-transform:none;
  2999. visibility:hidden;
  3000. }
  3001. #u31008_img {
  3002. border-width:0px;
  3003. position:absolute;
  3004. left:0px;
  3005. top:0px;
  3006. width:19px;
  3007. height:19px;
  3008. }
  3009. #u31008 {
  3010. border-width:0px;
  3011. position:absolute;
  3012. left:1789px;
  3013. top:189px;
  3014. width:19px;
  3015. height:19px;
  3016. display:flex;
  3017. }
  3018. #u31008 .text {
  3019. position:absolute;
  3020. align-self:center;
  3021. padding:2px 2px 2px 2px;
  3022. box-sizing:border-box;
  3023. width:100%;
  3024. }
  3025. #u31008_text {
  3026. border-width:0px;
  3027. word-wrap:break-word;
  3028. text-transform:none;
  3029. visibility:hidden;
  3030. }
  3031. #u31009_img {
  3032. border-width:0px;
  3033. position:absolute;
  3034. left:0px;
  3035. top:0px;
  3036. width:19px;
  3037. height:19px;
  3038. }
  3039. #u31009 {
  3040. border-width:0px;
  3041. position:absolute;
  3042. left:1269px;
  3043. top:379px;
  3044. width:19px;
  3045. height:19px;
  3046. display:flex;
  3047. }
  3048. #u31009 .text {
  3049. position:absolute;
  3050. align-self:center;
  3051. padding:2px 2px 2px 2px;
  3052. box-sizing:border-box;
  3053. width:100%;
  3054. }
  3055. #u31009_text {
  3056. border-width:0px;
  3057. word-wrap:break-word;
  3058. text-transform:none;
  3059. visibility:hidden;
  3060. }
  3061. #u31010_div {
  3062. border-width:0px;
  3063. position:absolute;
  3064. left:0px;
  3065. top:0px;
  3066. width:80px;
  3067. height:30px;
  3068. background:inherit;
  3069. background-color:rgba(24, 144, 255, 1);
  3070. border:none;
  3071. border-radius:4px;
  3072. -moz-box-shadow:none;
  3073. -webkit-box-shadow:none;
  3074. box-shadow:none;
  3075. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3076. font-weight:400;
  3077. font-style:normal;
  3078. font-size:14px;
  3079. color:#FFFFFF;
  3080. }
  3081. #u31010 {
  3082. border-width:0px;
  3083. position:absolute;
  3084. left:1728px;
  3085. top:557px;
  3086. width:80px;
  3087. height:30px;
  3088. display:flex;
  3089. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3090. font-weight:400;
  3091. font-style:normal;
  3092. font-size:14px;
  3093. color:#FFFFFF;
  3094. }
  3095. #u31010 .text {
  3096. position:absolute;
  3097. align-self:center;
  3098. padding:2px 2px 2px 2px;
  3099. box-sizing:border-box;
  3100. width:100%;
  3101. }
  3102. #u31010_text {
  3103. border-width:0px;
  3104. word-wrap:break-word;
  3105. text-transform:none;
  3106. }
  3107. #u31011_div {
  3108. border-width:0px;
  3109. position:absolute;
  3110. left:0px;
  3111. top:0px;
  3112. width:80px;
  3113. height:30px;
  3114. background:inherit;
  3115. background-color:rgba(255, 255, 255, 1);
  3116. box-sizing:border-box;
  3117. border-width:1px;
  3118. border-style:solid;
  3119. border-color:rgba(170, 170, 170, 1);
  3120. border-radius:4px;
  3121. -moz-box-shadow:none;
  3122. -webkit-box-shadow:none;
  3123. box-shadow:none;
  3124. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3125. font-weight:400;
  3126. font-style:normal;
  3127. font-size:14px;
  3128. }
  3129. #u31011 {
  3130. border-width:0px;
  3131. position:absolute;
  3132. left:1638px;
  3133. top:557px;
  3134. width:80px;
  3135. height:30px;
  3136. display:flex;
  3137. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3138. font-weight:400;
  3139. font-style:normal;
  3140. font-size:14px;
  3141. }
  3142. #u31011 .text {
  3143. position:absolute;
  3144. align-self:center;
  3145. padding:2px 2px 2px 2px;
  3146. box-sizing:border-box;
  3147. width:100%;
  3148. }
  3149. #u31011_text {
  3150. border-width:0px;
  3151. word-wrap:break-word;
  3152. text-transform:none;
  3153. }
  3154. #u31012_div {
  3155. border-width:0px;
  3156. position:absolute;
  3157. left:0px;
  3158. top:0px;
  3159. width:40px;
  3160. height:40px;
  3161. background:inherit;
  3162. background-color:rgba(255, 255, 255, 0);
  3163. border:none;
  3164. border-top:0px;
  3165. border-right:0px;
  3166. border-bottom:0px;
  3167. border-radius:0px;
  3168. border-top-left-radius:0px;
  3169. border-bottom-left-radius:0px;
  3170. -moz-box-shadow:none;
  3171. -webkit-box-shadow:none;
  3172. box-shadow:none;
  3173. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  3174. font-weight:500;
  3175. font-style:normal;
  3176. font-size:18px;
  3177. text-align:center;
  3178. }
  3179. #u31012 {
  3180. border-width:0px;
  3181. position:absolute;
  3182. left:1810px;
  3183. top:122px;
  3184. width:40px;
  3185. height:40px;
  3186. display:flex;
  3187. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  3188. font-weight:500;
  3189. font-style:normal;
  3190. font-size:18px;
  3191. text-align:center;
  3192. }
  3193. #u31012 .text {
  3194. position:absolute;
  3195. align-self:center;
  3196. padding:5px 10px 5px 0px;
  3197. box-sizing:border-box;
  3198. width:100%;
  3199. }
  3200. #u31012_text {
  3201. border-width:0px;
  3202. word-wrap:break-word;
  3203. text-transform:none;
  3204. }