styles.css 42 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370
  1. body {
  2. margin:0px;
  3. background-image:none;
  4. position:relative;
  5. left:0px;
  6. width:846px;
  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. #u138141 {
  20. border-width:0px;
  21. position:absolute;
  22. left:0px;
  23. top:0px;
  24. width:0px;
  25. height:0px;
  26. }
  27. #u138142_div {
  28. border-width:0px;
  29. position:absolute;
  30. left:0px;
  31. top:0px;
  32. width:346px;
  33. height:222px;
  34. background:inherit;
  35. background-color:rgba(255, 255, 255, 1);
  36. border:none;
  37. border-radius:9px;
  38. -moz-box-shadow:0px 0px 5px rgba(0, 0, 0, 0.349019607843137);
  39. -webkit-box-shadow:0px 0px 5px rgba(0, 0, 0, 0.349019607843137);
  40. box-shadow:0px 0px 5px rgba(0, 0, 0, 0.349019607843137);
  41. }
  42. #u138142 {
  43. border-width:0px;
  44. position:absolute;
  45. left:500px;
  46. top:602px;
  47. width:346px;
  48. height:222px;
  49. display:flex;
  50. }
  51. #u138142 .text {
  52. position:absolute;
  53. align-self:center;
  54. padding:2px 2px 2px 2px;
  55. box-sizing:border-box;
  56. width:100%;
  57. }
  58. #u138142_text {
  59. border-width:0px;
  60. word-wrap:break-word;
  61. text-transform:none;
  62. visibility:hidden;
  63. }
  64. #u138143_img {
  65. border-width:0px;
  66. position:absolute;
  67. left:0px;
  68. top:0px;
  69. width:347px;
  70. height:2px;
  71. }
  72. #u138143 {
  73. border-width:0px;
  74. position:absolute;
  75. left:500px;
  76. top:753px;
  77. width:346px;
  78. height:1px;
  79. display:flex;
  80. }
  81. #u138143 .text {
  82. position:absolute;
  83. align-self:center;
  84. padding:2px 2px 2px 2px;
  85. box-sizing:border-box;
  86. width:100%;
  87. }
  88. #u138143_text {
  89. border-width:0px;
  90. word-wrap:break-word;
  91. text-transform:none;
  92. visibility:hidden;
  93. }
  94. #u138144_img {
  95. border-width:0px;
  96. position:absolute;
  97. left:0px;
  98. top:0px;
  99. width:2px;
  100. height:68px;
  101. }
  102. #u138144 {
  103. border-width:0px;
  104. position:absolute;
  105. left:665px;
  106. top:757px;
  107. width:1px;
  108. height:67px;
  109. display:flex;
  110. }
  111. #u138144 .text {
  112. position:absolute;
  113. align-self:center;
  114. padding:2px 2px 2px 2px;
  115. box-sizing:border-box;
  116. width:100%;
  117. }
  118. #u138144_text {
  119. border-width:0px;
  120. word-wrap:break-word;
  121. text-transform:none;
  122. visibility:hidden;
  123. }
  124. #u138145_img {
  125. border-width:0px;
  126. position:absolute;
  127. left:0px;
  128. top:0px;
  129. width:347px;
  130. height:2px;
  131. }
  132. #u138145 {
  133. border-width:0px;
  134. position:absolute;
  135. left:500px;
  136. top:753px;
  137. width:346px;
  138. height:1px;
  139. display:flex;
  140. }
  141. #u138145 .text {
  142. position:absolute;
  143. align-self:center;
  144. padding:2px 2px 2px 2px;
  145. box-sizing:border-box;
  146. width:100%;
  147. }
  148. #u138145_text {
  149. border-width:0px;
  150. word-wrap:break-word;
  151. text-transform:none;
  152. visibility:hidden;
  153. }
  154. #u138146_img {
  155. border-width:0px;
  156. position:absolute;
  157. left:0px;
  158. top:0px;
  159. width:2px;
  160. height:68px;
  161. }
  162. #u138146 {
  163. border-width:0px;
  164. position:absolute;
  165. left:665px;
  166. top:757px;
  167. width:1px;
  168. height:67px;
  169. display:flex;
  170. }
  171. #u138146 .text {
  172. position:absolute;
  173. align-self:center;
  174. padding:2px 2px 2px 2px;
  175. box-sizing:border-box;
  176. width:100%;
  177. }
  178. #u138146_text {
  179. border-width:0px;
  180. word-wrap:break-word;
  181. text-transform:none;
  182. visibility:hidden;
  183. }
  184. #u138147_div {
  185. border-width:0px;
  186. position:absolute;
  187. left:0px;
  188. top:0px;
  189. width:105px;
  190. height:30px;
  191. background:inherit;
  192. background-color:rgba(255, 255, 255, 0);
  193. border:none;
  194. border-radius:0px;
  195. -moz-box-shadow:none;
  196. -webkit-box-shadow:none;
  197. box-shadow:none;
  198. font-family:'ArialMT', 'Arial', sans-serif;
  199. font-weight:400;
  200. font-style:normal;
  201. font-size:22px;
  202. color:#0099FF;
  203. text-align:center;
  204. }
  205. #u138147 {
  206. border-width:0px;
  207. position:absolute;
  208. left:533px;
  209. top:779px;
  210. width:105px;
  211. height:30px;
  212. display:flex;
  213. font-family:'ArialMT', 'Arial', sans-serif;
  214. font-weight:400;
  215. font-style:normal;
  216. font-size:22px;
  217. color:#0099FF;
  218. text-align:center;
  219. }
  220. #u138147 .text {
  221. position:absolute;
  222. align-self:center;
  223. padding:0px 0px 0px 0px;
  224. box-sizing:border-box;
  225. width:100%;
  226. }
  227. #u138147_text {
  228. border-width:0px;
  229. word-wrap:break-word;
  230. text-transform:none;
  231. }
  232. #u138148_div {
  233. border-width:0px;
  234. position:absolute;
  235. left:0px;
  236. top:0px;
  237. width:105px;
  238. height:30px;
  239. background:inherit;
  240. background-color:rgba(255, 255, 255, 0);
  241. border:none;
  242. border-radius:0px;
  243. -moz-box-shadow:none;
  244. -webkit-box-shadow:none;
  245. box-shadow:none;
  246. font-family:'ArialMT', 'Arial', sans-serif;
  247. font-weight:400;
  248. font-style:normal;
  249. font-size:22px;
  250. color:#0099FF;
  251. text-align:center;
  252. }
  253. #u138148 {
  254. border-width:0px;
  255. position:absolute;
  256. left:706px;
  257. top:779px;
  258. width:105px;
  259. height:30px;
  260. display:flex;
  261. font-family:'ArialMT', 'Arial', sans-serif;
  262. font-weight:400;
  263. font-style:normal;
  264. font-size:22px;
  265. color:#0099FF;
  266. text-align:center;
  267. }
  268. #u138148 .text {
  269. position:absolute;
  270. align-self:center;
  271. padding:0px 0px 0px 0px;
  272. box-sizing:border-box;
  273. width:100%;
  274. }
  275. #u138148_text {
  276. border-width:0px;
  277. word-wrap:break-word;
  278. text-transform:none;
  279. }
  280. #u138149_div {
  281. border-width:0px;
  282. position:absolute;
  283. left:0px;
  284. top:0px;
  285. width:191px;
  286. height:40px;
  287. background:inherit;
  288. background-color:rgba(255, 255, 255, 0);
  289. border:none;
  290. border-radius:0px;
  291. -moz-box-shadow:none;
  292. -webkit-box-shadow:none;
  293. box-shadow:none;
  294. font-family:'PingFangSC-Semibold', 'PingFang SC Semibold', 'PingFang SC', sans-serif;
  295. font-weight:650;
  296. font-style:normal;
  297. font-size:22px;
  298. text-align:center;
  299. }
  300. #u138149 {
  301. border-width:0px;
  302. position:absolute;
  303. left:578px;
  304. top:618px;
  305. width:191px;
  306. height:40px;
  307. display:flex;
  308. font-family:'PingFangSC-Semibold', 'PingFang SC Semibold', 'PingFang SC', sans-serif;
  309. font-weight:650;
  310. font-style:normal;
  311. font-size:22px;
  312. text-align:center;
  313. }
  314. #u138149 .text {
  315. position:absolute;
  316. align-self:center;
  317. padding:0px 0px 0px 0px;
  318. box-sizing:border-box;
  319. width:100%;
  320. }
  321. #u138149_text {
  322. border-width:0px;
  323. word-wrap:break-word;
  324. text-transform:none;
  325. }
  326. #u138150_div {
  327. border-width:0px;
  328. position:absolute;
  329. left:0px;
  330. top:0px;
  331. width:300px;
  332. height:50px;
  333. background:inherit;
  334. background-color:rgba(255, 255, 255, 0);
  335. border:none;
  336. border-radius:0px;
  337. -moz-box-shadow:none;
  338. -webkit-box-shadow:none;
  339. box-shadow:none;
  340. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  341. font-weight:400;
  342. font-style:normal;
  343. font-size:18px;
  344. text-align:center;
  345. }
  346. #u138150 {
  347. border-width:0px;
  348. position:absolute;
  349. left:523px;
  350. top:673px;
  351. width:300px;
  352. height:50px;
  353. display:flex;
  354. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  355. font-weight:400;
  356. font-style:normal;
  357. font-size:18px;
  358. text-align:center;
  359. }
  360. #u138150 .text {
  361. position:absolute;
  362. align-self:flex-start;
  363. padding:0px 0px 0px 0px;
  364. box-sizing:border-box;
  365. width:100%;
  366. }
  367. #u138150_text {
  368. border-width:0px;
  369. word-wrap:break-word;
  370. text-transform:none;
  371. }
  372. #u138152_img {
  373. border-width:0px;
  374. position:absolute;
  375. left:0px;
  376. top:0px;
  377. width:433px;
  378. height:865px;
  379. }
  380. #u138152 {
  381. border-width:0px;
  382. position:absolute;
  383. left:0px;
  384. top:0px;
  385. width:433px;
  386. height:865px;
  387. display:flex;
  388. }
  389. #u138152 .text {
  390. position:absolute;
  391. align-self:center;
  392. padding:2px 2px 2px 2px;
  393. box-sizing:border-box;
  394. width:100%;
  395. }
  396. #u138152_text {
  397. border-width:0px;
  398. word-wrap:break-word;
  399. text-transform:none;
  400. visibility:hidden;
  401. }
  402. #u138153_div {
  403. border-width:0px;
  404. position:absolute;
  405. left:0px;
  406. top:0px;
  407. width:375px;
  408. height:40px;
  409. background:inherit;
  410. background-color:rgba(255, 255, 255, 1);
  411. box-sizing:border-box;
  412. border-width:1px;
  413. border-style:solid;
  414. border-color:rgba(215, 215, 215, 1);
  415. border-left:0px;
  416. border-top:0px;
  417. border-right:0px;
  418. border-radius:0px;
  419. border-bottom-right-radius:0px;
  420. border-bottom-left-radius:0px;
  421. -moz-box-shadow:none;
  422. -webkit-box-shadow:none;
  423. box-shadow:none;
  424. }
  425. #u138153 {
  426. border-width:0px;
  427. position:absolute;
  428. left:29px;
  429. top:67px;
  430. width:375px;
  431. height:40px;
  432. display:flex;
  433. }
  434. #u138153 .text {
  435. position:absolute;
  436. align-self:center;
  437. padding:2px 2px 2px 2px;
  438. box-sizing:border-box;
  439. width:100%;
  440. }
  441. #u138153_text {
  442. border-width:0px;
  443. word-wrap:break-word;
  444. text-transform:none;
  445. visibility:hidden;
  446. }
  447. #u138154 {
  448. border-width:0px;
  449. position:absolute;
  450. left:0px;
  451. top:0px;
  452. width:0px;
  453. height:0px;
  454. }
  455. #u138155_div {
  456. border-width:0px;
  457. position:absolute;
  458. left:0px;
  459. top:0px;
  460. width:88px;
  461. height:32px;
  462. background:inherit;
  463. background-color:rgba(255, 255, 255, 1);
  464. box-sizing:border-box;
  465. border-width:1px;
  466. border-style:solid;
  467. border-color:rgba(242, 242, 242, 1);
  468. border-radius:33px;
  469. -moz-box-shadow:none;
  470. -webkit-box-shadow:none;
  471. box-shadow:none;
  472. }
  473. #u138155 {
  474. border-width:0px;
  475. position:absolute;
  476. left:309px;
  477. top:71px;
  478. width:88px;
  479. height:32px;
  480. display:flex;
  481. }
  482. #u138155 .text {
  483. position:absolute;
  484. align-self:center;
  485. padding:2px 2px 2px 2px;
  486. box-sizing:border-box;
  487. width:100%;
  488. }
  489. #u138155_text {
  490. border-width:0px;
  491. word-wrap:break-word;
  492. text-transform:none;
  493. visibility:hidden;
  494. }
  495. #u138156 {
  496. border-width:0px;
  497. position:absolute;
  498. left:0px;
  499. top:0px;
  500. width:0px;
  501. height:0px;
  502. }
  503. #u138157_img {
  504. border-width:0px;
  505. position:absolute;
  506. left:0px;
  507. top:0px;
  508. width:18px;
  509. height:18px;
  510. }
  511. #u138157 {
  512. border-width:0px;
  513. position:absolute;
  514. left:372px;
  515. top:78px;
  516. width:18px;
  517. height:18px;
  518. display:flex;
  519. }
  520. #u138157 .text {
  521. position:absolute;
  522. align-self:center;
  523. padding:2px 2px 2px 2px;
  524. box-sizing:border-box;
  525. width:100%;
  526. }
  527. #u138157_text {
  528. border-width:0px;
  529. word-wrap:break-word;
  530. text-transform:none;
  531. visibility:hidden;
  532. }
  533. #u138158_img {
  534. border-width:0px;
  535. position:absolute;
  536. left:0px;
  537. top:0px;
  538. width:6px;
  539. height:6px;
  540. }
  541. #u138158 {
  542. border-width:0px;
  543. position:absolute;
  544. left:378px;
  545. top:84px;
  546. width:6px;
  547. height:6px;
  548. display:flex;
  549. }
  550. #u138158 .text {
  551. position:absolute;
  552. align-self:center;
  553. padding:2px 2px 2px 2px;
  554. box-sizing:border-box;
  555. width:100%;
  556. }
  557. #u138158_text {
  558. border-width:0px;
  559. word-wrap:break-word;
  560. text-transform:none;
  561. visibility:hidden;
  562. }
  563. #u138159 {
  564. border-width:0px;
  565. position:absolute;
  566. left:0px;
  567. top:0px;
  568. width:0px;
  569. height:0px;
  570. }
  571. #u138160_img {
  572. border-width:0px;
  573. position:absolute;
  574. left:0px;
  575. top:0px;
  576. width:5px;
  577. height:5px;
  578. }
  579. #u138160 {
  580. border-width:0px;
  581. position:absolute;
  582. left:323px;
  583. top:85px;
  584. width:5px;
  585. height:5px;
  586. display:flex;
  587. }
  588. #u138160 .text {
  589. position:absolute;
  590. align-self:center;
  591. padding:2px 2px 2px 2px;
  592. box-sizing:border-box;
  593. width:100%;
  594. }
  595. #u138160_text {
  596. border-width:0px;
  597. word-wrap:break-word;
  598. text-transform:none;
  599. visibility:hidden;
  600. }
  601. #u138161_img {
  602. border-width:0px;
  603. position:absolute;
  604. left:0px;
  605. top:0px;
  606. width:5px;
  607. height:5px;
  608. }
  609. #u138161 {
  610. border-width:0px;
  611. position:absolute;
  612. left:339px;
  613. top:85px;
  614. width:5px;
  615. height:5px;
  616. display:flex;
  617. }
  618. #u138161 .text {
  619. position:absolute;
  620. align-self:center;
  621. padding:2px 2px 2px 2px;
  622. box-sizing:border-box;
  623. width:100%;
  624. }
  625. #u138161_text {
  626. border-width:0px;
  627. word-wrap:break-word;
  628. text-transform:none;
  629. visibility:hidden;
  630. }
  631. #u138162_img {
  632. border-width:0px;
  633. position:absolute;
  634. left:0px;
  635. top:0px;
  636. width:7px;
  637. height:7px;
  638. }
  639. #u138162 {
  640. border-width:0px;
  641. position:absolute;
  642. left:330px;
  643. top:84px;
  644. width:7px;
  645. height:7px;
  646. display:flex;
  647. }
  648. #u138162 .text {
  649. position:absolute;
  650. align-self:center;
  651. padding:2px 2px 2px 2px;
  652. box-sizing:border-box;
  653. width:100%;
  654. }
  655. #u138162_text {
  656. border-width:0px;
  657. word-wrap:break-word;
  658. text-transform:none;
  659. visibility:hidden;
  660. }
  661. #u138163_img {
  662. border-width:0px;
  663. position:absolute;
  664. left:0px;
  665. top:0px;
  666. width:19px;
  667. height:2px;
  668. }
  669. #u138163 {
  670. border-width:0px;
  671. position:absolute;
  672. left:347px;
  673. top:87px;
  674. width:18px;
  675. height:1px;
  676. display:flex;
  677. -webkit-transform:rotate(90deg);
  678. -moz-transform:rotate(90deg);
  679. -ms-transform:rotate(90deg);
  680. transform:rotate(90deg);
  681. }
  682. #u138163 .text {
  683. position:absolute;
  684. align-self:center;
  685. padding:2px 2px 2px 2px;
  686. box-sizing:border-box;
  687. width:100%;
  688. }
  689. #u138163_text {
  690. border-width:0px;
  691. word-wrap:break-word;
  692. text-transform:none;
  693. visibility:hidden;
  694. }
  695. #u138164_img {
  696. border-width:0px;
  697. position:absolute;
  698. left:0px;
  699. top:0px;
  700. width:375px;
  701. height:44px;
  702. }
  703. #u138164 {
  704. border-width:0px;
  705. position:absolute;
  706. left:29px;
  707. top:24px;
  708. width:375px;
  709. height:44px;
  710. display:flex;
  711. }
  712. #u138164 .text {
  713. position:absolute;
  714. align-self:center;
  715. padding:2px 2px 2px 2px;
  716. box-sizing:border-box;
  717. width:100%;
  718. }
  719. #u138164_text {
  720. border-width:0px;
  721. word-wrap:break-word;
  722. text-transform:none;
  723. visibility:hidden;
  724. }
  725. #u138165_div {
  726. border-width:0px;
  727. position:absolute;
  728. left:0px;
  729. top:0px;
  730. width:375px;
  731. height:50px;
  732. background:inherit;
  733. background-color:rgba(255, 255, 255, 1);
  734. box-sizing:border-box;
  735. border-width:1px;
  736. border-style:solid;
  737. border-color:rgba(242, 242, 242, 1);
  738. border-radius:26px;
  739. border-top-left-radius:0px;
  740. border-top-right-radius:0px;
  741. -moz-box-shadow:none;
  742. -webkit-box-shadow:none;
  743. box-shadow:none;
  744. }
  745. #u138165 {
  746. border-width:0px;
  747. position:absolute;
  748. left:29px;
  749. top:788px;
  750. width:375px;
  751. height:50px;
  752. display:flex;
  753. }
  754. #u138165 .text {
  755. position:absolute;
  756. align-self:center;
  757. padding:2px 2px 2px 2px;
  758. box-sizing:border-box;
  759. width:100%;
  760. }
  761. #u138165_text {
  762. border-width:0px;
  763. word-wrap:break-word;
  764. text-transform:none;
  765. visibility:hidden;
  766. }
  767. #u138166 {
  768. border-width:0px;
  769. position:absolute;
  770. left:0px;
  771. top:0px;
  772. width:0px;
  773. height:0px;
  774. }
  775. #u138167_img {
  776. border-width:0px;
  777. position:absolute;
  778. left:0px;
  779. top:0px;
  780. width:24px;
  781. height:24px;
  782. }
  783. #u138167 {
  784. border-width:0px;
  785. position:absolute;
  786. left:69px;
  787. top:792px;
  788. width:24px;
  789. height:24px;
  790. display:flex;
  791. font-size:8px;
  792. }
  793. #u138167 .text {
  794. position:absolute;
  795. align-self:center;
  796. padding:2px 2px 2px 2px;
  797. box-sizing:border-box;
  798. width:100%;
  799. }
  800. #u138167_text {
  801. border-width:0px;
  802. word-wrap:break-word;
  803. text-transform:none;
  804. }
  805. #u138168_div {
  806. border-width:0px;
  807. position:absolute;
  808. left:0px;
  809. top:0px;
  810. width:25px;
  811. height:17px;
  812. background:inherit;
  813. background-color:rgba(255, 255, 255, 0);
  814. border:none;
  815. border-radius:0px;
  816. -moz-box-shadow:none;
  817. -webkit-box-shadow:none;
  818. box-shadow:none;
  819. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  820. font-weight:400;
  821. font-style:normal;
  822. font-size:12px;
  823. }
  824. #u138168 {
  825. border-width:0px;
  826. position:absolute;
  827. left:69px;
  828. top:817px;
  829. width:25px;
  830. height:17px;
  831. display:flex;
  832. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  833. font-weight:400;
  834. font-style:normal;
  835. font-size:12px;
  836. }
  837. #u138168 .text {
  838. position:absolute;
  839. align-self:flex-start;
  840. padding:0px 0px 0px 0px;
  841. box-sizing:border-box;
  842. width:100%;
  843. }
  844. #u138168_text {
  845. border-width:0px;
  846. white-space:nowrap;
  847. text-transform:none;
  848. }
  849. #u138169 {
  850. border-width:0px;
  851. position:absolute;
  852. left:0px;
  853. top:0px;
  854. width:0px;
  855. height:0px;
  856. }
  857. #u138170_img {
  858. border-width:0px;
  859. position:absolute;
  860. left:0px;
  861. top:0px;
  862. width:24px;
  863. height:24px;
  864. }
  865. #u138170 {
  866. border-width:0px;
  867. position:absolute;
  868. left:339px;
  869. top:794px;
  870. width:24px;
  871. height:24px;
  872. display:flex;
  873. font-size:8px;
  874. }
  875. #u138170 .text {
  876. position:absolute;
  877. align-self:center;
  878. padding:2px 2px 2px 2px;
  879. box-sizing:border-box;
  880. width:100%;
  881. }
  882. #u138170_text {
  883. border-width:0px;
  884. word-wrap:break-word;
  885. text-transform:none;
  886. }
  887. #u138171_div {
  888. border-width:0px;
  889. position:absolute;
  890. left:0px;
  891. top:0px;
  892. width:25px;
  893. height:17px;
  894. background:inherit;
  895. background-color:rgba(255, 255, 255, 0);
  896. border:none;
  897. border-radius:0px;
  898. -moz-box-shadow:none;
  899. -webkit-box-shadow:none;
  900. box-shadow:none;
  901. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  902. font-weight:400;
  903. font-style:normal;
  904. font-size:12px;
  905. }
  906. #u138171 {
  907. border-width:0px;
  908. position:absolute;
  909. left:339px;
  910. top:819px;
  911. width:25px;
  912. height:17px;
  913. display:flex;
  914. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  915. font-weight:400;
  916. font-style:normal;
  917. font-size:12px;
  918. }
  919. #u138171 .text {
  920. position:absolute;
  921. align-self:flex-start;
  922. padding:0px 0px 0px 0px;
  923. box-sizing:border-box;
  924. width:100%;
  925. }
  926. #u138171_text {
  927. border-width:0px;
  928. white-space:nowrap;
  929. text-transform:none;
  930. }
  931. #u138172_div {
  932. border-width:0px;
  933. position:absolute;
  934. left:0px;
  935. top:0px;
  936. width:375px;
  937. height:681px;
  938. background:inherit;
  939. background-color:rgba(242, 242, 242, 0.462745098039216);
  940. border:none;
  941. border-radius:0px;
  942. -moz-box-shadow:none;
  943. -webkit-box-shadow:none;
  944. box-shadow:none;
  945. }
  946. #u138172 {
  947. border-width:0px;
  948. position:absolute;
  949. left:29px;
  950. top:107px;
  951. width:375px;
  952. height:681px;
  953. display:flex;
  954. }
  955. #u138172 .text {
  956. position:absolute;
  957. align-self:center;
  958. padding:2px 2px 2px 2px;
  959. box-sizing:border-box;
  960. width:100%;
  961. }
  962. #u138172_text {
  963. border-width:0px;
  964. word-wrap:break-word;
  965. text-transform:none;
  966. visibility:hidden;
  967. }
  968. #u138173 {
  969. border-width:0px;
  970. position:absolute;
  971. left:0px;
  972. top:0px;
  973. width:0px;
  974. height:0px;
  975. }
  976. #u138174_img {
  977. border-width:0px;
  978. position:absolute;
  979. left:0px;
  980. top:0px;
  981. width:24px;
  982. height:24px;
  983. }
  984. #u138174 {
  985. border-width:0px;
  986. position:absolute;
  987. left:251px;
  988. top:792px;
  989. width:24px;
  990. height:24px;
  991. display:flex;
  992. font-size:8px;
  993. }
  994. #u138174 .text {
  995. position:absolute;
  996. align-self:center;
  997. padding:2px 2px 2px 2px;
  998. box-sizing:border-box;
  999. width:100%;
  1000. }
  1001. #u138174_text {
  1002. border-width:0px;
  1003. word-wrap:break-word;
  1004. text-transform:none;
  1005. }
  1006. #u138175_div {
  1007. border-width:0px;
  1008. position:absolute;
  1009. left:0px;
  1010. top:0px;
  1011. width:37px;
  1012. height:17px;
  1013. background:inherit;
  1014. background-color:rgba(255, 255, 255, 0);
  1015. border:none;
  1016. border-radius:0px;
  1017. -moz-box-shadow:none;
  1018. -webkit-box-shadow:none;
  1019. box-shadow:none;
  1020. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1021. font-weight:400;
  1022. font-style:normal;
  1023. font-size:12px;
  1024. }
  1025. #u138175 {
  1026. border-width:0px;
  1027. position:absolute;
  1028. left:245px;
  1029. top:817px;
  1030. width:37px;
  1031. height:17px;
  1032. display:flex;
  1033. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1034. font-weight:400;
  1035. font-style:normal;
  1036. font-size:12px;
  1037. }
  1038. #u138175 .text {
  1039. position:absolute;
  1040. align-self:flex-start;
  1041. padding:0px 0px 0px 0px;
  1042. box-sizing:border-box;
  1043. width:100%;
  1044. }
  1045. #u138175_text {
  1046. border-width:0px;
  1047. white-space:nowrap;
  1048. text-transform:none;
  1049. }
  1050. #u138176 {
  1051. border-width:0px;
  1052. position:absolute;
  1053. left:0px;
  1054. top:0px;
  1055. width:0px;
  1056. height:0px;
  1057. }
  1058. #u138177_img {
  1059. border-width:0px;
  1060. position:absolute;
  1061. left:0px;
  1062. top:0px;
  1063. width:24px;
  1064. height:24px;
  1065. }
  1066. #u138177 {
  1067. border-width:0px;
  1068. position:absolute;
  1069. left:157px;
  1070. top:792px;
  1071. width:24px;
  1072. height:24px;
  1073. display:flex;
  1074. font-size:8px;
  1075. }
  1076. #u138177 .text {
  1077. position:absolute;
  1078. align-self:center;
  1079. padding:2px 2px 2px 2px;
  1080. box-sizing:border-box;
  1081. width:100%;
  1082. }
  1083. #u138177_text {
  1084. border-width:0px;
  1085. word-wrap:break-word;
  1086. text-transform:none;
  1087. }
  1088. #u138178_div {
  1089. border-width:0px;
  1090. position:absolute;
  1091. left:0px;
  1092. top:0px;
  1093. width:37px;
  1094. height:17px;
  1095. background:inherit;
  1096. background-color:rgba(255, 255, 255, 0);
  1097. border:none;
  1098. border-radius:0px;
  1099. -moz-box-shadow:none;
  1100. -webkit-box-shadow:none;
  1101. box-shadow:none;
  1102. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1103. font-weight:400;
  1104. font-style:normal;
  1105. font-size:12px;
  1106. }
  1107. #u138178 {
  1108. border-width:0px;
  1109. position:absolute;
  1110. left:151px;
  1111. top:817px;
  1112. width:37px;
  1113. height:17px;
  1114. display:flex;
  1115. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1116. font-weight:400;
  1117. font-style:normal;
  1118. font-size:12px;
  1119. }
  1120. #u138178 .text {
  1121. position:absolute;
  1122. align-self:flex-start;
  1123. padding:0px 0px 0px 0px;
  1124. box-sizing:border-box;
  1125. width:100%;
  1126. }
  1127. #u138178_text {
  1128. border-width:0px;
  1129. white-space:nowrap;
  1130. text-transform:none;
  1131. }
  1132. #u138179_div {
  1133. border-width:0px;
  1134. position:absolute;
  1135. left:0px;
  1136. top:0px;
  1137. width:375px;
  1138. height:735px;
  1139. background:inherit;
  1140. background-color:rgba(242, 242, 242, 1);
  1141. border:none;
  1142. border-top:0px;
  1143. border-radius:25px;
  1144. border-top-left-radius:0px;
  1145. border-top-right-radius:0px;
  1146. -moz-box-shadow:none;
  1147. -webkit-box-shadow:none;
  1148. box-shadow:none;
  1149. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1150. font-weight:400;
  1151. font-style:normal;
  1152. }
  1153. #u138179 {
  1154. border-width:0px;
  1155. position:absolute;
  1156. left:29px;
  1157. top:105px;
  1158. width:375px;
  1159. height:735px;
  1160. display:flex;
  1161. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1162. font-weight:400;
  1163. font-style:normal;
  1164. }
  1165. #u138179 .text {
  1166. position:absolute;
  1167. align-self:center;
  1168. padding:2px 2px 2px 2px;
  1169. box-sizing:border-box;
  1170. width:100%;
  1171. }
  1172. #u138179_text {
  1173. border-width:0px;
  1174. word-wrap:break-word;
  1175. text-transform:none;
  1176. visibility:hidden;
  1177. }
  1178. #u138180 {
  1179. border-width:0px;
  1180. position:absolute;
  1181. left:0px;
  1182. top:0px;
  1183. width:0px;
  1184. height:0px;
  1185. }
  1186. #u138181_img {
  1187. border-width:0px;
  1188. position:absolute;
  1189. left:0px;
  1190. top:0px;
  1191. width:11px;
  1192. height:18px;
  1193. }
  1194. #u138181 {
  1195. border-width:0px;
  1196. position:absolute;
  1197. left:46px;
  1198. top:79px;
  1199. width:11px;
  1200. height:18px;
  1201. display:flex;
  1202. }
  1203. #u138181 .text {
  1204. position:absolute;
  1205. align-self:center;
  1206. padding:2px 2px 2px 2px;
  1207. box-sizing:border-box;
  1208. width:100%;
  1209. }
  1210. #u138181_text {
  1211. border-width:0px;
  1212. word-wrap:break-word;
  1213. text-transform:none;
  1214. visibility:hidden;
  1215. }
  1216. #u138182_div {
  1217. border-width:0px;
  1218. position:absolute;
  1219. left:0px;
  1220. top:0px;
  1221. width:73px;
  1222. height:40px;
  1223. background:inherit;
  1224. background-color:rgba(255, 255, 255, 0);
  1225. border:none;
  1226. border-left:0px;
  1227. border-top:0px;
  1228. border-right:0px;
  1229. border-radius:0px;
  1230. border-bottom-right-radius:0px;
  1231. border-bottom-left-radius:0px;
  1232. -moz-box-shadow:none;
  1233. -webkit-box-shadow:none;
  1234. box-shadow:none;
  1235. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  1236. font-weight:500;
  1237. font-style:normal;
  1238. font-size:18px;
  1239. line-height:30px;
  1240. }
  1241. #u138182 {
  1242. border-width:0px;
  1243. position:absolute;
  1244. left:173px;
  1245. top:65px;
  1246. width:73px;
  1247. height:40px;
  1248. display:flex;
  1249. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  1250. font-weight:500;
  1251. font-style:normal;
  1252. font-size:18px;
  1253. line-height:30px;
  1254. }
  1255. #u138182 .text {
  1256. position:absolute;
  1257. align-self:center;
  1258. padding:0px 0px 0px 0px;
  1259. box-sizing:border-box;
  1260. width:100%;
  1261. }
  1262. #u138182_text {
  1263. border-width:0px;
  1264. white-space:nowrap;
  1265. text-transform:none;
  1266. }
  1267. #u138183_div {
  1268. border-width:0px;
  1269. position:absolute;
  1270. left:0px;
  1271. top:0px;
  1272. width:330px;
  1273. height:40px;
  1274. background:inherit;
  1275. background-color:rgba(24, 144, 255, 1);
  1276. border:none;
  1277. border-radius:45px;
  1278. -moz-box-shadow:none;
  1279. -webkit-box-shadow:none;
  1280. box-shadow:none;
  1281. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1282. font-weight:400;
  1283. font-style:normal;
  1284. font-size:14px;
  1285. color:#FFFFFF;
  1286. }
  1287. #u138183 {
  1288. border-width:0px;
  1289. position:absolute;
  1290. left:50px;
  1291. top:784px;
  1292. width:330px;
  1293. height:40px;
  1294. display:flex;
  1295. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1296. font-weight:400;
  1297. font-style:normal;
  1298. font-size:14px;
  1299. color:#FFFFFF;
  1300. }
  1301. #u138183 .text {
  1302. position:absolute;
  1303. align-self:center;
  1304. padding:2px 2px 2px 2px;
  1305. box-sizing:border-box;
  1306. width:100%;
  1307. }
  1308. #u138183_text {
  1309. border-width:0px;
  1310. word-wrap:break-word;
  1311. text-transform:none;
  1312. }
  1313. #u138184 {
  1314. border-width:0px;
  1315. position:absolute;
  1316. left:0px;
  1317. top:0px;
  1318. width:0px;
  1319. height:0px;
  1320. }
  1321. #u138185_div {
  1322. border-width:0px;
  1323. position:absolute;
  1324. left:0px;
  1325. top:0px;
  1326. width:355px;
  1327. height:60px;
  1328. background:inherit;
  1329. background-color:rgba(255, 255, 255, 1);
  1330. border:none;
  1331. border-radius:4px;
  1332. -moz-box-shadow:none;
  1333. -webkit-box-shadow:none;
  1334. box-shadow:none;
  1335. }
  1336. #u138185 {
  1337. border-width:0px;
  1338. position:absolute;
  1339. left:39px;
  1340. top:195px;
  1341. width:355px;
  1342. height:60px;
  1343. display:flex;
  1344. }
  1345. #u138185 .text {
  1346. position:absolute;
  1347. align-self:center;
  1348. padding:2px 2px 2px 2px;
  1349. box-sizing:border-box;
  1350. width:100%;
  1351. }
  1352. #u138185_text {
  1353. border-width:0px;
  1354. word-wrap:break-word;
  1355. text-transform:none;
  1356. visibility:hidden;
  1357. }
  1358. #u138186_div {
  1359. border-width:0px;
  1360. position:absolute;
  1361. left:0px;
  1362. top:0px;
  1363. width:97px;
  1364. height:22px;
  1365. background:inherit;
  1366. background-color:rgba(255, 255, 255, 0);
  1367. border:none;
  1368. border-radius:0px;
  1369. -moz-box-shadow:none;
  1370. -webkit-box-shadow:none;
  1371. box-shadow:none;
  1372. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1373. font-weight:400;
  1374. font-style:normal;
  1375. font-size:16px;
  1376. color:#000000;
  1377. }
  1378. #u138186 {
  1379. border-width:0px;
  1380. position:absolute;
  1381. left:59px;
  1382. top:214px;
  1383. width:97px;
  1384. height:22px;
  1385. display:flex;
  1386. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1387. font-weight:400;
  1388. font-style:normal;
  1389. font-size:16px;
  1390. color:#000000;
  1391. }
  1392. #u138186 .text {
  1393. position:absolute;
  1394. align-self:flex-start;
  1395. padding:0px 0px 0px 0px;
  1396. box-sizing:border-box;
  1397. width:100%;
  1398. }
  1399. #u138186_text {
  1400. border-width:0px;
  1401. white-space:nowrap;
  1402. text-transform:none;
  1403. }
  1404. #u138187_div {
  1405. border-width:0px;
  1406. position:absolute;
  1407. left:0px;
  1408. top:0px;
  1409. width:33px;
  1410. height:22px;
  1411. background:inherit;
  1412. background-color:rgba(255, 255, 255, 0);
  1413. border:none;
  1414. border-radius:0px;
  1415. -moz-box-shadow:none;
  1416. -webkit-box-shadow:none;
  1417. box-shadow:none;
  1418. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1419. font-weight:400;
  1420. font-style:normal;
  1421. font-size:16px;
  1422. color:#1890FF;
  1423. text-align:right;
  1424. }
  1425. #u138187 {
  1426. border-width:0px;
  1427. position:absolute;
  1428. left:347px;
  1429. top:214px;
  1430. width:33px;
  1431. height:22px;
  1432. display:flex;
  1433. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1434. font-weight:400;
  1435. font-style:normal;
  1436. font-size:16px;
  1437. color:#1890FF;
  1438. text-align:right;
  1439. }
  1440. #u138187 .text {
  1441. position:absolute;
  1442. align-self:flex-start;
  1443. padding:0px 0px 0px 0px;
  1444. box-sizing:border-box;
  1445. width:100%;
  1446. }
  1447. #u138187_text {
  1448. border-width:0px;
  1449. white-space:nowrap;
  1450. text-transform:none;
  1451. }
  1452. #u138188_div {
  1453. border-width:0px;
  1454. position:absolute;
  1455. left:0px;
  1456. top:0px;
  1457. width:33px;
  1458. height:22px;
  1459. background:inherit;
  1460. background-color:rgba(255, 255, 255, 0);
  1461. border:none;
  1462. border-radius:0px;
  1463. -moz-box-shadow:none;
  1464. -webkit-box-shadow:none;
  1465. box-shadow:none;
  1466. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1467. font-weight:400;
  1468. font-style:normal;
  1469. font-size:16px;
  1470. color:#D9001B;
  1471. text-align:right;
  1472. }
  1473. #u138188 {
  1474. border-width:0px;
  1475. position:absolute;
  1476. left:299px;
  1477. top:214px;
  1478. width:33px;
  1479. height:22px;
  1480. display:flex;
  1481. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1482. font-weight:400;
  1483. font-style:normal;
  1484. font-size:16px;
  1485. color:#D9001B;
  1486. text-align:right;
  1487. }
  1488. #u138188 .text {
  1489. position:absolute;
  1490. align-self:flex-start;
  1491. padding:0px 0px 0px 0px;
  1492. box-sizing:border-box;
  1493. width:100%;
  1494. }
  1495. #u138188_text {
  1496. border-width:0px;
  1497. white-space:nowrap;
  1498. text-transform:none;
  1499. }
  1500. #u138189 {
  1501. border-width:0px;
  1502. position:absolute;
  1503. left:0px;
  1504. top:0px;
  1505. width:0px;
  1506. height:0px;
  1507. }
  1508. #u138190_div {
  1509. border-width:0px;
  1510. position:absolute;
  1511. left:0px;
  1512. top:0px;
  1513. width:355px;
  1514. height:60px;
  1515. background:inherit;
  1516. background-color:rgba(255, 255, 255, 1);
  1517. border:none;
  1518. border-radius:4px;
  1519. -moz-box-shadow:none;
  1520. -webkit-box-shadow:none;
  1521. box-shadow:none;
  1522. }
  1523. #u138190 {
  1524. border-width:0px;
  1525. position:absolute;
  1526. left:39px;
  1527. top:375px;
  1528. width:355px;
  1529. height:60px;
  1530. display:flex;
  1531. }
  1532. #u138190 .text {
  1533. position:absolute;
  1534. align-self:center;
  1535. padding:2px 2px 2px 2px;
  1536. box-sizing:border-box;
  1537. width:100%;
  1538. }
  1539. #u138190_text {
  1540. border-width:0px;
  1541. word-wrap:break-word;
  1542. text-transform:none;
  1543. visibility:hidden;
  1544. }
  1545. #u138191_div {
  1546. border-width:0px;
  1547. position:absolute;
  1548. left:0px;
  1549. top:0px;
  1550. width:125px;
  1551. height:22px;
  1552. background:inherit;
  1553. background-color:rgba(255, 255, 255, 0);
  1554. border:none;
  1555. border-radius:0px;
  1556. -moz-box-shadow:none;
  1557. -webkit-box-shadow:none;
  1558. box-shadow:none;
  1559. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1560. font-weight:400;
  1561. font-style:normal;
  1562. font-size:16px;
  1563. color:#000000;
  1564. }
  1565. #u138191 {
  1566. border-width:0px;
  1567. position:absolute;
  1568. left:59px;
  1569. top:394px;
  1570. width:125px;
  1571. height:22px;
  1572. display:flex;
  1573. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1574. font-weight:400;
  1575. font-style:normal;
  1576. font-size:16px;
  1577. color:#000000;
  1578. }
  1579. #u138191 .text {
  1580. position:absolute;
  1581. align-self:flex-start;
  1582. padding:0px 0px 0px 0px;
  1583. box-sizing:border-box;
  1584. width:100%;
  1585. }
  1586. #u138191_text {
  1587. border-width:0px;
  1588. white-space:nowrap;
  1589. text-transform:none;
  1590. }
  1591. #u138192_div {
  1592. border-width:0px;
  1593. position:absolute;
  1594. left:0px;
  1595. top:0px;
  1596. width:63px;
  1597. height:22px;
  1598. background:inherit;
  1599. background-color:rgba(255, 255, 255, 0);
  1600. border:none;
  1601. border-radius:0px;
  1602. -moz-box-shadow:none;
  1603. -webkit-box-shadow:none;
  1604. box-shadow:none;
  1605. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1606. font-weight:400;
  1607. font-style:normal;
  1608. text-align:right;
  1609. }
  1610. #u138192 {
  1611. border-width:0px;
  1612. position:absolute;
  1613. left:317px;
  1614. top:394px;
  1615. width:63px;
  1616. height:22px;
  1617. display:flex;
  1618. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1619. font-weight:400;
  1620. font-style:normal;
  1621. text-align:right;
  1622. }
  1623. #u138192 .text {
  1624. position:absolute;
  1625. align-self:flex-start;
  1626. padding:0px 0px 0px 0px;
  1627. box-sizing:border-box;
  1628. width:100%;
  1629. }
  1630. #u138192_text {
  1631. border-width:0px;
  1632. white-space:nowrap;
  1633. text-transform:none;
  1634. }
  1635. #u138193 {
  1636. border-width:0px;
  1637. position:absolute;
  1638. left:0px;
  1639. top:0px;
  1640. width:0px;
  1641. height:0px;
  1642. }
  1643. #u138194_div {
  1644. border-width:0px;
  1645. position:absolute;
  1646. left:0px;
  1647. top:0px;
  1648. width:300px;
  1649. height:179px;
  1650. background:inherit;
  1651. background-color:rgba(255, 255, 255, 1);
  1652. border:none;
  1653. border-radius:10px;
  1654. -moz-box-shadow:0px 0px 5px rgba(0, 0, 0, 0.349019607843137);
  1655. -webkit-box-shadow:0px 0px 5px rgba(0, 0, 0, 0.349019607843137);
  1656. box-shadow:0px 0px 5px rgba(0, 0, 0, 0.349019607843137);
  1657. }
  1658. #u138194 {
  1659. border-width:0px;
  1660. position:absolute;
  1661. left:493px;
  1662. top:196px;
  1663. width:300px;
  1664. height:179px;
  1665. display:flex;
  1666. }
  1667. #u138194 .text {
  1668. position:absolute;
  1669. align-self:center;
  1670. padding:2px 2px 2px 2px;
  1671. box-sizing:border-box;
  1672. width:100%;
  1673. }
  1674. #u138194_text {
  1675. border-width:0px;
  1676. word-wrap:break-word;
  1677. text-transform:none;
  1678. visibility:hidden;
  1679. }
  1680. #u138195_div {
  1681. border-width:0px;
  1682. position:absolute;
  1683. left:0px;
  1684. top:0px;
  1685. width:217px;
  1686. height:30px;
  1687. background:inherit;
  1688. background-color:rgba(255, 255, 255, 0);
  1689. border:none;
  1690. border-left:0px;
  1691. border-top:0px;
  1692. border-right:0px;
  1693. border-radius:0px;
  1694. border-bottom-right-radius:0px;
  1695. border-bottom-left-radius:0px;
  1696. -moz-box-shadow:none;
  1697. -webkit-box-shadow:none;
  1698. box-shadow:none;
  1699. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1700. font-weight:400;
  1701. font-style:normal;
  1702. font-size:18px;
  1703. text-align:center;
  1704. line-height:30px;
  1705. }
  1706. #u138195 {
  1707. border-width:0px;
  1708. position:absolute;
  1709. left:535px;
  1710. top:214px;
  1711. width:217px;
  1712. height:30px;
  1713. display:flex;
  1714. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1715. font-weight:400;
  1716. font-style:normal;
  1717. font-size:18px;
  1718. text-align:center;
  1719. line-height:30px;
  1720. }
  1721. #u138195 .text {
  1722. position:absolute;
  1723. align-self:flex-start;
  1724. padding:0px 0px 0px 0px;
  1725. box-sizing:border-box;
  1726. width:100%;
  1727. }
  1728. #u138195_text {
  1729. border-width:0px;
  1730. white-space:nowrap;
  1731. text-transform:none;
  1732. }
  1733. #u138196_div {
  1734. border-width:0px;
  1735. position:absolute;
  1736. left:0px;
  1737. top:0px;
  1738. width:260px;
  1739. height:52px;
  1740. background:inherit;
  1741. background-color:rgba(255, 255, 255, 0);
  1742. border:none;
  1743. border-left:0px;
  1744. border-top:0px;
  1745. border-right:0px;
  1746. border-radius:0px;
  1747. border-bottom-right-radius:0px;
  1748. border-bottom-left-radius:0px;
  1749. -moz-box-shadow:none;
  1750. -webkit-box-shadow:none;
  1751. box-shadow:none;
  1752. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1753. font-weight:400;
  1754. font-style:normal;
  1755. font-size:14px;
  1756. color:#7F7F7F;
  1757. line-height:26px;
  1758. }
  1759. #u138196 {
  1760. border-width:0px;
  1761. position:absolute;
  1762. left:516px;
  1763. top:254px;
  1764. width:260px;
  1765. height:52px;
  1766. display:flex;
  1767. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1768. font-weight:400;
  1769. font-style:normal;
  1770. font-size:14px;
  1771. color:#7F7F7F;
  1772. line-height:26px;
  1773. }
  1774. #u138196 .text {
  1775. position:absolute;
  1776. align-self:flex-start;
  1777. padding:0px 0px 0px 0px;
  1778. box-sizing:border-box;
  1779. width:100%;
  1780. }
  1781. #u138196_text {
  1782. border-width:0px;
  1783. word-wrap:break-word;
  1784. text-transform:none;
  1785. }
  1786. #u138197_img {
  1787. border-width:0px;
  1788. position:absolute;
  1789. left:0px;
  1790. top:0px;
  1791. width:301px;
  1792. height:2px;
  1793. }
  1794. #u138197 {
  1795. border-width:0px;
  1796. position:absolute;
  1797. left:493px;
  1798. top:326px;
  1799. width:300px;
  1800. height:1px;
  1801. display:flex;
  1802. }
  1803. #u138197 .text {
  1804. position:absolute;
  1805. align-self:center;
  1806. padding:2px 2px 2px 2px;
  1807. box-sizing:border-box;
  1808. width:100%;
  1809. }
  1810. #u138197_text {
  1811. border-width:0px;
  1812. word-wrap:break-word;
  1813. text-transform:none;
  1814. visibility:hidden;
  1815. }
  1816. #u138198_div {
  1817. border-width:0px;
  1818. position:absolute;
  1819. left:0px;
  1820. top:0px;
  1821. width:41px;
  1822. height:30px;
  1823. background:inherit;
  1824. background-color:rgba(255, 255, 255, 0);
  1825. border:none;
  1826. border-left:0px;
  1827. border-top:0px;
  1828. border-right:0px;
  1829. border-radius:0px;
  1830. border-bottom-right-radius:0px;
  1831. border-bottom-left-radius:0px;
  1832. -moz-box-shadow:none;
  1833. -webkit-box-shadow:none;
  1834. box-shadow:none;
  1835. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1836. font-weight:400;
  1837. font-style:normal;
  1838. font-size:18px;
  1839. color:#1890FF;
  1840. text-align:center;
  1841. line-height:30px;
  1842. }
  1843. #u138198 {
  1844. border-width:0px;
  1845. position:absolute;
  1846. left:709px;
  1847. top:336px;
  1848. width:41px;
  1849. height:30px;
  1850. display:flex;
  1851. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1852. font-weight:400;
  1853. font-style:normal;
  1854. font-size:18px;
  1855. color:#1890FF;
  1856. text-align:center;
  1857. line-height:30px;
  1858. }
  1859. #u138198 .text {
  1860. position:absolute;
  1861. align-self:flex-start;
  1862. padding:0px 0px 0px 0px;
  1863. box-sizing:border-box;
  1864. width:100%;
  1865. }
  1866. #u138198_text {
  1867. border-width:0px;
  1868. word-wrap:break-word;
  1869. text-transform:none;
  1870. }
  1871. #u138199_div {
  1872. border-width:0px;
  1873. position:absolute;
  1874. left:0px;
  1875. top:0px;
  1876. width:41px;
  1877. height:30px;
  1878. background:inherit;
  1879. background-color:rgba(255, 255, 255, 0);
  1880. border:none;
  1881. border-left:0px;
  1882. border-top:0px;
  1883. border-right:0px;
  1884. border-radius:0px;
  1885. border-bottom-right-radius:0px;
  1886. border-bottom-left-radius:0px;
  1887. -moz-box-shadow:none;
  1888. -webkit-box-shadow:none;
  1889. box-shadow:none;
  1890. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1891. font-weight:400;
  1892. font-style:normal;
  1893. font-size:18px;
  1894. color:#1890FF;
  1895. text-align:center;
  1896. line-height:30px;
  1897. }
  1898. #u138199 {
  1899. border-width:0px;
  1900. position:absolute;
  1901. left:539px;
  1902. top:336px;
  1903. width:41px;
  1904. height:30px;
  1905. display:flex;
  1906. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1907. font-weight:400;
  1908. font-style:normal;
  1909. font-size:18px;
  1910. color:#1890FF;
  1911. text-align:center;
  1912. line-height:30px;
  1913. }
  1914. #u138199 .text {
  1915. position:absolute;
  1916. align-self:flex-start;
  1917. padding:0px 0px 0px 0px;
  1918. box-sizing:border-box;
  1919. width:100%;
  1920. }
  1921. #u138199_text {
  1922. border-width:0px;
  1923. word-wrap:break-word;
  1924. text-transform:none;
  1925. }
  1926. #u138200_img {
  1927. border-width:0px;
  1928. position:absolute;
  1929. left:0px;
  1930. top:0px;
  1931. width:2px;
  1932. height:49px;
  1933. }
  1934. #u138200 {
  1935. border-width:0px;
  1936. position:absolute;
  1937. left:642px;
  1938. top:327px;
  1939. width:1px;
  1940. height:48px;
  1941. display:flex;
  1942. }
  1943. #u138200 .text {
  1944. position:absolute;
  1945. align-self:center;
  1946. padding:2px 2px 2px 2px;
  1947. box-sizing:border-box;
  1948. width:100%;
  1949. }
  1950. #u138200_text {
  1951. border-width:0px;
  1952. word-wrap:break-word;
  1953. text-transform:none;
  1954. visibility:hidden;
  1955. }
  1956. #u138201 {
  1957. border-width:0px;
  1958. position:absolute;
  1959. left:0px;
  1960. top:0px;
  1961. width:0px;
  1962. height:0px;
  1963. }
  1964. #u138202_div {
  1965. border-width:0px;
  1966. position:absolute;
  1967. left:0px;
  1968. top:0px;
  1969. width:300px;
  1970. height:149px;
  1971. background:inherit;
  1972. background-color:rgba(255, 255, 255, 1);
  1973. border:none;
  1974. border-radius:10px;
  1975. -moz-box-shadow:0px 0px 5px rgba(0, 0, 0, 0.349019607843137);
  1976. -webkit-box-shadow:0px 0px 5px rgba(0, 0, 0, 0.349019607843137);
  1977. box-shadow:0px 0px 5px rgba(0, 0, 0, 0.349019607843137);
  1978. }
  1979. #u138202 {
  1980. border-width:0px;
  1981. position:absolute;
  1982. left:493px;
  1983. top:417px;
  1984. width:300px;
  1985. height:149px;
  1986. display:flex;
  1987. }
  1988. #u138202 .text {
  1989. position:absolute;
  1990. align-self:center;
  1991. padding:2px 2px 2px 2px;
  1992. box-sizing:border-box;
  1993. width:100%;
  1994. }
  1995. #u138202_text {
  1996. border-width:0px;
  1997. word-wrap:break-word;
  1998. text-transform:none;
  1999. visibility:hidden;
  2000. }
  2001. #u138203_div {
  2002. border-width:0px;
  2003. position:absolute;
  2004. left:0px;
  2005. top:0px;
  2006. width:217px;
  2007. height:30px;
  2008. background:inherit;
  2009. background-color:rgba(255, 255, 255, 0);
  2010. border:none;
  2011. border-left:0px;
  2012. border-top:0px;
  2013. border-right:0px;
  2014. border-radius:0px;
  2015. border-bottom-right-radius:0px;
  2016. border-bottom-left-radius:0px;
  2017. -moz-box-shadow:none;
  2018. -webkit-box-shadow:none;
  2019. box-shadow:none;
  2020. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2021. font-weight:400;
  2022. font-style:normal;
  2023. font-size:18px;
  2024. text-align:center;
  2025. line-height:30px;
  2026. }
  2027. #u138203 {
  2028. border-width:0px;
  2029. position:absolute;
  2030. left:535px;
  2031. top:435px;
  2032. width:217px;
  2033. height:30px;
  2034. display:flex;
  2035. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2036. font-weight:400;
  2037. font-style:normal;
  2038. font-size:18px;
  2039. text-align:center;
  2040. line-height:30px;
  2041. }
  2042. #u138203 .text {
  2043. position:absolute;
  2044. align-self:flex-start;
  2045. padding:0px 0px 0px 0px;
  2046. box-sizing:border-box;
  2047. width:100%;
  2048. }
  2049. #u138203_text {
  2050. border-width:0px;
  2051. white-space:nowrap;
  2052. text-transform:none;
  2053. }
  2054. #u138204_div {
  2055. border-width:0px;
  2056. position:absolute;
  2057. left:0px;
  2058. top:0px;
  2059. width:260px;
  2060. height:26px;
  2061. background:inherit;
  2062. background-color:rgba(255, 255, 255, 0);
  2063. border:none;
  2064. border-left:0px;
  2065. border-top:0px;
  2066. border-right:0px;
  2067. border-radius:0px;
  2068. border-bottom-right-radius:0px;
  2069. border-bottom-left-radius:0px;
  2070. -moz-box-shadow:none;
  2071. -webkit-box-shadow:none;
  2072. box-shadow:none;
  2073. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2074. font-weight:400;
  2075. font-style:normal;
  2076. font-size:14px;
  2077. color:#7F7F7F;
  2078. line-height:26px;
  2079. }
  2080. #u138204 {
  2081. border-width:0px;
  2082. position:absolute;
  2083. left:516px;
  2084. top:475px;
  2085. width:260px;
  2086. height:26px;
  2087. display:flex;
  2088. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2089. font-weight:400;
  2090. font-style:normal;
  2091. font-size:14px;
  2092. color:#7F7F7F;
  2093. line-height:26px;
  2094. }
  2095. #u138204 .text {
  2096. position:absolute;
  2097. align-self:flex-start;
  2098. padding:0px 0px 0px 0px;
  2099. box-sizing:border-box;
  2100. width:100%;
  2101. }
  2102. #u138204_text {
  2103. border-width:0px;
  2104. word-wrap:break-word;
  2105. text-transform:none;
  2106. }
  2107. #u138205_img {
  2108. border-width:0px;
  2109. position:absolute;
  2110. left:0px;
  2111. top:0px;
  2112. width:301px;
  2113. height:2px;
  2114. }
  2115. #u138205 {
  2116. border-width:0px;
  2117. position:absolute;
  2118. left:493px;
  2119. top:517px;
  2120. width:300px;
  2121. height:1px;
  2122. display:flex;
  2123. }
  2124. #u138205 .text {
  2125. position:absolute;
  2126. align-self:center;
  2127. padding:2px 2px 2px 2px;
  2128. box-sizing:border-box;
  2129. width:100%;
  2130. }
  2131. #u138205_text {
  2132. border-width:0px;
  2133. word-wrap:break-word;
  2134. text-transform:none;
  2135. visibility:hidden;
  2136. }
  2137. #u138206_div {
  2138. border-width:0px;
  2139. position:absolute;
  2140. left:0px;
  2141. top:0px;
  2142. width:41px;
  2143. height:30px;
  2144. background:inherit;
  2145. background-color:rgba(255, 255, 255, 0);
  2146. border:none;
  2147. border-left:0px;
  2148. border-top:0px;
  2149. border-right:0px;
  2150. border-radius:0px;
  2151. border-bottom-right-radius:0px;
  2152. border-bottom-left-radius:0px;
  2153. -moz-box-shadow:none;
  2154. -webkit-box-shadow:none;
  2155. box-shadow:none;
  2156. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2157. font-weight:400;
  2158. font-style:normal;
  2159. font-size:18px;
  2160. color:#1890FF;
  2161. text-align:center;
  2162. line-height:30px;
  2163. }
  2164. #u138206 {
  2165. border-width:0px;
  2166. position:absolute;
  2167. left:709px;
  2168. top:527px;
  2169. width:41px;
  2170. height:30px;
  2171. display:flex;
  2172. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2173. font-weight:400;
  2174. font-style:normal;
  2175. font-size:18px;
  2176. color:#1890FF;
  2177. text-align:center;
  2178. line-height:30px;
  2179. }
  2180. #u138206 .text {
  2181. position:absolute;
  2182. align-self:flex-start;
  2183. padding:0px 0px 0px 0px;
  2184. box-sizing:border-box;
  2185. width:100%;
  2186. }
  2187. #u138206_text {
  2188. border-width:0px;
  2189. word-wrap:break-word;
  2190. text-transform:none;
  2191. }
  2192. #u138207_div {
  2193. border-width:0px;
  2194. position:absolute;
  2195. left:0px;
  2196. top:0px;
  2197. width:41px;
  2198. height:30px;
  2199. background:inherit;
  2200. background-color:rgba(255, 255, 255, 0);
  2201. border:none;
  2202. border-left:0px;
  2203. border-top:0px;
  2204. border-right:0px;
  2205. border-radius:0px;
  2206. border-bottom-right-radius:0px;
  2207. border-bottom-left-radius:0px;
  2208. -moz-box-shadow:none;
  2209. -webkit-box-shadow:none;
  2210. box-shadow:none;
  2211. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2212. font-weight:400;
  2213. font-style:normal;
  2214. font-size:18px;
  2215. color:#1890FF;
  2216. text-align:center;
  2217. line-height:30px;
  2218. }
  2219. #u138207 {
  2220. border-width:0px;
  2221. position:absolute;
  2222. left:539px;
  2223. top:527px;
  2224. width:41px;
  2225. height:30px;
  2226. display:flex;
  2227. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2228. font-weight:400;
  2229. font-style:normal;
  2230. font-size:18px;
  2231. color:#1890FF;
  2232. text-align:center;
  2233. line-height:30px;
  2234. }
  2235. #u138207 .text {
  2236. position:absolute;
  2237. align-self:flex-start;
  2238. padding:0px 0px 0px 0px;
  2239. box-sizing:border-box;
  2240. width:100%;
  2241. }
  2242. #u138207_text {
  2243. border-width:0px;
  2244. word-wrap:break-word;
  2245. text-transform:none;
  2246. }
  2247. #u138208_img {
  2248. border-width:0px;
  2249. position:absolute;
  2250. left:0px;
  2251. top:0px;
  2252. width:2px;
  2253. height:49px;
  2254. }
  2255. #u138208 {
  2256. border-width:0px;
  2257. position:absolute;
  2258. left:642px;
  2259. top:518px;
  2260. width:1px;
  2261. height:48px;
  2262. display:flex;
  2263. }
  2264. #u138208 .text {
  2265. position:absolute;
  2266. align-self:center;
  2267. padding:2px 2px 2px 2px;
  2268. box-sizing:border-box;
  2269. width:100%;
  2270. }
  2271. #u138208_text {
  2272. border-width:0px;
  2273. word-wrap:break-word;
  2274. text-transform:none;
  2275. visibility:hidden;
  2276. }
  2277. #u138209_div {
  2278. border-width:0px;
  2279. position:absolute;
  2280. left:0px;
  2281. top:0px;
  2282. width:249px;
  2283. height:70px;
  2284. background:inherit;
  2285. background-color:rgba(255, 255, 255, 0);
  2286. border:none;
  2287. border-top:0px;
  2288. border-right:0px;
  2289. border-bottom:0px;
  2290. border-radius:0px;
  2291. border-top-left-radius:0px;
  2292. border-bottom-left-radius:0px;
  2293. -moz-box-shadow:none;
  2294. -webkit-box-shadow:none;
  2295. box-shadow:none;
  2296. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  2297. font-style:normal;
  2298. line-height:30px;
  2299. }
  2300. #u138209 {
  2301. border-width:0px;
  2302. position:absolute;
  2303. left:39px;
  2304. top:125px;
  2305. width:249px;
  2306. height:70px;
  2307. display:flex;
  2308. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  2309. font-style:normal;
  2310. line-height:30px;
  2311. }
  2312. #u138209 .text {
  2313. position:absolute;
  2314. align-self:center;
  2315. padding:5px 10px 5px 0px;
  2316. box-sizing:border-box;
  2317. width:100%;
  2318. }
  2319. #u138209_text {
  2320. border-width:0px;
  2321. white-space:nowrap;
  2322. text-transform:none;
  2323. }
  2324. #u138210_div {
  2325. border-width:0px;
  2326. position:absolute;
  2327. left:0px;
  2328. top:0px;
  2329. width:355px;
  2330. height:100px;
  2331. background:inherit;
  2332. background-color:rgba(255, 255, 255, 0);
  2333. border:none;
  2334. border-top:0px;
  2335. border-right:0px;
  2336. border-bottom:0px;
  2337. border-radius:0px;
  2338. border-top-left-radius:0px;
  2339. border-bottom-left-radius:0px;
  2340. -moz-box-shadow:none;
  2341. -webkit-box-shadow:none;
  2342. box-shadow:none;
  2343. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  2344. font-style:normal;
  2345. line-height:30px;
  2346. }
  2347. #u138210 {
  2348. border-width:0px;
  2349. position:absolute;
  2350. left:39px;
  2351. top:275px;
  2352. width:355px;
  2353. height:100px;
  2354. display:flex;
  2355. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  2356. font-style:normal;
  2357. line-height:30px;
  2358. }
  2359. #u138210 .text {
  2360. position:absolute;
  2361. align-self:center;
  2362. padding:5px 10px 5px 0px;
  2363. box-sizing:border-box;
  2364. width:100%;
  2365. }
  2366. #u138210_text {
  2367. border-width:0px;
  2368. word-wrap:break-word;
  2369. text-transform:none;
  2370. }