styles.css 70 KB

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