styles.css 107 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135113611371138113911401141114211431144114511461147114811491150115111521153115411551156115711581159116011611162116311641165116611671168116911701171117211731174117511761177117811791180118111821183118411851186118711881189119011911192119311941195119611971198119912001201120212031204120512061207120812091210121112121213121412151216121712181219122012211222122312241225122612271228122912301231123212331234123512361237123812391240124112421243124412451246124712481249125012511252125312541255125612571258125912601261126212631264126512661267126812691270127112721273127412751276127712781279128012811282128312841285128612871288128912901291129212931294129512961297129812991300130113021303130413051306130713081309131013111312131313141315131613171318131913201321132213231324132513261327132813291330133113321333133413351336133713381339134013411342134313441345134613471348134913501351135213531354135513561357135813591360136113621363136413651366136713681369137013711372137313741375137613771378137913801381138213831384138513861387138813891390139113921393139413951396139713981399140014011402140314041405140614071408140914101411141214131414141514161417141814191420142114221423142414251426142714281429143014311432143314341435143614371438143914401441144214431444144514461447144814491450145114521453145414551456145714581459146014611462146314641465146614671468146914701471147214731474147514761477147814791480148114821483148414851486148714881489149014911492149314941495149614971498149915001501150215031504150515061507150815091510151115121513151415151516151715181519152015211522152315241525152615271528152915301531153215331534153515361537153815391540154115421543154415451546154715481549155015511552155315541555155615571558155915601561156215631564156515661567156815691570157115721573157415751576157715781579158015811582158315841585158615871588158915901591159215931594159515961597159815991600160116021603160416051606160716081609161016111612161316141615161616171618161916201621162216231624162516261627162816291630163116321633163416351636163716381639164016411642164316441645164616471648164916501651165216531654165516561657165816591660166116621663166416651666166716681669167016711672167316741675167616771678167916801681168216831684168516861687168816891690169116921693169416951696169716981699170017011702170317041705170617071708170917101711171217131714171517161717171817191720172117221723172417251726172717281729173017311732173317341735173617371738173917401741174217431744174517461747174817491750175117521753175417551756175717581759176017611762176317641765176617671768176917701771177217731774177517761777177817791780178117821783178417851786178717881789179017911792179317941795179617971798179918001801180218031804180518061807180818091810181118121813181418151816181718181819182018211822182318241825182618271828182918301831183218331834183518361837183818391840184118421843184418451846184718481849185018511852185318541855185618571858185918601861186218631864186518661867186818691870187118721873187418751876187718781879188018811882188318841885188618871888188918901891189218931894189518961897189818991900190119021903190419051906190719081909191019111912191319141915191619171918191919201921192219231924192519261927192819291930193119321933193419351936193719381939194019411942194319441945194619471948194919501951195219531954195519561957195819591960196119621963196419651966196719681969197019711972197319741975197619771978197919801981198219831984198519861987198819891990199119921993199419951996199719981999200020012002200320042005200620072008200920102011201220132014201520162017201820192020202120222023202420252026202720282029203020312032203320342035203620372038203920402041204220432044204520462047204820492050205120522053205420552056205720582059206020612062206320642065206620672068206920702071207220732074207520762077207820792080208120822083208420852086208720882089209020912092209320942095209620972098209921002101210221032104210521062107210821092110211121122113211421152116211721182119212021212122212321242125212621272128212921302131213221332134213521362137213821392140214121422143214421452146214721482149215021512152215321542155215621572158215921602161216221632164216521662167216821692170217121722173217421752176217721782179218021812182218321842185218621872188218921902191219221932194219521962197219821992200220122022203220422052206220722082209221022112212221322142215221622172218221922202221222222232224222522262227222822292230223122322233223422352236223722382239224022412242224322442245224622472248224922502251225222532254225522562257225822592260226122622263226422652266226722682269227022712272227322742275227622772278227922802281228222832284228522862287228822892290229122922293229422952296229722982299230023012302230323042305230623072308230923102311231223132314231523162317231823192320232123222323232423252326232723282329233023312332233323342335233623372338233923402341234223432344234523462347234823492350235123522353235423552356235723582359236023612362236323642365236623672368236923702371237223732374237523762377237823792380238123822383238423852386238723882389239023912392239323942395239623972398239924002401240224032404240524062407240824092410241124122413241424152416241724182419242024212422242324242425242624272428242924302431243224332434243524362437243824392440244124422443244424452446244724482449245024512452245324542455245624572458245924602461246224632464246524662467246824692470247124722473247424752476247724782479248024812482248324842485248624872488248924902491249224932494249524962497249824992500250125022503250425052506250725082509251025112512251325142515251625172518251925202521252225232524252525262527252825292530253125322533253425352536253725382539254025412542254325442545254625472548254925502551255225532554255525562557255825592560256125622563256425652566256725682569257025712572257325742575257625772578257925802581258225832584258525862587258825892590259125922593259425952596259725982599260026012602260326042605260626072608260926102611261226132614261526162617261826192620262126222623262426252626262726282629263026312632263326342635263626372638263926402641264226432644264526462647264826492650265126522653265426552656265726582659266026612662266326642665266626672668266926702671267226732674267526762677267826792680268126822683268426852686268726882689269026912692269326942695269626972698269927002701270227032704270527062707270827092710271127122713271427152716271727182719272027212722272327242725272627272728272927302731273227332734273527362737273827392740274127422743274427452746274727482749275027512752275327542755275627572758275927602761276227632764276527662767276827692770277127722773277427752776277727782779278027812782278327842785278627872788278927902791279227932794279527962797279827992800280128022803280428052806280728082809281028112812281328142815281628172818281928202821282228232824282528262827282828292830283128322833283428352836283728382839284028412842284328442845284628472848284928502851285228532854285528562857285828592860286128622863286428652866286728682869287028712872287328742875287628772878287928802881288228832884288528862887288828892890289128922893289428952896289728982899290029012902290329042905290629072908290929102911291229132914291529162917291829192920292129222923292429252926292729282929293029312932293329342935293629372938293929402941294229432944294529462947294829492950295129522953295429552956295729582959296029612962296329642965296629672968296929702971297229732974297529762977297829792980298129822983298429852986298729882989299029912992299329942995299629972998299930003001300230033004300530063007300830093010301130123013301430153016301730183019302030213022302330243025302630273028302930303031303230333034303530363037303830393040304130423043304430453046304730483049305030513052305330543055305630573058305930603061306230633064306530663067306830693070307130723073307430753076307730783079308030813082308330843085308630873088308930903091309230933094309530963097309830993100310131023103310431053106310731083109311031113112311331143115311631173118311931203121312231233124312531263127312831293130313131323133313431353136313731383139314031413142314331443145314631473148314931503151315231533154315531563157315831593160316131623163316431653166316731683169317031713172317331743175317631773178317931803181318231833184318531863187318831893190319131923193319431953196319731983199320032013202320332043205320632073208320932103211321232133214321532163217321832193220322132223223322432253226322732283229323032313232323332343235323632373238323932403241324232433244324532463247324832493250325132523253325432553256325732583259326032613262326332643265326632673268326932703271327232733274327532763277327832793280328132823283328432853286328732883289329032913292329332943295329632973298329933003301330233033304330533063307330833093310331133123313331433153316331733183319332033213322332333243325332633273328332933303331333233333334333533363337333833393340334133423343334433453346334733483349335033513352335333543355335633573358335933603361336233633364336533663367336833693370337133723373337433753376337733783379338033813382338333843385338633873388338933903391339233933394339533963397339833993400340134023403340434053406340734083409341034113412341334143415341634173418341934203421342234233424342534263427342834293430343134323433343434353436343734383439344034413442344334443445344634473448344934503451345234533454345534563457345834593460346134623463346434653466346734683469347034713472347334743475347634773478347934803481348234833484348534863487348834893490349134923493349434953496349734983499350035013502350335043505350635073508350935103511351235133514351535163517351835193520352135223523352435253526352735283529353035313532353335343535353635373538353935403541354235433544354535463547354835493550355135523553355435553556355735583559356035613562356335643565356635673568356935703571357235733574357535763577357835793580358135823583358435853586358735883589359035913592359335943595359635973598359936003601360236033604360536063607360836093610361136123613361436153616361736183619362036213622362336243625362636273628362936303631363236333634363536363637363836393640364136423643364436453646364736483649365036513652365336543655365636573658365936603661366236633664366536663667366836693670367136723673367436753676367736783679368036813682368336843685368636873688368936903691369236933694369536963697369836993700370137023703370437053706370737083709371037113712371337143715371637173718371937203721372237233724372537263727372837293730373137323733373437353736373737383739374037413742374337443745374637473748374937503751375237533754375537563757375837593760376137623763376437653766376737683769377037713772377337743775377637773778377937803781378237833784378537863787378837893790379137923793379437953796379737983799380038013802380338043805380638073808380938103811381238133814381538163817381838193820382138223823382438253826382738283829383038313832383338343835383638373838383938403841384238433844384538463847384838493850385138523853385438553856385738583859386038613862386338643865386638673868386938703871387238733874387538763877387838793880388138823883388438853886388738883889389038913892389338943895389638973898389939003901390239033904390539063907390839093910391139123913391439153916391739183919392039213922392339243925392639273928392939303931393239333934393539363937393839393940394139423943394439453946394739483949395039513952395339543955395639573958395939603961396239633964396539663967396839693970397139723973397439753976397739783979398039813982398339843985398639873988398939903991399239933994399539963997399839994000400140024003400440054006400740084009401040114012401340144015401640174018401940204021402240234024402540264027402840294030403140324033403440354036403740384039404040414042404340444045404640474048404940504051405240534054405540564057405840594060406140624063406440654066406740684069407040714072407340744075407640774078407940804081408240834084408540864087408840894090409140924093409440954096409740984099410041014102410341044105410641074108410941104111411241134114411541164117411841194120412141224123412441254126412741284129413041314132413341344135413641374138413941404141414241434144414541464147414841494150415141524153415441554156415741584159416041614162416341644165416641674168416941704171417241734174417541764177417841794180418141824183418441854186418741884189419041914192419341944195419641974198419942004201420242034204420542064207420842094210421142124213421442154216421742184219422042214222422342244225422642274228422942304231423242334234423542364237423842394240424142424243424442454246424742484249425042514252425342544255425642574258425942604261426242634264426542664267426842694270427142724273427442754276427742784279428042814282428342844285428642874288428942904291429242934294429542964297429842994300430143024303430443054306430743084309431043114312431343144315431643174318431943204321432243234324432543264327432843294330433143324333433443354336433743384339434043414342434343444345434643474348434943504351435243534354435543564357435843594360436143624363436443654366436743684369437043714372437343744375437643774378437943804381438243834384438543864387438843894390439143924393439443954396439743984399440044014402440344044405440644074408440944104411441244134414441544164417441844194420442144224423442444254426442744284429443044314432443344344435443644374438443944404441444244434444444544464447444844494450445144524453445444554456445744584459446044614462446344644465446644674468446944704471447244734474447544764477447844794480448144824483448444854486448744884489449044914492449344944495449644974498449945004501450245034504450545064507450845094510451145124513451445154516451745184519452045214522452345244525452645274528452945304531453245334534453545364537453845394540454145424543454445454546454745484549455045514552455345544555455645574558455945604561456245634564456545664567456845694570457145724573457445754576457745784579458045814582458345844585458645874588458945904591459245934594459545964597459845994600460146024603460446054606460746084609461046114612461346144615461646174618461946204621462246234624462546264627462846294630463146324633463446354636463746384639464046414642464346444645464646474648464946504651465246534654465546564657465846594660466146624663466446654666466746684669467046714672467346744675467646774678467946804681468246834684468546864687468846894690469146924693469446954696469746984699470047014702470347044705470647074708470947104711471247134714471547164717471847194720472147224723472447254726472747284729473047314732473347344735473647374738473947404741474247434744474547464747474847494750475147524753475447554756475747584759476047614762476347644765476647674768476947704771477247734774477547764777477847794780478147824783478447854786478747884789479047914792479347944795479647974798479948004801480248034804480548064807480848094810481148124813481448154816481748184819482048214822482348244825482648274828482948304831483248334834483548364837483848394840484148424843484448454846484748484849485048514852485348544855485648574858485948604861486248634864486548664867486848694870487148724873487448754876487748784879488048814882488348844885488648874888488948904891489248934894489548964897489848994900490149024903490449054906490749084909491049114912491349144915491649174918491949204921492249234924492549264927492849294930493149324933493449354936493749384939494049414942494349444945494649474948494949504951495249534954495549564957495849594960496149624963496449654966496749684969497049714972497349744975497649774978497949804981498249834984498549864987498849894990499149924993499449954996499749984999500050015002500350045005500650075008500950105011501250135014501550165017501850195020502150225023502450255026502750285029503050315032503350345035503650375038503950405041504250435044504550465047504850495050505150525053505450555056505750585059506050615062506350645065506650675068506950705071507250735074507550765077507850795080508150825083508450855086508750885089509050915092509350945095509650975098509951005101510251035104510551065107510851095110511151125113511451155116511751185119512051215122512351245125512651275128512951305131513251335134513551365137513851395140514151425143514451455146514751485149515051515152515351545155515651575158515951605161516251635164516551665167516851695170517151725173517451755176517751785179518051815182518351845185518651875188518951905191519251935194519551965197519851995200520152025203520452055206520752085209521052115212521352145215521652175218521952205221522252235224522552265227522852295230523152325233523452355236523752385239524052415242524352445245524652475248524952505251525252535254525552565257525852595260526152625263526452655266526752685269527052715272527352745275527652775278527952805281528252835284528552865287528852895290529152925293529452955296529752985299530053015302530353045305530653075308530953105311531253135314531553165317531853195320532153225323532453255326532753285329533053315332533353345335533653375338533953405341534253435344534553465347534853495350535153525353535453555356535753585359536053615362536353645365536653675368536953705371537253735374537553765377537853795380538153825383538453855386538753885389539053915392539353945395539653975398539954005401540254035404540554065407540854095410541154125413541454155416541754185419542054215422542354245425542654275428542954305431543254335434543554365437543854395440544154425443544454455446544754485449545054515452545354545455545654575458545954605461546254635464546554665467546854695470547154725473547454755476547754785479548054815482548354845485548654875488548954905491549254935494549554965497549854995500550155025503550455055506550755085509551055115512551355145515551655175518551955205521552255235524552555265527552855295530553155325533553455355536553755385539554055415542554355445545554655475548554955505551555255535554555555565557555855595560556155625563556455655566556755685569557055715572557355745575557655775578557955805581558255835584558555865587558855895590559155925593559455955596559755985599560056015602560356045605560656075608560956105611561256135614561556165617561856195620562156225623562456255626562756285629563056315632563356345635563656375638563956405641564256435644564556465647564856495650565156525653565456555656565756585659566056615662566356645665566656675668566956705671567256735674567556765677567856795680568156825683568456855686568756885689569056915692569356945695569656975698569957005701570257035704570557065707570857095710571157125713571457155716571757185719572057215722572357245725572657275728572957305731573257335734573557365737573857395740574157425743574457455746574757485749575057515752575357545755575657575758575957605761576257635764576557665767576857695770577157725773577457755776577757785779578057815782578357845785578657875788578957905791579257935794579557965797579857995800580158025803580458055806580758085809581058115812581358145815581658175818581958205821582258235824582558265827582858295830583158325833583458355836583758385839584058415842584358445845584658475848584958505851585258535854585558565857585858595860586158625863586458655866586758685869587058715872587358745875587658775878587958805881588258835884588558865887588858895890589158925893589458955896589758985899590059015902590359045905590659075908590959105911591259135914591559165917591859195920592159225923592459255926592759285929593059315932593359345935593659375938593959405941594259435944594559465947594859495950595159525953595459555956595759585959596059615962596359645965596659675968596959705971597259735974597559765977597859795980598159825983598459855986598759885989599059915992599359945995599659975998599960006001600260036004600560066007600860096010601160126013601460156016601760186019602060216022602360246025602660276028602960306031603260336034603560366037603860396040604160426043604460456046604760486049605060516052605360546055605660576058605960606061606260636064606560666067606860696070607160726073607460756076607760786079608060816082608360846085608660876088608960906091609260936094609560966097609860996100610161026103610461056106610761086109611061116112611361146115611661176118
  1. body {
  2. margin:0px;
  3. background-image:none;
  4. position:relative;
  5. left:0px;
  6. width:1600px;
  7. margin-left:auto;
  8. margin-right:auto;
  9. text-align:left;
  10. }
  11. .form_sketch {
  12. border-color:transparent;
  13. background-color:transparent;
  14. }
  15. #base {
  16. position:absolute;
  17. z-index:0;
  18. }
  19. #u32015_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. #u32015 {
  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. #u32015 .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. #u32015_text {
  55. border-width:0px;
  56. white-space:nowrap;
  57. text-transform:none;
  58. }
  59. #u32016_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. #u32016 {
  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. #u32016 .text {
  86. position:absolute;
  87. align-self:center;
  88. padding:2px 2px 2px 2px;
  89. box-sizing:border-box;
  90. width:100%;
  91. }
  92. #u32016_text {
  93. border-width:0px;
  94. word-wrap:break-word;
  95. text-transform:none;
  96. visibility:hidden;
  97. }
  98. #u32017 {
  99. border-width:0px;
  100. position:absolute;
  101. left:0px;
  102. top:0px;
  103. width:0px;
  104. height:0px;
  105. }
  106. #u32018_img {
  107. border-width:0px;
  108. position:absolute;
  109. left:0px;
  110. top:0px;
  111. width:31px;
  112. height:31px;
  113. }
  114. #u32018 {
  115. border-width:0px;
  116. position:absolute;
  117. left:19px;
  118. top:10px;
  119. width:31px;
  120. height:31px;
  121. display:flex;
  122. }
  123. #u32018 .text {
  124. position:absolute;
  125. align-self:center;
  126. padding:2px 2px 2px 2px;
  127. box-sizing:border-box;
  128. width:100%;
  129. }
  130. #u32018_text {
  131. border-width:0px;
  132. word-wrap:break-word;
  133. text-transform:none;
  134. }
  135. #u32019_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. #u32019 {
  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. #u32019 .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. #u32019_text {
  177. border-width:0px;
  178. white-space:nowrap;
  179. text-transform:none;
  180. }
  181. #u32020_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. #u32020 {
  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. #u32020 .text {
  208. position:absolute;
  209. align-self:center;
  210. padding:2px 2px 2px 2px;
  211. box-sizing:border-box;
  212. width:100%;
  213. }
  214. #u32020_text {
  215. border-width:0px;
  216. word-wrap:break-word;
  217. text-transform:none;
  218. visibility:hidden;
  219. }
  220. #u32021_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. #u32021 {
  236. border-width:0px;
  237. position:absolute;
  238. left:120px;
  239. top:50px;
  240. width:1480px;
  241. height:1200px;
  242. display:flex;
  243. }
  244. #u32021 .text {
  245. position:absolute;
  246. align-self:center;
  247. padding:2px 2px 2px 2px;
  248. box-sizing:border-box;
  249. width:100%;
  250. }
  251. #u32021_text {
  252. border-width:0px;
  253. word-wrap:break-word;
  254. text-transform:none;
  255. visibility:hidden;
  256. }
  257. #u32022 {
  258. border-width:0px;
  259. position:absolute;
  260. left:0px;
  261. top:0px;
  262. width:0px;
  263. height:0px;
  264. }
  265. #u32023_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. #u32023 {
  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. #u32023 .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. #u32023_text {
  307. border-width:0px;
  308. white-space:nowrap;
  309. text-transform:none;
  310. }
  311. #u32024_img {
  312. border-width:0px;
  313. position:absolute;
  314. left:0px;
  315. top:0px;
  316. width:14px;
  317. height:14px;
  318. }
  319. #u32024 {
  320. border-width:0px;
  321. position:absolute;
  322. left:20px;
  323. top:71px;
  324. width:14px;
  325. height:14px;
  326. display:flex;
  327. }
  328. #u32024 .text {
  329. position:absolute;
  330. align-self:center;
  331. padding:2px 2px 2px 2px;
  332. box-sizing:border-box;
  333. width:100%;
  334. }
  335. #u32024_text {
  336. border-width:0px;
  337. word-wrap:break-word;
  338. text-transform:none;
  339. visibility:hidden;
  340. }
  341. #u32025 {
  342. border-width:0px;
  343. position:absolute;
  344. left:0px;
  345. top:0px;
  346. width:0px;
  347. height:0px;
  348. }
  349. #u32026_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. #u32026 {
  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. #u32026 .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. #u32026_text {
  391. border-width:0px;
  392. white-space:nowrap;
  393. text-transform:none;
  394. }
  395. #u32027_img {
  396. border-width:0px;
  397. position:absolute;
  398. left:0px;
  399. top:0px;
  400. width:14px;
  401. height:14px;
  402. }
  403. #u32027 {
  404. border-width:0px;
  405. position:absolute;
  406. left:20px;
  407. top:113px;
  408. width:14px;
  409. height:14px;
  410. display:flex;
  411. }
  412. #u32027 .text {
  413. position:absolute;
  414. align-self:center;
  415. padding:2px 2px 2px 2px;
  416. box-sizing:border-box;
  417. width:100%;
  418. }
  419. #u32027_text {
  420. border-width:0px;
  421. word-wrap:break-word;
  422. text-transform:none;
  423. visibility:hidden;
  424. }
  425. #u32028 {
  426. border-width:0px;
  427. position:absolute;
  428. left:0px;
  429. top:0px;
  430. width:0px;
  431. height:0px;
  432. }
  433. #u32029_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. #u32029 {
  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. #u32029 .text {
  466. position:absolute;
  467. align-self:center;
  468. padding:0px 0px 0px 0px;
  469. box-sizing:border-box;
  470. width:100%;
  471. }
  472. #u32029_text {
  473. border-width:0px;
  474. white-space:nowrap;
  475. text-transform:none;
  476. }
  477. #u32030_img {
  478. border-width:0px;
  479. position:absolute;
  480. left:0px;
  481. top:0px;
  482. width:22px;
  483. height:22px;
  484. }
  485. #u32030 {
  486. border-width:0px;
  487. position:absolute;
  488. left:27px;
  489. top:1140px;
  490. width:22px;
  491. height:22px;
  492. display:flex;
  493. }
  494. #u32030 .text {
  495. position:absolute;
  496. align-self:center;
  497. padding:2px 2px 2px 2px;
  498. box-sizing:border-box;
  499. width:100%;
  500. }
  501. #u32030_text {
  502. border-width:0px;
  503. word-wrap:break-word;
  504. text-transform:none;
  505. visibility:hidden;
  506. }
  507. #u32031 {
  508. border-width:0px;
  509. position:absolute;
  510. left:0px;
  511. top:0px;
  512. width:0px;
  513. height:0px;
  514. }
  515. #u32032_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. #u32032 {
  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. #u32032 .text {
  548. position:absolute;
  549. align-self:center;
  550. padding:0px 0px 0px 0px;
  551. box-sizing:border-box;
  552. width:100%;
  553. }
  554. #u32032_text {
  555. border-width:0px;
  556. white-space:nowrap;
  557. text-transform:none;
  558. }
  559. #u32033_img {
  560. border-width:0px;
  561. position:absolute;
  562. left:0px;
  563. top:0px;
  564. width:22px;
  565. height:22px;
  566. }
  567. #u32033 {
  568. border-width:0px;
  569. position:absolute;
  570. left:27px;
  571. top:1182px;
  572. width:22px;
  573. height:22px;
  574. display:flex;
  575. }
  576. #u32033 .text {
  577. position:absolute;
  578. align-self:center;
  579. padding:2px 2px 2px 2px;
  580. box-sizing:border-box;
  581. width:100%;
  582. }
  583. #u32033_text {
  584. border-width:0px;
  585. word-wrap:break-word;
  586. text-transform:none;
  587. visibility:hidden;
  588. }
  589. #u32034 {
  590. border-width:0px;
  591. position:absolute;
  592. left:0px;
  593. top:0px;
  594. width:0px;
  595. height:0px;
  596. }
  597. #u32035_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. #u32035 {
  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. #u32035 .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. #u32035_text {
  639. border-width:0px;
  640. white-space:nowrap;
  641. text-transform:none;
  642. }
  643. #u32036_img {
  644. border-width:0px;
  645. position:absolute;
  646. left:0px;
  647. top:0px;
  648. width:14px;
  649. height:14px;
  650. }
  651. #u32036 {
  652. border-width:0px;
  653. position:absolute;
  654. left:20px;
  655. top:281px;
  656. width:14px;
  657. height:14px;
  658. display:flex;
  659. }
  660. #u32036 .text {
  661. position:absolute;
  662. align-self:center;
  663. padding:2px 2px 2px 2px;
  664. box-sizing:border-box;
  665. width:100%;
  666. }
  667. #u32036_text {
  668. border-width:0px;
  669. word-wrap:break-word;
  670. text-transform:none;
  671. visibility:hidden;
  672. }
  673. #u32037 {
  674. border-width:0px;
  675. position:absolute;
  676. left:0px;
  677. top:0px;
  678. width:0px;
  679. height:0px;
  680. }
  681. #u32038_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. #u32038 {
  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. #u32038 .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. #u32038_text {
  723. border-width:0px;
  724. white-space:nowrap;
  725. text-transform:none;
  726. }
  727. #u32039_img {
  728. border-width:0px;
  729. position:absolute;
  730. left:0px;
  731. top:0px;
  732. width:14px;
  733. height:14px;
  734. }
  735. #u32039 {
  736. border-width:0px;
  737. position:absolute;
  738. left:20px;
  739. top:239px;
  740. width:14px;
  741. height:14px;
  742. display:flex;
  743. }
  744. #u32039 .text {
  745. position:absolute;
  746. align-self:center;
  747. padding:2px 2px 2px 2px;
  748. box-sizing:border-box;
  749. width:100%;
  750. }
  751. #u32039_text {
  752. border-width:0px;
  753. word-wrap:break-word;
  754. text-transform:none;
  755. visibility:hidden;
  756. }
  757. #u32040 {
  758. border-width:0px;
  759. position:absolute;
  760. left:0px;
  761. top:0px;
  762. width:0px;
  763. height:0px;
  764. }
  765. #u32041_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. #u32041 {
  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. #u32041 .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. #u32041_text {
  807. border-width:0px;
  808. white-space:nowrap;
  809. text-transform:none;
  810. }
  811. #u32042_img {
  812. border-width:0px;
  813. position:absolute;
  814. left:0px;
  815. top:0px;
  816. width:14px;
  817. height:14px;
  818. }
  819. #u32042 {
  820. border-width:0px;
  821. position:absolute;
  822. left:20px;
  823. top:407px;
  824. width:14px;
  825. height:14px;
  826. display:flex;
  827. }
  828. #u32042 .text {
  829. position:absolute;
  830. align-self:center;
  831. padding:2px 2px 2px 2px;
  832. box-sizing:border-box;
  833. width:100%;
  834. }
  835. #u32042_text {
  836. border-width:0px;
  837. word-wrap:break-word;
  838. text-transform:none;
  839. visibility:hidden;
  840. }
  841. #u32043 {
  842. border-width:0px;
  843. position:absolute;
  844. left:0px;
  845. top:0px;
  846. width:0px;
  847. height:0px;
  848. }
  849. #u32044_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. #u32044 {
  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. #u32044 .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. #u32044_text {
  891. border-width:0px;
  892. white-space:nowrap;
  893. text-transform:none;
  894. }
  895. #u32045_img {
  896. border-width:0px;
  897. position:absolute;
  898. left:0px;
  899. top:0px;
  900. width:14px;
  901. height:14px;
  902. }
  903. #u32045 {
  904. border-width:0px;
  905. position:absolute;
  906. left:20px;
  907. top:449px;
  908. width:14px;
  909. height:14px;
  910. display:flex;
  911. }
  912. #u32045 .text {
  913. position:absolute;
  914. align-self:center;
  915. padding:2px 2px 2px 2px;
  916. box-sizing:border-box;
  917. width:100%;
  918. }
  919. #u32045_text {
  920. border-width:0px;
  921. word-wrap:break-word;
  922. text-transform:none;
  923. visibility:hidden;
  924. }
  925. #u32046 {
  926. border-width:0px;
  927. position:absolute;
  928. left:0px;
  929. top:0px;
  930. width:0px;
  931. height:0px;
  932. }
  933. #u32047_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. #u32047 {
  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. #u32047 .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. #u32047_text {
  975. border-width:0px;
  976. white-space:nowrap;
  977. text-transform:none;
  978. }
  979. #u32048_img {
  980. border-width:0px;
  981. position:absolute;
  982. left:0px;
  983. top:0px;
  984. width:14px;
  985. height:14px;
  986. }
  987. #u32048 {
  988. border-width:0px;
  989. position:absolute;
  990. left:20px;
  991. top:575px;
  992. width:14px;
  993. height:14px;
  994. display:flex;
  995. }
  996. #u32048 .text {
  997. position:absolute;
  998. align-self:center;
  999. padding:2px 2px 2px 2px;
  1000. box-sizing:border-box;
  1001. width:100%;
  1002. }
  1003. #u32048_text {
  1004. border-width:0px;
  1005. word-wrap:break-word;
  1006. text-transform:none;
  1007. visibility:hidden;
  1008. }
  1009. #u32049 {
  1010. border-width:0px;
  1011. position:absolute;
  1012. left:0px;
  1013. top:0px;
  1014. width:0px;
  1015. height:0px;
  1016. }
  1017. #u32050_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. #u32050 {
  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. #u32050 .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. #u32050_text {
  1059. border-width:0px;
  1060. white-space:nowrap;
  1061. text-transform:none;
  1062. }
  1063. #u32051_img {
  1064. border-width:0px;
  1065. position:absolute;
  1066. left:0px;
  1067. top:0px;
  1068. width:14px;
  1069. height:14px;
  1070. }
  1071. #u32051 {
  1072. border-width:0px;
  1073. position:absolute;
  1074. left:20px;
  1075. top:533px;
  1076. width:14px;
  1077. height:14px;
  1078. display:flex;
  1079. }
  1080. #u32051 .text {
  1081. position:absolute;
  1082. align-self:center;
  1083. padding:2px 2px 2px 2px;
  1084. box-sizing:border-box;
  1085. width:100%;
  1086. }
  1087. #u32051_text {
  1088. border-width:0px;
  1089. word-wrap:break-word;
  1090. text-transform:none;
  1091. visibility:hidden;
  1092. }
  1093. #u32052_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. #u32052_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. #u32052_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. #u32052 {
  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. #u32052 .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. #u32052_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. #u32052.disabled {
  1184. }
  1185. .u32052_input_option {
  1186. font-size:14px;
  1187. }
  1188. #u32053_img {
  1189. border-width:0px;
  1190. position:absolute;
  1191. left:0px;
  1192. top:0px;
  1193. width:22px;
  1194. height:22px;
  1195. }
  1196. #u32053 {
  1197. border-width:0px;
  1198. position:absolute;
  1199. left:1194px;
  1200. top:15px;
  1201. width:22px;
  1202. height:22px;
  1203. display:flex;
  1204. }
  1205. #u32053 .text {
  1206. position:absolute;
  1207. align-self:center;
  1208. padding:2px 2px 2px 2px;
  1209. box-sizing:border-box;
  1210. width:100%;
  1211. }
  1212. #u32053_text {
  1213. border-width:0px;
  1214. word-wrap:break-word;
  1215. text-transform:none;
  1216. visibility:hidden;
  1217. }
  1218. #u32054_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. #u32054 {
  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. #u32054 .text {
  1253. position:absolute;
  1254. align-self:center;
  1255. padding:0px 0px 0px 0px;
  1256. box-sizing:border-box;
  1257. width:100%;
  1258. }
  1259. #u32054_text {
  1260. border-width:0px;
  1261. word-wrap:break-word;
  1262. text-transform:none;
  1263. }
  1264. #u32055_img {
  1265. border-width:0px;
  1266. position:absolute;
  1267. left:0px;
  1268. top:0px;
  1269. width:2px;
  1270. height:12px;
  1271. }
  1272. #u32055 {
  1273. border-width:0px;
  1274. position:absolute;
  1275. left:1452px;
  1276. top:19px;
  1277. width:1px;
  1278. height:11px;
  1279. display:flex;
  1280. }
  1281. #u32055 .text {
  1282. position:absolute;
  1283. align-self:center;
  1284. padding:2px 2px 2px 2px;
  1285. box-sizing:border-box;
  1286. width:100%;
  1287. }
  1288. #u32055_text {
  1289. border-width:0px;
  1290. word-wrap:break-word;
  1291. text-transform:none;
  1292. visibility:hidden;
  1293. }
  1294. #u32056 {
  1295. border-width:0px;
  1296. position:absolute;
  1297. left:0px;
  1298. top:0px;
  1299. width:0px;
  1300. height:0px;
  1301. }
  1302. #u32057_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. #u32057 {
  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. #u32057 .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. #u32057_text {
  1344. border-width:0px;
  1345. white-space:nowrap;
  1346. text-transform:none;
  1347. }
  1348. #u32058_img {
  1349. border-width:0px;
  1350. position:absolute;
  1351. left:0px;
  1352. top:0px;
  1353. width:14px;
  1354. height:14px;
  1355. }
  1356. #u32058 {
  1357. border-width:0px;
  1358. position:absolute;
  1359. left:20px;
  1360. top:323px;
  1361. width:14px;
  1362. height:14px;
  1363. display:flex;
  1364. }
  1365. #u32058 .text {
  1366. position:absolute;
  1367. align-self:center;
  1368. padding:2px 2px 2px 2px;
  1369. box-sizing:border-box;
  1370. width:100%;
  1371. }
  1372. #u32058_text {
  1373. border-width:0px;
  1374. word-wrap:break-word;
  1375. text-transform:none;
  1376. visibility:hidden;
  1377. }
  1378. #u32059 {
  1379. border-width:0px;
  1380. position:absolute;
  1381. left:0px;
  1382. top:0px;
  1383. width:0px;
  1384. height:0px;
  1385. }
  1386. #u32060_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. #u32060 {
  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. #u32060 .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. #u32060_text {
  1428. border-width:0px;
  1429. white-space:nowrap;
  1430. text-transform:none;
  1431. }
  1432. #u32061_img {
  1433. border-width:0px;
  1434. position:absolute;
  1435. left:0px;
  1436. top:0px;
  1437. width:14px;
  1438. height:14px;
  1439. }
  1440. #u32061 {
  1441. border-width:0px;
  1442. position:absolute;
  1443. left:20px;
  1444. top:365px;
  1445. width:14px;
  1446. height:14px;
  1447. display:flex;
  1448. }
  1449. #u32061 .text {
  1450. position:absolute;
  1451. align-self:center;
  1452. padding:2px 2px 2px 2px;
  1453. box-sizing:border-box;
  1454. width:100%;
  1455. }
  1456. #u32061_text {
  1457. border-width:0px;
  1458. word-wrap:break-word;
  1459. text-transform:none;
  1460. visibility:hidden;
  1461. }
  1462. #u32062 {
  1463. border-width:0px;
  1464. position:absolute;
  1465. left:0px;
  1466. top:0px;
  1467. width:0px;
  1468. height:0px;
  1469. }
  1470. #u32063_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. #u32063 {
  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. #u32063 .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. #u32063_text {
  1512. border-width:0px;
  1513. white-space:nowrap;
  1514. text-transform:none;
  1515. }
  1516. #u32064_img {
  1517. border-width:0px;
  1518. position:absolute;
  1519. left:0px;
  1520. top:0px;
  1521. width:14px;
  1522. height:14px;
  1523. }
  1524. #u32064 {
  1525. border-width:0px;
  1526. position:absolute;
  1527. left:20px;
  1528. top:155px;
  1529. width:14px;
  1530. height:14px;
  1531. display:flex;
  1532. }
  1533. #u32064 .text {
  1534. position:absolute;
  1535. align-self:center;
  1536. padding:2px 2px 2px 2px;
  1537. box-sizing:border-box;
  1538. width:100%;
  1539. }
  1540. #u32064_text {
  1541. border-width:0px;
  1542. word-wrap:break-word;
  1543. text-transform:none;
  1544. visibility:hidden;
  1545. }
  1546. #u32065 {
  1547. border-width:0px;
  1548. position:absolute;
  1549. left:0px;
  1550. top:0px;
  1551. width:0px;
  1552. height:0px;
  1553. }
  1554. #u32066_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. #u32066 {
  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. #u32066 .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. #u32066_text {
  1596. border-width:0px;
  1597. white-space:nowrap;
  1598. text-transform:none;
  1599. }
  1600. #u32067_img {
  1601. border-width:0px;
  1602. position:absolute;
  1603. left:0px;
  1604. top:0px;
  1605. width:14px;
  1606. height:14px;
  1607. }
  1608. #u32067 {
  1609. border-width:0px;
  1610. position:absolute;
  1611. left:20px;
  1612. top:491px;
  1613. width:14px;
  1614. height:14px;
  1615. display:flex;
  1616. }
  1617. #u32067 .text {
  1618. position:absolute;
  1619. align-self:center;
  1620. padding:2px 2px 2px 2px;
  1621. box-sizing:border-box;
  1622. width:100%;
  1623. }
  1624. #u32067_text {
  1625. border-width:0px;
  1626. word-wrap:break-word;
  1627. text-transform:none;
  1628. visibility:hidden;
  1629. }
  1630. #u32068 {
  1631. border-width:0px;
  1632. position:absolute;
  1633. left:0px;
  1634. top:0px;
  1635. width:0px;
  1636. height:0px;
  1637. }
  1638. #u32069_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. #u32069 {
  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. #u32069 .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. #u32069_text {
  1680. border-width:0px;
  1681. white-space:nowrap;
  1682. text-transform:none;
  1683. }
  1684. #u32070_img {
  1685. border-width:0px;
  1686. position:absolute;
  1687. left:0px;
  1688. top:0px;
  1689. width:14px;
  1690. height:14px;
  1691. }
  1692. #u32070 {
  1693. border-width:0px;
  1694. position:absolute;
  1695. left:20px;
  1696. top:197px;
  1697. width:14px;
  1698. height:14px;
  1699. display:flex;
  1700. }
  1701. #u32070 .text {
  1702. position:absolute;
  1703. align-self:center;
  1704. padding:2px 2px 2px 2px;
  1705. box-sizing:border-box;
  1706. width:100%;
  1707. }
  1708. #u32070_text {
  1709. border-width:0px;
  1710. word-wrap:break-word;
  1711. text-transform:none;
  1712. visibility:hidden;
  1713. }
  1714. #u32071_div {
  1715. border-width:0px;
  1716. position:absolute;
  1717. left:0px;
  1718. top:0px;
  1719. width:1260px;
  1720. height:1198px;
  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(0, 0, 0, 0.349019607843137);
  1726. -webkit-box-shadow:0px 0px 3px rgba(0, 0, 0, 0.349019607843137);
  1727. box-shadow:0px 0px 3px rgba(0, 0, 0, 0.349019607843137);
  1728. }
  1729. #u32071 {
  1730. border-width:0px;
  1731. position:absolute;
  1732. left:330px;
  1733. top:50px;
  1734. width:1260px;
  1735. height:1198px;
  1736. display:flex;
  1737. }
  1738. #u32071 .text {
  1739. position:absolute;
  1740. align-self:center;
  1741. padding:2px 2px 2px 2px;
  1742. box-sizing:border-box;
  1743. width:100%;
  1744. }
  1745. #u32071_text {
  1746. border-width:0px;
  1747. word-wrap:break-word;
  1748. text-transform:none;
  1749. visibility:hidden;
  1750. }
  1751. #u32072 {
  1752. border-width:0px;
  1753. position:absolute;
  1754. left:0px;
  1755. top:0px;
  1756. width:0px;
  1757. height:0px;
  1758. }
  1759. #u32073_div {
  1760. border-width:0px;
  1761. position:absolute;
  1762. left:0px;
  1763. top:0px;
  1764. width:59px;
  1765. height:30px;
  1766. background:inherit;
  1767. background-color:rgba(0, 153, 255, 1);
  1768. box-sizing:border-box;
  1769. border-width:1px;
  1770. border-style:solid;
  1771. border-color:rgba(0, 153, 255, 1);
  1772. border-radius:4px;
  1773. -moz-box-shadow:none;
  1774. -webkit-box-shadow:none;
  1775. box-shadow:none;
  1776. font-family:'Microsoft YaHei', sans-serif;
  1777. font-weight:400;
  1778. font-style:normal;
  1779. font-size:14px;
  1780. color:#FFFFFF;
  1781. }
  1782. #u32073 {
  1783. border-width:0px;
  1784. position:absolute;
  1785. left:1250px;
  1786. top:113px;
  1787. width:59px;
  1788. height:30px;
  1789. display:flex;
  1790. font-family:'Microsoft YaHei', sans-serif;
  1791. font-weight:400;
  1792. font-style:normal;
  1793. font-size:14px;
  1794. color:#FFFFFF;
  1795. }
  1796. #u32073 .text {
  1797. position:absolute;
  1798. align-self:center;
  1799. padding:5px 15px 5px 15px;
  1800. box-sizing:border-box;
  1801. width:100%;
  1802. }
  1803. #u32073_text {
  1804. border-width:0px;
  1805. white-space:nowrap;
  1806. text-transform:none;
  1807. }
  1808. #u32074_div {
  1809. border-width:0px;
  1810. position:absolute;
  1811. left:0px;
  1812. top:0px;
  1813. width:55px;
  1814. height:30px;
  1815. background:inherit;
  1816. background-color:rgba(255, 255, 255, 1);
  1817. box-sizing:border-box;
  1818. border-width:1px;
  1819. border-style:solid;
  1820. border-color:rgba(170, 170, 170, 1);
  1821. border-radius:4px;
  1822. -moz-box-shadow:none;
  1823. -webkit-box-shadow:none;
  1824. box-shadow:none;
  1825. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1826. font-weight:400;
  1827. font-style:normal;
  1828. font-size:12px;
  1829. color:#555555;
  1830. }
  1831. #u32074 {
  1832. border-width:0px;
  1833. position:absolute;
  1834. left:1319px;
  1835. top:113px;
  1836. width:55px;
  1837. height:30px;
  1838. display:flex;
  1839. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1840. font-weight:400;
  1841. font-style:normal;
  1842. font-size:12px;
  1843. color:#555555;
  1844. }
  1845. #u32074 .text {
  1846. position:absolute;
  1847. align-self:center;
  1848. padding:5px 15px 5px 15px;
  1849. box-sizing:border-box;
  1850. width:100%;
  1851. }
  1852. #u32074_text {
  1853. border-width:0px;
  1854. white-space:nowrap;
  1855. text-transform:none;
  1856. }
  1857. #u32075 {
  1858. border-width:0px;
  1859. position:absolute;
  1860. left:0px;
  1861. top:0px;
  1862. width:0px;
  1863. height:0px;
  1864. }
  1865. #u32076_div {
  1866. border-width:0px;
  1867. position:absolute;
  1868. left:0px;
  1869. top:0px;
  1870. width:140px;
  1871. height:30px;
  1872. background:inherit;
  1873. background-color:rgba(255, 255, 255, 1);
  1874. box-sizing:border-box;
  1875. border-width:1px;
  1876. border-style:solid;
  1877. border-color:rgba(215, 215, 215, 1);
  1878. border-radius:4px;
  1879. -moz-box-shadow:none;
  1880. -webkit-box-shadow:none;
  1881. box-shadow:none;
  1882. font-size:11px;
  1883. }
  1884. #u32076 {
  1885. border-width:0px;
  1886. position:absolute;
  1887. left:800px;
  1888. top:111px;
  1889. width:140px;
  1890. height:30px;
  1891. display:flex;
  1892. font-size:11px;
  1893. }
  1894. #u32076 .text {
  1895. position:absolute;
  1896. align-self:center;
  1897. padding:2px 2px 2px 2px;
  1898. box-sizing:border-box;
  1899. width:100%;
  1900. }
  1901. #u32076_text {
  1902. border-width:0px;
  1903. word-wrap:break-word;
  1904. text-transform:none;
  1905. visibility:hidden;
  1906. }
  1907. #u32077_input {
  1908. position:absolute;
  1909. left:0px;
  1910. top:0px;
  1911. width:120px;
  1912. height:23px;
  1913. padding:2px 2px 2px 2px;
  1914. font-family:'ArialMT', 'Arial', sans-serif;
  1915. font-weight:400;
  1916. font-style:normal;
  1917. font-size:11px;
  1918. letter-spacing:normal;
  1919. color:#AAAAAA;
  1920. vertical-align:none;
  1921. text-align:left;
  1922. text-transform:none;
  1923. background-color:transparent;
  1924. border-color:transparent;
  1925. }
  1926. #u32077_input.disabled {
  1927. position:absolute;
  1928. left:0px;
  1929. top:0px;
  1930. width:120px;
  1931. height:23px;
  1932. padding:2px 2px 2px 2px;
  1933. font-family:'ArialMT', 'Arial', sans-serif;
  1934. font-weight:400;
  1935. font-style:normal;
  1936. font-size:11px;
  1937. letter-spacing:normal;
  1938. color:#AAAAAA;
  1939. vertical-align:none;
  1940. text-align:left;
  1941. text-transform:none;
  1942. background-color:transparent;
  1943. border-color:transparent;
  1944. }
  1945. #u32077_div {
  1946. border-width:0px;
  1947. position:absolute;
  1948. left:0px;
  1949. top:0px;
  1950. width:120px;
  1951. height:23px;
  1952. background:inherit;
  1953. background-color:rgba(255, 255, 255, 1);
  1954. border:none;
  1955. border-radius:0px;
  1956. -moz-box-shadow:none;
  1957. -webkit-box-shadow:none;
  1958. box-shadow:none;
  1959. font-size:11px;
  1960. color:#AAAAAA;
  1961. }
  1962. #u32077 {
  1963. border-width:0px;
  1964. position:absolute;
  1965. left:807px;
  1966. top:113px;
  1967. width:120px;
  1968. height:23px;
  1969. display:flex;
  1970. font-size:11px;
  1971. color:#AAAAAA;
  1972. }
  1973. #u32077 .text {
  1974. position:absolute;
  1975. align-self:flex-start;
  1976. padding:2px 2px 2px 2px;
  1977. box-sizing:border-box;
  1978. width:100%;
  1979. }
  1980. #u32077_div.disabled {
  1981. border-width:0px;
  1982. position:absolute;
  1983. left:0px;
  1984. top:0px;
  1985. width:120px;
  1986. height:23px;
  1987. background:inherit;
  1988. background-color:rgba(240, 240, 240, 1);
  1989. border:none;
  1990. border-radius:0px;
  1991. -moz-box-shadow:none;
  1992. -webkit-box-shadow:none;
  1993. box-shadow:none;
  1994. font-size:11px;
  1995. color:#AAAAAA;
  1996. }
  1997. #u32077.disabled {
  1998. }
  1999. .u32077_input_option {
  2000. font-size:11px;
  2001. }
  2002. #u32078 {
  2003. border-width:0px;
  2004. position:absolute;
  2005. left:0px;
  2006. top:0px;
  2007. width:0px;
  2008. height:0px;
  2009. }
  2010. #u32079_div {
  2011. border-width:0px;
  2012. position:absolute;
  2013. left:0px;
  2014. top:0px;
  2015. width:140px;
  2016. height:30px;
  2017. background:inherit;
  2018. background-color:rgba(255, 255, 255, 1);
  2019. box-sizing:border-box;
  2020. border-width:1px;
  2021. border-style:solid;
  2022. border-color:rgba(215, 215, 215, 1);
  2023. border-radius:4px;
  2024. -moz-box-shadow:none;
  2025. -webkit-box-shadow:none;
  2026. box-shadow:none;
  2027. font-size:11px;
  2028. }
  2029. #u32079 {
  2030. border-width:0px;
  2031. position:absolute;
  2032. left:650px;
  2033. top:111px;
  2034. width:140px;
  2035. height:30px;
  2036. display:flex;
  2037. font-size:11px;
  2038. }
  2039. #u32079 .text {
  2040. position:absolute;
  2041. align-self:center;
  2042. padding:2px 2px 2px 2px;
  2043. box-sizing:border-box;
  2044. width:100%;
  2045. }
  2046. #u32079_text {
  2047. border-width:0px;
  2048. word-wrap:break-word;
  2049. text-transform:none;
  2050. visibility:hidden;
  2051. }
  2052. #u32080_input {
  2053. position:absolute;
  2054. left:0px;
  2055. top:0px;
  2056. width:120px;
  2057. height:23px;
  2058. padding:2px 2px 2px 2px;
  2059. font-family:'ArialMT', 'Arial', sans-serif;
  2060. font-weight:400;
  2061. font-style:normal;
  2062. font-size:11px;
  2063. letter-spacing:normal;
  2064. color:#AAAAAA;
  2065. vertical-align:none;
  2066. text-align:left;
  2067. text-transform:none;
  2068. background-color:transparent;
  2069. border-color:transparent;
  2070. }
  2071. #u32080_input.disabled {
  2072. position:absolute;
  2073. left:0px;
  2074. top:0px;
  2075. width:120px;
  2076. height:23px;
  2077. padding:2px 2px 2px 2px;
  2078. font-family:'ArialMT', 'Arial', sans-serif;
  2079. font-weight:400;
  2080. font-style:normal;
  2081. font-size:11px;
  2082. letter-spacing:normal;
  2083. color:#AAAAAA;
  2084. vertical-align:none;
  2085. text-align:left;
  2086. text-transform:none;
  2087. background-color:transparent;
  2088. border-color:transparent;
  2089. }
  2090. #u32080_div {
  2091. border-width:0px;
  2092. position:absolute;
  2093. left:0px;
  2094. top:0px;
  2095. width:120px;
  2096. height:23px;
  2097. background:inherit;
  2098. background-color:rgba(255, 255, 255, 1);
  2099. border:none;
  2100. border-radius:0px;
  2101. -moz-box-shadow:none;
  2102. -webkit-box-shadow:none;
  2103. box-shadow:none;
  2104. font-size:11px;
  2105. color:#AAAAAA;
  2106. }
  2107. #u32080 {
  2108. border-width:0px;
  2109. position:absolute;
  2110. left:657px;
  2111. top:113px;
  2112. width:120px;
  2113. height:23px;
  2114. display:flex;
  2115. font-size:11px;
  2116. color:#AAAAAA;
  2117. }
  2118. #u32080 .text {
  2119. position:absolute;
  2120. align-self:flex-start;
  2121. padding:2px 2px 2px 2px;
  2122. box-sizing:border-box;
  2123. width:100%;
  2124. }
  2125. #u32080_div.disabled {
  2126. border-width:0px;
  2127. position:absolute;
  2128. left:0px;
  2129. top:0px;
  2130. width:120px;
  2131. height:23px;
  2132. background:inherit;
  2133. background-color:rgba(240, 240, 240, 1);
  2134. border:none;
  2135. border-radius:0px;
  2136. -moz-box-shadow:none;
  2137. -webkit-box-shadow:none;
  2138. box-shadow:none;
  2139. font-size:11px;
  2140. color:#AAAAAA;
  2141. }
  2142. #u32080.disabled {
  2143. }
  2144. .u32080_input_option {
  2145. font-size:11px;
  2146. }
  2147. #u32081 {
  2148. border-width:0px;
  2149. position:absolute;
  2150. left:0px;
  2151. top:0px;
  2152. width:0px;
  2153. height:0px;
  2154. }
  2155. #u32082_div {
  2156. border-width:0px;
  2157. position:absolute;
  2158. left:0px;
  2159. top:0px;
  2160. width:140px;
  2161. height:30px;
  2162. background:inherit;
  2163. background-color:rgba(255, 255, 255, 1);
  2164. box-sizing:border-box;
  2165. border-width:1px;
  2166. border-style:solid;
  2167. border-color:rgba(215, 215, 215, 1);
  2168. border-radius:4px;
  2169. -moz-box-shadow:none;
  2170. -webkit-box-shadow:none;
  2171. box-shadow:none;
  2172. font-size:11px;
  2173. }
  2174. #u32082 {
  2175. border-width:0px;
  2176. position:absolute;
  2177. left:950px;
  2178. top:113px;
  2179. width:140px;
  2180. height:30px;
  2181. display:flex;
  2182. font-size:11px;
  2183. }
  2184. #u32082 .text {
  2185. position:absolute;
  2186. align-self:center;
  2187. padding:2px 2px 2px 2px;
  2188. box-sizing:border-box;
  2189. width:100%;
  2190. }
  2191. #u32082_text {
  2192. border-width:0px;
  2193. word-wrap:break-word;
  2194. text-transform:none;
  2195. visibility:hidden;
  2196. }
  2197. #u32083_input {
  2198. position:absolute;
  2199. left:0px;
  2200. top:0px;
  2201. width:120px;
  2202. height:23px;
  2203. padding:2px 2px 2px 2px;
  2204. font-family:'ArialMT', 'Arial', sans-serif;
  2205. font-weight:400;
  2206. font-style:normal;
  2207. font-size:11px;
  2208. letter-spacing:normal;
  2209. color:#AAAAAA;
  2210. vertical-align:none;
  2211. text-align:left;
  2212. text-transform:none;
  2213. background-color:transparent;
  2214. border-color:transparent;
  2215. }
  2216. #u32083_input.disabled {
  2217. position:absolute;
  2218. left:0px;
  2219. top:0px;
  2220. width:120px;
  2221. height:23px;
  2222. padding:2px 2px 2px 2px;
  2223. font-family:'ArialMT', 'Arial', sans-serif;
  2224. font-weight:400;
  2225. font-style:normal;
  2226. font-size:11px;
  2227. letter-spacing:normal;
  2228. color:#AAAAAA;
  2229. vertical-align:none;
  2230. text-align:left;
  2231. text-transform:none;
  2232. background-color:transparent;
  2233. border-color:transparent;
  2234. }
  2235. #u32083_div {
  2236. border-width:0px;
  2237. position:absolute;
  2238. left:0px;
  2239. top:0px;
  2240. width:120px;
  2241. height:23px;
  2242. background:inherit;
  2243. background-color:rgba(255, 255, 255, 1);
  2244. border:none;
  2245. border-radius:0px;
  2246. -moz-box-shadow:none;
  2247. -webkit-box-shadow:none;
  2248. box-shadow:none;
  2249. font-size:11px;
  2250. color:#AAAAAA;
  2251. }
  2252. #u32083 {
  2253. border-width:0px;
  2254. position:absolute;
  2255. left:957px;
  2256. top:115px;
  2257. width:120px;
  2258. height:23px;
  2259. display:flex;
  2260. font-size:11px;
  2261. color:#AAAAAA;
  2262. }
  2263. #u32083 .text {
  2264. position:absolute;
  2265. align-self:flex-start;
  2266. padding:2px 2px 2px 2px;
  2267. box-sizing:border-box;
  2268. width:100%;
  2269. }
  2270. #u32083_div.disabled {
  2271. border-width:0px;
  2272. position:absolute;
  2273. left:0px;
  2274. top:0px;
  2275. width:120px;
  2276. height:23px;
  2277. background:inherit;
  2278. background-color:rgba(240, 240, 240, 1);
  2279. border:none;
  2280. border-radius:0px;
  2281. -moz-box-shadow:none;
  2282. -webkit-box-shadow:none;
  2283. box-shadow:none;
  2284. font-size:11px;
  2285. color:#AAAAAA;
  2286. }
  2287. #u32083.disabled {
  2288. }
  2289. .u32083_input_option {
  2290. font-size:11px;
  2291. }
  2292. #u32084 {
  2293. border-width:0px;
  2294. position:absolute;
  2295. left:0px;
  2296. top:0px;
  2297. width:0px;
  2298. height:0px;
  2299. }
  2300. #u32085_div {
  2301. border-width:0px;
  2302. position:absolute;
  2303. left:0px;
  2304. top:0px;
  2305. width:140px;
  2306. height:30px;
  2307. background:inherit;
  2308. background-color:rgba(255, 255, 255, 1);
  2309. box-sizing:border-box;
  2310. border-width:1px;
  2311. border-style:solid;
  2312. border-color:rgba(201, 201, 201, 1);
  2313. border-radius:4px;
  2314. -moz-box-shadow:none;
  2315. -webkit-box-shadow:none;
  2316. box-shadow:none;
  2317. font-family:'Microsoft YaHei', sans-serif;
  2318. font-weight:400;
  2319. font-style:normal;
  2320. font-size:14px;
  2321. color:#CCCCCC;
  2322. text-align:left;
  2323. }
  2324. #u32085 {
  2325. border-width:0px;
  2326. position:absolute;
  2327. left:1100px;
  2328. top:113px;
  2329. width:140px;
  2330. height:30px;
  2331. display:flex;
  2332. font-family:'Microsoft YaHei', sans-serif;
  2333. font-weight:400;
  2334. font-style:normal;
  2335. font-size:14px;
  2336. color:#CCCCCC;
  2337. text-align:left;
  2338. }
  2339. #u32085 .text {
  2340. position:absolute;
  2341. align-self:center;
  2342. padding:2px 8px 2px 8px;
  2343. box-sizing:border-box;
  2344. width:100%;
  2345. }
  2346. #u32085_text {
  2347. border-width:0px;
  2348. word-wrap:break-word;
  2349. text-transform:none;
  2350. visibility:hidden;
  2351. }
  2352. #u32086_input {
  2353. position:absolute;
  2354. left:0px;
  2355. top:0px;
  2356. width:127px;
  2357. height:25px;
  2358. padding:2px 2px 2px 2px;
  2359. font-family:'Microsoft YaHei', sans-serif;
  2360. font-weight:400;
  2361. font-style:normal;
  2362. font-size:10px;
  2363. letter-spacing:normal;
  2364. color:#000000;
  2365. vertical-align:none;
  2366. text-align:left;
  2367. text-transform:none;
  2368. background-color:transparent;
  2369. border-color:transparent;
  2370. }
  2371. #u32086_input.disabled {
  2372. position:absolute;
  2373. left:0px;
  2374. top:0px;
  2375. width:127px;
  2376. height:25px;
  2377. padding:2px 2px 2px 2px;
  2378. font-family:'Microsoft YaHei', sans-serif;
  2379. font-weight:400;
  2380. font-style:normal;
  2381. font-size:10px;
  2382. letter-spacing:normal;
  2383. color:#000000;
  2384. vertical-align:none;
  2385. text-align:left;
  2386. text-transform:none;
  2387. background-color:transparent;
  2388. border-color:transparent;
  2389. }
  2390. #u32086_div {
  2391. border-width:0px;
  2392. position:absolute;
  2393. left:0px;
  2394. top:0px;
  2395. width:127px;
  2396. height:25px;
  2397. background:inherit;
  2398. background-color:rgba(255, 255, 255, 1);
  2399. border:none;
  2400. border-radius:0px;
  2401. -moz-box-shadow:none;
  2402. -webkit-box-shadow:none;
  2403. box-shadow:none;
  2404. font-family:'Microsoft YaHei', sans-serif;
  2405. font-weight:400;
  2406. font-style:normal;
  2407. font-size:10px;
  2408. }
  2409. #u32086 {
  2410. border-width:0px;
  2411. position:absolute;
  2412. left:1108px;
  2413. top:114px;
  2414. width:127px;
  2415. height:25px;
  2416. display:flex;
  2417. font-family:'Microsoft YaHei', sans-serif;
  2418. font-weight:400;
  2419. font-style:normal;
  2420. font-size:10px;
  2421. }
  2422. #u32086 .text {
  2423. position:absolute;
  2424. align-self:center;
  2425. padding:2px 2px 2px 2px;
  2426. box-sizing:border-box;
  2427. width:100%;
  2428. }
  2429. #u32086_div.disabled {
  2430. border-width:0px;
  2431. position:absolute;
  2432. left:0px;
  2433. top:0px;
  2434. width:127px;
  2435. height:25px;
  2436. background:inherit;
  2437. background-color:rgba(240, 240, 240, 1);
  2438. border:none;
  2439. border-radius:0px;
  2440. -moz-box-shadow:none;
  2441. -webkit-box-shadow:none;
  2442. box-shadow:none;
  2443. font-family:'Microsoft YaHei', sans-serif;
  2444. font-weight:400;
  2445. font-style:normal;
  2446. font-size:10px;
  2447. }
  2448. #u32086.disabled {
  2449. }
  2450. #u32087 {
  2451. border-width:0px;
  2452. position:absolute;
  2453. left:0px;
  2454. top:0px;
  2455. width:0px;
  2456. height:0px;
  2457. }
  2458. #u32088 {
  2459. border-width:0px;
  2460. position:absolute;
  2461. left:0px;
  2462. top:0px;
  2463. width:0px;
  2464. height:0px;
  2465. }
  2466. #u32089_div {
  2467. border-width:0px;
  2468. position:absolute;
  2469. left:0px;
  2470. top:0px;
  2471. width:630px;
  2472. height:1196px;
  2473. background:inherit;
  2474. background-color:rgba(255, 255, 255, 1);
  2475. box-sizing:border-box;
  2476. border-width:1px;
  2477. border-style:solid;
  2478. border-color:rgba(215, 215, 215, 1);
  2479. border-radius:0px;
  2480. -moz-box-shadow:none;
  2481. -webkit-box-shadow:none;
  2482. box-shadow:none;
  2483. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2484. font-weight:400;
  2485. font-style:normal;
  2486. font-size:14px;
  2487. color:#AAAAAA;
  2488. text-align:center;
  2489. line-height:30px;
  2490. }
  2491. #u32089 {
  2492. border-width:0px;
  2493. position:absolute;
  2494. left:1650px;
  2495. top:47px;
  2496. width:630px;
  2497. height:1196px;
  2498. display:flex;
  2499. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2500. font-weight:400;
  2501. font-style:normal;
  2502. font-size:14px;
  2503. color:#AAAAAA;
  2504. text-align:center;
  2505. line-height:30px;
  2506. }
  2507. #u32089 .text {
  2508. position:absolute;
  2509. align-self:center;
  2510. padding:5px 10px 5px 10px;
  2511. box-sizing:border-box;
  2512. width:100%;
  2513. }
  2514. #u32089_text {
  2515. border-width:0px;
  2516. word-wrap:break-word;
  2517. text-transform:none;
  2518. visibility:hidden;
  2519. }
  2520. #u32090_div {
  2521. border-width:0px;
  2522. position:absolute;
  2523. left:0px;
  2524. top:0px;
  2525. width:83px;
  2526. height:35px;
  2527. background:inherit;
  2528. background-color:rgba(255, 255, 255, 0);
  2529. border:none;
  2530. border-top:0px;
  2531. border-right:0px;
  2532. border-bottom:0px;
  2533. border-radius:0px;
  2534. border-top-left-radius:0px;
  2535. border-bottom-left-radius:0px;
  2536. -moz-box-shadow:none;
  2537. -webkit-box-shadow:none;
  2538. box-shadow:none;
  2539. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  2540. font-weight:500;
  2541. font-style:normal;
  2542. font-size:18px;
  2543. }
  2544. #u32090 {
  2545. border-width:0px;
  2546. position:absolute;
  2547. left:1670px;
  2548. top:65px;
  2549. width:83px;
  2550. height:35px;
  2551. display:flex;
  2552. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  2553. font-weight:500;
  2554. font-style:normal;
  2555. font-size:18px;
  2556. }
  2557. #u32090 .text {
  2558. position:absolute;
  2559. align-self:center;
  2560. padding:5px 10px 5px 0px;
  2561. box-sizing:border-box;
  2562. width:100%;
  2563. }
  2564. #u32090_text {
  2565. border-width:0px;
  2566. white-space:nowrap;
  2567. text-transform:none;
  2568. }
  2569. #u32091_div {
  2570. border-width:0px;
  2571. position:absolute;
  2572. left:0px;
  2573. top:0px;
  2574. width:40px;
  2575. height:40px;
  2576. background:inherit;
  2577. background-color:rgba(255, 255, 255, 0);
  2578. border:none;
  2579. border-top:0px;
  2580. border-right:0px;
  2581. border-bottom:0px;
  2582. border-radius:0px;
  2583. border-top-left-radius:0px;
  2584. border-bottom-left-radius:0px;
  2585. -moz-box-shadow:none;
  2586. -webkit-box-shadow:none;
  2587. box-shadow:none;
  2588. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  2589. font-weight:500;
  2590. font-style:normal;
  2591. font-size:18px;
  2592. text-align:center;
  2593. }
  2594. #u32091 {
  2595. border-width:0px;
  2596. position:absolute;
  2597. left:2240px;
  2598. top:47px;
  2599. width:40px;
  2600. height:40px;
  2601. display:flex;
  2602. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  2603. font-weight:500;
  2604. font-style:normal;
  2605. font-size:18px;
  2606. text-align:center;
  2607. }
  2608. #u32091 .text {
  2609. position:absolute;
  2610. align-self:center;
  2611. padding:5px 10px 5px 0px;
  2612. box-sizing:border-box;
  2613. width:100%;
  2614. }
  2615. #u32091_text {
  2616. border-width:0px;
  2617. word-wrap:break-word;
  2618. text-transform:none;
  2619. }
  2620. #u32092_img {
  2621. border-width:0px;
  2622. position:absolute;
  2623. left:0px;
  2624. top:0px;
  2625. width:13px;
  2626. height:13px;
  2627. }
  2628. #u32092 {
  2629. border-width:0px;
  2630. position:absolute;
  2631. left:2228px;
  2632. top:63px;
  2633. width:13px;
  2634. height:13px;
  2635. display:flex;
  2636. }
  2637. #u32092 .text {
  2638. position:absolute;
  2639. align-self:center;
  2640. padding:2px 2px 2px 2px;
  2641. box-sizing:border-box;
  2642. width:100%;
  2643. }
  2644. #u32092_text {
  2645. border-width:0px;
  2646. word-wrap:break-word;
  2647. text-transform:none;
  2648. visibility:hidden;
  2649. }
  2650. #u32093 {
  2651. border-width:0px;
  2652. position:absolute;
  2653. left:0px;
  2654. top:0px;
  2655. width:0px;
  2656. height:0px;
  2657. }
  2658. #u32094_div {
  2659. border-width:0px;
  2660. position:absolute;
  2661. left:0px;
  2662. top:0px;
  2663. width:630px;
  2664. height:50px;
  2665. background:inherit;
  2666. background-color:rgba(255, 255, 255, 1);
  2667. box-sizing:border-box;
  2668. border-width:1px;
  2669. border-style:solid;
  2670. border-color:rgba(215, 215, 215, 1);
  2671. border-radius:0px;
  2672. -moz-box-shadow:none;
  2673. -webkit-box-shadow:none;
  2674. box-shadow:none;
  2675. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2676. font-weight:400;
  2677. font-style:normal;
  2678. font-size:14px;
  2679. color:#AAAAAA;
  2680. text-align:center;
  2681. line-height:30px;
  2682. }
  2683. #u32094 {
  2684. border-width:0px;
  2685. position:absolute;
  2686. left:1650px;
  2687. top:1193px;
  2688. width:630px;
  2689. height:50px;
  2690. display:flex;
  2691. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2692. font-weight:400;
  2693. font-style:normal;
  2694. font-size:14px;
  2695. color:#AAAAAA;
  2696. text-align:center;
  2697. line-height:30px;
  2698. }
  2699. #u32094 .text {
  2700. position:absolute;
  2701. align-self:center;
  2702. padding:5px 10px 5px 10px;
  2703. box-sizing:border-box;
  2704. width:100%;
  2705. }
  2706. #u32094_text {
  2707. border-width:0px;
  2708. word-wrap:break-word;
  2709. text-transform:none;
  2710. visibility:hidden;
  2711. }
  2712. #u32095_div {
  2713. border-width:0px;
  2714. position:absolute;
  2715. left:0px;
  2716. top:0px;
  2717. width:80px;
  2718. height:30px;
  2719. background:inherit;
  2720. background-color:rgba(24, 144, 255, 1);
  2721. border:none;
  2722. border-radius:4px;
  2723. -moz-box-shadow:none;
  2724. -webkit-box-shadow:none;
  2725. box-shadow:none;
  2726. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2727. font-weight:400;
  2728. font-style:normal;
  2729. font-size:14px;
  2730. color:#FFFFFF;
  2731. }
  2732. #u32095 {
  2733. border-width:0px;
  2734. position:absolute;
  2735. left:2178px;
  2736. top:1203px;
  2737. width:80px;
  2738. height:30px;
  2739. display:flex;
  2740. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2741. font-weight:400;
  2742. font-style:normal;
  2743. font-size:14px;
  2744. color:#FFFFFF;
  2745. }
  2746. #u32095 .text {
  2747. position:absolute;
  2748. align-self:center;
  2749. padding:2px 2px 2px 2px;
  2750. box-sizing:border-box;
  2751. width:100%;
  2752. }
  2753. #u32095_text {
  2754. border-width:0px;
  2755. word-wrap:break-word;
  2756. text-transform:none;
  2757. }
  2758. #u32096_div {
  2759. border-width:0px;
  2760. position:absolute;
  2761. left:0px;
  2762. top:0px;
  2763. width:80px;
  2764. height:30px;
  2765. background:inherit;
  2766. background-color:rgba(255, 255, 255, 1);
  2767. box-sizing:border-box;
  2768. border-width:1px;
  2769. border-style:solid;
  2770. border-color:rgba(121, 121, 121, 1);
  2771. border-radius:4px;
  2772. -moz-box-shadow:none;
  2773. -webkit-box-shadow:none;
  2774. box-shadow:none;
  2775. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2776. font-weight:400;
  2777. font-style:normal;
  2778. font-size:14px;
  2779. }
  2780. #u32096 {
  2781. border-width:0px;
  2782. position:absolute;
  2783. left:2088px;
  2784. top:1203px;
  2785. width:80px;
  2786. height:30px;
  2787. display:flex;
  2788. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2789. font-weight:400;
  2790. font-style:normal;
  2791. font-size:14px;
  2792. }
  2793. #u32096 .text {
  2794. position:absolute;
  2795. align-self:center;
  2796. padding:2px 2px 2px 2px;
  2797. box-sizing:border-box;
  2798. width:100%;
  2799. }
  2800. #u32096_text {
  2801. border-width:0px;
  2802. word-wrap:break-word;
  2803. text-transform:none;
  2804. }
  2805. #u32097 {
  2806. border-width:0px;
  2807. position:absolute;
  2808. left:0px;
  2809. top:0px;
  2810. width:0px;
  2811. height:0px;
  2812. }
  2813. #u32098_div {
  2814. border-width:0px;
  2815. position:absolute;
  2816. left:0px;
  2817. top:0px;
  2818. width:112px;
  2819. height:40px;
  2820. background:inherit;
  2821. background-color:rgba(255, 255, 255, 1);
  2822. box-sizing:border-box;
  2823. border-width:1px;
  2824. border-style:solid;
  2825. border-color:rgba(170, 170, 170, 1);
  2826. border-radius:4px;
  2827. -moz-box-shadow:none;
  2828. -webkit-box-shadow:none;
  2829. box-shadow:none;
  2830. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2831. font-weight:400;
  2832. font-style:normal;
  2833. text-align:right;
  2834. }
  2835. #u32098 {
  2836. border-width:0px;
  2837. position:absolute;
  2838. left:1700px;
  2839. top:239px;
  2840. width:112px;
  2841. height:40px;
  2842. display:flex;
  2843. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2844. font-weight:400;
  2845. font-style:normal;
  2846. text-align:right;
  2847. }
  2848. #u32098 .text {
  2849. position:absolute;
  2850. align-self:center;
  2851. padding:2px 10px 2px 10px;
  2852. box-sizing:border-box;
  2853. width:100%;
  2854. }
  2855. #u32098_text {
  2856. border-width:0px;
  2857. word-wrap:break-word;
  2858. text-transform:none;
  2859. visibility:hidden;
  2860. }
  2861. #u32099_input {
  2862. position:absolute;
  2863. left:0px;
  2864. top:0px;
  2865. width:108px;
  2866. height:30px;
  2867. padding:2px 2px 2px 2px;
  2868. font-family:'ArialMT', 'Arial', sans-serif;
  2869. font-weight:400;
  2870. font-style:normal;
  2871. font-size:13px;
  2872. letter-spacing:normal;
  2873. color:#000000;
  2874. vertical-align:none;
  2875. text-align:left;
  2876. text-transform:none;
  2877. background-color:transparent;
  2878. border-color:transparent;
  2879. }
  2880. #u32099_input.disabled {
  2881. position:absolute;
  2882. left:0px;
  2883. top:0px;
  2884. width:108px;
  2885. height:30px;
  2886. padding:2px 2px 2px 2px;
  2887. font-family:'ArialMT', 'Arial', sans-serif;
  2888. font-weight:400;
  2889. font-style:normal;
  2890. font-size:13px;
  2891. letter-spacing:normal;
  2892. color:#000000;
  2893. vertical-align:none;
  2894. text-align:left;
  2895. text-transform:none;
  2896. background-color:transparent;
  2897. border-color:transparent;
  2898. }
  2899. #u32099_div {
  2900. border-width:0px;
  2901. position:absolute;
  2902. left:0px;
  2903. top:0px;
  2904. width:108px;
  2905. height:30px;
  2906. background:inherit;
  2907. background-color:rgba(255, 255, 255, 1);
  2908. border:none;
  2909. border-radius:0px;
  2910. -moz-box-shadow:none;
  2911. -webkit-box-shadow:none;
  2912. box-shadow:none;
  2913. }
  2914. #u32099 {
  2915. border-width:0px;
  2916. position:absolute;
  2917. left:1702px;
  2918. top:244px;
  2919. width:108px;
  2920. height:30px;
  2921. display:flex;
  2922. }
  2923. #u32099 .text {
  2924. position:absolute;
  2925. align-self:flex-start;
  2926. padding:2px 2px 2px 2px;
  2927. box-sizing:border-box;
  2928. width:100%;
  2929. }
  2930. #u32099_div.disabled {
  2931. border-width:0px;
  2932. position:absolute;
  2933. left:0px;
  2934. top:0px;
  2935. width:108px;
  2936. height:30px;
  2937. background:inherit;
  2938. background-color:rgba(240, 240, 240, 1);
  2939. border:none;
  2940. border-radius:0px;
  2941. -moz-box-shadow:none;
  2942. -webkit-box-shadow:none;
  2943. box-shadow:none;
  2944. }
  2945. #u32099.disabled {
  2946. }
  2947. .u32099_input_option {
  2948. }
  2949. #u32100_div {
  2950. border-width:0px;
  2951. position:absolute;
  2952. left:0px;
  2953. top:0px;
  2954. width:46px;
  2955. height:40px;
  2956. background:inherit;
  2957. background-color:rgba(255, 255, 255, 0);
  2958. border:none;
  2959. border-top:0px;
  2960. border-right:0px;
  2961. border-bottom:0px;
  2962. border-radius:0px;
  2963. border-top-left-radius:0px;
  2964. border-bottom-left-radius:0px;
  2965. -moz-box-shadow:none;
  2966. -webkit-box-shadow:none;
  2967. box-shadow:none;
  2968. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2969. font-weight:400;
  2970. font-style:normal;
  2971. font-size:14px;
  2972. }
  2973. #u32100 {
  2974. border-width:0px;
  2975. position:absolute;
  2976. left:1700px;
  2977. top:199px;
  2978. width:46px;
  2979. height:40px;
  2980. display:flex;
  2981. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2982. font-weight:400;
  2983. font-style:normal;
  2984. font-size:14px;
  2985. }
  2986. #u32100 .text {
  2987. position:absolute;
  2988. align-self:center;
  2989. padding:5px 10px 5px 0px;
  2990. box-sizing:border-box;
  2991. width:100%;
  2992. }
  2993. #u32100_text {
  2994. border-width:0px;
  2995. white-space:nowrap;
  2996. text-transform:none;
  2997. }
  2998. #u32101 {
  2999. border-width:0px;
  3000. position:absolute;
  3001. left:0px;
  3002. top:0px;
  3003. width:0px;
  3004. height:0px;
  3005. }
  3006. #u32102_div {
  3007. border-width:0px;
  3008. position:absolute;
  3009. left:0px;
  3010. top:0px;
  3011. width:520px;
  3012. height:40px;
  3013. background:inherit;
  3014. background-color:rgba(255, 255, 255, 1);
  3015. box-sizing:border-box;
  3016. border-width:1px;
  3017. border-style:solid;
  3018. border-color:rgba(170, 170, 170, 1);
  3019. border-radius:4px;
  3020. -moz-box-shadow:none;
  3021. -webkit-box-shadow:none;
  3022. box-shadow:none;
  3023. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3024. font-weight:400;
  3025. font-style:normal;
  3026. text-align:right;
  3027. }
  3028. #u32102 {
  3029. border-width:0px;
  3030. position:absolute;
  3031. left:1700px;
  3032. top:159px;
  3033. width:520px;
  3034. height:40px;
  3035. display:flex;
  3036. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3037. font-weight:400;
  3038. font-style:normal;
  3039. text-align:right;
  3040. }
  3041. #u32102 .text {
  3042. position:absolute;
  3043. align-self:center;
  3044. padding:2px 10px 2px 10px;
  3045. box-sizing:border-box;
  3046. width:100%;
  3047. }
  3048. #u32102_text {
  3049. border-width:0px;
  3050. word-wrap:break-word;
  3051. text-transform:none;
  3052. visibility:hidden;
  3053. }
  3054. #u32103_input {
  3055. position:absolute;
  3056. left:0px;
  3057. top:0px;
  3058. width:501px;
  3059. height:30px;
  3060. padding:2px 2px 2px 2px;
  3061. font-family:'ArialMT', 'Arial', sans-serif;
  3062. font-weight:400;
  3063. font-style:normal;
  3064. font-size:13px;
  3065. letter-spacing:normal;
  3066. color:#000000;
  3067. vertical-align:none;
  3068. text-align:left;
  3069. text-transform:none;
  3070. background-color:transparent;
  3071. border-color:transparent;
  3072. }
  3073. #u32103_input.disabled {
  3074. position:absolute;
  3075. left:0px;
  3076. top:0px;
  3077. width:501px;
  3078. height:30px;
  3079. padding:2px 2px 2px 2px;
  3080. font-family:'ArialMT', 'Arial', sans-serif;
  3081. font-weight:400;
  3082. font-style:normal;
  3083. font-size:13px;
  3084. letter-spacing:normal;
  3085. color:#000000;
  3086. vertical-align:none;
  3087. text-align:left;
  3088. text-transform:none;
  3089. background-color:transparent;
  3090. border-color:transparent;
  3091. }
  3092. #u32103_div {
  3093. border-width:0px;
  3094. position:absolute;
  3095. left:0px;
  3096. top:0px;
  3097. width:501px;
  3098. height:30px;
  3099. background:inherit;
  3100. background-color:rgba(255, 255, 255, 1);
  3101. border:none;
  3102. border-radius:0px;
  3103. -moz-box-shadow:none;
  3104. -webkit-box-shadow:none;
  3105. box-shadow:none;
  3106. }
  3107. #u32103 {
  3108. border-width:0px;
  3109. position:absolute;
  3110. left:1707px;
  3111. top:164px;
  3112. width:501px;
  3113. height:30px;
  3114. display:flex;
  3115. }
  3116. #u32103 .text {
  3117. position:absolute;
  3118. align-self:flex-start;
  3119. padding:2px 2px 2px 2px;
  3120. box-sizing:border-box;
  3121. width:100%;
  3122. }
  3123. #u32103_div.disabled {
  3124. border-width:0px;
  3125. position:absolute;
  3126. left:0px;
  3127. top:0px;
  3128. width:501px;
  3129. height:30px;
  3130. background:inherit;
  3131. background-color:rgba(240, 240, 240, 1);
  3132. border:none;
  3133. border-radius:0px;
  3134. -moz-box-shadow:none;
  3135. -webkit-box-shadow:none;
  3136. box-shadow:none;
  3137. }
  3138. #u32103.disabled {
  3139. }
  3140. .u32103_input_option {
  3141. }
  3142. #u32104_div {
  3143. border-width:0px;
  3144. position:absolute;
  3145. left:0px;
  3146. top:0px;
  3147. width:83px;
  3148. height:40px;
  3149. background:inherit;
  3150. background-color:rgba(255, 255, 255, 0);
  3151. border:none;
  3152. border-top:0px;
  3153. border-right:0px;
  3154. border-bottom:0px;
  3155. border-radius:0px;
  3156. border-top-left-radius:0px;
  3157. border-bottom-left-radius:0px;
  3158. -moz-box-shadow:none;
  3159. -webkit-box-shadow:none;
  3160. box-shadow:none;
  3161. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3162. font-weight:400;
  3163. font-style:normal;
  3164. font-size:14px;
  3165. }
  3166. #u32104 {
  3167. border-width:0px;
  3168. position:absolute;
  3169. left:1700px;
  3170. top:119px;
  3171. width:83px;
  3172. height:40px;
  3173. display:flex;
  3174. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3175. font-weight:400;
  3176. font-style:normal;
  3177. font-size:14px;
  3178. }
  3179. #u32104 .text {
  3180. position:absolute;
  3181. align-self:center;
  3182. padding:5px 10px 5px 0px;
  3183. box-sizing:border-box;
  3184. width:100%;
  3185. }
  3186. #u32104_text {
  3187. border-width:0px;
  3188. white-space:nowrap;
  3189. text-transform:none;
  3190. }
  3191. #u32105 {
  3192. border-width:0px;
  3193. position:absolute;
  3194. left:0px;
  3195. top:0px;
  3196. width:0px;
  3197. height:0px;
  3198. }
  3199. #u32106_div {
  3200. border-width:0px;
  3201. position:absolute;
  3202. left:0px;
  3203. top:0px;
  3204. width:398px;
  3205. height:40px;
  3206. background:inherit;
  3207. background-color:rgba(255, 255, 255, 1);
  3208. box-sizing:border-box;
  3209. border-width:1px;
  3210. border-style:solid;
  3211. border-color:rgba(170, 170, 170, 1);
  3212. border-radius:4px;
  3213. -moz-box-shadow:none;
  3214. -webkit-box-shadow:none;
  3215. box-shadow:none;
  3216. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3217. font-weight:400;
  3218. font-style:normal;
  3219. text-align:right;
  3220. }
  3221. #u32106 {
  3222. border-width:0px;
  3223. position:absolute;
  3224. left:1822px;
  3225. top:239px;
  3226. width:398px;
  3227. height:40px;
  3228. display:flex;
  3229. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3230. font-weight:400;
  3231. font-style:normal;
  3232. text-align:right;
  3233. }
  3234. #u32106 .text {
  3235. position:absolute;
  3236. align-self:center;
  3237. padding:2px 10px 2px 10px;
  3238. box-sizing:border-box;
  3239. width:100%;
  3240. }
  3241. #u32106_text {
  3242. border-width:0px;
  3243. word-wrap:break-word;
  3244. text-transform:none;
  3245. visibility:hidden;
  3246. }
  3247. #u32107_input {
  3248. position:absolute;
  3249. left:0px;
  3250. top:0px;
  3251. width:383px;
  3252. height:30px;
  3253. padding:2px 2px 2px 2px;
  3254. font-family:'ArialMT', 'Arial', sans-serif;
  3255. font-weight:400;
  3256. font-style:normal;
  3257. font-size:13px;
  3258. letter-spacing:normal;
  3259. color:#000000;
  3260. vertical-align:none;
  3261. text-align:left;
  3262. text-transform:none;
  3263. background-color:transparent;
  3264. border-color:transparent;
  3265. }
  3266. #u32107_input.disabled {
  3267. position:absolute;
  3268. left:0px;
  3269. top:0px;
  3270. width:383px;
  3271. height:30px;
  3272. padding:2px 2px 2px 2px;
  3273. font-family:'ArialMT', 'Arial', sans-serif;
  3274. font-weight:400;
  3275. font-style:normal;
  3276. font-size:13px;
  3277. letter-spacing:normal;
  3278. color:#000000;
  3279. vertical-align:none;
  3280. text-align:left;
  3281. text-transform:none;
  3282. background-color:transparent;
  3283. border-color:transparent;
  3284. }
  3285. #u32107_div {
  3286. border-width:0px;
  3287. position:absolute;
  3288. left:0px;
  3289. top:0px;
  3290. width:383px;
  3291. height:30px;
  3292. background:inherit;
  3293. background-color:rgba(255, 255, 255, 1);
  3294. border:none;
  3295. border-radius:0px;
  3296. -moz-box-shadow:none;
  3297. -webkit-box-shadow:none;
  3298. box-shadow:none;
  3299. }
  3300. #u32107 {
  3301. border-width:0px;
  3302. position:absolute;
  3303. left:1828px;
  3304. top:244px;
  3305. width:383px;
  3306. height:30px;
  3307. display:flex;
  3308. }
  3309. #u32107 .text {
  3310. position:absolute;
  3311. align-self:flex-start;
  3312. padding:2px 2px 2px 2px;
  3313. box-sizing:border-box;
  3314. width:100%;
  3315. }
  3316. #u32107_div.disabled {
  3317. border-width:0px;
  3318. position:absolute;
  3319. left:0px;
  3320. top:0px;
  3321. width:383px;
  3322. height:30px;
  3323. background:inherit;
  3324. background-color:rgba(240, 240, 240, 1);
  3325. border:none;
  3326. border-radius:0px;
  3327. -moz-box-shadow:none;
  3328. -webkit-box-shadow:none;
  3329. box-shadow:none;
  3330. }
  3331. #u32107.disabled {
  3332. }
  3333. .u32107_input_option {
  3334. }
  3335. #u32108_div {
  3336. border-width:0px;
  3337. position:absolute;
  3338. left:0px;
  3339. top:0px;
  3340. width:517px;
  3341. height:40px;
  3342. background:inherit;
  3343. background-color:rgba(255, 255, 255, 0);
  3344. border:none;
  3345. border-top:0px;
  3346. border-right:0px;
  3347. border-bottom:0px;
  3348. border-radius:0px;
  3349. border-top-left-radius:0px;
  3350. border-bottom-left-radius:0px;
  3351. -moz-box-shadow:none;
  3352. -webkit-box-shadow:none;
  3353. box-shadow:none;
  3354. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3355. font-weight:400;
  3356. font-style:normal;
  3357. font-size:12px;
  3358. color:#7F7F7F;
  3359. }
  3360. #u32108 {
  3361. border-width:0px;
  3362. position:absolute;
  3363. left:1737px;
  3364. top:199px;
  3365. width:517px;
  3366. height:40px;
  3367. display:flex;
  3368. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3369. font-weight:400;
  3370. font-style:normal;
  3371. font-size:12px;
  3372. color:#7F7F7F;
  3373. }
  3374. #u32108 .text {
  3375. position:absolute;
  3376. align-self:center;
  3377. padding:5px 10px 5px 0px;
  3378. box-sizing:border-box;
  3379. width:100%;
  3380. }
  3381. #u32108_text {
  3382. border-width:0px;
  3383. white-space:nowrap;
  3384. text-transform:none;
  3385. }
  3386. #u32109 {
  3387. border-width:0px;
  3388. position:absolute;
  3389. left:0px;
  3390. top:0px;
  3391. width:0px;
  3392. height:0px;
  3393. }
  3394. #u32110_div {
  3395. border-width:0px;
  3396. position:absolute;
  3397. left:0px;
  3398. top:0px;
  3399. width:520px;
  3400. height:40px;
  3401. background:inherit;
  3402. background-color:rgba(255, 255, 255, 1);
  3403. box-sizing:border-box;
  3404. border-width:1px;
  3405. border-style:solid;
  3406. border-color:rgba(170, 170, 170, 1);
  3407. border-radius:4px;
  3408. -moz-box-shadow:none;
  3409. -webkit-box-shadow:none;
  3410. box-shadow:none;
  3411. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3412. font-weight:400;
  3413. font-style:normal;
  3414. text-align:right;
  3415. }
  3416. #u32110 {
  3417. border-width:0px;
  3418. position:absolute;
  3419. left:1700px;
  3420. top:329px;
  3421. width:520px;
  3422. height:40px;
  3423. display:flex;
  3424. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3425. font-weight:400;
  3426. font-style:normal;
  3427. text-align:right;
  3428. }
  3429. #u32110 .text {
  3430. position:absolute;
  3431. align-self:center;
  3432. padding:2px 10px 2px 10px;
  3433. box-sizing:border-box;
  3434. width:100%;
  3435. }
  3436. #u32110_text {
  3437. border-width:0px;
  3438. word-wrap:break-word;
  3439. text-transform:none;
  3440. visibility:hidden;
  3441. }
  3442. #u32111_input {
  3443. position:absolute;
  3444. left:0px;
  3445. top:0px;
  3446. width:501px;
  3447. height:30px;
  3448. padding:2px 2px 2px 2px;
  3449. font-family:'ArialMT', 'Arial', sans-serif;
  3450. font-weight:400;
  3451. font-style:normal;
  3452. font-size:13px;
  3453. letter-spacing:normal;
  3454. color:#000000;
  3455. vertical-align:none;
  3456. text-align:left;
  3457. text-transform:none;
  3458. background-color:transparent;
  3459. border-color:transparent;
  3460. }
  3461. #u32111_input.disabled {
  3462. position:absolute;
  3463. left:0px;
  3464. top:0px;
  3465. width:501px;
  3466. height:30px;
  3467. padding:2px 2px 2px 2px;
  3468. font-family:'ArialMT', 'Arial', sans-serif;
  3469. font-weight:400;
  3470. font-style:normal;
  3471. font-size:13px;
  3472. letter-spacing:normal;
  3473. color:#000000;
  3474. vertical-align:none;
  3475. text-align:left;
  3476. text-transform:none;
  3477. background-color:transparent;
  3478. border-color:transparent;
  3479. }
  3480. #u32111_div {
  3481. border-width:0px;
  3482. position:absolute;
  3483. left:0px;
  3484. top:0px;
  3485. width:501px;
  3486. height:30px;
  3487. background:inherit;
  3488. background-color:rgba(255, 255, 255, 1);
  3489. border:none;
  3490. border-radius:0px;
  3491. -moz-box-shadow:none;
  3492. -webkit-box-shadow:none;
  3493. box-shadow:none;
  3494. }
  3495. #u32111 {
  3496. border-width:0px;
  3497. position:absolute;
  3498. left:1707px;
  3499. top:334px;
  3500. width:501px;
  3501. height:30px;
  3502. display:flex;
  3503. }
  3504. #u32111 .text {
  3505. position:absolute;
  3506. align-self:flex-start;
  3507. padding:2px 2px 2px 2px;
  3508. box-sizing:border-box;
  3509. width:100%;
  3510. }
  3511. #u32111_div.disabled {
  3512. border-width:0px;
  3513. position:absolute;
  3514. left:0px;
  3515. top:0px;
  3516. width:501px;
  3517. height:30px;
  3518. background:inherit;
  3519. background-color:rgba(240, 240, 240, 1);
  3520. border:none;
  3521. border-radius:0px;
  3522. -moz-box-shadow:none;
  3523. -webkit-box-shadow:none;
  3524. box-shadow:none;
  3525. }
  3526. #u32111.disabled {
  3527. }
  3528. .u32111_input_option {
  3529. }
  3530. #u32112_div {
  3531. border-width:0px;
  3532. position:absolute;
  3533. left:0px;
  3534. top:0px;
  3535. width:74px;
  3536. height:40px;
  3537. background:inherit;
  3538. background-color:rgba(255, 255, 255, 0);
  3539. border:none;
  3540. border-top:0px;
  3541. border-right:0px;
  3542. border-bottom:0px;
  3543. border-radius:0px;
  3544. border-top-left-radius:0px;
  3545. border-bottom-left-radius:0px;
  3546. -moz-box-shadow:none;
  3547. -webkit-box-shadow:none;
  3548. box-shadow:none;
  3549. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3550. font-weight:400;
  3551. font-style:normal;
  3552. font-size:14px;
  3553. }
  3554. #u32112 {
  3555. border-width:0px;
  3556. position:absolute;
  3557. left:1700px;
  3558. top:289px;
  3559. width:74px;
  3560. height:40px;
  3561. display:flex;
  3562. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3563. font-weight:400;
  3564. font-style:normal;
  3565. font-size:14px;
  3566. }
  3567. #u32112 .text {
  3568. position:absolute;
  3569. align-self:center;
  3570. padding:5px 10px 5px 0px;
  3571. box-sizing:border-box;
  3572. width:100%;
  3573. }
  3574. #u32112_text {
  3575. border-width:0px;
  3576. white-space:nowrap;
  3577. text-transform:none;
  3578. }
  3579. #u32113 {
  3580. border-width:0px;
  3581. position:absolute;
  3582. left:350px;
  3583. top:163px;
  3584. width:1222px;
  3585. height:154px;
  3586. }
  3587. #u32114_img {
  3588. border-width:0px;
  3589. position:absolute;
  3590. left:0px;
  3591. top:0px;
  3592. width:59px;
  3593. height:34px;
  3594. }
  3595. #u32114 {
  3596. border-width:0px;
  3597. position:absolute;
  3598. left:0px;
  3599. top:0px;
  3600. width:59px;
  3601. height:34px;
  3602. display:flex;
  3603. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3604. font-weight:400;
  3605. font-style:normal;
  3606. font-size:14px;
  3607. color:#FFFFFF;
  3608. text-align:left;
  3609. line-height:30px;
  3610. }
  3611. #u32114 .text {
  3612. position:absolute;
  3613. align-self:center;
  3614. padding:2px 0px 2px 5px;
  3615. box-sizing:border-box;
  3616. width:100%;
  3617. }
  3618. #u32114_text {
  3619. border-width:0px;
  3620. word-wrap:break-word;
  3621. text-transform:none;
  3622. }
  3623. #u32115_img {
  3624. border-width:0px;
  3625. position:absolute;
  3626. left:0px;
  3627. top:0px;
  3628. width:111px;
  3629. height:34px;
  3630. }
  3631. #u32115 {
  3632. border-width:0px;
  3633. position:absolute;
  3634. left:59px;
  3635. top:0px;
  3636. width:111px;
  3637. height:34px;
  3638. display:flex;
  3639. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3640. font-weight:400;
  3641. font-style:normal;
  3642. font-size:14px;
  3643. color:#FFFFFF;
  3644. text-align:left;
  3645. line-height:30px;
  3646. }
  3647. #u32115 .text {
  3648. position:absolute;
  3649. align-self:center;
  3650. padding:2px 0px 2px 5px;
  3651. box-sizing:border-box;
  3652. width:100%;
  3653. }
  3654. #u32115_text {
  3655. border-width:0px;
  3656. word-wrap:break-word;
  3657. text-transform:none;
  3658. }
  3659. #u32116_img {
  3660. border-width:0px;
  3661. position:absolute;
  3662. left:0px;
  3663. top:0px;
  3664. width:111px;
  3665. height:34px;
  3666. }
  3667. #u32116 {
  3668. border-width:0px;
  3669. position:absolute;
  3670. left:170px;
  3671. top:0px;
  3672. width:111px;
  3673. height:34px;
  3674. display:flex;
  3675. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3676. font-weight:400;
  3677. font-style:normal;
  3678. font-size:14px;
  3679. color:#FFFFFF;
  3680. text-align:left;
  3681. line-height:30px;
  3682. }
  3683. #u32116 .text {
  3684. position:absolute;
  3685. align-self:center;
  3686. padding:2px 0px 2px 5px;
  3687. box-sizing:border-box;
  3688. width:100%;
  3689. }
  3690. #u32116_text {
  3691. border-width:0px;
  3692. word-wrap:break-word;
  3693. text-transform:none;
  3694. }
  3695. #u32117_img {
  3696. border-width:0px;
  3697. position:absolute;
  3698. left:0px;
  3699. top:0px;
  3700. width:111px;
  3701. height:34px;
  3702. }
  3703. #u32117 {
  3704. border-width:0px;
  3705. position:absolute;
  3706. left:281px;
  3707. top:0px;
  3708. width:111px;
  3709. height:34px;
  3710. display:flex;
  3711. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3712. font-weight:400;
  3713. font-style:normal;
  3714. font-size:14px;
  3715. color:#FFFFFF;
  3716. text-align:left;
  3717. line-height:30px;
  3718. }
  3719. #u32117 .text {
  3720. position:absolute;
  3721. align-self:center;
  3722. padding:2px 0px 2px 5px;
  3723. box-sizing:border-box;
  3724. width:100%;
  3725. }
  3726. #u32117_text {
  3727. border-width:0px;
  3728. word-wrap:break-word;
  3729. text-transform:none;
  3730. }
  3731. #u32118_img {
  3732. border-width:0px;
  3733. position:absolute;
  3734. left:0px;
  3735. top:0px;
  3736. width:111px;
  3737. height:34px;
  3738. }
  3739. #u32118 {
  3740. border-width:0px;
  3741. position:absolute;
  3742. left:392px;
  3743. top:0px;
  3744. width:111px;
  3745. height:34px;
  3746. display:flex;
  3747. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3748. font-weight:400;
  3749. font-style:normal;
  3750. font-size:14px;
  3751. color:#FFFFFF;
  3752. text-align:left;
  3753. line-height:30px;
  3754. }
  3755. #u32118 .text {
  3756. position:absolute;
  3757. align-self:center;
  3758. padding:2px 0px 2px 5px;
  3759. box-sizing:border-box;
  3760. width:100%;
  3761. }
  3762. #u32118_text {
  3763. border-width:0px;
  3764. word-wrap:break-word;
  3765. text-transform:none;
  3766. }
  3767. #u32119_img {
  3768. border-width:0px;
  3769. position:absolute;
  3770. left:0px;
  3771. top:0px;
  3772. width:110px;
  3773. height:34px;
  3774. }
  3775. #u32119 {
  3776. border-width:0px;
  3777. position:absolute;
  3778. left:503px;
  3779. top:0px;
  3780. width:110px;
  3781. height:34px;
  3782. display:flex;
  3783. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3784. font-weight:400;
  3785. font-style:normal;
  3786. font-size:14px;
  3787. color:#FFFFFF;
  3788. text-align:left;
  3789. line-height:30px;
  3790. }
  3791. #u32119 .text {
  3792. position:absolute;
  3793. align-self:center;
  3794. padding:2px 0px 2px 5px;
  3795. box-sizing:border-box;
  3796. width:100%;
  3797. }
  3798. #u32119_text {
  3799. border-width:0px;
  3800. word-wrap:break-word;
  3801. text-transform:none;
  3802. }
  3803. #u32120_img {
  3804. border-width:0px;
  3805. position:absolute;
  3806. left:0px;
  3807. top:0px;
  3808. width:110px;
  3809. height:34px;
  3810. }
  3811. #u32120 {
  3812. border-width:0px;
  3813. position:absolute;
  3814. left:613px;
  3815. top:0px;
  3816. width:110px;
  3817. height:34px;
  3818. display:flex;
  3819. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3820. font-weight:400;
  3821. font-style:normal;
  3822. font-size:14px;
  3823. color:#FFFFFF;
  3824. text-align:left;
  3825. line-height:30px;
  3826. }
  3827. #u32120 .text {
  3828. position:absolute;
  3829. align-self:center;
  3830. padding:2px 0px 2px 5px;
  3831. box-sizing:border-box;
  3832. width:100%;
  3833. }
  3834. #u32120_text {
  3835. border-width:0px;
  3836. word-wrap:break-word;
  3837. text-transform:none;
  3838. }
  3839. #u32121_img {
  3840. border-width:0px;
  3841. position:absolute;
  3842. left:0px;
  3843. top:0px;
  3844. width:110px;
  3845. height:34px;
  3846. }
  3847. #u32121 {
  3848. border-width:0px;
  3849. position:absolute;
  3850. left:723px;
  3851. top:0px;
  3852. width:110px;
  3853. height:34px;
  3854. display:flex;
  3855. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3856. font-weight:400;
  3857. font-style:normal;
  3858. font-size:14px;
  3859. color:#FFFFFF;
  3860. text-align:left;
  3861. line-height:30px;
  3862. }
  3863. #u32121 .text {
  3864. position:absolute;
  3865. align-self:center;
  3866. padding:2px 0px 2px 5px;
  3867. box-sizing:border-box;
  3868. width:100%;
  3869. }
  3870. #u32121_text {
  3871. border-width:0px;
  3872. word-wrap:break-word;
  3873. text-transform:none;
  3874. }
  3875. #u32122_img {
  3876. border-width:0px;
  3877. position:absolute;
  3878. left:0px;
  3879. top:0px;
  3880. width:168px;
  3881. height:34px;
  3882. }
  3883. #u32122 {
  3884. border-width:0px;
  3885. position:absolute;
  3886. left:833px;
  3887. top:0px;
  3888. width:168px;
  3889. height:34px;
  3890. display:flex;
  3891. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3892. font-weight:400;
  3893. font-style:normal;
  3894. font-size:14px;
  3895. color:#FFFFFF;
  3896. text-align:left;
  3897. line-height:30px;
  3898. }
  3899. #u32122 .text {
  3900. position:absolute;
  3901. align-self:center;
  3902. padding:2px 0px 2px 5px;
  3903. box-sizing:border-box;
  3904. width:100%;
  3905. }
  3906. #u32122_text {
  3907. border-width:0px;
  3908. word-wrap:break-word;
  3909. text-transform:none;
  3910. }
  3911. #u32123_img {
  3912. border-width:0px;
  3913. position:absolute;
  3914. left:0px;
  3915. top:0px;
  3916. width:110px;
  3917. height:34px;
  3918. }
  3919. #u32123 {
  3920. border-width:0px;
  3921. position:absolute;
  3922. left:1001px;
  3923. top:0px;
  3924. width:110px;
  3925. height:34px;
  3926. display:flex;
  3927. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3928. font-weight:400;
  3929. font-style:normal;
  3930. font-size:14px;
  3931. color:#FFFFFF;
  3932. text-align:left;
  3933. line-height:30px;
  3934. }
  3935. #u32123 .text {
  3936. position:absolute;
  3937. align-self:center;
  3938. padding:2px 0px 2px 5px;
  3939. box-sizing:border-box;
  3940. width:100%;
  3941. }
  3942. #u32123_text {
  3943. border-width:0px;
  3944. word-wrap:break-word;
  3945. text-transform:none;
  3946. }
  3947. #u32124_img {
  3948. border-width:0px;
  3949. position:absolute;
  3950. left:0px;
  3951. top:0px;
  3952. width:111px;
  3953. height:34px;
  3954. }
  3955. #u32124 {
  3956. border-width:0px;
  3957. position:absolute;
  3958. left:1111px;
  3959. top:0px;
  3960. width:111px;
  3961. height:34px;
  3962. display:flex;
  3963. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3964. font-weight:400;
  3965. font-style:normal;
  3966. font-size:14px;
  3967. color:#FFFFFF;
  3968. text-align:left;
  3969. line-height:30px;
  3970. }
  3971. #u32124 .text {
  3972. position:absolute;
  3973. align-self:center;
  3974. padding:2px 0px 2px 5px;
  3975. box-sizing:border-box;
  3976. width:100%;
  3977. }
  3978. #u32124_text {
  3979. border-width:0px;
  3980. word-wrap:break-word;
  3981. text-transform:none;
  3982. }
  3983. #u32125_img {
  3984. border-width:0px;
  3985. position:absolute;
  3986. left:0px;
  3987. top:0px;
  3988. width:59px;
  3989. height:40px;
  3990. }
  3991. #u32125 {
  3992. border-width:0px;
  3993. position:absolute;
  3994. left:0px;
  3995. top:34px;
  3996. width:59px;
  3997. height:40px;
  3998. display:flex;
  3999. font-size:14px;
  4000. text-align:left;
  4001. line-height:30px;
  4002. }
  4003. #u32125 .text {
  4004. position:absolute;
  4005. align-self:center;
  4006. padding:2px 0px 2px 5px;
  4007. box-sizing:border-box;
  4008. width:100%;
  4009. }
  4010. #u32125_text {
  4011. border-width:0px;
  4012. word-wrap:break-word;
  4013. text-transform:none;
  4014. }
  4015. #u32126_img {
  4016. border-width:0px;
  4017. position:absolute;
  4018. left:0px;
  4019. top:0px;
  4020. width:111px;
  4021. height:40px;
  4022. }
  4023. #u32126 {
  4024. border-width:0px;
  4025. position:absolute;
  4026. left:59px;
  4027. top:34px;
  4028. width:111px;
  4029. height:40px;
  4030. display:flex;
  4031. font-size:14px;
  4032. text-align:left;
  4033. line-height:30px;
  4034. }
  4035. #u32126 .text {
  4036. position:absolute;
  4037. align-self:center;
  4038. padding:2px 0px 2px 5px;
  4039. box-sizing:border-box;
  4040. width:100%;
  4041. }
  4042. #u32126_text {
  4043. border-width:0px;
  4044. word-wrap:break-word;
  4045. text-transform:none;
  4046. visibility:hidden;
  4047. }
  4048. #u32127_img {
  4049. border-width:0px;
  4050. position:absolute;
  4051. left:0px;
  4052. top:0px;
  4053. width:111px;
  4054. height:40px;
  4055. }
  4056. #u32127 {
  4057. border-width:0px;
  4058. position:absolute;
  4059. left:170px;
  4060. top:34px;
  4061. width:111px;
  4062. height:40px;
  4063. display:flex;
  4064. font-size:14px;
  4065. text-align:left;
  4066. line-height:30px;
  4067. }
  4068. #u32127 .text {
  4069. position:absolute;
  4070. align-self:center;
  4071. padding:2px 0px 2px 5px;
  4072. box-sizing:border-box;
  4073. width:100%;
  4074. }
  4075. #u32127_text {
  4076. border-width:0px;
  4077. word-wrap:break-word;
  4078. text-transform:none;
  4079. visibility:hidden;
  4080. }
  4081. #u32128_img {
  4082. border-width:0px;
  4083. position:absolute;
  4084. left:0px;
  4085. top:0px;
  4086. width:111px;
  4087. height:40px;
  4088. }
  4089. #u32128 {
  4090. border-width:0px;
  4091. position:absolute;
  4092. left:281px;
  4093. top:34px;
  4094. width:111px;
  4095. height:40px;
  4096. display:flex;
  4097. font-size:14px;
  4098. text-align:left;
  4099. line-height:30px;
  4100. }
  4101. #u32128 .text {
  4102. position:absolute;
  4103. align-self:center;
  4104. padding:2px 0px 2px 5px;
  4105. box-sizing:border-box;
  4106. width:100%;
  4107. }
  4108. #u32128_text {
  4109. border-width:0px;
  4110. word-wrap:break-word;
  4111. text-transform:none;
  4112. visibility:hidden;
  4113. }
  4114. #u32129_img {
  4115. border-width:0px;
  4116. position:absolute;
  4117. left:0px;
  4118. top:0px;
  4119. width:111px;
  4120. height:40px;
  4121. }
  4122. #u32129 {
  4123. border-width:0px;
  4124. position:absolute;
  4125. left:392px;
  4126. top:34px;
  4127. width:111px;
  4128. height:40px;
  4129. display:flex;
  4130. font-size:14px;
  4131. text-align:left;
  4132. line-height:30px;
  4133. }
  4134. #u32129 .text {
  4135. position:absolute;
  4136. align-self:center;
  4137. padding:2px 0px 2px 5px;
  4138. box-sizing:border-box;
  4139. width:100%;
  4140. }
  4141. #u32129_text {
  4142. border-width:0px;
  4143. word-wrap:break-word;
  4144. text-transform:none;
  4145. visibility:hidden;
  4146. }
  4147. #u32130_img {
  4148. border-width:0px;
  4149. position:absolute;
  4150. left:0px;
  4151. top:0px;
  4152. width:110px;
  4153. height:40px;
  4154. }
  4155. #u32130 {
  4156. border-width:0px;
  4157. position:absolute;
  4158. left:503px;
  4159. top:34px;
  4160. width:110px;
  4161. height:40px;
  4162. display:flex;
  4163. font-size:14px;
  4164. text-align:left;
  4165. line-height:30px;
  4166. }
  4167. #u32130 .text {
  4168. position:absolute;
  4169. align-self:center;
  4170. padding:2px 0px 2px 5px;
  4171. box-sizing:border-box;
  4172. width:100%;
  4173. }
  4174. #u32130_text {
  4175. border-width:0px;
  4176. word-wrap:break-word;
  4177. text-transform:none;
  4178. visibility:hidden;
  4179. }
  4180. #u32131_img {
  4181. border-width:0px;
  4182. position:absolute;
  4183. left:0px;
  4184. top:0px;
  4185. width:110px;
  4186. height:40px;
  4187. }
  4188. #u32131 {
  4189. border-width:0px;
  4190. position:absolute;
  4191. left:613px;
  4192. top:34px;
  4193. width:110px;
  4194. height:40px;
  4195. display:flex;
  4196. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4197. font-weight:400;
  4198. font-style:normal;
  4199. font-size:14px;
  4200. text-align:left;
  4201. line-height:30px;
  4202. }
  4203. #u32131 .text {
  4204. position:absolute;
  4205. align-self:center;
  4206. padding:2px 0px 2px 5px;
  4207. box-sizing:border-box;
  4208. width:100%;
  4209. }
  4210. #u32131_text {
  4211. border-width:0px;
  4212. word-wrap:break-word;
  4213. text-transform:none;
  4214. visibility:hidden;
  4215. }
  4216. #u32132_img {
  4217. border-width:0px;
  4218. position:absolute;
  4219. left:0px;
  4220. top:0px;
  4221. width:110px;
  4222. height:40px;
  4223. }
  4224. #u32132 {
  4225. border-width:0px;
  4226. position:absolute;
  4227. left:723px;
  4228. top:34px;
  4229. width:110px;
  4230. height:40px;
  4231. display:flex;
  4232. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4233. font-weight:400;
  4234. font-style:normal;
  4235. font-size:14px;
  4236. text-align:left;
  4237. line-height:30px;
  4238. }
  4239. #u32132 .text {
  4240. position:absolute;
  4241. align-self:center;
  4242. padding:2px 0px 2px 5px;
  4243. box-sizing:border-box;
  4244. width:100%;
  4245. }
  4246. #u32132_text {
  4247. border-width:0px;
  4248. word-wrap:break-word;
  4249. text-transform:none;
  4250. visibility:hidden;
  4251. }
  4252. #u32133_img {
  4253. border-width:0px;
  4254. position:absolute;
  4255. left:0px;
  4256. top:0px;
  4257. width:168px;
  4258. height:40px;
  4259. }
  4260. #u32133 {
  4261. border-width:0px;
  4262. position:absolute;
  4263. left:833px;
  4264. top:34px;
  4265. width:168px;
  4266. height:40px;
  4267. display:flex;
  4268. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4269. font-weight:400;
  4270. font-style:normal;
  4271. font-size:14px;
  4272. text-align:left;
  4273. line-height:30px;
  4274. }
  4275. #u32133 .text {
  4276. position:absolute;
  4277. align-self:center;
  4278. padding:2px 0px 2px 5px;
  4279. box-sizing:border-box;
  4280. width:100%;
  4281. }
  4282. #u32133_text {
  4283. border-width:0px;
  4284. word-wrap:break-word;
  4285. text-transform:none;
  4286. }
  4287. #u32134_img {
  4288. border-width:0px;
  4289. position:absolute;
  4290. left:0px;
  4291. top:0px;
  4292. width:110px;
  4293. height:40px;
  4294. }
  4295. #u32134 {
  4296. border-width:0px;
  4297. position:absolute;
  4298. left:1001px;
  4299. top:34px;
  4300. width:110px;
  4301. height:40px;
  4302. display:flex;
  4303. font-size:14px;
  4304. text-align:left;
  4305. line-height:30px;
  4306. }
  4307. #u32134 .text {
  4308. position:absolute;
  4309. align-self:center;
  4310. padding:2px 0px 2px 5px;
  4311. box-sizing:border-box;
  4312. width:100%;
  4313. }
  4314. #u32134_text {
  4315. border-width:0px;
  4316. word-wrap:break-word;
  4317. text-transform:none;
  4318. visibility:hidden;
  4319. }
  4320. #u32135_img {
  4321. border-width:0px;
  4322. position:absolute;
  4323. left:0px;
  4324. top:0px;
  4325. width:111px;
  4326. height:40px;
  4327. }
  4328. #u32135 {
  4329. border-width:0px;
  4330. position:absolute;
  4331. left:1111px;
  4332. top:34px;
  4333. width:111px;
  4334. height:40px;
  4335. display:flex;
  4336. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4337. font-weight:400;
  4338. font-style:normal;
  4339. font-size:14px;
  4340. color:#1890FF;
  4341. text-align:left;
  4342. line-height:30px;
  4343. }
  4344. #u32135 .text {
  4345. position:absolute;
  4346. align-self:center;
  4347. padding:2px 0px 2px 5px;
  4348. box-sizing:border-box;
  4349. width:100%;
  4350. }
  4351. #u32135_text {
  4352. border-width:0px;
  4353. word-wrap:break-word;
  4354. text-transform:none;
  4355. }
  4356. #u32136_img {
  4357. border-width:0px;
  4358. position:absolute;
  4359. left:0px;
  4360. top:0px;
  4361. width:59px;
  4362. height:40px;
  4363. }
  4364. #u32136 {
  4365. border-width:0px;
  4366. position:absolute;
  4367. left:0px;
  4368. top:74px;
  4369. width:59px;
  4370. height:40px;
  4371. display:flex;
  4372. font-size:14px;
  4373. text-align:left;
  4374. line-height:30px;
  4375. }
  4376. #u32136 .text {
  4377. position:absolute;
  4378. align-self:center;
  4379. padding:2px 0px 2px 5px;
  4380. box-sizing:border-box;
  4381. width:100%;
  4382. }
  4383. #u32136_text {
  4384. border-width:0px;
  4385. word-wrap:break-word;
  4386. text-transform:none;
  4387. }
  4388. #u32137_img {
  4389. border-width:0px;
  4390. position:absolute;
  4391. left:0px;
  4392. top:0px;
  4393. width:111px;
  4394. height:40px;
  4395. }
  4396. #u32137 {
  4397. border-width:0px;
  4398. position:absolute;
  4399. left:59px;
  4400. top:74px;
  4401. width:111px;
  4402. height:40px;
  4403. display:flex;
  4404. font-size:14px;
  4405. text-align:left;
  4406. line-height:30px;
  4407. }
  4408. #u32137 .text {
  4409. position:absolute;
  4410. align-self:center;
  4411. padding:2px 0px 2px 5px;
  4412. box-sizing:border-box;
  4413. width:100%;
  4414. }
  4415. #u32137_text {
  4416. border-width:0px;
  4417. word-wrap:break-word;
  4418. text-transform:none;
  4419. visibility:hidden;
  4420. }
  4421. #u32138_img {
  4422. border-width:0px;
  4423. position:absolute;
  4424. left:0px;
  4425. top:0px;
  4426. width:111px;
  4427. height:40px;
  4428. }
  4429. #u32138 {
  4430. border-width:0px;
  4431. position:absolute;
  4432. left:170px;
  4433. top:74px;
  4434. width:111px;
  4435. height:40px;
  4436. display:flex;
  4437. font-size:14px;
  4438. text-align:left;
  4439. line-height:30px;
  4440. }
  4441. #u32138 .text {
  4442. position:absolute;
  4443. align-self:center;
  4444. padding:2px 0px 2px 5px;
  4445. box-sizing:border-box;
  4446. width:100%;
  4447. }
  4448. #u32138_text {
  4449. border-width:0px;
  4450. word-wrap:break-word;
  4451. text-transform:none;
  4452. visibility:hidden;
  4453. }
  4454. #u32139_img {
  4455. border-width:0px;
  4456. position:absolute;
  4457. left:0px;
  4458. top:0px;
  4459. width:111px;
  4460. height:40px;
  4461. }
  4462. #u32139 {
  4463. border-width:0px;
  4464. position:absolute;
  4465. left:281px;
  4466. top:74px;
  4467. width:111px;
  4468. height:40px;
  4469. display:flex;
  4470. font-size:14px;
  4471. text-align:left;
  4472. line-height:30px;
  4473. }
  4474. #u32139 .text {
  4475. position:absolute;
  4476. align-self:center;
  4477. padding:2px 0px 2px 5px;
  4478. box-sizing:border-box;
  4479. width:100%;
  4480. }
  4481. #u32139_text {
  4482. border-width:0px;
  4483. word-wrap:break-word;
  4484. text-transform:none;
  4485. visibility:hidden;
  4486. }
  4487. #u32140_img {
  4488. border-width:0px;
  4489. position:absolute;
  4490. left:0px;
  4491. top:0px;
  4492. width:111px;
  4493. height:40px;
  4494. }
  4495. #u32140 {
  4496. border-width:0px;
  4497. position:absolute;
  4498. left:392px;
  4499. top:74px;
  4500. width:111px;
  4501. height:40px;
  4502. display:flex;
  4503. font-size:14px;
  4504. text-align:left;
  4505. line-height:30px;
  4506. }
  4507. #u32140 .text {
  4508. position:absolute;
  4509. align-self:center;
  4510. padding:2px 0px 2px 5px;
  4511. box-sizing:border-box;
  4512. width:100%;
  4513. }
  4514. #u32140_text {
  4515. border-width:0px;
  4516. word-wrap:break-word;
  4517. text-transform:none;
  4518. visibility:hidden;
  4519. }
  4520. #u32141_img {
  4521. border-width:0px;
  4522. position:absolute;
  4523. left:0px;
  4524. top:0px;
  4525. width:110px;
  4526. height:40px;
  4527. }
  4528. #u32141 {
  4529. border-width:0px;
  4530. position:absolute;
  4531. left:503px;
  4532. top:74px;
  4533. width:110px;
  4534. height:40px;
  4535. display:flex;
  4536. font-size:14px;
  4537. text-align:left;
  4538. line-height:30px;
  4539. }
  4540. #u32141 .text {
  4541. position:absolute;
  4542. align-self:center;
  4543. padding:2px 0px 2px 5px;
  4544. box-sizing:border-box;
  4545. width:100%;
  4546. }
  4547. #u32141_text {
  4548. border-width:0px;
  4549. word-wrap:break-word;
  4550. text-transform:none;
  4551. visibility:hidden;
  4552. }
  4553. #u32142_img {
  4554. border-width:0px;
  4555. position:absolute;
  4556. left:0px;
  4557. top:0px;
  4558. width:110px;
  4559. height:40px;
  4560. }
  4561. #u32142 {
  4562. border-width:0px;
  4563. position:absolute;
  4564. left:613px;
  4565. top:74px;
  4566. width:110px;
  4567. height:40px;
  4568. display:flex;
  4569. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4570. font-weight:400;
  4571. font-style:normal;
  4572. font-size:14px;
  4573. text-align:left;
  4574. line-height:30px;
  4575. }
  4576. #u32142 .text {
  4577. position:absolute;
  4578. align-self:center;
  4579. padding:2px 0px 2px 5px;
  4580. box-sizing:border-box;
  4581. width:100%;
  4582. }
  4583. #u32142_text {
  4584. border-width:0px;
  4585. word-wrap:break-word;
  4586. text-transform:none;
  4587. visibility:hidden;
  4588. }
  4589. #u32143_img {
  4590. border-width:0px;
  4591. position:absolute;
  4592. left:0px;
  4593. top:0px;
  4594. width:110px;
  4595. height:40px;
  4596. }
  4597. #u32143 {
  4598. border-width:0px;
  4599. position:absolute;
  4600. left:723px;
  4601. top:74px;
  4602. width:110px;
  4603. height:40px;
  4604. display:flex;
  4605. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4606. font-weight:400;
  4607. font-style:normal;
  4608. font-size:14px;
  4609. text-align:left;
  4610. line-height:30px;
  4611. }
  4612. #u32143 .text {
  4613. position:absolute;
  4614. align-self:center;
  4615. padding:2px 0px 2px 5px;
  4616. box-sizing:border-box;
  4617. width:100%;
  4618. }
  4619. #u32143_text {
  4620. border-width:0px;
  4621. word-wrap:break-word;
  4622. text-transform:none;
  4623. visibility:hidden;
  4624. }
  4625. #u32144_img {
  4626. border-width:0px;
  4627. position:absolute;
  4628. left:0px;
  4629. top:0px;
  4630. width:168px;
  4631. height:40px;
  4632. }
  4633. #u32144 {
  4634. border-width:0px;
  4635. position:absolute;
  4636. left:833px;
  4637. top:74px;
  4638. width:168px;
  4639. height:40px;
  4640. display:flex;
  4641. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4642. font-weight:400;
  4643. font-style:normal;
  4644. font-size:14px;
  4645. text-align:left;
  4646. line-height:30px;
  4647. }
  4648. #u32144 .text {
  4649. position:absolute;
  4650. align-self:center;
  4651. padding:2px 0px 2px 5px;
  4652. box-sizing:border-box;
  4653. width:100%;
  4654. }
  4655. #u32144_text {
  4656. border-width:0px;
  4657. word-wrap:break-word;
  4658. text-transform:none;
  4659. }
  4660. #u32145_img {
  4661. border-width:0px;
  4662. position:absolute;
  4663. left:0px;
  4664. top:0px;
  4665. width:110px;
  4666. height:40px;
  4667. }
  4668. #u32145 {
  4669. border-width:0px;
  4670. position:absolute;
  4671. left:1001px;
  4672. top:74px;
  4673. width:110px;
  4674. height:40px;
  4675. display:flex;
  4676. font-size:14px;
  4677. text-align:left;
  4678. line-height:30px;
  4679. }
  4680. #u32145 .text {
  4681. position:absolute;
  4682. align-self:center;
  4683. padding:2px 0px 2px 5px;
  4684. box-sizing:border-box;
  4685. width:100%;
  4686. }
  4687. #u32145_text {
  4688. border-width:0px;
  4689. word-wrap:break-word;
  4690. text-transform:none;
  4691. visibility:hidden;
  4692. }
  4693. #u32146_img {
  4694. border-width:0px;
  4695. position:absolute;
  4696. left:0px;
  4697. top:0px;
  4698. width:111px;
  4699. height:40px;
  4700. }
  4701. #u32146 {
  4702. border-width:0px;
  4703. position:absolute;
  4704. left:1111px;
  4705. top:74px;
  4706. width:111px;
  4707. height:40px;
  4708. display:flex;
  4709. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4710. font-weight:400;
  4711. font-style:normal;
  4712. font-size:14px;
  4713. color:#7F7F7F;
  4714. text-align:left;
  4715. line-height:30px;
  4716. }
  4717. #u32146 .text {
  4718. position:absolute;
  4719. align-self:center;
  4720. padding:2px 0px 2px 5px;
  4721. box-sizing:border-box;
  4722. width:100%;
  4723. }
  4724. #u32146_text {
  4725. border-width:0px;
  4726. word-wrap:break-word;
  4727. text-transform:none;
  4728. }
  4729. #u32147_img {
  4730. border-width:0px;
  4731. position:absolute;
  4732. left:0px;
  4733. top:0px;
  4734. width:59px;
  4735. height:40px;
  4736. }
  4737. #u32147 {
  4738. border-width:0px;
  4739. position:absolute;
  4740. left:0px;
  4741. top:114px;
  4742. width:59px;
  4743. height:40px;
  4744. display:flex;
  4745. font-size:14px;
  4746. text-align:left;
  4747. line-height:30px;
  4748. }
  4749. #u32147 .text {
  4750. position:absolute;
  4751. align-self:center;
  4752. padding:2px 0px 2px 5px;
  4753. box-sizing:border-box;
  4754. width:100%;
  4755. }
  4756. #u32147_text {
  4757. border-width:0px;
  4758. word-wrap:break-word;
  4759. text-transform:none;
  4760. }
  4761. #u32148_img {
  4762. border-width:0px;
  4763. position:absolute;
  4764. left:0px;
  4765. top:0px;
  4766. width:111px;
  4767. height:40px;
  4768. }
  4769. #u32148 {
  4770. border-width:0px;
  4771. position:absolute;
  4772. left:59px;
  4773. top:114px;
  4774. width:111px;
  4775. height:40px;
  4776. display:flex;
  4777. font-size:14px;
  4778. text-align:left;
  4779. line-height:30px;
  4780. }
  4781. #u32148 .text {
  4782. position:absolute;
  4783. align-self:center;
  4784. padding:2px 0px 2px 5px;
  4785. box-sizing:border-box;
  4786. width:100%;
  4787. }
  4788. #u32148_text {
  4789. border-width:0px;
  4790. word-wrap:break-word;
  4791. text-transform:none;
  4792. visibility:hidden;
  4793. }
  4794. #u32149_img {
  4795. border-width:0px;
  4796. position:absolute;
  4797. left:0px;
  4798. top:0px;
  4799. width:111px;
  4800. height:40px;
  4801. }
  4802. #u32149 {
  4803. border-width:0px;
  4804. position:absolute;
  4805. left:170px;
  4806. top:114px;
  4807. width:111px;
  4808. height:40px;
  4809. display:flex;
  4810. font-size:14px;
  4811. text-align:left;
  4812. line-height:30px;
  4813. }
  4814. #u32149 .text {
  4815. position:absolute;
  4816. align-self:center;
  4817. padding:2px 0px 2px 5px;
  4818. box-sizing:border-box;
  4819. width:100%;
  4820. }
  4821. #u32149_text {
  4822. border-width:0px;
  4823. word-wrap:break-word;
  4824. text-transform:none;
  4825. visibility:hidden;
  4826. }
  4827. #u32150_img {
  4828. border-width:0px;
  4829. position:absolute;
  4830. left:0px;
  4831. top:0px;
  4832. width:111px;
  4833. height:40px;
  4834. }
  4835. #u32150 {
  4836. border-width:0px;
  4837. position:absolute;
  4838. left:281px;
  4839. top:114px;
  4840. width:111px;
  4841. height:40px;
  4842. display:flex;
  4843. font-size:14px;
  4844. text-align:left;
  4845. line-height:30px;
  4846. }
  4847. #u32150 .text {
  4848. position:absolute;
  4849. align-self:center;
  4850. padding:2px 0px 2px 5px;
  4851. box-sizing:border-box;
  4852. width:100%;
  4853. }
  4854. #u32150_text {
  4855. border-width:0px;
  4856. word-wrap:break-word;
  4857. text-transform:none;
  4858. visibility:hidden;
  4859. }
  4860. #u32151_img {
  4861. border-width:0px;
  4862. position:absolute;
  4863. left:0px;
  4864. top:0px;
  4865. width:111px;
  4866. height:40px;
  4867. }
  4868. #u32151 {
  4869. border-width:0px;
  4870. position:absolute;
  4871. left:392px;
  4872. top:114px;
  4873. width:111px;
  4874. height:40px;
  4875. display:flex;
  4876. font-size:14px;
  4877. text-align:left;
  4878. line-height:30px;
  4879. }
  4880. #u32151 .text {
  4881. position:absolute;
  4882. align-self:center;
  4883. padding:2px 0px 2px 5px;
  4884. box-sizing:border-box;
  4885. width:100%;
  4886. }
  4887. #u32151_text {
  4888. border-width:0px;
  4889. word-wrap:break-word;
  4890. text-transform:none;
  4891. visibility:hidden;
  4892. }
  4893. #u32152_img {
  4894. border-width:0px;
  4895. position:absolute;
  4896. left:0px;
  4897. top:0px;
  4898. width:110px;
  4899. height:40px;
  4900. }
  4901. #u32152 {
  4902. border-width:0px;
  4903. position:absolute;
  4904. left:503px;
  4905. top:114px;
  4906. width:110px;
  4907. height:40px;
  4908. display:flex;
  4909. font-size:14px;
  4910. text-align:left;
  4911. line-height:30px;
  4912. }
  4913. #u32152 .text {
  4914. position:absolute;
  4915. align-self:center;
  4916. padding:2px 0px 2px 5px;
  4917. box-sizing:border-box;
  4918. width:100%;
  4919. }
  4920. #u32152_text {
  4921. border-width:0px;
  4922. word-wrap:break-word;
  4923. text-transform:none;
  4924. visibility:hidden;
  4925. }
  4926. #u32153_img {
  4927. border-width:0px;
  4928. position:absolute;
  4929. left:0px;
  4930. top:0px;
  4931. width:110px;
  4932. height:40px;
  4933. }
  4934. #u32153 {
  4935. border-width:0px;
  4936. position:absolute;
  4937. left:613px;
  4938. top:114px;
  4939. width:110px;
  4940. height:40px;
  4941. display:flex;
  4942. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4943. font-weight:400;
  4944. font-style:normal;
  4945. font-size:14px;
  4946. text-align:left;
  4947. line-height:30px;
  4948. }
  4949. #u32153 .text {
  4950. position:absolute;
  4951. align-self:center;
  4952. padding:2px 0px 2px 5px;
  4953. box-sizing:border-box;
  4954. width:100%;
  4955. }
  4956. #u32153_text {
  4957. border-width:0px;
  4958. word-wrap:break-word;
  4959. text-transform:none;
  4960. visibility:hidden;
  4961. }
  4962. #u32154_img {
  4963. border-width:0px;
  4964. position:absolute;
  4965. left:0px;
  4966. top:0px;
  4967. width:110px;
  4968. height:40px;
  4969. }
  4970. #u32154 {
  4971. border-width:0px;
  4972. position:absolute;
  4973. left:723px;
  4974. top:114px;
  4975. width:110px;
  4976. height:40px;
  4977. display:flex;
  4978. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4979. font-weight:400;
  4980. font-style:normal;
  4981. font-size:14px;
  4982. text-align:left;
  4983. line-height:30px;
  4984. }
  4985. #u32154 .text {
  4986. position:absolute;
  4987. align-self:center;
  4988. padding:2px 0px 2px 5px;
  4989. box-sizing:border-box;
  4990. width:100%;
  4991. }
  4992. #u32154_text {
  4993. border-width:0px;
  4994. word-wrap:break-word;
  4995. text-transform:none;
  4996. visibility:hidden;
  4997. }
  4998. #u32155_img {
  4999. border-width:0px;
  5000. position:absolute;
  5001. left:0px;
  5002. top:0px;
  5003. width:168px;
  5004. height:40px;
  5005. }
  5006. #u32155 {
  5007. border-width:0px;
  5008. position:absolute;
  5009. left:833px;
  5010. top:114px;
  5011. width:168px;
  5012. height:40px;
  5013. display:flex;
  5014. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5015. font-weight:400;
  5016. font-style:normal;
  5017. font-size:14px;
  5018. text-align:left;
  5019. line-height:30px;
  5020. }
  5021. #u32155 .text {
  5022. position:absolute;
  5023. align-self:center;
  5024. padding:2px 0px 2px 5px;
  5025. box-sizing:border-box;
  5026. width:100%;
  5027. }
  5028. #u32155_text {
  5029. border-width:0px;
  5030. word-wrap:break-word;
  5031. text-transform:none;
  5032. visibility:hidden;
  5033. }
  5034. #u32156_img {
  5035. border-width:0px;
  5036. position:absolute;
  5037. left:0px;
  5038. top:0px;
  5039. width:110px;
  5040. height:40px;
  5041. }
  5042. #u32156 {
  5043. border-width:0px;
  5044. position:absolute;
  5045. left:1001px;
  5046. top:114px;
  5047. width:110px;
  5048. height:40px;
  5049. display:flex;
  5050. font-size:14px;
  5051. text-align:left;
  5052. line-height:30px;
  5053. }
  5054. #u32156 .text {
  5055. position:absolute;
  5056. align-self:center;
  5057. padding:2px 0px 2px 5px;
  5058. box-sizing:border-box;
  5059. width:100%;
  5060. }
  5061. #u32156_text {
  5062. border-width:0px;
  5063. word-wrap:break-word;
  5064. text-transform:none;
  5065. visibility:hidden;
  5066. }
  5067. #u32157_img {
  5068. border-width:0px;
  5069. position:absolute;
  5070. left:0px;
  5071. top:0px;
  5072. width:111px;
  5073. height:40px;
  5074. }
  5075. #u32157 {
  5076. border-width:0px;
  5077. position:absolute;
  5078. left:1111px;
  5079. top:114px;
  5080. width:111px;
  5081. height:40px;
  5082. display:flex;
  5083. font-size:14px;
  5084. text-align:left;
  5085. line-height:30px;
  5086. }
  5087. #u32157 .text {
  5088. position:absolute;
  5089. align-self:center;
  5090. padding:2px 0px 2px 5px;
  5091. box-sizing:border-box;
  5092. width:100%;
  5093. }
  5094. #u32157_text {
  5095. border-width:0px;
  5096. word-wrap:break-word;
  5097. text-transform:none;
  5098. visibility:hidden;
  5099. }
  5100. #u32158_div {
  5101. border-width:0px;
  5102. position:absolute;
  5103. left:0px;
  5104. top:0px;
  5105. width:145px;
  5106. height:50px;
  5107. background:inherit;
  5108. background-color:rgba(255, 255, 255, 0);
  5109. border:none;
  5110. border-radius:0px;
  5111. -moz-box-shadow:none;
  5112. -webkit-box-shadow:none;
  5113. box-shadow:none;
  5114. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5115. font-weight:400;
  5116. font-style:normal;
  5117. font-size:18px;
  5118. }
  5119. #u32158 {
  5120. border-width:0px;
  5121. position:absolute;
  5122. left:350px;
  5123. top:51px;
  5124. width:145px;
  5125. height:50px;
  5126. display:flex;
  5127. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5128. font-weight:400;
  5129. font-style:normal;
  5130. font-size:18px;
  5131. }
  5132. #u32158 .text {
  5133. position:absolute;
  5134. align-self:center;
  5135. padding:0px 0px 0px 0px;
  5136. box-sizing:border-box;
  5137. width:100%;
  5138. }
  5139. #u32158_text {
  5140. border-width:0px;
  5141. white-space:nowrap;
  5142. text-transform:none;
  5143. }
  5144. #u32159_div {
  5145. border-width:0px;
  5146. position:absolute;
  5147. left:0px;
  5148. top:0px;
  5149. width:109px;
  5150. height:50px;
  5151. background:inherit;
  5152. background-color:rgba(255, 255, 255, 0);
  5153. border:none;
  5154. border-radius:0px;
  5155. -moz-box-shadow:none;
  5156. -webkit-box-shadow:none;
  5157. box-shadow:none;
  5158. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5159. font-weight:400;
  5160. font-style:normal;
  5161. font-size:18px;
  5162. color:#0099FF;
  5163. }
  5164. #u32159 {
  5165. border-width:0px;
  5166. position:absolute;
  5167. left:525px;
  5168. top:51px;
  5169. width:109px;
  5170. height:50px;
  5171. display:flex;
  5172. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5173. font-weight:400;
  5174. font-style:normal;
  5175. font-size:18px;
  5176. color:#0099FF;
  5177. }
  5178. #u32159 .text {
  5179. position:absolute;
  5180. align-self:center;
  5181. padding:0px 0px 0px 0px;
  5182. box-sizing:border-box;
  5183. width:100%;
  5184. }
  5185. #u32159_text {
  5186. border-width:0px;
  5187. white-space:nowrap;
  5188. text-transform:none;
  5189. }
  5190. #u32160 {
  5191. border-width:0px;
  5192. position:absolute;
  5193. left:0px;
  5194. top:0px;
  5195. width:0px;
  5196. height:0px;
  5197. }
  5198. #u32161_div {
  5199. border-width:0px;
  5200. position:absolute;
  5201. left:0px;
  5202. top:0px;
  5203. width:140px;
  5204. height:30px;
  5205. background:inherit;
  5206. background-color:rgba(255, 255, 255, 1);
  5207. box-sizing:border-box;
  5208. border-width:1px;
  5209. border-style:solid;
  5210. border-color:rgba(215, 215, 215, 1);
  5211. border-radius:4px;
  5212. -moz-box-shadow:none;
  5213. -webkit-box-shadow:none;
  5214. box-shadow:none;
  5215. font-size:11px;
  5216. }
  5217. #u32161 {
  5218. border-width:0px;
  5219. position:absolute;
  5220. left:350px;
  5221. top:111px;
  5222. width:140px;
  5223. height:30px;
  5224. display:flex;
  5225. font-size:11px;
  5226. }
  5227. #u32161 .text {
  5228. position:absolute;
  5229. align-self:center;
  5230. padding:2px 2px 2px 2px;
  5231. box-sizing:border-box;
  5232. width:100%;
  5233. }
  5234. #u32161_text {
  5235. border-width:0px;
  5236. word-wrap:break-word;
  5237. text-transform:none;
  5238. visibility:hidden;
  5239. }
  5240. #u32162_input {
  5241. position:absolute;
  5242. left:0px;
  5243. top:0px;
  5244. width:120px;
  5245. height:23px;
  5246. padding:2px 2px 2px 2px;
  5247. font-family:'ArialMT', 'Arial', sans-serif;
  5248. font-weight:400;
  5249. font-style:normal;
  5250. font-size:11px;
  5251. letter-spacing:normal;
  5252. color:#AAAAAA;
  5253. vertical-align:none;
  5254. text-align:left;
  5255. text-transform:none;
  5256. background-color:transparent;
  5257. border-color:transparent;
  5258. }
  5259. #u32162_input.disabled {
  5260. position:absolute;
  5261. left:0px;
  5262. top:0px;
  5263. width:120px;
  5264. height:23px;
  5265. padding:2px 2px 2px 2px;
  5266. font-family:'ArialMT', 'Arial', sans-serif;
  5267. font-weight:400;
  5268. font-style:normal;
  5269. font-size:11px;
  5270. letter-spacing:normal;
  5271. color:#AAAAAA;
  5272. vertical-align:none;
  5273. text-align:left;
  5274. text-transform:none;
  5275. background-color:transparent;
  5276. border-color:transparent;
  5277. }
  5278. #u32162_div {
  5279. border-width:0px;
  5280. position:absolute;
  5281. left:0px;
  5282. top:0px;
  5283. width:120px;
  5284. height:23px;
  5285. background:inherit;
  5286. background-color:rgba(255, 255, 255, 1);
  5287. border:none;
  5288. border-radius:0px;
  5289. -moz-box-shadow:none;
  5290. -webkit-box-shadow:none;
  5291. box-shadow:none;
  5292. font-size:11px;
  5293. color:#AAAAAA;
  5294. }
  5295. #u32162 {
  5296. border-width:0px;
  5297. position:absolute;
  5298. left:357px;
  5299. top:113px;
  5300. width:120px;
  5301. height:23px;
  5302. display:flex;
  5303. font-size:11px;
  5304. color:#AAAAAA;
  5305. }
  5306. #u32162 .text {
  5307. position:absolute;
  5308. align-self:flex-start;
  5309. padding:2px 2px 2px 2px;
  5310. box-sizing:border-box;
  5311. width:100%;
  5312. }
  5313. #u32162_div.disabled {
  5314. border-width:0px;
  5315. position:absolute;
  5316. left:0px;
  5317. top:0px;
  5318. width:120px;
  5319. height:23px;
  5320. background:inherit;
  5321. background-color:rgba(240, 240, 240, 1);
  5322. border:none;
  5323. border-radius:0px;
  5324. -moz-box-shadow:none;
  5325. -webkit-box-shadow:none;
  5326. box-shadow:none;
  5327. font-size:11px;
  5328. color:#AAAAAA;
  5329. }
  5330. #u32162.disabled {
  5331. }
  5332. .u32162_input_option {
  5333. font-size:11px;
  5334. }
  5335. #u32163 {
  5336. border-width:0px;
  5337. position:absolute;
  5338. left:0px;
  5339. top:0px;
  5340. width:0px;
  5341. height:0px;
  5342. }
  5343. #u32164_div {
  5344. border-width:0px;
  5345. position:absolute;
  5346. left:0px;
  5347. top:0px;
  5348. width:140px;
  5349. height:30px;
  5350. background:inherit;
  5351. background-color:rgba(255, 255, 255, 1);
  5352. box-sizing:border-box;
  5353. border-width:1px;
  5354. border-style:solid;
  5355. border-color:rgba(215, 215, 215, 1);
  5356. border-radius:4px;
  5357. -moz-box-shadow:none;
  5358. -webkit-box-shadow:none;
  5359. box-shadow:none;
  5360. font-size:11px;
  5361. }
  5362. #u32164 {
  5363. border-width:0px;
  5364. position:absolute;
  5365. left:500px;
  5366. top:111px;
  5367. width:140px;
  5368. height:30px;
  5369. display:flex;
  5370. font-size:11px;
  5371. }
  5372. #u32164 .text {
  5373. position:absolute;
  5374. align-self:center;
  5375. padding:2px 2px 2px 2px;
  5376. box-sizing:border-box;
  5377. width:100%;
  5378. }
  5379. #u32164_text {
  5380. border-width:0px;
  5381. word-wrap:break-word;
  5382. text-transform:none;
  5383. visibility:hidden;
  5384. }
  5385. #u32165_input {
  5386. position:absolute;
  5387. left:0px;
  5388. top:0px;
  5389. width:120px;
  5390. height:23px;
  5391. padding:2px 2px 2px 2px;
  5392. font-family:'ArialMT', 'Arial', sans-serif;
  5393. font-weight:400;
  5394. font-style:normal;
  5395. font-size:11px;
  5396. letter-spacing:normal;
  5397. color:#AAAAAA;
  5398. vertical-align:none;
  5399. text-align:left;
  5400. text-transform:none;
  5401. background-color:transparent;
  5402. border-color:transparent;
  5403. }
  5404. #u32165_input.disabled {
  5405. position:absolute;
  5406. left:0px;
  5407. top:0px;
  5408. width:120px;
  5409. height:23px;
  5410. padding:2px 2px 2px 2px;
  5411. font-family:'ArialMT', 'Arial', sans-serif;
  5412. font-weight:400;
  5413. font-style:normal;
  5414. font-size:11px;
  5415. letter-spacing:normal;
  5416. color:#AAAAAA;
  5417. vertical-align:none;
  5418. text-align:left;
  5419. text-transform:none;
  5420. background-color:transparent;
  5421. border-color:transparent;
  5422. }
  5423. #u32165_div {
  5424. border-width:0px;
  5425. position:absolute;
  5426. left:0px;
  5427. top:0px;
  5428. width:120px;
  5429. height:23px;
  5430. background:inherit;
  5431. background-color:rgba(255, 255, 255, 1);
  5432. border:none;
  5433. border-radius:0px;
  5434. -moz-box-shadow:none;
  5435. -webkit-box-shadow:none;
  5436. box-shadow:none;
  5437. font-size:11px;
  5438. color:#AAAAAA;
  5439. }
  5440. #u32165 {
  5441. border-width:0px;
  5442. position:absolute;
  5443. left:507px;
  5444. top:113px;
  5445. width:120px;
  5446. height:23px;
  5447. display:flex;
  5448. font-size:11px;
  5449. color:#AAAAAA;
  5450. }
  5451. #u32165 .text {
  5452. position:absolute;
  5453. align-self:flex-start;
  5454. padding:2px 2px 2px 2px;
  5455. box-sizing:border-box;
  5456. width:100%;
  5457. }
  5458. #u32165_div.disabled {
  5459. border-width:0px;
  5460. position:absolute;
  5461. left:0px;
  5462. top:0px;
  5463. width:120px;
  5464. height:23px;
  5465. background:inherit;
  5466. background-color:rgba(240, 240, 240, 1);
  5467. border:none;
  5468. border-radius:0px;
  5469. -moz-box-shadow:none;
  5470. -webkit-box-shadow:none;
  5471. box-shadow:none;
  5472. font-size:11px;
  5473. color:#AAAAAA;
  5474. }
  5475. #u32165.disabled {
  5476. }
  5477. .u32165_input_option {
  5478. font-size:11px;
  5479. }
  5480. #u32166 {
  5481. border-width:0px;
  5482. position:absolute;
  5483. left:0px;
  5484. top:0px;
  5485. width:0px;
  5486. height:0px;
  5487. }
  5488. #u32167_div {
  5489. border-width:0px;
  5490. position:absolute;
  5491. left:0px;
  5492. top:0px;
  5493. width:200px;
  5494. height:1192px;
  5495. background:inherit;
  5496. background-color:rgba(255, 255, 255, 1);
  5497. border:none;
  5498. border-radius:0px;
  5499. -moz-box-shadow:none;
  5500. -webkit-box-shadow:none;
  5501. box-shadow:none;
  5502. }
  5503. #u32167 {
  5504. border-width:0px;
  5505. position:absolute;
  5506. left:120px;
  5507. top:51px;
  5508. width:200px;
  5509. height:1192px;
  5510. display:flex;
  5511. }
  5512. #u32167 .text {
  5513. position:absolute;
  5514. align-self:center;
  5515. padding:2px 2px 2px 2px;
  5516. box-sizing:border-box;
  5517. width:100%;
  5518. }
  5519. #u32167_text {
  5520. border-width:0px;
  5521. word-wrap:break-word;
  5522. text-transform:none;
  5523. visibility:hidden;
  5524. }
  5525. #u32168_div {
  5526. border-width:0px;
  5527. position:absolute;
  5528. left:0px;
  5529. top:0px;
  5530. width:200px;
  5531. height:60px;
  5532. background:inherit;
  5533. background-color:rgba(224, 231, 247, 1);
  5534. border:none;
  5535. border-radius:0px;
  5536. -moz-box-shadow:none;
  5537. -webkit-box-shadow:none;
  5538. box-shadow:none;
  5539. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  5540. font-weight:500;
  5541. font-style:normal;
  5542. font-size:18px;
  5543. }
  5544. #u32168 {
  5545. border-width:0px;
  5546. position:absolute;
  5547. left:120px;
  5548. top:51px;
  5549. width:200px;
  5550. height:60px;
  5551. display:flex;
  5552. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  5553. font-weight:500;
  5554. font-style:normal;
  5555. font-size:18px;
  5556. }
  5557. #u32168 .text {
  5558. position:absolute;
  5559. align-self:center;
  5560. padding:0px 0px 0px 20px;
  5561. box-sizing:border-box;
  5562. width:100%;
  5563. }
  5564. #u32168_text {
  5565. border-width:0px;
  5566. word-wrap:break-word;
  5567. text-transform:none;
  5568. }
  5569. #u32169_div {
  5570. border-width:0px;
  5571. position:absolute;
  5572. left:0px;
  5573. top:0px;
  5574. width:97px;
  5575. height:22px;
  5576. background:inherit;
  5577. background-color:rgba(255, 255, 255, 0);
  5578. border:none;
  5579. border-radius:0px;
  5580. -moz-box-shadow:none;
  5581. -webkit-box-shadow:none;
  5582. box-shadow:none;
  5583. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5584. font-weight:400;
  5585. font-style:normal;
  5586. font-size:16px;
  5587. }
  5588. #u32169 {
  5589. border-width:0px;
  5590. position:absolute;
  5591. left:147px;
  5592. top:291px;
  5593. width:97px;
  5594. height:22px;
  5595. display:flex;
  5596. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5597. font-weight:400;
  5598. font-style:normal;
  5599. font-size:16px;
  5600. }
  5601. #u32169 .text {
  5602. position:absolute;
  5603. align-self:flex-start;
  5604. padding:0px 0px 0px 0px;
  5605. box-sizing:border-box;
  5606. width:100%;
  5607. }
  5608. #u32169_text {
  5609. border-width:0px;
  5610. white-space:nowrap;
  5611. text-transform:none;
  5612. }
  5613. #u32170_div {
  5614. border-width:0px;
  5615. position:absolute;
  5616. left:0px;
  5617. top:0px;
  5618. width:65px;
  5619. height:22px;
  5620. background:inherit;
  5621. background-color:rgba(255, 255, 255, 0);
  5622. border:none;
  5623. border-radius:0px;
  5624. -moz-box-shadow:none;
  5625. -webkit-box-shadow:none;
  5626. box-shadow:none;
  5627. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5628. font-weight:400;
  5629. font-style:normal;
  5630. font-size:16px;
  5631. }
  5632. #u32170 {
  5633. border-width:0px;
  5634. position:absolute;
  5635. left:147px;
  5636. top:167px;
  5637. width:65px;
  5638. height:22px;
  5639. display:flex;
  5640. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5641. font-weight:400;
  5642. font-style:normal;
  5643. font-size:16px;
  5644. }
  5645. #u32170 .text {
  5646. position:absolute;
  5647. align-self:flex-start;
  5648. padding:0px 0px 0px 0px;
  5649. box-sizing:border-box;
  5650. width:100%;
  5651. }
  5652. #u32170_text {
  5653. border-width:0px;
  5654. white-space:nowrap;
  5655. text-transform:none;
  5656. }
  5657. #u32171_div {
  5658. border-width:0px;
  5659. position:absolute;
  5660. left:0px;
  5661. top:0px;
  5662. width:49px;
  5663. height:17px;
  5664. background:inherit;
  5665. background-color:rgba(255, 255, 255, 0);
  5666. border:none;
  5667. border-radius:0px;
  5668. -moz-box-shadow:none;
  5669. -webkit-box-shadow:none;
  5670. box-shadow:none;
  5671. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5672. font-weight:400;
  5673. font-style:normal;
  5674. font-size:12px;
  5675. color:#AAAAAA;
  5676. }
  5677. #u32171 {
  5678. border-width:0px;
  5679. position:absolute;
  5680. left:147px;
  5681. top:131px;
  5682. width:49px;
  5683. height:17px;
  5684. display:flex;
  5685. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5686. font-weight:400;
  5687. font-style:normal;
  5688. font-size:12px;
  5689. color:#AAAAAA;
  5690. }
  5691. #u32171 .text {
  5692. position:absolute;
  5693. align-self:flex-start;
  5694. padding:0px 0px 0px 0px;
  5695. box-sizing:border-box;
  5696. width:100%;
  5697. }
  5698. #u32171_text {
  5699. border-width:0px;
  5700. white-space:nowrap;
  5701. text-transform:none;
  5702. }
  5703. #u32172_div {
  5704. border-width:0px;
  5705. position:absolute;
  5706. left:0px;
  5707. top:0px;
  5708. width:65px;
  5709. height:22px;
  5710. background:inherit;
  5711. background-color:rgba(255, 255, 255, 0);
  5712. border:none;
  5713. border-radius:0px;
  5714. -moz-box-shadow:none;
  5715. -webkit-box-shadow:none;
  5716. box-shadow:none;
  5717. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5718. font-weight:400;
  5719. font-style:normal;
  5720. font-size:16px;
  5721. }
  5722. #u32172 {
  5723. border-width:0px;
  5724. position:absolute;
  5725. left:147px;
  5726. top:209px;
  5727. width:65px;
  5728. height:22px;
  5729. display:flex;
  5730. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5731. font-weight:400;
  5732. font-style:normal;
  5733. font-size:16px;
  5734. }
  5735. #u32172 .text {
  5736. position:absolute;
  5737. align-self:flex-start;
  5738. padding:0px 0px 0px 0px;
  5739. box-sizing:border-box;
  5740. width:100%;
  5741. }
  5742. #u32172_text {
  5743. border-width:0px;
  5744. white-space:nowrap;
  5745. text-transform:none;
  5746. }
  5747. #u32173_div {
  5748. border-width:0px;
  5749. position:absolute;
  5750. left:0px;
  5751. top:0px;
  5752. width:97px;
  5753. height:22px;
  5754. background:inherit;
  5755. background-color:rgba(255, 255, 255, 0);
  5756. border:none;
  5757. border-radius:0px;
  5758. -moz-box-shadow:none;
  5759. -webkit-box-shadow:none;
  5760. box-shadow:none;
  5761. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5762. font-weight:400;
  5763. font-style:normal;
  5764. font-size:16px;
  5765. }
  5766. #u32173 {
  5767. border-width:0px;
  5768. position:absolute;
  5769. left:147px;
  5770. top:333px;
  5771. width:97px;
  5772. height:22px;
  5773. display:flex;
  5774. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5775. font-weight:400;
  5776. font-style:normal;
  5777. font-size:16px;
  5778. }
  5779. #u32173 .text {
  5780. position:absolute;
  5781. align-self:flex-start;
  5782. padding:0px 0px 0px 0px;
  5783. box-sizing:border-box;
  5784. width:100%;
  5785. }
  5786. #u32173_text {
  5787. border-width:0px;
  5788. white-space:nowrap;
  5789. text-transform:none;
  5790. }
  5791. #u32174_div {
  5792. border-width:0px;
  5793. position:absolute;
  5794. left:0px;
  5795. top:0px;
  5796. width:65px;
  5797. height:22px;
  5798. background:inherit;
  5799. background-color:rgba(255, 255, 255, 0);
  5800. border:none;
  5801. border-radius:0px;
  5802. -moz-box-shadow:none;
  5803. -webkit-box-shadow:none;
  5804. box-shadow:none;
  5805. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5806. font-weight:400;
  5807. font-style:normal;
  5808. font-size:16px;
  5809. }
  5810. #u32174 {
  5811. border-width:0px;
  5812. position:absolute;
  5813. left:147px;
  5814. top:440px;
  5815. width:65px;
  5816. height:22px;
  5817. display:flex;
  5818. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5819. font-weight:400;
  5820. font-style:normal;
  5821. font-size:16px;
  5822. }
  5823. #u32174 .text {
  5824. position:absolute;
  5825. align-self:flex-start;
  5826. padding:0px 0px 0px 0px;
  5827. box-sizing:border-box;
  5828. width:100%;
  5829. }
  5830. #u32174_text {
  5831. border-width:0px;
  5832. white-space:nowrap;
  5833. text-transform:none;
  5834. }
  5835. #u32175_img {
  5836. border-width:0px;
  5837. position:absolute;
  5838. left:0px;
  5839. top:0px;
  5840. width:201px;
  5841. height:2px;
  5842. }
  5843. #u32175 {
  5844. border-width:0px;
  5845. position:absolute;
  5846. left:120px;
  5847. top:378px;
  5848. width:200px;
  5849. height:1px;
  5850. display:flex;
  5851. }
  5852. #u32175 .text {
  5853. position:absolute;
  5854. align-self:center;
  5855. padding:2px 2px 2px 2px;
  5856. box-sizing:border-box;
  5857. width:100%;
  5858. }
  5859. #u32175_text {
  5860. border-width:0px;
  5861. word-wrap:break-word;
  5862. text-transform:none;
  5863. visibility:hidden;
  5864. }
  5865. #u32176_div {
  5866. border-width:0px;
  5867. position:absolute;
  5868. left:0px;
  5869. top:0px;
  5870. width:49px;
  5871. height:17px;
  5872. background:inherit;
  5873. background-color:rgba(255, 255, 255, 0);
  5874. border:none;
  5875. border-radius:0px;
  5876. -moz-box-shadow:none;
  5877. -webkit-box-shadow:none;
  5878. box-shadow:none;
  5879. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5880. font-weight:400;
  5881. font-style:normal;
  5882. font-size:12px;
  5883. color:#AAAAAA;
  5884. }
  5885. #u32176 {
  5886. border-width:0px;
  5887. position:absolute;
  5888. left:147px;
  5889. top:404px;
  5890. width:49px;
  5891. height:17px;
  5892. display:flex;
  5893. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5894. font-weight:400;
  5895. font-style:normal;
  5896. font-size:12px;
  5897. color:#AAAAAA;
  5898. }
  5899. #u32176 .text {
  5900. position:absolute;
  5901. align-self:flex-start;
  5902. padding:0px 0px 0px 0px;
  5903. box-sizing:border-box;
  5904. width:100%;
  5905. }
  5906. #u32176_text {
  5907. border-width:0px;
  5908. white-space:nowrap;
  5909. text-transform:none;
  5910. }
  5911. #u32177_div {
  5912. border-width:0px;
  5913. position:absolute;
  5914. left:0px;
  5915. top:0px;
  5916. width:65px;
  5917. height:22px;
  5918. background:inherit;
  5919. background-color:rgba(255, 255, 255, 0);
  5920. border:none;
  5921. border-radius:0px;
  5922. -moz-box-shadow:none;
  5923. -webkit-box-shadow:none;
  5924. box-shadow:none;
  5925. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5926. font-weight:400;
  5927. font-style:normal;
  5928. font-size:16px;
  5929. }
  5930. #u32177 {
  5931. border-width:0px;
  5932. position:absolute;
  5933. left:147px;
  5934. top:482px;
  5935. width:65px;
  5936. height:22px;
  5937. display:flex;
  5938. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5939. font-weight:400;
  5940. font-style:normal;
  5941. font-size:16px;
  5942. }
  5943. #u32177 .text {
  5944. position:absolute;
  5945. align-self:flex-start;
  5946. padding:0px 0px 0px 0px;
  5947. box-sizing:border-box;
  5948. width:100%;
  5949. }
  5950. #u32177_text {
  5951. border-width:0px;
  5952. white-space:nowrap;
  5953. text-transform:none;
  5954. }
  5955. #u32178_div {
  5956. border-width:0px;
  5957. position:absolute;
  5958. left:0px;
  5959. top:0px;
  5960. width:65px;
  5961. height:22px;
  5962. background:inherit;
  5963. background-color:rgba(255, 255, 255, 0);
  5964. border:none;
  5965. border-radius:0px;
  5966. -moz-box-shadow:none;
  5967. -webkit-box-shadow:none;
  5968. box-shadow:none;
  5969. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5970. font-weight:400;
  5971. font-style:normal;
  5972. font-size:16px;
  5973. }
  5974. #u32178 {
  5975. border-width:0px;
  5976. position:absolute;
  5977. left:147px;
  5978. top:586px;
  5979. width:65px;
  5980. height:22px;
  5981. display:flex;
  5982. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5983. font-weight:400;
  5984. font-style:normal;
  5985. font-size:16px;
  5986. }
  5987. #u32178 .text {
  5988. position:absolute;
  5989. align-self:flex-start;
  5990. padding:0px 0px 0px 0px;
  5991. box-sizing:border-box;
  5992. width:100%;
  5993. }
  5994. #u32178_text {
  5995. border-width:0px;
  5996. white-space:nowrap;
  5997. text-transform:none;
  5998. }
  5999. #u32179_img {
  6000. border-width:0px;
  6001. position:absolute;
  6002. left:0px;
  6003. top:0px;
  6004. width:201px;
  6005. height:2px;
  6006. }
  6007. #u32179 {
  6008. border-width:0px;
  6009. position:absolute;
  6010. left:120px;
  6011. top:524px;
  6012. width:200px;
  6013. height:1px;
  6014. display:flex;
  6015. }
  6016. #u32179 .text {
  6017. position:absolute;
  6018. align-self:center;
  6019. padding:2px 2px 2px 2px;
  6020. box-sizing:border-box;
  6021. width:100%;
  6022. }
  6023. #u32179_text {
  6024. border-width:0px;
  6025. word-wrap:break-word;
  6026. text-transform:none;
  6027. visibility:hidden;
  6028. }
  6029. #u32180_div {
  6030. border-width:0px;
  6031. position:absolute;
  6032. left:0px;
  6033. top:0px;
  6034. width:49px;
  6035. height:17px;
  6036. background:inherit;
  6037. background-color:rgba(255, 255, 255, 0);
  6038. border:none;
  6039. border-radius:0px;
  6040. -moz-box-shadow:none;
  6041. -webkit-box-shadow:none;
  6042. box-shadow:none;
  6043. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6044. font-weight:400;
  6045. font-style:normal;
  6046. font-size:12px;
  6047. color:#AAAAAA;
  6048. }
  6049. #u32180 {
  6050. border-width:0px;
  6051. position:absolute;
  6052. left:147px;
  6053. top:550px;
  6054. width:49px;
  6055. height:17px;
  6056. display:flex;
  6057. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6058. font-weight:400;
  6059. font-style:normal;
  6060. font-size:12px;
  6061. color:#AAAAAA;
  6062. }
  6063. #u32180 .text {
  6064. position:absolute;
  6065. align-self:flex-start;
  6066. padding:0px 0px 0px 0px;
  6067. box-sizing:border-box;
  6068. width:100%;
  6069. }
  6070. #u32180_text {
  6071. border-width:0px;
  6072. white-space:nowrap;
  6073. text-transform:none;
  6074. }
  6075. #u32181_div {
  6076. border-width:0px;
  6077. position:absolute;
  6078. left:0px;
  6079. top:0px;
  6080. width:65px;
  6081. height:22px;
  6082. background:inherit;
  6083. background-color:rgba(255, 255, 255, 0);
  6084. border:none;
  6085. border-radius:0px;
  6086. -moz-box-shadow:none;
  6087. -webkit-box-shadow:none;
  6088. box-shadow:none;
  6089. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6090. font-weight:400;
  6091. font-style:normal;
  6092. font-size:16px;
  6093. }
  6094. #u32181 {
  6095. border-width:0px;
  6096. position:absolute;
  6097. left:147px;
  6098. top:251px;
  6099. width:65px;
  6100. height:22px;
  6101. display:flex;
  6102. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6103. font-weight:400;
  6104. font-style:normal;
  6105. font-size:16px;
  6106. }
  6107. #u32181 .text {
  6108. position:absolute;
  6109. align-self:flex-start;
  6110. padding:0px 0px 0px 0px;
  6111. box-sizing:border-box;
  6112. width:100%;
  6113. }
  6114. #u32181_text {
  6115. border-width:0px;
  6116. white-space:nowrap;
  6117. text-transform:none;
  6118. }