styles.css 86 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395439643974398439944004401440244034404440544064407440844094410441144124413441444154416441744184419442044214422442344244425442644274428442944304431443244334434443544364437443844394440444144424443444444454446444744484449445044514452445344544455445644574458445944604461446244634464446544664467446844694470447144724473447444754476447744784479448044814482448344844485448644874488448944904491449244934494449544964497449844994500450145024503450445054506450745084509451045114512451345144515451645174518
  1. body {
  2. margin:0px;
  3. background-image:none;
  4. position:relative;
  5. left:-113px;
  6. width:1380px;
  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. #u34837 {
  20. border-width:0px;
  21. position:absolute;
  22. left:0px;
  23. top:0px;
  24. width:0px;
  25. height:0px;
  26. }
  27. #u34838_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. filter:drop-shadow(none);
  42. transition:none;
  43. }
  44. #u34838 {
  45. border-width:0px;
  46. position:absolute;
  47. left:113px;
  48. top:57px;
  49. width:680px;
  50. height:1198px;
  51. display:flex;
  52. transition:none;
  53. transform-origin:50% 50%;
  54. }
  55. #u34838 .text {
  56. position:absolute;
  57. align-self:center;
  58. padding:2px 2px 2px 2px;
  59. box-sizing:border-box;
  60. width:100%;
  61. }
  62. #u34838_text {
  63. border-width:0px;
  64. word-wrap:break-word;
  65. text-transform:none;
  66. visibility:hidden;
  67. }
  68. #u34839_div {
  69. border-width:0px;
  70. position:absolute;
  71. left:0px;
  72. top:0px;
  73. width:73px;
  74. height:30px;
  75. background:inherit;
  76. background-color:rgba(255, 255, 255, 0);
  77. border-radius:0px;
  78. filter:drop-shadow(none);
  79. transition:none;
  80. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  81. font-weight:400;
  82. font-style:normal;
  83. font-size:18px;
  84. color:#000000;
  85. line-height:30px;
  86. }
  87. #u34839 {
  88. border-width:0px;
  89. position:absolute;
  90. left:133px;
  91. top:77px;
  92. width:73px;
  93. height:30px;
  94. display:flex;
  95. transition:none;
  96. transform-origin:50% 50%;
  97. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  98. font-weight:400;
  99. font-style:normal;
  100. font-size:18px;
  101. color:#000000;
  102. line-height:30px;
  103. }
  104. #u34839 .text {
  105. position:absolute;
  106. align-self:flex-start;
  107. padding:0px 0px 0px 0px;
  108. box-sizing:border-box;
  109. width:100%;
  110. }
  111. #u34839_text {
  112. border-width:0px;
  113. white-space:nowrap;
  114. text-transform:none;
  115. }
  116. #u34840_div {
  117. border-width:0px;
  118. position:absolute;
  119. left:0px;
  120. top:0px;
  121. width:81px;
  122. height:30px;
  123. background:inherit;
  124. background-color:rgba(255, 255, 255, 0);
  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. filter:drop-shadow(none);
  132. transition:none;
  133. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  134. font-weight:400;
  135. font-style:normal;
  136. font-size:14px;
  137. }
  138. #u34840 {
  139. border-width:0px;
  140. position:absolute;
  141. left:162px;
  142. top:331px;
  143. width:81px;
  144. height:30px;
  145. display:flex;
  146. transition:none;
  147. transform-origin:50% 50%;
  148. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  149. font-weight:400;
  150. font-style:normal;
  151. font-size:14px;
  152. }
  153. #u34840 .text {
  154. position:absolute;
  155. align-self:center;
  156. padding:5px 10px 5px 0px;
  157. box-sizing:border-box;
  158. width:100%;
  159. }
  160. #u34840_text {
  161. border-width:0px;
  162. white-space:nowrap;
  163. text-transform:none;
  164. }
  165. #u34841_div {
  166. border-width:0px;
  167. position:absolute;
  168. left:0px;
  169. top:0px;
  170. width:81px;
  171. height:30px;
  172. background:inherit;
  173. background-color:rgba(255, 255, 255, 0);
  174. border-top:0px;
  175. border-right:0px;
  176. border-bottom:0px;
  177. border-radius:0px;
  178. border-top-left-radius:0px;
  179. border-bottom-left-radius:0px;
  180. filter:drop-shadow(none);
  181. transition:none;
  182. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  183. font-weight:400;
  184. font-style:normal;
  185. font-size:14px;
  186. }
  187. #u34841 {
  188. border-width:0px;
  189. position:absolute;
  190. left:162px;
  191. top:281px;
  192. width:81px;
  193. height:30px;
  194. display:flex;
  195. transition:none;
  196. transform-origin:50% 50%;
  197. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  198. font-weight:400;
  199. font-style:normal;
  200. font-size:14px;
  201. }
  202. #u34841 .text {
  203. position:absolute;
  204. align-self:center;
  205. padding:5px 10px 5px 0px;
  206. box-sizing:border-box;
  207. width:100%;
  208. }
  209. #u34841_text {
  210. border-width:0px;
  211. white-space:nowrap;
  212. text-transform:none;
  213. }
  214. #u34842 {
  215. border-width:0px;
  216. position:absolute;
  217. left:0px;
  218. top:0px;
  219. width:0px;
  220. height:0px;
  221. }
  222. #u34843_div {
  223. border-width:0px;
  224. position:absolute;
  225. left:0px;
  226. top:0px;
  227. width:40px;
  228. height:40px;
  229. background:inherit;
  230. background-color:rgba(255, 255, 255, 0);
  231. border-top:0px;
  232. border-right:0px;
  233. border-bottom:0px;
  234. border-radius:0px;
  235. border-top-left-radius:0px;
  236. border-bottom-left-radius:0px;
  237. filter:drop-shadow(none);
  238. transition:none;
  239. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  240. font-weight:500;
  241. font-style:normal;
  242. font-size:18px;
  243. text-align:center;
  244. }
  245. #u34843 {
  246. border-width:0px;
  247. position:absolute;
  248. left:753px;
  249. top:57px;
  250. width:40px;
  251. height:40px;
  252. display:flex;
  253. transition:none;
  254. transform-origin:50% 50%;
  255. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  256. font-weight:500;
  257. font-style:normal;
  258. font-size:18px;
  259. text-align:center;
  260. }
  261. #u34843 .text {
  262. position:absolute;
  263. align-self:center;
  264. padding:5px 10px 5px 0px;
  265. box-sizing:border-box;
  266. width:100%;
  267. }
  268. #u34843_text {
  269. border-width:0px;
  270. word-wrap:break-word;
  271. text-transform:none;
  272. }
  273. #u34844 {
  274. border-width:0px;
  275. position:absolute;
  276. left:740px;
  277. top:69px;
  278. width:13px;
  279. height:17px;
  280. display:flex;
  281. transition:none;
  282. }
  283. #u34844 .text {
  284. position:absolute;
  285. align-self:center;
  286. padding:2px 2px 2px 2px;
  287. box-sizing:border-box;
  288. width:100%;
  289. }
  290. #u34844_img {
  291. border-width:0px;
  292. position:absolute;
  293. left:0px;
  294. top:0px;
  295. width:13px;
  296. height:17px;
  297. }
  298. #u34844_text {
  299. border-width:0px;
  300. word-wrap:break-word;
  301. text-transform:none;
  302. visibility:hidden;
  303. }
  304. #u34845 {
  305. border-width:0px;
  306. position:absolute;
  307. left:0px;
  308. top:0px;
  309. width:0px;
  310. height:0px;
  311. }
  312. #u34846_div {
  313. border-width:0px;
  314. position:absolute;
  315. left:0px;
  316. top:0px;
  317. width:680px;
  318. height:60px;
  319. background:inherit;
  320. background-color:rgba(255, 255, 255, 1);
  321. box-sizing:border-box;
  322. border-width:1px;
  323. border-style:solid;
  324. border-color:rgba(215, 215, 215, 1);
  325. border-radius:0px;
  326. filter:drop-shadow(none);
  327. transition:none;
  328. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  329. font-weight:400;
  330. font-style:normal;
  331. font-size:14px;
  332. color:#AAAAAA;
  333. text-align:center;
  334. line-height:30px;
  335. }
  336. #u34846 {
  337. border-width:0px;
  338. position:absolute;
  339. left:113px;
  340. top:1195px;
  341. width:680px;
  342. height:60px;
  343. display:flex;
  344. transition:none;
  345. transform-origin:50% 50%;
  346. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  347. font-weight:400;
  348. font-style:normal;
  349. font-size:14px;
  350. color:#AAAAAA;
  351. text-align:center;
  352. line-height:30px;
  353. }
  354. #u34846 .text {
  355. position:absolute;
  356. align-self:center;
  357. padding:5px 10px 5px 10px;
  358. box-sizing:border-box;
  359. width:100%;
  360. }
  361. #u34846_text {
  362. border-width:0px;
  363. word-wrap:break-word;
  364. text-transform:none;
  365. visibility:hidden;
  366. }
  367. #u34847_div {
  368. border-width:0px;
  369. position:absolute;
  370. left:0px;
  371. top:0px;
  372. width:80px;
  373. height:30px;
  374. background:inherit;
  375. background-color:rgba(24, 144, 255, 1);
  376. border-radius:4px;
  377. filter:drop-shadow(none);
  378. transition:none;
  379. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  380. font-weight:400;
  381. font-style:normal;
  382. font-size:14px;
  383. color:#FFFFFF;
  384. }
  385. #u34847 {
  386. border-width:0px;
  387. position:absolute;
  388. left:668px;
  389. top:1210px;
  390. width:80px;
  391. height:30px;
  392. display:flex;
  393. transition:none;
  394. transform-origin:50% 50%;
  395. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  396. font-weight:400;
  397. font-style:normal;
  398. font-size:14px;
  399. color:#FFFFFF;
  400. }
  401. #u34847 .text {
  402. position:absolute;
  403. align-self:center;
  404. padding:2px 2px 2px 2px;
  405. box-sizing:border-box;
  406. width:100%;
  407. }
  408. #u34847_text {
  409. border-width:0px;
  410. word-wrap:break-word;
  411. text-transform:none;
  412. }
  413. #u34848_div {
  414. border-width:0px;
  415. position:absolute;
  416. left:0px;
  417. top:0px;
  418. width:80px;
  419. height:30px;
  420. background:inherit;
  421. background-color:rgba(255, 255, 255, 1);
  422. box-sizing:border-box;
  423. border-width:1px;
  424. border-style:solid;
  425. border-color:rgba(170, 170, 170, 1);
  426. border-radius:4px;
  427. filter:drop-shadow(none);
  428. transition:none;
  429. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  430. font-weight:400;
  431. font-style:normal;
  432. font-size:14px;
  433. }
  434. #u34848 {
  435. border-width:0px;
  436. position:absolute;
  437. left:569px;
  438. top:1210px;
  439. width:80px;
  440. height:30px;
  441. display:flex;
  442. transition:none;
  443. transform-origin:50% 50%;
  444. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  445. font-weight:400;
  446. font-style:normal;
  447. font-size:14px;
  448. }
  449. #u34848 .text {
  450. position:absolute;
  451. align-self:center;
  452. padding:2px 2px 2px 2px;
  453. box-sizing:border-box;
  454. width:100%;
  455. }
  456. #u34848_text {
  457. border-width:0px;
  458. word-wrap:break-word;
  459. text-transform:none;
  460. }
  461. #u34849_div {
  462. border-width:0px;
  463. position:absolute;
  464. left:0px;
  465. top:0px;
  466. width:81px;
  467. height:30px;
  468. background:inherit;
  469. background-color:rgba(255, 255, 255, 0);
  470. border-top:0px;
  471. border-right:0px;
  472. border-bottom:0px;
  473. border-radius:0px;
  474. border-top-left-radius:0px;
  475. border-bottom-left-radius:0px;
  476. filter:drop-shadow(none);
  477. transition:none;
  478. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  479. font-weight:400;
  480. font-style:normal;
  481. font-size:14px;
  482. }
  483. #u34849 {
  484. border-width:0px;
  485. position:absolute;
  486. left:162px;
  487. top:381px;
  488. width:81px;
  489. height:30px;
  490. display:flex;
  491. transition:none;
  492. transform-origin:50% 50%;
  493. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  494. font-weight:400;
  495. font-style:normal;
  496. font-size:14px;
  497. }
  498. #u34849 .text {
  499. position:absolute;
  500. align-self:center;
  501. padding:5px 10px 5px 0px;
  502. box-sizing:border-box;
  503. width:100%;
  504. }
  505. #u34849_text {
  506. border-width:0px;
  507. white-space:nowrap;
  508. text-transform:none;
  509. }
  510. #u34850 {
  511. border-width:0px;
  512. position:absolute;
  513. left:0px;
  514. top:0px;
  515. width:0px;
  516. height:0px;
  517. }
  518. #u34851_div {
  519. border-width:0px;
  520. position:absolute;
  521. left:0px;
  522. top:0px;
  523. width:400px;
  524. height:80px;
  525. background:inherit;
  526. background-color:rgba(255, 255, 255, 1);
  527. box-sizing:border-box;
  528. border-width:1px;
  529. border-style:solid;
  530. border-color:rgba(170, 170, 170, 1);
  531. border-radius:4px;
  532. filter:drop-shadow(none);
  533. transition:none;
  534. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  535. font-weight:400;
  536. font-style:normal;
  537. text-align:left;
  538. }
  539. #u34851 {
  540. border-width:0px;
  541. position:absolute;
  542. left:265px;
  543. top:376px;
  544. width:400px;
  545. height:80px;
  546. display:flex;
  547. transition:none;
  548. transform-origin:50% 50%;
  549. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  550. font-weight:400;
  551. font-style:normal;
  552. text-align:left;
  553. }
  554. #u34851 .text {
  555. position:absolute;
  556. align-self:center;
  557. padding:2px 2px 2px 10px;
  558. box-sizing:border-box;
  559. width:100%;
  560. }
  561. #u34851_text {
  562. border-width:0px;
  563. word-wrap:break-word;
  564. text-transform:none;
  565. visibility:hidden;
  566. }
  567. #u34852_input {
  568. position:absolute;
  569. left:0px;
  570. top:0px;
  571. width:188px;
  572. height:31px;
  573. padding:2px 2px 2px 2px;
  574. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  575. font-weight:400;
  576. font-style:normal;
  577. font-size:13px;
  578. letter-spacing:normal;
  579. color:#AAAAAA;
  580. vertical-align:none;
  581. text-align:left;
  582. text-transform:none;
  583. background-color:transparent;
  584. border-color:transparent;
  585. }
  586. #u34852_input.hint {
  587. position:absolute;
  588. left:0px;
  589. top:0px;
  590. width:188px;
  591. height:31px;
  592. padding:2px 2px 2px 2px;
  593. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  594. font-weight:400;
  595. font-style:normal;
  596. font-size:13px;
  597. letter-spacing:normal;
  598. color:#999999;
  599. vertical-align:none;
  600. text-align:left;
  601. text-transform:none;
  602. background-color:transparent;
  603. border-color:transparent;
  604. }
  605. #u34852_input.disabled {
  606. position:absolute;
  607. left:0px;
  608. top:0px;
  609. width:188px;
  610. height:31px;
  611. padding:2px 2px 2px 2px;
  612. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  613. font-weight:400;
  614. font-style:normal;
  615. font-size:13px;
  616. letter-spacing:normal;
  617. color:#AAAAAA;
  618. vertical-align:none;
  619. text-align:left;
  620. text-transform:none;
  621. background-color:transparent;
  622. border-color:transparent;
  623. }
  624. #u34852_input.hint.disabled {
  625. position:absolute;
  626. left:0px;
  627. top:0px;
  628. width:188px;
  629. height:31px;
  630. padding:2px 2px 2px 2px;
  631. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  632. font-weight:400;
  633. font-style:normal;
  634. font-size:13px;
  635. letter-spacing:normal;
  636. color:#999999;
  637. vertical-align:none;
  638. text-align:left;
  639. text-transform:none;
  640. background-color:transparent;
  641. border-color:transparent;
  642. }
  643. #u34852_div {
  644. border-width:0px;
  645. position:absolute;
  646. left:0px;
  647. top:0px;
  648. width:188px;
  649. height:31px;
  650. background:inherit;
  651. background-color:rgba(255, 255, 255, 0);
  652. border-radius:0px;
  653. filter:drop-shadow(none);
  654. transition:none;
  655. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  656. font-weight:400;
  657. font-style:normal;
  658. color:#AAAAAA;
  659. }
  660. #u34852 {
  661. border-width:0px;
  662. position:absolute;
  663. left:275px;
  664. top:381px;
  665. width:188px;
  666. height:31px;
  667. display:flex;
  668. transition:none;
  669. transform-origin:50% 50%;
  670. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  671. font-weight:400;
  672. font-style:normal;
  673. color:#AAAAAA;
  674. }
  675. #u34852 .text {
  676. position:absolute;
  677. align-self:center;
  678. padding:2px 2px 2px 2px;
  679. box-sizing:border-box;
  680. width:100%;
  681. }
  682. #u34852_div.hint {
  683. border-width:0px;
  684. position:absolute;
  685. left:0px;
  686. top:0px;
  687. width:188px;
  688. height:31px;
  689. background:inherit;
  690. background-color:rgba(255, 255, 255, 0);
  691. border-radius:0px;
  692. filter:drop-shadow(none);
  693. transition:none;
  694. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  695. font-weight:400;
  696. font-style:normal;
  697. color:#AAAAAA;
  698. }
  699. #u34852.hint {
  700. }
  701. #u34852_div.disabled {
  702. border-width:0px;
  703. position:absolute;
  704. left:0px;
  705. top:0px;
  706. width:188px;
  707. height:31px;
  708. background:inherit;
  709. background-color:rgba(240, 240, 240, 1);
  710. border-radius:0px;
  711. filter:drop-shadow(none);
  712. transition:none;
  713. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  714. font-weight:400;
  715. font-style:normal;
  716. color:#AAAAAA;
  717. }
  718. #u34852.disabled {
  719. }
  720. #u34852_div.hint.disabled {
  721. border-width:0px;
  722. position:absolute;
  723. left:0px;
  724. top:0px;
  725. width:188px;
  726. height:31px;
  727. background:inherit;
  728. background-color:rgba(240, 240, 240, 1);
  729. border-radius:0px;
  730. filter:drop-shadow(none);
  731. transition:none;
  732. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  733. font-weight:400;
  734. font-style:normal;
  735. color:#AAAAAA;
  736. }
  737. #u34852.hint.disabled {
  738. }
  739. #u34853_div {
  740. border-width:0px;
  741. position:absolute;
  742. left:0px;
  743. top:0px;
  744. width:39px;
  745. height:24px;
  746. background:inherit;
  747. background-color:rgba(255, 255, 255, 0);
  748. border-top:0px;
  749. border-right:0px;
  750. border-bottom:0px;
  751. border-radius:0px;
  752. border-top-left-radius:0px;
  753. border-bottom-left-radius:0px;
  754. filter:drop-shadow(none);
  755. transition:none;
  756. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  757. font-weight:400;
  758. font-style:normal;
  759. font-size:10px;
  760. color:#AAAAAA;
  761. text-align:right;
  762. }
  763. #u34853 {
  764. border-width:0px;
  765. position:absolute;
  766. left:623px;
  767. top:431px;
  768. width:39px;
  769. height:24px;
  770. display:flex;
  771. transition:none;
  772. transform-origin:50% 50%;
  773. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  774. font-weight:400;
  775. font-style:normal;
  776. font-size:10px;
  777. color:#AAAAAA;
  778. text-align:right;
  779. }
  780. #u34853 .text {
  781. position:absolute;
  782. align-self:center;
  783. padding:5px 0px 5px 0px;
  784. box-sizing:border-box;
  785. width:100%;
  786. }
  787. #u34853_text {
  788. border-width:0px;
  789. white-space:nowrap;
  790. text-transform:none;
  791. }
  792. #u34854_div {
  793. border-width:0px;
  794. position:absolute;
  795. left:0px;
  796. top:0px;
  797. width:88px;
  798. height:30px;
  799. background:inherit;
  800. background-color:rgba(255, 255, 255, 0);
  801. border-top:0px;
  802. border-right:0px;
  803. border-bottom:0px;
  804. border-radius:0px;
  805. border-top-left-radius:0px;
  806. border-bottom-left-radius:0px;
  807. filter:drop-shadow(none);
  808. transition:none;
  809. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  810. font-weight:400;
  811. font-style:normal;
  812. font-size:14px;
  813. }
  814. #u34854 {
  815. border-width:0px;
  816. position:absolute;
  817. left:162px;
  818. top:181px;
  819. width:88px;
  820. height:30px;
  821. display:flex;
  822. transition:none;
  823. transform-origin:50% 50%;
  824. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  825. font-weight:400;
  826. font-style:normal;
  827. font-size:14px;
  828. }
  829. #u34854 .text {
  830. position:absolute;
  831. align-self:center;
  832. padding:5px 10px 5px 0px;
  833. box-sizing:border-box;
  834. width:100%;
  835. }
  836. #u34854_text {
  837. border-width:0px;
  838. white-space:nowrap;
  839. text-transform:none;
  840. }
  841. #u34855 {
  842. border-width:0px;
  843. position:absolute;
  844. left:0px;
  845. top:0px;
  846. width:0px;
  847. height:0px;
  848. }
  849. #u34856_div {
  850. border-width:0px;
  851. position:absolute;
  852. left:0px;
  853. top:0px;
  854. width:400px;
  855. height:40px;
  856. background:inherit;
  857. background-color:rgba(255, 255, 255, 1);
  858. box-sizing:border-box;
  859. border-width:1px;
  860. border-style:solid;
  861. border-color:rgba(170, 170, 170, 1);
  862. border-radius:4px;
  863. filter:drop-shadow(none);
  864. transition:none;
  865. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  866. font-weight:400;
  867. font-style:normal;
  868. text-align:left;
  869. }
  870. #u34856 {
  871. border-width:0px;
  872. position:absolute;
  873. left:265px;
  874. top:176px;
  875. width:400px;
  876. height:40px;
  877. display:flex;
  878. transition:none;
  879. transform-origin:50% 50%;
  880. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  881. font-weight:400;
  882. font-style:normal;
  883. text-align:left;
  884. }
  885. #u34856 .text {
  886. position:absolute;
  887. align-self:center;
  888. padding:2px 2px 2px 10px;
  889. box-sizing:border-box;
  890. width:100%;
  891. }
  892. #u34856_text {
  893. border-width:0px;
  894. word-wrap:break-word;
  895. text-transform:none;
  896. visibility:hidden;
  897. }
  898. #u34857_input {
  899. position:absolute;
  900. left:0px;
  901. top:0px;
  902. width:380px;
  903. height:31px;
  904. padding:2px 2px 2px 2px;
  905. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  906. font-weight:400;
  907. font-style:normal;
  908. font-size:13px;
  909. letter-spacing:normal;
  910. color:#AAAAAA;
  911. vertical-align:none;
  912. text-align:left;
  913. text-transform:none;
  914. background-color:transparent;
  915. border-color:transparent;
  916. }
  917. #u34857_input.hint {
  918. position:absolute;
  919. left:0px;
  920. top:0px;
  921. width:380px;
  922. height:31px;
  923. padding:2px 2px 2px 2px;
  924. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  925. font-weight:400;
  926. font-style:normal;
  927. font-size:13px;
  928. letter-spacing:normal;
  929. color:#999999;
  930. vertical-align:none;
  931. text-align:left;
  932. text-transform:none;
  933. background-color:transparent;
  934. border-color:transparent;
  935. }
  936. #u34857_input.disabled {
  937. position:absolute;
  938. left:0px;
  939. top:0px;
  940. width:380px;
  941. height:31px;
  942. padding:2px 2px 2px 2px;
  943. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  944. font-weight:400;
  945. font-style:normal;
  946. font-size:13px;
  947. letter-spacing:normal;
  948. color:#AAAAAA;
  949. vertical-align:none;
  950. text-align:left;
  951. text-transform:none;
  952. background-color:transparent;
  953. border-color:transparent;
  954. }
  955. #u34857_input.hint.disabled {
  956. position:absolute;
  957. left:0px;
  958. top:0px;
  959. width:380px;
  960. height:31px;
  961. padding:2px 2px 2px 2px;
  962. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  963. font-weight:400;
  964. font-style:normal;
  965. font-size:13px;
  966. letter-spacing:normal;
  967. color:#999999;
  968. vertical-align:none;
  969. text-align:left;
  970. text-transform:none;
  971. background-color:transparent;
  972. border-color:transparent;
  973. }
  974. #u34857_div {
  975. border-width:0px;
  976. position:absolute;
  977. left:0px;
  978. top:0px;
  979. width:380px;
  980. height:31px;
  981. background:inherit;
  982. background-color:rgba(255, 255, 255, 0);
  983. border-radius:0px;
  984. filter:drop-shadow(none);
  985. transition:none;
  986. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  987. font-weight:400;
  988. font-style:normal;
  989. color:#AAAAAA;
  990. }
  991. #u34857 {
  992. border-width:0px;
  993. position:absolute;
  994. left:275px;
  995. top:181px;
  996. width:380px;
  997. height:31px;
  998. display:flex;
  999. transition:none;
  1000. transform-origin:50% 50%;
  1001. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1002. font-weight:400;
  1003. font-style:normal;
  1004. color:#AAAAAA;
  1005. }
  1006. #u34857 .text {
  1007. position:absolute;
  1008. align-self:center;
  1009. padding:2px 2px 2px 2px;
  1010. box-sizing:border-box;
  1011. width:100%;
  1012. }
  1013. #u34857_div.hint {
  1014. border-width:0px;
  1015. position:absolute;
  1016. left:0px;
  1017. top:0px;
  1018. width:380px;
  1019. height:31px;
  1020. background:inherit;
  1021. background-color:rgba(255, 255, 255, 0);
  1022. border-radius:0px;
  1023. filter:drop-shadow(none);
  1024. transition:none;
  1025. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1026. font-weight:400;
  1027. font-style:normal;
  1028. color:#AAAAAA;
  1029. }
  1030. #u34857.hint {
  1031. }
  1032. #u34857_div.disabled {
  1033. border-width:0px;
  1034. position:absolute;
  1035. left:0px;
  1036. top:0px;
  1037. width:380px;
  1038. height:31px;
  1039. background:inherit;
  1040. background-color:rgba(240, 240, 240, 1);
  1041. border-radius:0px;
  1042. filter:drop-shadow(none);
  1043. transition:none;
  1044. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1045. font-weight:400;
  1046. font-style:normal;
  1047. color:#AAAAAA;
  1048. }
  1049. #u34857.disabled {
  1050. }
  1051. #u34857_div.hint.disabled {
  1052. border-width:0px;
  1053. position:absolute;
  1054. left:0px;
  1055. top:0px;
  1056. width:380px;
  1057. height:31px;
  1058. background:inherit;
  1059. background-color:rgba(240, 240, 240, 1);
  1060. border-radius:0px;
  1061. filter:drop-shadow(none);
  1062. transition:none;
  1063. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1064. font-weight:400;
  1065. font-style:normal;
  1066. color:#AAAAAA;
  1067. }
  1068. #u34857.hint.disabled {
  1069. }
  1070. #u34858_div {
  1071. border-width:0px;
  1072. position:absolute;
  1073. left:0px;
  1074. top:0px;
  1075. width:88px;
  1076. height:30px;
  1077. background:inherit;
  1078. background-color:rgba(255, 255, 255, 0);
  1079. border-top:0px;
  1080. border-right:0px;
  1081. border-bottom:0px;
  1082. border-radius:0px;
  1083. border-top-left-radius:0px;
  1084. border-bottom-left-radius:0px;
  1085. filter:drop-shadow(none);
  1086. transition:none;
  1087. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1088. font-weight:400;
  1089. font-style:normal;
  1090. font-size:14px;
  1091. }
  1092. #u34858 {
  1093. border-width:0px;
  1094. position:absolute;
  1095. left:162px;
  1096. top:131px;
  1097. width:88px;
  1098. height:30px;
  1099. display:flex;
  1100. transition:none;
  1101. transform-origin:50% 50%;
  1102. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1103. font-weight:400;
  1104. font-style:normal;
  1105. font-size:14px;
  1106. }
  1107. #u34858 .text {
  1108. position:absolute;
  1109. align-self:center;
  1110. padding:5px 10px 5px 0px;
  1111. box-sizing:border-box;
  1112. width:100%;
  1113. }
  1114. #u34858_text {
  1115. border-width:0px;
  1116. white-space:nowrap;
  1117. text-transform:none;
  1118. }
  1119. #u34859 {
  1120. border-width:0px;
  1121. position:absolute;
  1122. left:0px;
  1123. top:0px;
  1124. width:0px;
  1125. height:0px;
  1126. }
  1127. #u34860_div {
  1128. border-width:0px;
  1129. position:absolute;
  1130. left:0px;
  1131. top:0px;
  1132. width:400px;
  1133. height:40px;
  1134. background:inherit;
  1135. background-color:rgba(255, 255, 255, 1);
  1136. box-sizing:border-box;
  1137. border-width:1px;
  1138. border-style:solid;
  1139. border-color:rgba(215, 215, 215, 1);
  1140. border-radius:4px;
  1141. filter:drop-shadow(none);
  1142. transition:none;
  1143. font-size:14px;
  1144. }
  1145. #u34860 {
  1146. border-width:0px;
  1147. position:absolute;
  1148. left:265px;
  1149. top:126px;
  1150. width:400px;
  1151. height:40px;
  1152. display:flex;
  1153. transition:none;
  1154. transform-origin:50% 50%;
  1155. font-size:14px;
  1156. }
  1157. #u34860 .text {
  1158. position:absolute;
  1159. align-self:center;
  1160. padding:2px 2px 2px 2px;
  1161. box-sizing:border-box;
  1162. width:100%;
  1163. }
  1164. #u34860_text {
  1165. border-width:0px;
  1166. word-wrap:break-word;
  1167. text-transform:none;
  1168. visibility:hidden;
  1169. }
  1170. #u34861_input {
  1171. position:absolute;
  1172. left:0px;
  1173. top:0px;
  1174. width:381px;
  1175. height:31px;
  1176. padding:2px 2px 2px 2px;
  1177. font-family:'ArialMT', 'Arial', sans-serif;
  1178. font-weight:400;
  1179. font-style:normal;
  1180. font-size:14px;
  1181. letter-spacing:normal;
  1182. color:#AAAAAA;
  1183. vertical-align:none;
  1184. text-align:left;
  1185. text-transform:none;
  1186. background-color:transparent;
  1187. border-color:transparent;
  1188. }
  1189. #u34861_input.disabled {
  1190. position:absolute;
  1191. left:0px;
  1192. top:0px;
  1193. width:381px;
  1194. height:31px;
  1195. padding:2px 2px 2px 2px;
  1196. font-family:'ArialMT', 'Arial', sans-serif;
  1197. font-weight:400;
  1198. font-style:normal;
  1199. font-size:14px;
  1200. letter-spacing:normal;
  1201. color:#AAAAAA;
  1202. vertical-align:none;
  1203. text-align:left;
  1204. text-transform:none;
  1205. background-color:transparent;
  1206. border-color:transparent;
  1207. }
  1208. #u34861_div {
  1209. border-width:0px;
  1210. position:absolute;
  1211. left:0px;
  1212. top:0px;
  1213. width:381px;
  1214. height:31px;
  1215. background:inherit;
  1216. background-color:rgba(255, 255, 255, 1);
  1217. border-radius:0px;
  1218. filter:drop-shadow(none);
  1219. transition:none;
  1220. font-size:14px;
  1221. color:#AAAAAA;
  1222. }
  1223. #u34861 {
  1224. border-width:0px;
  1225. position:absolute;
  1226. left:276px;
  1227. top:129px;
  1228. width:381px;
  1229. height:31px;
  1230. display:flex;
  1231. transition:none;
  1232. transform-origin:50% 50%;
  1233. font-size:14px;
  1234. color:#AAAAAA;
  1235. }
  1236. #u34861 .text {
  1237. position:absolute;
  1238. align-self:flex-start;
  1239. padding:2px 2px 2px 2px;
  1240. box-sizing:border-box;
  1241. width:100%;
  1242. }
  1243. #u34861_div.disabled {
  1244. border-width:0px;
  1245. position:absolute;
  1246. left:0px;
  1247. top:0px;
  1248. width:381px;
  1249. height:31px;
  1250. background:inherit;
  1251. background-color:rgba(240, 240, 240, 1);
  1252. border-radius:0px;
  1253. filter:drop-shadow(none);
  1254. transition:none;
  1255. font-size:14px;
  1256. color:#AAAAAA;
  1257. }
  1258. #u34861.disabled {
  1259. }
  1260. .u34861_input_option {
  1261. font-size:14px;
  1262. }
  1263. #u34862 {
  1264. border-width:0px;
  1265. position:absolute;
  1266. left:0px;
  1267. top:0px;
  1268. width:0px;
  1269. height:0px;
  1270. }
  1271. #u34863_div {
  1272. border-width:0px;
  1273. position:absolute;
  1274. left:0px;
  1275. top:0px;
  1276. width:398px;
  1277. height:40px;
  1278. background:inherit;
  1279. background-color:rgba(255, 255, 255, 1);
  1280. box-sizing:border-box;
  1281. border-width:1px;
  1282. border-style:solid;
  1283. border-color:rgba(170, 170, 170, 1);
  1284. border-radius:4px;
  1285. filter:drop-shadow(none);
  1286. transition:none;
  1287. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1288. font-weight:400;
  1289. font-style:normal;
  1290. text-align:left;
  1291. }
  1292. #u34863 {
  1293. border-width:0px;
  1294. position:absolute;
  1295. left:265px;
  1296. top:326px;
  1297. width:398px;
  1298. height:40px;
  1299. display:flex;
  1300. transition:none;
  1301. transform-origin:50% 50%;
  1302. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1303. font-weight:400;
  1304. font-style:normal;
  1305. text-align:left;
  1306. }
  1307. #u34863 .text {
  1308. position:absolute;
  1309. align-self:center;
  1310. padding:2px 2px 2px 10px;
  1311. box-sizing:border-box;
  1312. width:100%;
  1313. }
  1314. #u34863_text {
  1315. border-width:0px;
  1316. word-wrap:break-word;
  1317. text-transform:none;
  1318. visibility:hidden;
  1319. }
  1320. #u34864_input {
  1321. position:absolute;
  1322. left:0px;
  1323. top:0px;
  1324. width:218px;
  1325. height:31px;
  1326. padding:2px 2px 2px 2px;
  1327. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1328. font-weight:400;
  1329. font-style:normal;
  1330. font-size:13px;
  1331. letter-spacing:normal;
  1332. color:#AAAAAA;
  1333. vertical-align:none;
  1334. text-align:left;
  1335. text-transform:none;
  1336. background-color:transparent;
  1337. border-color:transparent;
  1338. }
  1339. #u34864_input.hint {
  1340. position:absolute;
  1341. left:0px;
  1342. top:0px;
  1343. width:218px;
  1344. height:31px;
  1345. padding:2px 2px 2px 2px;
  1346. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1347. font-weight:400;
  1348. font-style:normal;
  1349. font-size:13px;
  1350. letter-spacing:normal;
  1351. color:#999999;
  1352. vertical-align:none;
  1353. text-align:left;
  1354. text-transform:none;
  1355. background-color:transparent;
  1356. border-color:transparent;
  1357. }
  1358. #u34864_input.disabled {
  1359. position:absolute;
  1360. left:0px;
  1361. top:0px;
  1362. width:218px;
  1363. height:31px;
  1364. padding:2px 2px 2px 2px;
  1365. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1366. font-weight:400;
  1367. font-style:normal;
  1368. font-size:13px;
  1369. letter-spacing:normal;
  1370. color:#AAAAAA;
  1371. vertical-align:none;
  1372. text-align:left;
  1373. text-transform:none;
  1374. background-color:transparent;
  1375. border-color:transparent;
  1376. }
  1377. #u34864_input.hint.disabled {
  1378. position:absolute;
  1379. left:0px;
  1380. top:0px;
  1381. width:218px;
  1382. height:31px;
  1383. padding:2px 2px 2px 2px;
  1384. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1385. font-weight:400;
  1386. font-style:normal;
  1387. font-size:13px;
  1388. letter-spacing:normal;
  1389. color:#999999;
  1390. vertical-align:none;
  1391. text-align:left;
  1392. text-transform:none;
  1393. background-color:transparent;
  1394. border-color:transparent;
  1395. }
  1396. #u34864_div {
  1397. border-width:0px;
  1398. position:absolute;
  1399. left:0px;
  1400. top:0px;
  1401. width:218px;
  1402. height:31px;
  1403. background:inherit;
  1404. background-color:rgba(255, 255, 255, 0);
  1405. border-radius:0px;
  1406. filter:drop-shadow(none);
  1407. transition:none;
  1408. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1409. font-weight:400;
  1410. font-style:normal;
  1411. color:#AAAAAA;
  1412. }
  1413. #u34864 {
  1414. border-width:0px;
  1415. position:absolute;
  1416. left:386px;
  1417. top:331px;
  1418. width:218px;
  1419. height:31px;
  1420. display:flex;
  1421. transition:none;
  1422. transform-origin:50% 50%;
  1423. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1424. font-weight:400;
  1425. font-style:normal;
  1426. color:#AAAAAA;
  1427. }
  1428. #u34864 .text {
  1429. position:absolute;
  1430. align-self:center;
  1431. padding:2px 2px 2px 2px;
  1432. box-sizing:border-box;
  1433. width:100%;
  1434. }
  1435. #u34864_div.hint {
  1436. border-width:0px;
  1437. position:absolute;
  1438. left:0px;
  1439. top:0px;
  1440. width:218px;
  1441. height:31px;
  1442. background:inherit;
  1443. background-color:rgba(255, 255, 255, 0);
  1444. border-radius:0px;
  1445. filter:drop-shadow(none);
  1446. transition:none;
  1447. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1448. font-weight:400;
  1449. font-style:normal;
  1450. color:#AAAAAA;
  1451. }
  1452. #u34864.hint {
  1453. }
  1454. #u34864_div.disabled {
  1455. border-width:0px;
  1456. position:absolute;
  1457. left:0px;
  1458. top:0px;
  1459. width:218px;
  1460. height:31px;
  1461. background:inherit;
  1462. background-color:rgba(240, 240, 240, 1);
  1463. border-radius:0px;
  1464. filter:drop-shadow(none);
  1465. transition:none;
  1466. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1467. font-weight:400;
  1468. font-style:normal;
  1469. color:#AAAAAA;
  1470. }
  1471. #u34864.disabled {
  1472. }
  1473. #u34864_div.hint.disabled {
  1474. border-width:0px;
  1475. position:absolute;
  1476. left:0px;
  1477. top:0px;
  1478. width:218px;
  1479. height:31px;
  1480. background:inherit;
  1481. background-color:rgba(240, 240, 240, 1);
  1482. border-radius:0px;
  1483. filter:drop-shadow(none);
  1484. transition:none;
  1485. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1486. font-weight:400;
  1487. font-style:normal;
  1488. color:#AAAAAA;
  1489. }
  1490. #u34864.hint.disabled {
  1491. }
  1492. #u34865_div {
  1493. border-width:0px;
  1494. position:absolute;
  1495. left:0px;
  1496. top:0px;
  1497. width:49px;
  1498. height:40px;
  1499. background:inherit;
  1500. background-color:rgba(41, 143, 255, 1);
  1501. border-top:0px;
  1502. border-right:0px;
  1503. border-bottom:0px;
  1504. border-radius:0px;
  1505. border-top-left-radius:0px;
  1506. border-bottom-left-radius:0px;
  1507. filter:drop-shadow(none);
  1508. transition:none;
  1509. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1510. font-weight:400;
  1511. font-style:normal;
  1512. font-size:14px;
  1513. color:#FFFFFF;
  1514. text-align:center;
  1515. }
  1516. #u34865 {
  1517. border-width:0px;
  1518. position:absolute;
  1519. left:614px;
  1520. top:326px;
  1521. width:49px;
  1522. height:40px;
  1523. display:flex;
  1524. transition:none;
  1525. transform-origin:50% 50%;
  1526. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1527. font-weight:400;
  1528. font-style:normal;
  1529. font-size:14px;
  1530. color:#FFFFFF;
  1531. text-align:center;
  1532. }
  1533. #u34865 .text {
  1534. position:absolute;
  1535. align-self:center;
  1536. padding:5px 0px 5px 0px;
  1537. box-sizing:border-box;
  1538. width:100%;
  1539. }
  1540. #u34865_text {
  1541. border-width:0px;
  1542. word-wrap:break-word;
  1543. text-transform:none;
  1544. }
  1545. #u34866_input {
  1546. position:absolute;
  1547. left:0px;
  1548. top:0px;
  1549. width:101px;
  1550. height:30px;
  1551. padding:2px 2px 2px 0px;
  1552. font-family:'ArialMT', 'Arial', sans-serif;
  1553. font-weight:400;
  1554. font-style:normal;
  1555. font-size:13px;
  1556. letter-spacing:normal;
  1557. color:#AAAAAA;
  1558. vertical-align:none;
  1559. text-align:left;
  1560. text-transform:none;
  1561. background-color:transparent;
  1562. border-color:transparent;
  1563. }
  1564. #u34866_input.disabled {
  1565. position:absolute;
  1566. left:0px;
  1567. top:0px;
  1568. width:101px;
  1569. height:30px;
  1570. padding:2px 2px 2px 0px;
  1571. font-family:'ArialMT', 'Arial', sans-serif;
  1572. font-weight:400;
  1573. font-style:normal;
  1574. font-size:13px;
  1575. letter-spacing:normal;
  1576. color:#AAAAAA;
  1577. vertical-align:none;
  1578. text-align:left;
  1579. text-transform:none;
  1580. background-color:transparent;
  1581. border-color:transparent;
  1582. }
  1583. #u34866_div {
  1584. border-width:0px;
  1585. position:absolute;
  1586. left:0px;
  1587. top:0px;
  1588. width:101px;
  1589. height:30px;
  1590. background:inherit;
  1591. background-color:rgba(255, 255, 255, 1);
  1592. border-radius:0px;
  1593. filter:drop-shadow(none);
  1594. transition:none;
  1595. color:#AAAAAA;
  1596. }
  1597. #u34866 {
  1598. border-width:0px;
  1599. position:absolute;
  1600. left:275px;
  1601. top:331px;
  1602. width:101px;
  1603. height:30px;
  1604. display:flex;
  1605. transition:none;
  1606. transform-origin:50% 50%;
  1607. color:#AAAAAA;
  1608. }
  1609. #u34866 .text {
  1610. position:absolute;
  1611. align-self:flex-start;
  1612. padding:2px 2px 2px 0px;
  1613. box-sizing:border-box;
  1614. width:100%;
  1615. }
  1616. #u34866_div.disabled {
  1617. border-width:0px;
  1618. position:absolute;
  1619. left:0px;
  1620. top:0px;
  1621. width:101px;
  1622. height:30px;
  1623. background:inherit;
  1624. background-color:rgba(240, 240, 240, 1);
  1625. border-radius:0px;
  1626. filter:drop-shadow(none);
  1627. transition:none;
  1628. color:#AAAAAA;
  1629. }
  1630. #u34866.disabled {
  1631. }
  1632. .u34866_input_option {
  1633. }
  1634. #u34867 {
  1635. border-width:0px;
  1636. position:absolute;
  1637. left:0px;
  1638. top:0px;
  1639. width:0px;
  1640. height:0px;
  1641. }
  1642. #u34868_div {
  1643. border-width:0px;
  1644. position:absolute;
  1645. left:0px;
  1646. top:0px;
  1647. width:400px;
  1648. height:40px;
  1649. background:inherit;
  1650. background-color:rgba(255, 255, 255, 1);
  1651. box-sizing:border-box;
  1652. border-width:1px;
  1653. border-style:solid;
  1654. border-color:rgba(215, 215, 215, 1);
  1655. border-radius:4px;
  1656. filter:drop-shadow(none);
  1657. transition:none;
  1658. font-size:14px;
  1659. }
  1660. #u34868 {
  1661. border-width:0px;
  1662. position:absolute;
  1663. left:265px;
  1664. top:276px;
  1665. width:400px;
  1666. height:40px;
  1667. display:flex;
  1668. transition:none;
  1669. transform-origin:50% 50%;
  1670. font-size:14px;
  1671. }
  1672. #u34868 .text {
  1673. position:absolute;
  1674. align-self:center;
  1675. padding:2px 2px 2px 2px;
  1676. box-sizing:border-box;
  1677. width:100%;
  1678. }
  1679. #u34868_text {
  1680. border-width:0px;
  1681. word-wrap:break-word;
  1682. text-transform:none;
  1683. visibility:hidden;
  1684. }
  1685. #u34869_input {
  1686. position:absolute;
  1687. left:0px;
  1688. top:0px;
  1689. width:381px;
  1690. height:31px;
  1691. padding:2px 2px 2px 2px;
  1692. font-family:'ArialMT', 'Arial', sans-serif;
  1693. font-weight:400;
  1694. font-style:normal;
  1695. font-size:14px;
  1696. letter-spacing:normal;
  1697. color:#AAAAAA;
  1698. vertical-align:none;
  1699. text-align:left;
  1700. text-transform:none;
  1701. background-color:transparent;
  1702. border-color:transparent;
  1703. }
  1704. #u34869_input.disabled {
  1705. position:absolute;
  1706. left:0px;
  1707. top:0px;
  1708. width:381px;
  1709. height:31px;
  1710. padding:2px 2px 2px 2px;
  1711. font-family:'ArialMT', 'Arial', sans-serif;
  1712. font-weight:400;
  1713. font-style:normal;
  1714. font-size:14px;
  1715. letter-spacing:normal;
  1716. color:#AAAAAA;
  1717. vertical-align:none;
  1718. text-align:left;
  1719. text-transform:none;
  1720. background-color:transparent;
  1721. border-color:transparent;
  1722. }
  1723. #u34869_div {
  1724. border-width:0px;
  1725. position:absolute;
  1726. left:0px;
  1727. top:0px;
  1728. width:381px;
  1729. height:31px;
  1730. background:inherit;
  1731. background-color:rgba(255, 255, 255, 1);
  1732. border-radius:0px;
  1733. filter:drop-shadow(none);
  1734. transition:none;
  1735. font-size:14px;
  1736. color:#AAAAAA;
  1737. }
  1738. #u34869 {
  1739. border-width:0px;
  1740. position:absolute;
  1741. left:276px;
  1742. top:279px;
  1743. width:381px;
  1744. height:31px;
  1745. display:flex;
  1746. transition:none;
  1747. transform-origin:50% 50%;
  1748. font-size:14px;
  1749. color:#AAAAAA;
  1750. }
  1751. #u34869 .text {
  1752. position:absolute;
  1753. align-self:flex-start;
  1754. padding:2px 2px 2px 2px;
  1755. box-sizing:border-box;
  1756. width:100%;
  1757. }
  1758. #u34869_div.disabled {
  1759. border-width:0px;
  1760. position:absolute;
  1761. left:0px;
  1762. top:0px;
  1763. width:381px;
  1764. height:31px;
  1765. background:inherit;
  1766. background-color:rgba(240, 240, 240, 1);
  1767. border-radius:0px;
  1768. filter:drop-shadow(none);
  1769. transition:none;
  1770. font-size:14px;
  1771. color:#AAAAAA;
  1772. }
  1773. #u34869.disabled {
  1774. }
  1775. .u34869_input_option {
  1776. font-size:14px;
  1777. }
  1778. #u34870_div {
  1779. border-width:0px;
  1780. position:absolute;
  1781. left:0px;
  1782. top:0px;
  1783. width:88px;
  1784. height:30px;
  1785. background:inherit;
  1786. background-color:rgba(255, 255, 255, 0);
  1787. border-top:0px;
  1788. border-right:0px;
  1789. border-bottom:0px;
  1790. border-radius:0px;
  1791. border-top-left-radius:0px;
  1792. border-bottom-left-radius:0px;
  1793. filter:drop-shadow(none);
  1794. transition:none;
  1795. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1796. font-weight:400;
  1797. font-style:normal;
  1798. font-size:14px;
  1799. }
  1800. #u34870 {
  1801. border-width:0px;
  1802. position:absolute;
  1803. left:162px;
  1804. top:231px;
  1805. width:88px;
  1806. height:30px;
  1807. display:flex;
  1808. transition:none;
  1809. transform-origin:50% 50%;
  1810. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1811. font-weight:400;
  1812. font-style:normal;
  1813. font-size:14px;
  1814. }
  1815. #u34870 .text {
  1816. position:absolute;
  1817. align-self:center;
  1818. padding:5px 10px 5px 0px;
  1819. box-sizing:border-box;
  1820. width:100%;
  1821. }
  1822. #u34870_text {
  1823. border-width:0px;
  1824. white-space:nowrap;
  1825. text-transform:none;
  1826. }
  1827. #u34871 label {
  1828. left:0px;
  1829. width:100%;
  1830. height:100%;
  1831. }
  1832. #u34871_img {
  1833. border-width:0px;
  1834. position:absolute;
  1835. left:0px;
  1836. top:3px;
  1837. width:12px;
  1838. height:12px;
  1839. }
  1840. #u34871 {
  1841. border-width:0px;
  1842. position:absolute;
  1843. left:265px;
  1844. top:239px;
  1845. width:100px;
  1846. height:18px;
  1847. display:flex;
  1848. transition:none;
  1849. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1850. font-weight:400;
  1851. font-style:normal;
  1852. }
  1853. #u34871 .text {
  1854. position:absolute;
  1855. align-self:center;
  1856. padding:0px 2px 0px 2px;
  1857. box-sizing:border-box;
  1858. }
  1859. #u34871_img.selected {
  1860. }
  1861. #u34871.selected {
  1862. }
  1863. #u34871_img.disabled {
  1864. }
  1865. #u34871.disabled {
  1866. }
  1867. #u34871_img.selected.error {
  1868. }
  1869. #u34871.selected.error {
  1870. }
  1871. #u34871_img.selected.hint {
  1872. }
  1873. #u34871.selected.hint {
  1874. }
  1875. #u34871_img.selected.error.hint {
  1876. }
  1877. #u34871.selected.error.hint {
  1878. }
  1879. #u34871_img.mouseOver.selected {
  1880. }
  1881. #u34871.mouseOver.selected {
  1882. }
  1883. #u34871_img.mouseOver.selected.error {
  1884. }
  1885. #u34871.mouseOver.selected.error {
  1886. }
  1887. #u34871_img.mouseOver.selected.hint {
  1888. }
  1889. #u34871.mouseOver.selected.hint {
  1890. }
  1891. #u34871_img.mouseOver.selected.error.hint {
  1892. }
  1893. #u34871.mouseOver.selected.error.hint {
  1894. }
  1895. #u34871_img.mouseDown.selected {
  1896. }
  1897. #u34871.mouseDown.selected {
  1898. }
  1899. #u34871_img.mouseDown.selected.error {
  1900. }
  1901. #u34871.mouseDown.selected.error {
  1902. }
  1903. #u34871_img.mouseDown.selected.hint {
  1904. }
  1905. #u34871.mouseDown.selected.hint {
  1906. }
  1907. #u34871_img.mouseDown.selected.error.hint {
  1908. }
  1909. #u34871.mouseDown.selected.error.hint {
  1910. }
  1911. #u34871_img.mouseOver.mouseDown.selected {
  1912. }
  1913. #u34871.mouseOver.mouseDown.selected {
  1914. }
  1915. #u34871_img.mouseOver.mouseDown.selected.error {
  1916. }
  1917. #u34871.mouseOver.mouseDown.selected.error {
  1918. }
  1919. #u34871_img.mouseOver.mouseDown.selected.hint {
  1920. }
  1921. #u34871.mouseOver.mouseDown.selected.hint {
  1922. }
  1923. #u34871_img.mouseOver.mouseDown.selected.error.hint {
  1924. }
  1925. #u34871.mouseOver.mouseDown.selected.error.hint {
  1926. }
  1927. #u34871_img.focused.selected {
  1928. }
  1929. #u34871.focused.selected {
  1930. }
  1931. #u34871_img.focused.selected.error {
  1932. }
  1933. #u34871.focused.selected.error {
  1934. }
  1935. #u34871_img.focused.selected.hint {
  1936. }
  1937. #u34871.focused.selected.hint {
  1938. }
  1939. #u34871_img.focused.selected.error.hint {
  1940. }
  1941. #u34871.focused.selected.error.hint {
  1942. }
  1943. #u34871_img.selected.disabled {
  1944. }
  1945. #u34871.selected.disabled {
  1946. }
  1947. #u34871_img.selected.hint.disabled {
  1948. }
  1949. #u34871.selected.hint.disabled {
  1950. }
  1951. #u34871_img.selected.error.disabled {
  1952. }
  1953. #u34871.selected.error.disabled {
  1954. }
  1955. #u34871_img.selected.error.hint.disabled {
  1956. }
  1957. #u34871.selected.error.hint.disabled {
  1958. }
  1959. #u34871_text {
  1960. border-width:0px;
  1961. position:absolute;
  1962. left:12px;
  1963. top:0px;
  1964. width:88px;
  1965. word-wrap:break-word;
  1966. text-transform:none;
  1967. }
  1968. #u34871_input {
  1969. border-width:0px;
  1970. position:absolute;
  1971. left:0px;
  1972. top:0px;
  1973. width:0px;
  1974. height:0px;
  1975. opacity:0;
  1976. }
  1977. #u34872 label {
  1978. left:0px;
  1979. width:100%;
  1980. height:100%;
  1981. }
  1982. #u34872_img {
  1983. border-width:0px;
  1984. position:absolute;
  1985. left:0px;
  1986. top:3px;
  1987. width:12px;
  1988. height:12px;
  1989. }
  1990. #u34872 {
  1991. border-width:0px;
  1992. position:absolute;
  1993. left:365px;
  1994. top:239px;
  1995. width:100px;
  1996. height:18px;
  1997. display:flex;
  1998. transition:none;
  1999. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2000. font-weight:400;
  2001. font-style:normal;
  2002. }
  2003. #u34872 .text {
  2004. position:absolute;
  2005. align-self:center;
  2006. padding:0px 2px 0px 2px;
  2007. box-sizing:border-box;
  2008. }
  2009. #u34872_img.selected {
  2010. }
  2011. #u34872.selected {
  2012. }
  2013. #u34872_img.disabled {
  2014. }
  2015. #u34872.disabled {
  2016. }
  2017. #u34872_img.selected.error {
  2018. }
  2019. #u34872.selected.error {
  2020. }
  2021. #u34872_img.selected.hint {
  2022. }
  2023. #u34872.selected.hint {
  2024. }
  2025. #u34872_img.selected.error.hint {
  2026. }
  2027. #u34872.selected.error.hint {
  2028. }
  2029. #u34872_img.mouseOver.selected {
  2030. }
  2031. #u34872.mouseOver.selected {
  2032. }
  2033. #u34872_img.mouseOver.selected.error {
  2034. }
  2035. #u34872.mouseOver.selected.error {
  2036. }
  2037. #u34872_img.mouseOver.selected.hint {
  2038. }
  2039. #u34872.mouseOver.selected.hint {
  2040. }
  2041. #u34872_img.mouseOver.selected.error.hint {
  2042. }
  2043. #u34872.mouseOver.selected.error.hint {
  2044. }
  2045. #u34872_img.mouseDown.selected {
  2046. }
  2047. #u34872.mouseDown.selected {
  2048. }
  2049. #u34872_img.mouseDown.selected.error {
  2050. }
  2051. #u34872.mouseDown.selected.error {
  2052. }
  2053. #u34872_img.mouseDown.selected.hint {
  2054. }
  2055. #u34872.mouseDown.selected.hint {
  2056. }
  2057. #u34872_img.mouseDown.selected.error.hint {
  2058. }
  2059. #u34872.mouseDown.selected.error.hint {
  2060. }
  2061. #u34872_img.mouseOver.mouseDown.selected {
  2062. }
  2063. #u34872.mouseOver.mouseDown.selected {
  2064. }
  2065. #u34872_img.mouseOver.mouseDown.selected.error {
  2066. }
  2067. #u34872.mouseOver.mouseDown.selected.error {
  2068. }
  2069. #u34872_img.mouseOver.mouseDown.selected.hint {
  2070. }
  2071. #u34872.mouseOver.mouseDown.selected.hint {
  2072. }
  2073. #u34872_img.mouseOver.mouseDown.selected.error.hint {
  2074. }
  2075. #u34872.mouseOver.mouseDown.selected.error.hint {
  2076. }
  2077. #u34872_img.focused.selected {
  2078. }
  2079. #u34872.focused.selected {
  2080. }
  2081. #u34872_img.focused.selected.error {
  2082. }
  2083. #u34872.focused.selected.error {
  2084. }
  2085. #u34872_img.focused.selected.hint {
  2086. }
  2087. #u34872.focused.selected.hint {
  2088. }
  2089. #u34872_img.focused.selected.error.hint {
  2090. }
  2091. #u34872.focused.selected.error.hint {
  2092. }
  2093. #u34872_img.selected.disabled {
  2094. }
  2095. #u34872.selected.disabled {
  2096. }
  2097. #u34872_img.selected.hint.disabled {
  2098. }
  2099. #u34872.selected.hint.disabled {
  2100. }
  2101. #u34872_img.selected.error.disabled {
  2102. }
  2103. #u34872.selected.error.disabled {
  2104. }
  2105. #u34872_img.selected.error.hint.disabled {
  2106. }
  2107. #u34872.selected.error.hint.disabled {
  2108. }
  2109. #u34872_text {
  2110. border-width:0px;
  2111. position:absolute;
  2112. left:12px;
  2113. top:0px;
  2114. width:88px;
  2115. word-wrap:break-word;
  2116. text-transform:none;
  2117. }
  2118. #u34872_input {
  2119. border-width:0px;
  2120. position:absolute;
  2121. left:0px;
  2122. top:0px;
  2123. width:0px;
  2124. height:0px;
  2125. opacity:0;
  2126. }
  2127. #u34873 {
  2128. border-width:0px;
  2129. position:absolute;
  2130. left:0px;
  2131. top:0px;
  2132. width:0px;
  2133. height:0px;
  2134. }
  2135. #u34874_div {
  2136. border-width:0px;
  2137. position:absolute;
  2138. left:0px;
  2139. top:0px;
  2140. width:680px;
  2141. height:1198px;
  2142. background:inherit;
  2143. background-color:rgba(255, 255, 255, 1);
  2144. box-sizing:border-box;
  2145. border-width:1px;
  2146. border-style:solid;
  2147. border-color:rgba(215, 215, 215, 1);
  2148. border-radius:0px;
  2149. filter:drop-shadow(none);
  2150. transition:none;
  2151. }
  2152. #u34874 {
  2153. border-width:0px;
  2154. position:absolute;
  2155. left:813px;
  2156. top:57px;
  2157. width:680px;
  2158. height:1198px;
  2159. display:flex;
  2160. transition:none;
  2161. transform-origin:50% 50%;
  2162. }
  2163. #u34874 .text {
  2164. position:absolute;
  2165. align-self:center;
  2166. padding:2px 2px 2px 2px;
  2167. box-sizing:border-box;
  2168. width:100%;
  2169. }
  2170. #u34874_text {
  2171. border-width:0px;
  2172. word-wrap:break-word;
  2173. text-transform:none;
  2174. visibility:hidden;
  2175. }
  2176. #u34875_div {
  2177. border-width:0px;
  2178. position:absolute;
  2179. left:0px;
  2180. top:0px;
  2181. width:73px;
  2182. height:30px;
  2183. background:inherit;
  2184. background-color:rgba(255, 255, 255, 0);
  2185. border-radius:0px;
  2186. filter:drop-shadow(none);
  2187. transition:none;
  2188. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2189. font-weight:400;
  2190. font-style:normal;
  2191. font-size:18px;
  2192. color:#000000;
  2193. line-height:30px;
  2194. }
  2195. #u34875 {
  2196. border-width:0px;
  2197. position:absolute;
  2198. left:833px;
  2199. top:77px;
  2200. width:73px;
  2201. height:30px;
  2202. display:flex;
  2203. transition:none;
  2204. transform-origin:50% 50%;
  2205. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2206. font-weight:400;
  2207. font-style:normal;
  2208. font-size:18px;
  2209. color:#000000;
  2210. line-height:30px;
  2211. }
  2212. #u34875 .text {
  2213. position:absolute;
  2214. align-self:flex-start;
  2215. padding:0px 0px 0px 0px;
  2216. box-sizing:border-box;
  2217. width:100%;
  2218. }
  2219. #u34875_text {
  2220. border-width:0px;
  2221. white-space:nowrap;
  2222. text-transform:none;
  2223. }
  2224. #u34876_div {
  2225. border-width:0px;
  2226. position:absolute;
  2227. left:0px;
  2228. top:0px;
  2229. width:81px;
  2230. height:30px;
  2231. background:inherit;
  2232. background-color:rgba(255, 255, 255, 0);
  2233. border-top:0px;
  2234. border-right:0px;
  2235. border-bottom:0px;
  2236. border-radius:0px;
  2237. border-top-left-radius:0px;
  2238. border-bottom-left-radius:0px;
  2239. filter:drop-shadow(none);
  2240. transition:none;
  2241. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2242. font-weight:400;
  2243. font-style:normal;
  2244. font-size:14px;
  2245. }
  2246. #u34876 {
  2247. border-width:0px;
  2248. position:absolute;
  2249. left:862px;
  2250. top:331px;
  2251. width:81px;
  2252. height:30px;
  2253. display:flex;
  2254. transition:none;
  2255. transform-origin:50% 50%;
  2256. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2257. font-weight:400;
  2258. font-style:normal;
  2259. font-size:14px;
  2260. }
  2261. #u34876 .text {
  2262. position:absolute;
  2263. align-self:center;
  2264. padding:5px 10px 5px 0px;
  2265. box-sizing:border-box;
  2266. width:100%;
  2267. }
  2268. #u34876_text {
  2269. border-width:0px;
  2270. white-space:nowrap;
  2271. text-transform:none;
  2272. }
  2273. #u34877_div {
  2274. border-width:0px;
  2275. position:absolute;
  2276. left:0px;
  2277. top:0px;
  2278. width:81px;
  2279. height:30px;
  2280. background:inherit;
  2281. background-color:rgba(255, 255, 255, 0);
  2282. border-top:0px;
  2283. border-right:0px;
  2284. border-bottom:0px;
  2285. border-radius:0px;
  2286. border-top-left-radius:0px;
  2287. border-bottom-left-radius:0px;
  2288. filter:drop-shadow(none);
  2289. transition:none;
  2290. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2291. font-weight:400;
  2292. font-style:normal;
  2293. font-size:14px;
  2294. }
  2295. #u34877 {
  2296. border-width:0px;
  2297. position:absolute;
  2298. left:862px;
  2299. top:281px;
  2300. width:81px;
  2301. height:30px;
  2302. display:flex;
  2303. transition:none;
  2304. transform-origin:50% 50%;
  2305. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2306. font-weight:400;
  2307. font-style:normal;
  2308. font-size:14px;
  2309. }
  2310. #u34877 .text {
  2311. position:absolute;
  2312. align-self:center;
  2313. padding:5px 10px 5px 0px;
  2314. box-sizing:border-box;
  2315. width:100%;
  2316. }
  2317. #u34877_text {
  2318. border-width:0px;
  2319. white-space:nowrap;
  2320. text-transform:none;
  2321. }
  2322. #u34878 {
  2323. border-width:0px;
  2324. position:absolute;
  2325. left:0px;
  2326. top:0px;
  2327. width:0px;
  2328. height:0px;
  2329. }
  2330. #u34879_div {
  2331. border-width:0px;
  2332. position:absolute;
  2333. left:0px;
  2334. top:0px;
  2335. width:40px;
  2336. height:40px;
  2337. background:inherit;
  2338. background-color:rgba(255, 255, 255, 0);
  2339. border-top:0px;
  2340. border-right:0px;
  2341. border-bottom:0px;
  2342. border-radius:0px;
  2343. border-top-left-radius:0px;
  2344. border-bottom-left-radius:0px;
  2345. filter:drop-shadow(none);
  2346. transition:none;
  2347. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  2348. font-weight:500;
  2349. font-style:normal;
  2350. font-size:18px;
  2351. text-align:center;
  2352. }
  2353. #u34879 {
  2354. border-width:0px;
  2355. position:absolute;
  2356. left:1453px;
  2357. top:57px;
  2358. width:40px;
  2359. height:40px;
  2360. display:flex;
  2361. transition:none;
  2362. transform-origin:50% 50%;
  2363. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  2364. font-weight:500;
  2365. font-style:normal;
  2366. font-size:18px;
  2367. text-align:center;
  2368. }
  2369. #u34879 .text {
  2370. position:absolute;
  2371. align-self:center;
  2372. padding:5px 10px 5px 0px;
  2373. box-sizing:border-box;
  2374. width:100%;
  2375. }
  2376. #u34879_text {
  2377. border-width:0px;
  2378. word-wrap:break-word;
  2379. text-transform:none;
  2380. }
  2381. #u34880 {
  2382. border-width:0px;
  2383. position:absolute;
  2384. left:1440px;
  2385. top:69px;
  2386. width:13px;
  2387. height:17px;
  2388. display:flex;
  2389. transition:none;
  2390. }
  2391. #u34880 .text {
  2392. position:absolute;
  2393. align-self:center;
  2394. padding:2px 2px 2px 2px;
  2395. box-sizing:border-box;
  2396. width:100%;
  2397. }
  2398. #u34880_img {
  2399. border-width:0px;
  2400. position:absolute;
  2401. left:0px;
  2402. top:0px;
  2403. width:13px;
  2404. height:17px;
  2405. }
  2406. #u34880_text {
  2407. border-width:0px;
  2408. word-wrap:break-word;
  2409. text-transform:none;
  2410. visibility:hidden;
  2411. }
  2412. #u34881 {
  2413. border-width:0px;
  2414. position:absolute;
  2415. left:0px;
  2416. top:0px;
  2417. width:0px;
  2418. height:0px;
  2419. }
  2420. #u34882_div {
  2421. border-width:0px;
  2422. position:absolute;
  2423. left:0px;
  2424. top:0px;
  2425. width:680px;
  2426. height:60px;
  2427. background:inherit;
  2428. background-color:rgba(255, 255, 255, 1);
  2429. box-sizing:border-box;
  2430. border-width:1px;
  2431. border-style:solid;
  2432. border-color:rgba(215, 215, 215, 1);
  2433. border-radius:0px;
  2434. filter:drop-shadow(none);
  2435. transition:none;
  2436. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2437. font-weight:400;
  2438. font-style:normal;
  2439. font-size:14px;
  2440. color:#AAAAAA;
  2441. text-align:center;
  2442. line-height:30px;
  2443. }
  2444. #u34882 {
  2445. border-width:0px;
  2446. position:absolute;
  2447. left:813px;
  2448. top:1195px;
  2449. width:680px;
  2450. height:60px;
  2451. display:flex;
  2452. transition:none;
  2453. transform-origin:50% 50%;
  2454. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2455. font-weight:400;
  2456. font-style:normal;
  2457. font-size:14px;
  2458. color:#AAAAAA;
  2459. text-align:center;
  2460. line-height:30px;
  2461. }
  2462. #u34882 .text {
  2463. position:absolute;
  2464. align-self:center;
  2465. padding:5px 10px 5px 10px;
  2466. box-sizing:border-box;
  2467. width:100%;
  2468. }
  2469. #u34882_text {
  2470. border-width:0px;
  2471. word-wrap:break-word;
  2472. text-transform:none;
  2473. visibility:hidden;
  2474. }
  2475. #u34883_div {
  2476. border-width:0px;
  2477. position:absolute;
  2478. left:0px;
  2479. top:0px;
  2480. width:80px;
  2481. height:30px;
  2482. background:inherit;
  2483. background-color:rgba(24, 144, 255, 1);
  2484. border-radius:4px;
  2485. filter:drop-shadow(none);
  2486. transition:none;
  2487. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2488. font-weight:400;
  2489. font-style:normal;
  2490. font-size:14px;
  2491. color:#FFFFFF;
  2492. }
  2493. #u34883 {
  2494. border-width:0px;
  2495. position:absolute;
  2496. left:1368px;
  2497. top:1210px;
  2498. width:80px;
  2499. height:30px;
  2500. display:flex;
  2501. transition:none;
  2502. transform-origin:50% 50%;
  2503. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2504. font-weight:400;
  2505. font-style:normal;
  2506. font-size:14px;
  2507. color:#FFFFFF;
  2508. }
  2509. #u34883 .text {
  2510. position:absolute;
  2511. align-self:center;
  2512. padding:2px 2px 2px 2px;
  2513. box-sizing:border-box;
  2514. width:100%;
  2515. }
  2516. #u34883_text {
  2517. border-width:0px;
  2518. word-wrap:break-word;
  2519. text-transform:none;
  2520. }
  2521. #u34884_div {
  2522. border-width:0px;
  2523. position:absolute;
  2524. left:0px;
  2525. top:0px;
  2526. width:80px;
  2527. height:30px;
  2528. background:inherit;
  2529. background-color:rgba(255, 255, 255, 1);
  2530. box-sizing:border-box;
  2531. border-width:1px;
  2532. border-style:solid;
  2533. border-color:rgba(170, 170, 170, 1);
  2534. border-radius:4px;
  2535. filter:drop-shadow(none);
  2536. transition:none;
  2537. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2538. font-weight:400;
  2539. font-style:normal;
  2540. font-size:14px;
  2541. }
  2542. #u34884 {
  2543. border-width:0px;
  2544. position:absolute;
  2545. left:1269px;
  2546. top:1210px;
  2547. width:80px;
  2548. height:30px;
  2549. display:flex;
  2550. transition:none;
  2551. transform-origin:50% 50%;
  2552. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2553. font-weight:400;
  2554. font-style:normal;
  2555. font-size:14px;
  2556. }
  2557. #u34884 .text {
  2558. position:absolute;
  2559. align-self:center;
  2560. padding:2px 2px 2px 2px;
  2561. box-sizing:border-box;
  2562. width:100%;
  2563. }
  2564. #u34884_text {
  2565. border-width:0px;
  2566. word-wrap:break-word;
  2567. text-transform:none;
  2568. }
  2569. #u34885_div {
  2570. border-width:0px;
  2571. position:absolute;
  2572. left:0px;
  2573. top:0px;
  2574. width:81px;
  2575. height:30px;
  2576. background:inherit;
  2577. background-color:rgba(255, 255, 255, 0);
  2578. border-top:0px;
  2579. border-right:0px;
  2580. border-bottom:0px;
  2581. border-radius:0px;
  2582. border-top-left-radius:0px;
  2583. border-bottom-left-radius:0px;
  2584. filter:drop-shadow(none);
  2585. transition:none;
  2586. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2587. font-weight:400;
  2588. font-style:normal;
  2589. font-size:14px;
  2590. }
  2591. #u34885 {
  2592. border-width:0px;
  2593. position:absolute;
  2594. left:862px;
  2595. top:381px;
  2596. width:81px;
  2597. height:30px;
  2598. display:flex;
  2599. transition:none;
  2600. transform-origin:50% 50%;
  2601. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2602. font-weight:400;
  2603. font-style:normal;
  2604. font-size:14px;
  2605. }
  2606. #u34885 .text {
  2607. position:absolute;
  2608. align-self:center;
  2609. padding:5px 10px 5px 0px;
  2610. box-sizing:border-box;
  2611. width:100%;
  2612. }
  2613. #u34885_text {
  2614. border-width:0px;
  2615. white-space:nowrap;
  2616. text-transform:none;
  2617. }
  2618. #u34886 {
  2619. border-width:0px;
  2620. position:absolute;
  2621. left:0px;
  2622. top:0px;
  2623. width:0px;
  2624. height:0px;
  2625. }
  2626. #u34887_div {
  2627. border-width:0px;
  2628. position:absolute;
  2629. left:0px;
  2630. top:0px;
  2631. width:400px;
  2632. height:80px;
  2633. background:inherit;
  2634. background-color:rgba(255, 255, 255, 1);
  2635. box-sizing:border-box;
  2636. border-width:1px;
  2637. border-style:solid;
  2638. border-color:rgba(170, 170, 170, 1);
  2639. border-radius:4px;
  2640. filter:drop-shadow(none);
  2641. transition:none;
  2642. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2643. font-weight:400;
  2644. font-style:normal;
  2645. text-align:left;
  2646. }
  2647. #u34887 {
  2648. border-width:0px;
  2649. position:absolute;
  2650. left:965px;
  2651. top:376px;
  2652. width:400px;
  2653. height:80px;
  2654. display:flex;
  2655. transition:none;
  2656. transform-origin:50% 50%;
  2657. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2658. font-weight:400;
  2659. font-style:normal;
  2660. text-align:left;
  2661. }
  2662. #u34887 .text {
  2663. position:absolute;
  2664. align-self:center;
  2665. padding:2px 2px 2px 10px;
  2666. box-sizing:border-box;
  2667. width:100%;
  2668. }
  2669. #u34887_text {
  2670. border-width:0px;
  2671. word-wrap:break-word;
  2672. text-transform:none;
  2673. visibility:hidden;
  2674. }
  2675. #u34888_input {
  2676. position:absolute;
  2677. left:0px;
  2678. top:0px;
  2679. width:188px;
  2680. height:31px;
  2681. padding:2px 2px 2px 2px;
  2682. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2683. font-weight:400;
  2684. font-style:normal;
  2685. font-size:13px;
  2686. letter-spacing:normal;
  2687. color:#AAAAAA;
  2688. vertical-align:none;
  2689. text-align:left;
  2690. text-transform:none;
  2691. background-color:transparent;
  2692. border-color:transparent;
  2693. }
  2694. #u34888_input.hint {
  2695. position:absolute;
  2696. left:0px;
  2697. top:0px;
  2698. width:188px;
  2699. height:31px;
  2700. padding:2px 2px 2px 2px;
  2701. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2702. font-weight:400;
  2703. font-style:normal;
  2704. font-size:13px;
  2705. letter-spacing:normal;
  2706. color:#999999;
  2707. vertical-align:none;
  2708. text-align:left;
  2709. text-transform:none;
  2710. background-color:transparent;
  2711. border-color:transparent;
  2712. }
  2713. #u34888_input.disabled {
  2714. position:absolute;
  2715. left:0px;
  2716. top:0px;
  2717. width:188px;
  2718. height:31px;
  2719. padding:2px 2px 2px 2px;
  2720. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2721. font-weight:400;
  2722. font-style:normal;
  2723. font-size:13px;
  2724. letter-spacing:normal;
  2725. color:#AAAAAA;
  2726. vertical-align:none;
  2727. text-align:left;
  2728. text-transform:none;
  2729. background-color:transparent;
  2730. border-color:transparent;
  2731. }
  2732. #u34888_input.hint.disabled {
  2733. position:absolute;
  2734. left:0px;
  2735. top:0px;
  2736. width:188px;
  2737. height:31px;
  2738. padding:2px 2px 2px 2px;
  2739. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2740. font-weight:400;
  2741. font-style:normal;
  2742. font-size:13px;
  2743. letter-spacing:normal;
  2744. color:#999999;
  2745. vertical-align:none;
  2746. text-align:left;
  2747. text-transform:none;
  2748. background-color:transparent;
  2749. border-color:transparent;
  2750. }
  2751. #u34888_div {
  2752. border-width:0px;
  2753. position:absolute;
  2754. left:0px;
  2755. top:0px;
  2756. width:188px;
  2757. height:31px;
  2758. background:inherit;
  2759. background-color:rgba(255, 255, 255, 0);
  2760. border-radius:0px;
  2761. filter:drop-shadow(none);
  2762. transition:none;
  2763. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2764. font-weight:400;
  2765. font-style:normal;
  2766. color:#AAAAAA;
  2767. }
  2768. #u34888 {
  2769. border-width:0px;
  2770. position:absolute;
  2771. left:975px;
  2772. top:381px;
  2773. width:188px;
  2774. height:31px;
  2775. display:flex;
  2776. transition:none;
  2777. transform-origin:50% 50%;
  2778. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2779. font-weight:400;
  2780. font-style:normal;
  2781. color:#AAAAAA;
  2782. }
  2783. #u34888 .text {
  2784. position:absolute;
  2785. align-self:center;
  2786. padding:2px 2px 2px 2px;
  2787. box-sizing:border-box;
  2788. width:100%;
  2789. }
  2790. #u34888_div.hint {
  2791. border-width:0px;
  2792. position:absolute;
  2793. left:0px;
  2794. top:0px;
  2795. width:188px;
  2796. height:31px;
  2797. background:inherit;
  2798. background-color:rgba(255, 255, 255, 0);
  2799. border-radius:0px;
  2800. filter:drop-shadow(none);
  2801. transition:none;
  2802. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2803. font-weight:400;
  2804. font-style:normal;
  2805. color:#AAAAAA;
  2806. }
  2807. #u34888.hint {
  2808. }
  2809. #u34888_div.disabled {
  2810. border-width:0px;
  2811. position:absolute;
  2812. left:0px;
  2813. top:0px;
  2814. width:188px;
  2815. height:31px;
  2816. background:inherit;
  2817. background-color:rgba(240, 240, 240, 1);
  2818. border-radius:0px;
  2819. filter:drop-shadow(none);
  2820. transition:none;
  2821. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2822. font-weight:400;
  2823. font-style:normal;
  2824. color:#AAAAAA;
  2825. }
  2826. #u34888.disabled {
  2827. }
  2828. #u34888_div.hint.disabled {
  2829. border-width:0px;
  2830. position:absolute;
  2831. left:0px;
  2832. top:0px;
  2833. width:188px;
  2834. height:31px;
  2835. background:inherit;
  2836. background-color:rgba(240, 240, 240, 1);
  2837. border-radius:0px;
  2838. filter:drop-shadow(none);
  2839. transition:none;
  2840. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2841. font-weight:400;
  2842. font-style:normal;
  2843. color:#AAAAAA;
  2844. }
  2845. #u34888.hint.disabled {
  2846. }
  2847. #u34889_div {
  2848. border-width:0px;
  2849. position:absolute;
  2850. left:0px;
  2851. top:0px;
  2852. width:39px;
  2853. height:24px;
  2854. background:inherit;
  2855. background-color:rgba(255, 255, 255, 0);
  2856. border-top:0px;
  2857. border-right:0px;
  2858. border-bottom:0px;
  2859. border-radius:0px;
  2860. border-top-left-radius:0px;
  2861. border-bottom-left-radius:0px;
  2862. filter:drop-shadow(none);
  2863. transition:none;
  2864. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2865. font-weight:400;
  2866. font-style:normal;
  2867. font-size:10px;
  2868. color:#AAAAAA;
  2869. text-align:right;
  2870. }
  2871. #u34889 {
  2872. border-width:0px;
  2873. position:absolute;
  2874. left:1323px;
  2875. top:431px;
  2876. width:39px;
  2877. height:24px;
  2878. display:flex;
  2879. transition:none;
  2880. transform-origin:50% 50%;
  2881. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2882. font-weight:400;
  2883. font-style:normal;
  2884. font-size:10px;
  2885. color:#AAAAAA;
  2886. text-align:right;
  2887. }
  2888. #u34889 .text {
  2889. position:absolute;
  2890. align-self:center;
  2891. padding:5px 0px 5px 0px;
  2892. box-sizing:border-box;
  2893. width:100%;
  2894. }
  2895. #u34889_text {
  2896. border-width:0px;
  2897. white-space:nowrap;
  2898. text-transform:none;
  2899. }
  2900. #u34890_div {
  2901. border-width:0px;
  2902. position:absolute;
  2903. left:0px;
  2904. top:0px;
  2905. width:88px;
  2906. height:30px;
  2907. background:inherit;
  2908. background-color:rgba(255, 255, 255, 0);
  2909. border-top:0px;
  2910. border-right:0px;
  2911. border-bottom:0px;
  2912. border-radius:0px;
  2913. border-top-left-radius:0px;
  2914. border-bottom-left-radius:0px;
  2915. filter:drop-shadow(none);
  2916. transition:none;
  2917. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2918. font-weight:400;
  2919. font-style:normal;
  2920. font-size:14px;
  2921. }
  2922. #u34890 {
  2923. border-width:0px;
  2924. position:absolute;
  2925. left:862px;
  2926. top:181px;
  2927. width:88px;
  2928. height:30px;
  2929. display:flex;
  2930. transition:none;
  2931. transform-origin:50% 50%;
  2932. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2933. font-weight:400;
  2934. font-style:normal;
  2935. font-size:14px;
  2936. }
  2937. #u34890 .text {
  2938. position:absolute;
  2939. align-self:center;
  2940. padding:5px 10px 5px 0px;
  2941. box-sizing:border-box;
  2942. width:100%;
  2943. }
  2944. #u34890_text {
  2945. border-width:0px;
  2946. white-space:nowrap;
  2947. text-transform:none;
  2948. }
  2949. #u34891 {
  2950. border-width:0px;
  2951. position:absolute;
  2952. left:0px;
  2953. top:0px;
  2954. width:0px;
  2955. height:0px;
  2956. }
  2957. #u34892_div {
  2958. border-width:0px;
  2959. position:absolute;
  2960. left:0px;
  2961. top:0px;
  2962. width:400px;
  2963. height:40px;
  2964. background:inherit;
  2965. background-color:rgba(255, 255, 255, 1);
  2966. box-sizing:border-box;
  2967. border-width:1px;
  2968. border-style:solid;
  2969. border-color:rgba(170, 170, 170, 1);
  2970. border-radius:4px;
  2971. filter:drop-shadow(none);
  2972. transition:none;
  2973. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2974. font-weight:400;
  2975. font-style:normal;
  2976. text-align:left;
  2977. }
  2978. #u34892 {
  2979. border-width:0px;
  2980. position:absolute;
  2981. left:965px;
  2982. top:176px;
  2983. width:400px;
  2984. height:40px;
  2985. display:flex;
  2986. transition:none;
  2987. transform-origin:50% 50%;
  2988. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2989. font-weight:400;
  2990. font-style:normal;
  2991. text-align:left;
  2992. }
  2993. #u34892 .text {
  2994. position:absolute;
  2995. align-self:center;
  2996. padding:2px 2px 2px 10px;
  2997. box-sizing:border-box;
  2998. width:100%;
  2999. }
  3000. #u34892_text {
  3001. border-width:0px;
  3002. word-wrap:break-word;
  3003. text-transform:none;
  3004. visibility:hidden;
  3005. }
  3006. #u34893_input {
  3007. position:absolute;
  3008. left:0px;
  3009. top:0px;
  3010. width:380px;
  3011. height:31px;
  3012. padding:2px 2px 2px 2px;
  3013. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3014. font-weight:400;
  3015. font-style:normal;
  3016. font-size:13px;
  3017. letter-spacing:normal;
  3018. color:#AAAAAA;
  3019. vertical-align:none;
  3020. text-align:left;
  3021. text-transform:none;
  3022. background-color:transparent;
  3023. border-color:transparent;
  3024. }
  3025. #u34893_input.hint {
  3026. position:absolute;
  3027. left:0px;
  3028. top:0px;
  3029. width:380px;
  3030. height:31px;
  3031. padding:2px 2px 2px 2px;
  3032. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3033. font-weight:400;
  3034. font-style:normal;
  3035. font-size:13px;
  3036. letter-spacing:normal;
  3037. color:#999999;
  3038. vertical-align:none;
  3039. text-align:left;
  3040. text-transform:none;
  3041. background-color:transparent;
  3042. border-color:transparent;
  3043. }
  3044. #u34893_input.disabled {
  3045. position:absolute;
  3046. left:0px;
  3047. top:0px;
  3048. width:380px;
  3049. height:31px;
  3050. padding:2px 2px 2px 2px;
  3051. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3052. font-weight:400;
  3053. font-style:normal;
  3054. font-size:13px;
  3055. letter-spacing:normal;
  3056. color:#AAAAAA;
  3057. vertical-align:none;
  3058. text-align:left;
  3059. text-transform:none;
  3060. background-color:transparent;
  3061. border-color:transparent;
  3062. }
  3063. #u34893_input.hint.disabled {
  3064. position:absolute;
  3065. left:0px;
  3066. top:0px;
  3067. width:380px;
  3068. height:31px;
  3069. padding:2px 2px 2px 2px;
  3070. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3071. font-weight:400;
  3072. font-style:normal;
  3073. font-size:13px;
  3074. letter-spacing:normal;
  3075. color:#999999;
  3076. vertical-align:none;
  3077. text-align:left;
  3078. text-transform:none;
  3079. background-color:transparent;
  3080. border-color:transparent;
  3081. }
  3082. #u34893_div {
  3083. border-width:0px;
  3084. position:absolute;
  3085. left:0px;
  3086. top:0px;
  3087. width:380px;
  3088. height:31px;
  3089. background:inherit;
  3090. background-color:rgba(255, 255, 255, 0);
  3091. border-radius:0px;
  3092. filter:drop-shadow(none);
  3093. transition:none;
  3094. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3095. font-weight:400;
  3096. font-style:normal;
  3097. color:#AAAAAA;
  3098. }
  3099. #u34893 {
  3100. border-width:0px;
  3101. position:absolute;
  3102. left:975px;
  3103. top:181px;
  3104. width:380px;
  3105. height:31px;
  3106. display:flex;
  3107. transition:none;
  3108. transform-origin:50% 50%;
  3109. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3110. font-weight:400;
  3111. font-style:normal;
  3112. color:#AAAAAA;
  3113. }
  3114. #u34893 .text {
  3115. position:absolute;
  3116. align-self:center;
  3117. padding:2px 2px 2px 2px;
  3118. box-sizing:border-box;
  3119. width:100%;
  3120. }
  3121. #u34893_div.hint {
  3122. border-width:0px;
  3123. position:absolute;
  3124. left:0px;
  3125. top:0px;
  3126. width:380px;
  3127. height:31px;
  3128. background:inherit;
  3129. background-color:rgba(255, 255, 255, 0);
  3130. border-radius:0px;
  3131. filter:drop-shadow(none);
  3132. transition:none;
  3133. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3134. font-weight:400;
  3135. font-style:normal;
  3136. color:#AAAAAA;
  3137. }
  3138. #u34893.hint {
  3139. }
  3140. #u34893_div.disabled {
  3141. border-width:0px;
  3142. position:absolute;
  3143. left:0px;
  3144. top:0px;
  3145. width:380px;
  3146. height:31px;
  3147. background:inherit;
  3148. background-color:rgba(240, 240, 240, 1);
  3149. border-radius:0px;
  3150. filter:drop-shadow(none);
  3151. transition:none;
  3152. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3153. font-weight:400;
  3154. font-style:normal;
  3155. color:#AAAAAA;
  3156. }
  3157. #u34893.disabled {
  3158. }
  3159. #u34893_div.hint.disabled {
  3160. border-width:0px;
  3161. position:absolute;
  3162. left:0px;
  3163. top:0px;
  3164. width:380px;
  3165. height:31px;
  3166. background:inherit;
  3167. background-color:rgba(240, 240, 240, 1);
  3168. border-radius:0px;
  3169. filter:drop-shadow(none);
  3170. transition:none;
  3171. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3172. font-weight:400;
  3173. font-style:normal;
  3174. color:#AAAAAA;
  3175. }
  3176. #u34893.hint.disabled {
  3177. }
  3178. #u34894_div {
  3179. border-width:0px;
  3180. position:absolute;
  3181. left:0px;
  3182. top:0px;
  3183. width:88px;
  3184. height:30px;
  3185. background:inherit;
  3186. background-color:rgba(255, 255, 255, 0);
  3187. border-top:0px;
  3188. border-right:0px;
  3189. border-bottom:0px;
  3190. border-radius:0px;
  3191. border-top-left-radius:0px;
  3192. border-bottom-left-radius:0px;
  3193. filter:drop-shadow(none);
  3194. transition:none;
  3195. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3196. font-weight:400;
  3197. font-style:normal;
  3198. font-size:14px;
  3199. }
  3200. #u34894 {
  3201. border-width:0px;
  3202. position:absolute;
  3203. left:862px;
  3204. top:131px;
  3205. width:88px;
  3206. height:30px;
  3207. display:flex;
  3208. transition:none;
  3209. transform-origin:50% 50%;
  3210. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3211. font-weight:400;
  3212. font-style:normal;
  3213. font-size:14px;
  3214. }
  3215. #u34894 .text {
  3216. position:absolute;
  3217. align-self:center;
  3218. padding:5px 10px 5px 0px;
  3219. box-sizing:border-box;
  3220. width:100%;
  3221. }
  3222. #u34894_text {
  3223. border-width:0px;
  3224. white-space:nowrap;
  3225. text-transform:none;
  3226. }
  3227. #u34895 {
  3228. border-width:0px;
  3229. position:absolute;
  3230. left:0px;
  3231. top:0px;
  3232. width:0px;
  3233. height:0px;
  3234. }
  3235. #u34896_div {
  3236. border-width:0px;
  3237. position:absolute;
  3238. left:0px;
  3239. top:0px;
  3240. width:400px;
  3241. height:40px;
  3242. background:inherit;
  3243. background-color:rgba(242, 242, 242, 1);
  3244. box-sizing:border-box;
  3245. border-width:1px;
  3246. border-style:solid;
  3247. border-color:rgba(215, 215, 215, 1);
  3248. border-radius:4px;
  3249. filter:drop-shadow(none);
  3250. transition:none;
  3251. font-size:14px;
  3252. }
  3253. #u34896 {
  3254. border-width:0px;
  3255. position:absolute;
  3256. left:965px;
  3257. top:126px;
  3258. width:400px;
  3259. height:40px;
  3260. display:flex;
  3261. transition:none;
  3262. transform-origin:50% 50%;
  3263. font-size:14px;
  3264. }
  3265. #u34896 .text {
  3266. position:absolute;
  3267. align-self:center;
  3268. padding:2px 2px 2px 2px;
  3269. box-sizing:border-box;
  3270. width:100%;
  3271. }
  3272. #u34896_text {
  3273. border-width:0px;
  3274. word-wrap:break-word;
  3275. text-transform:none;
  3276. visibility:hidden;
  3277. }
  3278. #u34897_input {
  3279. position:absolute;
  3280. left:0px;
  3281. top:0px;
  3282. width:381px;
  3283. height:31px;
  3284. padding:2px 2px 2px 2px;
  3285. font-family:'ArialMT', 'Arial', sans-serif;
  3286. font-weight:400;
  3287. font-style:normal;
  3288. font-size:14px;
  3289. letter-spacing:normal;
  3290. color:#AAAAAA;
  3291. vertical-align:none;
  3292. text-align:left;
  3293. text-transform:none;
  3294. background-color:transparent;
  3295. border-color:transparent;
  3296. }
  3297. #u34897_input.disabled {
  3298. position:absolute;
  3299. left:0px;
  3300. top:0px;
  3301. width:381px;
  3302. height:31px;
  3303. padding:2px 2px 2px 2px;
  3304. font-family:'ArialMT', 'Arial', sans-serif;
  3305. font-weight:400;
  3306. font-style:normal;
  3307. font-size:14px;
  3308. letter-spacing:normal;
  3309. color:#AAAAAA;
  3310. vertical-align:none;
  3311. text-align:left;
  3312. text-transform:none;
  3313. background-color:transparent;
  3314. border-color:transparent;
  3315. }
  3316. #u34897_div {
  3317. border-width:0px;
  3318. position:absolute;
  3319. left:0px;
  3320. top:0px;
  3321. width:381px;
  3322. height:31px;
  3323. background:inherit;
  3324. background-color:rgba(242, 242, 242, 1);
  3325. border-radius:0px;
  3326. filter:drop-shadow(none);
  3327. transition:none;
  3328. font-size:14px;
  3329. color:#AAAAAA;
  3330. }
  3331. #u34897 {
  3332. border-width:0px;
  3333. position:absolute;
  3334. left:976px;
  3335. top:129px;
  3336. width:381px;
  3337. height:31px;
  3338. display:flex;
  3339. transition:none;
  3340. transform-origin:50% 50%;
  3341. font-size:14px;
  3342. color:#AAAAAA;
  3343. }
  3344. #u34897 .text {
  3345. position:absolute;
  3346. align-self:flex-start;
  3347. padding:2px 2px 2px 2px;
  3348. box-sizing:border-box;
  3349. width:100%;
  3350. }
  3351. #u34897_div.disabled {
  3352. border-width:0px;
  3353. position:absolute;
  3354. left:0px;
  3355. top:0px;
  3356. width:381px;
  3357. height:31px;
  3358. background:inherit;
  3359. background-color:rgba(240, 240, 240, 1);
  3360. border-radius:0px;
  3361. filter:drop-shadow(none);
  3362. transition:none;
  3363. font-size:14px;
  3364. color:#AAAAAA;
  3365. }
  3366. #u34897.disabled {
  3367. }
  3368. .u34897_input_option {
  3369. font-size:14px;
  3370. }
  3371. #u34898 {
  3372. border-width:0px;
  3373. position:absolute;
  3374. left:0px;
  3375. top:0px;
  3376. width:0px;
  3377. height:0px;
  3378. }
  3379. #u34899_div {
  3380. border-width:0px;
  3381. position:absolute;
  3382. left:0px;
  3383. top:0px;
  3384. width:398px;
  3385. height:40px;
  3386. background:inherit;
  3387. background-color:rgba(255, 255, 255, 1);
  3388. box-sizing:border-box;
  3389. border-width:1px;
  3390. border-style:solid;
  3391. border-color:rgba(170, 170, 170, 1);
  3392. border-radius:4px;
  3393. filter:drop-shadow(none);
  3394. transition:none;
  3395. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3396. font-weight:400;
  3397. font-style:normal;
  3398. text-align:left;
  3399. }
  3400. #u34899 {
  3401. border-width:0px;
  3402. position:absolute;
  3403. left:965px;
  3404. top:326px;
  3405. width:398px;
  3406. height:40px;
  3407. display:flex;
  3408. transition:none;
  3409. transform-origin:50% 50%;
  3410. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3411. font-weight:400;
  3412. font-style:normal;
  3413. text-align:left;
  3414. }
  3415. #u34899 .text {
  3416. position:absolute;
  3417. align-self:center;
  3418. padding:2px 2px 2px 10px;
  3419. box-sizing:border-box;
  3420. width:100%;
  3421. }
  3422. #u34899_text {
  3423. border-width:0px;
  3424. word-wrap:break-word;
  3425. text-transform:none;
  3426. visibility:hidden;
  3427. }
  3428. #u34900_input {
  3429. position:absolute;
  3430. left:0px;
  3431. top:0px;
  3432. width:218px;
  3433. height:31px;
  3434. padding:2px 2px 2px 2px;
  3435. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3436. font-weight:400;
  3437. font-style:normal;
  3438. font-size:13px;
  3439. letter-spacing:normal;
  3440. color:#AAAAAA;
  3441. vertical-align:none;
  3442. text-align:left;
  3443. text-transform:none;
  3444. background-color:transparent;
  3445. border-color:transparent;
  3446. }
  3447. #u34900_input.hint {
  3448. position:absolute;
  3449. left:0px;
  3450. top:0px;
  3451. width:218px;
  3452. height:31px;
  3453. padding:2px 2px 2px 2px;
  3454. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3455. font-weight:400;
  3456. font-style:normal;
  3457. font-size:13px;
  3458. letter-spacing:normal;
  3459. color:#999999;
  3460. vertical-align:none;
  3461. text-align:left;
  3462. text-transform:none;
  3463. background-color:transparent;
  3464. border-color:transparent;
  3465. }
  3466. #u34900_input.disabled {
  3467. position:absolute;
  3468. left:0px;
  3469. top:0px;
  3470. width:218px;
  3471. height:31px;
  3472. padding:2px 2px 2px 2px;
  3473. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3474. font-weight:400;
  3475. font-style:normal;
  3476. font-size:13px;
  3477. letter-spacing:normal;
  3478. color:#AAAAAA;
  3479. vertical-align:none;
  3480. text-align:left;
  3481. text-transform:none;
  3482. background-color:transparent;
  3483. border-color:transparent;
  3484. }
  3485. #u34900_input.hint.disabled {
  3486. position:absolute;
  3487. left:0px;
  3488. top:0px;
  3489. width:218px;
  3490. height:31px;
  3491. padding:2px 2px 2px 2px;
  3492. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3493. font-weight:400;
  3494. font-style:normal;
  3495. font-size:13px;
  3496. letter-spacing:normal;
  3497. color:#999999;
  3498. vertical-align:none;
  3499. text-align:left;
  3500. text-transform:none;
  3501. background-color:transparent;
  3502. border-color:transparent;
  3503. }
  3504. #u34900_div {
  3505. border-width:0px;
  3506. position:absolute;
  3507. left:0px;
  3508. top:0px;
  3509. width:218px;
  3510. height:31px;
  3511. background:inherit;
  3512. background-color:rgba(255, 255, 255, 0);
  3513. border-radius:0px;
  3514. filter:drop-shadow(none);
  3515. transition:none;
  3516. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3517. font-weight:400;
  3518. font-style:normal;
  3519. color:#AAAAAA;
  3520. }
  3521. #u34900 {
  3522. border-width:0px;
  3523. position:absolute;
  3524. left:1086px;
  3525. top:331px;
  3526. width:218px;
  3527. height:31px;
  3528. display:flex;
  3529. transition:none;
  3530. transform-origin:50% 50%;
  3531. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3532. font-weight:400;
  3533. font-style:normal;
  3534. color:#AAAAAA;
  3535. }
  3536. #u34900 .text {
  3537. position:absolute;
  3538. align-self:center;
  3539. padding:2px 2px 2px 2px;
  3540. box-sizing:border-box;
  3541. width:100%;
  3542. }
  3543. #u34900_div.hint {
  3544. border-width:0px;
  3545. position:absolute;
  3546. left:0px;
  3547. top:0px;
  3548. width:218px;
  3549. height:31px;
  3550. background:inherit;
  3551. background-color:rgba(255, 255, 255, 0);
  3552. border-radius:0px;
  3553. filter:drop-shadow(none);
  3554. transition:none;
  3555. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3556. font-weight:400;
  3557. font-style:normal;
  3558. color:#AAAAAA;
  3559. }
  3560. #u34900.hint {
  3561. }
  3562. #u34900_div.disabled {
  3563. border-width:0px;
  3564. position:absolute;
  3565. left:0px;
  3566. top:0px;
  3567. width:218px;
  3568. height:31px;
  3569. background:inherit;
  3570. background-color:rgba(240, 240, 240, 1);
  3571. border-radius:0px;
  3572. filter:drop-shadow(none);
  3573. transition:none;
  3574. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3575. font-weight:400;
  3576. font-style:normal;
  3577. color:#AAAAAA;
  3578. }
  3579. #u34900.disabled {
  3580. }
  3581. #u34900_div.hint.disabled {
  3582. border-width:0px;
  3583. position:absolute;
  3584. left:0px;
  3585. top:0px;
  3586. width:218px;
  3587. height:31px;
  3588. background:inherit;
  3589. background-color:rgba(240, 240, 240, 1);
  3590. border-radius:0px;
  3591. filter:drop-shadow(none);
  3592. transition:none;
  3593. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3594. font-weight:400;
  3595. font-style:normal;
  3596. color:#AAAAAA;
  3597. }
  3598. #u34900.hint.disabled {
  3599. }
  3600. #u34901_div {
  3601. border-width:0px;
  3602. position:absolute;
  3603. left:0px;
  3604. top:0px;
  3605. width:49px;
  3606. height:40px;
  3607. background:inherit;
  3608. background-color:rgba(41, 143, 255, 1);
  3609. border-top:0px;
  3610. border-right:0px;
  3611. border-bottom:0px;
  3612. border-radius:0px;
  3613. border-top-left-radius:0px;
  3614. border-bottom-left-radius:0px;
  3615. filter:drop-shadow(none);
  3616. transition:none;
  3617. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3618. font-weight:400;
  3619. font-style:normal;
  3620. font-size:14px;
  3621. color:#FFFFFF;
  3622. text-align:center;
  3623. }
  3624. #u34901 {
  3625. border-width:0px;
  3626. position:absolute;
  3627. left:1314px;
  3628. top:326px;
  3629. width:49px;
  3630. height:40px;
  3631. display:flex;
  3632. transition:none;
  3633. transform-origin:50% 50%;
  3634. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3635. font-weight:400;
  3636. font-style:normal;
  3637. font-size:14px;
  3638. color:#FFFFFF;
  3639. text-align:center;
  3640. }
  3641. #u34901 .text {
  3642. position:absolute;
  3643. align-self:center;
  3644. padding:5px 0px 5px 0px;
  3645. box-sizing:border-box;
  3646. width:100%;
  3647. }
  3648. #u34901_text {
  3649. border-width:0px;
  3650. word-wrap:break-word;
  3651. text-transform:none;
  3652. }
  3653. #u34902_input {
  3654. position:absolute;
  3655. left:0px;
  3656. top:0px;
  3657. width:101px;
  3658. height:30px;
  3659. padding:2px 2px 2px 0px;
  3660. font-family:'ArialMT', 'Arial', sans-serif;
  3661. font-weight:400;
  3662. font-style:normal;
  3663. font-size:13px;
  3664. letter-spacing:normal;
  3665. color:#AAAAAA;
  3666. vertical-align:none;
  3667. text-align:left;
  3668. text-transform:none;
  3669. background-color:transparent;
  3670. border-color:transparent;
  3671. }
  3672. #u34902_input.disabled {
  3673. position:absolute;
  3674. left:0px;
  3675. top:0px;
  3676. width:101px;
  3677. height:30px;
  3678. padding:2px 2px 2px 0px;
  3679. font-family:'ArialMT', 'Arial', sans-serif;
  3680. font-weight:400;
  3681. font-style:normal;
  3682. font-size:13px;
  3683. letter-spacing:normal;
  3684. color:#AAAAAA;
  3685. vertical-align:none;
  3686. text-align:left;
  3687. text-transform:none;
  3688. background-color:transparent;
  3689. border-color:transparent;
  3690. }
  3691. #u34902_div {
  3692. border-width:0px;
  3693. position:absolute;
  3694. left:0px;
  3695. top:0px;
  3696. width:101px;
  3697. height:30px;
  3698. background:inherit;
  3699. background-color:rgba(255, 255, 255, 1);
  3700. border-radius:0px;
  3701. filter:drop-shadow(none);
  3702. transition:none;
  3703. color:#AAAAAA;
  3704. }
  3705. #u34902 {
  3706. border-width:0px;
  3707. position:absolute;
  3708. left:975px;
  3709. top:331px;
  3710. width:101px;
  3711. height:30px;
  3712. display:flex;
  3713. transition:none;
  3714. transform-origin:50% 50%;
  3715. color:#AAAAAA;
  3716. }
  3717. #u34902 .text {
  3718. position:absolute;
  3719. align-self:flex-start;
  3720. padding:2px 2px 2px 0px;
  3721. box-sizing:border-box;
  3722. width:100%;
  3723. }
  3724. #u34902_div.disabled {
  3725. border-width:0px;
  3726. position:absolute;
  3727. left:0px;
  3728. top:0px;
  3729. width:101px;
  3730. height:30px;
  3731. background:inherit;
  3732. background-color:rgba(240, 240, 240, 1);
  3733. border-radius:0px;
  3734. filter:drop-shadow(none);
  3735. transition:none;
  3736. color:#AAAAAA;
  3737. }
  3738. #u34902.disabled {
  3739. }
  3740. .u34902_input_option {
  3741. }
  3742. #u34903 {
  3743. border-width:0px;
  3744. position:absolute;
  3745. left:0px;
  3746. top:0px;
  3747. width:0px;
  3748. height:0px;
  3749. }
  3750. #u34904_div {
  3751. border-width:0px;
  3752. position:absolute;
  3753. left:0px;
  3754. top:0px;
  3755. width:400px;
  3756. height:40px;
  3757. background:inherit;
  3758. background-color:rgba(255, 255, 255, 1);
  3759. box-sizing:border-box;
  3760. border-width:1px;
  3761. border-style:solid;
  3762. border-color:rgba(215, 215, 215, 1);
  3763. border-radius:4px;
  3764. filter:drop-shadow(none);
  3765. transition:none;
  3766. font-size:14px;
  3767. }
  3768. #u34904 {
  3769. border-width:0px;
  3770. position:absolute;
  3771. left:965px;
  3772. top:276px;
  3773. width:400px;
  3774. height:40px;
  3775. display:flex;
  3776. transition:none;
  3777. transform-origin:50% 50%;
  3778. font-size:14px;
  3779. }
  3780. #u34904 .text {
  3781. position:absolute;
  3782. align-self:center;
  3783. padding:2px 2px 2px 2px;
  3784. box-sizing:border-box;
  3785. width:100%;
  3786. }
  3787. #u34904_text {
  3788. border-width:0px;
  3789. word-wrap:break-word;
  3790. text-transform:none;
  3791. visibility:hidden;
  3792. }
  3793. #u34905_input {
  3794. position:absolute;
  3795. left:0px;
  3796. top:0px;
  3797. width:381px;
  3798. height:31px;
  3799. padding:2px 2px 2px 2px;
  3800. font-family:'ArialMT', 'Arial', sans-serif;
  3801. font-weight:400;
  3802. font-style:normal;
  3803. font-size:14px;
  3804. letter-spacing:normal;
  3805. color:#AAAAAA;
  3806. vertical-align:none;
  3807. text-align:left;
  3808. text-transform:none;
  3809. background-color:transparent;
  3810. border-color:transparent;
  3811. }
  3812. #u34905_input.disabled {
  3813. position:absolute;
  3814. left:0px;
  3815. top:0px;
  3816. width:381px;
  3817. height:31px;
  3818. padding:2px 2px 2px 2px;
  3819. font-family:'ArialMT', 'Arial', sans-serif;
  3820. font-weight:400;
  3821. font-style:normal;
  3822. font-size:14px;
  3823. letter-spacing:normal;
  3824. color:#AAAAAA;
  3825. vertical-align:none;
  3826. text-align:left;
  3827. text-transform:none;
  3828. background-color:transparent;
  3829. border-color:transparent;
  3830. }
  3831. #u34905_div {
  3832. border-width:0px;
  3833. position:absolute;
  3834. left:0px;
  3835. top:0px;
  3836. width:381px;
  3837. height:31px;
  3838. background:inherit;
  3839. background-color:rgba(255, 255, 255, 1);
  3840. border-radius:0px;
  3841. filter:drop-shadow(none);
  3842. transition:none;
  3843. font-size:14px;
  3844. color:#AAAAAA;
  3845. }
  3846. #u34905 {
  3847. border-width:0px;
  3848. position:absolute;
  3849. left:976px;
  3850. top:279px;
  3851. width:381px;
  3852. height:31px;
  3853. display:flex;
  3854. transition:none;
  3855. transform-origin:50% 50%;
  3856. font-size:14px;
  3857. color:#AAAAAA;
  3858. }
  3859. #u34905 .text {
  3860. position:absolute;
  3861. align-self:flex-start;
  3862. padding:2px 2px 2px 2px;
  3863. box-sizing:border-box;
  3864. width:100%;
  3865. }
  3866. #u34905_div.disabled {
  3867. border-width:0px;
  3868. position:absolute;
  3869. left:0px;
  3870. top:0px;
  3871. width:381px;
  3872. height:31px;
  3873. background:inherit;
  3874. background-color:rgba(240, 240, 240, 1);
  3875. border-radius:0px;
  3876. filter:drop-shadow(none);
  3877. transition:none;
  3878. font-size:14px;
  3879. color:#AAAAAA;
  3880. }
  3881. #u34905.disabled {
  3882. }
  3883. .u34905_input_option {
  3884. font-size:14px;
  3885. }
  3886. #u34906_div {
  3887. border-width:0px;
  3888. position:absolute;
  3889. left:0px;
  3890. top:0px;
  3891. width:88px;
  3892. height:30px;
  3893. background:inherit;
  3894. background-color:rgba(255, 255, 255, 0);
  3895. border-top:0px;
  3896. border-right:0px;
  3897. border-bottom:0px;
  3898. border-radius:0px;
  3899. border-top-left-radius:0px;
  3900. border-bottom-left-radius:0px;
  3901. filter:drop-shadow(none);
  3902. transition:none;
  3903. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3904. font-weight:400;
  3905. font-style:normal;
  3906. font-size:14px;
  3907. }
  3908. #u34906 {
  3909. border-width:0px;
  3910. position:absolute;
  3911. left:862px;
  3912. top:231px;
  3913. width:88px;
  3914. height:30px;
  3915. display:flex;
  3916. transition:none;
  3917. transform-origin:50% 50%;
  3918. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3919. font-weight:400;
  3920. font-style:normal;
  3921. font-size:14px;
  3922. }
  3923. #u34906 .text {
  3924. position:absolute;
  3925. align-self:center;
  3926. padding:5px 10px 5px 0px;
  3927. box-sizing:border-box;
  3928. width:100%;
  3929. }
  3930. #u34906_text {
  3931. border-width:0px;
  3932. white-space:nowrap;
  3933. text-transform:none;
  3934. }
  3935. #u34907 label {
  3936. left:0px;
  3937. width:100%;
  3938. height:100%;
  3939. }
  3940. #u34907_img {
  3941. border-width:0px;
  3942. position:absolute;
  3943. left:0px;
  3944. top:3px;
  3945. width:12px;
  3946. height:12px;
  3947. }
  3948. #u34907 {
  3949. border-width:0px;
  3950. position:absolute;
  3951. left:965px;
  3952. top:239px;
  3953. width:100px;
  3954. height:18px;
  3955. display:flex;
  3956. transition:none;
  3957. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3958. font-weight:400;
  3959. font-style:normal;
  3960. }
  3961. #u34907 .text {
  3962. position:absolute;
  3963. align-self:center;
  3964. padding:0px 2px 0px 2px;
  3965. box-sizing:border-box;
  3966. }
  3967. #u34907_img.selected {
  3968. }
  3969. #u34907.selected {
  3970. }
  3971. #u34907_img.disabled {
  3972. }
  3973. #u34907.disabled {
  3974. }
  3975. #u34907_img.selected.error {
  3976. }
  3977. #u34907.selected.error {
  3978. }
  3979. #u34907_img.selected.hint {
  3980. }
  3981. #u34907.selected.hint {
  3982. }
  3983. #u34907_img.selected.error.hint {
  3984. }
  3985. #u34907.selected.error.hint {
  3986. }
  3987. #u34907_img.mouseOver.selected {
  3988. }
  3989. #u34907.mouseOver.selected {
  3990. }
  3991. #u34907_img.mouseOver.selected.error {
  3992. }
  3993. #u34907.mouseOver.selected.error {
  3994. }
  3995. #u34907_img.mouseOver.selected.hint {
  3996. }
  3997. #u34907.mouseOver.selected.hint {
  3998. }
  3999. #u34907_img.mouseOver.selected.error.hint {
  4000. }
  4001. #u34907.mouseOver.selected.error.hint {
  4002. }
  4003. #u34907_img.mouseDown.selected {
  4004. }
  4005. #u34907.mouseDown.selected {
  4006. }
  4007. #u34907_img.mouseDown.selected.error {
  4008. }
  4009. #u34907.mouseDown.selected.error {
  4010. }
  4011. #u34907_img.mouseDown.selected.hint {
  4012. }
  4013. #u34907.mouseDown.selected.hint {
  4014. }
  4015. #u34907_img.mouseDown.selected.error.hint {
  4016. }
  4017. #u34907.mouseDown.selected.error.hint {
  4018. }
  4019. #u34907_img.mouseOver.mouseDown.selected {
  4020. }
  4021. #u34907.mouseOver.mouseDown.selected {
  4022. }
  4023. #u34907_img.mouseOver.mouseDown.selected.error {
  4024. }
  4025. #u34907.mouseOver.mouseDown.selected.error {
  4026. }
  4027. #u34907_img.mouseOver.mouseDown.selected.hint {
  4028. }
  4029. #u34907.mouseOver.mouseDown.selected.hint {
  4030. }
  4031. #u34907_img.mouseOver.mouseDown.selected.error.hint {
  4032. }
  4033. #u34907.mouseOver.mouseDown.selected.error.hint {
  4034. }
  4035. #u34907_img.focused.selected {
  4036. }
  4037. #u34907.focused.selected {
  4038. }
  4039. #u34907_img.focused.selected.error {
  4040. }
  4041. #u34907.focused.selected.error {
  4042. }
  4043. #u34907_img.focused.selected.hint {
  4044. }
  4045. #u34907.focused.selected.hint {
  4046. }
  4047. #u34907_img.focused.selected.error.hint {
  4048. }
  4049. #u34907.focused.selected.error.hint {
  4050. }
  4051. #u34907_img.selected.disabled {
  4052. }
  4053. #u34907.selected.disabled {
  4054. }
  4055. #u34907_img.selected.hint.disabled {
  4056. }
  4057. #u34907.selected.hint.disabled {
  4058. }
  4059. #u34907_img.selected.error.disabled {
  4060. }
  4061. #u34907.selected.error.disabled {
  4062. }
  4063. #u34907_img.selected.error.hint.disabled {
  4064. }
  4065. #u34907.selected.error.hint.disabled {
  4066. }
  4067. #u34907_text {
  4068. border-width:0px;
  4069. position:absolute;
  4070. left:12px;
  4071. top:0px;
  4072. width:88px;
  4073. word-wrap:break-word;
  4074. text-transform:none;
  4075. }
  4076. #u34907_input {
  4077. border-width:0px;
  4078. position:absolute;
  4079. left:0px;
  4080. top:0px;
  4081. width:0px;
  4082. height:0px;
  4083. opacity:0;
  4084. }
  4085. #u34908 label {
  4086. left:0px;
  4087. width:100%;
  4088. height:100%;
  4089. }
  4090. #u34908_img {
  4091. border-width:0px;
  4092. position:absolute;
  4093. left:0px;
  4094. top:3px;
  4095. width:12px;
  4096. height:12px;
  4097. }
  4098. #u34908 {
  4099. border-width:0px;
  4100. position:absolute;
  4101. left:1065px;
  4102. top:239px;
  4103. width:100px;
  4104. height:18px;
  4105. display:flex;
  4106. transition:none;
  4107. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4108. font-weight:400;
  4109. font-style:normal;
  4110. }
  4111. #u34908 .text {
  4112. position:absolute;
  4113. align-self:center;
  4114. padding:0px 2px 0px 2px;
  4115. box-sizing:border-box;
  4116. }
  4117. #u34908_img.selected {
  4118. }
  4119. #u34908.selected {
  4120. }
  4121. #u34908_img.disabled {
  4122. }
  4123. #u34908.disabled {
  4124. }
  4125. #u34908_img.selected.error {
  4126. }
  4127. #u34908.selected.error {
  4128. }
  4129. #u34908_img.selected.hint {
  4130. }
  4131. #u34908.selected.hint {
  4132. }
  4133. #u34908_img.selected.error.hint {
  4134. }
  4135. #u34908.selected.error.hint {
  4136. }
  4137. #u34908_img.mouseOver.selected {
  4138. }
  4139. #u34908.mouseOver.selected {
  4140. }
  4141. #u34908_img.mouseOver.selected.error {
  4142. }
  4143. #u34908.mouseOver.selected.error {
  4144. }
  4145. #u34908_img.mouseOver.selected.hint {
  4146. }
  4147. #u34908.mouseOver.selected.hint {
  4148. }
  4149. #u34908_img.mouseOver.selected.error.hint {
  4150. }
  4151. #u34908.mouseOver.selected.error.hint {
  4152. }
  4153. #u34908_img.mouseDown.selected {
  4154. }
  4155. #u34908.mouseDown.selected {
  4156. }
  4157. #u34908_img.mouseDown.selected.error {
  4158. }
  4159. #u34908.mouseDown.selected.error {
  4160. }
  4161. #u34908_img.mouseDown.selected.hint {
  4162. }
  4163. #u34908.mouseDown.selected.hint {
  4164. }
  4165. #u34908_img.mouseDown.selected.error.hint {
  4166. }
  4167. #u34908.mouseDown.selected.error.hint {
  4168. }
  4169. #u34908_img.mouseOver.mouseDown.selected {
  4170. }
  4171. #u34908.mouseOver.mouseDown.selected {
  4172. }
  4173. #u34908_img.mouseOver.mouseDown.selected.error {
  4174. }
  4175. #u34908.mouseOver.mouseDown.selected.error {
  4176. }
  4177. #u34908_img.mouseOver.mouseDown.selected.hint {
  4178. }
  4179. #u34908.mouseOver.mouseDown.selected.hint {
  4180. }
  4181. #u34908_img.mouseOver.mouseDown.selected.error.hint {
  4182. }
  4183. #u34908.mouseOver.mouseDown.selected.error.hint {
  4184. }
  4185. #u34908_img.focused.selected {
  4186. }
  4187. #u34908.focused.selected {
  4188. }
  4189. #u34908_img.focused.selected.error {
  4190. }
  4191. #u34908.focused.selected.error {
  4192. }
  4193. #u34908_img.focused.selected.hint {
  4194. }
  4195. #u34908.focused.selected.hint {
  4196. }
  4197. #u34908_img.focused.selected.error.hint {
  4198. }
  4199. #u34908.focused.selected.error.hint {
  4200. }
  4201. #u34908_img.selected.disabled {
  4202. }
  4203. #u34908.selected.disabled {
  4204. }
  4205. #u34908_img.selected.hint.disabled {
  4206. }
  4207. #u34908.selected.hint.disabled {
  4208. }
  4209. #u34908_img.selected.error.disabled {
  4210. }
  4211. #u34908.selected.error.disabled {
  4212. }
  4213. #u34908_img.selected.error.hint.disabled {
  4214. }
  4215. #u34908.selected.error.hint.disabled {
  4216. }
  4217. #u34908_text {
  4218. border-width:0px;
  4219. position:absolute;
  4220. left:12px;
  4221. top:0px;
  4222. width:88px;
  4223. word-wrap:break-word;
  4224. text-transform:none;
  4225. }
  4226. #u34908_input {
  4227. border-width:0px;
  4228. position:absolute;
  4229. left:0px;
  4230. top:0px;
  4231. width:0px;
  4232. height:0px;
  4233. opacity:0;
  4234. }
  4235. #u34909 {
  4236. border-width:0px;
  4237. position:absolute;
  4238. left:0px;
  4239. top:0px;
  4240. width:0px;
  4241. height:0px;
  4242. }
  4243. #u34910 {
  4244. border-width:0px;
  4245. position:absolute;
  4246. left:0px;
  4247. top:0px;
  4248. width:0px;
  4249. height:0px;
  4250. }
  4251. #u34911_div {
  4252. border-width:0px;
  4253. position:absolute;
  4254. left:0px;
  4255. top:0px;
  4256. width:380px;
  4257. height:180px;
  4258. background:inherit;
  4259. background-color:rgba(255, 255, 255, 1);
  4260. border-radius:4px;
  4261. filter:drop-shadow(0px 4px 6px rgba(0, 0, 0, 0.4470588235294118));
  4262. transition:none;
  4263. font-family:"Microsoft YaHei", sans-serif;
  4264. font-weight:400;
  4265. font-style:normal;
  4266. }
  4267. #u34911 {
  4268. border-width:0px;
  4269. position:absolute;
  4270. left:1043px;
  4271. top:982px;
  4272. width:380px;
  4273. height:180px;
  4274. display:flex;
  4275. transition:none;
  4276. transform-origin:50% 50%;
  4277. font-family:"Microsoft YaHei", sans-serif;
  4278. font-weight:400;
  4279. font-style:normal;
  4280. }
  4281. #u34911 .text {
  4282. position:absolute;
  4283. align-self:center;
  4284. padding:2px 2px 2px 2px;
  4285. box-sizing:border-box;
  4286. width:100%;
  4287. }
  4288. #u34911_text {
  4289. border-width:0px;
  4290. word-wrap:break-word;
  4291. text-transform:none;
  4292. visibility:hidden;
  4293. }
  4294. #u34912_div {
  4295. border-width:0px;
  4296. position:absolute;
  4297. left:0px;
  4298. top:0px;
  4299. width:299px;
  4300. height:44px;
  4301. background:inherit;
  4302. background-color:rgba(255, 255, 255, 0);
  4303. border-radius:0px;
  4304. filter:drop-shadow(none);
  4305. transition:none;
  4306. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4307. font-weight:400;
  4308. font-style:normal;
  4309. font-size:14px;
  4310. color:#666666;
  4311. line-height:22px;
  4312. }
  4313. #u34912 {
  4314. border-width:0px;
  4315. position:absolute;
  4316. left:1103px;
  4317. top:1037px;
  4318. width:299px;
  4319. height:44px;
  4320. display:flex;
  4321. transition:none;
  4322. transform-origin:50% 50%;
  4323. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4324. font-weight:400;
  4325. font-style:normal;
  4326. font-size:14px;
  4327. color:#666666;
  4328. line-height:22px;
  4329. }
  4330. #u34912 .text {
  4331. position:absolute;
  4332. align-self:flex-start;
  4333. padding:0px 0px 0px 0px;
  4334. box-sizing:border-box;
  4335. width:100%;
  4336. }
  4337. #u34912_text {
  4338. border-width:0px;
  4339. word-wrap:break-word;
  4340. text-transform:none;
  4341. }
  4342. #u34913_div {
  4343. border-width:0px;
  4344. position:absolute;
  4345. left:0px;
  4346. top:0px;
  4347. width:127px;
  4348. height:21px;
  4349. background:inherit;
  4350. background-color:rgba(255, 255, 255, 0);
  4351. border-radius:0px;
  4352. filter:drop-shadow(none);
  4353. transition:none;
  4354. font-family:'PingFangSC-Semibold', 'PingFang SC Semibold', 'PingFang SC', sans-serif;
  4355. font-weight:650;
  4356. font-style:normal;
  4357. font-size:18px;
  4358. color:#000000;
  4359. line-height:22px;
  4360. }
  4361. #u34913 {
  4362. border-width:0px;
  4363. position:absolute;
  4364. left:1103px;
  4365. top:1007px;
  4366. width:127px;
  4367. height:21px;
  4368. display:flex;
  4369. transition:none;
  4370. transform-origin:50% 50%;
  4371. font-family:'PingFangSC-Semibold', 'PingFang SC Semibold', 'PingFang SC', sans-serif;
  4372. font-weight:650;
  4373. font-style:normal;
  4374. font-size:18px;
  4375. color:#000000;
  4376. line-height:22px;
  4377. }
  4378. #u34913 .text {
  4379. position:absolute;
  4380. align-self:flex-start;
  4381. padding:0px 0px 0px 0px;
  4382. box-sizing:border-box;
  4383. width:100%;
  4384. }
  4385. #u34913_text {
  4386. border-width:0px;
  4387. white-space:nowrap;
  4388. text-transform:none;
  4389. }
  4390. #u34914_div {
  4391. border-width:0px;
  4392. position:absolute;
  4393. left:0px;
  4394. top:0px;
  4395. width:61px;
  4396. height:30px;
  4397. background:inherit;
  4398. background-color:rgba(24, 144, 255, 1);
  4399. border-radius:4px;
  4400. filter:drop-shadow(none);
  4401. transition:none;
  4402. font-family:"Microsoft YaHei", sans-serif;
  4403. font-weight:400;
  4404. font-style:normal;
  4405. font-size:14px;
  4406. color:#FFFFFF;
  4407. }
  4408. #u34914 {
  4409. border-width:0px;
  4410. position:absolute;
  4411. left:1345px;
  4412. top:1117px;
  4413. width:61px;
  4414. height:30px;
  4415. display:flex;
  4416. transition:none;
  4417. transform-origin:50% 50%;
  4418. font-family:"Microsoft YaHei", sans-serif;
  4419. font-weight:400;
  4420. font-style:normal;
  4421. font-size:14px;
  4422. color:#FFFFFF;
  4423. }
  4424. #u34914 .text {
  4425. position:absolute;
  4426. align-self:center;
  4427. padding:2px 16px 2px 16px;
  4428. box-sizing:border-box;
  4429. width:100%;
  4430. }
  4431. #u34914_text {
  4432. border-width:0px;
  4433. white-space:nowrap;
  4434. text-transform:none;
  4435. }
  4436. #u34915_div {
  4437. border-width:0px;
  4438. position:absolute;
  4439. left:0px;
  4440. top:0px;
  4441. width:66px;
  4442. height:30px;
  4443. background:inherit;
  4444. background-color:rgba(255, 255, 255, 1);
  4445. box-sizing:border-box;
  4446. border-width:1px;
  4447. border-style:solid;
  4448. border-color:rgba(217, 217, 217, 1);
  4449. border-radius:4px;
  4450. filter:drop-shadow(none);
  4451. transition:none;
  4452. font-family:"Microsoft YaHei", sans-serif;
  4453. font-weight:400;
  4454. font-style:normal;
  4455. font-size:14px;
  4456. color:rgba(0, 0, 0, 0.6470588235294118);
  4457. line-height:21px;
  4458. }
  4459. #u34915 {
  4460. border-width:0px;
  4461. position:absolute;
  4462. left:1263px;
  4463. top:1117px;
  4464. width:66px;
  4465. height:30px;
  4466. display:flex;
  4467. transition:none;
  4468. transform-origin:50% 50%;
  4469. font-family:"Microsoft YaHei", sans-serif;
  4470. font-weight:400;
  4471. font-style:normal;
  4472. font-size:14px;
  4473. color:rgba(0, 0, 0, 0.6470588235294118);
  4474. line-height:21px;
  4475. }
  4476. #u34915 .text {
  4477. position:absolute;
  4478. align-self:center;
  4479. padding:2px 16px 2px 16px;
  4480. box-sizing:border-box;
  4481. width:100%;
  4482. }
  4483. #u34915_text {
  4484. border-width:0px;
  4485. white-space:nowrap;
  4486. text-transform:none;
  4487. }
  4488. #u34916 {
  4489. border-width:0px;
  4490. position:absolute;
  4491. left:1072px;
  4492. top:1011px;
  4493. width:20px;
  4494. height:20px;
  4495. display:flex;
  4496. transition:none;
  4497. }
  4498. #u34916 .text {
  4499. position:absolute;
  4500. align-self:center;
  4501. padding:2px 2px 2px 2px;
  4502. box-sizing:border-box;
  4503. width:100%;
  4504. }
  4505. #u34916_img {
  4506. border-width:0px;
  4507. position:absolute;
  4508. left:0px;
  4509. top:0px;
  4510. width:20px;
  4511. height:20px;
  4512. }
  4513. #u34916_text {
  4514. border-width:0px;
  4515. word-wrap:break-word;
  4516. text-transform:none;
  4517. visibility:hidden;
  4518. }