styles.css 59 KB

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