styles.css 105 KB

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