styles.css 84 KB

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