styles.css 106 KB

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