styles.css 62 KB

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