styles.css 89 KB

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