styles.css 92 KB

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