styles.css 57 KB

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