styles.css 70 KB

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