styles.css 100 KB

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