styles.css 70 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729
  1. body {
  2. margin:0px;
  3. background-image:none;
  4. position:relative;
  5. left:-97px;
  6. width:800px;
  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. #u93594 {
  20. border-width:0px;
  21. position:absolute;
  22. left:0px;
  23. top:0px;
  24. width:0px;
  25. height:0px;
  26. }
  27. #u93595_div {
  28. border-width:0px;
  29. position:absolute;
  30. left:0px;
  31. top:0px;
  32. width:800px;
  33. height:60px;
  34. background:inherit;
  35. background-color:rgba(255, 255, 255, 1);
  36. box-sizing:border-box;
  37. border-width:1px;
  38. border-style:solid;
  39. border-color:rgba(242, 242, 242, 1);
  40. border-radius:0px;
  41. -moz-box-shadow:none;
  42. -webkit-box-shadow:none;
  43. box-shadow:none;
  44. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  45. font-weight:400;
  46. font-style:normal;
  47. font-size:14px;
  48. color:#AAAAAA;
  49. text-align:center;
  50. line-height:30px;
  51. }
  52. #u93595 {
  53. border-width:0px;
  54. position:absolute;
  55. left:97px;
  56. top:73px;
  57. width:800px;
  58. height:60px;
  59. display:flex;
  60. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  61. font-weight:400;
  62. font-style:normal;
  63. font-size:14px;
  64. color:#AAAAAA;
  65. text-align:center;
  66. line-height:30px;
  67. }
  68. #u93595 .text {
  69. position:absolute;
  70. align-self:center;
  71. padding:5px 10px 5px 10px;
  72. box-sizing:border-box;
  73. width:100%;
  74. }
  75. #u93595_text {
  76. border-width:0px;
  77. word-wrap:break-word;
  78. text-transform:none;
  79. visibility:hidden;
  80. }
  81. #u93596_div {
  82. border-width:0px;
  83. position:absolute;
  84. left:0px;
  85. top:0px;
  86. width:119px;
  87. height:35px;
  88. background:inherit;
  89. background-color:rgba(255, 255, 255, 0);
  90. border:none;
  91. border-top:0px;
  92. border-right:0px;
  93. border-bottom:0px;
  94. border-radius:0px;
  95. border-top-left-radius:0px;
  96. border-bottom-left-radius:0px;
  97. -moz-box-shadow:none;
  98. -webkit-box-shadow:none;
  99. box-shadow:none;
  100. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  101. font-weight:500;
  102. font-style:normal;
  103. font-size:18px;
  104. }
  105. #u93596 {
  106. border-width:0px;
  107. position:absolute;
  108. left:128px;
  109. top:86px;
  110. width:119px;
  111. height:35px;
  112. display:flex;
  113. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  114. font-weight:500;
  115. font-style:normal;
  116. font-size:18px;
  117. }
  118. #u93596 .text {
  119. position:absolute;
  120. align-self:center;
  121. padding:5px 10px 5px 0px;
  122. box-sizing:border-box;
  123. width:100%;
  124. }
  125. #u93596_text {
  126. border-width:0px;
  127. white-space:nowrap;
  128. text-transform:none;
  129. }
  130. #u93597_div {
  131. border-width:0px;
  132. position:absolute;
  133. left:0px;
  134. top:0px;
  135. width:800px;
  136. height:1142px;
  137. background:inherit;
  138. background-color:rgba(255, 255, 255, 1);
  139. box-sizing:border-box;
  140. border-width:1px;
  141. border-style:solid;
  142. border-color:rgba(242, 242, 242, 1);
  143. border-radius:0px;
  144. -moz-box-shadow:none;
  145. -webkit-box-shadow:none;
  146. box-shadow:none;
  147. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  148. font-weight:400;
  149. font-style:normal;
  150. font-size:14px;
  151. color:#AAAAAA;
  152. text-align:center;
  153. line-height:30px;
  154. }
  155. #u93597 {
  156. border-width:0px;
  157. position:absolute;
  158. left:97px;
  159. top:133px;
  160. width:800px;
  161. height:1142px;
  162. display:flex;
  163. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  164. font-weight:400;
  165. font-style:normal;
  166. font-size:14px;
  167. color:#AAAAAA;
  168. text-align:center;
  169. line-height:30px;
  170. }
  171. #u93597 .text {
  172. position:absolute;
  173. align-self:center;
  174. padding:5px 10px 5px 10px;
  175. box-sizing:border-box;
  176. width:100%;
  177. }
  178. #u93597_text {
  179. border-width:0px;
  180. word-wrap:break-word;
  181. text-transform:none;
  182. visibility:hidden;
  183. }
  184. #u93598 {
  185. border-width:0px;
  186. position:absolute;
  187. left:0px;
  188. top:0px;
  189. width:0px;
  190. height:0px;
  191. }
  192. #u93599_div {
  193. border-width:0px;
  194. position:absolute;
  195. left:0px;
  196. top:0px;
  197. width:800px;
  198. height:60px;
  199. background:inherit;
  200. background-color:rgba(255, 255, 255, 1);
  201. box-sizing:border-box;
  202. border-width:1px;
  203. border-style:solid;
  204. border-color:rgba(215, 215, 215, 1);
  205. border-radius:0px;
  206. -moz-box-shadow:none;
  207. -webkit-box-shadow:none;
  208. box-shadow:none;
  209. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  210. font-weight:400;
  211. font-style:normal;
  212. font-size:14px;
  213. color:#AAAAAA;
  214. text-align:center;
  215. line-height:30px;
  216. }
  217. #u93599 {
  218. border-width:0px;
  219. position:absolute;
  220. left:97px;
  221. top:1214px;
  222. width:800px;
  223. height:60px;
  224. display:flex;
  225. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  226. font-weight:400;
  227. font-style:normal;
  228. font-size:14px;
  229. color:#AAAAAA;
  230. text-align:center;
  231. line-height:30px;
  232. }
  233. #u93599 .text {
  234. position:absolute;
  235. align-self:center;
  236. padding:5px 10px 5px 10px;
  237. box-sizing:border-box;
  238. width:100%;
  239. }
  240. #u93599_text {
  241. border-width:0px;
  242. word-wrap:break-word;
  243. text-transform:none;
  244. visibility:hidden;
  245. }
  246. #u93600_img {
  247. border-width:0px;
  248. position:absolute;
  249. left:0px;
  250. top:0px;
  251. width:80px;
  252. height:30px;
  253. }
  254. #u93600 {
  255. border-width:0px;
  256. position:absolute;
  257. left:777px;
  258. top:1229px;
  259. width:80px;
  260. height:30px;
  261. display:flex;
  262. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  263. font-weight:400;
  264. font-style:normal;
  265. font-size:14px;
  266. color:#FFFFFF;
  267. }
  268. #u93600 .text {
  269. position:absolute;
  270. align-self:center;
  271. padding:2px 2px 2px 2px;
  272. box-sizing:border-box;
  273. width:100%;
  274. }
  275. #u93600_text {
  276. border-width:0px;
  277. word-wrap:break-word;
  278. text-transform:none;
  279. }
  280. #u93601_div {
  281. border-width:0px;
  282. position:absolute;
  283. left:0px;
  284. top:0px;
  285. width:80px;
  286. height:30px;
  287. background:inherit;
  288. background-color:rgba(255, 255, 255, 1);
  289. box-sizing:border-box;
  290. border-width:1px;
  291. border-style:solid;
  292. border-color:rgba(170, 170, 170, 1);
  293. border-radius:4px;
  294. -moz-box-shadow:none;
  295. -webkit-box-shadow:none;
  296. box-shadow:none;
  297. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  298. font-weight:400;
  299. font-style:normal;
  300. font-size:14px;
  301. }
  302. #u93601 {
  303. border-width:0px;
  304. position:absolute;
  305. left:687px;
  306. top:1229px;
  307. width:80px;
  308. height:30px;
  309. display:flex;
  310. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  311. font-weight:400;
  312. font-style:normal;
  313. font-size:14px;
  314. }
  315. #u93601 .text {
  316. position:absolute;
  317. align-self:center;
  318. padding:2px 2px 2px 2px;
  319. box-sizing:border-box;
  320. width:100%;
  321. }
  322. #u93601_text {
  323. border-width:0px;
  324. word-wrap:break-word;
  325. text-transform:none;
  326. }
  327. #u93602_div {
  328. border-width:0px;
  329. position:absolute;
  330. left:0px;
  331. top:0px;
  332. width:73px;
  333. height:40px;
  334. background:inherit;
  335. background-color:rgba(255, 255, 255, 0);
  336. border:none;
  337. border-left:0px;
  338. border-top:0px;
  339. border-right:0px;
  340. border-radius:0px;
  341. border-bottom-right-radius:0px;
  342. border-bottom-left-radius:0px;
  343. -moz-box-shadow:none;
  344. -webkit-box-shadow:none;
  345. box-shadow:none;
  346. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  347. font-weight:500;
  348. font-style:normal;
  349. font-size:18px;
  350. }
  351. #u93602 {
  352. border-width:0px;
  353. position:absolute;
  354. left:136px;
  355. top:159px;
  356. width:73px;
  357. height:40px;
  358. display:flex;
  359. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  360. font-weight:500;
  361. font-style:normal;
  362. font-size:18px;
  363. }
  364. #u93602 .text {
  365. position:absolute;
  366. align-self:center;
  367. padding:0px 0px 0px 0px;
  368. box-sizing:border-box;
  369. width:100%;
  370. }
  371. #u93602_text {
  372. border-width:0px;
  373. white-space:nowrap;
  374. text-transform:none;
  375. }
  376. #u93603_div {
  377. border-width:0px;
  378. position:absolute;
  379. left:0px;
  380. top:0px;
  381. width:40px;
  382. height:40px;
  383. background:inherit;
  384. background-color:rgba(255, 255, 255, 0);
  385. border:none;
  386. border-top:0px;
  387. border-right:0px;
  388. border-bottom:0px;
  389. border-radius:0px;
  390. border-top-left-radius:0px;
  391. border-bottom-left-radius:0px;
  392. -moz-box-shadow:none;
  393. -webkit-box-shadow:none;
  394. box-shadow:none;
  395. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  396. font-weight:500;
  397. font-style:normal;
  398. font-size:24px;
  399. text-align:center;
  400. }
  401. #u93603 {
  402. border-width:0px;
  403. position:absolute;
  404. left:857px;
  405. top:73px;
  406. width:40px;
  407. height:40px;
  408. display:flex;
  409. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  410. font-weight:500;
  411. font-style:normal;
  412. font-size:24px;
  413. text-align:center;
  414. }
  415. #u93603 .text {
  416. position:absolute;
  417. align-self:center;
  418. padding:5px 10px 5px 0px;
  419. box-sizing:border-box;
  420. width:100%;
  421. }
  422. #u93603_text {
  423. border-width:0px;
  424. word-wrap:break-word;
  425. text-transform:none;
  426. }
  427. #u93604 {
  428. border-width:0px;
  429. position:absolute;
  430. left:0px;
  431. top:0px;
  432. width:0px;
  433. height:0px;
  434. }
  435. #u93605_div {
  436. border-width:0px;
  437. position:absolute;
  438. left:0px;
  439. top:0px;
  440. width:83px;
  441. height:80px;
  442. background:inherit;
  443. background-color:rgba(255, 255, 255, 1);
  444. box-sizing:border-box;
  445. border-width:1px;
  446. border-style:solid;
  447. border-color:rgba(201, 201, 201, 1);
  448. border-radius:4px;
  449. -moz-box-shadow:none;
  450. -webkit-box-shadow:none;
  451. box-shadow:none;
  452. font-family:'Helvetica', sans-serif;
  453. font-weight:400;
  454. font-style:normal;
  455. font-size:24px;
  456. }
  457. #u93605 {
  458. border-width:0px;
  459. position:absolute;
  460. left:336px;
  461. top:852px;
  462. width:83px;
  463. height:80px;
  464. display:flex;
  465. font-family:'Helvetica', sans-serif;
  466. font-weight:400;
  467. font-style:normal;
  468. font-size:24px;
  469. }
  470. #u93605 .text {
  471. position:absolute;
  472. align-self:center;
  473. padding:2px 8px 2px 8px;
  474. box-sizing:border-box;
  475. width:100%;
  476. }
  477. #u93605_text {
  478. border-width:0px;
  479. word-wrap:break-word;
  480. text-transform:none;
  481. }
  482. #u93606_div {
  483. border-width:0px;
  484. position:absolute;
  485. left:0px;
  486. top:0px;
  487. width:57px;
  488. height:40px;
  489. background:inherit;
  490. background-color:rgba(255, 255, 255, 0);
  491. border:none;
  492. border-left:0px;
  493. border-top:0px;
  494. border-right:0px;
  495. border-radius:0px;
  496. border-bottom-right-radius:0px;
  497. border-bottom-left-radius:0px;
  498. -moz-box-shadow:none;
  499. -webkit-box-shadow:none;
  500. box-shadow:none;
  501. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  502. font-weight:400;
  503. font-style:normal;
  504. font-size:14px;
  505. color:#D9001B;
  506. }
  507. #u93606 {
  508. border-width:0px;
  509. position:absolute;
  510. left:336px;
  511. top:812px;
  512. width:57px;
  513. height:40px;
  514. display:flex;
  515. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  516. font-weight:400;
  517. font-style:normal;
  518. font-size:14px;
  519. color:#D9001B;
  520. }
  521. #u93606 .text {
  522. position:absolute;
  523. align-self:center;
  524. padding:0px 0px 0px 0px;
  525. box-sizing:border-box;
  526. width:100%;
  527. }
  528. #u93606_text {
  529. border-width:0px;
  530. white-space:nowrap;
  531. text-transform:none;
  532. }
  533. #u93607 {
  534. border-width:0px;
  535. position:absolute;
  536. left:0px;
  537. top:0px;
  538. width:0px;
  539. height:0px;
  540. }
  541. #u93608_div {
  542. border-width:0px;
  543. position:absolute;
  544. left:0px;
  545. top:0px;
  546. width:166px;
  547. height:40px;
  548. background:inherit;
  549. background-color:rgba(255, 255, 255, 1);
  550. box-sizing:border-box;
  551. border-width:1px;
  552. border-style:solid;
  553. border-color:rgba(215, 215, 215, 1);
  554. border-radius:4px;
  555. -moz-box-shadow:none;
  556. -webkit-box-shadow:none;
  557. box-shadow:none;
  558. font-size:14px;
  559. }
  560. #u93608 {
  561. border-width:0px;
  562. position:absolute;
  563. left:136px;
  564. top:249px;
  565. width:166px;
  566. height:40px;
  567. display:flex;
  568. font-size:14px;
  569. }
  570. #u93608 .text {
  571. position:absolute;
  572. align-self:center;
  573. padding:2px 2px 2px 2px;
  574. box-sizing:border-box;
  575. width:100%;
  576. }
  577. #u93608_text {
  578. border-width:0px;
  579. word-wrap:break-word;
  580. text-transform:none;
  581. visibility:hidden;
  582. }
  583. #u93609_input {
  584. position:absolute;
  585. left:0px;
  586. top:0px;
  587. width:159px;
  588. height:31px;
  589. padding:2px 2px 2px 2px;
  590. font-family:'ArialMT', 'Arial', sans-serif;
  591. font-weight:400;
  592. font-style:normal;
  593. font-size:14px;
  594. letter-spacing:normal;
  595. color:#AAAAAA;
  596. vertical-align:none;
  597. text-align:left;
  598. text-transform:none;
  599. background-color:transparent;
  600. border-color:transparent;
  601. }
  602. #u93609_input.disabled {
  603. position:absolute;
  604. left:0px;
  605. top:0px;
  606. width:159px;
  607. height:31px;
  608. padding:2px 2px 2px 2px;
  609. font-family:'ArialMT', 'Arial', sans-serif;
  610. font-weight:400;
  611. font-style:normal;
  612. font-size:14px;
  613. letter-spacing:normal;
  614. color:#AAAAAA;
  615. vertical-align:none;
  616. text-align:left;
  617. text-transform:none;
  618. background-color:transparent;
  619. border-color:transparent;
  620. }
  621. #u93609_div {
  622. border-width:0px;
  623. position:absolute;
  624. left:0px;
  625. top:0px;
  626. width:159px;
  627. height:31px;
  628. background:inherit;
  629. background-color:rgba(255, 255, 255, 1);
  630. border:none;
  631. border-radius:0px;
  632. -moz-box-shadow:none;
  633. -webkit-box-shadow:none;
  634. box-shadow:none;
  635. font-size:14px;
  636. color:#AAAAAA;
  637. }
  638. #u93609 {
  639. border-width:0px;
  640. position:absolute;
  641. left:141px;
  642. top:252px;
  643. width:159px;
  644. height:31px;
  645. display:flex;
  646. font-size:14px;
  647. color:#AAAAAA;
  648. }
  649. #u93609 .text {
  650. position:absolute;
  651. align-self:flex-start;
  652. padding:2px 2px 2px 2px;
  653. box-sizing:border-box;
  654. width:100%;
  655. }
  656. #u93609_div.disabled {
  657. border-width:0px;
  658. position:absolute;
  659. left:0px;
  660. top:0px;
  661. width:159px;
  662. height:31px;
  663. background:inherit;
  664. background-color:rgba(240, 240, 240, 1);
  665. border:none;
  666. border-radius:0px;
  667. -moz-box-shadow:none;
  668. -webkit-box-shadow:none;
  669. box-shadow:none;
  670. font-size:14px;
  671. color:#AAAAAA;
  672. }
  673. #u93609.disabled {
  674. }
  675. .u93609_input_option {
  676. font-size:14px;
  677. }
  678. #u93610 {
  679. border-width:0px;
  680. position:absolute;
  681. left:0px;
  682. top:0px;
  683. width:0px;
  684. height:0px;
  685. }
  686. #u93611_div {
  687. border-width:0px;
  688. position:absolute;
  689. left:0px;
  690. top:0px;
  691. width:143px;
  692. height:40px;
  693. background:inherit;
  694. background-color:rgba(255, 255, 255, 1);
  695. box-sizing:border-box;
  696. border-width:1px;
  697. border-style:solid;
  698. border-color:rgba(215, 215, 215, 1);
  699. border-radius:4px;
  700. -moz-box-shadow:none;
  701. -webkit-box-shadow:none;
  702. box-shadow:none;
  703. font-size:14px;
  704. }
  705. #u93611 {
  706. border-width:0px;
  707. position:absolute;
  708. left:314px;
  709. top:249px;
  710. width:143px;
  711. height:40px;
  712. display:flex;
  713. font-size:14px;
  714. }
  715. #u93611 .text {
  716. position:absolute;
  717. align-self:center;
  718. padding:2px 2px 2px 2px;
  719. box-sizing:border-box;
  720. width:100%;
  721. }
  722. #u93611_text {
  723. border-width:0px;
  724. word-wrap:break-word;
  725. text-transform:none;
  726. visibility:hidden;
  727. }
  728. #u93612_input {
  729. position:absolute;
  730. left:0px;
  731. top:0px;
  732. width:137px;
  733. height:31px;
  734. padding:2px 2px 2px 2px;
  735. font-family:'ArialMT', 'Arial', sans-serif;
  736. font-weight:400;
  737. font-style:normal;
  738. font-size:14px;
  739. letter-spacing:normal;
  740. color:#AAAAAA;
  741. vertical-align:none;
  742. text-align:left;
  743. text-transform:none;
  744. background-color:transparent;
  745. border-color:transparent;
  746. }
  747. #u93612_input.disabled {
  748. position:absolute;
  749. left:0px;
  750. top:0px;
  751. width:137px;
  752. height:31px;
  753. padding:2px 2px 2px 2px;
  754. font-family:'ArialMT', 'Arial', sans-serif;
  755. font-weight:400;
  756. font-style:normal;
  757. font-size:14px;
  758. letter-spacing:normal;
  759. color:#AAAAAA;
  760. vertical-align:none;
  761. text-align:left;
  762. text-transform:none;
  763. background-color:transparent;
  764. border-color:transparent;
  765. }
  766. #u93612_div {
  767. border-width:0px;
  768. position:absolute;
  769. left:0px;
  770. top:0px;
  771. width:137px;
  772. height:31px;
  773. background:inherit;
  774. background-color:rgba(255, 255, 255, 1);
  775. border:none;
  776. border-radius:0px;
  777. -moz-box-shadow:none;
  778. -webkit-box-shadow:none;
  779. box-shadow:none;
  780. font-size:14px;
  781. color:#AAAAAA;
  782. }
  783. #u93612 {
  784. border-width:0px;
  785. position:absolute;
  786. left:319px;
  787. top:252px;
  788. width:137px;
  789. height:31px;
  790. display:flex;
  791. font-size:14px;
  792. color:#AAAAAA;
  793. }
  794. #u93612 .text {
  795. position:absolute;
  796. align-self:flex-start;
  797. padding:2px 2px 2px 2px;
  798. box-sizing:border-box;
  799. width:100%;
  800. }
  801. #u93612_div.disabled {
  802. border-width:0px;
  803. position:absolute;
  804. left:0px;
  805. top:0px;
  806. width:137px;
  807. height:31px;
  808. background:inherit;
  809. background-color:rgba(240, 240, 240, 1);
  810. border:none;
  811. border-radius:0px;
  812. -moz-box-shadow:none;
  813. -webkit-box-shadow:none;
  814. box-shadow:none;
  815. font-size:14px;
  816. color:#AAAAAA;
  817. }
  818. #u93612.disabled {
  819. }
  820. .u93612_input_option {
  821. font-size:14px;
  822. }
  823. #u93613_div {
  824. border-width:0px;
  825. position:absolute;
  826. left:0px;
  827. top:0px;
  828. width:64px;
  829. height:40px;
  830. background:inherit;
  831. background-color:rgba(255, 255, 255, 0);
  832. border:none;
  833. border-left:0px;
  834. border-top:0px;
  835. border-right:0px;
  836. border-radius:0px;
  837. border-bottom-right-radius:0px;
  838. border-bottom-left-radius:0px;
  839. -moz-box-shadow:none;
  840. -webkit-box-shadow:none;
  841. box-shadow:none;
  842. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  843. font-weight:400;
  844. font-style:normal;
  845. font-size:14px;
  846. }
  847. #u93613 {
  848. border-width:0px;
  849. position:absolute;
  850. left:336px;
  851. top:454px;
  852. width:64px;
  853. height:40px;
  854. display:flex;
  855. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  856. font-weight:400;
  857. font-style:normal;
  858. font-size:14px;
  859. }
  860. #u93613 .text {
  861. position:absolute;
  862. align-self:center;
  863. padding:0px 0px 0px 0px;
  864. box-sizing:border-box;
  865. width:100%;
  866. }
  867. #u93613_text {
  868. border-width:0px;
  869. white-space:nowrap;
  870. text-transform:none;
  871. }
  872. #u93614 {
  873. border-width:0px;
  874. position:absolute;
  875. left:0px;
  876. top:0px;
  877. width:0px;
  878. height:0px;
  879. }
  880. #u93615_div {
  881. border-width:0px;
  882. position:absolute;
  883. left:0px;
  884. top:0px;
  885. width:200px;
  886. height:40px;
  887. background:inherit;
  888. background-color:rgba(255, 255, 255, 1);
  889. box-sizing:border-box;
  890. border-width:1px;
  891. border-style:solid;
  892. border-color:rgba(201, 201, 201, 1);
  893. border-radius:4px;
  894. -moz-box-shadow:none;
  895. -webkit-box-shadow:none;
  896. box-shadow:none;
  897. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  898. font-weight:400;
  899. font-style:normal;
  900. font-size:14px;
  901. text-align:right;
  902. }
  903. #u93615 {
  904. border-width:0px;
  905. position:absolute;
  906. left:566px;
  907. top:493px;
  908. width:200px;
  909. height:40px;
  910. display:flex;
  911. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  912. font-weight:400;
  913. font-style:normal;
  914. font-size:14px;
  915. text-align:right;
  916. }
  917. #u93615 .text {
  918. position:absolute;
  919. align-self:center;
  920. padding:2px 8px 2px 8px;
  921. box-sizing:border-box;
  922. width:100%;
  923. }
  924. #u93615_text {
  925. border-width:0px;
  926. word-wrap:break-word;
  927. text-transform:none;
  928. visibility:hidden;
  929. }
  930. #u93616_input {
  931. position:absolute;
  932. left:0px;
  933. top:0px;
  934. width:161px;
  935. height:33px;
  936. padding:2px 2px 2px 2px;
  937. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  938. font-weight:400;
  939. font-style:normal;
  940. font-size:14px;
  941. letter-spacing:normal;
  942. color:#D7D7D7;
  943. vertical-align:none;
  944. text-align:left;
  945. text-transform:none;
  946. background-color:transparent;
  947. border-color:transparent;
  948. }
  949. #u93616_input.disabled {
  950. position:absolute;
  951. left:0px;
  952. top:0px;
  953. width:161px;
  954. height:33px;
  955. padding:2px 2px 2px 2px;
  956. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  957. font-weight:400;
  958. font-style:normal;
  959. font-size:14px;
  960. letter-spacing:normal;
  961. color:#D7D7D7;
  962. vertical-align:none;
  963. text-align:left;
  964. text-transform:none;
  965. background-color:transparent;
  966. border-color:transparent;
  967. }
  968. #u93616_div {
  969. border-width:0px;
  970. position:absolute;
  971. left:0px;
  972. top:0px;
  973. width:161px;
  974. height:33px;
  975. background:inherit;
  976. background-color:rgba(255, 255, 255, 0);
  977. border:none;
  978. border-radius:0px;
  979. -moz-box-shadow:none;
  980. -webkit-box-shadow:none;
  981. box-shadow:none;
  982. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  983. font-weight:400;
  984. font-style:normal;
  985. font-size:14px;
  986. color:#D7D7D7;
  987. }
  988. #u93616 {
  989. border-width:0px;
  990. position:absolute;
  991. left:574px;
  992. top:496px;
  993. width:161px;
  994. height:33px;
  995. display:flex;
  996. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  997. font-weight:400;
  998. font-style:normal;
  999. font-size:14px;
  1000. color:#D7D7D7;
  1001. }
  1002. #u93616 .text {
  1003. position:absolute;
  1004. align-self:center;
  1005. padding:2px 2px 2px 2px;
  1006. box-sizing:border-box;
  1007. width:100%;
  1008. }
  1009. #u93616_div.disabled {
  1010. border-width:0px;
  1011. position:absolute;
  1012. left:0px;
  1013. top:0px;
  1014. width:161px;
  1015. height:33px;
  1016. background:inherit;
  1017. background-color:rgba(240, 240, 240, 1);
  1018. border:none;
  1019. border-radius:0px;
  1020. -moz-box-shadow:none;
  1021. -webkit-box-shadow:none;
  1022. box-shadow:none;
  1023. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1024. font-weight:400;
  1025. font-style:normal;
  1026. font-size:14px;
  1027. color:#D7D7D7;
  1028. }
  1029. #u93616.disabled {
  1030. }
  1031. #u93617_div {
  1032. border-width:0px;
  1033. position:absolute;
  1034. left:0px;
  1035. top:0px;
  1036. width:50px;
  1037. height:40px;
  1038. background:inherit;
  1039. background-color:rgba(255, 255, 255, 0);
  1040. border:none;
  1041. border-left:0px;
  1042. border-top:0px;
  1043. border-right:0px;
  1044. border-radius:0px;
  1045. border-bottom-right-radius:0px;
  1046. border-bottom-left-radius:0px;
  1047. -moz-box-shadow:none;
  1048. -webkit-box-shadow:none;
  1049. box-shadow:none;
  1050. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1051. font-weight:400;
  1052. font-style:normal;
  1053. font-size:14px;
  1054. }
  1055. #u93617 {
  1056. border-width:0px;
  1057. position:absolute;
  1058. left:566px;
  1059. top:454px;
  1060. width:50px;
  1061. height:40px;
  1062. display:flex;
  1063. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1064. font-weight:400;
  1065. font-style:normal;
  1066. font-size:14px;
  1067. }
  1068. #u93617 .text {
  1069. position:absolute;
  1070. align-self:center;
  1071. padding:0px 0px 0px 0px;
  1072. box-sizing:border-box;
  1073. width:100%;
  1074. }
  1075. #u93617_text {
  1076. border-width:0px;
  1077. white-space:nowrap;
  1078. text-transform:none;
  1079. }
  1080. #u93618 {
  1081. border-width:0px;
  1082. position:absolute;
  1083. left:0px;
  1084. top:0px;
  1085. width:0px;
  1086. height:0px;
  1087. }
  1088. #u93619_div {
  1089. border-width:0px;
  1090. position:absolute;
  1091. left:0px;
  1092. top:0px;
  1093. width:200px;
  1094. height:40px;
  1095. background:inherit;
  1096. background-color:rgba(255, 255, 255, 1);
  1097. box-sizing:border-box;
  1098. border-width:1px;
  1099. border-style:solid;
  1100. border-color:rgba(201, 201, 201, 1);
  1101. border-radius:4px;
  1102. -moz-box-shadow:none;
  1103. -webkit-box-shadow:none;
  1104. box-shadow:none;
  1105. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1106. font-weight:400;
  1107. font-style:normal;
  1108. font-size:14px;
  1109. text-align:right;
  1110. }
  1111. #u93619 {
  1112. border-width:0px;
  1113. position:absolute;
  1114. left:336px;
  1115. top:672px;
  1116. width:200px;
  1117. height:40px;
  1118. display:flex;
  1119. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1120. font-weight:400;
  1121. font-style:normal;
  1122. font-size:14px;
  1123. text-align:right;
  1124. }
  1125. #u93619 .text {
  1126. position:absolute;
  1127. align-self:center;
  1128. padding:2px 8px 2px 8px;
  1129. box-sizing:border-box;
  1130. width:100%;
  1131. }
  1132. #u93619_text {
  1133. border-width:0px;
  1134. word-wrap:break-word;
  1135. text-transform:none;
  1136. visibility:hidden;
  1137. }
  1138. #u93620_input {
  1139. position:absolute;
  1140. left:0px;
  1141. top:0px;
  1142. width:161px;
  1143. height:33px;
  1144. padding:2px 2px 2px 2px;
  1145. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1146. font-weight:400;
  1147. font-style:normal;
  1148. font-size:14px;
  1149. letter-spacing:normal;
  1150. color:#D7D7D7;
  1151. vertical-align:none;
  1152. text-align:left;
  1153. text-transform:none;
  1154. background-color:transparent;
  1155. border-color:transparent;
  1156. }
  1157. #u93620_input.disabled {
  1158. position:absolute;
  1159. left:0px;
  1160. top:0px;
  1161. width:161px;
  1162. height:33px;
  1163. padding:2px 2px 2px 2px;
  1164. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1165. font-weight:400;
  1166. font-style:normal;
  1167. font-size:14px;
  1168. letter-spacing:normal;
  1169. color:#D7D7D7;
  1170. vertical-align:none;
  1171. text-align:left;
  1172. text-transform:none;
  1173. background-color:transparent;
  1174. border-color:transparent;
  1175. }
  1176. #u93620_div {
  1177. border-width:0px;
  1178. position:absolute;
  1179. left:0px;
  1180. top:0px;
  1181. width:161px;
  1182. height:33px;
  1183. background:inherit;
  1184. background-color:rgba(255, 255, 255, 0);
  1185. border:none;
  1186. border-radius:0px;
  1187. -moz-box-shadow:none;
  1188. -webkit-box-shadow:none;
  1189. box-shadow:none;
  1190. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1191. font-weight:400;
  1192. font-style:normal;
  1193. font-size:14px;
  1194. color:#D7D7D7;
  1195. }
  1196. #u93620 {
  1197. border-width:0px;
  1198. position:absolute;
  1199. left:344px;
  1200. top:675px;
  1201. width:161px;
  1202. height:33px;
  1203. display:flex;
  1204. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1205. font-weight:400;
  1206. font-style:normal;
  1207. font-size:14px;
  1208. color:#D7D7D7;
  1209. }
  1210. #u93620 .text {
  1211. position:absolute;
  1212. align-self:center;
  1213. padding:2px 2px 2px 2px;
  1214. box-sizing:border-box;
  1215. width:100%;
  1216. }
  1217. #u93620_div.disabled {
  1218. border-width:0px;
  1219. position:absolute;
  1220. left:0px;
  1221. top:0px;
  1222. width:161px;
  1223. height:33px;
  1224. background:inherit;
  1225. background-color:rgba(240, 240, 240, 1);
  1226. border:none;
  1227. border-radius:0px;
  1228. -moz-box-shadow:none;
  1229. -webkit-box-shadow:none;
  1230. box-shadow:none;
  1231. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1232. font-weight:400;
  1233. font-style:normal;
  1234. font-size:14px;
  1235. color:#D7D7D7;
  1236. }
  1237. #u93620.disabled {
  1238. }
  1239. #u93621_div {
  1240. border-width:0px;
  1241. position:absolute;
  1242. left:0px;
  1243. top:0px;
  1244. width:57px;
  1245. height:40px;
  1246. background:inherit;
  1247. background-color:rgba(255, 255, 255, 0);
  1248. border:none;
  1249. border-left:0px;
  1250. border-top:0px;
  1251. border-right:0px;
  1252. border-radius:0px;
  1253. border-bottom-right-radius:0px;
  1254. border-bottom-left-radius:0px;
  1255. -moz-box-shadow:none;
  1256. -webkit-box-shadow:none;
  1257. box-shadow:none;
  1258. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1259. font-weight:400;
  1260. font-style:normal;
  1261. font-size:14px;
  1262. }
  1263. #u93621 {
  1264. border-width:0px;
  1265. position:absolute;
  1266. left:336px;
  1267. top:633px;
  1268. width:57px;
  1269. height:40px;
  1270. display:flex;
  1271. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1272. font-weight:400;
  1273. font-style:normal;
  1274. font-size:14px;
  1275. }
  1276. #u93621 .text {
  1277. position:absolute;
  1278. align-self:center;
  1279. padding:0px 0px 0px 0px;
  1280. box-sizing:border-box;
  1281. width:100%;
  1282. }
  1283. #u93621_text {
  1284. border-width:0px;
  1285. white-space:nowrap;
  1286. text-transform:none;
  1287. }
  1288. #u93622_div {
  1289. border-width:0px;
  1290. position:absolute;
  1291. left:0px;
  1292. top:0px;
  1293. width:64px;
  1294. height:40px;
  1295. background:inherit;
  1296. background-color:rgba(255, 255, 255, 0);
  1297. border:none;
  1298. border-left:0px;
  1299. border-top:0px;
  1300. border-right:0px;
  1301. border-radius:0px;
  1302. border-bottom-right-radius:0px;
  1303. border-bottom-left-radius:0px;
  1304. -moz-box-shadow:none;
  1305. -webkit-box-shadow:none;
  1306. box-shadow:none;
  1307. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1308. font-weight:400;
  1309. font-style:normal;
  1310. font-size:14px;
  1311. }
  1312. #u93622 {
  1313. border-width:0px;
  1314. position:absolute;
  1315. left:136px;
  1316. top:549px;
  1317. width:64px;
  1318. height:40px;
  1319. display:flex;
  1320. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1321. font-weight:400;
  1322. font-style:normal;
  1323. font-size:14px;
  1324. }
  1325. #u93622 .text {
  1326. position:absolute;
  1327. align-self:center;
  1328. padding:0px 0px 0px 0px;
  1329. box-sizing:border-box;
  1330. width:100%;
  1331. }
  1332. #u93622_text {
  1333. border-width:0px;
  1334. white-space:nowrap;
  1335. text-transform:none;
  1336. }
  1337. #u93623_div {
  1338. border-width:0px;
  1339. position:absolute;
  1340. left:0px;
  1341. top:0px;
  1342. width:120px;
  1343. height:120px;
  1344. background:inherit;
  1345. background-color:rgba(255, 255, 255, 1);
  1346. box-sizing:border-box;
  1347. border-width:1px;
  1348. border-style:solid;
  1349. border-color:rgba(201, 201, 201, 1);
  1350. border-radius:4px;
  1351. -moz-box-shadow:none;
  1352. -webkit-box-shadow:none;
  1353. box-shadow:none;
  1354. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1355. font-weight:400;
  1356. font-style:normal;
  1357. font-size:38px;
  1358. }
  1359. #u93623 {
  1360. border-width:0px;
  1361. position:absolute;
  1362. left:136px;
  1363. top:589px;
  1364. width:120px;
  1365. height:120px;
  1366. display:flex;
  1367. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1368. font-weight:400;
  1369. font-style:normal;
  1370. font-size:38px;
  1371. }
  1372. #u93623 .text {
  1373. position:absolute;
  1374. align-self:center;
  1375. padding:2px 8px 2px 8px;
  1376. box-sizing:border-box;
  1377. width:100%;
  1378. }
  1379. #u93623_text {
  1380. border-width:0px;
  1381. word-wrap:break-word;
  1382. text-transform:none;
  1383. }
  1384. #u93624_div {
  1385. border-width:0px;
  1386. position:absolute;
  1387. left:0px;
  1388. top:0px;
  1389. width:29px;
  1390. height:40px;
  1391. background:inherit;
  1392. background-color:rgba(255, 255, 255, 0);
  1393. border:none;
  1394. border-left:0px;
  1395. border-top:0px;
  1396. border-right:0px;
  1397. border-radius:0px;
  1398. border-bottom-right-radius:0px;
  1399. border-bottom-left-radius:0px;
  1400. -moz-box-shadow:none;
  1401. -webkit-box-shadow:none;
  1402. box-shadow:none;
  1403. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1404. font-weight:400;
  1405. font-style:normal;
  1406. font-size:14px;
  1407. }
  1408. #u93624 {
  1409. border-width:0px;
  1410. position:absolute;
  1411. left:336px;
  1412. top:543px;
  1413. width:29px;
  1414. height:40px;
  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. }
  1421. #u93624 .text {
  1422. position:absolute;
  1423. align-self:center;
  1424. padding:0px 0px 0px 0px;
  1425. box-sizing:border-box;
  1426. width:100%;
  1427. }
  1428. #u93624_text {
  1429. border-width:0px;
  1430. white-space:nowrap;
  1431. text-transform:none;
  1432. }
  1433. #u93625 {
  1434. border-width:0px;
  1435. position:absolute;
  1436. left:0px;
  1437. top:0px;
  1438. width:0px;
  1439. height:0px;
  1440. }
  1441. #u93626_div {
  1442. border-width:0px;
  1443. position:absolute;
  1444. left:0px;
  1445. top:0px;
  1446. width:200px;
  1447. height:40px;
  1448. background:inherit;
  1449. background-color:rgba(255, 255, 255, 1);
  1450. box-sizing:border-box;
  1451. border-width:1px;
  1452. border-style:solid;
  1453. border-color:rgba(215, 215, 215, 1);
  1454. border-radius:4px;
  1455. -moz-box-shadow:none;
  1456. -webkit-box-shadow:none;
  1457. box-shadow:none;
  1458. font-size:14px;
  1459. }
  1460. #u93626 {
  1461. border-width:0px;
  1462. position:absolute;
  1463. left:336px;
  1464. top:583px;
  1465. width:200px;
  1466. height:40px;
  1467. display:flex;
  1468. font-size:14px;
  1469. }
  1470. #u93626 .text {
  1471. position:absolute;
  1472. align-self:center;
  1473. padding:2px 2px 2px 2px;
  1474. box-sizing:border-box;
  1475. width:100%;
  1476. }
  1477. #u93626_text {
  1478. border-width:0px;
  1479. word-wrap:break-word;
  1480. text-transform:none;
  1481. visibility:hidden;
  1482. }
  1483. #u93627_input {
  1484. position:absolute;
  1485. left:0px;
  1486. top:0px;
  1487. width:191px;
  1488. height:31px;
  1489. padding:2px 2px 2px 2px;
  1490. font-family:'ArialMT', 'Arial', sans-serif;
  1491. font-weight:400;
  1492. font-style:normal;
  1493. font-size:14px;
  1494. letter-spacing:normal;
  1495. color:#AAAAAA;
  1496. vertical-align:none;
  1497. text-align:left;
  1498. text-transform:none;
  1499. background-color:transparent;
  1500. border-color:transparent;
  1501. }
  1502. #u93627_input.disabled {
  1503. position:absolute;
  1504. left:0px;
  1505. top:0px;
  1506. width:191px;
  1507. height:31px;
  1508. padding:2px 2px 2px 2px;
  1509. font-family:'ArialMT', 'Arial', sans-serif;
  1510. font-weight:400;
  1511. font-style:normal;
  1512. font-size:14px;
  1513. letter-spacing:normal;
  1514. color:#AAAAAA;
  1515. vertical-align:none;
  1516. text-align:left;
  1517. text-transform:none;
  1518. background-color:transparent;
  1519. border-color:transparent;
  1520. }
  1521. #u93627_div {
  1522. border-width:0px;
  1523. position:absolute;
  1524. left:0px;
  1525. top:0px;
  1526. width:191px;
  1527. height:31px;
  1528. background:inherit;
  1529. background-color:rgba(255, 255, 255, 1);
  1530. border:none;
  1531. border-radius:0px;
  1532. -moz-box-shadow:none;
  1533. -webkit-box-shadow:none;
  1534. box-shadow:none;
  1535. font-size:14px;
  1536. color:#AAAAAA;
  1537. }
  1538. #u93627 {
  1539. border-width:0px;
  1540. position:absolute;
  1541. left:342px;
  1542. top:586px;
  1543. width:191px;
  1544. height:31px;
  1545. display:flex;
  1546. font-size:14px;
  1547. color:#AAAAAA;
  1548. }
  1549. #u93627 .text {
  1550. position:absolute;
  1551. align-self:flex-start;
  1552. padding:2px 2px 2px 2px;
  1553. box-sizing:border-box;
  1554. width:100%;
  1555. }
  1556. #u93627_div.disabled {
  1557. border-width:0px;
  1558. position:absolute;
  1559. left:0px;
  1560. top:0px;
  1561. width:191px;
  1562. height:31px;
  1563. background:inherit;
  1564. background-color:rgba(240, 240, 240, 1);
  1565. border:none;
  1566. border-radius:0px;
  1567. -moz-box-shadow:none;
  1568. -webkit-box-shadow:none;
  1569. box-shadow:none;
  1570. font-size:14px;
  1571. color:#AAAAAA;
  1572. }
  1573. #u93627.disabled {
  1574. }
  1575. .u93627_input_option {
  1576. font-size:14px;
  1577. }
  1578. #u93628 {
  1579. border-width:0px;
  1580. position:absolute;
  1581. left:0px;
  1582. top:0px;
  1583. width:0px;
  1584. height:0px;
  1585. }
  1586. #u93629_div {
  1587. border-width:0px;
  1588. position:absolute;
  1589. left:0px;
  1590. top:0px;
  1591. width:200px;
  1592. height:40px;
  1593. background:inherit;
  1594. background-color:rgba(255, 255, 255, 1);
  1595. box-sizing:border-box;
  1596. border-width:1px;
  1597. border-style:solid;
  1598. border-color:rgba(201, 201, 201, 1);
  1599. border-radius:4px;
  1600. -moz-box-shadow:none;
  1601. -webkit-box-shadow:none;
  1602. box-shadow:none;
  1603. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1604. font-weight:400;
  1605. font-style:normal;
  1606. font-size:14px;
  1607. text-align:right;
  1608. }
  1609. #u93629 {
  1610. border-width:0px;
  1611. position:absolute;
  1612. left:566px;
  1613. top:672px;
  1614. width:200px;
  1615. height:40px;
  1616. display:flex;
  1617. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1618. font-weight:400;
  1619. font-style:normal;
  1620. font-size:14px;
  1621. text-align:right;
  1622. }
  1623. #u93629 .text {
  1624. position:absolute;
  1625. align-self:center;
  1626. padding:2px 8px 2px 8px;
  1627. box-sizing:border-box;
  1628. width:100%;
  1629. }
  1630. #u93629_text {
  1631. border-width:0px;
  1632. word-wrap:break-word;
  1633. text-transform:none;
  1634. visibility:hidden;
  1635. }
  1636. #u93630_input {
  1637. position:absolute;
  1638. left:0px;
  1639. top:0px;
  1640. width:161px;
  1641. height:33px;
  1642. padding:2px 2px 2px 2px;
  1643. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1644. font-weight:400;
  1645. font-style:normal;
  1646. font-size:14px;
  1647. letter-spacing:normal;
  1648. color:#D7D7D7;
  1649. vertical-align:none;
  1650. text-align:left;
  1651. text-transform:none;
  1652. background-color:transparent;
  1653. border-color:transparent;
  1654. }
  1655. #u93630_input.disabled {
  1656. position:absolute;
  1657. left:0px;
  1658. top:0px;
  1659. width:161px;
  1660. height:33px;
  1661. padding:2px 2px 2px 2px;
  1662. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1663. font-weight:400;
  1664. font-style:normal;
  1665. font-size:14px;
  1666. letter-spacing:normal;
  1667. color:#D7D7D7;
  1668. vertical-align:none;
  1669. text-align:left;
  1670. text-transform:none;
  1671. background-color:transparent;
  1672. border-color:transparent;
  1673. }
  1674. #u93630_div {
  1675. border-width:0px;
  1676. position:absolute;
  1677. left:0px;
  1678. top:0px;
  1679. width:161px;
  1680. height:33px;
  1681. background:inherit;
  1682. background-color:rgba(255, 255, 255, 0);
  1683. border:none;
  1684. border-radius:0px;
  1685. -moz-box-shadow:none;
  1686. -webkit-box-shadow:none;
  1687. box-shadow:none;
  1688. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1689. font-weight:400;
  1690. font-style:normal;
  1691. font-size:14px;
  1692. color:#D7D7D7;
  1693. }
  1694. #u93630 {
  1695. border-width:0px;
  1696. position:absolute;
  1697. left:574px;
  1698. top:675px;
  1699. width:161px;
  1700. height:33px;
  1701. display:flex;
  1702. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1703. font-weight:400;
  1704. font-style:normal;
  1705. font-size:14px;
  1706. color:#D7D7D7;
  1707. }
  1708. #u93630 .text {
  1709. position:absolute;
  1710. align-self:center;
  1711. padding:2px 2px 2px 2px;
  1712. box-sizing:border-box;
  1713. width:100%;
  1714. }
  1715. #u93630_div.disabled {
  1716. border-width:0px;
  1717. position:absolute;
  1718. left:0px;
  1719. top:0px;
  1720. width:161px;
  1721. height:33px;
  1722. background:inherit;
  1723. background-color:rgba(240, 240, 240, 1);
  1724. border:none;
  1725. border-radius:0px;
  1726. -moz-box-shadow:none;
  1727. -webkit-box-shadow:none;
  1728. box-shadow:none;
  1729. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1730. font-weight:400;
  1731. font-style:normal;
  1732. font-size:14px;
  1733. color:#D7D7D7;
  1734. }
  1735. #u93630.disabled {
  1736. }
  1737. #u93631_div {
  1738. border-width:0px;
  1739. position:absolute;
  1740. left:0px;
  1741. top:0px;
  1742. width:71px;
  1743. height:40px;
  1744. background:inherit;
  1745. background-color:rgba(255, 255, 255, 0);
  1746. border:none;
  1747. border-left:0px;
  1748. border-top:0px;
  1749. border-right:0px;
  1750. border-radius:0px;
  1751. border-bottom-right-radius:0px;
  1752. border-bottom-left-radius:0px;
  1753. -moz-box-shadow:none;
  1754. -webkit-box-shadow:none;
  1755. box-shadow:none;
  1756. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1757. font-weight:400;
  1758. font-style:normal;
  1759. font-size:14px;
  1760. }
  1761. #u93631 {
  1762. border-width:0px;
  1763. position:absolute;
  1764. left:566px;
  1765. top:633px;
  1766. width:71px;
  1767. height:40px;
  1768. display:flex;
  1769. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1770. font-weight:400;
  1771. font-style:normal;
  1772. font-size:14px;
  1773. }
  1774. #u93631 .text {
  1775. position:absolute;
  1776. align-self:center;
  1777. padding:0px 0px 0px 0px;
  1778. box-sizing:border-box;
  1779. width:100%;
  1780. }
  1781. #u93631_text {
  1782. border-width:0px;
  1783. white-space:nowrap;
  1784. text-transform:none;
  1785. }
  1786. #u93632_div {
  1787. border-width:0px;
  1788. position:absolute;
  1789. left:0px;
  1790. top:0px;
  1791. width:64px;
  1792. height:40px;
  1793. background:inherit;
  1794. background-color:rgba(255, 255, 255, 0);
  1795. border:none;
  1796. border-left:0px;
  1797. border-top:0px;
  1798. border-right:0px;
  1799. border-radius:0px;
  1800. border-bottom-right-radius:0px;
  1801. border-bottom-left-radius:0px;
  1802. -moz-box-shadow:none;
  1803. -webkit-box-shadow:none;
  1804. box-shadow:none;
  1805. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1806. font-weight:400;
  1807. font-style:normal;
  1808. font-size:14px;
  1809. }
  1810. #u93632 {
  1811. border-width:0px;
  1812. position:absolute;
  1813. left:136px;
  1814. top:369px;
  1815. width:64px;
  1816. height:40px;
  1817. display:flex;
  1818. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1819. font-weight:400;
  1820. font-style:normal;
  1821. font-size:14px;
  1822. }
  1823. #u93632 .text {
  1824. position:absolute;
  1825. align-self:center;
  1826. padding:0px 0px 0px 0px;
  1827. box-sizing:border-box;
  1828. width:100%;
  1829. }
  1830. #u93632_text {
  1831. border-width:0px;
  1832. white-space:nowrap;
  1833. text-transform:none;
  1834. }
  1835. #u93633_div {
  1836. border-width:0px;
  1837. position:absolute;
  1838. left:0px;
  1839. top:0px;
  1840. width:120px;
  1841. height:120px;
  1842. background:inherit;
  1843. background-color:rgba(255, 255, 255, 1);
  1844. box-sizing:border-box;
  1845. border-width:1px;
  1846. border-style:solid;
  1847. border-color:rgba(201, 201, 201, 1);
  1848. border-radius:4px;
  1849. -moz-box-shadow:none;
  1850. -webkit-box-shadow:none;
  1851. box-shadow:none;
  1852. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1853. font-weight:400;
  1854. font-style:normal;
  1855. font-size:38px;
  1856. }
  1857. #u93633 {
  1858. border-width:0px;
  1859. position:absolute;
  1860. left:136px;
  1861. top:409px;
  1862. width:120px;
  1863. height:120px;
  1864. display:flex;
  1865. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1866. font-weight:400;
  1867. font-style:normal;
  1868. font-size:38px;
  1869. }
  1870. #u93633 .text {
  1871. position:absolute;
  1872. align-self:center;
  1873. padding:2px 8px 2px 8px;
  1874. box-sizing:border-box;
  1875. width:100%;
  1876. }
  1877. #u93633_text {
  1878. border-width:0px;
  1879. word-wrap:break-word;
  1880. text-transform:none;
  1881. }
  1882. #u93634 {
  1883. border-width:0px;
  1884. position:absolute;
  1885. left:0px;
  1886. top:0px;
  1887. width:0px;
  1888. height:0px;
  1889. }
  1890. #u93635_div {
  1891. border-width:0px;
  1892. position:absolute;
  1893. left:0px;
  1894. top:0px;
  1895. width:143px;
  1896. height:40px;
  1897. background:inherit;
  1898. background-color:rgba(255, 255, 255, 1);
  1899. box-sizing:border-box;
  1900. border-width:1px;
  1901. border-style:solid;
  1902. border-color:rgba(215, 215, 215, 1);
  1903. border-radius:4px;
  1904. -moz-box-shadow:none;
  1905. -webkit-box-shadow:none;
  1906. box-shadow:none;
  1907. font-size:14px;
  1908. }
  1909. #u93635 {
  1910. border-width:0px;
  1911. position:absolute;
  1912. left:469px;
  1913. top:249px;
  1914. width:143px;
  1915. height:40px;
  1916. display:flex;
  1917. font-size:14px;
  1918. }
  1919. #u93635 .text {
  1920. position:absolute;
  1921. align-self:center;
  1922. padding:2px 2px 2px 2px;
  1923. box-sizing:border-box;
  1924. width:100%;
  1925. }
  1926. #u93635_text {
  1927. border-width:0px;
  1928. word-wrap:break-word;
  1929. text-transform:none;
  1930. visibility:hidden;
  1931. }
  1932. #u93636_input {
  1933. position:absolute;
  1934. left:0px;
  1935. top:0px;
  1936. width:137px;
  1937. height:31px;
  1938. padding:2px 2px 2px 2px;
  1939. font-family:'ArialMT', 'Arial', sans-serif;
  1940. font-weight:400;
  1941. font-style:normal;
  1942. font-size:14px;
  1943. letter-spacing:normal;
  1944. color:#AAAAAA;
  1945. vertical-align:none;
  1946. text-align:left;
  1947. text-transform:none;
  1948. background-color:transparent;
  1949. border-color:transparent;
  1950. }
  1951. #u93636_input.disabled {
  1952. position:absolute;
  1953. left:0px;
  1954. top:0px;
  1955. width:137px;
  1956. height:31px;
  1957. padding:2px 2px 2px 2px;
  1958. font-family:'ArialMT', 'Arial', sans-serif;
  1959. font-weight:400;
  1960. font-style:normal;
  1961. font-size:14px;
  1962. letter-spacing:normal;
  1963. color:#AAAAAA;
  1964. vertical-align:none;
  1965. text-align:left;
  1966. text-transform:none;
  1967. background-color:transparent;
  1968. border-color:transparent;
  1969. }
  1970. #u93636_div {
  1971. border-width:0px;
  1972. position:absolute;
  1973. left:0px;
  1974. top:0px;
  1975. width:137px;
  1976. height:31px;
  1977. background:inherit;
  1978. background-color:rgba(255, 255, 255, 1);
  1979. border:none;
  1980. border-radius:0px;
  1981. -moz-box-shadow:none;
  1982. -webkit-box-shadow:none;
  1983. box-shadow:none;
  1984. font-size:14px;
  1985. color:#AAAAAA;
  1986. }
  1987. #u93636 {
  1988. border-width:0px;
  1989. position:absolute;
  1990. left:474px;
  1991. top:252px;
  1992. width:137px;
  1993. height:31px;
  1994. display:flex;
  1995. font-size:14px;
  1996. color:#AAAAAA;
  1997. }
  1998. #u93636 .text {
  1999. position:absolute;
  2000. align-self:flex-start;
  2001. padding:2px 2px 2px 2px;
  2002. box-sizing:border-box;
  2003. width:100%;
  2004. }
  2005. #u93636_div.disabled {
  2006. border-width:0px;
  2007. position:absolute;
  2008. left:0px;
  2009. top:0px;
  2010. width:137px;
  2011. height:31px;
  2012. background:inherit;
  2013. background-color:rgba(240, 240, 240, 1);
  2014. border:none;
  2015. border-radius:0px;
  2016. -moz-box-shadow:none;
  2017. -webkit-box-shadow:none;
  2018. box-shadow:none;
  2019. font-size:14px;
  2020. color:#AAAAAA;
  2021. }
  2022. #u93636.disabled {
  2023. }
  2024. .u93636_input_option {
  2025. font-size:14px;
  2026. }
  2027. #u93637 {
  2028. border-width:0px;
  2029. position:absolute;
  2030. left:0px;
  2031. top:0px;
  2032. width:0px;
  2033. height:0px;
  2034. }
  2035. #u93638_div {
  2036. border-width:0px;
  2037. position:absolute;
  2038. left:0px;
  2039. top:0px;
  2040. width:143px;
  2041. height:40px;
  2042. background:inherit;
  2043. background-color:rgba(255, 255, 255, 1);
  2044. box-sizing:border-box;
  2045. border-width:1px;
  2046. border-style:solid;
  2047. border-color:rgba(215, 215, 215, 1);
  2048. border-radius:4px;
  2049. -moz-box-shadow:none;
  2050. -webkit-box-shadow:none;
  2051. box-shadow:none;
  2052. font-size:14px;
  2053. }
  2054. #u93638 {
  2055. border-width:0px;
  2056. position:absolute;
  2057. left:623px;
  2058. top:249px;
  2059. width:143px;
  2060. height:40px;
  2061. display:flex;
  2062. font-size:14px;
  2063. }
  2064. #u93638 .text {
  2065. position:absolute;
  2066. align-self:center;
  2067. padding:2px 2px 2px 2px;
  2068. box-sizing:border-box;
  2069. width:100%;
  2070. }
  2071. #u93638_text {
  2072. border-width:0px;
  2073. word-wrap:break-word;
  2074. text-transform:none;
  2075. visibility:hidden;
  2076. }
  2077. #u93639_input {
  2078. position:absolute;
  2079. left:0px;
  2080. top:0px;
  2081. width:137px;
  2082. height:31px;
  2083. padding:2px 2px 2px 2px;
  2084. font-family:'ArialMT', 'Arial', sans-serif;
  2085. font-weight:400;
  2086. font-style:normal;
  2087. font-size:14px;
  2088. letter-spacing:normal;
  2089. color:#AAAAAA;
  2090. vertical-align:none;
  2091. text-align:left;
  2092. text-transform:none;
  2093. background-color:transparent;
  2094. border-color:transparent;
  2095. }
  2096. #u93639_input.disabled {
  2097. position:absolute;
  2098. left:0px;
  2099. top:0px;
  2100. width:137px;
  2101. height:31px;
  2102. padding:2px 2px 2px 2px;
  2103. font-family:'ArialMT', 'Arial', sans-serif;
  2104. font-weight:400;
  2105. font-style:normal;
  2106. font-size:14px;
  2107. letter-spacing:normal;
  2108. color:#AAAAAA;
  2109. vertical-align:none;
  2110. text-align:left;
  2111. text-transform:none;
  2112. background-color:transparent;
  2113. border-color:transparent;
  2114. }
  2115. #u93639_div {
  2116. border-width:0px;
  2117. position:absolute;
  2118. left:0px;
  2119. top:0px;
  2120. width:137px;
  2121. height:31px;
  2122. background:inherit;
  2123. background-color:rgba(255, 255, 255, 1);
  2124. border:none;
  2125. border-radius:0px;
  2126. -moz-box-shadow:none;
  2127. -webkit-box-shadow:none;
  2128. box-shadow:none;
  2129. font-size:14px;
  2130. color:#AAAAAA;
  2131. }
  2132. #u93639 {
  2133. border-width:0px;
  2134. position:absolute;
  2135. left:628px;
  2136. top:252px;
  2137. width:137px;
  2138. height:31px;
  2139. display:flex;
  2140. font-size:14px;
  2141. color:#AAAAAA;
  2142. }
  2143. #u93639 .text {
  2144. position:absolute;
  2145. align-self:flex-start;
  2146. padding:2px 2px 2px 2px;
  2147. box-sizing:border-box;
  2148. width:100%;
  2149. }
  2150. #u93639_div.disabled {
  2151. border-width:0px;
  2152. position:absolute;
  2153. left:0px;
  2154. top:0px;
  2155. width:137px;
  2156. height:31px;
  2157. background:inherit;
  2158. background-color:rgba(240, 240, 240, 1);
  2159. border:none;
  2160. border-radius:0px;
  2161. -moz-box-shadow:none;
  2162. -webkit-box-shadow:none;
  2163. box-shadow:none;
  2164. font-size:14px;
  2165. color:#AAAAAA;
  2166. }
  2167. #u93639.disabled {
  2168. }
  2169. .u93639_input_option {
  2170. font-size:14px;
  2171. }
  2172. #u93640_div {
  2173. border-width:0px;
  2174. position:absolute;
  2175. left:0px;
  2176. top:0px;
  2177. width:73px;
  2178. height:40px;
  2179. background:inherit;
  2180. background-color:rgba(255, 255, 255, 0);
  2181. border:none;
  2182. border-left:0px;
  2183. border-top:0px;
  2184. border-right:0px;
  2185. border-radius:0px;
  2186. border-bottom-right-radius:0px;
  2187. border-bottom-left-radius:0px;
  2188. -moz-box-shadow:none;
  2189. -webkit-box-shadow:none;
  2190. box-shadow:none;
  2191. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  2192. font-weight:500;
  2193. font-style:normal;
  2194. font-size:18px;
  2195. }
  2196. #u93640 {
  2197. border-width:0px;
  2198. position:absolute;
  2199. left:136px;
  2200. top:309px;
  2201. width:73px;
  2202. height:40px;
  2203. display:flex;
  2204. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  2205. font-weight:500;
  2206. font-style:normal;
  2207. font-size:18px;
  2208. }
  2209. #u93640 .text {
  2210. position:absolute;
  2211. align-self:center;
  2212. padding:0px 0px 0px 0px;
  2213. box-sizing:border-box;
  2214. width:100%;
  2215. }
  2216. #u93640_text {
  2217. border-width:0px;
  2218. white-space:nowrap;
  2219. text-transform:none;
  2220. }
  2221. #u93641_div {
  2222. border-width:0px;
  2223. position:absolute;
  2224. left:0px;
  2225. top:0px;
  2226. width:57px;
  2227. height:40px;
  2228. background:inherit;
  2229. background-color:rgba(255, 255, 255, 0);
  2230. border:none;
  2231. border-left:0px;
  2232. border-top:0px;
  2233. border-right:0px;
  2234. border-radius:0px;
  2235. border-bottom-right-radius:0px;
  2236. border-bottom-left-radius:0px;
  2237. -moz-box-shadow:none;
  2238. -webkit-box-shadow:none;
  2239. box-shadow:none;
  2240. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2241. font-weight:400;
  2242. font-style:normal;
  2243. font-size:14px;
  2244. }
  2245. #u93641 {
  2246. border-width:0px;
  2247. position:absolute;
  2248. left:336px;
  2249. top:369px;
  2250. width:57px;
  2251. height:40px;
  2252. display:flex;
  2253. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2254. font-weight:400;
  2255. font-style:normal;
  2256. font-size:14px;
  2257. }
  2258. #u93641 .text {
  2259. position:absolute;
  2260. align-self:center;
  2261. padding:0px 0px 0px 0px;
  2262. box-sizing:border-box;
  2263. width:100%;
  2264. }
  2265. #u93641_text {
  2266. border-width:0px;
  2267. white-space:nowrap;
  2268. text-transform:none;
  2269. }
  2270. #u93642_div {
  2271. border-width:0px;
  2272. position:absolute;
  2273. left:0px;
  2274. top:0px;
  2275. width:36px;
  2276. height:40px;
  2277. background:inherit;
  2278. background-color:rgba(255, 255, 255, 0);
  2279. border:none;
  2280. border-left:0px;
  2281. border-top:0px;
  2282. border-right:0px;
  2283. border-radius:0px;
  2284. border-bottom-right-radius:0px;
  2285. border-bottom-left-radius:0px;
  2286. -moz-box-shadow:none;
  2287. -webkit-box-shadow:none;
  2288. box-shadow:none;
  2289. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2290. font-weight:400;
  2291. font-style:normal;
  2292. font-size:14px;
  2293. }
  2294. #u93642 {
  2295. border-width:0px;
  2296. position:absolute;
  2297. left:566px;
  2298. top:369px;
  2299. width:36px;
  2300. height:40px;
  2301. display:flex;
  2302. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2303. font-weight:400;
  2304. font-style:normal;
  2305. font-size:14px;
  2306. }
  2307. #u93642 .text {
  2308. position:absolute;
  2309. align-self:center;
  2310. padding:0px 0px 0px 0px;
  2311. box-sizing:border-box;
  2312. width:100%;
  2313. }
  2314. #u93642_text {
  2315. border-width:0px;
  2316. white-space:nowrap;
  2317. text-transform:none;
  2318. }
  2319. #u93643 {
  2320. border-width:0px;
  2321. position:absolute;
  2322. left:0px;
  2323. top:0px;
  2324. width:0px;
  2325. height:0px;
  2326. }
  2327. #u93644_div {
  2328. border-width:0px;
  2329. position:absolute;
  2330. left:0px;
  2331. top:0px;
  2332. width:200px;
  2333. height:40px;
  2334. background:inherit;
  2335. background-color:rgba(255, 255, 255, 1);
  2336. box-sizing:border-box;
  2337. border-width:1px;
  2338. border-style:solid;
  2339. border-color:rgba(215, 215, 215, 1);
  2340. border-radius:4px;
  2341. -moz-box-shadow:none;
  2342. -webkit-box-shadow:none;
  2343. box-shadow:none;
  2344. font-size:14px;
  2345. }
  2346. #u93644 {
  2347. border-width:0px;
  2348. position:absolute;
  2349. left:566px;
  2350. top:409px;
  2351. width:200px;
  2352. height:40px;
  2353. display:flex;
  2354. font-size:14px;
  2355. }
  2356. #u93644 .text {
  2357. position:absolute;
  2358. align-self:center;
  2359. padding:2px 2px 2px 2px;
  2360. box-sizing:border-box;
  2361. width:100%;
  2362. }
  2363. #u93644_text {
  2364. border-width:0px;
  2365. word-wrap:break-word;
  2366. text-transform:none;
  2367. visibility:hidden;
  2368. }
  2369. #u93645_input {
  2370. position:absolute;
  2371. left:0px;
  2372. top:0px;
  2373. width:194px;
  2374. height:31px;
  2375. padding:2px 2px 2px 2px;
  2376. font-family:'ArialMT', 'Arial', sans-serif;
  2377. font-weight:400;
  2378. font-style:normal;
  2379. font-size:14px;
  2380. letter-spacing:normal;
  2381. color:#AAAAAA;
  2382. vertical-align:none;
  2383. text-align:left;
  2384. text-transform:none;
  2385. background-color:transparent;
  2386. border-color:transparent;
  2387. }
  2388. #u93645_input.disabled {
  2389. position:absolute;
  2390. left:0px;
  2391. top:0px;
  2392. width:194px;
  2393. height:31px;
  2394. padding:2px 2px 2px 2px;
  2395. font-family:'ArialMT', 'Arial', sans-serif;
  2396. font-weight:400;
  2397. font-style:normal;
  2398. font-size:14px;
  2399. letter-spacing:normal;
  2400. color:#AAAAAA;
  2401. vertical-align:none;
  2402. text-align:left;
  2403. text-transform:none;
  2404. background-color:transparent;
  2405. border-color:transparent;
  2406. }
  2407. #u93645_div {
  2408. border-width:0px;
  2409. position:absolute;
  2410. left:0px;
  2411. top:0px;
  2412. width:194px;
  2413. height:31px;
  2414. background:inherit;
  2415. background-color:rgba(255, 255, 255, 1);
  2416. border:none;
  2417. border-radius:0px;
  2418. -moz-box-shadow:none;
  2419. -webkit-box-shadow:none;
  2420. box-shadow:none;
  2421. font-size:14px;
  2422. color:#AAAAAA;
  2423. }
  2424. #u93645 {
  2425. border-width:0px;
  2426. position:absolute;
  2427. left:569px;
  2428. top:412px;
  2429. width:194px;
  2430. height:31px;
  2431. display:flex;
  2432. font-size:14px;
  2433. color:#AAAAAA;
  2434. }
  2435. #u93645 .text {
  2436. position:absolute;
  2437. align-self:flex-start;
  2438. padding:2px 2px 2px 2px;
  2439. box-sizing:border-box;
  2440. width:100%;
  2441. }
  2442. #u93645_div.disabled {
  2443. border-width:0px;
  2444. position:absolute;
  2445. left:0px;
  2446. top:0px;
  2447. width:194px;
  2448. height:31px;
  2449. background:inherit;
  2450. background-color:rgba(240, 240, 240, 1);
  2451. border:none;
  2452. border-radius:0px;
  2453. -moz-box-shadow:none;
  2454. -webkit-box-shadow:none;
  2455. box-shadow:none;
  2456. font-size:14px;
  2457. color:#AAAAAA;
  2458. }
  2459. #u93645.disabled {
  2460. }
  2461. .u93645_input_option {
  2462. font-size:14px;
  2463. }
  2464. #u93646 {
  2465. border-width:0px;
  2466. position:absolute;
  2467. left:0px;
  2468. top:0px;
  2469. width:0px;
  2470. height:0px;
  2471. }
  2472. #u93647_div {
  2473. border-width:0px;
  2474. position:absolute;
  2475. left:0px;
  2476. top:0px;
  2477. width:200px;
  2478. height:40px;
  2479. background:inherit;
  2480. background-color:rgba(255, 255, 255, 1);
  2481. box-sizing:border-box;
  2482. border-width:1px;
  2483. border-style:solid;
  2484. border-color:rgba(201, 201, 201, 1);
  2485. border-radius:4px;
  2486. -moz-box-shadow:none;
  2487. -webkit-box-shadow:none;
  2488. box-shadow:none;
  2489. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2490. font-weight:400;
  2491. font-style:normal;
  2492. font-size:14px;
  2493. text-align:right;
  2494. }
  2495. #u93647 {
  2496. border-width:0px;
  2497. position:absolute;
  2498. left:336px;
  2499. top:493px;
  2500. width:200px;
  2501. height:40px;
  2502. display:flex;
  2503. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2504. font-weight:400;
  2505. font-style:normal;
  2506. font-size:14px;
  2507. text-align:right;
  2508. }
  2509. #u93647 .text {
  2510. position:absolute;
  2511. align-self:center;
  2512. padding:2px 8px 2px 8px;
  2513. box-sizing:border-box;
  2514. width:100%;
  2515. }
  2516. #u93647_text {
  2517. border-width:0px;
  2518. word-wrap:break-word;
  2519. text-transform:none;
  2520. visibility:hidden;
  2521. }
  2522. #u93648_input {
  2523. position:absolute;
  2524. left:0px;
  2525. top:0px;
  2526. width:161px;
  2527. height:33px;
  2528. padding:2px 2px 2px 2px;
  2529. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2530. font-weight:400;
  2531. font-style:normal;
  2532. font-size:14px;
  2533. letter-spacing:normal;
  2534. color:#D7D7D7;
  2535. vertical-align:none;
  2536. text-align:left;
  2537. text-transform:none;
  2538. background-color:transparent;
  2539. border-color:transparent;
  2540. }
  2541. #u93648_input.disabled {
  2542. position:absolute;
  2543. left:0px;
  2544. top:0px;
  2545. width:161px;
  2546. height:33px;
  2547. padding:2px 2px 2px 2px;
  2548. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2549. font-weight:400;
  2550. font-style:normal;
  2551. font-size:14px;
  2552. letter-spacing:normal;
  2553. color:#D7D7D7;
  2554. vertical-align:none;
  2555. text-align:left;
  2556. text-transform:none;
  2557. background-color:transparent;
  2558. border-color:transparent;
  2559. }
  2560. #u93648_div {
  2561. border-width:0px;
  2562. position:absolute;
  2563. left:0px;
  2564. top:0px;
  2565. width:161px;
  2566. height:33px;
  2567. background:inherit;
  2568. background-color:rgba(255, 255, 255, 0);
  2569. border:none;
  2570. border-radius:0px;
  2571. -moz-box-shadow:none;
  2572. -webkit-box-shadow:none;
  2573. box-shadow:none;
  2574. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2575. font-weight:400;
  2576. font-style:normal;
  2577. font-size:14px;
  2578. color:#D7D7D7;
  2579. }
  2580. #u93648 {
  2581. border-width:0px;
  2582. position:absolute;
  2583. left:344px;
  2584. top:496px;
  2585. width:161px;
  2586. height:33px;
  2587. display:flex;
  2588. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2589. font-weight:400;
  2590. font-style:normal;
  2591. font-size:14px;
  2592. color:#D7D7D7;
  2593. }
  2594. #u93648 .text {
  2595. position:absolute;
  2596. align-self:center;
  2597. padding:2px 2px 2px 2px;
  2598. box-sizing:border-box;
  2599. width:100%;
  2600. }
  2601. #u93648_div.disabled {
  2602. border-width:0px;
  2603. position:absolute;
  2604. left:0px;
  2605. top:0px;
  2606. width:161px;
  2607. height:33px;
  2608. background:inherit;
  2609. background-color:rgba(240, 240, 240, 1);
  2610. border:none;
  2611. border-radius:0px;
  2612. -moz-box-shadow:none;
  2613. -webkit-box-shadow:none;
  2614. box-shadow:none;
  2615. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2616. font-weight:400;
  2617. font-style:normal;
  2618. font-size:14px;
  2619. color:#D7D7D7;
  2620. }
  2621. #u93648.disabled {
  2622. }
  2623. #u93649_img {
  2624. border-width:0px;
  2625. position:absolute;
  2626. left:0px;
  2627. top:0px;
  2628. width:13px;
  2629. height:13px;
  2630. }
  2631. #u93649 {
  2632. border-width:0px;
  2633. position:absolute;
  2634. left:514px;
  2635. top:506px;
  2636. width:13px;
  2637. height:13px;
  2638. display:flex;
  2639. }
  2640. #u93649 .text {
  2641. position:absolute;
  2642. align-self:center;
  2643. padding:2px 2px 2px 2px;
  2644. box-sizing:border-box;
  2645. width:100%;
  2646. }
  2647. #u93649_text {
  2648. border-width:0px;
  2649. word-wrap:break-word;
  2650. text-transform:none;
  2651. visibility:hidden;
  2652. }
  2653. #u93650_div {
  2654. border-width:0px;
  2655. position:absolute;
  2656. left:0px;
  2657. top:0px;
  2658. width:57px;
  2659. height:40px;
  2660. background:inherit;
  2661. background-color:rgba(255, 255, 255, 0);
  2662. border:none;
  2663. border-left:0px;
  2664. border-top:0px;
  2665. border-right:0px;
  2666. border-radius:0px;
  2667. border-bottom-right-radius:0px;
  2668. border-bottom-left-radius:0px;
  2669. -moz-box-shadow:none;
  2670. -webkit-box-shadow:none;
  2671. box-shadow:none;
  2672. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2673. font-weight:400;
  2674. font-style:normal;
  2675. font-size:14px;
  2676. }
  2677. #u93650 {
  2678. border-width:0px;
  2679. position:absolute;
  2680. left:566px;
  2681. top:543px;
  2682. width:57px;
  2683. height:40px;
  2684. display:flex;
  2685. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2686. font-weight:400;
  2687. font-style:normal;
  2688. font-size:14px;
  2689. }
  2690. #u93650 .text {
  2691. position:absolute;
  2692. align-self:center;
  2693. padding:0px 0px 0px 0px;
  2694. box-sizing:border-box;
  2695. width:100%;
  2696. }
  2697. #u93650_text {
  2698. border-width:0px;
  2699. white-space:nowrap;
  2700. text-transform:none;
  2701. }
  2702. #u93651 {
  2703. border-width:0px;
  2704. position:absolute;
  2705. left:0px;
  2706. top:0px;
  2707. width:0px;
  2708. height:0px;
  2709. }
  2710. #u93652_div {
  2711. border-width:0px;
  2712. position:absolute;
  2713. left:0px;
  2714. top:0px;
  2715. width:200px;
  2716. height:40px;
  2717. background:inherit;
  2718. background-color:rgba(255, 255, 255, 1);
  2719. box-sizing:border-box;
  2720. border-width:1px;
  2721. border-style:solid;
  2722. border-color:rgba(215, 215, 215, 1);
  2723. border-radius:4px;
  2724. -moz-box-shadow:none;
  2725. -webkit-box-shadow:none;
  2726. box-shadow:none;
  2727. font-size:14px;
  2728. }
  2729. #u93652 {
  2730. border-width:0px;
  2731. position:absolute;
  2732. left:566px;
  2733. top:583px;
  2734. width:200px;
  2735. height:40px;
  2736. display:flex;
  2737. font-size:14px;
  2738. }
  2739. #u93652 .text {
  2740. position:absolute;
  2741. align-self:center;
  2742. padding:2px 2px 2px 2px;
  2743. box-sizing:border-box;
  2744. width:100%;
  2745. }
  2746. #u93652_text {
  2747. border-width:0px;
  2748. word-wrap:break-word;
  2749. text-transform:none;
  2750. visibility:hidden;
  2751. }
  2752. #u93653_input {
  2753. position:absolute;
  2754. left:0px;
  2755. top:0px;
  2756. width:191px;
  2757. height:31px;
  2758. padding:2px 2px 2px 2px;
  2759. font-family:'ArialMT', 'Arial', sans-serif;
  2760. font-weight:400;
  2761. font-style:normal;
  2762. font-size:14px;
  2763. letter-spacing:normal;
  2764. color:#AAAAAA;
  2765. vertical-align:none;
  2766. text-align:left;
  2767. text-transform:none;
  2768. background-color:transparent;
  2769. border-color:transparent;
  2770. }
  2771. #u93653_input.disabled {
  2772. position:absolute;
  2773. left:0px;
  2774. top:0px;
  2775. width:191px;
  2776. height:31px;
  2777. padding:2px 2px 2px 2px;
  2778. font-family:'ArialMT', 'Arial', sans-serif;
  2779. font-weight:400;
  2780. font-style:normal;
  2781. font-size:14px;
  2782. letter-spacing:normal;
  2783. color:#AAAAAA;
  2784. vertical-align:none;
  2785. text-align:left;
  2786. text-transform:none;
  2787. background-color:transparent;
  2788. border-color:transparent;
  2789. }
  2790. #u93653_div {
  2791. border-width:0px;
  2792. position:absolute;
  2793. left:0px;
  2794. top:0px;
  2795. width:191px;
  2796. height:31px;
  2797. background:inherit;
  2798. background-color:rgba(255, 255, 255, 1);
  2799. border:none;
  2800. border-radius:0px;
  2801. -moz-box-shadow:none;
  2802. -webkit-box-shadow:none;
  2803. box-shadow:none;
  2804. font-size:14px;
  2805. color:#AAAAAA;
  2806. }
  2807. #u93653 {
  2808. border-width:0px;
  2809. position:absolute;
  2810. left:572px;
  2811. top:586px;
  2812. width:191px;
  2813. height:31px;
  2814. display:flex;
  2815. font-size:14px;
  2816. color:#AAAAAA;
  2817. }
  2818. #u93653 .text {
  2819. position:absolute;
  2820. align-self:flex-start;
  2821. padding:2px 2px 2px 2px;
  2822. box-sizing:border-box;
  2823. width:100%;
  2824. }
  2825. #u93653_div.disabled {
  2826. border-width:0px;
  2827. position:absolute;
  2828. left:0px;
  2829. top:0px;
  2830. width:191px;
  2831. height:31px;
  2832. background:inherit;
  2833. background-color:rgba(240, 240, 240, 1);
  2834. border:none;
  2835. border-radius:0px;
  2836. -moz-box-shadow:none;
  2837. -webkit-box-shadow:none;
  2838. box-shadow:none;
  2839. font-size:14px;
  2840. color:#AAAAAA;
  2841. }
  2842. #u93653.disabled {
  2843. }
  2844. .u93653_input_option {
  2845. font-size:14px;
  2846. }
  2847. #u93654 {
  2848. border-width:0px;
  2849. position:absolute;
  2850. left:0px;
  2851. top:0px;
  2852. width:0px;
  2853. height:0px;
  2854. }
  2855. #u93655_div {
  2856. border-width:0px;
  2857. position:absolute;
  2858. left:0px;
  2859. top:0px;
  2860. width:630px;
  2861. height:30px;
  2862. background:inherit;
  2863. background-color:rgba(224, 231, 247, 1);
  2864. border:none;
  2865. border-radius:4px;
  2866. -moz-box-shadow:none;
  2867. -webkit-box-shadow:none;
  2868. box-shadow:none;
  2869. font-size:14px;
  2870. }
  2871. #u93655 {
  2872. border-width:0px;
  2873. position:absolute;
  2874. left:136px;
  2875. top:209px;
  2876. width:630px;
  2877. height:30px;
  2878. display:flex;
  2879. font-size:14px;
  2880. }
  2881. #u93655 .text {
  2882. position:absolute;
  2883. align-self:center;
  2884. padding:2px 2px 2px 2px;
  2885. box-sizing:border-box;
  2886. width:100%;
  2887. }
  2888. #u93655_text {
  2889. border-width:0px;
  2890. word-wrap:break-word;
  2891. text-transform:none;
  2892. visibility:hidden;
  2893. }
  2894. #u93656_div {
  2895. border-width:0px;
  2896. position:absolute;
  2897. left:0px;
  2898. top:0px;
  2899. width:181px;
  2900. height:17px;
  2901. background:inherit;
  2902. background-color:rgba(255, 255, 255, 0);
  2903. border:none;
  2904. border-left:0px;
  2905. border-top:0px;
  2906. border-right:0px;
  2907. border-radius:0px;
  2908. border-bottom-right-radius:0px;
  2909. border-bottom-left-radius:0px;
  2910. -moz-box-shadow:none;
  2911. -webkit-box-shadow:none;
  2912. box-shadow:none;
  2913. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2914. font-weight:400;
  2915. font-style:normal;
  2916. font-size:12px;
  2917. }
  2918. #u93656 {
  2919. border-width:0px;
  2920. position:absolute;
  2921. left:180px;
  2922. top:216px;
  2923. width:181px;
  2924. height:17px;
  2925. display:flex;
  2926. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2927. font-weight:400;
  2928. font-style:normal;
  2929. font-size:12px;
  2930. }
  2931. #u93656 .text {
  2932. position:absolute;
  2933. align-self:center;
  2934. padding:0px 0px 0px 0px;
  2935. box-sizing:border-box;
  2936. width:100%;
  2937. }
  2938. #u93656_text {
  2939. border-width:0px;
  2940. white-space:nowrap;
  2941. text-transform:none;
  2942. }
  2943. #u93657_img {
  2944. border-width:0px;
  2945. position:absolute;
  2946. left:0px;
  2947. top:0px;
  2948. width:16px;
  2949. height:16px;
  2950. }
  2951. #u93657 {
  2952. border-width:0px;
  2953. position:absolute;
  2954. left:154px;
  2955. top:217px;
  2956. width:16px;
  2957. height:16px;
  2958. display:flex;
  2959. }
  2960. #u93657 .text {
  2961. position:absolute;
  2962. align-self:center;
  2963. padding:2px 2px 2px 2px;
  2964. box-sizing:border-box;
  2965. width:100%;
  2966. }
  2967. #u93657_text {
  2968. border-width:0px;
  2969. word-wrap:break-word;
  2970. text-transform:none;
  2971. visibility:hidden;
  2972. }
  2973. #u93658 {
  2974. border-width:0px;
  2975. position:absolute;
  2976. left:0px;
  2977. top:0px;
  2978. width:0px;
  2979. height:0px;
  2980. }
  2981. #u93659_div {
  2982. border-width:0px;
  2983. position:absolute;
  2984. left:0px;
  2985. top:0px;
  2986. width:200px;
  2987. height:40px;
  2988. background:inherit;
  2989. background-color:rgba(242, 242, 242, 1);
  2990. box-sizing:border-box;
  2991. border-width:1px;
  2992. border-style:solid;
  2993. border-color:rgba(215, 215, 215, 1);
  2994. border-radius:4px;
  2995. -moz-box-shadow:none;
  2996. -webkit-box-shadow:none;
  2997. box-shadow:none;
  2998. font-size:14px;
  2999. }
  3000. #u93659 {
  3001. border-width:0px;
  3002. position:absolute;
  3003. left:336px;
  3004. top:409px;
  3005. width:200px;
  3006. height:40px;
  3007. display:flex;
  3008. font-size:14px;
  3009. }
  3010. #u93659 .text {
  3011. position:absolute;
  3012. align-self:center;
  3013. padding:2px 2px 2px 2px;
  3014. box-sizing:border-box;
  3015. width:100%;
  3016. }
  3017. #u93659_text {
  3018. border-width:0px;
  3019. word-wrap:break-word;
  3020. text-transform:none;
  3021. visibility:hidden;
  3022. }
  3023. #u93660_input {
  3024. position:absolute;
  3025. left:0px;
  3026. top:0px;
  3027. width:192px;
  3028. height:31px;
  3029. padding:2px 2px 2px 2px;
  3030. font-family:'ArialMT', 'Arial', sans-serif;
  3031. font-weight:400;
  3032. font-style:normal;
  3033. font-size:14px;
  3034. letter-spacing:normal;
  3035. color:#AAAAAA;
  3036. vertical-align:none;
  3037. text-align:left;
  3038. text-transform:none;
  3039. background-color:transparent;
  3040. border-color:transparent;
  3041. }
  3042. #u93660_input.disabled {
  3043. position:absolute;
  3044. left:0px;
  3045. top:0px;
  3046. width:192px;
  3047. height:31px;
  3048. padding:2px 2px 2px 2px;
  3049. font-family:'ArialMT', 'Arial', sans-serif;
  3050. font-weight:400;
  3051. font-style:normal;
  3052. font-size:14px;
  3053. letter-spacing:normal;
  3054. color:#AAAAAA;
  3055. vertical-align:none;
  3056. text-align:left;
  3057. text-transform:none;
  3058. background-color:transparent;
  3059. border-color:transparent;
  3060. }
  3061. #u93660_div {
  3062. border-width:0px;
  3063. position:absolute;
  3064. left:0px;
  3065. top:0px;
  3066. width:192px;
  3067. height:31px;
  3068. background:inherit;
  3069. background-color:rgba(242, 242, 242, 1);
  3070. border:none;
  3071. border-radius:0px;
  3072. -moz-box-shadow:none;
  3073. -webkit-box-shadow:none;
  3074. box-shadow:none;
  3075. font-size:14px;
  3076. color:#AAAAAA;
  3077. }
  3078. #u93660 {
  3079. border-width:0px;
  3080. position:absolute;
  3081. left:343px;
  3082. top:412px;
  3083. width:192px;
  3084. height:31px;
  3085. display:flex;
  3086. font-size:14px;
  3087. color:#AAAAAA;
  3088. }
  3089. #u93660 .text {
  3090. position:absolute;
  3091. align-self:flex-start;
  3092. padding:2px 2px 2px 2px;
  3093. box-sizing:border-box;
  3094. width:100%;
  3095. }
  3096. #u93660_div.disabled {
  3097. border-width:0px;
  3098. position:absolute;
  3099. left:0px;
  3100. top:0px;
  3101. width:192px;
  3102. height:31px;
  3103. background:inherit;
  3104. background-color:rgba(240, 240, 240, 1);
  3105. border:none;
  3106. border-radius:0px;
  3107. -moz-box-shadow:none;
  3108. -webkit-box-shadow:none;
  3109. box-shadow:none;
  3110. font-size:14px;
  3111. color:#AAAAAA;
  3112. }
  3113. #u93660.disabled {
  3114. }
  3115. .u93660_input_option {
  3116. font-size:14px;
  3117. }
  3118. #u93661_div {
  3119. border-width:0px;
  3120. position:absolute;
  3121. left:0px;
  3122. top:0px;
  3123. width:78px;
  3124. height:40px;
  3125. background:inherit;
  3126. background-color:rgba(255, 255, 255, 0);
  3127. border:none;
  3128. border-left:0px;
  3129. border-top:0px;
  3130. border-right:0px;
  3131. border-radius:0px;
  3132. border-bottom-right-radius:0px;
  3133. border-bottom-left-radius:0px;
  3134. -moz-box-shadow:none;
  3135. -webkit-box-shadow:none;
  3136. box-shadow:none;
  3137. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3138. font-weight:400;
  3139. font-style:normal;
  3140. font-size:14px;
  3141. }
  3142. #u93661 {
  3143. border-width:0px;
  3144. position:absolute;
  3145. left:566px;
  3146. top:722px;
  3147. width:78px;
  3148. height:40px;
  3149. display:flex;
  3150. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3151. font-weight:400;
  3152. font-style:normal;
  3153. font-size:14px;
  3154. }
  3155. #u93661 .text {
  3156. position:absolute;
  3157. align-self:center;
  3158. padding:0px 0px 0px 0px;
  3159. box-sizing:border-box;
  3160. width:100%;
  3161. }
  3162. #u93661_text {
  3163. border-width:0px;
  3164. white-space:nowrap;
  3165. text-transform:none;
  3166. }
  3167. #u93662 {
  3168. border-width:0px;
  3169. position:absolute;
  3170. left:0px;
  3171. top:0px;
  3172. width:0px;
  3173. height:0px;
  3174. }
  3175. #u93663_div {
  3176. border-width:0px;
  3177. position:absolute;
  3178. left:0px;
  3179. top:0px;
  3180. width:200px;
  3181. height:40px;
  3182. background:inherit;
  3183. background-color:rgba(255, 255, 255, 1);
  3184. box-sizing:border-box;
  3185. border-width:1px;
  3186. border-style:solid;
  3187. border-color:rgba(215, 215, 215, 1);
  3188. border-radius:4px;
  3189. -moz-box-shadow:none;
  3190. -webkit-box-shadow:none;
  3191. box-shadow:none;
  3192. font-size:14px;
  3193. }
  3194. #u93663 {
  3195. border-width:0px;
  3196. position:absolute;
  3197. left:566px;
  3198. top:762px;
  3199. width:200px;
  3200. height:40px;
  3201. display:flex;
  3202. font-size:14px;
  3203. }
  3204. #u93663 .text {
  3205. position:absolute;
  3206. align-self:center;
  3207. padding:2px 2px 2px 2px;
  3208. box-sizing:border-box;
  3209. width:100%;
  3210. }
  3211. #u93663_text {
  3212. border-width:0px;
  3213. word-wrap:break-word;
  3214. text-transform:none;
  3215. visibility:hidden;
  3216. }
  3217. #u93664_input {
  3218. position:absolute;
  3219. left:0px;
  3220. top:0px;
  3221. width:194px;
  3222. height:31px;
  3223. padding:2px 2px 2px 2px;
  3224. font-family:'ArialMT', 'Arial', sans-serif;
  3225. font-weight:400;
  3226. font-style:normal;
  3227. font-size:14px;
  3228. letter-spacing:normal;
  3229. color:#AAAAAA;
  3230. vertical-align:none;
  3231. text-align:left;
  3232. text-transform:none;
  3233. background-color:transparent;
  3234. border-color:transparent;
  3235. }
  3236. #u93664_input.disabled {
  3237. position:absolute;
  3238. left:0px;
  3239. top:0px;
  3240. width:194px;
  3241. height:31px;
  3242. padding:2px 2px 2px 2px;
  3243. font-family:'ArialMT', 'Arial', sans-serif;
  3244. font-weight:400;
  3245. font-style:normal;
  3246. font-size:14px;
  3247. letter-spacing:normal;
  3248. color:#AAAAAA;
  3249. vertical-align:none;
  3250. text-align:left;
  3251. text-transform:none;
  3252. background-color:transparent;
  3253. border-color:transparent;
  3254. }
  3255. #u93664_div {
  3256. border-width:0px;
  3257. position:absolute;
  3258. left:0px;
  3259. top:0px;
  3260. width:194px;
  3261. height:31px;
  3262. background:inherit;
  3263. background-color:rgba(255, 255, 255, 1);
  3264. border:none;
  3265. border-radius:0px;
  3266. -moz-box-shadow:none;
  3267. -webkit-box-shadow:none;
  3268. box-shadow:none;
  3269. font-size:14px;
  3270. color:#AAAAAA;
  3271. }
  3272. #u93664 {
  3273. border-width:0px;
  3274. position:absolute;
  3275. left:569px;
  3276. top:765px;
  3277. width:194px;
  3278. height:31px;
  3279. display:flex;
  3280. font-size:14px;
  3281. color:#AAAAAA;
  3282. }
  3283. #u93664 .text {
  3284. position:absolute;
  3285. align-self:flex-start;
  3286. padding:2px 2px 2px 2px;
  3287. box-sizing:border-box;
  3288. width:100%;
  3289. }
  3290. #u93664_div.disabled {
  3291. border-width:0px;
  3292. position:absolute;
  3293. left:0px;
  3294. top:0px;
  3295. width:194px;
  3296. height:31px;
  3297. background:inherit;
  3298. background-color:rgba(240, 240, 240, 1);
  3299. border:none;
  3300. border-radius:0px;
  3301. -moz-box-shadow:none;
  3302. -webkit-box-shadow:none;
  3303. box-shadow:none;
  3304. font-size:14px;
  3305. color:#AAAAAA;
  3306. }
  3307. #u93664.disabled {
  3308. }
  3309. .u93664_input_option {
  3310. font-size:14px;
  3311. }
  3312. #u93665 {
  3313. border-width:0px;
  3314. position:absolute;
  3315. left:0px;
  3316. top:0px;
  3317. width:0px;
  3318. height:0px;
  3319. }
  3320. #u93666_div {
  3321. border-width:0px;
  3322. position:absolute;
  3323. left:0px;
  3324. top:0px;
  3325. width:200px;
  3326. height:40px;
  3327. background:inherit;
  3328. background-color:rgba(255, 255, 255, 1);
  3329. box-sizing:border-box;
  3330. border-width:1px;
  3331. border-style:solid;
  3332. border-color:rgba(201, 201, 201, 1);
  3333. border-radius:4px;
  3334. -moz-box-shadow:none;
  3335. -webkit-box-shadow:none;
  3336. box-shadow:none;
  3337. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3338. font-weight:400;
  3339. font-style:normal;
  3340. font-size:14px;
  3341. text-align:right;
  3342. }
  3343. #u93666 {
  3344. border-width:0px;
  3345. position:absolute;
  3346. left:336px;
  3347. top:762px;
  3348. width:200px;
  3349. height:40px;
  3350. display:flex;
  3351. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3352. font-weight:400;
  3353. font-style:normal;
  3354. font-size:14px;
  3355. text-align:right;
  3356. }
  3357. #u93666 .text {
  3358. position:absolute;
  3359. align-self:center;
  3360. padding:2px 8px 2px 8px;
  3361. box-sizing:border-box;
  3362. width:100%;
  3363. }
  3364. #u93666_text {
  3365. border-width:0px;
  3366. word-wrap:break-word;
  3367. text-transform:none;
  3368. visibility:hidden;
  3369. }
  3370. #u93667_input {
  3371. position:absolute;
  3372. left:0px;
  3373. top:0px;
  3374. width:161px;
  3375. height:33px;
  3376. padding:2px 2px 2px 2px;
  3377. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3378. font-weight:400;
  3379. font-style:normal;
  3380. font-size:14px;
  3381. letter-spacing:normal;
  3382. color:#D7D7D7;
  3383. vertical-align:none;
  3384. text-align:left;
  3385. text-transform:none;
  3386. background-color:transparent;
  3387. border-color:transparent;
  3388. }
  3389. #u93667_input.disabled {
  3390. position:absolute;
  3391. left:0px;
  3392. top:0px;
  3393. width:161px;
  3394. height:33px;
  3395. padding:2px 2px 2px 2px;
  3396. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3397. font-weight:400;
  3398. font-style:normal;
  3399. font-size:14px;
  3400. letter-spacing:normal;
  3401. color:#D7D7D7;
  3402. vertical-align:none;
  3403. text-align:left;
  3404. text-transform:none;
  3405. background-color:transparent;
  3406. border-color:transparent;
  3407. }
  3408. #u93667_div {
  3409. border-width:0px;
  3410. position:absolute;
  3411. left:0px;
  3412. top:0px;
  3413. width:161px;
  3414. height:33px;
  3415. background:inherit;
  3416. background-color:rgba(255, 255, 255, 0);
  3417. border:none;
  3418. border-radius:0px;
  3419. -moz-box-shadow:none;
  3420. -webkit-box-shadow:none;
  3421. box-shadow:none;
  3422. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3423. font-weight:400;
  3424. font-style:normal;
  3425. font-size:14px;
  3426. color:#D7D7D7;
  3427. }
  3428. #u93667 {
  3429. border-width:0px;
  3430. position:absolute;
  3431. left:344px;
  3432. top:765px;
  3433. width:161px;
  3434. height:33px;
  3435. display:flex;
  3436. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3437. font-weight:400;
  3438. font-style:normal;
  3439. font-size:14px;
  3440. color:#D7D7D7;
  3441. }
  3442. #u93667 .text {
  3443. position:absolute;
  3444. align-self:center;
  3445. padding:2px 2px 2px 2px;
  3446. box-sizing:border-box;
  3447. width:100%;
  3448. }
  3449. #u93667_div.disabled {
  3450. border-width:0px;
  3451. position:absolute;
  3452. left:0px;
  3453. top:0px;
  3454. width:161px;
  3455. height:33px;
  3456. background:inherit;
  3457. background-color:rgba(240, 240, 240, 1);
  3458. border:none;
  3459. border-radius:0px;
  3460. -moz-box-shadow:none;
  3461. -webkit-box-shadow:none;
  3462. box-shadow:none;
  3463. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3464. font-weight:400;
  3465. font-style:normal;
  3466. font-size:14px;
  3467. color:#D7D7D7;
  3468. }
  3469. #u93667.disabled {
  3470. }
  3471. #u93668_div {
  3472. border-width:0px;
  3473. position:absolute;
  3474. left:0px;
  3475. top:0px;
  3476. width:57px;
  3477. height:40px;
  3478. background:inherit;
  3479. background-color:rgba(255, 255, 255, 0);
  3480. border:none;
  3481. border-left:0px;
  3482. border-top:0px;
  3483. border-right:0px;
  3484. border-radius:0px;
  3485. border-bottom-right-radius:0px;
  3486. border-bottom-left-radius:0px;
  3487. -moz-box-shadow:none;
  3488. -webkit-box-shadow:none;
  3489. box-shadow:none;
  3490. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3491. font-weight:400;
  3492. font-style:normal;
  3493. font-size:14px;
  3494. }
  3495. #u93668 {
  3496. border-width:0px;
  3497. position:absolute;
  3498. left:336px;
  3499. top:723px;
  3500. width:57px;
  3501. height:40px;
  3502. display:flex;
  3503. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3504. font-weight:400;
  3505. font-style:normal;
  3506. font-size:14px;
  3507. }
  3508. #u93668 .text {
  3509. position:absolute;
  3510. align-self:center;
  3511. padding:0px 0px 0px 0px;
  3512. box-sizing:border-box;
  3513. width:100%;
  3514. }
  3515. #u93668_text {
  3516. border-width:0px;
  3517. white-space:nowrap;
  3518. text-transform:none;
  3519. }
  3520. #u93669 {
  3521. border-width:0px;
  3522. position:absolute;
  3523. left:0px;
  3524. top:0px;
  3525. width:0px;
  3526. height:0px;
  3527. }
  3528. #u93670_div {
  3529. border-width:0px;
  3530. position:absolute;
  3531. left:0px;
  3532. top:0px;
  3533. width:427px;
  3534. height:80px;
  3535. background:inherit;
  3536. background-color:rgba(255, 255, 255, 1);
  3537. box-sizing:border-box;
  3538. border-width:1px;
  3539. border-style:solid;
  3540. border-color:rgba(201, 201, 201, 1);
  3541. border-radius:4px;
  3542. -moz-box-shadow:none;
  3543. -webkit-box-shadow:none;
  3544. box-shadow:none;
  3545. font-family:'Microsoft YaHei', sans-serif;
  3546. font-weight:400;
  3547. font-style:normal;
  3548. font-size:14px;
  3549. color:#CCCCCC;
  3550. text-align:left;
  3551. }
  3552. #u93670 {
  3553. border-width:0px;
  3554. position:absolute;
  3555. left:336px;
  3556. top:982px;
  3557. width:427px;
  3558. height:80px;
  3559. display:flex;
  3560. font-family:'Microsoft YaHei', sans-serif;
  3561. font-weight:400;
  3562. font-style:normal;
  3563. font-size:14px;
  3564. color:#CCCCCC;
  3565. text-align:left;
  3566. }
  3567. #u93670 .text {
  3568. position:absolute;
  3569. align-self:center;
  3570. padding:2px 8px 2px 8px;
  3571. box-sizing:border-box;
  3572. width:100%;
  3573. }
  3574. #u93670_text {
  3575. border-width:0px;
  3576. word-wrap:break-word;
  3577. text-transform:none;
  3578. visibility:hidden;
  3579. }
  3580. #u93671_input {
  3581. position:absolute;
  3582. left:0px;
  3583. top:0px;
  3584. width:389px;
  3585. height:33px;
  3586. padding:2px 2px 2px 2px;
  3587. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3588. font-weight:400;
  3589. font-style:normal;
  3590. font-size:14px;
  3591. letter-spacing:normal;
  3592. color:#D7D7D7;
  3593. vertical-align:none;
  3594. text-align:left;
  3595. text-transform:none;
  3596. background-color:transparent;
  3597. border-color:transparent;
  3598. }
  3599. #u93671_input.disabled {
  3600. position:absolute;
  3601. left:0px;
  3602. top:0px;
  3603. width:389px;
  3604. height:33px;
  3605. padding:2px 2px 2px 2px;
  3606. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3607. font-weight:400;
  3608. font-style:normal;
  3609. font-size:14px;
  3610. letter-spacing:normal;
  3611. color:#D7D7D7;
  3612. vertical-align:none;
  3613. text-align:left;
  3614. text-transform:none;
  3615. background-color:transparent;
  3616. border-color:transparent;
  3617. }
  3618. #u93671_div {
  3619. border-width:0px;
  3620. position:absolute;
  3621. left:0px;
  3622. top:0px;
  3623. width:389px;
  3624. height:33px;
  3625. background:inherit;
  3626. background-color:rgba(255, 255, 255, 0);
  3627. border:none;
  3628. border-radius:0px;
  3629. -moz-box-shadow:none;
  3630. -webkit-box-shadow:none;
  3631. box-shadow:none;
  3632. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3633. font-weight:400;
  3634. font-style:normal;
  3635. font-size:14px;
  3636. color:#D7D7D7;
  3637. }
  3638. #u93671 {
  3639. border-width:0px;
  3640. position:absolute;
  3641. left:353px;
  3642. top:985px;
  3643. width:389px;
  3644. height:33px;
  3645. display:flex;
  3646. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3647. font-weight:400;
  3648. font-style:normal;
  3649. font-size:14px;
  3650. color:#D7D7D7;
  3651. }
  3652. #u93671 .text {
  3653. position:absolute;
  3654. align-self:center;
  3655. padding:2px 2px 2px 2px;
  3656. box-sizing:border-box;
  3657. width:100%;
  3658. }
  3659. #u93671_div.disabled {
  3660. border-width:0px;
  3661. position:absolute;
  3662. left:0px;
  3663. top:0px;
  3664. width:389px;
  3665. height:33px;
  3666. background:inherit;
  3667. background-color:rgba(240, 240, 240, 1);
  3668. border:none;
  3669. border-radius:0px;
  3670. -moz-box-shadow:none;
  3671. -webkit-box-shadow:none;
  3672. box-shadow:none;
  3673. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3674. font-weight:400;
  3675. font-style:normal;
  3676. font-size:14px;
  3677. color:#D7D7D7;
  3678. }
  3679. #u93671.disabled {
  3680. }
  3681. #u93672_div {
  3682. border-width:0px;
  3683. position:absolute;
  3684. left:0px;
  3685. top:0px;
  3686. width:71px;
  3687. height:40px;
  3688. background:inherit;
  3689. background-color:rgba(255, 255, 255, 0);
  3690. border:none;
  3691. border-left:0px;
  3692. border-top:0px;
  3693. border-right:0px;
  3694. border-radius:0px;
  3695. border-bottom-right-radius:0px;
  3696. border-bottom-left-radius:0px;
  3697. -moz-box-shadow:none;
  3698. -webkit-box-shadow:none;
  3699. box-shadow:none;
  3700. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3701. font-weight:400;
  3702. font-style:normal;
  3703. font-size:14px;
  3704. }
  3705. #u93672 {
  3706. border-width:0px;
  3707. position:absolute;
  3708. left:336px;
  3709. top:942px;
  3710. width:71px;
  3711. height:40px;
  3712. display:flex;
  3713. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3714. font-weight:400;
  3715. font-style:normal;
  3716. font-size:14px;
  3717. }
  3718. #u93672 .text {
  3719. position:absolute;
  3720. align-self:center;
  3721. padding:0px 0px 0px 0px;
  3722. box-sizing:border-box;
  3723. width:100%;
  3724. }
  3725. #u93672_text {
  3726. border-width:0px;
  3727. white-space:nowrap;
  3728. text-transform:none;
  3729. }