styles.css 66 KB

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