styles.css 241 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135113611371138113911401141114211431144114511461147114811491150115111521153115411551156115711581159116011611162116311641165116611671168116911701171117211731174117511761177117811791180118111821183118411851186118711881189119011911192119311941195119611971198119912001201120212031204120512061207120812091210121112121213121412151216121712181219122012211222122312241225122612271228122912301231123212331234123512361237123812391240124112421243124412451246124712481249125012511252125312541255125612571258125912601261126212631264126512661267126812691270127112721273127412751276127712781279128012811282128312841285128612871288128912901291129212931294129512961297129812991300130113021303130413051306130713081309131013111312131313141315131613171318131913201321132213231324132513261327132813291330133113321333133413351336133713381339134013411342134313441345134613471348134913501351135213531354135513561357135813591360136113621363136413651366136713681369137013711372137313741375137613771378137913801381138213831384138513861387138813891390139113921393139413951396139713981399140014011402140314041405140614071408140914101411141214131414141514161417141814191420142114221423142414251426142714281429143014311432143314341435143614371438143914401441144214431444144514461447144814491450145114521453145414551456145714581459146014611462146314641465146614671468146914701471147214731474147514761477147814791480148114821483148414851486148714881489149014911492149314941495149614971498149915001501150215031504150515061507150815091510151115121513151415151516151715181519152015211522152315241525152615271528152915301531153215331534153515361537153815391540154115421543154415451546154715481549155015511552155315541555155615571558155915601561156215631564156515661567156815691570157115721573157415751576157715781579158015811582158315841585158615871588158915901591159215931594159515961597159815991600160116021603160416051606160716081609161016111612161316141615161616171618161916201621162216231624162516261627162816291630163116321633163416351636163716381639164016411642164316441645164616471648164916501651165216531654165516561657165816591660166116621663166416651666166716681669167016711672167316741675167616771678167916801681168216831684168516861687168816891690169116921693169416951696169716981699170017011702170317041705170617071708170917101711171217131714171517161717171817191720172117221723172417251726172717281729173017311732173317341735173617371738173917401741174217431744174517461747174817491750175117521753175417551756175717581759176017611762176317641765176617671768176917701771177217731774177517761777177817791780178117821783178417851786178717881789179017911792179317941795179617971798179918001801180218031804180518061807180818091810181118121813181418151816181718181819182018211822182318241825182618271828182918301831183218331834183518361837183818391840184118421843184418451846184718481849185018511852185318541855185618571858185918601861186218631864186518661867186818691870187118721873187418751876187718781879188018811882188318841885188618871888188918901891189218931894189518961897189818991900190119021903190419051906190719081909191019111912191319141915191619171918191919201921192219231924192519261927192819291930193119321933193419351936193719381939194019411942194319441945194619471948194919501951195219531954195519561957195819591960196119621963196419651966196719681969197019711972197319741975197619771978197919801981198219831984198519861987198819891990199119921993199419951996199719981999200020012002200320042005200620072008200920102011201220132014201520162017201820192020202120222023202420252026202720282029203020312032203320342035203620372038203920402041204220432044204520462047204820492050205120522053205420552056205720582059206020612062206320642065206620672068206920702071207220732074207520762077207820792080208120822083208420852086208720882089209020912092209320942095209620972098209921002101210221032104210521062107210821092110211121122113211421152116211721182119212021212122212321242125212621272128212921302131213221332134213521362137213821392140214121422143214421452146214721482149215021512152215321542155215621572158215921602161216221632164216521662167216821692170217121722173217421752176217721782179218021812182218321842185218621872188218921902191219221932194219521962197219821992200220122022203220422052206220722082209221022112212221322142215221622172218221922202221222222232224222522262227222822292230223122322233223422352236223722382239224022412242224322442245224622472248224922502251225222532254225522562257225822592260226122622263226422652266226722682269227022712272227322742275227622772278227922802281228222832284228522862287228822892290229122922293229422952296229722982299230023012302230323042305230623072308230923102311231223132314231523162317231823192320232123222323232423252326232723282329233023312332233323342335233623372338233923402341234223432344234523462347234823492350235123522353235423552356235723582359236023612362236323642365236623672368236923702371237223732374237523762377237823792380238123822383238423852386238723882389239023912392239323942395239623972398239924002401240224032404240524062407240824092410241124122413241424152416241724182419242024212422242324242425242624272428242924302431243224332434243524362437243824392440244124422443244424452446244724482449245024512452245324542455245624572458245924602461246224632464246524662467246824692470247124722473247424752476247724782479248024812482248324842485248624872488248924902491249224932494249524962497249824992500250125022503250425052506250725082509251025112512251325142515251625172518251925202521252225232524252525262527252825292530253125322533253425352536253725382539254025412542254325442545254625472548254925502551255225532554255525562557255825592560256125622563256425652566256725682569257025712572257325742575257625772578257925802581258225832584258525862587258825892590259125922593259425952596259725982599260026012602260326042605260626072608260926102611261226132614261526162617261826192620262126222623262426252626262726282629263026312632263326342635263626372638263926402641264226432644264526462647264826492650265126522653265426552656265726582659266026612662266326642665266626672668266926702671267226732674267526762677267826792680268126822683268426852686268726882689269026912692269326942695269626972698269927002701270227032704270527062707270827092710271127122713271427152716271727182719272027212722272327242725272627272728272927302731273227332734273527362737273827392740274127422743274427452746274727482749275027512752275327542755275627572758275927602761276227632764276527662767276827692770277127722773277427752776277727782779278027812782278327842785278627872788278927902791279227932794279527962797279827992800280128022803280428052806280728082809281028112812281328142815281628172818281928202821282228232824282528262827282828292830283128322833283428352836283728382839284028412842284328442845284628472848284928502851285228532854285528562857285828592860286128622863286428652866286728682869287028712872287328742875287628772878287928802881288228832884288528862887288828892890289128922893289428952896289728982899290029012902290329042905290629072908290929102911291229132914291529162917291829192920292129222923292429252926292729282929293029312932293329342935293629372938293929402941294229432944294529462947294829492950295129522953295429552956295729582959296029612962296329642965296629672968296929702971297229732974297529762977297829792980298129822983298429852986298729882989299029912992299329942995299629972998299930003001300230033004300530063007300830093010301130123013301430153016301730183019302030213022302330243025302630273028302930303031303230333034303530363037303830393040304130423043304430453046304730483049305030513052305330543055305630573058305930603061306230633064306530663067306830693070307130723073307430753076307730783079308030813082308330843085308630873088308930903091309230933094309530963097309830993100310131023103310431053106310731083109311031113112311331143115311631173118311931203121312231233124312531263127312831293130313131323133313431353136313731383139314031413142314331443145314631473148314931503151315231533154315531563157315831593160316131623163316431653166316731683169317031713172317331743175317631773178317931803181318231833184318531863187318831893190319131923193319431953196319731983199320032013202320332043205320632073208320932103211321232133214321532163217321832193220322132223223322432253226322732283229323032313232323332343235323632373238323932403241324232433244324532463247324832493250325132523253325432553256325732583259326032613262326332643265326632673268326932703271327232733274327532763277327832793280328132823283328432853286328732883289329032913292329332943295329632973298329933003301330233033304330533063307330833093310331133123313331433153316331733183319332033213322332333243325332633273328332933303331333233333334333533363337333833393340334133423343334433453346334733483349335033513352335333543355335633573358335933603361336233633364336533663367336833693370337133723373337433753376337733783379338033813382338333843385338633873388338933903391339233933394339533963397339833993400340134023403340434053406340734083409341034113412341334143415341634173418341934203421342234233424342534263427342834293430343134323433343434353436343734383439344034413442344334443445344634473448344934503451345234533454345534563457345834593460346134623463346434653466346734683469347034713472347334743475347634773478347934803481348234833484348534863487348834893490349134923493349434953496349734983499350035013502350335043505350635073508350935103511351235133514351535163517351835193520352135223523352435253526352735283529353035313532353335343535353635373538353935403541354235433544354535463547354835493550355135523553355435553556355735583559356035613562356335643565356635673568356935703571357235733574357535763577357835793580358135823583358435853586358735883589359035913592359335943595359635973598359936003601360236033604360536063607360836093610361136123613361436153616361736183619362036213622362336243625362636273628362936303631363236333634363536363637363836393640364136423643364436453646364736483649365036513652365336543655365636573658365936603661366236633664366536663667366836693670367136723673367436753676367736783679368036813682368336843685368636873688368936903691369236933694369536963697369836993700370137023703370437053706370737083709371037113712371337143715371637173718371937203721372237233724372537263727372837293730373137323733373437353736373737383739374037413742374337443745374637473748374937503751375237533754375537563757375837593760376137623763376437653766376737683769377037713772377337743775377637773778377937803781378237833784378537863787378837893790379137923793379437953796379737983799380038013802380338043805380638073808380938103811381238133814381538163817381838193820382138223823382438253826382738283829383038313832383338343835383638373838383938403841384238433844384538463847384838493850385138523853385438553856385738583859386038613862386338643865386638673868386938703871387238733874387538763877387838793880388138823883388438853886388738883889389038913892389338943895389638973898389939003901390239033904390539063907390839093910391139123913391439153916391739183919392039213922392339243925392639273928392939303931393239333934393539363937393839393940394139423943394439453946394739483949395039513952395339543955395639573958395939603961396239633964396539663967396839693970397139723973397439753976397739783979398039813982398339843985398639873988398939903991399239933994399539963997399839994000400140024003400440054006400740084009401040114012401340144015401640174018401940204021402240234024402540264027402840294030403140324033403440354036403740384039404040414042404340444045404640474048404940504051405240534054405540564057405840594060406140624063406440654066406740684069407040714072407340744075407640774078407940804081408240834084408540864087408840894090409140924093409440954096409740984099410041014102410341044105410641074108410941104111411241134114411541164117411841194120412141224123412441254126412741284129413041314132413341344135413641374138413941404141414241434144414541464147414841494150415141524153415441554156415741584159416041614162416341644165416641674168416941704171417241734174417541764177417841794180418141824183418441854186418741884189419041914192419341944195419641974198419942004201420242034204420542064207420842094210421142124213421442154216421742184219422042214222422342244225422642274228422942304231423242334234423542364237423842394240424142424243424442454246424742484249425042514252425342544255425642574258425942604261426242634264426542664267426842694270427142724273427442754276427742784279428042814282428342844285428642874288428942904291429242934294429542964297429842994300430143024303430443054306430743084309431043114312431343144315431643174318431943204321432243234324432543264327432843294330433143324333433443354336433743384339434043414342434343444345434643474348434943504351435243534354435543564357435843594360436143624363436443654366436743684369437043714372437343744375437643774378437943804381438243834384438543864387438843894390439143924393439443954396439743984399440044014402440344044405440644074408440944104411441244134414441544164417441844194420442144224423442444254426442744284429443044314432443344344435443644374438443944404441444244434444444544464447444844494450445144524453445444554456445744584459446044614462446344644465446644674468446944704471447244734474447544764477447844794480448144824483448444854486448744884489449044914492449344944495449644974498449945004501450245034504450545064507450845094510451145124513451445154516451745184519452045214522452345244525452645274528452945304531453245334534453545364537453845394540454145424543454445454546454745484549455045514552455345544555455645574558455945604561456245634564456545664567456845694570457145724573457445754576457745784579458045814582458345844585458645874588458945904591459245934594459545964597459845994600460146024603460446054606460746084609461046114612461346144615461646174618461946204621462246234624462546264627462846294630463146324633463446354636463746384639464046414642464346444645464646474648464946504651465246534654465546564657465846594660466146624663466446654666466746684669467046714672467346744675467646774678467946804681468246834684468546864687468846894690469146924693469446954696469746984699470047014702470347044705470647074708470947104711471247134714471547164717471847194720472147224723472447254726472747284729473047314732473347344735473647374738473947404741474247434744474547464747474847494750475147524753475447554756475747584759476047614762476347644765476647674768476947704771477247734774477547764777477847794780478147824783478447854786478747884789479047914792479347944795479647974798479948004801480248034804480548064807480848094810481148124813481448154816481748184819482048214822482348244825482648274828482948304831483248334834483548364837483848394840484148424843484448454846484748484849485048514852485348544855485648574858485948604861486248634864486548664867486848694870487148724873487448754876487748784879488048814882488348844885488648874888488948904891489248934894489548964897489848994900490149024903490449054906490749084909491049114912491349144915491649174918491949204921492249234924492549264927492849294930493149324933493449354936493749384939494049414942494349444945494649474948494949504951495249534954495549564957495849594960496149624963496449654966496749684969497049714972497349744975497649774978497949804981498249834984498549864987498849894990499149924993499449954996499749984999500050015002500350045005500650075008500950105011501250135014501550165017501850195020502150225023502450255026502750285029503050315032503350345035503650375038503950405041504250435044504550465047504850495050505150525053505450555056505750585059506050615062506350645065506650675068506950705071507250735074507550765077507850795080508150825083508450855086508750885089509050915092509350945095509650975098509951005101510251035104510551065107510851095110511151125113511451155116511751185119512051215122512351245125512651275128512951305131513251335134513551365137513851395140514151425143514451455146514751485149515051515152515351545155515651575158515951605161516251635164516551665167516851695170517151725173517451755176517751785179518051815182518351845185518651875188518951905191519251935194519551965197519851995200520152025203520452055206520752085209521052115212521352145215521652175218521952205221522252235224522552265227522852295230523152325233523452355236523752385239524052415242524352445245524652475248524952505251525252535254525552565257525852595260526152625263526452655266526752685269527052715272527352745275527652775278527952805281528252835284528552865287528852895290529152925293529452955296529752985299530053015302530353045305530653075308530953105311531253135314531553165317531853195320532153225323532453255326532753285329533053315332533353345335533653375338533953405341534253435344534553465347534853495350535153525353535453555356535753585359536053615362536353645365536653675368536953705371537253735374537553765377537853795380538153825383538453855386538753885389539053915392539353945395539653975398539954005401540254035404540554065407540854095410541154125413541454155416541754185419542054215422542354245425542654275428542954305431543254335434543554365437543854395440544154425443544454455446544754485449545054515452545354545455545654575458545954605461546254635464546554665467546854695470547154725473547454755476547754785479548054815482548354845485548654875488548954905491549254935494549554965497549854995500550155025503550455055506550755085509551055115512551355145515551655175518551955205521552255235524552555265527552855295530553155325533553455355536553755385539554055415542554355445545554655475548554955505551555255535554555555565557555855595560556155625563556455655566556755685569557055715572557355745575557655775578557955805581558255835584558555865587558855895590559155925593559455955596559755985599560056015602560356045605560656075608560956105611561256135614561556165617561856195620562156225623562456255626562756285629563056315632563356345635563656375638563956405641564256435644564556465647564856495650565156525653565456555656565756585659566056615662566356645665566656675668566956705671567256735674567556765677567856795680568156825683568456855686568756885689569056915692569356945695569656975698569957005701570257035704570557065707570857095710571157125713571457155716571757185719572057215722572357245725572657275728572957305731573257335734573557365737573857395740574157425743574457455746574757485749575057515752575357545755575657575758575957605761576257635764576557665767576857695770577157725773577457755776577757785779578057815782578357845785578657875788578957905791579257935794579557965797579857995800580158025803580458055806580758085809581058115812581358145815581658175818581958205821582258235824582558265827582858295830583158325833583458355836583758385839584058415842584358445845584658475848584958505851585258535854585558565857585858595860586158625863586458655866586758685869587058715872587358745875587658775878587958805881588258835884588558865887588858895890589158925893589458955896589758985899590059015902590359045905590659075908590959105911591259135914591559165917591859195920592159225923592459255926592759285929593059315932593359345935593659375938593959405941594259435944594559465947594859495950595159525953595459555956595759585959596059615962596359645965596659675968596959705971597259735974597559765977597859795980598159825983598459855986598759885989599059915992599359945995599659975998599960006001600260036004600560066007600860096010601160126013601460156016601760186019602060216022602360246025602660276028602960306031603260336034603560366037603860396040604160426043604460456046604760486049605060516052605360546055605660576058605960606061606260636064606560666067606860696070607160726073607460756076607760786079608060816082608360846085608660876088608960906091609260936094609560966097609860996100610161026103610461056106610761086109611061116112611361146115611661176118611961206121612261236124612561266127612861296130613161326133613461356136613761386139614061416142614361446145614661476148614961506151615261536154615561566157615861596160616161626163616461656166616761686169617061716172617361746175617661776178617961806181618261836184618561866187618861896190619161926193619461956196619761986199620062016202620362046205620662076208620962106211621262136214621562166217621862196220622162226223622462256226622762286229623062316232623362346235623662376238623962406241624262436244624562466247624862496250625162526253625462556256625762586259626062616262626362646265626662676268626962706271627262736274627562766277627862796280628162826283628462856286628762886289629062916292629362946295629662976298629963006301630263036304630563066307630863096310631163126313631463156316631763186319632063216322632363246325632663276328632963306331633263336334633563366337633863396340634163426343634463456346634763486349635063516352635363546355635663576358635963606361636263636364636563666367636863696370637163726373637463756376637763786379638063816382638363846385638663876388638963906391639263936394639563966397639863996400640164026403640464056406640764086409641064116412641364146415641664176418641964206421642264236424642564266427642864296430643164326433643464356436643764386439644064416442644364446445644664476448644964506451645264536454645564566457645864596460646164626463646464656466646764686469647064716472647364746475647664776478647964806481648264836484648564866487648864896490649164926493649464956496649764986499650065016502650365046505650665076508650965106511651265136514651565166517651865196520652165226523652465256526652765286529653065316532653365346535653665376538653965406541654265436544654565466547654865496550655165526553655465556556655765586559656065616562656365646565656665676568656965706571657265736574657565766577657865796580658165826583658465856586658765886589659065916592659365946595659665976598659966006601660266036604660566066607660866096610661166126613661466156616661766186619662066216622662366246625662666276628662966306631663266336634663566366637663866396640664166426643664466456646664766486649665066516652665366546655665666576658665966606661666266636664666566666667666866696670667166726673667466756676667766786679668066816682668366846685668666876688668966906691669266936694669566966697669866996700670167026703670467056706670767086709671067116712671367146715671667176718671967206721672267236724672567266727672867296730673167326733673467356736673767386739674067416742674367446745674667476748674967506751675267536754675567566757675867596760676167626763676467656766676767686769677067716772677367746775677667776778677967806781678267836784678567866787678867896790679167926793679467956796679767986799680068016802680368046805680668076808680968106811681268136814681568166817681868196820682168226823682468256826682768286829683068316832683368346835683668376838683968406841684268436844684568466847684868496850685168526853685468556856685768586859686068616862686368646865686668676868686968706871687268736874687568766877687868796880688168826883688468856886688768886889689068916892689368946895689668976898689969006901690269036904690569066907690869096910691169126913691469156916691769186919692069216922692369246925692669276928692969306931693269336934693569366937693869396940694169426943694469456946694769486949695069516952695369546955695669576958695969606961696269636964696569666967696869696970697169726973697469756976697769786979698069816982698369846985698669876988698969906991699269936994699569966997699869997000700170027003700470057006700770087009701070117012701370147015701670177018701970207021702270237024702570267027702870297030703170327033703470357036703770387039704070417042704370447045704670477048704970507051705270537054705570567057705870597060706170627063706470657066706770687069707070717072707370747075707670777078707970807081708270837084708570867087708870897090709170927093709470957096709770987099710071017102710371047105710671077108710971107111711271137114711571167117711871197120712171227123712471257126712771287129713071317132713371347135713671377138713971407141714271437144714571467147714871497150715171527153715471557156715771587159716071617162716371647165716671677168716971707171717271737174717571767177717871797180718171827183718471857186718771887189719071917192719371947195719671977198719972007201720272037204720572067207720872097210721172127213721472157216721772187219722072217222722372247225722672277228722972307231723272337234723572367237723872397240724172427243724472457246724772487249725072517252725372547255725672577258725972607261726272637264726572667267726872697270727172727273727472757276727772787279728072817282728372847285728672877288728972907291729272937294729572967297729872997300730173027303730473057306730773087309731073117312731373147315731673177318731973207321732273237324732573267327732873297330733173327333733473357336733773387339734073417342734373447345734673477348734973507351735273537354735573567357735873597360736173627363736473657366736773687369737073717372737373747375737673777378737973807381738273837384738573867387738873897390739173927393739473957396739773987399740074017402740374047405740674077408740974107411741274137414741574167417741874197420742174227423742474257426742774287429743074317432743374347435743674377438743974407441744274437444744574467447744874497450745174527453745474557456745774587459746074617462746374647465746674677468746974707471747274737474747574767477747874797480748174827483748474857486748774887489749074917492749374947495749674977498749975007501750275037504750575067507750875097510751175127513751475157516751775187519752075217522752375247525752675277528752975307531753275337534753575367537753875397540754175427543754475457546754775487549755075517552755375547555755675577558755975607561756275637564756575667567756875697570757175727573757475757576757775787579758075817582758375847585758675877588758975907591759275937594759575967597759875997600760176027603760476057606760776087609761076117612761376147615761676177618761976207621762276237624762576267627762876297630763176327633763476357636763776387639764076417642764376447645764676477648764976507651765276537654765576567657765876597660766176627663766476657666766776687669767076717672767376747675767676777678767976807681768276837684768576867687768876897690769176927693769476957696769776987699770077017702770377047705770677077708770977107711771277137714771577167717771877197720772177227723772477257726772777287729773077317732773377347735773677377738773977407741774277437744774577467747774877497750775177527753775477557756775777587759776077617762776377647765776677677768776977707771777277737774777577767777777877797780778177827783778477857786778777887789779077917792779377947795779677977798779978007801780278037804780578067807780878097810781178127813781478157816781778187819782078217822782378247825782678277828782978307831783278337834783578367837783878397840784178427843784478457846784778487849785078517852785378547855785678577858785978607861786278637864786578667867786878697870787178727873787478757876787778787879788078817882788378847885788678877888788978907891789278937894789578967897789878997900790179027903790479057906790779087909791079117912791379147915791679177918791979207921792279237924792579267927792879297930793179327933793479357936793779387939794079417942794379447945794679477948794979507951795279537954795579567957795879597960796179627963796479657966796779687969797079717972797379747975797679777978797979807981798279837984798579867987798879897990799179927993799479957996799779987999800080018002800380048005800680078008800980108011801280138014801580168017801880198020802180228023802480258026802780288029803080318032803380348035803680378038803980408041804280438044804580468047804880498050805180528053805480558056805780588059806080618062806380648065806680678068806980708071807280738074807580768077807880798080808180828083808480858086808780888089809080918092809380948095809680978098809981008101810281038104810581068107810881098110811181128113811481158116811781188119812081218122812381248125812681278128812981308131813281338134813581368137813881398140814181428143814481458146814781488149815081518152815381548155815681578158815981608161816281638164816581668167816881698170817181728173817481758176817781788179818081818182818381848185818681878188818981908191819281938194819581968197819881998200820182028203820482058206820782088209821082118212821382148215821682178218821982208221822282238224822582268227822882298230823182328233823482358236823782388239824082418242824382448245824682478248824982508251825282538254825582568257825882598260826182628263826482658266826782688269827082718272827382748275827682778278827982808281828282838284828582868287828882898290829182928293829482958296829782988299830083018302830383048305830683078308830983108311831283138314831583168317831883198320832183228323832483258326832783288329833083318332833383348335833683378338833983408341834283438344834583468347834883498350835183528353835483558356835783588359836083618362836383648365836683678368836983708371837283738374837583768377837883798380838183828383838483858386838783888389839083918392839383948395839683978398839984008401840284038404840584068407840884098410841184128413841484158416841784188419842084218422842384248425842684278428842984308431843284338434843584368437843884398440844184428443844484458446844784488449845084518452845384548455845684578458845984608461846284638464846584668467846884698470847184728473847484758476847784788479848084818482848384848485848684878488848984908491849284938494849584968497849884998500850185028503850485058506850785088509851085118512851385148515851685178518851985208521852285238524852585268527852885298530853185328533853485358536853785388539854085418542854385448545854685478548854985508551855285538554855585568557855885598560856185628563856485658566856785688569857085718572857385748575857685778578857985808581858285838584858585868587858885898590859185928593859485958596859785988599860086018602860386048605860686078608860986108611861286138614861586168617861886198620862186228623862486258626862786288629863086318632863386348635863686378638863986408641864286438644864586468647864886498650865186528653865486558656865786588659866086618662866386648665866686678668866986708671867286738674867586768677867886798680868186828683868486858686868786888689869086918692869386948695869686978698869987008701870287038704870587068707870887098710871187128713871487158716871787188719872087218722872387248725872687278728872987308731873287338734873587368737873887398740874187428743874487458746874787488749875087518752875387548755875687578758875987608761876287638764876587668767876887698770877187728773877487758776877787788779878087818782878387848785878687878788878987908791879287938794879587968797879887998800880188028803880488058806880788088809881088118812881388148815881688178818881988208821882288238824882588268827882888298830883188328833883488358836883788388839884088418842884388448845884688478848884988508851885288538854885588568857885888598860886188628863886488658866886788688869887088718872887388748875887688778878887988808881888288838884888588868887888888898890889188928893889488958896889788988899890089018902890389048905890689078908890989108911891289138914891589168917891889198920892189228923892489258926892789288929893089318932893389348935893689378938893989408941894289438944894589468947894889498950895189528953895489558956895789588959896089618962896389648965896689678968896989708971897289738974897589768977897889798980898189828983898489858986898789888989899089918992899389948995899689978998899990009001900290039004900590069007900890099010901190129013901490159016901790189019902090219022902390249025902690279028902990309031903290339034903590369037903890399040904190429043904490459046904790489049905090519052905390549055905690579058905990609061906290639064906590669067906890699070907190729073907490759076907790789079908090819082908390849085908690879088908990909091909290939094909590969097909890999100910191029103910491059106910791089109911091119112911391149115911691179118911991209121912291239124912591269127912891299130913191329133913491359136913791389139914091419142914391449145914691479148914991509151915291539154915591569157915891599160916191629163916491659166916791689169917091719172917391749175917691779178917991809181918291839184918591869187918891899190919191929193919491959196919791989199920092019202920392049205920692079208920992109211921292139214921592169217921892199220922192229223922492259226922792289229923092319232923392349235923692379238923992409241924292439244924592469247924892499250925192529253925492559256925792589259926092619262926392649265926692679268926992709271927292739274927592769277927892799280928192829283928492859286928792889289929092919292929392949295929692979298929993009301930293039304930593069307930893099310931193129313931493159316931793189319932093219322932393249325932693279328932993309331933293339334933593369337933893399340934193429343934493459346934793489349935093519352935393549355935693579358935993609361936293639364936593669367936893699370937193729373937493759376937793789379938093819382938393849385938693879388938993909391939293939394939593969397939893999400940194029403940494059406940794089409941094119412941394149415941694179418941994209421942294239424942594269427942894299430943194329433943494359436943794389439944094419442944394449445944694479448944994509451945294539454945594569457945894599460946194629463946494659466946794689469947094719472947394749475947694779478947994809481948294839484948594869487948894899490949194929493949494959496949794989499950095019502950395049505950695079508950995109511951295139514951595169517951895199520952195229523952495259526952795289529953095319532953395349535953695379538953995409541954295439544954595469547954895499550955195529553955495559556955795589559956095619562956395649565956695679568956995709571957295739574957595769577957895799580958195829583958495859586958795889589959095919592959395949595959695979598959996009601960296039604960596069607960896099610961196129613961496159616961796189619962096219622962396249625962696279628962996309631963296339634963596369637963896399640964196429643964496459646964796489649965096519652965396549655965696579658965996609661966296639664966596669667966896699670967196729673967496759676967796789679968096819682968396849685968696879688968996909691969296939694969596969697969896999700970197029703970497059706970797089709971097119712971397149715971697179718971997209721972297239724972597269727972897299730973197329733973497359736973797389739974097419742974397449745974697479748974997509751975297539754975597569757975897599760976197629763976497659766976797689769977097719772977397749775977697779778977997809781978297839784978597869787978897899790979197929793979497959796979797989799980098019802980398049805980698079808980998109811981298139814981598169817981898199820982198229823982498259826982798289829983098319832983398349835983698379838983998409841984298439844984598469847984898499850985198529853985498559856985798589859986098619862986398649865986698679868986998709871987298739874987598769877987898799880988198829883988498859886988798889889989098919892989398949895989698979898989999009901990299039904990599069907990899099910991199129913991499159916991799189919992099219922992399249925992699279928992999309931993299339934993599369937993899399940994199429943994499459946994799489949995099519952995399549955995699579958995999609961996299639964996599669967996899699970997199729973997499759976997799789979998099819982998399849985998699879988998999909991999299939994999599969997999899991000010001100021000310004100051000610007100081000910010100111001210013100141001510016100171001810019100201002110022100231002410025100261002710028100291003010031100321003310034100351003610037100381003910040100411004210043100441004510046100471004810049100501005110052100531005410055100561005710058100591006010061100621006310064100651006610067100681006910070100711007210073100741007510076100771007810079100801008110082100831008410085100861008710088100891009010091100921009310094100951009610097100981009910100101011010210103101041010510106101071010810109101101011110112101131011410115101161011710118101191012010121101221012310124101251012610127101281012910130101311013210133101341013510136101371013810139101401014110142101431014410145101461014710148101491015010151101521015310154101551015610157101581015910160101611016210163101641016510166101671016810169101701017110172101731017410175101761017710178101791018010181101821018310184101851018610187101881018910190101911019210193101941019510196101971019810199102001020110202102031020410205102061020710208102091021010211102121021310214102151021610217102181021910220102211022210223102241022510226102271022810229102301023110232102331023410235102361023710238102391024010241102421024310244102451024610247102481024910250102511025210253102541025510256102571025810259102601026110262102631026410265102661026710268102691027010271102721027310274102751027610277102781027910280102811028210283102841028510286102871028810289102901029110292102931029410295102961029710298102991030010301103021030310304103051030610307103081030910310103111031210313103141031510316103171031810319103201032110322103231032410325103261032710328103291033010331103321033310334103351033610337103381033910340103411034210343103441034510346103471034810349103501035110352103531035410355103561035710358103591036010361103621036310364103651036610367103681036910370103711037210373103741037510376103771037810379103801038110382103831038410385103861038710388103891039010391103921039310394103951039610397103981039910400104011040210403104041040510406104071040810409104101041110412104131041410415104161041710418104191042010421104221042310424104251042610427104281042910430104311043210433104341043510436104371043810439104401044110442104431044410445104461044710448104491045010451104521045310454104551045610457104581045910460104611046210463104641046510466104671046810469104701047110472104731047410475104761047710478104791048010481104821048310484104851048610487104881048910490104911049210493104941049510496104971049810499105001050110502105031050410505105061050710508105091051010511105121051310514105151051610517105181051910520105211052210523105241052510526105271052810529105301053110532105331053410535105361053710538105391054010541105421054310544105451054610547105481054910550105511055210553105541055510556105571055810559105601056110562105631056410565105661056710568105691057010571105721057310574105751057610577105781057910580105811058210583105841058510586105871058810589105901059110592105931059410595105961059710598105991060010601106021060310604106051060610607106081060910610106111061210613106141061510616106171061810619106201062110622106231062410625106261062710628106291063010631106321063310634106351063610637106381063910640106411064210643106441064510646106471064810649106501065110652106531065410655106561065710658106591066010661106621066310664106651066610667106681066910670106711067210673106741067510676106771067810679106801068110682106831068410685106861068710688106891069010691106921069310694106951069610697106981069910700107011070210703107041070510706107071070810709107101071110712107131071410715107161071710718107191072010721107221072310724107251072610727107281072910730107311073210733107341073510736107371073810739107401074110742107431074410745107461074710748107491075010751107521075310754107551075610757107581075910760107611076210763107641076510766107671076810769107701077110772107731077410775107761077710778107791078010781107821078310784107851078610787107881078910790107911079210793107941079510796107971079810799108001080110802108031080410805108061080710808108091081010811108121081310814108151081610817108181081910820108211082210823108241082510826108271082810829108301083110832108331083410835108361083710838108391084010841108421084310844108451084610847108481084910850108511085210853108541085510856108571085810859108601086110862108631086410865108661086710868108691087010871108721087310874108751087610877108781087910880108811088210883108841088510886108871088810889108901089110892108931089410895108961089710898108991090010901109021090310904109051090610907109081090910910109111091210913109141091510916109171091810919109201092110922109231092410925109261092710928109291093010931109321093310934109351093610937109381093910940109411094210943109441094510946109471094810949109501095110952109531095410955109561095710958109591096010961109621096310964109651096610967109681096910970109711097210973109741097510976109771097810979109801098110982109831098410985109861098710988109891099010991109921099310994109951099610997109981099911000110011100211003110041100511006110071100811009110101101111012110131101411015110161101711018110191102011021110221102311024110251102611027110281102911030110311103211033110341103511036110371103811039110401104111042110431104411045110461104711048110491105011051110521105311054110551105611057110581105911060110611106211063110641106511066110671106811069110701107111072110731107411075110761107711078110791108011081110821108311084110851108611087110881108911090110911109211093110941109511096110971109811099111001110111102111031110411105111061110711108111091111011111111121111311114111151111611117111181111911120111211112211123111241112511126111271112811129111301113111132111331113411135111361113711138111391114011141111421114311144111451114611147111481114911150111511115211153111541115511156111571115811159111601116111162111631116411165111661116711168111691117011171111721117311174111751117611177111781117911180111811118211183111841118511186111871118811189111901119111192111931119411195111961119711198111991120011201112021120311204112051120611207112081120911210112111121211213112141121511216112171121811219112201122111222112231122411225112261122711228112291123011231112321123311234112351123611237112381123911240112411124211243112441124511246112471124811249112501125111252112531125411255112561125711258112591126011261112621126311264112651126611267112681126911270112711127211273112741127511276112771127811279112801128111282112831128411285112861128711288112891129011291112921129311294112951129611297112981129911300113011130211303113041130511306113071130811309113101131111312113131131411315113161131711318113191132011321113221132311324113251132611327113281132911330113311133211333113341133511336113371133811339113401134111342113431134411345113461134711348113491135011351113521135311354113551135611357113581135911360113611136211363113641136511366113671136811369113701137111372113731137411375113761137711378113791138011381113821138311384113851138611387113881138911390113911139211393113941139511396113971139811399114001140111402114031140411405114061140711408114091141011411114121141311414114151141611417114181141911420114211142211423114241142511426114271142811429114301143111432114331143411435114361143711438114391144011441114421144311444114451144611447114481144911450114511145211453114541145511456114571145811459114601146111462114631146411465114661146711468114691147011471114721147311474114751147611477114781147911480114811148211483114841148511486114871148811489114901149111492114931149411495114961149711498114991150011501115021150311504115051150611507115081150911510115111151211513115141151511516115171151811519115201152111522115231152411525115261152711528115291153011531115321153311534115351153611537115381153911540115411154211543115441154511546115471154811549115501155111552115531155411555115561155711558115591156011561115621156311564115651156611567115681156911570115711157211573115741157511576115771157811579115801158111582115831158411585115861158711588115891159011591115921159311594115951159611597115981159911600116011160211603116041160511606116071160811609116101161111612116131161411615116161161711618116191162011621116221162311624116251162611627116281162911630116311163211633116341163511636116371163811639116401164111642116431164411645116461164711648116491165011651116521165311654116551165611657116581165911660116611166211663116641166511666116671166811669116701167111672116731167411675116761167711678116791168011681116821168311684116851168611687116881168911690116911169211693116941169511696116971169811699117001170111702117031170411705117061170711708117091171011711117121171311714117151171611717117181171911720117211172211723117241172511726117271172811729117301173111732117331173411735117361173711738117391174011741117421174311744117451174611747117481174911750117511175211753117541175511756117571175811759117601176111762117631176411765117661176711768117691177011771117721177311774117751177611777117781177911780117811178211783117841178511786117871178811789117901179111792117931179411795117961179711798117991180011801118021180311804118051180611807118081180911810118111181211813118141181511816118171181811819118201182111822118231182411825118261182711828118291183011831118321183311834118351183611837118381183911840118411184211843118441184511846118471184811849118501185111852118531185411855118561185711858118591186011861118621186311864118651186611867118681186911870118711187211873118741187511876118771187811879118801188111882118831188411885118861188711888118891189011891118921189311894118951189611897118981189911900119011190211903119041190511906119071190811909119101191111912119131191411915119161191711918119191192011921119221192311924119251192611927119281192911930119311193211933119341193511936119371193811939119401194111942119431194411945119461194711948119491195011951119521195311954119551195611957119581195911960119611196211963119641196511966119671196811969119701197111972119731197411975119761197711978119791198011981119821198311984119851198611987119881198911990119911199211993119941199511996119971199811999120001200112002120031200412005120061200712008120091201012011120121201312014120151201612017120181201912020120211202212023120241202512026120271202812029120301203112032120331203412035120361203712038120391204012041120421204312044120451204612047120481204912050120511205212053120541205512056120571205812059120601206112062120631206412065120661206712068120691207012071120721207312074120751207612077120781207912080120811208212083120841208512086120871208812089120901209112092120931209412095120961209712098120991210012101121021210312104121051210612107121081210912110121111211212113121141211512116121171211812119121201212112122121231212412125121261212712128121291213012131121321213312134121351213612137121381213912140121411214212143121441214512146121471214812149121501215112152121531215412155121561215712158121591216012161121621216312164121651216612167121681216912170121711217212173121741217512176121771217812179121801218112182121831218412185121861218712188121891219012191121921219312194121951219612197121981219912200122011220212203122041220512206122071220812209122101221112212122131221412215122161221712218122191222012221122221222312224122251222612227122281222912230122311223212233122341223512236122371223812239122401224112242122431224412245122461224712248122491225012251122521225312254122551225612257122581225912260122611226212263122641226512266122671226812269122701227112272122731227412275122761227712278122791228012281122821228312284122851228612287122881228912290122911229212293122941229512296122971229812299123001230112302123031230412305123061230712308123091231012311123121231312314123151231612317123181231912320123211232212323123241232512326123271232812329123301233112332123331233412335123361233712338123391234012341123421234312344123451234612347123481234912350123511235212353123541235512356123571235812359123601236112362123631236412365123661236712368123691237012371123721237312374123751237612377123781237912380123811238212383123841238512386123871238812389123901239112392123931239412395123961239712398123991240012401124021240312404124051240612407124081240912410124111241212413124141241512416124171241812419124201242112422124231242412425124261242712428124291243012431124321243312434124351243612437124381243912440124411244212443124441244512446124471244812449124501245112452124531245412455124561245712458124591246012461124621246312464124651246612467124681246912470124711247212473124741247512476124771247812479124801248112482124831248412485124861248712488124891249012491124921249312494124951249612497124981249912500125011250212503125041250512506125071250812509125101251112512125131251412515125161251712518125191252012521125221252312524125251252612527125281252912530125311253212533125341253512536125371253812539125401254112542125431254412545125461254712548125491255012551125521255312554125551255612557125581255912560125611256212563125641256512566125671256812569125701257112572125731257412575125761257712578125791258012581125821258312584125851258612587125881258912590125911259212593125941259512596125971259812599126001260112602126031260412605126061260712608126091261012611126121261312614126151261612617126181261912620126211262212623126241262512626126271262812629126301263112632126331263412635126361263712638126391264012641126421264312644126451264612647126481264912650126511265212653126541265512656126571265812659126601266112662126631266412665126661266712668126691267012671126721267312674126751267612677126781267912680126811268212683126841268512686126871268812689126901269112692126931269412695126961269712698126991270012701127021270312704127051270612707127081270912710127111271212713127141271512716127171271812719127201272112722127231272412725127261272712728127291273012731127321273312734127351273612737127381273912740127411274212743127441274512746127471274812749127501275112752127531275412755127561275712758127591276012761127621276312764127651276612767127681276912770127711277212773127741277512776127771277812779127801278112782127831278412785127861278712788127891279012791127921279312794127951279612797127981279912800128011280212803128041280512806128071280812809128101281112812128131281412815128161281712818128191282012821128221282312824128251282612827128281282912830128311283212833128341283512836128371283812839128401284112842128431284412845128461284712848128491285012851128521285312854128551285612857128581285912860128611286212863128641286512866128671286812869128701287112872128731287412875128761287712878128791288012881128821288312884128851288612887128881288912890128911289212893128941289512896128971289812899129001290112902129031290412905129061290712908129091291012911129121291312914129151291612917129181291912920129211292212923129241292512926129271292812929129301293112932129331293412935129361293712938129391294012941129421294312944129451294612947129481294912950129511295212953129541295512956129571295812959129601296112962129631296412965129661296712968129691297012971129721297312974129751297612977129781297912980129811298212983129841298512986129871298812989129901299112992129931299412995129961299712998129991300013001130021300313004130051300613007130081300913010130111301213013130141301513016130171301813019130201302113022130231302413025130261302713028130291303013031130321303313034130351303613037130381303913040130411304213043130441304513046130471304813049130501305113052130531305413055130561305713058130591306013061130621306313064130651306613067130681306913070130711307213073130741307513076130771307813079130801308113082130831308413085130861308713088130891309013091130921309313094130951309613097130981309913100131011310213103131041310513106131071310813109131101311113112131131311413115131161311713118131191312013121131221312313124131251312613127131281312913130131311313213133131341313513136131371313813139131401314113142131431314413145131461314713148131491315013151131521315313154131551315613157131581315913160131611316213163131641316513166131671316813169131701317113172131731317413175131761317713178131791318013181131821318313184131851318613187131881318913190131911319213193131941319513196131971319813199132001320113202132031320413205132061320713208132091321013211132121321313214
  1. body {
  2. margin:0px;
  3. background-image:none;
  4. position:relative;
  5. left:0px;
  6. width:4547px;
  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. #u13674_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. #u13674 {
  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. #u13674 .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. #u13674_text {
  55. border-width:0px;
  56. white-space:nowrap;
  57. text-transform:none;
  58. }
  59. #u13675_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. #u13675 {
  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. #u13675 .text {
  86. position:absolute;
  87. align-self:center;
  88. padding:2px 2px 2px 2px;
  89. box-sizing:border-box;
  90. width:100%;
  91. }
  92. #u13675_text {
  93. border-width:0px;
  94. word-wrap:break-word;
  95. text-transform:none;
  96. visibility:hidden;
  97. }
  98. #u13676 {
  99. border-width:0px;
  100. position:absolute;
  101. left:0px;
  102. top:0px;
  103. width:0px;
  104. height:0px;
  105. }
  106. #u13677_img {
  107. border-width:0px;
  108. position:absolute;
  109. left:0px;
  110. top:0px;
  111. width:31px;
  112. height:31px;
  113. }
  114. #u13677 {
  115. border-width:0px;
  116. position:absolute;
  117. left:19px;
  118. top:10px;
  119. width:31px;
  120. height:31px;
  121. display:flex;
  122. }
  123. #u13677 .text {
  124. position:absolute;
  125. align-self:center;
  126. padding:2px 2px 2px 2px;
  127. box-sizing:border-box;
  128. width:100%;
  129. }
  130. #u13677_text {
  131. border-width:0px;
  132. word-wrap:break-word;
  133. text-transform:none;
  134. }
  135. #u13678_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. #u13678 {
  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. #u13678 .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. #u13678_text {
  177. border-width:0px;
  178. white-space:nowrap;
  179. text-transform:none;
  180. }
  181. #u13679_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. #u13679 {
  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. #u13679 .text {
  208. position:absolute;
  209. align-self:center;
  210. padding:2px 2px 2px 2px;
  211. box-sizing:border-box;
  212. width:100%;
  213. }
  214. #u13679_text {
  215. border-width:0px;
  216. word-wrap:break-word;
  217. text-transform:none;
  218. visibility:hidden;
  219. }
  220. #u13680_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. #u13680 {
  236. border-width:0px;
  237. position:absolute;
  238. left:120px;
  239. top:50px;
  240. width:1480px;
  241. height:1200px;
  242. display:flex;
  243. }
  244. #u13680 .text {
  245. position:absolute;
  246. align-self:center;
  247. padding:2px 2px 2px 2px;
  248. box-sizing:border-box;
  249. width:100%;
  250. }
  251. #u13680_text {
  252. border-width:0px;
  253. word-wrap:break-word;
  254. text-transform:none;
  255. visibility:hidden;
  256. }
  257. #u13681 {
  258. border-width:0px;
  259. position:absolute;
  260. left:0px;
  261. top:0px;
  262. width:0px;
  263. height:0px;
  264. }
  265. #u13682_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. #u13682 {
  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. #u13682 .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. #u13682_text {
  307. border-width:0px;
  308. white-space:nowrap;
  309. text-transform:none;
  310. }
  311. #u13683_img {
  312. border-width:0px;
  313. position:absolute;
  314. left:0px;
  315. top:0px;
  316. width:14px;
  317. height:14px;
  318. }
  319. #u13683 {
  320. border-width:0px;
  321. position:absolute;
  322. left:20px;
  323. top:71px;
  324. width:14px;
  325. height:14px;
  326. display:flex;
  327. }
  328. #u13683 .text {
  329. position:absolute;
  330. align-self:center;
  331. padding:2px 2px 2px 2px;
  332. box-sizing:border-box;
  333. width:100%;
  334. }
  335. #u13683_text {
  336. border-width:0px;
  337. word-wrap:break-word;
  338. text-transform:none;
  339. visibility:hidden;
  340. }
  341. #u13684 {
  342. border-width:0px;
  343. position:absolute;
  344. left:0px;
  345. top:0px;
  346. width:0px;
  347. height:0px;
  348. }
  349. #u13685_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. #u13685 {
  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. #u13685 .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. #u13685_text {
  391. border-width:0px;
  392. white-space:nowrap;
  393. text-transform:none;
  394. }
  395. #u13686_img {
  396. border-width:0px;
  397. position:absolute;
  398. left:0px;
  399. top:0px;
  400. width:14px;
  401. height:14px;
  402. }
  403. #u13686 {
  404. border-width:0px;
  405. position:absolute;
  406. left:20px;
  407. top:113px;
  408. width:14px;
  409. height:14px;
  410. display:flex;
  411. }
  412. #u13686 .text {
  413. position:absolute;
  414. align-self:center;
  415. padding:2px 2px 2px 2px;
  416. box-sizing:border-box;
  417. width:100%;
  418. }
  419. #u13686_text {
  420. border-width:0px;
  421. word-wrap:break-word;
  422. text-transform:none;
  423. visibility:hidden;
  424. }
  425. #u13687 {
  426. border-width:0px;
  427. position:absolute;
  428. left:0px;
  429. top:0px;
  430. width:0px;
  431. height:0px;
  432. }
  433. #u13688_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. #u13688 {
  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. #u13688 .text {
  466. position:absolute;
  467. align-self:center;
  468. padding:0px 0px 0px 0px;
  469. box-sizing:border-box;
  470. width:100%;
  471. }
  472. #u13688_text {
  473. border-width:0px;
  474. white-space:nowrap;
  475. text-transform:none;
  476. }
  477. #u13689_img {
  478. border-width:0px;
  479. position:absolute;
  480. left:0px;
  481. top:0px;
  482. width:22px;
  483. height:22px;
  484. }
  485. #u13689 {
  486. border-width:0px;
  487. position:absolute;
  488. left:27px;
  489. top:1140px;
  490. width:22px;
  491. height:22px;
  492. display:flex;
  493. }
  494. #u13689 .text {
  495. position:absolute;
  496. align-self:center;
  497. padding:2px 2px 2px 2px;
  498. box-sizing:border-box;
  499. width:100%;
  500. }
  501. #u13689_text {
  502. border-width:0px;
  503. word-wrap:break-word;
  504. text-transform:none;
  505. visibility:hidden;
  506. }
  507. #u13690 {
  508. border-width:0px;
  509. position:absolute;
  510. left:0px;
  511. top:0px;
  512. width:0px;
  513. height:0px;
  514. }
  515. #u13691_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. #u13691 {
  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. #u13691 .text {
  548. position:absolute;
  549. align-self:center;
  550. padding:0px 0px 0px 0px;
  551. box-sizing:border-box;
  552. width:100%;
  553. }
  554. #u13691_text {
  555. border-width:0px;
  556. white-space:nowrap;
  557. text-transform:none;
  558. }
  559. #u13692_img {
  560. border-width:0px;
  561. position:absolute;
  562. left:0px;
  563. top:0px;
  564. width:22px;
  565. height:22px;
  566. }
  567. #u13692 {
  568. border-width:0px;
  569. position:absolute;
  570. left:27px;
  571. top:1182px;
  572. width:22px;
  573. height:22px;
  574. display:flex;
  575. }
  576. #u13692 .text {
  577. position:absolute;
  578. align-self:center;
  579. padding:2px 2px 2px 2px;
  580. box-sizing:border-box;
  581. width:100%;
  582. }
  583. #u13692_text {
  584. border-width:0px;
  585. word-wrap:break-word;
  586. text-transform:none;
  587. visibility:hidden;
  588. }
  589. #u13693 {
  590. border-width:0px;
  591. position:absolute;
  592. left:0px;
  593. top:0px;
  594. width:0px;
  595. height:0px;
  596. }
  597. #u13694_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. #u13694 {
  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. #u13694 .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. #u13694_text {
  639. border-width:0px;
  640. white-space:nowrap;
  641. text-transform:none;
  642. }
  643. #u13695_img {
  644. border-width:0px;
  645. position:absolute;
  646. left:0px;
  647. top:0px;
  648. width:14px;
  649. height:14px;
  650. }
  651. #u13695 {
  652. border-width:0px;
  653. position:absolute;
  654. left:20px;
  655. top:281px;
  656. width:14px;
  657. height:14px;
  658. display:flex;
  659. }
  660. #u13695 .text {
  661. position:absolute;
  662. align-self:center;
  663. padding:2px 2px 2px 2px;
  664. box-sizing:border-box;
  665. width:100%;
  666. }
  667. #u13695_text {
  668. border-width:0px;
  669. word-wrap:break-word;
  670. text-transform:none;
  671. visibility:hidden;
  672. }
  673. #u13696 {
  674. border-width:0px;
  675. position:absolute;
  676. left:0px;
  677. top:0px;
  678. width:0px;
  679. height:0px;
  680. }
  681. #u13697_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. #u13697 {
  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. #u13697 .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. #u13697_text {
  723. border-width:0px;
  724. white-space:nowrap;
  725. text-transform:none;
  726. }
  727. #u13698_img {
  728. border-width:0px;
  729. position:absolute;
  730. left:0px;
  731. top:0px;
  732. width:14px;
  733. height:14px;
  734. }
  735. #u13698 {
  736. border-width:0px;
  737. position:absolute;
  738. left:20px;
  739. top:239px;
  740. width:14px;
  741. height:14px;
  742. display:flex;
  743. }
  744. #u13698 .text {
  745. position:absolute;
  746. align-self:center;
  747. padding:2px 2px 2px 2px;
  748. box-sizing:border-box;
  749. width:100%;
  750. }
  751. #u13698_text {
  752. border-width:0px;
  753. word-wrap:break-word;
  754. text-transform:none;
  755. visibility:hidden;
  756. }
  757. #u13699 {
  758. border-width:0px;
  759. position:absolute;
  760. left:0px;
  761. top:0px;
  762. width:0px;
  763. height:0px;
  764. }
  765. #u13700_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. #u13700 {
  786. border-width:0px;
  787. position:absolute;
  788. left:39px;
  789. top:445px;
  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. #u13700 .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. #u13700_text {
  807. border-width:0px;
  808. white-space:nowrap;
  809. text-transform:none;
  810. }
  811. #u13701_img {
  812. border-width:0px;
  813. position:absolute;
  814. left:0px;
  815. top:0px;
  816. width:14px;
  817. height:14px;
  818. }
  819. #u13701 {
  820. border-width:0px;
  821. position:absolute;
  822. left:20px;
  823. top:449px;
  824. width:14px;
  825. height:14px;
  826. display:flex;
  827. }
  828. #u13701 .text {
  829. position:absolute;
  830. align-self:center;
  831. padding:2px 2px 2px 2px;
  832. box-sizing:border-box;
  833. width:100%;
  834. }
  835. #u13701_text {
  836. border-width:0px;
  837. word-wrap:break-word;
  838. text-transform:none;
  839. visibility:hidden;
  840. }
  841. #u13702 {
  842. border-width:0px;
  843. position:absolute;
  844. left:0px;
  845. top:0px;
  846. width:0px;
  847. height:0px;
  848. }
  849. #u13703_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. #u13703 {
  870. border-width:0px;
  871. position:absolute;
  872. left:39px;
  873. top:487px;
  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. #u13703 .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. #u13703_text {
  891. border-width:0px;
  892. white-space:nowrap;
  893. text-transform:none;
  894. }
  895. #u13704_img {
  896. border-width:0px;
  897. position:absolute;
  898. left:0px;
  899. top:0px;
  900. width:14px;
  901. height:14px;
  902. }
  903. #u13704 {
  904. border-width:0px;
  905. position:absolute;
  906. left:20px;
  907. top:491px;
  908. width:14px;
  909. height:14px;
  910. display:flex;
  911. }
  912. #u13704 .text {
  913. position:absolute;
  914. align-self:center;
  915. padding:2px 2px 2px 2px;
  916. box-sizing:border-box;
  917. width:100%;
  918. }
  919. #u13704_text {
  920. border-width:0px;
  921. word-wrap:break-word;
  922. text-transform:none;
  923. visibility:hidden;
  924. }
  925. #u13705 {
  926. border-width:0px;
  927. position:absolute;
  928. left:0px;
  929. top:0px;
  930. width:0px;
  931. height:0px;
  932. }
  933. #u13706_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. #u13706 {
  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. #u13706 .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. #u13706_text {
  975. border-width:0px;
  976. white-space:nowrap;
  977. text-transform:none;
  978. }
  979. #u13707_img {
  980. border-width:0px;
  981. position:absolute;
  982. left:0px;
  983. top:0px;
  984. width:14px;
  985. height:14px;
  986. }
  987. #u13707 {
  988. border-width:0px;
  989. position:absolute;
  990. left:20px;
  991. top:575px;
  992. width:14px;
  993. height:14px;
  994. display:flex;
  995. }
  996. #u13707 .text {
  997. position:absolute;
  998. align-self:center;
  999. padding:2px 2px 2px 2px;
  1000. box-sizing:border-box;
  1001. width:100%;
  1002. }
  1003. #u13707_text {
  1004. border-width:0px;
  1005. word-wrap:break-word;
  1006. text-transform:none;
  1007. visibility:hidden;
  1008. }
  1009. #u13708 {
  1010. border-width:0px;
  1011. position:absolute;
  1012. left:0px;
  1013. top:0px;
  1014. width:0px;
  1015. height:0px;
  1016. }
  1017. #u13709_input {
  1018. position:absolute;
  1019. left:0px;
  1020. top:0px;
  1021. width:214px;
  1022. height:27px;
  1023. padding:2px 2px 2px 2px;
  1024. font-family:'ArialMT', 'Arial', sans-serif;
  1025. font-weight:400;
  1026. font-style:normal;
  1027. font-size:14px;
  1028. letter-spacing:normal;
  1029. color:#FFFFFF;
  1030. vertical-align:none;
  1031. text-align:left;
  1032. text-transform:none;
  1033. background-color:transparent;
  1034. border-color:transparent;
  1035. }
  1036. #u13709_input.disabled {
  1037. position:absolute;
  1038. left:0px;
  1039. top:0px;
  1040. width:214px;
  1041. height:27px;
  1042. padding:2px 2px 2px 2px;
  1043. font-family:'ArialMT', 'Arial', sans-serif;
  1044. font-weight:400;
  1045. font-style:normal;
  1046. font-size:14px;
  1047. letter-spacing:normal;
  1048. color:#FFFFFF;
  1049. vertical-align:none;
  1050. text-align:left;
  1051. text-transform:none;
  1052. background-color:transparent;
  1053. border-color:transparent;
  1054. }
  1055. #u13709_div {
  1056. border-width:0px;
  1057. position:absolute;
  1058. left:0px;
  1059. top:0px;
  1060. width:214px;
  1061. height:27px;
  1062. background:inherit;
  1063. background-color:rgba(255, 255, 255, 0);
  1064. border:none;
  1065. border-radius:0px;
  1066. -moz-box-shadow:none;
  1067. -webkit-box-shadow:none;
  1068. box-shadow:none;
  1069. font-size:14px;
  1070. color:#FFFFFF;
  1071. }
  1072. #u13709 {
  1073. border-width:0px;
  1074. position:absolute;
  1075. left:1221px;
  1076. top:11px;
  1077. width:214px;
  1078. height:27px;
  1079. display:flex;
  1080. font-size:14px;
  1081. color:#FFFFFF;
  1082. }
  1083. #u13709 .text {
  1084. position:absolute;
  1085. align-self:flex-start;
  1086. padding:2px 2px 2px 2px;
  1087. box-sizing:border-box;
  1088. width:100%;
  1089. }
  1090. #u13709_div.disabled {
  1091. border-width:0px;
  1092. position:absolute;
  1093. left:0px;
  1094. top:0px;
  1095. width:214px;
  1096. height:27px;
  1097. background:inherit;
  1098. background-color:rgba(240, 240, 240, 1);
  1099. border:none;
  1100. border-radius:0px;
  1101. -moz-box-shadow:none;
  1102. -webkit-box-shadow:none;
  1103. box-shadow:none;
  1104. font-size:14px;
  1105. color:#FFFFFF;
  1106. }
  1107. #u13709.disabled {
  1108. }
  1109. .u13709_input_option {
  1110. font-size:14px;
  1111. }
  1112. #u13710_img {
  1113. border-width:0px;
  1114. position:absolute;
  1115. left:0px;
  1116. top:0px;
  1117. width:22px;
  1118. height:22px;
  1119. }
  1120. #u13710 {
  1121. border-width:0px;
  1122. position:absolute;
  1123. left:1194px;
  1124. top:14px;
  1125. width:22px;
  1126. height:22px;
  1127. display:flex;
  1128. }
  1129. #u13710 .text {
  1130. position:absolute;
  1131. align-self:center;
  1132. padding:2px 2px 2px 2px;
  1133. box-sizing:border-box;
  1134. width:100%;
  1135. }
  1136. #u13710_text {
  1137. border-width:0px;
  1138. word-wrap:break-word;
  1139. text-transform:none;
  1140. visibility:hidden;
  1141. }
  1142. #u13711_div {
  1143. border-width:0px;
  1144. position:absolute;
  1145. left:0px;
  1146. top:0px;
  1147. width:100px;
  1148. height:24px;
  1149. background:inherit;
  1150. background-color:rgba(242, 242, 242, 0.2);
  1151. border:none;
  1152. border-radius:25px;
  1153. -moz-box-shadow:none;
  1154. -webkit-box-shadow:none;
  1155. box-shadow:none;
  1156. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1157. font-weight:400;
  1158. font-style:normal;
  1159. color:#FFFFFF;
  1160. text-align:center;
  1161. }
  1162. #u13711 {
  1163. border-width:0px;
  1164. position:absolute;
  1165. left:1480px;
  1166. top:13px;
  1167. width:100px;
  1168. height:24px;
  1169. display:flex;
  1170. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1171. font-weight:400;
  1172. font-style:normal;
  1173. color:#FFFFFF;
  1174. text-align:center;
  1175. }
  1176. #u13711 .text {
  1177. position:absolute;
  1178. align-self:center;
  1179. padding:0px 0px 0px 0px;
  1180. box-sizing:border-box;
  1181. width:100%;
  1182. }
  1183. #u13711_text {
  1184. border-width:0px;
  1185. word-wrap:break-word;
  1186. text-transform:none;
  1187. }
  1188. #u13712_img {
  1189. border-width:0px;
  1190. position:absolute;
  1191. left:0px;
  1192. top:0px;
  1193. width:2px;
  1194. height:12px;
  1195. }
  1196. #u13712 {
  1197. border-width:0px;
  1198. position:absolute;
  1199. left:1452px;
  1200. top:19px;
  1201. width:1px;
  1202. height:11px;
  1203. display:flex;
  1204. }
  1205. #u13712 .text {
  1206. position:absolute;
  1207. align-self:center;
  1208. padding:2px 2px 2px 2px;
  1209. box-sizing:border-box;
  1210. width:100%;
  1211. }
  1212. #u13712_text {
  1213. border-width:0px;
  1214. word-wrap:break-word;
  1215. text-transform:none;
  1216. visibility:hidden;
  1217. }
  1218. #u13713 {
  1219. border-width:0px;
  1220. position:absolute;
  1221. left:0px;
  1222. top:0px;
  1223. width:0px;
  1224. height:0px;
  1225. }
  1226. #u13714_div {
  1227. border-width:0px;
  1228. position:absolute;
  1229. left:0px;
  1230. top:0px;
  1231. width:33px;
  1232. height:22px;
  1233. background:inherit;
  1234. background-color:rgba(255, 255, 255, 0);
  1235. border:none;
  1236. border-radius:0px;
  1237. -moz-box-shadow:none;
  1238. -webkit-box-shadow:none;
  1239. box-shadow:none;
  1240. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1241. font-weight:400;
  1242. font-style:normal;
  1243. font-size:16px;
  1244. color:#FFFFFF;
  1245. }
  1246. #u13714 {
  1247. border-width:0px;
  1248. position:absolute;
  1249. left:39px;
  1250. top:361px;
  1251. width:33px;
  1252. height:22px;
  1253. display:flex;
  1254. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1255. font-weight:400;
  1256. font-style:normal;
  1257. font-size:16px;
  1258. color:#FFFFFF;
  1259. }
  1260. #u13714 .text {
  1261. position:absolute;
  1262. align-self:flex-start;
  1263. padding:0px 0px 0px 0px;
  1264. box-sizing:border-box;
  1265. width:100%;
  1266. }
  1267. #u13714_text {
  1268. border-width:0px;
  1269. white-space:nowrap;
  1270. text-transform:none;
  1271. }
  1272. #u13715_img {
  1273. border-width:0px;
  1274. position:absolute;
  1275. left:0px;
  1276. top:0px;
  1277. width:14px;
  1278. height:14px;
  1279. }
  1280. #u13715 {
  1281. border-width:0px;
  1282. position:absolute;
  1283. left:20px;
  1284. top:365px;
  1285. width:14px;
  1286. height:14px;
  1287. display:flex;
  1288. }
  1289. #u13715 .text {
  1290. position:absolute;
  1291. align-self:center;
  1292. padding:2px 2px 2px 2px;
  1293. box-sizing:border-box;
  1294. width:100%;
  1295. }
  1296. #u13715_text {
  1297. border-width:0px;
  1298. word-wrap:break-word;
  1299. text-transform:none;
  1300. visibility:hidden;
  1301. }
  1302. #u13716 {
  1303. border-width:0px;
  1304. position:absolute;
  1305. left:0px;
  1306. top:0px;
  1307. width:0px;
  1308. height:0px;
  1309. }
  1310. #u13717_div {
  1311. border-width:0px;
  1312. position:absolute;
  1313. left:0px;
  1314. top:0px;
  1315. width:33px;
  1316. height:22px;
  1317. background:inherit;
  1318. background-color:rgba(255, 255, 255, 0);
  1319. border:none;
  1320. border-radius:0px;
  1321. -moz-box-shadow:none;
  1322. -webkit-box-shadow:none;
  1323. box-shadow:none;
  1324. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1325. font-weight:400;
  1326. font-style:normal;
  1327. font-size:16px;
  1328. color:#FFFFFF;
  1329. }
  1330. #u13717 {
  1331. border-width:0px;
  1332. position:absolute;
  1333. left:39px;
  1334. top:319px;
  1335. width:33px;
  1336. height:22px;
  1337. display:flex;
  1338. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1339. font-weight:400;
  1340. font-style:normal;
  1341. font-size:16px;
  1342. color:#FFFFFF;
  1343. }
  1344. #u13717 .text {
  1345. position:absolute;
  1346. align-self:flex-start;
  1347. padding:0px 0px 0px 0px;
  1348. box-sizing:border-box;
  1349. width:100%;
  1350. }
  1351. #u13717_text {
  1352. border-width:0px;
  1353. white-space:nowrap;
  1354. text-transform:none;
  1355. }
  1356. #u13718_img {
  1357. border-width:0px;
  1358. position:absolute;
  1359. left:0px;
  1360. top:0px;
  1361. width:14px;
  1362. height:14px;
  1363. }
  1364. #u13718 {
  1365. border-width:0px;
  1366. position:absolute;
  1367. left:20px;
  1368. top:323px;
  1369. width:14px;
  1370. height:14px;
  1371. display:flex;
  1372. }
  1373. #u13718 .text {
  1374. position:absolute;
  1375. align-self:center;
  1376. padding:2px 2px 2px 2px;
  1377. box-sizing:border-box;
  1378. width:100%;
  1379. }
  1380. #u13718_text {
  1381. border-width:0px;
  1382. word-wrap:break-word;
  1383. text-transform:none;
  1384. visibility:hidden;
  1385. }
  1386. #u13719 {
  1387. border-width:0px;
  1388. position:absolute;
  1389. left:0px;
  1390. top:0px;
  1391. width:0px;
  1392. height:0px;
  1393. }
  1394. #u13720_div {
  1395. border-width:0px;
  1396. position:absolute;
  1397. left:0px;
  1398. top:0px;
  1399. width:33px;
  1400. height:22px;
  1401. background:inherit;
  1402. background-color:rgba(255, 255, 255, 0);
  1403. border:none;
  1404. border-radius:0px;
  1405. -moz-box-shadow:none;
  1406. -webkit-box-shadow:none;
  1407. box-shadow:none;
  1408. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1409. font-weight:400;
  1410. font-style:normal;
  1411. font-size:16px;
  1412. color:#FFFFFF;
  1413. }
  1414. #u13720 {
  1415. border-width:0px;
  1416. position:absolute;
  1417. left:39px;
  1418. top:151px;
  1419. width:33px;
  1420. height:22px;
  1421. display:flex;
  1422. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1423. font-weight:400;
  1424. font-style:normal;
  1425. font-size:16px;
  1426. color:#FFFFFF;
  1427. }
  1428. #u13720 .text {
  1429. position:absolute;
  1430. align-self:flex-start;
  1431. padding:0px 0px 0px 0px;
  1432. box-sizing:border-box;
  1433. width:100%;
  1434. }
  1435. #u13720_text {
  1436. border-width:0px;
  1437. white-space:nowrap;
  1438. text-transform:none;
  1439. }
  1440. #u13721_img {
  1441. border-width:0px;
  1442. position:absolute;
  1443. left:0px;
  1444. top:0px;
  1445. width:14px;
  1446. height:14px;
  1447. }
  1448. #u13721 {
  1449. border-width:0px;
  1450. position:absolute;
  1451. left:20px;
  1452. top:155px;
  1453. width:14px;
  1454. height:14px;
  1455. display:flex;
  1456. }
  1457. #u13721 .text {
  1458. position:absolute;
  1459. align-self:center;
  1460. padding:2px 2px 2px 2px;
  1461. box-sizing:border-box;
  1462. width:100%;
  1463. }
  1464. #u13721_text {
  1465. border-width:0px;
  1466. word-wrap:break-word;
  1467. text-transform:none;
  1468. visibility:hidden;
  1469. }
  1470. #u13722 {
  1471. border-width:0px;
  1472. position:absolute;
  1473. left:0px;
  1474. top:0px;
  1475. width:0px;
  1476. height:0px;
  1477. }
  1478. #u13723_div {
  1479. border-width:0px;
  1480. position:absolute;
  1481. left:0px;
  1482. top:0px;
  1483. width:33px;
  1484. height:22px;
  1485. background:inherit;
  1486. background-color:rgba(255, 255, 255, 0);
  1487. border:none;
  1488. border-radius:0px;
  1489. -moz-box-shadow:none;
  1490. -webkit-box-shadow:none;
  1491. box-shadow:none;
  1492. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1493. font-weight:400;
  1494. font-style:normal;
  1495. font-size:16px;
  1496. color:#FFFFFF;
  1497. }
  1498. #u13723 {
  1499. border-width:0px;
  1500. position:absolute;
  1501. left:39px;
  1502. top:529px;
  1503. width:33px;
  1504. height:22px;
  1505. display:flex;
  1506. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1507. font-weight:400;
  1508. font-style:normal;
  1509. font-size:16px;
  1510. color:#FFFFFF;
  1511. }
  1512. #u13723 .text {
  1513. position:absolute;
  1514. align-self:flex-start;
  1515. padding:0px 0px 0px 0px;
  1516. box-sizing:border-box;
  1517. width:100%;
  1518. }
  1519. #u13723_text {
  1520. border-width:0px;
  1521. white-space:nowrap;
  1522. text-transform:none;
  1523. }
  1524. #u13724_img {
  1525. border-width:0px;
  1526. position:absolute;
  1527. left:0px;
  1528. top:0px;
  1529. width:14px;
  1530. height:14px;
  1531. }
  1532. #u13724 {
  1533. border-width:0px;
  1534. position:absolute;
  1535. left:20px;
  1536. top:533px;
  1537. width:14px;
  1538. height:14px;
  1539. display:flex;
  1540. }
  1541. #u13724 .text {
  1542. position:absolute;
  1543. align-self:center;
  1544. padding:2px 2px 2px 2px;
  1545. box-sizing:border-box;
  1546. width:100%;
  1547. }
  1548. #u13724_text {
  1549. border-width:0px;
  1550. word-wrap:break-word;
  1551. text-transform:none;
  1552. visibility:hidden;
  1553. }
  1554. #u13725 {
  1555. border-width:0px;
  1556. position:absolute;
  1557. left:0px;
  1558. top:0px;
  1559. width:0px;
  1560. height:0px;
  1561. }
  1562. #u13726_div {
  1563. border-width:0px;
  1564. position:absolute;
  1565. left:0px;
  1566. top:0px;
  1567. width:33px;
  1568. height:22px;
  1569. background:inherit;
  1570. background-color:rgba(255, 255, 255, 0);
  1571. border:none;
  1572. border-radius:0px;
  1573. -moz-box-shadow:none;
  1574. -webkit-box-shadow:none;
  1575. box-shadow:none;
  1576. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1577. font-weight:400;
  1578. font-style:normal;
  1579. font-size:16px;
  1580. color:#FFFFFF;
  1581. }
  1582. #u13726 {
  1583. border-width:0px;
  1584. position:absolute;
  1585. left:39px;
  1586. top:193px;
  1587. width:33px;
  1588. height:22px;
  1589. display:flex;
  1590. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1591. font-weight:400;
  1592. font-style:normal;
  1593. font-size:16px;
  1594. color:#FFFFFF;
  1595. }
  1596. #u13726 .text {
  1597. position:absolute;
  1598. align-self:flex-start;
  1599. padding:0px 0px 0px 0px;
  1600. box-sizing:border-box;
  1601. width:100%;
  1602. }
  1603. #u13726_text {
  1604. border-width:0px;
  1605. white-space:nowrap;
  1606. text-transform:none;
  1607. }
  1608. #u13727_img {
  1609. border-width:0px;
  1610. position:absolute;
  1611. left:0px;
  1612. top:0px;
  1613. width:14px;
  1614. height:14px;
  1615. }
  1616. #u13727 {
  1617. border-width:0px;
  1618. position:absolute;
  1619. left:20px;
  1620. top:197px;
  1621. width:14px;
  1622. height:14px;
  1623. display:flex;
  1624. }
  1625. #u13727 .text {
  1626. position:absolute;
  1627. align-self:center;
  1628. padding:2px 2px 2px 2px;
  1629. box-sizing:border-box;
  1630. width:100%;
  1631. }
  1632. #u13727_text {
  1633. border-width:0px;
  1634. word-wrap:break-word;
  1635. text-transform:none;
  1636. visibility:hidden;
  1637. }
  1638. #u13728 {
  1639. border-width:0px;
  1640. position:absolute;
  1641. left:0px;
  1642. top:0px;
  1643. width:0px;
  1644. height:0px;
  1645. }
  1646. #u13729_div {
  1647. border-width:0px;
  1648. position:absolute;
  1649. left:0px;
  1650. top:0px;
  1651. width:33px;
  1652. height:22px;
  1653. background:inherit;
  1654. background-color:rgba(255, 255, 255, 0);
  1655. border:none;
  1656. border-radius:0px;
  1657. -moz-box-shadow:none;
  1658. -webkit-box-shadow:none;
  1659. box-shadow:none;
  1660. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1661. font-weight:400;
  1662. font-style:normal;
  1663. font-size:16px;
  1664. color:#FFFFFF;
  1665. }
  1666. #u13729 {
  1667. border-width:0px;
  1668. position:absolute;
  1669. left:39px;
  1670. top:403px;
  1671. width:33px;
  1672. height:22px;
  1673. display:flex;
  1674. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1675. font-weight:400;
  1676. font-style:normal;
  1677. font-size:16px;
  1678. color:#FFFFFF;
  1679. }
  1680. #u13729 .text {
  1681. position:absolute;
  1682. align-self:flex-start;
  1683. padding:0px 0px 0px 0px;
  1684. box-sizing:border-box;
  1685. width:100%;
  1686. }
  1687. #u13729_text {
  1688. border-width:0px;
  1689. white-space:nowrap;
  1690. text-transform:none;
  1691. }
  1692. #u13730_img {
  1693. border-width:0px;
  1694. position:absolute;
  1695. left:0px;
  1696. top:0px;
  1697. width:14px;
  1698. height:14px;
  1699. }
  1700. #u13730 {
  1701. border-width:0px;
  1702. position:absolute;
  1703. left:20px;
  1704. top:407px;
  1705. width:14px;
  1706. height:14px;
  1707. display:flex;
  1708. }
  1709. #u13730 .text {
  1710. position:absolute;
  1711. align-self:center;
  1712. padding:2px 2px 2px 2px;
  1713. box-sizing:border-box;
  1714. width:100%;
  1715. }
  1716. #u13730_text {
  1717. border-width:0px;
  1718. word-wrap:break-word;
  1719. text-transform:none;
  1720. visibility:hidden;
  1721. }
  1722. #u13731_div {
  1723. border-width:0px;
  1724. position:absolute;
  1725. left:0px;
  1726. top:0px;
  1727. width:1260px;
  1728. height:1192px;
  1729. background:inherit;
  1730. background-color:rgba(255, 255, 255, 1);
  1731. border:none;
  1732. border-radius:0px;
  1733. -moz-box-shadow:0px 0px 3px rgba(127, 127, 127, 0.349019607843137);
  1734. -webkit-box-shadow:0px 0px 3px rgba(127, 127, 127, 0.349019607843137);
  1735. box-shadow:0px 0px 3px rgba(127, 127, 127, 0.349019607843137);
  1736. color:#1890FF;
  1737. }
  1738. #u13731 {
  1739. border-width:0px;
  1740. position:absolute;
  1741. left:332px;
  1742. top:50px;
  1743. width:1260px;
  1744. height:1192px;
  1745. display:flex;
  1746. color:#1890FF;
  1747. }
  1748. #u13731 .text {
  1749. position:absolute;
  1750. align-self:center;
  1751. padding:2px 2px 2px 2px;
  1752. box-sizing:border-box;
  1753. width:100%;
  1754. }
  1755. #u13731_text {
  1756. border-width:0px;
  1757. word-wrap:break-word;
  1758. text-transform:none;
  1759. visibility:hidden;
  1760. }
  1761. #u13732_div {
  1762. border-width:0px;
  1763. position:absolute;
  1764. left:0px;
  1765. top:0px;
  1766. width:73px;
  1767. height:50px;
  1768. background:inherit;
  1769. background-color:rgba(255, 255, 255, 0);
  1770. border:none;
  1771. border-left:0px;
  1772. border-top:0px;
  1773. border-right:0px;
  1774. border-radius:0px;
  1775. border-bottom-right-radius:0px;
  1776. border-bottom-left-radius:0px;
  1777. -moz-box-shadow:none;
  1778. -webkit-box-shadow:none;
  1779. box-shadow:none;
  1780. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  1781. font-weight:500;
  1782. font-style:normal;
  1783. font-size:18px;
  1784. }
  1785. #u13732 {
  1786. border-width:0px;
  1787. position:absolute;
  1788. left:351px;
  1789. top:50px;
  1790. width:73px;
  1791. height:50px;
  1792. display:flex;
  1793. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  1794. font-weight:500;
  1795. font-style:normal;
  1796. font-size:18px;
  1797. }
  1798. #u13732 .text {
  1799. position:absolute;
  1800. align-self:center;
  1801. padding:0px 0px 0px 0px;
  1802. box-sizing:border-box;
  1803. width:100%;
  1804. }
  1805. #u13732_text {
  1806. border-width:0px;
  1807. white-space:nowrap;
  1808. text-transform:none;
  1809. }
  1810. #u13733 {
  1811. border-width:0px;
  1812. position:absolute;
  1813. left:351px;
  1814. top:205px;
  1815. width:1222px;
  1816. height:364px;
  1817. }
  1818. #u13734_img {
  1819. border-width:0px;
  1820. position:absolute;
  1821. left:0px;
  1822. top:0px;
  1823. width:136px;
  1824. height:39px;
  1825. }
  1826. #u13734 {
  1827. border-width:0px;
  1828. position:absolute;
  1829. left:0px;
  1830. top:0px;
  1831. width:136px;
  1832. height:39px;
  1833. display:flex;
  1834. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1835. font-weight:400;
  1836. font-style:normal;
  1837. font-size:12px;
  1838. color:#FFFFFF;
  1839. }
  1840. #u13734 .text {
  1841. position:absolute;
  1842. align-self:center;
  1843. padding:2px 2px 2px 0px;
  1844. box-sizing:border-box;
  1845. width:100%;
  1846. }
  1847. #u13734_text {
  1848. border-width:0px;
  1849. word-wrap:break-word;
  1850. text-transform:none;
  1851. }
  1852. #u13735_img {
  1853. border-width:0px;
  1854. position:absolute;
  1855. left:0px;
  1856. top:0px;
  1857. width:136px;
  1858. height:39px;
  1859. }
  1860. #u13735 {
  1861. border-width:0px;
  1862. position:absolute;
  1863. left:136px;
  1864. top:0px;
  1865. width:136px;
  1866. height:39px;
  1867. display:flex;
  1868. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1869. font-weight:400;
  1870. font-style:normal;
  1871. font-size:12px;
  1872. color:#FFFFFF;
  1873. }
  1874. #u13735 .text {
  1875. position:absolute;
  1876. align-self:center;
  1877. padding:2px 2px 2px 0px;
  1878. box-sizing:border-box;
  1879. width:100%;
  1880. }
  1881. #u13735_text {
  1882. border-width:0px;
  1883. word-wrap:break-word;
  1884. text-transform:none;
  1885. }
  1886. #u13736_img {
  1887. border-width:0px;
  1888. position:absolute;
  1889. left:0px;
  1890. top:0px;
  1891. width:136px;
  1892. height:39px;
  1893. }
  1894. #u13736 {
  1895. border-width:0px;
  1896. position:absolute;
  1897. left:272px;
  1898. top:0px;
  1899. width:136px;
  1900. height:39px;
  1901. display:flex;
  1902. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1903. font-weight:400;
  1904. font-style:normal;
  1905. font-size:12px;
  1906. color:#FFFFFF;
  1907. }
  1908. #u13736 .text {
  1909. position:absolute;
  1910. align-self:center;
  1911. padding:2px 2px 2px 0px;
  1912. box-sizing:border-box;
  1913. width:100%;
  1914. }
  1915. #u13736_text {
  1916. border-width:0px;
  1917. word-wrap:break-word;
  1918. text-transform:none;
  1919. }
  1920. #u13737_img {
  1921. border-width:0px;
  1922. position:absolute;
  1923. left:0px;
  1924. top:0px;
  1925. width:136px;
  1926. height:39px;
  1927. }
  1928. #u13737 {
  1929. border-width:0px;
  1930. position:absolute;
  1931. left:408px;
  1932. top:0px;
  1933. width:136px;
  1934. height:39px;
  1935. display:flex;
  1936. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1937. font-weight:400;
  1938. font-style:normal;
  1939. font-size:12px;
  1940. color:#FFFFFF;
  1941. }
  1942. #u13737 .text {
  1943. position:absolute;
  1944. align-self:center;
  1945. padding:2px 2px 2px 0px;
  1946. box-sizing:border-box;
  1947. width:100%;
  1948. }
  1949. #u13737_text {
  1950. border-width:0px;
  1951. word-wrap:break-word;
  1952. text-transform:none;
  1953. }
  1954. #u13738_img {
  1955. border-width:0px;
  1956. position:absolute;
  1957. left:0px;
  1958. top:0px;
  1959. width:136px;
  1960. height:39px;
  1961. }
  1962. #u13738 {
  1963. border-width:0px;
  1964. position:absolute;
  1965. left:544px;
  1966. top:0px;
  1967. width:136px;
  1968. height:39px;
  1969. display:flex;
  1970. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1971. font-weight:400;
  1972. font-style:normal;
  1973. font-size:12px;
  1974. color:#FFFFFF;
  1975. }
  1976. #u13738 .text {
  1977. position:absolute;
  1978. align-self:center;
  1979. padding:2px 2px 2px 0px;
  1980. box-sizing:border-box;
  1981. width:100%;
  1982. }
  1983. #u13738_text {
  1984. border-width:0px;
  1985. word-wrap:break-word;
  1986. text-transform:none;
  1987. }
  1988. #u13739_img {
  1989. border-width:0px;
  1990. position:absolute;
  1991. left:0px;
  1992. top:0px;
  1993. width:136px;
  1994. height:39px;
  1995. }
  1996. #u13739 {
  1997. border-width:0px;
  1998. position:absolute;
  1999. left:680px;
  2000. top:0px;
  2001. width:136px;
  2002. height:39px;
  2003. display:flex;
  2004. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2005. font-weight:400;
  2006. font-style:normal;
  2007. font-size:12px;
  2008. color:#FFFFFF;
  2009. }
  2010. #u13739 .text {
  2011. position:absolute;
  2012. align-self:center;
  2013. padding:2px 2px 2px 0px;
  2014. box-sizing:border-box;
  2015. width:100%;
  2016. }
  2017. #u13739_text {
  2018. border-width:0px;
  2019. word-wrap:break-word;
  2020. text-transform:none;
  2021. }
  2022. #u13740_img {
  2023. border-width:0px;
  2024. position:absolute;
  2025. left:0px;
  2026. top:0px;
  2027. width:136px;
  2028. height:39px;
  2029. }
  2030. #u13740 {
  2031. border-width:0px;
  2032. position:absolute;
  2033. left:816px;
  2034. top:0px;
  2035. width:136px;
  2036. height:39px;
  2037. display:flex;
  2038. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2039. font-weight:400;
  2040. font-style:normal;
  2041. font-size:12px;
  2042. color:#FFFFFF;
  2043. }
  2044. #u13740 .text {
  2045. position:absolute;
  2046. align-self:center;
  2047. padding:2px 2px 2px 0px;
  2048. box-sizing:border-box;
  2049. width:100%;
  2050. }
  2051. #u13740_text {
  2052. border-width:0px;
  2053. word-wrap:break-word;
  2054. text-transform:none;
  2055. }
  2056. #u13741_img {
  2057. border-width:0px;
  2058. position:absolute;
  2059. left:0px;
  2060. top:0px;
  2061. width:136px;
  2062. height:39px;
  2063. }
  2064. #u13741 {
  2065. border-width:0px;
  2066. position:absolute;
  2067. left:952px;
  2068. top:0px;
  2069. width:136px;
  2070. height:39px;
  2071. display:flex;
  2072. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2073. font-weight:400;
  2074. font-style:normal;
  2075. font-size:12px;
  2076. color:#FFFFFF;
  2077. }
  2078. #u13741 .text {
  2079. position:absolute;
  2080. align-self:center;
  2081. padding:2px 2px 2px 0px;
  2082. box-sizing:border-box;
  2083. width:100%;
  2084. }
  2085. #u13741_text {
  2086. border-width:0px;
  2087. word-wrap:break-word;
  2088. text-transform:none;
  2089. }
  2090. #u13742_img {
  2091. border-width:0px;
  2092. position:absolute;
  2093. left:0px;
  2094. top:0px;
  2095. width:134px;
  2096. height:39px;
  2097. }
  2098. #u13742 {
  2099. border-width:0px;
  2100. position:absolute;
  2101. left:1088px;
  2102. top:0px;
  2103. width:134px;
  2104. height:39px;
  2105. display:flex;
  2106. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2107. font-weight:400;
  2108. font-style:normal;
  2109. font-size:12px;
  2110. color:#FFFFFF;
  2111. }
  2112. #u13742 .text {
  2113. position:absolute;
  2114. align-self:center;
  2115. padding:2px 2px 2px 0px;
  2116. box-sizing:border-box;
  2117. width:100%;
  2118. }
  2119. #u13742_text {
  2120. border-width:0px;
  2121. word-wrap:break-word;
  2122. text-transform:none;
  2123. }
  2124. #u13743_img {
  2125. border-width:0px;
  2126. position:absolute;
  2127. left:0px;
  2128. top:0px;
  2129. width:136px;
  2130. height:36px;
  2131. }
  2132. #u13743 {
  2133. border-width:0px;
  2134. position:absolute;
  2135. left:0px;
  2136. top:39px;
  2137. width:136px;
  2138. height:36px;
  2139. display:flex;
  2140. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2141. font-weight:400;
  2142. font-style:normal;
  2143. font-size:12px;
  2144. }
  2145. #u13743 .text {
  2146. position:absolute;
  2147. align-self:center;
  2148. padding:2px 2px 2px 0px;
  2149. box-sizing:border-box;
  2150. width:100%;
  2151. }
  2152. #u13743_text {
  2153. border-width:0px;
  2154. word-wrap:break-word;
  2155. text-transform:none;
  2156. visibility:hidden;
  2157. }
  2158. #u13744_img {
  2159. border-width:0px;
  2160. position:absolute;
  2161. left:0px;
  2162. top:0px;
  2163. width:136px;
  2164. height:36px;
  2165. }
  2166. #u13744 {
  2167. border-width:0px;
  2168. position:absolute;
  2169. left:136px;
  2170. top:39px;
  2171. width:136px;
  2172. height:36px;
  2173. display:flex;
  2174. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2175. font-weight:400;
  2176. font-style:normal;
  2177. font-size:12px;
  2178. }
  2179. #u13744 .text {
  2180. position:absolute;
  2181. align-self:center;
  2182. padding:2px 2px 2px 0px;
  2183. box-sizing:border-box;
  2184. width:100%;
  2185. }
  2186. #u13744_text {
  2187. border-width:0px;
  2188. word-wrap:break-word;
  2189. text-transform:none;
  2190. visibility:hidden;
  2191. }
  2192. #u13745_img {
  2193. border-width:0px;
  2194. position:absolute;
  2195. left:0px;
  2196. top:0px;
  2197. width:136px;
  2198. height:36px;
  2199. }
  2200. #u13745 {
  2201. border-width:0px;
  2202. position:absolute;
  2203. left:272px;
  2204. top:39px;
  2205. width:136px;
  2206. height:36px;
  2207. display:flex;
  2208. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2209. font-weight:400;
  2210. font-style:normal;
  2211. font-size:12px;
  2212. }
  2213. #u13745 .text {
  2214. position:absolute;
  2215. align-self:center;
  2216. padding:2px 2px 2px 0px;
  2217. box-sizing:border-box;
  2218. width:100%;
  2219. }
  2220. #u13745_text {
  2221. border-width:0px;
  2222. word-wrap:break-word;
  2223. text-transform:none;
  2224. visibility:hidden;
  2225. }
  2226. #u13746_img {
  2227. border-width:0px;
  2228. position:absolute;
  2229. left:0px;
  2230. top:0px;
  2231. width:136px;
  2232. height:36px;
  2233. }
  2234. #u13746 {
  2235. border-width:0px;
  2236. position:absolute;
  2237. left:408px;
  2238. top:39px;
  2239. width:136px;
  2240. height:36px;
  2241. display:flex;
  2242. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2243. font-weight:400;
  2244. font-style:normal;
  2245. font-size:12px;
  2246. }
  2247. #u13746 .text {
  2248. position:absolute;
  2249. align-self:center;
  2250. padding:2px 2px 2px 0px;
  2251. box-sizing:border-box;
  2252. width:100%;
  2253. }
  2254. #u13746_text {
  2255. border-width:0px;
  2256. word-wrap:break-word;
  2257. text-transform:none;
  2258. }
  2259. #u13747_img {
  2260. border-width:0px;
  2261. position:absolute;
  2262. left:0px;
  2263. top:0px;
  2264. width:136px;
  2265. height:36px;
  2266. }
  2267. #u13747 {
  2268. border-width:0px;
  2269. position:absolute;
  2270. left:544px;
  2271. top:39px;
  2272. width:136px;
  2273. height:36px;
  2274. display:flex;
  2275. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2276. font-weight:400;
  2277. font-style:normal;
  2278. font-size:12px;
  2279. }
  2280. #u13747 .text {
  2281. position:absolute;
  2282. align-self:center;
  2283. padding:2px 2px 2px 0px;
  2284. box-sizing:border-box;
  2285. width:100%;
  2286. }
  2287. #u13747_text {
  2288. border-width:0px;
  2289. word-wrap:break-word;
  2290. text-transform:none;
  2291. visibility:hidden;
  2292. }
  2293. #u13748_img {
  2294. border-width:0px;
  2295. position:absolute;
  2296. left:0px;
  2297. top:0px;
  2298. width:136px;
  2299. height:36px;
  2300. }
  2301. #u13748 {
  2302. border-width:0px;
  2303. position:absolute;
  2304. left:680px;
  2305. top:39px;
  2306. width:136px;
  2307. height:36px;
  2308. display:flex;
  2309. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2310. font-weight:400;
  2311. font-style:normal;
  2312. font-size:12px;
  2313. }
  2314. #u13748 .text {
  2315. position:absolute;
  2316. align-self:center;
  2317. padding:2px 2px 2px 0px;
  2318. box-sizing:border-box;
  2319. width:100%;
  2320. }
  2321. #u13748_text {
  2322. border-width:0px;
  2323. word-wrap:break-word;
  2324. text-transform:none;
  2325. visibility:hidden;
  2326. }
  2327. #u13749_img {
  2328. border-width:0px;
  2329. position:absolute;
  2330. left:0px;
  2331. top:0px;
  2332. width:136px;
  2333. height:36px;
  2334. }
  2335. #u13749 {
  2336. border-width:0px;
  2337. position:absolute;
  2338. left:816px;
  2339. top:39px;
  2340. width:136px;
  2341. height:36px;
  2342. display:flex;
  2343. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2344. font-weight:400;
  2345. font-style:normal;
  2346. font-size:12px;
  2347. }
  2348. #u13749 .text {
  2349. position:absolute;
  2350. align-self:center;
  2351. padding:2px 2px 2px 0px;
  2352. box-sizing:border-box;
  2353. width:100%;
  2354. }
  2355. #u13749_text {
  2356. border-width:0px;
  2357. word-wrap:break-word;
  2358. text-transform:none;
  2359. visibility:hidden;
  2360. }
  2361. #u13750_img {
  2362. border-width:0px;
  2363. position:absolute;
  2364. left:0px;
  2365. top:0px;
  2366. width:136px;
  2367. height:36px;
  2368. }
  2369. #u13750 {
  2370. border-width:0px;
  2371. position:absolute;
  2372. left:952px;
  2373. top:39px;
  2374. width:136px;
  2375. height:36px;
  2376. display:flex;
  2377. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2378. font-weight:400;
  2379. font-style:normal;
  2380. font-size:12px;
  2381. }
  2382. #u13750 .text {
  2383. position:absolute;
  2384. align-self:center;
  2385. padding:2px 2px 2px 0px;
  2386. box-sizing:border-box;
  2387. width:100%;
  2388. }
  2389. #u13750_text {
  2390. border-width:0px;
  2391. word-wrap:break-word;
  2392. text-transform:none;
  2393. }
  2394. #u13751_img {
  2395. border-width:0px;
  2396. position:absolute;
  2397. left:0px;
  2398. top:0px;
  2399. width:134px;
  2400. height:36px;
  2401. }
  2402. #u13751 {
  2403. border-width:0px;
  2404. position:absolute;
  2405. left:1088px;
  2406. top:39px;
  2407. width:134px;
  2408. height:36px;
  2409. display:flex;
  2410. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2411. font-weight:400;
  2412. font-style:normal;
  2413. font-size:12px;
  2414. color:#1890FF;
  2415. }
  2416. #u13751 .text {
  2417. position:absolute;
  2418. align-self:center;
  2419. padding:2px 2px 2px 0px;
  2420. box-sizing:border-box;
  2421. width:100%;
  2422. }
  2423. #u13751_text {
  2424. border-width:0px;
  2425. word-wrap:break-word;
  2426. text-transform:none;
  2427. }
  2428. #u13752_img {
  2429. border-width:0px;
  2430. position:absolute;
  2431. left:0px;
  2432. top:0px;
  2433. width:136px;
  2434. height:38px;
  2435. }
  2436. #u13752 {
  2437. border-width:0px;
  2438. position:absolute;
  2439. left:0px;
  2440. top:75px;
  2441. width:136px;
  2442. height:38px;
  2443. display:flex;
  2444. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2445. font-weight:400;
  2446. font-style:normal;
  2447. font-size:12px;
  2448. }
  2449. #u13752 .text {
  2450. position:absolute;
  2451. align-self:center;
  2452. padding:2px 2px 2px 0px;
  2453. box-sizing:border-box;
  2454. width:100%;
  2455. }
  2456. #u13752_text {
  2457. border-width:0px;
  2458. word-wrap:break-word;
  2459. text-transform:none;
  2460. visibility:hidden;
  2461. }
  2462. #u13753_img {
  2463. border-width:0px;
  2464. position:absolute;
  2465. left:0px;
  2466. top:0px;
  2467. width:136px;
  2468. height:38px;
  2469. }
  2470. #u13753 {
  2471. border-width:0px;
  2472. position:absolute;
  2473. left:136px;
  2474. top:75px;
  2475. width:136px;
  2476. height:38px;
  2477. display:flex;
  2478. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2479. font-weight:400;
  2480. font-style:normal;
  2481. font-size:12px;
  2482. }
  2483. #u13753 .text {
  2484. position:absolute;
  2485. align-self:center;
  2486. padding:2px 2px 2px 0px;
  2487. box-sizing:border-box;
  2488. width:100%;
  2489. }
  2490. #u13753_text {
  2491. border-width:0px;
  2492. word-wrap:break-word;
  2493. text-transform:none;
  2494. visibility:hidden;
  2495. }
  2496. #u13754_img {
  2497. border-width:0px;
  2498. position:absolute;
  2499. left:0px;
  2500. top:0px;
  2501. width:136px;
  2502. height:38px;
  2503. }
  2504. #u13754 {
  2505. border-width:0px;
  2506. position:absolute;
  2507. left:272px;
  2508. top:75px;
  2509. width:136px;
  2510. height:38px;
  2511. display:flex;
  2512. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2513. font-weight:400;
  2514. font-style:normal;
  2515. font-size:12px;
  2516. }
  2517. #u13754 .text {
  2518. position:absolute;
  2519. align-self:center;
  2520. padding:2px 2px 2px 0px;
  2521. box-sizing:border-box;
  2522. width:100%;
  2523. }
  2524. #u13754_text {
  2525. border-width:0px;
  2526. word-wrap:break-word;
  2527. text-transform:none;
  2528. visibility:hidden;
  2529. }
  2530. #u13755_img {
  2531. border-width:0px;
  2532. position:absolute;
  2533. left:0px;
  2534. top:0px;
  2535. width:136px;
  2536. height:38px;
  2537. }
  2538. #u13755 {
  2539. border-width:0px;
  2540. position:absolute;
  2541. left:408px;
  2542. top:75px;
  2543. width:136px;
  2544. height:38px;
  2545. display:flex;
  2546. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2547. font-weight:400;
  2548. font-style:normal;
  2549. font-size:12px;
  2550. }
  2551. #u13755 .text {
  2552. position:absolute;
  2553. align-self:center;
  2554. padding:2px 2px 2px 0px;
  2555. box-sizing:border-box;
  2556. width:100%;
  2557. }
  2558. #u13755_text {
  2559. border-width:0px;
  2560. word-wrap:break-word;
  2561. text-transform:none;
  2562. }
  2563. #u13756_img {
  2564. border-width:0px;
  2565. position:absolute;
  2566. left:0px;
  2567. top:0px;
  2568. width:136px;
  2569. height:38px;
  2570. }
  2571. #u13756 {
  2572. border-width:0px;
  2573. position:absolute;
  2574. left:544px;
  2575. top:75px;
  2576. width:136px;
  2577. height:38px;
  2578. display:flex;
  2579. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2580. font-weight:400;
  2581. font-style:normal;
  2582. font-size:12px;
  2583. }
  2584. #u13756 .text {
  2585. position:absolute;
  2586. align-self:center;
  2587. padding:2px 2px 2px 0px;
  2588. box-sizing:border-box;
  2589. width:100%;
  2590. }
  2591. #u13756_text {
  2592. border-width:0px;
  2593. word-wrap:break-word;
  2594. text-transform:none;
  2595. visibility:hidden;
  2596. }
  2597. #u13757_img {
  2598. border-width:0px;
  2599. position:absolute;
  2600. left:0px;
  2601. top:0px;
  2602. width:136px;
  2603. height:38px;
  2604. }
  2605. #u13757 {
  2606. border-width:0px;
  2607. position:absolute;
  2608. left:680px;
  2609. top:75px;
  2610. width:136px;
  2611. height:38px;
  2612. display:flex;
  2613. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2614. font-weight:400;
  2615. font-style:normal;
  2616. font-size:12px;
  2617. }
  2618. #u13757 .text {
  2619. position:absolute;
  2620. align-self:center;
  2621. padding:2px 2px 2px 0px;
  2622. box-sizing:border-box;
  2623. width:100%;
  2624. }
  2625. #u13757_text {
  2626. border-width:0px;
  2627. word-wrap:break-word;
  2628. text-transform:none;
  2629. visibility:hidden;
  2630. }
  2631. #u13758_img {
  2632. border-width:0px;
  2633. position:absolute;
  2634. left:0px;
  2635. top:0px;
  2636. width:136px;
  2637. height:38px;
  2638. }
  2639. #u13758 {
  2640. border-width:0px;
  2641. position:absolute;
  2642. left:816px;
  2643. top:75px;
  2644. width:136px;
  2645. height:38px;
  2646. display:flex;
  2647. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2648. font-weight:400;
  2649. font-style:normal;
  2650. font-size:12px;
  2651. }
  2652. #u13758 .text {
  2653. position:absolute;
  2654. align-self:center;
  2655. padding:2px 2px 2px 0px;
  2656. box-sizing:border-box;
  2657. width:100%;
  2658. }
  2659. #u13758_text {
  2660. border-width:0px;
  2661. word-wrap:break-word;
  2662. text-transform:none;
  2663. visibility:hidden;
  2664. }
  2665. #u13759_img {
  2666. border-width:0px;
  2667. position:absolute;
  2668. left:0px;
  2669. top:0px;
  2670. width:136px;
  2671. height:38px;
  2672. }
  2673. #u13759 {
  2674. border-width:0px;
  2675. position:absolute;
  2676. left:952px;
  2677. top:75px;
  2678. width:136px;
  2679. height:38px;
  2680. display:flex;
  2681. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2682. font-weight:400;
  2683. font-style:normal;
  2684. font-size:12px;
  2685. }
  2686. #u13759 .text {
  2687. position:absolute;
  2688. align-self:center;
  2689. padding:2px 2px 2px 0px;
  2690. box-sizing:border-box;
  2691. width:100%;
  2692. }
  2693. #u13759_text {
  2694. border-width:0px;
  2695. word-wrap:break-word;
  2696. text-transform:none;
  2697. }
  2698. #u13760_img {
  2699. border-width:0px;
  2700. position:absolute;
  2701. left:0px;
  2702. top:0px;
  2703. width:134px;
  2704. height:38px;
  2705. }
  2706. #u13760 {
  2707. border-width:0px;
  2708. position:absolute;
  2709. left:1088px;
  2710. top:75px;
  2711. width:134px;
  2712. height:38px;
  2713. display:flex;
  2714. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2715. font-weight:400;
  2716. font-style:normal;
  2717. font-size:12px;
  2718. color:#1890FF;
  2719. }
  2720. #u13760 .text {
  2721. position:absolute;
  2722. align-self:center;
  2723. padding:2px 2px 2px 0px;
  2724. box-sizing:border-box;
  2725. width:100%;
  2726. }
  2727. #u13760_text {
  2728. border-width:0px;
  2729. word-wrap:break-word;
  2730. text-transform:none;
  2731. }
  2732. #u13761_img {
  2733. border-width:0px;
  2734. position:absolute;
  2735. left:0px;
  2736. top:0px;
  2737. width:136px;
  2738. height:38px;
  2739. }
  2740. #u13761 {
  2741. border-width:0px;
  2742. position:absolute;
  2743. left:0px;
  2744. top:113px;
  2745. width:136px;
  2746. height:38px;
  2747. display:flex;
  2748. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2749. font-weight:400;
  2750. font-style:normal;
  2751. font-size:12px;
  2752. }
  2753. #u13761 .text {
  2754. position:absolute;
  2755. align-self:center;
  2756. padding:2px 2px 2px 0px;
  2757. box-sizing:border-box;
  2758. width:100%;
  2759. }
  2760. #u13761_text {
  2761. border-width:0px;
  2762. word-wrap:break-word;
  2763. text-transform:none;
  2764. visibility:hidden;
  2765. }
  2766. #u13762_img {
  2767. border-width:0px;
  2768. position:absolute;
  2769. left:0px;
  2770. top:0px;
  2771. width:136px;
  2772. height:38px;
  2773. }
  2774. #u13762 {
  2775. border-width:0px;
  2776. position:absolute;
  2777. left:136px;
  2778. top:113px;
  2779. width:136px;
  2780. height:38px;
  2781. display:flex;
  2782. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2783. font-weight:400;
  2784. font-style:normal;
  2785. font-size:12px;
  2786. }
  2787. #u13762 .text {
  2788. position:absolute;
  2789. align-self:center;
  2790. padding:2px 2px 2px 0px;
  2791. box-sizing:border-box;
  2792. width:100%;
  2793. }
  2794. #u13762_text {
  2795. border-width:0px;
  2796. word-wrap:break-word;
  2797. text-transform:none;
  2798. visibility:hidden;
  2799. }
  2800. #u13763_img {
  2801. border-width:0px;
  2802. position:absolute;
  2803. left:0px;
  2804. top:0px;
  2805. width:136px;
  2806. height:38px;
  2807. }
  2808. #u13763 {
  2809. border-width:0px;
  2810. position:absolute;
  2811. left:272px;
  2812. top:113px;
  2813. width:136px;
  2814. height:38px;
  2815. display:flex;
  2816. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2817. font-weight:400;
  2818. font-style:normal;
  2819. font-size:12px;
  2820. }
  2821. #u13763 .text {
  2822. position:absolute;
  2823. align-self:center;
  2824. padding:2px 2px 2px 0px;
  2825. box-sizing:border-box;
  2826. width:100%;
  2827. }
  2828. #u13763_text {
  2829. border-width:0px;
  2830. word-wrap:break-word;
  2831. text-transform:none;
  2832. visibility:hidden;
  2833. }
  2834. #u13764_img {
  2835. border-width:0px;
  2836. position:absolute;
  2837. left:0px;
  2838. top:0px;
  2839. width:136px;
  2840. height:38px;
  2841. }
  2842. #u13764 {
  2843. border-width:0px;
  2844. position:absolute;
  2845. left:408px;
  2846. top:113px;
  2847. width:136px;
  2848. height:38px;
  2849. display:flex;
  2850. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2851. font-weight:400;
  2852. font-style:normal;
  2853. font-size:12px;
  2854. }
  2855. #u13764 .text {
  2856. position:absolute;
  2857. align-self:center;
  2858. padding:2px 2px 2px 0px;
  2859. box-sizing:border-box;
  2860. width:100%;
  2861. }
  2862. #u13764_text {
  2863. border-width:0px;
  2864. word-wrap:break-word;
  2865. text-transform:none;
  2866. }
  2867. #u13765_img {
  2868. border-width:0px;
  2869. position:absolute;
  2870. left:0px;
  2871. top:0px;
  2872. width:136px;
  2873. height:38px;
  2874. }
  2875. #u13765 {
  2876. border-width:0px;
  2877. position:absolute;
  2878. left:544px;
  2879. top:113px;
  2880. width:136px;
  2881. height:38px;
  2882. display:flex;
  2883. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2884. font-weight:400;
  2885. font-style:normal;
  2886. font-size:12px;
  2887. }
  2888. #u13765 .text {
  2889. position:absolute;
  2890. align-self:center;
  2891. padding:2px 2px 2px 0px;
  2892. box-sizing:border-box;
  2893. width:100%;
  2894. }
  2895. #u13765_text {
  2896. border-width:0px;
  2897. word-wrap:break-word;
  2898. text-transform:none;
  2899. visibility:hidden;
  2900. }
  2901. #u13766_img {
  2902. border-width:0px;
  2903. position:absolute;
  2904. left:0px;
  2905. top:0px;
  2906. width:136px;
  2907. height:38px;
  2908. }
  2909. #u13766 {
  2910. border-width:0px;
  2911. position:absolute;
  2912. left:680px;
  2913. top:113px;
  2914. width:136px;
  2915. height:38px;
  2916. display:flex;
  2917. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2918. font-weight:400;
  2919. font-style:normal;
  2920. font-size:12px;
  2921. }
  2922. #u13766 .text {
  2923. position:absolute;
  2924. align-self:center;
  2925. padding:2px 2px 2px 0px;
  2926. box-sizing:border-box;
  2927. width:100%;
  2928. }
  2929. #u13766_text {
  2930. border-width:0px;
  2931. word-wrap:break-word;
  2932. text-transform:none;
  2933. visibility:hidden;
  2934. }
  2935. #u13767_img {
  2936. border-width:0px;
  2937. position:absolute;
  2938. left:0px;
  2939. top:0px;
  2940. width:136px;
  2941. height:38px;
  2942. }
  2943. #u13767 {
  2944. border-width:0px;
  2945. position:absolute;
  2946. left:816px;
  2947. top:113px;
  2948. width:136px;
  2949. height:38px;
  2950. display:flex;
  2951. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2952. font-weight:400;
  2953. font-style:normal;
  2954. font-size:12px;
  2955. }
  2956. #u13767 .text {
  2957. position:absolute;
  2958. align-self:center;
  2959. padding:2px 2px 2px 0px;
  2960. box-sizing:border-box;
  2961. width:100%;
  2962. }
  2963. #u13767_text {
  2964. border-width:0px;
  2965. word-wrap:break-word;
  2966. text-transform:none;
  2967. visibility:hidden;
  2968. }
  2969. #u13768_img {
  2970. border-width:0px;
  2971. position:absolute;
  2972. left:0px;
  2973. top:0px;
  2974. width:136px;
  2975. height:38px;
  2976. }
  2977. #u13768 {
  2978. border-width:0px;
  2979. position:absolute;
  2980. left:952px;
  2981. top:113px;
  2982. width:136px;
  2983. height:38px;
  2984. display:flex;
  2985. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2986. font-weight:400;
  2987. font-style:normal;
  2988. font-size:12px;
  2989. }
  2990. #u13768 .text {
  2991. position:absolute;
  2992. align-self:center;
  2993. padding:2px 2px 2px 0px;
  2994. box-sizing:border-box;
  2995. width:100%;
  2996. }
  2997. #u13768_text {
  2998. border-width:0px;
  2999. word-wrap:break-word;
  3000. text-transform:none;
  3001. }
  3002. #u13769_img {
  3003. border-width:0px;
  3004. position:absolute;
  3005. left:0px;
  3006. top:0px;
  3007. width:134px;
  3008. height:38px;
  3009. }
  3010. #u13769 {
  3011. border-width:0px;
  3012. position:absolute;
  3013. left:1088px;
  3014. top:113px;
  3015. width:134px;
  3016. height:38px;
  3017. display:flex;
  3018. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3019. font-weight:400;
  3020. font-style:normal;
  3021. font-size:12px;
  3022. color:#1890FF;
  3023. }
  3024. #u13769 .text {
  3025. position:absolute;
  3026. align-self:center;
  3027. padding:2px 2px 2px 0px;
  3028. box-sizing:border-box;
  3029. width:100%;
  3030. }
  3031. #u13769_text {
  3032. border-width:0px;
  3033. word-wrap:break-word;
  3034. text-transform:none;
  3035. }
  3036. #u13770_img {
  3037. border-width:0px;
  3038. position:absolute;
  3039. left:0px;
  3040. top:0px;
  3041. width:136px;
  3042. height:38px;
  3043. }
  3044. #u13770 {
  3045. border-width:0px;
  3046. position:absolute;
  3047. left:0px;
  3048. top:151px;
  3049. width:136px;
  3050. height:38px;
  3051. display:flex;
  3052. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3053. font-weight:400;
  3054. font-style:normal;
  3055. font-size:12px;
  3056. }
  3057. #u13770 .text {
  3058. position:absolute;
  3059. align-self:center;
  3060. padding:2px 2px 2px 0px;
  3061. box-sizing:border-box;
  3062. width:100%;
  3063. }
  3064. #u13770_text {
  3065. border-width:0px;
  3066. word-wrap:break-word;
  3067. text-transform:none;
  3068. visibility:hidden;
  3069. }
  3070. #u13771_img {
  3071. border-width:0px;
  3072. position:absolute;
  3073. left:0px;
  3074. top:0px;
  3075. width:136px;
  3076. height:38px;
  3077. }
  3078. #u13771 {
  3079. border-width:0px;
  3080. position:absolute;
  3081. left:136px;
  3082. top:151px;
  3083. width:136px;
  3084. height:38px;
  3085. display:flex;
  3086. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3087. font-weight:400;
  3088. font-style:normal;
  3089. font-size:12px;
  3090. }
  3091. #u13771 .text {
  3092. position:absolute;
  3093. align-self:center;
  3094. padding:2px 2px 2px 0px;
  3095. box-sizing:border-box;
  3096. width:100%;
  3097. }
  3098. #u13771_text {
  3099. border-width:0px;
  3100. word-wrap:break-word;
  3101. text-transform:none;
  3102. visibility:hidden;
  3103. }
  3104. #u13772_img {
  3105. border-width:0px;
  3106. position:absolute;
  3107. left:0px;
  3108. top:0px;
  3109. width:136px;
  3110. height:38px;
  3111. }
  3112. #u13772 {
  3113. border-width:0px;
  3114. position:absolute;
  3115. left:272px;
  3116. top:151px;
  3117. width:136px;
  3118. height:38px;
  3119. display:flex;
  3120. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3121. font-weight:400;
  3122. font-style:normal;
  3123. font-size:12px;
  3124. }
  3125. #u13772 .text {
  3126. position:absolute;
  3127. align-self:center;
  3128. padding:2px 2px 2px 0px;
  3129. box-sizing:border-box;
  3130. width:100%;
  3131. }
  3132. #u13772_text {
  3133. border-width:0px;
  3134. word-wrap:break-word;
  3135. text-transform:none;
  3136. visibility:hidden;
  3137. }
  3138. #u13773_img {
  3139. border-width:0px;
  3140. position:absolute;
  3141. left:0px;
  3142. top:0px;
  3143. width:136px;
  3144. height:38px;
  3145. }
  3146. #u13773 {
  3147. border-width:0px;
  3148. position:absolute;
  3149. left:408px;
  3150. top:151px;
  3151. width:136px;
  3152. height:38px;
  3153. display:flex;
  3154. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3155. font-weight:400;
  3156. font-style:normal;
  3157. font-size:12px;
  3158. }
  3159. #u13773 .text {
  3160. position:absolute;
  3161. align-self:center;
  3162. padding:2px 2px 2px 0px;
  3163. box-sizing:border-box;
  3164. width:100%;
  3165. }
  3166. #u13773_text {
  3167. border-width:0px;
  3168. word-wrap:break-word;
  3169. text-transform:none;
  3170. visibility:hidden;
  3171. }
  3172. #u13774_img {
  3173. border-width:0px;
  3174. position:absolute;
  3175. left:0px;
  3176. top:0px;
  3177. width:136px;
  3178. height:38px;
  3179. }
  3180. #u13774 {
  3181. border-width:0px;
  3182. position:absolute;
  3183. left:544px;
  3184. top:151px;
  3185. width:136px;
  3186. height:38px;
  3187. display:flex;
  3188. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3189. font-weight:400;
  3190. font-style:normal;
  3191. font-size:12px;
  3192. }
  3193. #u13774 .text {
  3194. position:absolute;
  3195. align-self:center;
  3196. padding:2px 2px 2px 0px;
  3197. box-sizing:border-box;
  3198. width:100%;
  3199. }
  3200. #u13774_text {
  3201. border-width:0px;
  3202. word-wrap:break-word;
  3203. text-transform:none;
  3204. visibility:hidden;
  3205. }
  3206. #u13775_img {
  3207. border-width:0px;
  3208. position:absolute;
  3209. left:0px;
  3210. top:0px;
  3211. width:136px;
  3212. height:38px;
  3213. }
  3214. #u13775 {
  3215. border-width:0px;
  3216. position:absolute;
  3217. left:680px;
  3218. top:151px;
  3219. width:136px;
  3220. height:38px;
  3221. display:flex;
  3222. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3223. font-weight:400;
  3224. font-style:normal;
  3225. font-size:12px;
  3226. }
  3227. #u13775 .text {
  3228. position:absolute;
  3229. align-self:center;
  3230. padding:2px 2px 2px 0px;
  3231. box-sizing:border-box;
  3232. width:100%;
  3233. }
  3234. #u13775_text {
  3235. border-width:0px;
  3236. word-wrap:break-word;
  3237. text-transform:none;
  3238. visibility:hidden;
  3239. }
  3240. #u13776_img {
  3241. border-width:0px;
  3242. position:absolute;
  3243. left:0px;
  3244. top:0px;
  3245. width:136px;
  3246. height:38px;
  3247. }
  3248. #u13776 {
  3249. border-width:0px;
  3250. position:absolute;
  3251. left:816px;
  3252. top:151px;
  3253. width:136px;
  3254. height:38px;
  3255. display:flex;
  3256. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3257. font-weight:400;
  3258. font-style:normal;
  3259. font-size:12px;
  3260. }
  3261. #u13776 .text {
  3262. position:absolute;
  3263. align-self:center;
  3264. padding:2px 2px 2px 0px;
  3265. box-sizing:border-box;
  3266. width:100%;
  3267. }
  3268. #u13776_text {
  3269. border-width:0px;
  3270. word-wrap:break-word;
  3271. text-transform:none;
  3272. visibility:hidden;
  3273. }
  3274. #u13777_img {
  3275. border-width:0px;
  3276. position:absolute;
  3277. left:0px;
  3278. top:0px;
  3279. width:136px;
  3280. height:38px;
  3281. }
  3282. #u13777 {
  3283. border-width:0px;
  3284. position:absolute;
  3285. left:952px;
  3286. top:151px;
  3287. width:136px;
  3288. height:38px;
  3289. display:flex;
  3290. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3291. font-weight:400;
  3292. font-style:normal;
  3293. font-size:12px;
  3294. }
  3295. #u13777 .text {
  3296. position:absolute;
  3297. align-self:center;
  3298. padding:2px 2px 2px 0px;
  3299. box-sizing:border-box;
  3300. width:100%;
  3301. }
  3302. #u13777_text {
  3303. border-width:0px;
  3304. word-wrap:break-word;
  3305. text-transform:none;
  3306. visibility:hidden;
  3307. }
  3308. #u13778_img {
  3309. border-width:0px;
  3310. position:absolute;
  3311. left:0px;
  3312. top:0px;
  3313. width:134px;
  3314. height:38px;
  3315. }
  3316. #u13778 {
  3317. border-width:0px;
  3318. position:absolute;
  3319. left:1088px;
  3320. top:151px;
  3321. width:134px;
  3322. height:38px;
  3323. display:flex;
  3324. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3325. font-weight:400;
  3326. font-style:normal;
  3327. font-size:12px;
  3328. color:#1890FF;
  3329. }
  3330. #u13778 .text {
  3331. position:absolute;
  3332. align-self:center;
  3333. padding:2px 2px 2px 0px;
  3334. box-sizing:border-box;
  3335. width:100%;
  3336. }
  3337. #u13778_text {
  3338. border-width:0px;
  3339. word-wrap:break-word;
  3340. text-transform:none;
  3341. visibility:hidden;
  3342. }
  3343. #u13779_img {
  3344. border-width:0px;
  3345. position:absolute;
  3346. left:0px;
  3347. top:0px;
  3348. width:136px;
  3349. height:35px;
  3350. }
  3351. #u13779 {
  3352. border-width:0px;
  3353. position:absolute;
  3354. left:0px;
  3355. top:189px;
  3356. width:136px;
  3357. height:35px;
  3358. display:flex;
  3359. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3360. font-weight:400;
  3361. font-style:normal;
  3362. font-size:12px;
  3363. color:#606266;
  3364. }
  3365. #u13779 .text {
  3366. position:absolute;
  3367. align-self:center;
  3368. padding:2px 2px 2px 0px;
  3369. box-sizing:border-box;
  3370. width:100%;
  3371. }
  3372. #u13779_text {
  3373. border-width:0px;
  3374. word-wrap:break-word;
  3375. text-transform:none;
  3376. visibility:hidden;
  3377. }
  3378. #u13780_img {
  3379. border-width:0px;
  3380. position:absolute;
  3381. left:0px;
  3382. top:0px;
  3383. width:136px;
  3384. height:35px;
  3385. }
  3386. #u13780 {
  3387. border-width:0px;
  3388. position:absolute;
  3389. left:136px;
  3390. top:189px;
  3391. width:136px;
  3392. height:35px;
  3393. display:flex;
  3394. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3395. font-weight:400;
  3396. font-style:normal;
  3397. font-size:12px;
  3398. color:#606266;
  3399. }
  3400. #u13780 .text {
  3401. position:absolute;
  3402. align-self:center;
  3403. padding:2px 2px 2px 0px;
  3404. box-sizing:border-box;
  3405. width:100%;
  3406. }
  3407. #u13780_text {
  3408. border-width:0px;
  3409. word-wrap:break-word;
  3410. text-transform:none;
  3411. visibility:hidden;
  3412. }
  3413. #u13781_img {
  3414. border-width:0px;
  3415. position:absolute;
  3416. left:0px;
  3417. top:0px;
  3418. width:136px;
  3419. height:35px;
  3420. }
  3421. #u13781 {
  3422. border-width:0px;
  3423. position:absolute;
  3424. left:272px;
  3425. top:189px;
  3426. width:136px;
  3427. height:35px;
  3428. display:flex;
  3429. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3430. font-weight:400;
  3431. font-style:normal;
  3432. font-size:12px;
  3433. color:#606266;
  3434. }
  3435. #u13781 .text {
  3436. position:absolute;
  3437. align-self:center;
  3438. padding:2px 2px 2px 0px;
  3439. box-sizing:border-box;
  3440. width:100%;
  3441. }
  3442. #u13781_text {
  3443. border-width:0px;
  3444. word-wrap:break-word;
  3445. text-transform:none;
  3446. visibility:hidden;
  3447. }
  3448. #u13782_img {
  3449. border-width:0px;
  3450. position:absolute;
  3451. left:0px;
  3452. top:0px;
  3453. width:136px;
  3454. height:35px;
  3455. }
  3456. #u13782 {
  3457. border-width:0px;
  3458. position:absolute;
  3459. left:408px;
  3460. top:189px;
  3461. width:136px;
  3462. height:35px;
  3463. display:flex;
  3464. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3465. font-weight:400;
  3466. font-style:normal;
  3467. font-size:12px;
  3468. color:#606266;
  3469. }
  3470. #u13782 .text {
  3471. position:absolute;
  3472. align-self:center;
  3473. padding:2px 2px 2px 0px;
  3474. box-sizing:border-box;
  3475. width:100%;
  3476. }
  3477. #u13782_text {
  3478. border-width:0px;
  3479. word-wrap:break-word;
  3480. text-transform:none;
  3481. visibility:hidden;
  3482. }
  3483. #u13783_img {
  3484. border-width:0px;
  3485. position:absolute;
  3486. left:0px;
  3487. top:0px;
  3488. width:136px;
  3489. height:35px;
  3490. }
  3491. #u13783 {
  3492. border-width:0px;
  3493. position:absolute;
  3494. left:544px;
  3495. top:189px;
  3496. width:136px;
  3497. height:35px;
  3498. display:flex;
  3499. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3500. font-weight:400;
  3501. font-style:normal;
  3502. font-size:12px;
  3503. color:#606266;
  3504. }
  3505. #u13783 .text {
  3506. position:absolute;
  3507. align-self:center;
  3508. padding:2px 2px 2px 0px;
  3509. box-sizing:border-box;
  3510. width:100%;
  3511. }
  3512. #u13783_text {
  3513. border-width:0px;
  3514. word-wrap:break-word;
  3515. text-transform:none;
  3516. visibility:hidden;
  3517. }
  3518. #u13784_img {
  3519. border-width:0px;
  3520. position:absolute;
  3521. left:0px;
  3522. top:0px;
  3523. width:136px;
  3524. height:35px;
  3525. }
  3526. #u13784 {
  3527. border-width:0px;
  3528. position:absolute;
  3529. left:680px;
  3530. top:189px;
  3531. width:136px;
  3532. height:35px;
  3533. display:flex;
  3534. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3535. font-weight:400;
  3536. font-style:normal;
  3537. font-size:12px;
  3538. color:#606266;
  3539. }
  3540. #u13784 .text {
  3541. position:absolute;
  3542. align-self:center;
  3543. padding:2px 2px 2px 0px;
  3544. box-sizing:border-box;
  3545. width:100%;
  3546. }
  3547. #u13784_text {
  3548. border-width:0px;
  3549. word-wrap:break-word;
  3550. text-transform:none;
  3551. visibility:hidden;
  3552. }
  3553. #u13785_img {
  3554. border-width:0px;
  3555. position:absolute;
  3556. left:0px;
  3557. top:0px;
  3558. width:136px;
  3559. height:35px;
  3560. }
  3561. #u13785 {
  3562. border-width:0px;
  3563. position:absolute;
  3564. left:816px;
  3565. top:189px;
  3566. width:136px;
  3567. height:35px;
  3568. display:flex;
  3569. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3570. font-weight:400;
  3571. font-style:normal;
  3572. font-size:12px;
  3573. color:#606266;
  3574. }
  3575. #u13785 .text {
  3576. position:absolute;
  3577. align-self:center;
  3578. padding:2px 2px 2px 0px;
  3579. box-sizing:border-box;
  3580. width:100%;
  3581. }
  3582. #u13785_text {
  3583. border-width:0px;
  3584. word-wrap:break-word;
  3585. text-transform:none;
  3586. visibility:hidden;
  3587. }
  3588. #u13786_img {
  3589. border-width:0px;
  3590. position:absolute;
  3591. left:0px;
  3592. top:0px;
  3593. width:136px;
  3594. height:35px;
  3595. }
  3596. #u13786 {
  3597. border-width:0px;
  3598. position:absolute;
  3599. left:952px;
  3600. top:189px;
  3601. width:136px;
  3602. height:35px;
  3603. display:flex;
  3604. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3605. font-weight:400;
  3606. font-style:normal;
  3607. font-size:12px;
  3608. color:#606266;
  3609. }
  3610. #u13786 .text {
  3611. position:absolute;
  3612. align-self:center;
  3613. padding:2px 2px 2px 0px;
  3614. box-sizing:border-box;
  3615. width:100%;
  3616. }
  3617. #u13786_text {
  3618. border-width:0px;
  3619. word-wrap:break-word;
  3620. text-transform:none;
  3621. visibility:hidden;
  3622. }
  3623. #u13787_img {
  3624. border-width:0px;
  3625. position:absolute;
  3626. left:0px;
  3627. top:0px;
  3628. width:134px;
  3629. height:35px;
  3630. }
  3631. #u13787 {
  3632. border-width:0px;
  3633. position:absolute;
  3634. left:1088px;
  3635. top:189px;
  3636. width:134px;
  3637. height:35px;
  3638. display:flex;
  3639. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3640. font-weight:400;
  3641. font-style:normal;
  3642. font-size:12px;
  3643. color:#02A7F0;
  3644. }
  3645. #u13787 .text {
  3646. position:absolute;
  3647. align-self:center;
  3648. padding:2px 2px 2px 0px;
  3649. box-sizing:border-box;
  3650. width:100%;
  3651. }
  3652. #u13787_text {
  3653. border-width:0px;
  3654. word-wrap:break-word;
  3655. text-transform:none;
  3656. visibility:hidden;
  3657. }
  3658. #u13788_img {
  3659. border-width:0px;
  3660. position:absolute;
  3661. left:0px;
  3662. top:0px;
  3663. width:136px;
  3664. height:35px;
  3665. }
  3666. #u13788 {
  3667. border-width:0px;
  3668. position:absolute;
  3669. left:0px;
  3670. top:224px;
  3671. width:136px;
  3672. height:35px;
  3673. display:flex;
  3674. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3675. font-weight:400;
  3676. font-style:normal;
  3677. font-size:12px;
  3678. color:#606266;
  3679. }
  3680. #u13788 .text {
  3681. position:absolute;
  3682. align-self:center;
  3683. padding:2px 2px 2px 0px;
  3684. box-sizing:border-box;
  3685. width:100%;
  3686. }
  3687. #u13788_text {
  3688. border-width:0px;
  3689. word-wrap:break-word;
  3690. text-transform:none;
  3691. visibility:hidden;
  3692. }
  3693. #u13789_img {
  3694. border-width:0px;
  3695. position:absolute;
  3696. left:0px;
  3697. top:0px;
  3698. width:136px;
  3699. height:35px;
  3700. }
  3701. #u13789 {
  3702. border-width:0px;
  3703. position:absolute;
  3704. left:136px;
  3705. top:224px;
  3706. width:136px;
  3707. height:35px;
  3708. display:flex;
  3709. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3710. font-weight:400;
  3711. font-style:normal;
  3712. font-size:12px;
  3713. color:#606266;
  3714. }
  3715. #u13789 .text {
  3716. position:absolute;
  3717. align-self:center;
  3718. padding:2px 2px 2px 0px;
  3719. box-sizing:border-box;
  3720. width:100%;
  3721. }
  3722. #u13789_text {
  3723. border-width:0px;
  3724. word-wrap:break-word;
  3725. text-transform:none;
  3726. visibility:hidden;
  3727. }
  3728. #u13790_img {
  3729. border-width:0px;
  3730. position:absolute;
  3731. left:0px;
  3732. top:0px;
  3733. width:136px;
  3734. height:35px;
  3735. }
  3736. #u13790 {
  3737. border-width:0px;
  3738. position:absolute;
  3739. left:272px;
  3740. top:224px;
  3741. width:136px;
  3742. height:35px;
  3743. display:flex;
  3744. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3745. font-weight:400;
  3746. font-style:normal;
  3747. font-size:12px;
  3748. color:#606266;
  3749. }
  3750. #u13790 .text {
  3751. position:absolute;
  3752. align-self:center;
  3753. padding:2px 2px 2px 0px;
  3754. box-sizing:border-box;
  3755. width:100%;
  3756. }
  3757. #u13790_text {
  3758. border-width:0px;
  3759. word-wrap:break-word;
  3760. text-transform:none;
  3761. visibility:hidden;
  3762. }
  3763. #u13791_img {
  3764. border-width:0px;
  3765. position:absolute;
  3766. left:0px;
  3767. top:0px;
  3768. width:136px;
  3769. height:35px;
  3770. }
  3771. #u13791 {
  3772. border-width:0px;
  3773. position:absolute;
  3774. left:408px;
  3775. top:224px;
  3776. width:136px;
  3777. height:35px;
  3778. display:flex;
  3779. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3780. font-weight:400;
  3781. font-style:normal;
  3782. font-size:12px;
  3783. color:#606266;
  3784. }
  3785. #u13791 .text {
  3786. position:absolute;
  3787. align-self:center;
  3788. padding:2px 2px 2px 0px;
  3789. box-sizing:border-box;
  3790. width:100%;
  3791. }
  3792. #u13791_text {
  3793. border-width:0px;
  3794. word-wrap:break-word;
  3795. text-transform:none;
  3796. visibility:hidden;
  3797. }
  3798. #u13792_img {
  3799. border-width:0px;
  3800. position:absolute;
  3801. left:0px;
  3802. top:0px;
  3803. width:136px;
  3804. height:35px;
  3805. }
  3806. #u13792 {
  3807. border-width:0px;
  3808. position:absolute;
  3809. left:544px;
  3810. top:224px;
  3811. width:136px;
  3812. height:35px;
  3813. display:flex;
  3814. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3815. font-weight:400;
  3816. font-style:normal;
  3817. font-size:12px;
  3818. color:#606266;
  3819. }
  3820. #u13792 .text {
  3821. position:absolute;
  3822. align-self:center;
  3823. padding:2px 2px 2px 0px;
  3824. box-sizing:border-box;
  3825. width:100%;
  3826. }
  3827. #u13792_text {
  3828. border-width:0px;
  3829. word-wrap:break-word;
  3830. text-transform:none;
  3831. visibility:hidden;
  3832. }
  3833. #u13793_img {
  3834. border-width:0px;
  3835. position:absolute;
  3836. left:0px;
  3837. top:0px;
  3838. width:136px;
  3839. height:35px;
  3840. }
  3841. #u13793 {
  3842. border-width:0px;
  3843. position:absolute;
  3844. left:680px;
  3845. top:224px;
  3846. width:136px;
  3847. height:35px;
  3848. display:flex;
  3849. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3850. font-weight:400;
  3851. font-style:normal;
  3852. font-size:12px;
  3853. color:#606266;
  3854. }
  3855. #u13793 .text {
  3856. position:absolute;
  3857. align-self:center;
  3858. padding:2px 2px 2px 0px;
  3859. box-sizing:border-box;
  3860. width:100%;
  3861. }
  3862. #u13793_text {
  3863. border-width:0px;
  3864. word-wrap:break-word;
  3865. text-transform:none;
  3866. visibility:hidden;
  3867. }
  3868. #u13794_img {
  3869. border-width:0px;
  3870. position:absolute;
  3871. left:0px;
  3872. top:0px;
  3873. width:136px;
  3874. height:35px;
  3875. }
  3876. #u13794 {
  3877. border-width:0px;
  3878. position:absolute;
  3879. left:816px;
  3880. top:224px;
  3881. width:136px;
  3882. height:35px;
  3883. display:flex;
  3884. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3885. font-weight:400;
  3886. font-style:normal;
  3887. font-size:12px;
  3888. color:#606266;
  3889. }
  3890. #u13794 .text {
  3891. position:absolute;
  3892. align-self:center;
  3893. padding:2px 2px 2px 0px;
  3894. box-sizing:border-box;
  3895. width:100%;
  3896. }
  3897. #u13794_text {
  3898. border-width:0px;
  3899. word-wrap:break-word;
  3900. text-transform:none;
  3901. visibility:hidden;
  3902. }
  3903. #u13795_img {
  3904. border-width:0px;
  3905. position:absolute;
  3906. left:0px;
  3907. top:0px;
  3908. width:136px;
  3909. height:35px;
  3910. }
  3911. #u13795 {
  3912. border-width:0px;
  3913. position:absolute;
  3914. left:952px;
  3915. top:224px;
  3916. width:136px;
  3917. height:35px;
  3918. display:flex;
  3919. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3920. font-weight:400;
  3921. font-style:normal;
  3922. font-size:12px;
  3923. color:#606266;
  3924. }
  3925. #u13795 .text {
  3926. position:absolute;
  3927. align-self:center;
  3928. padding:2px 2px 2px 0px;
  3929. box-sizing:border-box;
  3930. width:100%;
  3931. }
  3932. #u13795_text {
  3933. border-width:0px;
  3934. word-wrap:break-word;
  3935. text-transform:none;
  3936. visibility:hidden;
  3937. }
  3938. #u13796_img {
  3939. border-width:0px;
  3940. position:absolute;
  3941. left:0px;
  3942. top:0px;
  3943. width:134px;
  3944. height:35px;
  3945. }
  3946. #u13796 {
  3947. border-width:0px;
  3948. position:absolute;
  3949. left:1088px;
  3950. top:224px;
  3951. width:134px;
  3952. height:35px;
  3953. display:flex;
  3954. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3955. font-weight:400;
  3956. font-style:normal;
  3957. font-size:12px;
  3958. color:#02A7F0;
  3959. }
  3960. #u13796 .text {
  3961. position:absolute;
  3962. align-self:center;
  3963. padding:2px 2px 2px 0px;
  3964. box-sizing:border-box;
  3965. width:100%;
  3966. }
  3967. #u13796_text {
  3968. border-width:0px;
  3969. word-wrap:break-word;
  3970. text-transform:none;
  3971. visibility:hidden;
  3972. }
  3973. #u13797_img {
  3974. border-width:0px;
  3975. position:absolute;
  3976. left:0px;
  3977. top:0px;
  3978. width:136px;
  3979. height:35px;
  3980. }
  3981. #u13797 {
  3982. border-width:0px;
  3983. position:absolute;
  3984. left:0px;
  3985. top:259px;
  3986. width:136px;
  3987. height:35px;
  3988. display:flex;
  3989. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3990. font-weight:400;
  3991. font-style:normal;
  3992. font-size:12px;
  3993. color:#606266;
  3994. }
  3995. #u13797 .text {
  3996. position:absolute;
  3997. align-self:center;
  3998. padding:2px 2px 2px 0px;
  3999. box-sizing:border-box;
  4000. width:100%;
  4001. }
  4002. #u13797_text {
  4003. border-width:0px;
  4004. word-wrap:break-word;
  4005. text-transform:none;
  4006. visibility:hidden;
  4007. }
  4008. #u13798_img {
  4009. border-width:0px;
  4010. position:absolute;
  4011. left:0px;
  4012. top:0px;
  4013. width:136px;
  4014. height:35px;
  4015. }
  4016. #u13798 {
  4017. border-width:0px;
  4018. position:absolute;
  4019. left:136px;
  4020. top:259px;
  4021. width:136px;
  4022. height:35px;
  4023. display:flex;
  4024. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4025. font-weight:400;
  4026. font-style:normal;
  4027. font-size:12px;
  4028. color:#606266;
  4029. }
  4030. #u13798 .text {
  4031. position:absolute;
  4032. align-self:center;
  4033. padding:2px 2px 2px 0px;
  4034. box-sizing:border-box;
  4035. width:100%;
  4036. }
  4037. #u13798_text {
  4038. border-width:0px;
  4039. word-wrap:break-word;
  4040. text-transform:none;
  4041. visibility:hidden;
  4042. }
  4043. #u13799_img {
  4044. border-width:0px;
  4045. position:absolute;
  4046. left:0px;
  4047. top:0px;
  4048. width:136px;
  4049. height:35px;
  4050. }
  4051. #u13799 {
  4052. border-width:0px;
  4053. position:absolute;
  4054. left:272px;
  4055. top:259px;
  4056. width:136px;
  4057. height:35px;
  4058. display:flex;
  4059. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4060. font-weight:400;
  4061. font-style:normal;
  4062. font-size:12px;
  4063. color:#606266;
  4064. }
  4065. #u13799 .text {
  4066. position:absolute;
  4067. align-self:center;
  4068. padding:2px 2px 2px 0px;
  4069. box-sizing:border-box;
  4070. width:100%;
  4071. }
  4072. #u13799_text {
  4073. border-width:0px;
  4074. word-wrap:break-word;
  4075. text-transform:none;
  4076. visibility:hidden;
  4077. }
  4078. #u13800_img {
  4079. border-width:0px;
  4080. position:absolute;
  4081. left:0px;
  4082. top:0px;
  4083. width:136px;
  4084. height:35px;
  4085. }
  4086. #u13800 {
  4087. border-width:0px;
  4088. position:absolute;
  4089. left:408px;
  4090. top:259px;
  4091. width:136px;
  4092. height:35px;
  4093. display:flex;
  4094. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4095. font-weight:400;
  4096. font-style:normal;
  4097. font-size:12px;
  4098. color:#606266;
  4099. }
  4100. #u13800 .text {
  4101. position:absolute;
  4102. align-self:center;
  4103. padding:2px 2px 2px 0px;
  4104. box-sizing:border-box;
  4105. width:100%;
  4106. }
  4107. #u13800_text {
  4108. border-width:0px;
  4109. word-wrap:break-word;
  4110. text-transform:none;
  4111. visibility:hidden;
  4112. }
  4113. #u13801_img {
  4114. border-width:0px;
  4115. position:absolute;
  4116. left:0px;
  4117. top:0px;
  4118. width:136px;
  4119. height:35px;
  4120. }
  4121. #u13801 {
  4122. border-width:0px;
  4123. position:absolute;
  4124. left:544px;
  4125. top:259px;
  4126. width:136px;
  4127. height:35px;
  4128. display:flex;
  4129. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4130. font-weight:400;
  4131. font-style:normal;
  4132. font-size:12px;
  4133. color:#606266;
  4134. }
  4135. #u13801 .text {
  4136. position:absolute;
  4137. align-self:center;
  4138. padding:2px 2px 2px 0px;
  4139. box-sizing:border-box;
  4140. width:100%;
  4141. }
  4142. #u13801_text {
  4143. border-width:0px;
  4144. word-wrap:break-word;
  4145. text-transform:none;
  4146. visibility:hidden;
  4147. }
  4148. #u13802_img {
  4149. border-width:0px;
  4150. position:absolute;
  4151. left:0px;
  4152. top:0px;
  4153. width:136px;
  4154. height:35px;
  4155. }
  4156. #u13802 {
  4157. border-width:0px;
  4158. position:absolute;
  4159. left:680px;
  4160. top:259px;
  4161. width:136px;
  4162. height:35px;
  4163. display:flex;
  4164. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4165. font-weight:400;
  4166. font-style:normal;
  4167. font-size:12px;
  4168. color:#606266;
  4169. }
  4170. #u13802 .text {
  4171. position:absolute;
  4172. align-self:center;
  4173. padding:2px 2px 2px 0px;
  4174. box-sizing:border-box;
  4175. width:100%;
  4176. }
  4177. #u13802_text {
  4178. border-width:0px;
  4179. word-wrap:break-word;
  4180. text-transform:none;
  4181. visibility:hidden;
  4182. }
  4183. #u13803_img {
  4184. border-width:0px;
  4185. position:absolute;
  4186. left:0px;
  4187. top:0px;
  4188. width:136px;
  4189. height:35px;
  4190. }
  4191. #u13803 {
  4192. border-width:0px;
  4193. position:absolute;
  4194. left:816px;
  4195. top:259px;
  4196. width:136px;
  4197. height:35px;
  4198. display:flex;
  4199. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4200. font-weight:400;
  4201. font-style:normal;
  4202. font-size:12px;
  4203. color:#606266;
  4204. }
  4205. #u13803 .text {
  4206. position:absolute;
  4207. align-self:center;
  4208. padding:2px 2px 2px 0px;
  4209. box-sizing:border-box;
  4210. width:100%;
  4211. }
  4212. #u13803_text {
  4213. border-width:0px;
  4214. word-wrap:break-word;
  4215. text-transform:none;
  4216. visibility:hidden;
  4217. }
  4218. #u13804_img {
  4219. border-width:0px;
  4220. position:absolute;
  4221. left:0px;
  4222. top:0px;
  4223. width:136px;
  4224. height:35px;
  4225. }
  4226. #u13804 {
  4227. border-width:0px;
  4228. position:absolute;
  4229. left:952px;
  4230. top:259px;
  4231. width:136px;
  4232. height:35px;
  4233. display:flex;
  4234. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4235. font-weight:400;
  4236. font-style:normal;
  4237. font-size:12px;
  4238. color:#606266;
  4239. }
  4240. #u13804 .text {
  4241. position:absolute;
  4242. align-self:center;
  4243. padding:2px 2px 2px 0px;
  4244. box-sizing:border-box;
  4245. width:100%;
  4246. }
  4247. #u13804_text {
  4248. border-width:0px;
  4249. word-wrap:break-word;
  4250. text-transform:none;
  4251. visibility:hidden;
  4252. }
  4253. #u13805_img {
  4254. border-width:0px;
  4255. position:absolute;
  4256. left:0px;
  4257. top:0px;
  4258. width:134px;
  4259. height:35px;
  4260. }
  4261. #u13805 {
  4262. border-width:0px;
  4263. position:absolute;
  4264. left:1088px;
  4265. top:259px;
  4266. width:134px;
  4267. height:35px;
  4268. display:flex;
  4269. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4270. font-weight:400;
  4271. font-style:normal;
  4272. font-size:12px;
  4273. color:#02A7F0;
  4274. }
  4275. #u13805 .text {
  4276. position:absolute;
  4277. align-self:center;
  4278. padding:2px 2px 2px 0px;
  4279. box-sizing:border-box;
  4280. width:100%;
  4281. }
  4282. #u13805_text {
  4283. border-width:0px;
  4284. word-wrap:break-word;
  4285. text-transform:none;
  4286. visibility:hidden;
  4287. }
  4288. #u13806_img {
  4289. border-width:0px;
  4290. position:absolute;
  4291. left:0px;
  4292. top:0px;
  4293. width:136px;
  4294. height:35px;
  4295. }
  4296. #u13806 {
  4297. border-width:0px;
  4298. position:absolute;
  4299. left:0px;
  4300. top:294px;
  4301. width:136px;
  4302. height:35px;
  4303. display:flex;
  4304. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4305. font-weight:400;
  4306. font-style:normal;
  4307. font-size:12px;
  4308. color:#606266;
  4309. }
  4310. #u13806 .text {
  4311. position:absolute;
  4312. align-self:center;
  4313. padding:2px 2px 2px 0px;
  4314. box-sizing:border-box;
  4315. width:100%;
  4316. }
  4317. #u13806_text {
  4318. border-width:0px;
  4319. word-wrap:break-word;
  4320. text-transform:none;
  4321. visibility:hidden;
  4322. }
  4323. #u13807_img {
  4324. border-width:0px;
  4325. position:absolute;
  4326. left:0px;
  4327. top:0px;
  4328. width:136px;
  4329. height:35px;
  4330. }
  4331. #u13807 {
  4332. border-width:0px;
  4333. position:absolute;
  4334. left:136px;
  4335. top:294px;
  4336. width:136px;
  4337. height:35px;
  4338. display:flex;
  4339. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4340. font-weight:400;
  4341. font-style:normal;
  4342. font-size:12px;
  4343. color:#606266;
  4344. }
  4345. #u13807 .text {
  4346. position:absolute;
  4347. align-self:center;
  4348. padding:2px 2px 2px 0px;
  4349. box-sizing:border-box;
  4350. width:100%;
  4351. }
  4352. #u13807_text {
  4353. border-width:0px;
  4354. word-wrap:break-word;
  4355. text-transform:none;
  4356. visibility:hidden;
  4357. }
  4358. #u13808_img {
  4359. border-width:0px;
  4360. position:absolute;
  4361. left:0px;
  4362. top:0px;
  4363. width:136px;
  4364. height:35px;
  4365. }
  4366. #u13808 {
  4367. border-width:0px;
  4368. position:absolute;
  4369. left:272px;
  4370. top:294px;
  4371. width:136px;
  4372. height:35px;
  4373. display:flex;
  4374. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4375. font-weight:400;
  4376. font-style:normal;
  4377. font-size:12px;
  4378. color:#606266;
  4379. }
  4380. #u13808 .text {
  4381. position:absolute;
  4382. align-self:center;
  4383. padding:2px 2px 2px 0px;
  4384. box-sizing:border-box;
  4385. width:100%;
  4386. }
  4387. #u13808_text {
  4388. border-width:0px;
  4389. word-wrap:break-word;
  4390. text-transform:none;
  4391. visibility:hidden;
  4392. }
  4393. #u13809_img {
  4394. border-width:0px;
  4395. position:absolute;
  4396. left:0px;
  4397. top:0px;
  4398. width:136px;
  4399. height:35px;
  4400. }
  4401. #u13809 {
  4402. border-width:0px;
  4403. position:absolute;
  4404. left:408px;
  4405. top:294px;
  4406. width:136px;
  4407. height:35px;
  4408. display:flex;
  4409. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4410. font-weight:400;
  4411. font-style:normal;
  4412. font-size:12px;
  4413. color:#606266;
  4414. }
  4415. #u13809 .text {
  4416. position:absolute;
  4417. align-self:center;
  4418. padding:2px 2px 2px 0px;
  4419. box-sizing:border-box;
  4420. width:100%;
  4421. }
  4422. #u13809_text {
  4423. border-width:0px;
  4424. word-wrap:break-word;
  4425. text-transform:none;
  4426. visibility:hidden;
  4427. }
  4428. #u13810_img {
  4429. border-width:0px;
  4430. position:absolute;
  4431. left:0px;
  4432. top:0px;
  4433. width:136px;
  4434. height:35px;
  4435. }
  4436. #u13810 {
  4437. border-width:0px;
  4438. position:absolute;
  4439. left:544px;
  4440. top:294px;
  4441. width:136px;
  4442. height:35px;
  4443. display:flex;
  4444. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4445. font-weight:400;
  4446. font-style:normal;
  4447. font-size:12px;
  4448. color:#606266;
  4449. }
  4450. #u13810 .text {
  4451. position:absolute;
  4452. align-self:center;
  4453. padding:2px 2px 2px 0px;
  4454. box-sizing:border-box;
  4455. width:100%;
  4456. }
  4457. #u13810_text {
  4458. border-width:0px;
  4459. word-wrap:break-word;
  4460. text-transform:none;
  4461. visibility:hidden;
  4462. }
  4463. #u13811_img {
  4464. border-width:0px;
  4465. position:absolute;
  4466. left:0px;
  4467. top:0px;
  4468. width:136px;
  4469. height:35px;
  4470. }
  4471. #u13811 {
  4472. border-width:0px;
  4473. position:absolute;
  4474. left:680px;
  4475. top:294px;
  4476. width:136px;
  4477. height:35px;
  4478. display:flex;
  4479. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4480. font-weight:400;
  4481. font-style:normal;
  4482. font-size:12px;
  4483. color:#606266;
  4484. }
  4485. #u13811 .text {
  4486. position:absolute;
  4487. align-self:center;
  4488. padding:2px 2px 2px 0px;
  4489. box-sizing:border-box;
  4490. width:100%;
  4491. }
  4492. #u13811_text {
  4493. border-width:0px;
  4494. word-wrap:break-word;
  4495. text-transform:none;
  4496. visibility:hidden;
  4497. }
  4498. #u13812_img {
  4499. border-width:0px;
  4500. position:absolute;
  4501. left:0px;
  4502. top:0px;
  4503. width:136px;
  4504. height:35px;
  4505. }
  4506. #u13812 {
  4507. border-width:0px;
  4508. position:absolute;
  4509. left:816px;
  4510. top:294px;
  4511. width:136px;
  4512. height:35px;
  4513. display:flex;
  4514. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4515. font-weight:400;
  4516. font-style:normal;
  4517. font-size:12px;
  4518. color:#606266;
  4519. }
  4520. #u13812 .text {
  4521. position:absolute;
  4522. align-self:center;
  4523. padding:2px 2px 2px 0px;
  4524. box-sizing:border-box;
  4525. width:100%;
  4526. }
  4527. #u13812_text {
  4528. border-width:0px;
  4529. word-wrap:break-word;
  4530. text-transform:none;
  4531. visibility:hidden;
  4532. }
  4533. #u13813_img {
  4534. border-width:0px;
  4535. position:absolute;
  4536. left:0px;
  4537. top:0px;
  4538. width:136px;
  4539. height:35px;
  4540. }
  4541. #u13813 {
  4542. border-width:0px;
  4543. position:absolute;
  4544. left:952px;
  4545. top:294px;
  4546. width:136px;
  4547. height:35px;
  4548. display:flex;
  4549. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4550. font-weight:400;
  4551. font-style:normal;
  4552. font-size:12px;
  4553. color:#606266;
  4554. }
  4555. #u13813 .text {
  4556. position:absolute;
  4557. align-self:center;
  4558. padding:2px 2px 2px 0px;
  4559. box-sizing:border-box;
  4560. width:100%;
  4561. }
  4562. #u13813_text {
  4563. border-width:0px;
  4564. word-wrap:break-word;
  4565. text-transform:none;
  4566. visibility:hidden;
  4567. }
  4568. #u13814_img {
  4569. border-width:0px;
  4570. position:absolute;
  4571. left:0px;
  4572. top:0px;
  4573. width:134px;
  4574. height:35px;
  4575. }
  4576. #u13814 {
  4577. border-width:0px;
  4578. position:absolute;
  4579. left:1088px;
  4580. top:294px;
  4581. width:134px;
  4582. height:35px;
  4583. display:flex;
  4584. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4585. font-weight:400;
  4586. font-style:normal;
  4587. font-size:12px;
  4588. color:#02A7F0;
  4589. }
  4590. #u13814 .text {
  4591. position:absolute;
  4592. align-self:center;
  4593. padding:2px 2px 2px 0px;
  4594. box-sizing:border-box;
  4595. width:100%;
  4596. }
  4597. #u13814_text {
  4598. border-width:0px;
  4599. word-wrap:break-word;
  4600. text-transform:none;
  4601. visibility:hidden;
  4602. }
  4603. #u13815_img {
  4604. border-width:0px;
  4605. position:absolute;
  4606. left:0px;
  4607. top:0px;
  4608. width:136px;
  4609. height:35px;
  4610. }
  4611. #u13815 {
  4612. border-width:0px;
  4613. position:absolute;
  4614. left:0px;
  4615. top:329px;
  4616. width:136px;
  4617. height:35px;
  4618. display:flex;
  4619. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4620. font-weight:400;
  4621. font-style:normal;
  4622. font-size:12px;
  4623. color:#606266;
  4624. }
  4625. #u13815 .text {
  4626. position:absolute;
  4627. align-self:center;
  4628. padding:2px 2px 2px 0px;
  4629. box-sizing:border-box;
  4630. width:100%;
  4631. }
  4632. #u13815_text {
  4633. border-width:0px;
  4634. word-wrap:break-word;
  4635. text-transform:none;
  4636. visibility:hidden;
  4637. }
  4638. #u13816_img {
  4639. border-width:0px;
  4640. position:absolute;
  4641. left:0px;
  4642. top:0px;
  4643. width:136px;
  4644. height:35px;
  4645. }
  4646. #u13816 {
  4647. border-width:0px;
  4648. position:absolute;
  4649. left:136px;
  4650. top:329px;
  4651. width:136px;
  4652. height:35px;
  4653. display:flex;
  4654. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4655. font-weight:400;
  4656. font-style:normal;
  4657. font-size:12px;
  4658. color:#606266;
  4659. }
  4660. #u13816 .text {
  4661. position:absolute;
  4662. align-self:center;
  4663. padding:2px 2px 2px 0px;
  4664. box-sizing:border-box;
  4665. width:100%;
  4666. }
  4667. #u13816_text {
  4668. border-width:0px;
  4669. word-wrap:break-word;
  4670. text-transform:none;
  4671. visibility:hidden;
  4672. }
  4673. #u13817_img {
  4674. border-width:0px;
  4675. position:absolute;
  4676. left:0px;
  4677. top:0px;
  4678. width:136px;
  4679. height:35px;
  4680. }
  4681. #u13817 {
  4682. border-width:0px;
  4683. position:absolute;
  4684. left:272px;
  4685. top:329px;
  4686. width:136px;
  4687. height:35px;
  4688. display:flex;
  4689. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4690. font-weight:400;
  4691. font-style:normal;
  4692. font-size:12px;
  4693. color:#606266;
  4694. }
  4695. #u13817 .text {
  4696. position:absolute;
  4697. align-self:center;
  4698. padding:2px 2px 2px 0px;
  4699. box-sizing:border-box;
  4700. width:100%;
  4701. }
  4702. #u13817_text {
  4703. border-width:0px;
  4704. word-wrap:break-word;
  4705. text-transform:none;
  4706. visibility:hidden;
  4707. }
  4708. #u13818_img {
  4709. border-width:0px;
  4710. position:absolute;
  4711. left:0px;
  4712. top:0px;
  4713. width:136px;
  4714. height:35px;
  4715. }
  4716. #u13818 {
  4717. border-width:0px;
  4718. position:absolute;
  4719. left:408px;
  4720. top:329px;
  4721. width:136px;
  4722. height:35px;
  4723. display:flex;
  4724. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4725. font-weight:400;
  4726. font-style:normal;
  4727. font-size:12px;
  4728. color:#606266;
  4729. }
  4730. #u13818 .text {
  4731. position:absolute;
  4732. align-self:center;
  4733. padding:2px 2px 2px 0px;
  4734. box-sizing:border-box;
  4735. width:100%;
  4736. }
  4737. #u13818_text {
  4738. border-width:0px;
  4739. word-wrap:break-word;
  4740. text-transform:none;
  4741. visibility:hidden;
  4742. }
  4743. #u13819_img {
  4744. border-width:0px;
  4745. position:absolute;
  4746. left:0px;
  4747. top:0px;
  4748. width:136px;
  4749. height:35px;
  4750. }
  4751. #u13819 {
  4752. border-width:0px;
  4753. position:absolute;
  4754. left:544px;
  4755. top:329px;
  4756. width:136px;
  4757. height:35px;
  4758. display:flex;
  4759. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4760. font-weight:400;
  4761. font-style:normal;
  4762. font-size:12px;
  4763. color:#606266;
  4764. }
  4765. #u13819 .text {
  4766. position:absolute;
  4767. align-self:center;
  4768. padding:2px 2px 2px 0px;
  4769. box-sizing:border-box;
  4770. width:100%;
  4771. }
  4772. #u13819_text {
  4773. border-width:0px;
  4774. word-wrap:break-word;
  4775. text-transform:none;
  4776. visibility:hidden;
  4777. }
  4778. #u13820_img {
  4779. border-width:0px;
  4780. position:absolute;
  4781. left:0px;
  4782. top:0px;
  4783. width:136px;
  4784. height:35px;
  4785. }
  4786. #u13820 {
  4787. border-width:0px;
  4788. position:absolute;
  4789. left:680px;
  4790. top:329px;
  4791. width:136px;
  4792. height:35px;
  4793. display:flex;
  4794. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4795. font-weight:400;
  4796. font-style:normal;
  4797. font-size:12px;
  4798. color:#606266;
  4799. }
  4800. #u13820 .text {
  4801. position:absolute;
  4802. align-self:center;
  4803. padding:2px 2px 2px 0px;
  4804. box-sizing:border-box;
  4805. width:100%;
  4806. }
  4807. #u13820_text {
  4808. border-width:0px;
  4809. word-wrap:break-word;
  4810. text-transform:none;
  4811. visibility:hidden;
  4812. }
  4813. #u13821_img {
  4814. border-width:0px;
  4815. position:absolute;
  4816. left:0px;
  4817. top:0px;
  4818. width:136px;
  4819. height:35px;
  4820. }
  4821. #u13821 {
  4822. border-width:0px;
  4823. position:absolute;
  4824. left:816px;
  4825. top:329px;
  4826. width:136px;
  4827. height:35px;
  4828. display:flex;
  4829. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4830. font-weight:400;
  4831. font-style:normal;
  4832. font-size:12px;
  4833. color:#606266;
  4834. }
  4835. #u13821 .text {
  4836. position:absolute;
  4837. align-self:center;
  4838. padding:2px 2px 2px 0px;
  4839. box-sizing:border-box;
  4840. width:100%;
  4841. }
  4842. #u13821_text {
  4843. border-width:0px;
  4844. word-wrap:break-word;
  4845. text-transform:none;
  4846. visibility:hidden;
  4847. }
  4848. #u13822_img {
  4849. border-width:0px;
  4850. position:absolute;
  4851. left:0px;
  4852. top:0px;
  4853. width:136px;
  4854. height:35px;
  4855. }
  4856. #u13822 {
  4857. border-width:0px;
  4858. position:absolute;
  4859. left:952px;
  4860. top:329px;
  4861. width:136px;
  4862. height:35px;
  4863. display:flex;
  4864. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4865. font-weight:400;
  4866. font-style:normal;
  4867. font-size:12px;
  4868. color:#606266;
  4869. }
  4870. #u13822 .text {
  4871. position:absolute;
  4872. align-self:center;
  4873. padding:2px 2px 2px 0px;
  4874. box-sizing:border-box;
  4875. width:100%;
  4876. }
  4877. #u13822_text {
  4878. border-width:0px;
  4879. word-wrap:break-word;
  4880. text-transform:none;
  4881. visibility:hidden;
  4882. }
  4883. #u13823_img {
  4884. border-width:0px;
  4885. position:absolute;
  4886. left:0px;
  4887. top:0px;
  4888. width:134px;
  4889. height:35px;
  4890. }
  4891. #u13823 {
  4892. border-width:0px;
  4893. position:absolute;
  4894. left:1088px;
  4895. top:329px;
  4896. width:134px;
  4897. height:35px;
  4898. display:flex;
  4899. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4900. font-weight:400;
  4901. font-style:normal;
  4902. font-size:12px;
  4903. color:#02A7F0;
  4904. }
  4905. #u13823 .text {
  4906. position:absolute;
  4907. align-self:center;
  4908. padding:2px 2px 2px 0px;
  4909. box-sizing:border-box;
  4910. width:100%;
  4911. }
  4912. #u13823_text {
  4913. border-width:0px;
  4914. word-wrap:break-word;
  4915. text-transform:none;
  4916. visibility:hidden;
  4917. }
  4918. #u13824_div {
  4919. border-width:0px;
  4920. position:absolute;
  4921. left:0px;
  4922. top:0px;
  4923. width:59px;
  4924. height:30px;
  4925. background:inherit;
  4926. background-color:rgba(41, 143, 255, 1);
  4927. border:none;
  4928. border-radius:4px;
  4929. -moz-box-shadow:none;
  4930. -webkit-box-shadow:none;
  4931. box-shadow:none;
  4932. font-family:'Microsoft YaHei', sans-serif;
  4933. font-weight:400;
  4934. font-style:normal;
  4935. font-size:14px;
  4936. color:#FFFFFF;
  4937. }
  4938. #u13824 {
  4939. border-width:0px;
  4940. position:absolute;
  4941. left:651px;
  4942. top:110px;
  4943. width:59px;
  4944. height:30px;
  4945. display:flex;
  4946. font-family:'Microsoft YaHei', sans-serif;
  4947. font-weight:400;
  4948. font-style:normal;
  4949. font-size:14px;
  4950. color:#FFFFFF;
  4951. }
  4952. #u13824 .text {
  4953. position:absolute;
  4954. align-self:center;
  4955. padding:5px 15px 5px 15px;
  4956. box-sizing:border-box;
  4957. width:100%;
  4958. }
  4959. #u13824_text {
  4960. border-width:0px;
  4961. white-space:nowrap;
  4962. text-transform:none;
  4963. }
  4964. #u13825_div {
  4965. border-width:0px;
  4966. position:absolute;
  4967. left:0px;
  4968. top:0px;
  4969. width:55px;
  4970. height:30px;
  4971. background:inherit;
  4972. background-color:rgba(255, 255, 255, 1);
  4973. box-sizing:border-box;
  4974. border-width:1px;
  4975. border-style:solid;
  4976. border-color:rgba(170, 170, 170, 1);
  4977. border-radius:4px;
  4978. -moz-box-shadow:none;
  4979. -webkit-box-shadow:none;
  4980. box-shadow:none;
  4981. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4982. font-weight:400;
  4983. font-style:normal;
  4984. font-size:12px;
  4985. color:#555555;
  4986. }
  4987. #u13825 {
  4988. border-width:0px;
  4989. position:absolute;
  4990. left:720px;
  4991. top:110px;
  4992. width:55px;
  4993. height:30px;
  4994. display:flex;
  4995. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4996. font-weight:400;
  4997. font-style:normal;
  4998. font-size:12px;
  4999. color:#555555;
  5000. }
  5001. #u13825 .text {
  5002. position:absolute;
  5003. align-self:center;
  5004. padding:5px 15px 5px 15px;
  5005. box-sizing:border-box;
  5006. width:100%;
  5007. }
  5008. #u13825_text {
  5009. border-width:0px;
  5010. white-space:nowrap;
  5011. text-transform:none;
  5012. }
  5013. #u13826 {
  5014. border-width:0px;
  5015. position:absolute;
  5016. left:0px;
  5017. top:0px;
  5018. width:0px;
  5019. height:0px;
  5020. }
  5021. #u13827_div {
  5022. border-width:0px;
  5023. position:absolute;
  5024. left:0px;
  5025. top:0px;
  5026. width:140px;
  5027. height:30px;
  5028. background:inherit;
  5029. background-color:rgba(255, 255, 255, 1);
  5030. box-sizing:border-box;
  5031. border-width:1px;
  5032. border-style:solid;
  5033. border-color:rgba(201, 201, 201, 1);
  5034. border-radius:4px;
  5035. -moz-box-shadow:none;
  5036. -webkit-box-shadow:none;
  5037. box-shadow:none;
  5038. font-family:'Microsoft YaHei', sans-serif;
  5039. font-weight:400;
  5040. font-style:normal;
  5041. font-size:14px;
  5042. color:#CCCCCC;
  5043. text-align:left;
  5044. }
  5045. #u13827 {
  5046. border-width:0px;
  5047. position:absolute;
  5048. left:501px;
  5049. top:110px;
  5050. width:140px;
  5051. height:30px;
  5052. display:flex;
  5053. font-family:'Microsoft YaHei', sans-serif;
  5054. font-weight:400;
  5055. font-style:normal;
  5056. font-size:14px;
  5057. color:#CCCCCC;
  5058. text-align:left;
  5059. }
  5060. #u13827 .text {
  5061. position:absolute;
  5062. align-self:center;
  5063. padding:2px 8px 2px 8px;
  5064. box-sizing:border-box;
  5065. width:100%;
  5066. }
  5067. #u13827_text {
  5068. border-width:0px;
  5069. word-wrap:break-word;
  5070. text-transform:none;
  5071. visibility:hidden;
  5072. }
  5073. #u13828_input {
  5074. position:absolute;
  5075. left:0px;
  5076. top:0px;
  5077. width:127px;
  5078. height:25px;
  5079. padding:2px 2px 2px 2px;
  5080. font-family:'Microsoft YaHei', sans-serif;
  5081. font-weight:400;
  5082. font-style:normal;
  5083. font-size:10px;
  5084. letter-spacing:normal;
  5085. color:#000000;
  5086. vertical-align:none;
  5087. text-align:left;
  5088. text-transform:none;
  5089. background-color:transparent;
  5090. border-color:transparent;
  5091. }
  5092. #u13828_input.disabled {
  5093. position:absolute;
  5094. left:0px;
  5095. top:0px;
  5096. width:127px;
  5097. height:25px;
  5098. padding:2px 2px 2px 2px;
  5099. font-family:'Microsoft YaHei', sans-serif;
  5100. font-weight:400;
  5101. font-style:normal;
  5102. font-size:10px;
  5103. letter-spacing:normal;
  5104. color:#000000;
  5105. vertical-align:none;
  5106. text-align:left;
  5107. text-transform:none;
  5108. background-color:transparent;
  5109. border-color:transparent;
  5110. }
  5111. #u13828_div {
  5112. border-width:0px;
  5113. position:absolute;
  5114. left:0px;
  5115. top:0px;
  5116. width:127px;
  5117. height:25px;
  5118. background:inherit;
  5119. background-color:rgba(255, 255, 255, 1);
  5120. border:none;
  5121. border-radius:0px;
  5122. -moz-box-shadow:none;
  5123. -webkit-box-shadow:none;
  5124. box-shadow:none;
  5125. font-family:'Microsoft YaHei', sans-serif;
  5126. font-weight:400;
  5127. font-style:normal;
  5128. font-size:10px;
  5129. }
  5130. #u13828 {
  5131. border-width:0px;
  5132. position:absolute;
  5133. left:509px;
  5134. top:111px;
  5135. width:127px;
  5136. height:25px;
  5137. display:flex;
  5138. font-family:'Microsoft YaHei', sans-serif;
  5139. font-weight:400;
  5140. font-style:normal;
  5141. font-size:10px;
  5142. }
  5143. #u13828 .text {
  5144. position:absolute;
  5145. align-self:center;
  5146. padding:2px 2px 2px 2px;
  5147. box-sizing:border-box;
  5148. width:100%;
  5149. }
  5150. #u13828_div.disabled {
  5151. border-width:0px;
  5152. position:absolute;
  5153. left:0px;
  5154. top:0px;
  5155. width:127px;
  5156. height:25px;
  5157. background:inherit;
  5158. background-color:rgba(240, 240, 240, 1);
  5159. border:none;
  5160. border-radius:0px;
  5161. -moz-box-shadow:none;
  5162. -webkit-box-shadow:none;
  5163. box-shadow:none;
  5164. font-family:'Microsoft YaHei', sans-serif;
  5165. font-weight:400;
  5166. font-style:normal;
  5167. font-size:10px;
  5168. }
  5169. #u13828.disabled {
  5170. }
  5171. #u13829 {
  5172. border-width:0px;
  5173. position:absolute;
  5174. left:0px;
  5175. top:0px;
  5176. width:0px;
  5177. height:0px;
  5178. }
  5179. #u13830_div {
  5180. border-width:0px;
  5181. position:absolute;
  5182. left:0px;
  5183. top:0px;
  5184. width:140px;
  5185. height:30px;
  5186. background:inherit;
  5187. background-color:rgba(255, 255, 255, 1);
  5188. box-sizing:border-box;
  5189. border-width:1px;
  5190. border-style:solid;
  5191. border-color:rgba(215, 215, 215, 1);
  5192. border-radius:4px;
  5193. -moz-box-shadow:none;
  5194. -webkit-box-shadow:none;
  5195. box-shadow:none;
  5196. font-size:11px;
  5197. }
  5198. #u13830 {
  5199. border-width:0px;
  5200. position:absolute;
  5201. left:351px;
  5202. top:110px;
  5203. width:140px;
  5204. height:30px;
  5205. display:flex;
  5206. font-size:11px;
  5207. }
  5208. #u13830 .text {
  5209. position:absolute;
  5210. align-self:center;
  5211. padding:2px 2px 2px 2px;
  5212. box-sizing:border-box;
  5213. width:100%;
  5214. }
  5215. #u13830_text {
  5216. border-width:0px;
  5217. word-wrap:break-word;
  5218. text-transform:none;
  5219. visibility:hidden;
  5220. }
  5221. #u13831_input {
  5222. position:absolute;
  5223. left:0px;
  5224. top:0px;
  5225. width:120px;
  5226. height:23px;
  5227. padding:2px 2px 2px 2px;
  5228. font-family:'ArialMT', 'Arial', sans-serif;
  5229. font-weight:400;
  5230. font-style:normal;
  5231. font-size:11px;
  5232. letter-spacing:normal;
  5233. color:#AAAAAA;
  5234. vertical-align:none;
  5235. text-align:left;
  5236. text-transform:none;
  5237. background-color:transparent;
  5238. border-color:transparent;
  5239. }
  5240. #u13831_input.disabled {
  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. #u13831_div {
  5260. border-width:0px;
  5261. position:absolute;
  5262. left:0px;
  5263. top:0px;
  5264. width:120px;
  5265. height:23px;
  5266. background:inherit;
  5267. background-color:rgba(255, 255, 255, 1);
  5268. border:none;
  5269. border-radius:0px;
  5270. -moz-box-shadow:none;
  5271. -webkit-box-shadow:none;
  5272. box-shadow:none;
  5273. font-size:11px;
  5274. color:#AAAAAA;
  5275. }
  5276. #u13831 {
  5277. border-width:0px;
  5278. position:absolute;
  5279. left:358px;
  5280. top:112px;
  5281. width:120px;
  5282. height:23px;
  5283. display:flex;
  5284. font-size:11px;
  5285. color:#AAAAAA;
  5286. }
  5287. #u13831 .text {
  5288. position:absolute;
  5289. align-self:flex-start;
  5290. padding:2px 2px 2px 2px;
  5291. box-sizing:border-box;
  5292. width:100%;
  5293. }
  5294. #u13831_div.disabled {
  5295. border-width:0px;
  5296. position:absolute;
  5297. left:0px;
  5298. top:0px;
  5299. width:120px;
  5300. height:23px;
  5301. background:inherit;
  5302. background-color:rgba(240, 240, 240, 1);
  5303. border:none;
  5304. border-radius:0px;
  5305. -moz-box-shadow:none;
  5306. -webkit-box-shadow:none;
  5307. box-shadow:none;
  5308. font-size:11px;
  5309. color:#AAAAAA;
  5310. }
  5311. #u13831.disabled {
  5312. }
  5313. .u13831_input_option {
  5314. font-size:11px;
  5315. }
  5316. #u13832 {
  5317. border-width:0px;
  5318. position:absolute;
  5319. left:0px;
  5320. top:0px;
  5321. width:0px;
  5322. height:0px;
  5323. }
  5324. #u13833_div {
  5325. border-width:0px;
  5326. position:absolute;
  5327. left:0px;
  5328. top:0px;
  5329. width:200px;
  5330. height:1192px;
  5331. background:inherit;
  5332. background-color:rgba(255, 255, 255, 1);
  5333. border:none;
  5334. border-radius:0px;
  5335. -moz-box-shadow:none;
  5336. -webkit-box-shadow:none;
  5337. box-shadow:none;
  5338. }
  5339. #u13833 {
  5340. border-width:0px;
  5341. position:absolute;
  5342. left:120px;
  5343. top:50px;
  5344. width:200px;
  5345. height:1192px;
  5346. display:flex;
  5347. }
  5348. #u13833 .text {
  5349. position:absolute;
  5350. align-self:center;
  5351. padding:2px 2px 2px 2px;
  5352. box-sizing:border-box;
  5353. width:100%;
  5354. }
  5355. #u13833_text {
  5356. border-width:0px;
  5357. word-wrap:break-word;
  5358. text-transform:none;
  5359. visibility:hidden;
  5360. }
  5361. #u13834_div {
  5362. border-width:0px;
  5363. position:absolute;
  5364. left:0px;
  5365. top:0px;
  5366. width:200px;
  5367. height:60px;
  5368. background:inherit;
  5369. background-color:rgba(224, 231, 247, 1);
  5370. border:none;
  5371. border-radius:0px;
  5372. -moz-box-shadow:none;
  5373. -webkit-box-shadow:none;
  5374. box-shadow:none;
  5375. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  5376. font-weight:500;
  5377. font-style:normal;
  5378. font-size:18px;
  5379. }
  5380. #u13834 {
  5381. border-width:0px;
  5382. position:absolute;
  5383. left:120px;
  5384. top:50px;
  5385. width:200px;
  5386. height:60px;
  5387. display:flex;
  5388. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  5389. font-weight:500;
  5390. font-style:normal;
  5391. font-size:18px;
  5392. }
  5393. #u13834 .text {
  5394. position:absolute;
  5395. align-self:center;
  5396. padding:0px 0px 0px 20px;
  5397. box-sizing:border-box;
  5398. width:100%;
  5399. }
  5400. #u13834_text {
  5401. border-width:0px;
  5402. word-wrap:break-word;
  5403. text-transform:none;
  5404. }
  5405. #u13835_div {
  5406. border-width:0px;
  5407. position:absolute;
  5408. left:0px;
  5409. top:0px;
  5410. width:65px;
  5411. height:22px;
  5412. background:inherit;
  5413. background-color:rgba(255, 255, 255, 0);
  5414. border:none;
  5415. border-radius:0px;
  5416. -moz-box-shadow:none;
  5417. -webkit-box-shadow:none;
  5418. box-shadow:none;
  5419. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5420. font-weight:400;
  5421. font-style:normal;
  5422. font-size:16px;
  5423. }
  5424. #u13835 {
  5425. border-width:0px;
  5426. position:absolute;
  5427. left:147px;
  5428. top:166px;
  5429. width:65px;
  5430. height:22px;
  5431. display:flex;
  5432. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5433. font-weight:400;
  5434. font-style:normal;
  5435. font-size:16px;
  5436. }
  5437. #u13835 .text {
  5438. position:absolute;
  5439. align-self:flex-start;
  5440. padding:0px 0px 0px 0px;
  5441. box-sizing:border-box;
  5442. width:100%;
  5443. }
  5444. #u13835_text {
  5445. border-width:0px;
  5446. white-space:nowrap;
  5447. text-transform:none;
  5448. }
  5449. #u13836_div {
  5450. border-width:0px;
  5451. position:absolute;
  5452. left:0px;
  5453. top:0px;
  5454. width:25px;
  5455. height:17px;
  5456. background:inherit;
  5457. background-color:rgba(255, 255, 255, 0);
  5458. border:none;
  5459. border-radius:0px;
  5460. -moz-box-shadow:none;
  5461. -webkit-box-shadow:none;
  5462. box-shadow:none;
  5463. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5464. font-weight:400;
  5465. font-style:normal;
  5466. font-size:12px;
  5467. color:#AAAAAA;
  5468. }
  5469. #u13836 {
  5470. border-width:0px;
  5471. position:absolute;
  5472. left:147px;
  5473. top:130px;
  5474. width:25px;
  5475. height:17px;
  5476. display:flex;
  5477. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5478. font-weight:400;
  5479. font-style:normal;
  5480. font-size:12px;
  5481. color:#AAAAAA;
  5482. }
  5483. #u13836 .text {
  5484. position:absolute;
  5485. align-self:flex-start;
  5486. padding:0px 0px 0px 0px;
  5487. box-sizing:border-box;
  5488. width:100%;
  5489. }
  5490. #u13836_text {
  5491. border-width:0px;
  5492. white-space:nowrap;
  5493. text-transform:none;
  5494. }
  5495. #u13837_div {
  5496. border-width:0px;
  5497. position:absolute;
  5498. left:0px;
  5499. top:0px;
  5500. width:65px;
  5501. height:22px;
  5502. background:inherit;
  5503. background-color:rgba(255, 255, 255, 0);
  5504. border:none;
  5505. border-radius:0px;
  5506. -moz-box-shadow:none;
  5507. -webkit-box-shadow:none;
  5508. box-shadow:none;
  5509. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5510. font-weight:400;
  5511. font-style:normal;
  5512. font-size:16px;
  5513. }
  5514. #u13837 {
  5515. border-width:0px;
  5516. position:absolute;
  5517. left:147px;
  5518. top:315px;
  5519. width:65px;
  5520. height:22px;
  5521. display:flex;
  5522. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5523. font-weight:400;
  5524. font-style:normal;
  5525. font-size:16px;
  5526. }
  5527. #u13837 .text {
  5528. position:absolute;
  5529. align-self:flex-start;
  5530. padding:0px 0px 0px 0px;
  5531. box-sizing:border-box;
  5532. width:100%;
  5533. }
  5534. #u13837_text {
  5535. border-width:0px;
  5536. white-space:nowrap;
  5537. text-transform:none;
  5538. }
  5539. #u13838_img {
  5540. border-width:0px;
  5541. position:absolute;
  5542. left:0px;
  5543. top:0px;
  5544. width:201px;
  5545. height:2px;
  5546. }
  5547. #u13838 {
  5548. border-width:0px;
  5549. position:absolute;
  5550. left:120px;
  5551. top:253px;
  5552. width:200px;
  5553. height:1px;
  5554. display:flex;
  5555. }
  5556. #u13838 .text {
  5557. position:absolute;
  5558. align-self:center;
  5559. padding:2px 2px 2px 2px;
  5560. box-sizing:border-box;
  5561. width:100%;
  5562. }
  5563. #u13838_text {
  5564. border-width:0px;
  5565. word-wrap:break-word;
  5566. text-transform:none;
  5567. visibility:hidden;
  5568. }
  5569. #u13839_div {
  5570. border-width:0px;
  5571. position:absolute;
  5572. left:0px;
  5573. top:0px;
  5574. width:25px;
  5575. height:17px;
  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:12px;
  5587. color:#AAAAAA;
  5588. }
  5589. #u13839 {
  5590. border-width:0px;
  5591. position:absolute;
  5592. left:147px;
  5593. top:279px;
  5594. width:25px;
  5595. height:17px;
  5596. display:flex;
  5597. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5598. font-weight:400;
  5599. font-style:normal;
  5600. font-size:12px;
  5601. color:#AAAAAA;
  5602. }
  5603. #u13839 .text {
  5604. position:absolute;
  5605. align-self:flex-start;
  5606. padding:0px 0px 0px 0px;
  5607. box-sizing:border-box;
  5608. width:100%;
  5609. }
  5610. #u13839_text {
  5611. border-width:0px;
  5612. white-space:nowrap;
  5613. text-transform:none;
  5614. }
  5615. #u13840_div {
  5616. border-width:0px;
  5617. position:absolute;
  5618. left:0px;
  5619. top:0px;
  5620. width:65px;
  5621. height:22px;
  5622. background:inherit;
  5623. background-color:rgba(255, 255, 255, 0);
  5624. border:none;
  5625. border-radius:0px;
  5626. -moz-box-shadow:none;
  5627. -webkit-box-shadow:none;
  5628. box-shadow:none;
  5629. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5630. font-weight:400;
  5631. font-style:normal;
  5632. font-size:16px;
  5633. }
  5634. #u13840 {
  5635. border-width:0px;
  5636. position:absolute;
  5637. left:147px;
  5638. top:357px;
  5639. width:65px;
  5640. height:22px;
  5641. display:flex;
  5642. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5643. font-weight:400;
  5644. font-style:normal;
  5645. font-size:16px;
  5646. }
  5647. #u13840 .text {
  5648. position:absolute;
  5649. align-self:flex-start;
  5650. padding:0px 0px 0px 0px;
  5651. box-sizing:border-box;
  5652. width:100%;
  5653. }
  5654. #u13840_text {
  5655. border-width:0px;
  5656. white-space:nowrap;
  5657. text-transform:none;
  5658. }
  5659. #u13841_div {
  5660. border-width:0px;
  5661. position:absolute;
  5662. left:0px;
  5663. top:0px;
  5664. width:49px;
  5665. height:22px;
  5666. background:inherit;
  5667. background-color:rgba(255, 255, 255, 0);
  5668. border:none;
  5669. border-radius:0px;
  5670. -moz-box-shadow:none;
  5671. -webkit-box-shadow:none;
  5672. box-shadow:none;
  5673. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5674. font-weight:400;
  5675. font-style:normal;
  5676. font-size:16px;
  5677. }
  5678. #u13841 {
  5679. border-width:0px;
  5680. position:absolute;
  5681. left:147px;
  5682. top:399px;
  5683. width:49px;
  5684. height:22px;
  5685. display:flex;
  5686. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5687. font-weight:400;
  5688. font-style:normal;
  5689. font-size:16px;
  5690. }
  5691. #u13841 .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. #u13841_text {
  5699. border-width:0px;
  5700. white-space:nowrap;
  5701. text-transform:none;
  5702. }
  5703. #u13842_div {
  5704. border-width:0px;
  5705. position:absolute;
  5706. left:0px;
  5707. top:0px;
  5708. width:81px;
  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. #u13842 {
  5723. border-width:0px;
  5724. position:absolute;
  5725. left:147px;
  5726. top:441px;
  5727. width:81px;
  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. #u13842 .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. #u13842_text {
  5743. border-width:0px;
  5744. white-space:nowrap;
  5745. text-transform:none;
  5746. }
  5747. #u13843_div {
  5748. border-width:0px;
  5749. position:absolute;
  5750. left:0px;
  5751. top:0px;
  5752. width:81px;
  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. #u13843 {
  5767. border-width:0px;
  5768. position:absolute;
  5769. left:147px;
  5770. top:483px;
  5771. width:81px;
  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. #u13843 .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. #u13843_text {
  5787. border-width:0px;
  5788. white-space:nowrap;
  5789. text-transform:none;
  5790. }
  5791. #u13844_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. #u13844 {
  5811. border-width:0px;
  5812. position:absolute;
  5813. left:147px;
  5814. top:208px;
  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. #u13844 .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. #u13844_text {
  5831. border-width:0px;
  5832. white-space:nowrap;
  5833. text-transform:none;
  5834. }
  5835. #u13845_div {
  5836. border-width:0px;
  5837. position:absolute;
  5838. left:0px;
  5839. top:0px;
  5840. width:95px;
  5841. height:30px;
  5842. background:inherit;
  5843. background-color:rgba(41, 143, 255, 1);
  5844. border:none;
  5845. border-radius:4px;
  5846. -moz-box-shadow:none;
  5847. -webkit-box-shadow:none;
  5848. box-shadow:none;
  5849. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5850. font-weight:400;
  5851. font-style:normal;
  5852. font-size:14px;
  5853. color:#FFFFFF;
  5854. }
  5855. #u13845 {
  5856. border-width:0px;
  5857. position:absolute;
  5858. left:351px;
  5859. top:165px;
  5860. width:95px;
  5861. height:30px;
  5862. display:flex;
  5863. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5864. font-weight:400;
  5865. font-style:normal;
  5866. font-size:14px;
  5867. color:#FFFFFF;
  5868. }
  5869. #u13845 .text {
  5870. position:absolute;
  5871. align-self:center;
  5872. padding:5px 15px 5px 15px;
  5873. box-sizing:border-box;
  5874. width:100%;
  5875. }
  5876. #u13845_text {
  5877. border-width:0px;
  5878. white-space:nowrap;
  5879. text-transform:none;
  5880. }
  5881. #u13846 {
  5882. border-width:0px;
  5883. position:absolute;
  5884. left:0px;
  5885. top:0px;
  5886. width:0px;
  5887. height:0px;
  5888. }
  5889. #u13847_div {
  5890. border-width:0px;
  5891. position:absolute;
  5892. left:0px;
  5893. top:0px;
  5894. width:100px;
  5895. height:100px;
  5896. background:inherit;
  5897. background-color:rgba(255, 255, 255, 1);
  5898. box-sizing:border-box;
  5899. border-width:1px;
  5900. border-style:solid;
  5901. border-color:rgba(242, 242, 242, 1);
  5902. border-radius:3px;
  5903. -moz-box-shadow:0px 0px 3px rgba(127, 127, 127, 0.349019607843137);
  5904. -webkit-box-shadow:0px 0px 3px rgba(127, 127, 127, 0.349019607843137);
  5905. box-shadow:0px 0px 3px rgba(127, 127, 127, 0.349019607843137);
  5906. }
  5907. #u13847 {
  5908. border-width:0px;
  5909. position:absolute;
  5910. left:1426px;
  5911. top:344px;
  5912. width:100px;
  5913. height:100px;
  5914. display:flex;
  5915. }
  5916. #u13847 .text {
  5917. position:absolute;
  5918. align-self:center;
  5919. padding:2px 2px 2px 2px;
  5920. box-sizing:border-box;
  5921. width:100%;
  5922. }
  5923. #u13847_text {
  5924. border-width:0px;
  5925. word-wrap:break-word;
  5926. text-transform:none;
  5927. visibility:hidden;
  5928. }
  5929. #u13848_div {
  5930. border-width:0px;
  5931. position:absolute;
  5932. left:0px;
  5933. top:0px;
  5934. width:83px;
  5935. height:40px;
  5936. background:inherit;
  5937. background-color:rgba(255, 255, 255, 1);
  5938. box-sizing:border-box;
  5939. border-width:1px;
  5940. border-style:solid;
  5941. border-color:rgba(242, 242, 242, 1);
  5942. border-left:0px;
  5943. border-top:0px;
  5944. border-right:0px;
  5945. border-radius:4px;
  5946. border-bottom-right-radius:0px;
  5947. border-bottom-left-radius:0px;
  5948. -moz-box-shadow:none;
  5949. -webkit-box-shadow:none;
  5950. box-shadow:none;
  5951. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5952. font-weight:400;
  5953. font-style:normal;
  5954. font-size:14px;
  5955. }
  5956. #u13848 {
  5957. border-width:0px;
  5958. position:absolute;
  5959. left:1434px;
  5960. top:355px;
  5961. width:83px;
  5962. height:40px;
  5963. display:flex;
  5964. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5965. font-weight:400;
  5966. font-style:normal;
  5967. font-size:14px;
  5968. }
  5969. #u13848 .text {
  5970. position:absolute;
  5971. align-self:center;
  5972. padding:5px 0px 5px 0px;
  5973. box-sizing:border-box;
  5974. width:100%;
  5975. }
  5976. #u13848_text {
  5977. border-width:0px;
  5978. word-wrap:break-word;
  5979. text-transform:none;
  5980. }
  5981. #u13849_div {
  5982. border-width:0px;
  5983. position:absolute;
  5984. left:0px;
  5985. top:0px;
  5986. width:83px;
  5987. height:40px;
  5988. background:inherit;
  5989. background-color:rgba(255, 255, 255, 1);
  5990. border:none;
  5991. border-left:0px;
  5992. border-top:0px;
  5993. border-right:0px;
  5994. border-radius:4px;
  5995. border-bottom-right-radius:0px;
  5996. border-bottom-left-radius:0px;
  5997. -moz-box-shadow:none;
  5998. -webkit-box-shadow:none;
  5999. box-shadow:none;
  6000. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6001. font-weight:400;
  6002. font-style:normal;
  6003. font-size:14px;
  6004. }
  6005. #u13849 {
  6006. border-width:0px;
  6007. position:absolute;
  6008. left:1434px;
  6009. top:395px;
  6010. width:83px;
  6011. height:40px;
  6012. display:flex;
  6013. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6014. font-weight:400;
  6015. font-style:normal;
  6016. font-size:14px;
  6017. }
  6018. #u13849 .text {
  6019. position:absolute;
  6020. align-self:center;
  6021. padding:5px 0px 5px 0px;
  6022. box-sizing:border-box;
  6023. width:100%;
  6024. }
  6025. #u13849_text {
  6026. border-width:0px;
  6027. word-wrap:break-word;
  6028. text-transform:none;
  6029. }
  6030. #u13850 {
  6031. border-width:0px;
  6032. position:absolute;
  6033. left:0px;
  6034. top:0px;
  6035. width:0px;
  6036. height:0px;
  6037. }
  6038. #u13851_div {
  6039. border-width:0px;
  6040. position:absolute;
  6041. left:0px;
  6042. top:0px;
  6043. width:800px;
  6044. height:345px;
  6045. background:inherit;
  6046. background-color:rgba(255, 255, 255, 1);
  6047. border:none;
  6048. border-radius:4px;
  6049. -moz-box-shadow:0px 0px 3px rgba(0, 0, 0, 0.349019607843137);
  6050. -webkit-box-shadow:0px 0px 3px rgba(0, 0, 0, 0.349019607843137);
  6051. box-shadow:0px 0px 3px rgba(0, 0, 0, 0.349019607843137);
  6052. }
  6053. #u13851 {
  6054. border-width:0px;
  6055. position:absolute;
  6056. left:492px;
  6057. top:453px;
  6058. width:800px;
  6059. height:345px;
  6060. display:flex;
  6061. }
  6062. #u13851 .text {
  6063. position:absolute;
  6064. align-self:center;
  6065. padding:2px 2px 2px 2px;
  6066. box-sizing:border-box;
  6067. width:100%;
  6068. }
  6069. #u13851_text {
  6070. border-width:0px;
  6071. word-wrap:break-word;
  6072. text-transform:none;
  6073. visibility:hidden;
  6074. }
  6075. #u13852_div {
  6076. border-width:0px;
  6077. position:absolute;
  6078. left:0px;
  6079. top:0px;
  6080. width:117px;
  6081. height:24px;
  6082. background:inherit;
  6083. background-color:rgba(255, 255, 255, 1);
  6084. border:none;
  6085. border-left:0px;
  6086. border-top:0px;
  6087. border-right:0px;
  6088. border-radius:0px;
  6089. border-bottom-right-radius:0px;
  6090. border-bottom-left-radius:0px;
  6091. -moz-box-shadow:none;
  6092. -webkit-box-shadow:none;
  6093. box-shadow:none;
  6094. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  6095. font-weight:500;
  6096. font-style:normal;
  6097. font-size:14px;
  6098. text-align:left;
  6099. }
  6100. #u13852 {
  6101. border-width:0px;
  6102. position:absolute;
  6103. left:511px;
  6104. top:468px;
  6105. width:117px;
  6106. height:24px;
  6107. display:flex;
  6108. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  6109. font-weight:500;
  6110. font-style:normal;
  6111. font-size:14px;
  6112. text-align:left;
  6113. }
  6114. #u13852 .text {
  6115. position:absolute;
  6116. align-self:center;
  6117. padding:2px 2px 2px 2px;
  6118. box-sizing:border-box;
  6119. width:100%;
  6120. }
  6121. #u13852_text {
  6122. border-width:0px;
  6123. white-space:nowrap;
  6124. text-transform:none;
  6125. }
  6126. #u13853_img {
  6127. border-width:0px;
  6128. position:absolute;
  6129. left:0px;
  6130. top:0px;
  6131. width:165px;
  6132. height:116px;
  6133. }
  6134. #u13853 {
  6135. border-width:0px;
  6136. position:absolute;
  6137. left:516px;
  6138. top:521px;
  6139. width:165px;
  6140. height:116px;
  6141. display:flex;
  6142. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6143. font-weight:400;
  6144. font-style:normal;
  6145. font-size:18px;
  6146. }
  6147. #u13853 .text {
  6148. position:absolute;
  6149. align-self:center;
  6150. padding:2px 2px 2px 2px;
  6151. box-sizing:border-box;
  6152. width:100%;
  6153. }
  6154. #u13853_text {
  6155. border-width:0px;
  6156. word-wrap:break-word;
  6157. text-transform:none;
  6158. }
  6159. #u13854_div {
  6160. border-width:0px;
  6161. position:absolute;
  6162. left:0px;
  6163. top:0px;
  6164. width:40px;
  6165. height:40px;
  6166. background:inherit;
  6167. background-color:rgba(255, 255, 255, 0);
  6168. border:none;
  6169. border-top:0px;
  6170. border-right:0px;
  6171. border-bottom:0px;
  6172. border-radius:0px;
  6173. border-top-left-radius:0px;
  6174. border-bottom-left-radius:0px;
  6175. -moz-box-shadow:none;
  6176. -webkit-box-shadow:none;
  6177. box-shadow:none;
  6178. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  6179. font-weight:500;
  6180. font-style:normal;
  6181. font-size:18px;
  6182. text-align:center;
  6183. }
  6184. #u13854 {
  6185. border-width:0px;
  6186. position:absolute;
  6187. left:1252px;
  6188. top:453px;
  6189. width:40px;
  6190. height:40px;
  6191. display:flex;
  6192. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  6193. font-weight:500;
  6194. font-style:normal;
  6195. font-size:18px;
  6196. text-align:center;
  6197. }
  6198. #u13854 .text {
  6199. position:absolute;
  6200. align-self:center;
  6201. padding:5px 10px 5px 0px;
  6202. box-sizing:border-box;
  6203. width:100%;
  6204. }
  6205. #u13854_text {
  6206. border-width:0px;
  6207. word-wrap:break-word;
  6208. text-transform:none;
  6209. }
  6210. #u13855_img {
  6211. border-width:0px;
  6212. position:absolute;
  6213. left:0px;
  6214. top:0px;
  6215. width:165px;
  6216. height:116px;
  6217. }
  6218. #u13855 {
  6219. border-width:0px;
  6220. position:absolute;
  6221. left:711px;
  6222. top:521px;
  6223. width:165px;
  6224. height:116px;
  6225. display:flex;
  6226. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6227. font-weight:400;
  6228. font-style:normal;
  6229. font-size:18px;
  6230. }
  6231. #u13855 .text {
  6232. position:absolute;
  6233. align-self:center;
  6234. padding:2px 2px 2px 2px;
  6235. box-sizing:border-box;
  6236. width:100%;
  6237. }
  6238. #u13855_text {
  6239. border-width:0px;
  6240. word-wrap:break-word;
  6241. text-transform:none;
  6242. }
  6243. #u13856_img {
  6244. border-width:0px;
  6245. position:absolute;
  6246. left:0px;
  6247. top:0px;
  6248. width:165px;
  6249. height:116px;
  6250. }
  6251. #u13856 {
  6252. border-width:0px;
  6253. position:absolute;
  6254. left:906px;
  6255. top:521px;
  6256. width:165px;
  6257. height:116px;
  6258. display:flex;
  6259. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6260. font-weight:400;
  6261. font-style:normal;
  6262. font-size:18px;
  6263. }
  6264. #u13856 .text {
  6265. position:absolute;
  6266. align-self:center;
  6267. padding:2px 2px 2px 2px;
  6268. box-sizing:border-box;
  6269. width:100%;
  6270. }
  6271. #u13856_text {
  6272. border-width:0px;
  6273. word-wrap:break-word;
  6274. text-transform:none;
  6275. }
  6276. #u13857_img {
  6277. border-width:0px;
  6278. position:absolute;
  6279. left:0px;
  6280. top:0px;
  6281. width:165px;
  6282. height:116px;
  6283. }
  6284. #u13857 {
  6285. border-width:0px;
  6286. position:absolute;
  6287. left:1101px;
  6288. top:521px;
  6289. width:165px;
  6290. height:116px;
  6291. display:flex;
  6292. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6293. font-weight:400;
  6294. font-style:normal;
  6295. font-size:18px;
  6296. }
  6297. #u13857 .text {
  6298. position:absolute;
  6299. align-self:center;
  6300. padding:2px 2px 2px 2px;
  6301. box-sizing:border-box;
  6302. width:100%;
  6303. }
  6304. #u13857_text {
  6305. border-width:0px;
  6306. word-wrap:break-word;
  6307. text-transform:none;
  6308. }
  6309. #u13858_img {
  6310. border-width:0px;
  6311. position:absolute;
  6312. left:0px;
  6313. top:0px;
  6314. width:165px;
  6315. height:116px;
  6316. }
  6317. #u13858 {
  6318. border-width:0px;
  6319. position:absolute;
  6320. left:516px;
  6321. top:657px;
  6322. width:165px;
  6323. height:116px;
  6324. display:flex;
  6325. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6326. font-weight:400;
  6327. font-style:normal;
  6328. font-size:18px;
  6329. }
  6330. #u13858 .text {
  6331. position:absolute;
  6332. align-self:center;
  6333. padding:2px 2px 2px 2px;
  6334. box-sizing:border-box;
  6335. width:100%;
  6336. }
  6337. #u13858_text {
  6338. border-width:0px;
  6339. word-wrap:break-word;
  6340. text-transform:none;
  6341. }
  6342. #u13859_img {
  6343. border-width:0px;
  6344. position:absolute;
  6345. left:0px;
  6346. top:0px;
  6347. width:165px;
  6348. height:116px;
  6349. }
  6350. #u13859 {
  6351. border-width:0px;
  6352. position:absolute;
  6353. left:711px;
  6354. top:657px;
  6355. width:165px;
  6356. height:116px;
  6357. display:flex;
  6358. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6359. font-weight:400;
  6360. font-style:normal;
  6361. font-size:18px;
  6362. }
  6363. #u13859 .text {
  6364. position:absolute;
  6365. align-self:center;
  6366. padding:2px 2px 2px 2px;
  6367. box-sizing:border-box;
  6368. width:100%;
  6369. }
  6370. #u13859_text {
  6371. border-width:0px;
  6372. word-wrap:break-word;
  6373. text-transform:none;
  6374. }
  6375. #u13860 {
  6376. border-width:0px;
  6377. position:absolute;
  6378. left:0px;
  6379. top:0px;
  6380. width:0px;
  6381. height:0px;
  6382. }
  6383. #u13861_div {
  6384. border-width:0px;
  6385. position:absolute;
  6386. left:0px;
  6387. top:0px;
  6388. width:1000px;
  6389. height:1190px;
  6390. background:inherit;
  6391. background-color:rgba(255, 255, 255, 1);
  6392. box-sizing:border-box;
  6393. border-width:1px;
  6394. border-style:solid;
  6395. border-color:rgba(215, 215, 215, 1);
  6396. border-radius:0px;
  6397. -moz-box-shadow:none;
  6398. -webkit-box-shadow:none;
  6399. box-shadow:none;
  6400. }
  6401. #u13861 {
  6402. border-width:0px;
  6403. position:absolute;
  6404. left:1642px;
  6405. top:48px;
  6406. width:1000px;
  6407. height:1190px;
  6408. display:flex;
  6409. }
  6410. #u13861 .text {
  6411. position:absolute;
  6412. align-self:center;
  6413. padding:2px 2px 2px 2px;
  6414. box-sizing:border-box;
  6415. width:100%;
  6416. }
  6417. #u13861_text {
  6418. border-width:0px;
  6419. word-wrap:break-word;
  6420. text-transform:none;
  6421. visibility:hidden;
  6422. }
  6423. #u13862_div {
  6424. border-width:0px;
  6425. position:absolute;
  6426. left:0px;
  6427. top:0px;
  6428. width:73px;
  6429. height:30px;
  6430. background:inherit;
  6431. background-color:rgba(255, 255, 255, 0);
  6432. border:none;
  6433. border-radius:0px;
  6434. -moz-box-shadow:none;
  6435. -webkit-box-shadow:none;
  6436. box-shadow:none;
  6437. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6438. font-weight:400;
  6439. font-style:normal;
  6440. font-size:18px;
  6441. color:#000000;
  6442. line-height:30px;
  6443. }
  6444. #u13862 {
  6445. border-width:0px;
  6446. position:absolute;
  6447. left:1662px;
  6448. top:68px;
  6449. width:73px;
  6450. height:30px;
  6451. display:flex;
  6452. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6453. font-weight:400;
  6454. font-style:normal;
  6455. font-size:18px;
  6456. color:#000000;
  6457. line-height:30px;
  6458. }
  6459. #u13862 .text {
  6460. position:absolute;
  6461. align-self:flex-start;
  6462. padding:0px 0px 0px 0px;
  6463. box-sizing:border-box;
  6464. width:100%;
  6465. }
  6466. #u13862_text {
  6467. border-width:0px;
  6468. white-space:nowrap;
  6469. text-transform:none;
  6470. }
  6471. #u13863_div {
  6472. border-width:0px;
  6473. position:absolute;
  6474. left:0px;
  6475. top:0px;
  6476. width:88px;
  6477. height:30px;
  6478. background:inherit;
  6479. background-color:rgba(255, 255, 255, 0);
  6480. border:none;
  6481. border-top:0px;
  6482. border-right:0px;
  6483. border-bottom:0px;
  6484. border-radius:0px;
  6485. border-top-left-radius:0px;
  6486. border-bottom-left-radius:0px;
  6487. -moz-box-shadow:none;
  6488. -webkit-box-shadow:none;
  6489. box-shadow:none;
  6490. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6491. font-weight:400;
  6492. font-style:normal;
  6493. font-size:14px;
  6494. }
  6495. #u13863 {
  6496. border-width:0px;
  6497. position:absolute;
  6498. left:1681px;
  6499. top:218px;
  6500. width:88px;
  6501. height:30px;
  6502. display:flex;
  6503. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6504. font-weight:400;
  6505. font-style:normal;
  6506. font-size:14px;
  6507. }
  6508. #u13863 .text {
  6509. position:absolute;
  6510. align-self:center;
  6511. padding:5px 10px 5px 0px;
  6512. box-sizing:border-box;
  6513. width:100%;
  6514. }
  6515. #u13863_text {
  6516. border-width:0px;
  6517. white-space:nowrap;
  6518. text-transform:none;
  6519. }
  6520. #u13864 {
  6521. border-width:0px;
  6522. position:absolute;
  6523. left:0px;
  6524. top:0px;
  6525. width:0px;
  6526. height:0px;
  6527. }
  6528. #u13865_div {
  6529. border-width:0px;
  6530. position:absolute;
  6531. left:0px;
  6532. top:0px;
  6533. width:280px;
  6534. height:40px;
  6535. background:inherit;
  6536. background-color:rgba(255, 255, 255, 1);
  6537. box-sizing:border-box;
  6538. border-width:1px;
  6539. border-style:solid;
  6540. border-color:rgba(170, 170, 170, 1);
  6541. border-radius:4px;
  6542. -moz-box-shadow:none;
  6543. -webkit-box-shadow:none;
  6544. box-shadow:none;
  6545. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6546. font-weight:400;
  6547. font-style:normal;
  6548. text-align:left;
  6549. }
  6550. #u13865 {
  6551. border-width:0px;
  6552. position:absolute;
  6553. left:1681px;
  6554. top:248px;
  6555. width:280px;
  6556. height:40px;
  6557. display:flex;
  6558. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6559. font-weight:400;
  6560. font-style:normal;
  6561. text-align:left;
  6562. }
  6563. #u13865 .text {
  6564. position:absolute;
  6565. align-self:center;
  6566. padding:2px 2px 2px 10px;
  6567. box-sizing:border-box;
  6568. width:100%;
  6569. }
  6570. #u13865_text {
  6571. border-width:0px;
  6572. word-wrap:break-word;
  6573. text-transform:none;
  6574. visibility:hidden;
  6575. }
  6576. #u13866_input {
  6577. position:absolute;
  6578. left:0px;
  6579. top:0px;
  6580. width:132px;
  6581. height:31px;
  6582. padding:2px 2px 2px 2px;
  6583. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6584. font-weight:400;
  6585. font-style:normal;
  6586. font-size:13px;
  6587. letter-spacing:normal;
  6588. color:#AAAAAA;
  6589. vertical-align:none;
  6590. text-align:left;
  6591. text-transform:none;
  6592. background-color:transparent;
  6593. border-color:transparent;
  6594. }
  6595. #u13866_input.disabled {
  6596. position:absolute;
  6597. left:0px;
  6598. top:0px;
  6599. width:132px;
  6600. height:31px;
  6601. padding:2px 2px 2px 2px;
  6602. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6603. font-weight:400;
  6604. font-style:normal;
  6605. font-size:13px;
  6606. letter-spacing:normal;
  6607. color:#AAAAAA;
  6608. vertical-align:none;
  6609. text-align:left;
  6610. text-transform:none;
  6611. background-color:transparent;
  6612. border-color:transparent;
  6613. }
  6614. #u13866_div {
  6615. border-width:0px;
  6616. position:absolute;
  6617. left:0px;
  6618. top:0px;
  6619. width:132px;
  6620. height:31px;
  6621. background:inherit;
  6622. background-color:rgba(255, 255, 255, 0);
  6623. border:none;
  6624. border-radius:0px;
  6625. -moz-box-shadow:none;
  6626. -webkit-box-shadow:none;
  6627. box-shadow:none;
  6628. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6629. font-weight:400;
  6630. font-style:normal;
  6631. color:#AAAAAA;
  6632. }
  6633. #u13866 {
  6634. border-width:0px;
  6635. position:absolute;
  6636. left:1688px;
  6637. top:253px;
  6638. width:132px;
  6639. height:31px;
  6640. display:flex;
  6641. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6642. font-weight:400;
  6643. font-style:normal;
  6644. color:#AAAAAA;
  6645. }
  6646. #u13866 .text {
  6647. position:absolute;
  6648. align-self:center;
  6649. padding:2px 2px 2px 2px;
  6650. box-sizing:border-box;
  6651. width:100%;
  6652. }
  6653. #u13866_div.disabled {
  6654. border-width:0px;
  6655. position:absolute;
  6656. left:0px;
  6657. top:0px;
  6658. width:132px;
  6659. height:31px;
  6660. background:inherit;
  6661. background-color:rgba(240, 240, 240, 1);
  6662. border:none;
  6663. border-radius:0px;
  6664. -moz-box-shadow:none;
  6665. -webkit-box-shadow:none;
  6666. box-shadow:none;
  6667. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6668. font-weight:400;
  6669. font-style:normal;
  6670. color:#AAAAAA;
  6671. }
  6672. #u13866.disabled {
  6673. }
  6674. #u13867 {
  6675. border-width:0px;
  6676. position:absolute;
  6677. left:0px;
  6678. top:0px;
  6679. width:0px;
  6680. height:0px;
  6681. }
  6682. #u13868_div {
  6683. border-width:0px;
  6684. position:absolute;
  6685. left:0px;
  6686. top:0px;
  6687. width:40px;
  6688. height:40px;
  6689. background:inherit;
  6690. background-color:rgba(255, 255, 255, 0);
  6691. border:none;
  6692. border-top:0px;
  6693. border-right:0px;
  6694. border-bottom:0px;
  6695. border-radius:0px;
  6696. border-top-left-radius:0px;
  6697. border-bottom-left-radius:0px;
  6698. -moz-box-shadow:none;
  6699. -webkit-box-shadow:none;
  6700. box-shadow:none;
  6701. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  6702. font-weight:500;
  6703. font-style:normal;
  6704. font-size:18px;
  6705. text-align:center;
  6706. }
  6707. #u13868 {
  6708. border-width:0px;
  6709. position:absolute;
  6710. left:2602px;
  6711. top:48px;
  6712. width:40px;
  6713. height:40px;
  6714. display:flex;
  6715. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  6716. font-weight:500;
  6717. font-style:normal;
  6718. font-size:18px;
  6719. text-align:center;
  6720. }
  6721. #u13868 .text {
  6722. position:absolute;
  6723. align-self:center;
  6724. padding:5px 10px 5px 0px;
  6725. box-sizing:border-box;
  6726. width:100%;
  6727. }
  6728. #u13868_text {
  6729. border-width:0px;
  6730. word-wrap:break-word;
  6731. text-transform:none;
  6732. }
  6733. #u13869_img {
  6734. border-width:0px;
  6735. position:absolute;
  6736. left:0px;
  6737. top:0px;
  6738. width:13px;
  6739. height:13px;
  6740. }
  6741. #u13869 {
  6742. border-width:0px;
  6743. position:absolute;
  6744. left:2589px;
  6745. top:66px;
  6746. width:13px;
  6747. height:13px;
  6748. display:flex;
  6749. }
  6750. #u13869 .text {
  6751. position:absolute;
  6752. align-self:center;
  6753. padding:2px 2px 2px 2px;
  6754. box-sizing:border-box;
  6755. width:100%;
  6756. }
  6757. #u13869_text {
  6758. border-width:0px;
  6759. word-wrap:break-word;
  6760. text-transform:none;
  6761. visibility:hidden;
  6762. }
  6763. #u13870 {
  6764. border-width:0px;
  6765. position:absolute;
  6766. left:0px;
  6767. top:0px;
  6768. width:0px;
  6769. height:0px;
  6770. }
  6771. #u13871_div {
  6772. border-width:0px;
  6773. position:absolute;
  6774. left:0px;
  6775. top:0px;
  6776. width:1000px;
  6777. height:60px;
  6778. background:inherit;
  6779. background-color:rgba(255, 255, 255, 1);
  6780. box-sizing:border-box;
  6781. border-width:1px;
  6782. border-style:solid;
  6783. border-color:rgba(215, 215, 215, 1);
  6784. border-radius:0px;
  6785. -moz-box-shadow:none;
  6786. -webkit-box-shadow:none;
  6787. box-shadow:none;
  6788. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6789. font-weight:400;
  6790. font-style:normal;
  6791. font-size:14px;
  6792. color:#AAAAAA;
  6793. text-align:center;
  6794. line-height:30px;
  6795. }
  6796. #u13871 {
  6797. border-width:0px;
  6798. position:absolute;
  6799. left:1642px;
  6800. top:1178px;
  6801. width:1000px;
  6802. height:60px;
  6803. display:flex;
  6804. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6805. font-weight:400;
  6806. font-style:normal;
  6807. font-size:14px;
  6808. color:#AAAAAA;
  6809. text-align:center;
  6810. line-height:30px;
  6811. }
  6812. #u13871 .text {
  6813. position:absolute;
  6814. align-self:center;
  6815. padding:5px 10px 5px 10px;
  6816. box-sizing:border-box;
  6817. width:100%;
  6818. }
  6819. #u13871_text {
  6820. border-width:0px;
  6821. word-wrap:break-word;
  6822. text-transform:none;
  6823. visibility:hidden;
  6824. }
  6825. #u13872_div {
  6826. border-width:0px;
  6827. position:absolute;
  6828. left:0px;
  6829. top:0px;
  6830. width:80px;
  6831. height:30px;
  6832. background:inherit;
  6833. background-color:rgba(24, 144, 255, 1);
  6834. border:none;
  6835. border-radius:4px;
  6836. -moz-box-shadow:none;
  6837. -webkit-box-shadow:none;
  6838. box-shadow:none;
  6839. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6840. font-weight:400;
  6841. font-style:normal;
  6842. font-size:14px;
  6843. color:#FFFFFF;
  6844. }
  6845. #u13872 {
  6846. border-width:0px;
  6847. position:absolute;
  6848. left:2517px;
  6849. top:1193px;
  6850. width:80px;
  6851. height:30px;
  6852. display:flex;
  6853. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6854. font-weight:400;
  6855. font-style:normal;
  6856. font-size:14px;
  6857. color:#FFFFFF;
  6858. }
  6859. #u13872 .text {
  6860. position:absolute;
  6861. align-self:center;
  6862. padding:2px 2px 2px 2px;
  6863. box-sizing:border-box;
  6864. width:100%;
  6865. }
  6866. #u13872_text {
  6867. border-width:0px;
  6868. word-wrap:break-word;
  6869. text-transform:none;
  6870. }
  6871. #u13873_div {
  6872. border-width:0px;
  6873. position:absolute;
  6874. left:0px;
  6875. top:0px;
  6876. width:80px;
  6877. height:30px;
  6878. background:inherit;
  6879. background-color:rgba(255, 255, 255, 1);
  6880. box-sizing:border-box;
  6881. border-width:1px;
  6882. border-style:solid;
  6883. border-color:rgba(170, 170, 170, 1);
  6884. border-radius:4px;
  6885. -moz-box-shadow:none;
  6886. -webkit-box-shadow:none;
  6887. box-shadow:none;
  6888. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6889. font-weight:400;
  6890. font-style:normal;
  6891. font-size:14px;
  6892. }
  6893. #u13873 {
  6894. border-width:0px;
  6895. position:absolute;
  6896. left:2427px;
  6897. top:1193px;
  6898. width:80px;
  6899. height:30px;
  6900. display:flex;
  6901. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6902. font-weight:400;
  6903. font-style:normal;
  6904. font-size:14px;
  6905. }
  6906. #u13873 .text {
  6907. position:absolute;
  6908. align-self:center;
  6909. padding:2px 2px 2px 2px;
  6910. box-sizing:border-box;
  6911. width:100%;
  6912. }
  6913. #u13873_text {
  6914. border-width:0px;
  6915. word-wrap:break-word;
  6916. text-transform:none;
  6917. }
  6918. #u13874_div {
  6919. border-width:0px;
  6920. position:absolute;
  6921. left:0px;
  6922. top:0px;
  6923. width:186px;
  6924. height:50px;
  6925. background:inherit;
  6926. background-color:rgba(255, 255, 255, 0);
  6927. border:none;
  6928. border-top:0px;
  6929. border-right:0px;
  6930. border-bottom:0px;
  6931. border-radius:0px;
  6932. border-top-left-radius:0px;
  6933. border-bottom-left-radius:0px;
  6934. -moz-box-shadow:none;
  6935. -webkit-box-shadow:none;
  6936. box-shadow:none;
  6937. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6938. font-weight:400;
  6939. font-style:normal;
  6940. font-size:12px;
  6941. color:#AAAAAA;
  6942. line-height:20px;
  6943. }
  6944. #u13874 {
  6945. border-width:0px;
  6946. position:absolute;
  6947. left:2091px;
  6948. top:483px;
  6949. width:186px;
  6950. height:50px;
  6951. display:flex;
  6952. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6953. font-weight:400;
  6954. font-style:normal;
  6955. font-size:12px;
  6956. color:#AAAAAA;
  6957. line-height:20px;
  6958. }
  6959. #u13874 .text {
  6960. position:absolute;
  6961. align-self:center;
  6962. padding:5px 10px 5px 0px;
  6963. box-sizing:border-box;
  6964. width:100%;
  6965. }
  6966. #u13874_text {
  6967. border-width:0px;
  6968. word-wrap:break-word;
  6969. text-transform:none;
  6970. }
  6971. #u13875_div {
  6972. border-width:0px;
  6973. position:absolute;
  6974. left:0px;
  6975. top:0px;
  6976. width:83px;
  6977. height:35px;
  6978. background:inherit;
  6979. background-color:rgba(255, 255, 255, 0);
  6980. border:none;
  6981. border-top:0px;
  6982. border-right:0px;
  6983. border-bottom:0px;
  6984. border-radius:0px;
  6985. border-top-left-radius:0px;
  6986. border-bottom-left-radius:0px;
  6987. -moz-box-shadow:none;
  6988. -webkit-box-shadow:none;
  6989. box-shadow:none;
  6990. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  6991. font-weight:500;
  6992. font-style:normal;
  6993. font-size:18px;
  6994. }
  6995. #u13875 {
  6996. border-width:0px;
  6997. position:absolute;
  6998. left:1681px;
  6999. top:176px;
  7000. width:83px;
  7001. height:35px;
  7002. display:flex;
  7003. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  7004. font-weight:500;
  7005. font-style:normal;
  7006. font-size:18px;
  7007. }
  7008. #u13875 .text {
  7009. position:absolute;
  7010. align-self:center;
  7011. padding:5px 10px 5px 0px;
  7012. box-sizing:border-box;
  7013. width:100%;
  7014. }
  7015. #u13875_text {
  7016. border-width:0px;
  7017. white-space:nowrap;
  7018. text-transform:none;
  7019. }
  7020. #u13876_div {
  7021. border-width:0px;
  7022. position:absolute;
  7023. left:0px;
  7024. top:0px;
  7025. width:67px;
  7026. height:30px;
  7027. background:inherit;
  7028. background-color:rgba(255, 255, 255, 0);
  7029. border:none;
  7030. border-top:0px;
  7031. border-right:0px;
  7032. border-bottom:0px;
  7033. border-radius:0px;
  7034. border-top-left-radius:0px;
  7035. border-bottom-left-radius:0px;
  7036. -moz-box-shadow:none;
  7037. -webkit-box-shadow:none;
  7038. box-shadow:none;
  7039. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7040. font-weight:400;
  7041. font-style:normal;
  7042. font-size:14px;
  7043. }
  7044. #u13876 {
  7045. border-width:0px;
  7046. position:absolute;
  7047. left:2001px;
  7048. top:298px;
  7049. width:67px;
  7050. height:30px;
  7051. display:flex;
  7052. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7053. font-weight:400;
  7054. font-style:normal;
  7055. font-size:14px;
  7056. }
  7057. #u13876 .text {
  7058. position:absolute;
  7059. align-self:center;
  7060. padding:5px 10px 5px 0px;
  7061. box-sizing:border-box;
  7062. width:100%;
  7063. }
  7064. #u13876_text {
  7065. border-width:0px;
  7066. white-space:nowrap;
  7067. text-transform:none;
  7068. }
  7069. #u13877 {
  7070. border-width:0px;
  7071. position:absolute;
  7072. left:0px;
  7073. top:0px;
  7074. width:0px;
  7075. height:0px;
  7076. }
  7077. #u13878_div {
  7078. border-width:0px;
  7079. position:absolute;
  7080. left:0px;
  7081. top:0px;
  7082. width:280px;
  7083. height:40px;
  7084. background:inherit;
  7085. background-color:rgba(255, 255, 255, 1);
  7086. box-sizing:border-box;
  7087. border-width:1px;
  7088. border-style:solid;
  7089. border-color:rgba(170, 170, 170, 1);
  7090. border-radius:4px;
  7091. -moz-box-shadow:none;
  7092. -webkit-box-shadow:none;
  7093. box-shadow:none;
  7094. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7095. font-weight:400;
  7096. font-style:normal;
  7097. text-align:left;
  7098. }
  7099. #u13878 {
  7100. border-width:0px;
  7101. position:absolute;
  7102. left:2001px;
  7103. top:328px;
  7104. width:280px;
  7105. height:40px;
  7106. display:flex;
  7107. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7108. font-weight:400;
  7109. font-style:normal;
  7110. text-align:left;
  7111. }
  7112. #u13878 .text {
  7113. position:absolute;
  7114. align-self:center;
  7115. padding:2px 2px 2px 10px;
  7116. box-sizing:border-box;
  7117. width:100%;
  7118. }
  7119. #u13878_text {
  7120. border-width:0px;
  7121. word-wrap:break-word;
  7122. text-transform:none;
  7123. visibility:hidden;
  7124. }
  7125. #u13879_input {
  7126. position:absolute;
  7127. left:0px;
  7128. top:0px;
  7129. width:132px;
  7130. height:31px;
  7131. padding:2px 2px 2px 2px;
  7132. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7133. font-weight:400;
  7134. font-style:normal;
  7135. font-size:13px;
  7136. letter-spacing:normal;
  7137. color:#AAAAAA;
  7138. vertical-align:none;
  7139. text-align:left;
  7140. text-transform:none;
  7141. background-color:transparent;
  7142. border-color:transparent;
  7143. }
  7144. #u13879_input.disabled {
  7145. position:absolute;
  7146. left:0px;
  7147. top:0px;
  7148. width:132px;
  7149. height:31px;
  7150. padding:2px 2px 2px 2px;
  7151. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7152. font-weight:400;
  7153. font-style:normal;
  7154. font-size:13px;
  7155. letter-spacing:normal;
  7156. color:#AAAAAA;
  7157. vertical-align:none;
  7158. text-align:left;
  7159. text-transform:none;
  7160. background-color:transparent;
  7161. border-color:transparent;
  7162. }
  7163. #u13879_div {
  7164. border-width:0px;
  7165. position:absolute;
  7166. left:0px;
  7167. top:0px;
  7168. width:132px;
  7169. height:31px;
  7170. background:inherit;
  7171. background-color:rgba(255, 255, 255, 0);
  7172. border:none;
  7173. border-radius:0px;
  7174. -moz-box-shadow:none;
  7175. -webkit-box-shadow:none;
  7176. box-shadow:none;
  7177. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7178. font-weight:400;
  7179. font-style:normal;
  7180. color:#AAAAAA;
  7181. }
  7182. #u13879 {
  7183. border-width:0px;
  7184. position:absolute;
  7185. left:2008px;
  7186. top:333px;
  7187. width:132px;
  7188. height:31px;
  7189. display:flex;
  7190. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7191. font-weight:400;
  7192. font-style:normal;
  7193. color:#AAAAAA;
  7194. }
  7195. #u13879 .text {
  7196. position:absolute;
  7197. align-self:center;
  7198. padding:2px 2px 2px 2px;
  7199. box-sizing:border-box;
  7200. width:100%;
  7201. }
  7202. #u13879_div.disabled {
  7203. border-width:0px;
  7204. position:absolute;
  7205. left:0px;
  7206. top:0px;
  7207. width:132px;
  7208. height:31px;
  7209. background:inherit;
  7210. background-color:rgba(240, 240, 240, 1);
  7211. border:none;
  7212. border-radius:0px;
  7213. -moz-box-shadow:none;
  7214. -webkit-box-shadow:none;
  7215. box-shadow:none;
  7216. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7217. font-weight:400;
  7218. font-style:normal;
  7219. color:#AAAAAA;
  7220. }
  7221. #u13879.disabled {
  7222. }
  7223. #u13880_div {
  7224. border-width:0px;
  7225. position:absolute;
  7226. left:0px;
  7227. top:0px;
  7228. width:67px;
  7229. height:30px;
  7230. background:inherit;
  7231. background-color:rgba(255, 255, 255, 0);
  7232. border:none;
  7233. border-top:0px;
  7234. border-right:0px;
  7235. border-bottom:0px;
  7236. border-radius:0px;
  7237. border-top-left-radius:0px;
  7238. border-bottom-left-radius:0px;
  7239. -moz-box-shadow:none;
  7240. -webkit-box-shadow:none;
  7241. box-shadow:none;
  7242. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7243. font-weight:400;
  7244. font-style:normal;
  7245. font-size:14px;
  7246. }
  7247. #u13880 {
  7248. border-width:0px;
  7249. position:absolute;
  7250. left:1681px;
  7251. top:458px;
  7252. width:67px;
  7253. height:30px;
  7254. display:flex;
  7255. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7256. font-weight:400;
  7257. font-style:normal;
  7258. font-size:14px;
  7259. }
  7260. #u13880 .text {
  7261. position:absolute;
  7262. align-self:center;
  7263. padding:5px 10px 5px 0px;
  7264. box-sizing:border-box;
  7265. width:100%;
  7266. }
  7267. #u13880_text {
  7268. border-width:0px;
  7269. white-space:nowrap;
  7270. text-transform:none;
  7271. }
  7272. #u13881_div {
  7273. border-width:0px;
  7274. position:absolute;
  7275. left:0px;
  7276. top:0px;
  7277. width:74px;
  7278. height:30px;
  7279. background:inherit;
  7280. background-color:rgba(255, 255, 255, 0);
  7281. border:none;
  7282. border-top:0px;
  7283. border-right:0px;
  7284. border-bottom:0px;
  7285. border-radius:0px;
  7286. border-top-left-radius:0px;
  7287. border-bottom-left-radius:0px;
  7288. -moz-box-shadow:none;
  7289. -webkit-box-shadow:none;
  7290. box-shadow:none;
  7291. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7292. font-weight:400;
  7293. font-style:normal;
  7294. font-size:14px;
  7295. }
  7296. #u13881 {
  7297. border-width:0px;
  7298. position:absolute;
  7299. left:1681px;
  7300. top:298px;
  7301. width:74px;
  7302. height:30px;
  7303. display:flex;
  7304. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7305. font-weight:400;
  7306. font-style:normal;
  7307. font-size:14px;
  7308. }
  7309. #u13881 .text {
  7310. position:absolute;
  7311. align-self:center;
  7312. padding:5px 10px 5px 0px;
  7313. box-sizing:border-box;
  7314. width:100%;
  7315. }
  7316. #u13881_text {
  7317. border-width:0px;
  7318. white-space:nowrap;
  7319. text-transform:none;
  7320. }
  7321. #u13882_div {
  7322. border-width:0px;
  7323. position:absolute;
  7324. left:0px;
  7325. top:0px;
  7326. width:67px;
  7327. height:30px;
  7328. background:inherit;
  7329. background-color:rgba(255, 255, 255, 0);
  7330. border:none;
  7331. border-top:0px;
  7332. border-right:0px;
  7333. border-bottom:0px;
  7334. border-radius:0px;
  7335. border-top-left-radius:0px;
  7336. border-bottom-left-radius:0px;
  7337. -moz-box-shadow:none;
  7338. -webkit-box-shadow:none;
  7339. box-shadow:none;
  7340. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7341. font-weight:400;
  7342. font-style:normal;
  7343. font-size:14px;
  7344. }
  7345. #u13882 {
  7346. border-width:0px;
  7347. position:absolute;
  7348. left:2321px;
  7349. top:458px;
  7350. width:67px;
  7351. height:30px;
  7352. display:flex;
  7353. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7354. font-weight:400;
  7355. font-style:normal;
  7356. font-size:14px;
  7357. }
  7358. #u13882 .text {
  7359. position:absolute;
  7360. align-self:center;
  7361. padding:5px 10px 5px 0px;
  7362. box-sizing:border-box;
  7363. width:100%;
  7364. }
  7365. #u13882_text {
  7366. border-width:0px;
  7367. white-space:nowrap;
  7368. text-transform:none;
  7369. }
  7370. #u13883 {
  7371. border-width:0px;
  7372. position:absolute;
  7373. left:0px;
  7374. top:0px;
  7375. width:0px;
  7376. height:0px;
  7377. }
  7378. #u13884_div {
  7379. border-width:0px;
  7380. position:absolute;
  7381. left:0px;
  7382. top:0px;
  7383. width:280px;
  7384. height:80px;
  7385. background:inherit;
  7386. background-color:rgba(255, 255, 255, 1);
  7387. box-sizing:border-box;
  7388. border-width:1px;
  7389. border-style:solid;
  7390. border-color:rgba(170, 170, 170, 1);
  7391. border-radius:4px;
  7392. -moz-box-shadow:none;
  7393. -webkit-box-shadow:none;
  7394. box-shadow:none;
  7395. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7396. font-weight:400;
  7397. font-style:normal;
  7398. text-align:left;
  7399. }
  7400. #u13884 {
  7401. border-width:0px;
  7402. position:absolute;
  7403. left:2321px;
  7404. top:488px;
  7405. width:280px;
  7406. height:80px;
  7407. display:flex;
  7408. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7409. font-weight:400;
  7410. font-style:normal;
  7411. text-align:left;
  7412. }
  7413. #u13884 .text {
  7414. position:absolute;
  7415. align-self:center;
  7416. padding:2px 2px 2px 10px;
  7417. box-sizing:border-box;
  7418. width:100%;
  7419. }
  7420. #u13884_text {
  7421. border-width:0px;
  7422. word-wrap:break-word;
  7423. text-transform:none;
  7424. visibility:hidden;
  7425. }
  7426. #u13885_input {
  7427. position:absolute;
  7428. left:0px;
  7429. top:0px;
  7430. width:132px;
  7431. height:31px;
  7432. padding:2px 2px 2px 2px;
  7433. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7434. font-weight:400;
  7435. font-style:normal;
  7436. font-size:13px;
  7437. letter-spacing:normal;
  7438. color:#AAAAAA;
  7439. vertical-align:none;
  7440. text-align:left;
  7441. text-transform:none;
  7442. background-color:transparent;
  7443. border-color:transparent;
  7444. }
  7445. #u13885_input.disabled {
  7446. position:absolute;
  7447. left:0px;
  7448. top:0px;
  7449. width:132px;
  7450. height:31px;
  7451. padding:2px 2px 2px 2px;
  7452. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7453. font-weight:400;
  7454. font-style:normal;
  7455. font-size:13px;
  7456. letter-spacing:normal;
  7457. color:#AAAAAA;
  7458. vertical-align:none;
  7459. text-align:left;
  7460. text-transform:none;
  7461. background-color:transparent;
  7462. border-color:transparent;
  7463. }
  7464. #u13885_div {
  7465. border-width:0px;
  7466. position:absolute;
  7467. left:0px;
  7468. top:0px;
  7469. width:132px;
  7470. height:31px;
  7471. background:inherit;
  7472. background-color:rgba(255, 255, 255, 0);
  7473. border:none;
  7474. border-radius:0px;
  7475. -moz-box-shadow:none;
  7476. -webkit-box-shadow:none;
  7477. box-shadow:none;
  7478. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7479. font-weight:400;
  7480. font-style:normal;
  7481. color:#AAAAAA;
  7482. }
  7483. #u13885 {
  7484. border-width:0px;
  7485. position:absolute;
  7486. left:2328px;
  7487. top:493px;
  7488. width:132px;
  7489. height:31px;
  7490. display:flex;
  7491. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7492. font-weight:400;
  7493. font-style:normal;
  7494. color:#AAAAAA;
  7495. }
  7496. #u13885 .text {
  7497. position:absolute;
  7498. align-self:center;
  7499. padding:2px 2px 2px 2px;
  7500. box-sizing:border-box;
  7501. width:100%;
  7502. }
  7503. #u13885_div.disabled {
  7504. border-width:0px;
  7505. position:absolute;
  7506. left:0px;
  7507. top:0px;
  7508. width:132px;
  7509. height:31px;
  7510. background:inherit;
  7511. background-color:rgba(240, 240, 240, 1);
  7512. border:none;
  7513. border-radius:0px;
  7514. -moz-box-shadow:none;
  7515. -webkit-box-shadow:none;
  7516. box-shadow:none;
  7517. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7518. font-weight:400;
  7519. font-style:normal;
  7520. color:#AAAAAA;
  7521. }
  7522. #u13885.disabled {
  7523. }
  7524. #u13886 {
  7525. border-width:0px;
  7526. position:absolute;
  7527. left:0px;
  7528. top:0px;
  7529. width:0px;
  7530. height:0px;
  7531. }
  7532. #u13887_div {
  7533. border-width:0px;
  7534. position:absolute;
  7535. left:0px;
  7536. top:0px;
  7537. width:280px;
  7538. height:40px;
  7539. background:inherit;
  7540. background-color:rgba(255, 255, 255, 1);
  7541. box-sizing:border-box;
  7542. border-width:1px;
  7543. border-style:solid;
  7544. border-color:rgba(170, 170, 170, 1);
  7545. border-radius:4px;
  7546. -moz-box-shadow:none;
  7547. -webkit-box-shadow:none;
  7548. box-shadow:none;
  7549. }
  7550. #u13887 {
  7551. border-width:0px;
  7552. position:absolute;
  7553. left:1681px;
  7554. top:488px;
  7555. width:280px;
  7556. height:40px;
  7557. display:flex;
  7558. }
  7559. #u13887 .text {
  7560. position:absolute;
  7561. align-self:center;
  7562. padding:2px 2px 2px 0px;
  7563. box-sizing:border-box;
  7564. width:100%;
  7565. }
  7566. #u13887_text {
  7567. border-width:0px;
  7568. word-wrap:break-word;
  7569. text-transform:none;
  7570. visibility:hidden;
  7571. }
  7572. #u13888_input {
  7573. position:absolute;
  7574. left:0px;
  7575. top:0px;
  7576. width:266px;
  7577. height:30px;
  7578. padding:2px 2px 2px 0px;
  7579. font-family:'ArialMT', 'Arial', sans-serif;
  7580. font-weight:400;
  7581. font-style:normal;
  7582. font-size:13px;
  7583. letter-spacing:normal;
  7584. color:#AAAAAA;
  7585. vertical-align:none;
  7586. text-align:left;
  7587. text-transform:none;
  7588. background-color:transparent;
  7589. border-color:transparent;
  7590. }
  7591. #u13888_input.disabled {
  7592. position:absolute;
  7593. left:0px;
  7594. top:0px;
  7595. width:266px;
  7596. height:30px;
  7597. padding:2px 2px 2px 0px;
  7598. font-family:'ArialMT', 'Arial', sans-serif;
  7599. font-weight:400;
  7600. font-style:normal;
  7601. font-size:13px;
  7602. letter-spacing:normal;
  7603. color:#AAAAAA;
  7604. vertical-align:none;
  7605. text-align:left;
  7606. text-transform:none;
  7607. background-color:transparent;
  7608. border-color:transparent;
  7609. }
  7610. #u13888_div {
  7611. border-width:0px;
  7612. position:absolute;
  7613. left:0px;
  7614. top:0px;
  7615. width:266px;
  7616. height:30px;
  7617. background:inherit;
  7618. background-color:rgba(255, 255, 255, 1);
  7619. border:none;
  7620. border-radius:0px;
  7621. -moz-box-shadow:none;
  7622. -webkit-box-shadow:none;
  7623. box-shadow:none;
  7624. color:#AAAAAA;
  7625. }
  7626. #u13888 {
  7627. border-width:0px;
  7628. position:absolute;
  7629. left:1688px;
  7630. top:494px;
  7631. width:266px;
  7632. height:30px;
  7633. display:flex;
  7634. color:#AAAAAA;
  7635. }
  7636. #u13888 .text {
  7637. position:absolute;
  7638. align-self:flex-start;
  7639. padding:2px 2px 2px 0px;
  7640. box-sizing:border-box;
  7641. width:100%;
  7642. }
  7643. #u13888_div.disabled {
  7644. border-width:0px;
  7645. position:absolute;
  7646. left:0px;
  7647. top:0px;
  7648. width:266px;
  7649. height:30px;
  7650. background:inherit;
  7651. background-color:rgba(240, 240, 240, 1);
  7652. border:none;
  7653. border-radius:0px;
  7654. -moz-box-shadow:none;
  7655. -webkit-box-shadow:none;
  7656. box-shadow:none;
  7657. color:#AAAAAA;
  7658. }
  7659. #u13888.disabled {
  7660. }
  7661. .u13888_input_option {
  7662. }
  7663. #u13889_div {
  7664. border-width:0px;
  7665. position:absolute;
  7666. left:0px;
  7667. top:0px;
  7668. width:67px;
  7669. height:30px;
  7670. background:inherit;
  7671. background-color:rgba(255, 255, 255, 0);
  7672. border:none;
  7673. border-top:0px;
  7674. border-right:0px;
  7675. border-bottom:0px;
  7676. border-radius:0px;
  7677. border-top-left-radius:0px;
  7678. border-bottom-left-radius:0px;
  7679. -moz-box-shadow:none;
  7680. -webkit-box-shadow:none;
  7681. box-shadow:none;
  7682. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7683. font-weight:400;
  7684. font-style:normal;
  7685. font-size:14px;
  7686. }
  7687. #u13889 {
  7688. border-width:0px;
  7689. position:absolute;
  7690. left:2001px;
  7691. top:453px;
  7692. width:67px;
  7693. height:30px;
  7694. display:flex;
  7695. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7696. font-weight:400;
  7697. font-style:normal;
  7698. font-size:14px;
  7699. }
  7700. #u13889 .text {
  7701. position:absolute;
  7702. align-self:center;
  7703. padding:5px 10px 5px 0px;
  7704. box-sizing:border-box;
  7705. width:100%;
  7706. }
  7707. #u13889_text {
  7708. border-width:0px;
  7709. white-space:nowrap;
  7710. text-transform:none;
  7711. }
  7712. #u13890_div {
  7713. border-width:0px;
  7714. position:absolute;
  7715. left:0px;
  7716. top:0px;
  7717. width:80px;
  7718. height:80px;
  7719. background:inherit;
  7720. background-color:rgba(255, 255, 255, 1);
  7721. box-sizing:border-box;
  7722. border-width:1px;
  7723. border-style:solid;
  7724. border-color:rgba(170, 170, 170, 1);
  7725. border-radius:4px;
  7726. -moz-box-shadow:none;
  7727. -webkit-box-shadow:none;
  7728. box-shadow:none;
  7729. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7730. font-weight:400;
  7731. font-style:normal;
  7732. font-size:24px;
  7733. }
  7734. #u13890 {
  7735. border-width:0px;
  7736. position:absolute;
  7737. left:2001px;
  7738. top:483px;
  7739. width:80px;
  7740. height:80px;
  7741. display:flex;
  7742. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7743. font-weight:400;
  7744. font-style:normal;
  7745. font-size:24px;
  7746. }
  7747. #u13890 .text {
  7748. position:absolute;
  7749. align-self:center;
  7750. padding:2px 2px 2px 2px;
  7751. box-sizing:border-box;
  7752. width:100%;
  7753. }
  7754. #u13890_text {
  7755. border-width:0px;
  7756. word-wrap:break-word;
  7757. text-transform:none;
  7758. }
  7759. #u13891_div {
  7760. border-width:0px;
  7761. position:absolute;
  7762. left:0px;
  7763. top:0px;
  7764. width:71px;
  7765. height:35px;
  7766. background:inherit;
  7767. background-color:rgba(255, 255, 255, 0);
  7768. border:none;
  7769. border-top:0px;
  7770. border-right:0px;
  7771. border-bottom:0px;
  7772. border-radius:0px;
  7773. border-top-left-radius:0px;
  7774. border-bottom-left-radius:0px;
  7775. -moz-box-shadow:none;
  7776. -webkit-box-shadow:none;
  7777. box-shadow:none;
  7778. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  7779. font-weight:500;
  7780. font-style:normal;
  7781. font-size:18px;
  7782. color:#1890FF;
  7783. }
  7784. #u13891 {
  7785. border-width:0px;
  7786. position:absolute;
  7787. left:1681px;
  7788. top:798px;
  7789. width:71px;
  7790. height:35px;
  7791. display:flex;
  7792. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  7793. font-weight:500;
  7794. font-style:normal;
  7795. font-size:18px;
  7796. color:#1890FF;
  7797. }
  7798. #u13891 .text {
  7799. position:absolute;
  7800. align-self:center;
  7801. padding:5px 10px 5px 0px;
  7802. box-sizing:border-box;
  7803. width:100%;
  7804. }
  7805. #u13891_text {
  7806. border-width:0px;
  7807. white-space:nowrap;
  7808. text-transform:none;
  7809. }
  7810. #u13892_div {
  7811. border-width:0px;
  7812. position:absolute;
  7813. left:0px;
  7814. top:0px;
  7815. width:100px;
  7816. height:30px;
  7817. background:inherit;
  7818. background-color:rgba(255, 255, 255, 1);
  7819. box-sizing:border-box;
  7820. border-width:1px;
  7821. border-style:solid;
  7822. border-color:rgba(170, 170, 170, 1);
  7823. border-radius:4px;
  7824. -moz-box-shadow:none;
  7825. -webkit-box-shadow:none;
  7826. box-shadow:none;
  7827. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7828. font-weight:400;
  7829. font-style:normal;
  7830. font-size:12px;
  7831. }
  7832. #u13892 {
  7833. border-width:0px;
  7834. position:absolute;
  7835. left:1681px;
  7836. top:843px;
  7837. width:100px;
  7838. height:30px;
  7839. display:flex;
  7840. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7841. font-weight:400;
  7842. font-style:normal;
  7843. font-size:12px;
  7844. }
  7845. #u13892 .text {
  7846. position:absolute;
  7847. align-self:center;
  7848. padding:2px 2px 2px 2px;
  7849. box-sizing:border-box;
  7850. width:100%;
  7851. }
  7852. #u13892_text {
  7853. border-width:0px;
  7854. word-wrap:break-word;
  7855. text-transform:none;
  7856. }
  7857. #u13893_div {
  7858. border-width:0px;
  7859. position:absolute;
  7860. left:0px;
  7861. top:0px;
  7862. width:89px;
  7863. height:35px;
  7864. background:inherit;
  7865. background-color:rgba(255, 255, 255, 0);
  7866. border:none;
  7867. border-top:0px;
  7868. border-right:0px;
  7869. border-bottom:0px;
  7870. border-radius:0px;
  7871. border-top-left-radius:0px;
  7872. border-bottom-left-radius:0px;
  7873. -moz-box-shadow:none;
  7874. -webkit-box-shadow:none;
  7875. box-shadow:none;
  7876. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  7877. font-weight:500;
  7878. font-style:normal;
  7879. font-size:18px;
  7880. }
  7881. #u13893 {
  7882. border-width:0px;
  7883. position:absolute;
  7884. left:1786px;
  7885. top:798px;
  7886. width:89px;
  7887. height:35px;
  7888. display:flex;
  7889. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  7890. font-weight:500;
  7891. font-style:normal;
  7892. font-size:18px;
  7893. }
  7894. #u13893 .text {
  7895. position:absolute;
  7896. align-self:center;
  7897. padding:5px 10px 5px 0px;
  7898. box-sizing:border-box;
  7899. width:100%;
  7900. }
  7901. #u13893_text {
  7902. border-width:0px;
  7903. white-space:nowrap;
  7904. text-transform:none;
  7905. }
  7906. #u13894_div {
  7907. border-width:0px;
  7908. position:absolute;
  7909. left:0px;
  7910. top:0px;
  7911. width:67px;
  7912. height:30px;
  7913. background:inherit;
  7914. background-color:rgba(255, 255, 255, 0);
  7915. border:none;
  7916. border-top:0px;
  7917. border-right:0px;
  7918. border-bottom:0px;
  7919. border-radius:0px;
  7920. border-top-left-radius:0px;
  7921. border-bottom-left-radius:0px;
  7922. -moz-box-shadow:none;
  7923. -webkit-box-shadow:none;
  7924. box-shadow:none;
  7925. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7926. font-weight:400;
  7927. font-style:normal;
  7928. font-size:14px;
  7929. }
  7930. #u13894 {
  7931. border-width:0px;
  7932. position:absolute;
  7933. left:2321px;
  7934. top:298px;
  7935. width:67px;
  7936. height:30px;
  7937. display:flex;
  7938. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7939. font-weight:400;
  7940. font-style:normal;
  7941. font-size:14px;
  7942. }
  7943. #u13894 .text {
  7944. position:absolute;
  7945. align-self:center;
  7946. padding:5px 10px 5px 0px;
  7947. box-sizing:border-box;
  7948. width:100%;
  7949. }
  7950. #u13894_text {
  7951. border-width:0px;
  7952. white-space:nowrap;
  7953. text-transform:none;
  7954. }
  7955. #u13895 {
  7956. border-width:0px;
  7957. position:absolute;
  7958. left:0px;
  7959. top:0px;
  7960. width:0px;
  7961. height:0px;
  7962. }
  7963. #u13896_div {
  7964. border-width:0px;
  7965. position:absolute;
  7966. left:0px;
  7967. top:0px;
  7968. width:280px;
  7969. height:40px;
  7970. background:inherit;
  7971. background-color:rgba(255, 255, 255, 1);
  7972. box-sizing:border-box;
  7973. border-width:1px;
  7974. border-style:solid;
  7975. border-color:rgba(170, 170, 170, 1);
  7976. border-radius:4px;
  7977. -moz-box-shadow:none;
  7978. -webkit-box-shadow:none;
  7979. box-shadow:none;
  7980. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7981. font-weight:400;
  7982. font-style:normal;
  7983. text-align:left;
  7984. }
  7985. #u13896 {
  7986. border-width:0px;
  7987. position:absolute;
  7988. left:2321px;
  7989. top:328px;
  7990. width:280px;
  7991. height:40px;
  7992. display:flex;
  7993. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7994. font-weight:400;
  7995. font-style:normal;
  7996. text-align:left;
  7997. }
  7998. #u13896 .text {
  7999. position:absolute;
  8000. align-self:center;
  8001. padding:2px 2px 2px 10px;
  8002. box-sizing:border-box;
  8003. width:100%;
  8004. }
  8005. #u13896_text {
  8006. border-width:0px;
  8007. word-wrap:break-word;
  8008. text-transform:none;
  8009. visibility:hidden;
  8010. }
  8011. #u13897_input {
  8012. position:absolute;
  8013. left:0px;
  8014. top:0px;
  8015. width:132px;
  8016. height:31px;
  8017. padding:2px 2px 2px 2px;
  8018. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8019. font-weight:400;
  8020. font-style:normal;
  8021. font-size:13px;
  8022. letter-spacing:normal;
  8023. color:#AAAAAA;
  8024. vertical-align:none;
  8025. text-align:left;
  8026. text-transform:none;
  8027. background-color:transparent;
  8028. border-color:transparent;
  8029. }
  8030. #u13897_input.disabled {
  8031. position:absolute;
  8032. left:0px;
  8033. top:0px;
  8034. width:132px;
  8035. height:31px;
  8036. padding:2px 2px 2px 2px;
  8037. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8038. font-weight:400;
  8039. font-style:normal;
  8040. font-size:13px;
  8041. letter-spacing:normal;
  8042. color:#AAAAAA;
  8043. vertical-align:none;
  8044. text-align:left;
  8045. text-transform:none;
  8046. background-color:transparent;
  8047. border-color:transparent;
  8048. }
  8049. #u13897_div {
  8050. border-width:0px;
  8051. position:absolute;
  8052. left:0px;
  8053. top:0px;
  8054. width:132px;
  8055. height:31px;
  8056. background:inherit;
  8057. background-color:rgba(255, 255, 255, 0);
  8058. border:none;
  8059. border-radius:0px;
  8060. -moz-box-shadow:none;
  8061. -webkit-box-shadow:none;
  8062. box-shadow:none;
  8063. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8064. font-weight:400;
  8065. font-style:normal;
  8066. color:#AAAAAA;
  8067. }
  8068. #u13897 {
  8069. border-width:0px;
  8070. position:absolute;
  8071. left:2328px;
  8072. top:333px;
  8073. width:132px;
  8074. height:31px;
  8075. display:flex;
  8076. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8077. font-weight:400;
  8078. font-style:normal;
  8079. color:#AAAAAA;
  8080. }
  8081. #u13897 .text {
  8082. position:absolute;
  8083. align-self:center;
  8084. padding:2px 2px 2px 2px;
  8085. box-sizing:border-box;
  8086. width:100%;
  8087. }
  8088. #u13897_div.disabled {
  8089. border-width:0px;
  8090. position:absolute;
  8091. left:0px;
  8092. top:0px;
  8093. width:132px;
  8094. height:31px;
  8095. background:inherit;
  8096. background-color:rgba(240, 240, 240, 1);
  8097. border:none;
  8098. border-radius:0px;
  8099. -moz-box-shadow:none;
  8100. -webkit-box-shadow:none;
  8101. box-shadow:none;
  8102. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8103. font-weight:400;
  8104. font-style:normal;
  8105. color:#AAAAAA;
  8106. }
  8107. #u13897.disabled {
  8108. }
  8109. #u13898_div {
  8110. border-width:0px;
  8111. position:absolute;
  8112. left:0px;
  8113. top:0px;
  8114. width:155px;
  8115. height:35px;
  8116. background:inherit;
  8117. background-color:rgba(255, 255, 255, 0);
  8118. border:none;
  8119. border-top:0px;
  8120. border-right:0px;
  8121. border-bottom:0px;
  8122. border-radius:0px;
  8123. border-top-left-radius:0px;
  8124. border-bottom-left-radius:0px;
  8125. -moz-box-shadow:none;
  8126. -webkit-box-shadow:none;
  8127. box-shadow:none;
  8128. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  8129. font-weight:500;
  8130. font-style:normal;
  8131. font-size:18px;
  8132. }
  8133. #u13898 {
  8134. border-width:0px;
  8135. position:absolute;
  8136. left:1681px;
  8137. top:613px;
  8138. width:155px;
  8139. height:35px;
  8140. display:flex;
  8141. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  8142. font-weight:500;
  8143. font-style:normal;
  8144. font-size:18px;
  8145. }
  8146. #u13898 .text {
  8147. position:absolute;
  8148. align-self:center;
  8149. padding:5px 10px 5px 0px;
  8150. box-sizing:border-box;
  8151. width:100%;
  8152. }
  8153. #u13898_text {
  8154. border-width:0px;
  8155. white-space:nowrap;
  8156. text-transform:none;
  8157. }
  8158. #u13899 {
  8159. border-width:0px;
  8160. position:absolute;
  8161. left:0px;
  8162. top:0px;
  8163. width:0px;
  8164. height:0px;
  8165. }
  8166. #u13900_div {
  8167. border-width:0px;
  8168. position:absolute;
  8169. left:0px;
  8170. top:0px;
  8171. width:80px;
  8172. height:80px;
  8173. background:inherit;
  8174. background-color:rgba(255, 255, 255, 1);
  8175. box-sizing:border-box;
  8176. border-width:1px;
  8177. border-style:solid;
  8178. border-color:rgba(170, 170, 170, 1);
  8179. border-radius:4px;
  8180. -moz-box-shadow:none;
  8181. -webkit-box-shadow:none;
  8182. box-shadow:none;
  8183. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8184. font-weight:400;
  8185. font-style:normal;
  8186. font-size:24px;
  8187. }
  8188. #u13900 {
  8189. border-width:0px;
  8190. position:absolute;
  8191. left:1682px;
  8192. top:658px;
  8193. width:80px;
  8194. height:80px;
  8195. display:flex;
  8196. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8197. font-weight:400;
  8198. font-style:normal;
  8199. font-size:24px;
  8200. }
  8201. #u13900 .text {
  8202. position:absolute;
  8203. align-self:center;
  8204. padding:2px 2px 2px 2px;
  8205. box-sizing:border-box;
  8206. width:100%;
  8207. }
  8208. #u13900_text {
  8209. border-width:0px;
  8210. word-wrap:break-word;
  8211. text-transform:none;
  8212. visibility:hidden;
  8213. }
  8214. #u13901_div {
  8215. border-width:0px;
  8216. position:absolute;
  8217. left:0px;
  8218. top:0px;
  8219. width:28px;
  8220. height:27px;
  8221. background:inherit;
  8222. background-color:rgba(0, 191, 191, 1);
  8223. box-sizing:border-box;
  8224. border-width:1px;
  8225. border-style:solid;
  8226. border-color:rgba(170, 170, 170, 1);
  8227. border-radius:4px;
  8228. -moz-box-shadow:none;
  8229. -webkit-box-shadow:none;
  8230. box-shadow:none;
  8231. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8232. font-weight:400;
  8233. font-style:normal;
  8234. text-align:left;
  8235. }
  8236. #u13901 {
  8237. border-width:0px;
  8238. position:absolute;
  8239. left:1708px;
  8240. top:671px;
  8241. width:28px;
  8242. height:27px;
  8243. display:flex;
  8244. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8245. font-weight:400;
  8246. font-style:normal;
  8247. text-align:left;
  8248. }
  8249. #u13901 .text {
  8250. position:absolute;
  8251. align-self:center;
  8252. padding:2px 2px 2px 10px;
  8253. box-sizing:border-box;
  8254. width:100%;
  8255. }
  8256. #u13901_text {
  8257. border-width:0px;
  8258. word-wrap:break-word;
  8259. text-transform:none;
  8260. visibility:hidden;
  8261. }
  8262. #u13902_div {
  8263. border-width:0px;
  8264. position:absolute;
  8265. left:0px;
  8266. top:0px;
  8267. width:29px;
  8268. height:30px;
  8269. background:inherit;
  8270. background-color:rgba(255, 255, 255, 0);
  8271. border:none;
  8272. border-top:0px;
  8273. border-right:0px;
  8274. border-bottom:0px;
  8275. border-radius:0px;
  8276. border-top-left-radius:0px;
  8277. border-bottom-left-radius:0px;
  8278. -moz-box-shadow:none;
  8279. -webkit-box-shadow:none;
  8280. box-shadow:none;
  8281. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8282. font-weight:400;
  8283. font-style:normal;
  8284. font-size:14px;
  8285. }
  8286. #u13902 {
  8287. border-width:0px;
  8288. position:absolute;
  8289. left:1707px;
  8290. top:703px;
  8291. width:29px;
  8292. height:30px;
  8293. display:flex;
  8294. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8295. font-weight:400;
  8296. font-style:normal;
  8297. font-size:14px;
  8298. }
  8299. #u13902 .text {
  8300. position:absolute;
  8301. align-self:center;
  8302. padding:5px 0px 5px 0px;
  8303. box-sizing:border-box;
  8304. width:100%;
  8305. }
  8306. #u13902_text {
  8307. border-width:0px;
  8308. white-space:nowrap;
  8309. text-transform:none;
  8310. }
  8311. #u13903 {
  8312. border-width:0px;
  8313. position:absolute;
  8314. left:0px;
  8315. top:0px;
  8316. width:0px;
  8317. height:0px;
  8318. }
  8319. #u13904_div {
  8320. border-width:0px;
  8321. position:absolute;
  8322. left:0px;
  8323. top:0px;
  8324. width:80px;
  8325. height:80px;
  8326. background:inherit;
  8327. background-color:rgba(255, 255, 255, 1);
  8328. box-sizing:border-box;
  8329. border-width:1px;
  8330. border-style:solid;
  8331. border-color:rgba(170, 170, 170, 1);
  8332. border-radius:4px;
  8333. -moz-box-shadow:none;
  8334. -webkit-box-shadow:none;
  8335. box-shadow:none;
  8336. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8337. font-weight:400;
  8338. font-style:normal;
  8339. font-size:24px;
  8340. }
  8341. #u13904 {
  8342. border-width:0px;
  8343. position:absolute;
  8344. left:1781px;
  8345. top:658px;
  8346. width:80px;
  8347. height:80px;
  8348. display:flex;
  8349. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8350. font-weight:400;
  8351. font-style:normal;
  8352. font-size:24px;
  8353. }
  8354. #u13904 .text {
  8355. position:absolute;
  8356. align-self:center;
  8357. padding:2px 2px 2px 2px;
  8358. box-sizing:border-box;
  8359. width:100%;
  8360. }
  8361. #u13904_text {
  8362. border-width:0px;
  8363. word-wrap:break-word;
  8364. text-transform:none;
  8365. visibility:hidden;
  8366. }
  8367. #u13905_div {
  8368. border-width:0px;
  8369. position:absolute;
  8370. left:0px;
  8371. top:0px;
  8372. width:28px;
  8373. height:27px;
  8374. background:inherit;
  8375. background-color:rgba(128, 128, 255, 1);
  8376. box-sizing:border-box;
  8377. border-width:1px;
  8378. border-style:solid;
  8379. border-color:rgba(170, 170, 170, 1);
  8380. border-radius:4px;
  8381. -moz-box-shadow:none;
  8382. -webkit-box-shadow:none;
  8383. box-shadow:none;
  8384. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8385. font-weight:400;
  8386. font-style:normal;
  8387. text-align:left;
  8388. }
  8389. #u13905 {
  8390. border-width:0px;
  8391. position:absolute;
  8392. left:1807px;
  8393. top:671px;
  8394. width:28px;
  8395. height:27px;
  8396. display:flex;
  8397. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8398. font-weight:400;
  8399. font-style:normal;
  8400. text-align:left;
  8401. }
  8402. #u13905 .text {
  8403. position:absolute;
  8404. align-self:center;
  8405. padding:2px 2px 2px 10px;
  8406. box-sizing:border-box;
  8407. width:100%;
  8408. }
  8409. #u13905_text {
  8410. border-width:0px;
  8411. word-wrap:break-word;
  8412. text-transform:none;
  8413. visibility:hidden;
  8414. }
  8415. #u13906_div {
  8416. border-width:0px;
  8417. position:absolute;
  8418. left:0px;
  8419. top:0px;
  8420. width:15px;
  8421. height:30px;
  8422. background:inherit;
  8423. background-color:rgba(255, 255, 255, 0);
  8424. border:none;
  8425. border-top:0px;
  8426. border-right:0px;
  8427. border-bottom:0px;
  8428. border-radius:0px;
  8429. border-top-left-radius:0px;
  8430. border-bottom-left-radius:0px;
  8431. -moz-box-shadow:none;
  8432. -webkit-box-shadow:none;
  8433. box-shadow:none;
  8434. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8435. font-weight:400;
  8436. font-style:normal;
  8437. font-size:14px;
  8438. }
  8439. #u13906 {
  8440. border-width:0px;
  8441. position:absolute;
  8442. left:1814px;
  8443. top:703px;
  8444. width:15px;
  8445. height:30px;
  8446. display:flex;
  8447. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8448. font-weight:400;
  8449. font-style:normal;
  8450. font-size:14px;
  8451. }
  8452. #u13906 .text {
  8453. position:absolute;
  8454. align-self:center;
  8455. padding:5px 0px 5px 0px;
  8456. box-sizing:border-box;
  8457. width:100%;
  8458. }
  8459. #u13906_text {
  8460. border-width:0px;
  8461. white-space:nowrap;
  8462. text-transform:none;
  8463. }
  8464. #u13907 {
  8465. border-width:0px;
  8466. position:absolute;
  8467. left:0px;
  8468. top:0px;
  8469. width:0px;
  8470. height:0px;
  8471. }
  8472. #u13908_div {
  8473. border-width:0px;
  8474. position:absolute;
  8475. left:0px;
  8476. top:0px;
  8477. width:280px;
  8478. height:40px;
  8479. background:inherit;
  8480. background-color:rgba(255, 255, 255, 1);
  8481. box-sizing:border-box;
  8482. border-width:1px;
  8483. border-style:solid;
  8484. border-color:rgba(170, 170, 170, 1);
  8485. border-radius:4px;
  8486. -moz-box-shadow:none;
  8487. -webkit-box-shadow:none;
  8488. box-shadow:none;
  8489. }
  8490. #u13908 {
  8491. border-width:0px;
  8492. position:absolute;
  8493. left:1681px;
  8494. top:328px;
  8495. width:280px;
  8496. height:40px;
  8497. display:flex;
  8498. }
  8499. #u13908 .text {
  8500. position:absolute;
  8501. align-self:center;
  8502. padding:2px 2px 2px 0px;
  8503. box-sizing:border-box;
  8504. width:100%;
  8505. }
  8506. #u13908_text {
  8507. border-width:0px;
  8508. word-wrap:break-word;
  8509. text-transform:none;
  8510. visibility:hidden;
  8511. }
  8512. #u13909_input {
  8513. position:absolute;
  8514. left:0px;
  8515. top:0px;
  8516. width:266px;
  8517. height:30px;
  8518. padding:2px 2px 2px 0px;
  8519. font-family:'ArialMT', 'Arial', sans-serif;
  8520. font-weight:400;
  8521. font-style:normal;
  8522. font-size:13px;
  8523. letter-spacing:normal;
  8524. color:#AAAAAA;
  8525. vertical-align:none;
  8526. text-align:left;
  8527. text-transform:none;
  8528. background-color:transparent;
  8529. border-color:transparent;
  8530. }
  8531. #u13909_input.disabled {
  8532. position:absolute;
  8533. left:0px;
  8534. top:0px;
  8535. width:266px;
  8536. height:30px;
  8537. padding:2px 2px 2px 0px;
  8538. font-family:'ArialMT', 'Arial', sans-serif;
  8539. font-weight:400;
  8540. font-style:normal;
  8541. font-size:13px;
  8542. letter-spacing:normal;
  8543. color:#AAAAAA;
  8544. vertical-align:none;
  8545. text-align:left;
  8546. text-transform:none;
  8547. background-color:transparent;
  8548. border-color:transparent;
  8549. }
  8550. #u13909_div {
  8551. border-width:0px;
  8552. position:absolute;
  8553. left:0px;
  8554. top:0px;
  8555. width:266px;
  8556. height:30px;
  8557. background:inherit;
  8558. background-color:rgba(255, 255, 255, 1);
  8559. border:none;
  8560. border-radius:0px;
  8561. -moz-box-shadow:none;
  8562. -webkit-box-shadow:none;
  8563. box-shadow:none;
  8564. color:#AAAAAA;
  8565. }
  8566. #u13909 {
  8567. border-width:0px;
  8568. position:absolute;
  8569. left:1688px;
  8570. top:334px;
  8571. width:266px;
  8572. height:30px;
  8573. display:flex;
  8574. color:#AAAAAA;
  8575. }
  8576. #u13909 .text {
  8577. position:absolute;
  8578. align-self:flex-start;
  8579. padding:2px 2px 2px 0px;
  8580. box-sizing:border-box;
  8581. width:100%;
  8582. }
  8583. #u13909_div.disabled {
  8584. border-width:0px;
  8585. position:absolute;
  8586. left:0px;
  8587. top:0px;
  8588. width:266px;
  8589. height:30px;
  8590. background:inherit;
  8591. background-color:rgba(240, 240, 240, 1);
  8592. border:none;
  8593. border-radius:0px;
  8594. -moz-box-shadow:none;
  8595. -webkit-box-shadow:none;
  8596. box-shadow:none;
  8597. color:#AAAAAA;
  8598. }
  8599. #u13909.disabled {
  8600. }
  8601. .u13909_input_option {
  8602. }
  8603. #u13910_div {
  8604. border-width:0px;
  8605. position:absolute;
  8606. left:0px;
  8607. top:0px;
  8608. width:60px;
  8609. height:30px;
  8610. background:inherit;
  8611. background-color:rgba(255, 255, 255, 0);
  8612. border:none;
  8613. border-top:0px;
  8614. border-right:0px;
  8615. border-bottom:0px;
  8616. border-radius:0px;
  8617. border-top-left-radius:0px;
  8618. border-bottom-left-radius:0px;
  8619. -moz-box-shadow:none;
  8620. -webkit-box-shadow:none;
  8621. box-shadow:none;
  8622. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8623. font-weight:400;
  8624. font-style:normal;
  8625. font-size:14px;
  8626. }
  8627. #u13910 {
  8628. border-width:0px;
  8629. position:absolute;
  8630. left:1681px;
  8631. top:378px;
  8632. width:60px;
  8633. height:30px;
  8634. display:flex;
  8635. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8636. font-weight:400;
  8637. font-style:normal;
  8638. font-size:14px;
  8639. }
  8640. #u13910 .text {
  8641. position:absolute;
  8642. align-self:center;
  8643. padding:5px 10px 5px 0px;
  8644. box-sizing:border-box;
  8645. width:100%;
  8646. }
  8647. #u13910_text {
  8648. border-width:0px;
  8649. white-space:nowrap;
  8650. text-transform:none;
  8651. }
  8652. #u13911 {
  8653. border-width:0px;
  8654. position:absolute;
  8655. left:0px;
  8656. top:0px;
  8657. width:0px;
  8658. height:0px;
  8659. }
  8660. #u13912_div {
  8661. border-width:0px;
  8662. position:absolute;
  8663. left:0px;
  8664. top:0px;
  8665. width:280px;
  8666. height:40px;
  8667. background:inherit;
  8668. background-color:rgba(255, 255, 255, 1);
  8669. box-sizing:border-box;
  8670. border-width:1px;
  8671. border-style:solid;
  8672. border-color:rgba(170, 170, 170, 1);
  8673. border-radius:4px;
  8674. -moz-box-shadow:none;
  8675. -webkit-box-shadow:none;
  8676. box-shadow:none;
  8677. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8678. font-weight:400;
  8679. font-style:normal;
  8680. text-align:left;
  8681. }
  8682. #u13912 {
  8683. border-width:0px;
  8684. position:absolute;
  8685. left:1681px;
  8686. top:408px;
  8687. width:280px;
  8688. height:40px;
  8689. display:flex;
  8690. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8691. font-weight:400;
  8692. font-style:normal;
  8693. text-align:left;
  8694. }
  8695. #u13912 .text {
  8696. position:absolute;
  8697. align-self:center;
  8698. padding:2px 2px 2px 10px;
  8699. box-sizing:border-box;
  8700. width:100%;
  8701. }
  8702. #u13912_text {
  8703. border-width:0px;
  8704. word-wrap:break-word;
  8705. text-transform:none;
  8706. visibility:hidden;
  8707. }
  8708. #u13913_input {
  8709. position:absolute;
  8710. left:0px;
  8711. top:0px;
  8712. width:132px;
  8713. height:31px;
  8714. padding:2px 2px 2px 2px;
  8715. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8716. font-weight:400;
  8717. font-style:normal;
  8718. font-size:13px;
  8719. letter-spacing:normal;
  8720. color:#AAAAAA;
  8721. vertical-align:none;
  8722. text-align:left;
  8723. text-transform:none;
  8724. background-color:transparent;
  8725. border-color:transparent;
  8726. }
  8727. #u13913_input.disabled {
  8728. position:absolute;
  8729. left:0px;
  8730. top:0px;
  8731. width:132px;
  8732. height:31px;
  8733. padding:2px 2px 2px 2px;
  8734. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8735. font-weight:400;
  8736. font-style:normal;
  8737. font-size:13px;
  8738. letter-spacing:normal;
  8739. color:#AAAAAA;
  8740. vertical-align:none;
  8741. text-align:left;
  8742. text-transform:none;
  8743. background-color:transparent;
  8744. border-color:transparent;
  8745. }
  8746. #u13913_div {
  8747. border-width:0px;
  8748. position:absolute;
  8749. left:0px;
  8750. top:0px;
  8751. width:132px;
  8752. height:31px;
  8753. background:inherit;
  8754. background-color:rgba(255, 255, 255, 0);
  8755. border:none;
  8756. border-radius:0px;
  8757. -moz-box-shadow:none;
  8758. -webkit-box-shadow:none;
  8759. box-shadow:none;
  8760. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8761. font-weight:400;
  8762. font-style:normal;
  8763. color:#AAAAAA;
  8764. }
  8765. #u13913 {
  8766. border-width:0px;
  8767. position:absolute;
  8768. left:1688px;
  8769. top:413px;
  8770. width:132px;
  8771. height:31px;
  8772. display:flex;
  8773. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8774. font-weight:400;
  8775. font-style:normal;
  8776. color:#AAAAAA;
  8777. }
  8778. #u13913 .text {
  8779. position:absolute;
  8780. align-self:center;
  8781. padding:2px 2px 2px 2px;
  8782. box-sizing:border-box;
  8783. width:100%;
  8784. }
  8785. #u13913_div.disabled {
  8786. border-width:0px;
  8787. position:absolute;
  8788. left:0px;
  8789. top:0px;
  8790. width:132px;
  8791. height:31px;
  8792. background:inherit;
  8793. background-color:rgba(240, 240, 240, 1);
  8794. border:none;
  8795. border-radius:0px;
  8796. -moz-box-shadow:none;
  8797. -webkit-box-shadow:none;
  8798. box-shadow:none;
  8799. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8800. font-weight:400;
  8801. font-style:normal;
  8802. color:#AAAAAA;
  8803. }
  8804. #u13913.disabled {
  8805. }
  8806. #u13914_div {
  8807. border-width:0px;
  8808. position:absolute;
  8809. left:0px;
  8810. top:0px;
  8811. width:74px;
  8812. height:30px;
  8813. background:inherit;
  8814. background-color:rgba(255, 255, 255, 0);
  8815. border:none;
  8816. border-top:0px;
  8817. border-right:0px;
  8818. border-bottom:0px;
  8819. border-radius:0px;
  8820. border-top-left-radius:0px;
  8821. border-bottom-left-radius:0px;
  8822. -moz-box-shadow:none;
  8823. -webkit-box-shadow:none;
  8824. box-shadow:none;
  8825. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8826. font-weight:400;
  8827. font-style:normal;
  8828. font-size:14px;
  8829. }
  8830. #u13914 {
  8831. border-width:0px;
  8832. position:absolute;
  8833. left:2001px;
  8834. top:378px;
  8835. width:74px;
  8836. height:30px;
  8837. display:flex;
  8838. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8839. font-weight:400;
  8840. font-style:normal;
  8841. font-size:14px;
  8842. }
  8843. #u13914 .text {
  8844. position:absolute;
  8845. align-self:center;
  8846. padding:5px 10px 5px 0px;
  8847. box-sizing:border-box;
  8848. width:100%;
  8849. }
  8850. #u13914_text {
  8851. border-width:0px;
  8852. white-space:nowrap;
  8853. text-transform:none;
  8854. }
  8855. #u13915 {
  8856. border-width:0px;
  8857. position:absolute;
  8858. left:0px;
  8859. top:0px;
  8860. width:0px;
  8861. height:0px;
  8862. }
  8863. #u13916_div {
  8864. border-width:0px;
  8865. position:absolute;
  8866. left:0px;
  8867. top:0px;
  8868. width:280px;
  8869. height:40px;
  8870. background:inherit;
  8871. background-color:rgba(255, 255, 255, 1);
  8872. box-sizing:border-box;
  8873. border-width:1px;
  8874. border-style:solid;
  8875. border-color:rgba(170, 170, 170, 1);
  8876. border-radius:4px;
  8877. -moz-box-shadow:none;
  8878. -webkit-box-shadow:none;
  8879. box-shadow:none;
  8880. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8881. font-weight:400;
  8882. font-style:normal;
  8883. text-align:left;
  8884. }
  8885. #u13916 {
  8886. border-width:0px;
  8887. position:absolute;
  8888. left:2001px;
  8889. top:408px;
  8890. width:280px;
  8891. height:40px;
  8892. display:flex;
  8893. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8894. font-weight:400;
  8895. font-style:normal;
  8896. text-align:left;
  8897. }
  8898. #u13916 .text {
  8899. position:absolute;
  8900. align-self:center;
  8901. padding:2px 2px 2px 10px;
  8902. box-sizing:border-box;
  8903. width:100%;
  8904. }
  8905. #u13916_text {
  8906. border-width:0px;
  8907. word-wrap:break-word;
  8908. text-transform:none;
  8909. visibility:hidden;
  8910. }
  8911. #u13917_input {
  8912. position:absolute;
  8913. left:0px;
  8914. top:0px;
  8915. width:132px;
  8916. height:31px;
  8917. padding:2px 2px 2px 2px;
  8918. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8919. font-weight:400;
  8920. font-style:normal;
  8921. font-size:13px;
  8922. letter-spacing:normal;
  8923. color:#AAAAAA;
  8924. vertical-align:none;
  8925. text-align:left;
  8926. text-transform:none;
  8927. background-color:transparent;
  8928. border-color:transparent;
  8929. }
  8930. #u13917_input.disabled {
  8931. position:absolute;
  8932. left:0px;
  8933. top:0px;
  8934. width:132px;
  8935. height:31px;
  8936. padding:2px 2px 2px 2px;
  8937. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8938. font-weight:400;
  8939. font-style:normal;
  8940. font-size:13px;
  8941. letter-spacing:normal;
  8942. color:#AAAAAA;
  8943. vertical-align:none;
  8944. text-align:left;
  8945. text-transform:none;
  8946. background-color:transparent;
  8947. border-color:transparent;
  8948. }
  8949. #u13917_div {
  8950. border-width:0px;
  8951. position:absolute;
  8952. left:0px;
  8953. top:0px;
  8954. width:132px;
  8955. height:31px;
  8956. background:inherit;
  8957. background-color:rgba(255, 255, 255, 0);
  8958. border:none;
  8959. border-radius:0px;
  8960. -moz-box-shadow:none;
  8961. -webkit-box-shadow:none;
  8962. box-shadow:none;
  8963. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8964. font-weight:400;
  8965. font-style:normal;
  8966. color:#AAAAAA;
  8967. }
  8968. #u13917 {
  8969. border-width:0px;
  8970. position:absolute;
  8971. left:2008px;
  8972. top:413px;
  8973. width:132px;
  8974. height:31px;
  8975. display:flex;
  8976. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8977. font-weight:400;
  8978. font-style:normal;
  8979. color:#AAAAAA;
  8980. }
  8981. #u13917 .text {
  8982. position:absolute;
  8983. align-self:center;
  8984. padding:2px 2px 2px 2px;
  8985. box-sizing:border-box;
  8986. width:100%;
  8987. }
  8988. #u13917_div.disabled {
  8989. border-width:0px;
  8990. position:absolute;
  8991. left:0px;
  8992. top:0px;
  8993. width:132px;
  8994. height:31px;
  8995. background:inherit;
  8996. background-color:rgba(240, 240, 240, 1);
  8997. border:none;
  8998. border-radius:0px;
  8999. -moz-box-shadow:none;
  9000. -webkit-box-shadow:none;
  9001. box-shadow:none;
  9002. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9003. font-weight:400;
  9004. font-style:normal;
  9005. color:#AAAAAA;
  9006. }
  9007. #u13917.disabled {
  9008. }
  9009. #u13918_div {
  9010. border-width:0px;
  9011. position:absolute;
  9012. left:0px;
  9013. top:0px;
  9014. width:67px;
  9015. height:30px;
  9016. background:inherit;
  9017. background-color:rgba(255, 255, 255, 0);
  9018. border:none;
  9019. border-top:0px;
  9020. border-right:0px;
  9021. border-bottom:0px;
  9022. border-radius:0px;
  9023. border-top-left-radius:0px;
  9024. border-bottom-left-radius:0px;
  9025. -moz-box-shadow:none;
  9026. -webkit-box-shadow:none;
  9027. box-shadow:none;
  9028. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9029. font-weight:400;
  9030. font-style:normal;
  9031. font-size:14px;
  9032. }
  9033. #u13918 {
  9034. border-width:0px;
  9035. position:absolute;
  9036. left:2321px;
  9037. top:378px;
  9038. width:67px;
  9039. height:30px;
  9040. display:flex;
  9041. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9042. font-weight:400;
  9043. font-style:normal;
  9044. font-size:14px;
  9045. }
  9046. #u13918 .text {
  9047. position:absolute;
  9048. align-self:center;
  9049. padding:5px 10px 5px 0px;
  9050. box-sizing:border-box;
  9051. width:100%;
  9052. }
  9053. #u13918_text {
  9054. border-width:0px;
  9055. white-space:nowrap;
  9056. text-transform:none;
  9057. }
  9058. #u13919 {
  9059. border-width:0px;
  9060. position:absolute;
  9061. left:0px;
  9062. top:0px;
  9063. width:0px;
  9064. height:0px;
  9065. }
  9066. #u13920_div {
  9067. border-width:0px;
  9068. position:absolute;
  9069. left:0px;
  9070. top:0px;
  9071. width:280px;
  9072. height:40px;
  9073. background:inherit;
  9074. background-color:rgba(255, 255, 255, 1);
  9075. box-sizing:border-box;
  9076. border-width:1px;
  9077. border-style:solid;
  9078. border-color:rgba(170, 170, 170, 1);
  9079. border-radius:4px;
  9080. -moz-box-shadow:none;
  9081. -webkit-box-shadow:none;
  9082. box-shadow:none;
  9083. }
  9084. #u13920 {
  9085. border-width:0px;
  9086. position:absolute;
  9087. left:2321px;
  9088. top:408px;
  9089. width:280px;
  9090. height:40px;
  9091. display:flex;
  9092. }
  9093. #u13920 .text {
  9094. position:absolute;
  9095. align-self:center;
  9096. padding:2px 2px 2px 0px;
  9097. box-sizing:border-box;
  9098. width:100%;
  9099. }
  9100. #u13920_text {
  9101. border-width:0px;
  9102. word-wrap:break-word;
  9103. text-transform:none;
  9104. visibility:hidden;
  9105. }
  9106. #u13921_input {
  9107. position:absolute;
  9108. left:0px;
  9109. top:0px;
  9110. width:266px;
  9111. height:30px;
  9112. padding:2px 2px 2px 0px;
  9113. font-family:'ArialMT', 'Arial', sans-serif;
  9114. font-weight:400;
  9115. font-style:normal;
  9116. font-size:13px;
  9117. letter-spacing:normal;
  9118. color:#AAAAAA;
  9119. vertical-align:none;
  9120. text-align:left;
  9121. text-transform:none;
  9122. background-color:transparent;
  9123. border-color:transparent;
  9124. }
  9125. #u13921_input.disabled {
  9126. position:absolute;
  9127. left:0px;
  9128. top:0px;
  9129. width:266px;
  9130. height:30px;
  9131. padding:2px 2px 2px 0px;
  9132. font-family:'ArialMT', 'Arial', sans-serif;
  9133. font-weight:400;
  9134. font-style:normal;
  9135. font-size:13px;
  9136. letter-spacing:normal;
  9137. color:#AAAAAA;
  9138. vertical-align:none;
  9139. text-align:left;
  9140. text-transform:none;
  9141. background-color:transparent;
  9142. border-color:transparent;
  9143. }
  9144. #u13921_div {
  9145. border-width:0px;
  9146. position:absolute;
  9147. left:0px;
  9148. top:0px;
  9149. width:266px;
  9150. height:30px;
  9151. background:inherit;
  9152. background-color:rgba(255, 255, 255, 1);
  9153. border:none;
  9154. border-radius:0px;
  9155. -moz-box-shadow:none;
  9156. -webkit-box-shadow:none;
  9157. box-shadow:none;
  9158. color:#AAAAAA;
  9159. }
  9160. #u13921 {
  9161. border-width:0px;
  9162. position:absolute;
  9163. left:2328px;
  9164. top:414px;
  9165. width:266px;
  9166. height:30px;
  9167. display:flex;
  9168. color:#AAAAAA;
  9169. }
  9170. #u13921 .text {
  9171. position:absolute;
  9172. align-self:flex-start;
  9173. padding:2px 2px 2px 0px;
  9174. box-sizing:border-box;
  9175. width:100%;
  9176. }
  9177. #u13921_div.disabled {
  9178. border-width:0px;
  9179. position:absolute;
  9180. left:0px;
  9181. top:0px;
  9182. width:266px;
  9183. height:30px;
  9184. background:inherit;
  9185. background-color:rgba(240, 240, 240, 1);
  9186. border:none;
  9187. border-radius:0px;
  9188. -moz-box-shadow:none;
  9189. -webkit-box-shadow:none;
  9190. box-shadow:none;
  9191. color:#AAAAAA;
  9192. }
  9193. #u13921.disabled {
  9194. }
  9195. .u13921_input_option {
  9196. }
  9197. #u13922_div {
  9198. border-width:0px;
  9199. position:absolute;
  9200. left:0px;
  9201. top:0px;
  9202. width:81px;
  9203. height:30px;
  9204. background:inherit;
  9205. background-color:rgba(255, 255, 255, 0);
  9206. border:none;
  9207. border-top:0px;
  9208. border-right:0px;
  9209. border-bottom:0px;
  9210. border-radius:0px;
  9211. border-top-left-radius:0px;
  9212. border-bottom-left-radius:0px;
  9213. -moz-box-shadow:none;
  9214. -webkit-box-shadow:none;
  9215. box-shadow:none;
  9216. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9217. font-weight:400;
  9218. font-style:normal;
  9219. font-size:14px;
  9220. }
  9221. #u13922 {
  9222. border-width:0px;
  9223. position:absolute;
  9224. left:2321px;
  9225. top:218px;
  9226. width:81px;
  9227. height:30px;
  9228. display:flex;
  9229. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9230. font-weight:400;
  9231. font-style:normal;
  9232. font-size:14px;
  9233. }
  9234. #u13922 .text {
  9235. position:absolute;
  9236. align-self:center;
  9237. padding:5px 10px 5px 0px;
  9238. box-sizing:border-box;
  9239. width:100%;
  9240. }
  9241. #u13922_text {
  9242. border-width:0px;
  9243. white-space:nowrap;
  9244. text-transform:none;
  9245. }
  9246. #u13923 {
  9247. border-width:0px;
  9248. position:absolute;
  9249. left:0px;
  9250. top:0px;
  9251. width:0px;
  9252. height:0px;
  9253. }
  9254. #u13924_div {
  9255. border-width:0px;
  9256. position:absolute;
  9257. left:0px;
  9258. top:0px;
  9259. width:280px;
  9260. height:40px;
  9261. background:inherit;
  9262. background-color:rgba(242, 242, 242, 1);
  9263. box-sizing:border-box;
  9264. border-width:1px;
  9265. border-style:solid;
  9266. border-color:rgba(170, 170, 170, 1);
  9267. border-radius:4px;
  9268. -moz-box-shadow:none;
  9269. -webkit-box-shadow:none;
  9270. box-shadow:none;
  9271. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9272. font-weight:400;
  9273. font-style:normal;
  9274. text-align:left;
  9275. }
  9276. #u13924 {
  9277. border-width:0px;
  9278. position:absolute;
  9279. left:2321px;
  9280. top:248px;
  9281. width:280px;
  9282. height:40px;
  9283. display:flex;
  9284. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9285. font-weight:400;
  9286. font-style:normal;
  9287. text-align:left;
  9288. }
  9289. #u13924 .text {
  9290. position:absolute;
  9291. align-self:center;
  9292. padding:2px 2px 2px 10px;
  9293. box-sizing:border-box;
  9294. width:100%;
  9295. }
  9296. #u13924_text {
  9297. border-width:0px;
  9298. word-wrap:break-word;
  9299. text-transform:none;
  9300. visibility:hidden;
  9301. }
  9302. #u13925_input {
  9303. position:absolute;
  9304. left:0px;
  9305. top:0px;
  9306. width:132px;
  9307. height:31px;
  9308. padding:2px 2px 2px 2px;
  9309. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9310. font-weight:400;
  9311. font-style:normal;
  9312. font-size:13px;
  9313. letter-spacing:normal;
  9314. color:#AAAAAA;
  9315. vertical-align:none;
  9316. text-align:left;
  9317. text-transform:none;
  9318. background-color:transparent;
  9319. border-color:transparent;
  9320. }
  9321. #u13925_input.disabled {
  9322. position:absolute;
  9323. left:0px;
  9324. top:0px;
  9325. width:132px;
  9326. height:31px;
  9327. padding:2px 2px 2px 2px;
  9328. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9329. font-weight:400;
  9330. font-style:normal;
  9331. font-size:13px;
  9332. letter-spacing:normal;
  9333. color:#AAAAAA;
  9334. vertical-align:none;
  9335. text-align:left;
  9336. text-transform:none;
  9337. background-color:transparent;
  9338. border-color:transparent;
  9339. }
  9340. #u13925_div {
  9341. border-width:0px;
  9342. position:absolute;
  9343. left:0px;
  9344. top:0px;
  9345. width:132px;
  9346. height:31px;
  9347. background:inherit;
  9348. background-color:rgba(242, 242, 242, 1);
  9349. border:none;
  9350. border-radius:0px;
  9351. -moz-box-shadow:none;
  9352. -webkit-box-shadow:none;
  9353. box-shadow:none;
  9354. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9355. font-weight:400;
  9356. font-style:normal;
  9357. color:#AAAAAA;
  9358. }
  9359. #u13925 {
  9360. border-width:0px;
  9361. position:absolute;
  9362. left:2328px;
  9363. top:253px;
  9364. width:132px;
  9365. height:31px;
  9366. display:flex;
  9367. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9368. font-weight:400;
  9369. font-style:normal;
  9370. color:#AAAAAA;
  9371. }
  9372. #u13925 .text {
  9373. position:absolute;
  9374. align-self:center;
  9375. padding:2px 2px 2px 2px;
  9376. box-sizing:border-box;
  9377. width:100%;
  9378. }
  9379. #u13925_div.disabled {
  9380. border-width:0px;
  9381. position:absolute;
  9382. left:0px;
  9383. top:0px;
  9384. width:132px;
  9385. height:31px;
  9386. background:inherit;
  9387. background-color:rgba(240, 240, 240, 1);
  9388. border:none;
  9389. border-radius:0px;
  9390. -moz-box-shadow:none;
  9391. -webkit-box-shadow:none;
  9392. box-shadow:none;
  9393. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9394. font-weight:400;
  9395. font-style:normal;
  9396. color:#AAAAAA;
  9397. }
  9398. #u13925.disabled {
  9399. }
  9400. #u13926_div {
  9401. border-width:0px;
  9402. position:absolute;
  9403. left:0px;
  9404. top:0px;
  9405. width:74px;
  9406. height:30px;
  9407. background:inherit;
  9408. background-color:rgba(255, 255, 255, 0);
  9409. border:none;
  9410. border-top:0px;
  9411. border-right:0px;
  9412. border-bottom:0px;
  9413. border-radius:0px;
  9414. border-top-left-radius:0px;
  9415. border-bottom-left-radius:0px;
  9416. -moz-box-shadow:none;
  9417. -webkit-box-shadow:none;
  9418. box-shadow:none;
  9419. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9420. font-weight:400;
  9421. font-style:normal;
  9422. font-size:14px;
  9423. }
  9424. #u13926 {
  9425. border-width:0px;
  9426. position:absolute;
  9427. left:2001px;
  9428. top:218px;
  9429. width:74px;
  9430. height:30px;
  9431. display:flex;
  9432. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9433. font-weight:400;
  9434. font-style:normal;
  9435. font-size:14px;
  9436. }
  9437. #u13926 .text {
  9438. position:absolute;
  9439. align-self:center;
  9440. padding:5px 10px 5px 0px;
  9441. box-sizing:border-box;
  9442. width:100%;
  9443. }
  9444. #u13926_text {
  9445. border-width:0px;
  9446. white-space:nowrap;
  9447. text-transform:none;
  9448. }
  9449. #u13927 {
  9450. border-width:0px;
  9451. position:absolute;
  9452. left:0px;
  9453. top:0px;
  9454. width:0px;
  9455. height:0px;
  9456. }
  9457. #u13928_div {
  9458. border-width:0px;
  9459. position:absolute;
  9460. left:0px;
  9461. top:0px;
  9462. width:280px;
  9463. height:40px;
  9464. background:inherit;
  9465. background-color:rgba(242, 242, 242, 1);
  9466. box-sizing:border-box;
  9467. border-width:1px;
  9468. border-style:solid;
  9469. border-color:rgba(170, 170, 170, 1);
  9470. border-radius:4px;
  9471. -moz-box-shadow:none;
  9472. -webkit-box-shadow:none;
  9473. box-shadow:none;
  9474. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9475. font-weight:400;
  9476. font-style:normal;
  9477. text-align:left;
  9478. }
  9479. #u13928 {
  9480. border-width:0px;
  9481. position:absolute;
  9482. left:2001px;
  9483. top:248px;
  9484. width:280px;
  9485. height:40px;
  9486. display:flex;
  9487. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9488. font-weight:400;
  9489. font-style:normal;
  9490. text-align:left;
  9491. }
  9492. #u13928 .text {
  9493. position:absolute;
  9494. align-self:center;
  9495. padding:2px 2px 2px 10px;
  9496. box-sizing:border-box;
  9497. width:100%;
  9498. }
  9499. #u13928_text {
  9500. border-width:0px;
  9501. word-wrap:break-word;
  9502. text-transform:none;
  9503. }
  9504. #u13929_img {
  9505. border-width:0px;
  9506. position:absolute;
  9507. left:0px;
  9508. top:0px;
  9509. width:921px;
  9510. height:2px;
  9511. }
  9512. #u13929 {
  9513. border-width:0px;
  9514. position:absolute;
  9515. left:1681px;
  9516. top:592px;
  9517. width:920px;
  9518. height:1px;
  9519. display:flex;
  9520. }
  9521. #u13929 .text {
  9522. position:absolute;
  9523. align-self:center;
  9524. padding:2px 2px 2px 2px;
  9525. box-sizing:border-box;
  9526. width:100%;
  9527. }
  9528. #u13929_text {
  9529. border-width:0px;
  9530. word-wrap:break-word;
  9531. text-transform:none;
  9532. visibility:hidden;
  9533. }
  9534. #u13930_img {
  9535. border-width:0px;
  9536. position:absolute;
  9537. left:0px;
  9538. top:0px;
  9539. width:921px;
  9540. height:2px;
  9541. }
  9542. #u13930 {
  9543. border-width:0px;
  9544. position:absolute;
  9545. left:1681px;
  9546. top:767px;
  9547. width:920px;
  9548. height:1px;
  9549. display:flex;
  9550. }
  9551. #u13930 .text {
  9552. position:absolute;
  9553. align-self:center;
  9554. padding:2px 2px 2px 2px;
  9555. box-sizing:border-box;
  9556. width:100%;
  9557. }
  9558. #u13930_text {
  9559. border-width:0px;
  9560. word-wrap:break-word;
  9561. text-transform:none;
  9562. visibility:hidden;
  9563. }
  9564. #u13931_div {
  9565. border-width:0px;
  9566. position:absolute;
  9567. left:0px;
  9568. top:0px;
  9569. width:97px;
  9570. height:30px;
  9571. background:inherit;
  9572. background-color:rgba(255, 255, 255, 0);
  9573. border:none;
  9574. border-top:0px;
  9575. border-right:0px;
  9576. border-bottom:0px;
  9577. border-radius:0px;
  9578. border-top-left-radius:0px;
  9579. border-bottom-left-radius:0px;
  9580. -moz-box-shadow:none;
  9581. -webkit-box-shadow:none;
  9582. box-shadow:none;
  9583. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9584. font-weight:400;
  9585. font-style:normal;
  9586. font-size:14px;
  9587. }
  9588. #u13931 {
  9589. border-width:0px;
  9590. position:absolute;
  9591. left:1681px;
  9592. top:130px;
  9593. width:97px;
  9594. height:30px;
  9595. display:flex;
  9596. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9597. font-weight:400;
  9598. font-style:normal;
  9599. font-size:14px;
  9600. }
  9601. #u13931 .text {
  9602. position:absolute;
  9603. align-self:center;
  9604. padding:5px 10px 5px 0px;
  9605. box-sizing:border-box;
  9606. width:100%;
  9607. }
  9608. #u13931_text {
  9609. border-width:0px;
  9610. white-space:nowrap;
  9611. text-transform:none;
  9612. }
  9613. #u13932 {
  9614. border-width:0px;
  9615. position:absolute;
  9616. left:0px;
  9617. top:0px;
  9618. width:0px;
  9619. height:0px;
  9620. }
  9621. #u13933_div {
  9622. border-width:0px;
  9623. position:absolute;
  9624. left:0px;
  9625. top:0px;
  9626. width:823px;
  9627. height:40px;
  9628. background:inherit;
  9629. background-color:rgba(255, 255, 255, 1);
  9630. box-sizing:border-box;
  9631. border-width:1px;
  9632. border-style:solid;
  9633. border-color:rgba(170, 170, 170, 1);
  9634. border-radius:4px;
  9635. -moz-box-shadow:none;
  9636. -webkit-box-shadow:none;
  9637. box-shadow:none;
  9638. }
  9639. #u13933 {
  9640. border-width:0px;
  9641. position:absolute;
  9642. left:1778px;
  9643. top:125px;
  9644. width:823px;
  9645. height:40px;
  9646. display:flex;
  9647. }
  9648. #u13933 .text {
  9649. position:absolute;
  9650. align-self:center;
  9651. padding:2px 2px 2px 0px;
  9652. box-sizing:border-box;
  9653. width:100%;
  9654. }
  9655. #u13933_text {
  9656. border-width:0px;
  9657. word-wrap:break-word;
  9658. text-transform:none;
  9659. visibility:hidden;
  9660. }
  9661. #u13934_input {
  9662. position:absolute;
  9663. left:0px;
  9664. top:0px;
  9665. width:782px;
  9666. height:30px;
  9667. padding:2px 2px 2px 0px;
  9668. font-family:'ArialMT', 'Arial', sans-serif;
  9669. font-weight:400;
  9670. font-style:normal;
  9671. font-size:13px;
  9672. letter-spacing:normal;
  9673. color:#AAAAAA;
  9674. vertical-align:none;
  9675. text-align:left;
  9676. text-transform:none;
  9677. background-color:transparent;
  9678. border-color:transparent;
  9679. }
  9680. #u13934_input.disabled {
  9681. position:absolute;
  9682. left:0px;
  9683. top:0px;
  9684. width:782px;
  9685. height:30px;
  9686. padding:2px 2px 2px 0px;
  9687. font-family:'ArialMT', 'Arial', sans-serif;
  9688. font-weight:400;
  9689. font-style:normal;
  9690. font-size:13px;
  9691. letter-spacing:normal;
  9692. color:#AAAAAA;
  9693. vertical-align:none;
  9694. text-align:left;
  9695. text-transform:none;
  9696. background-color:transparent;
  9697. border-color:transparent;
  9698. }
  9699. #u13934_div {
  9700. border-width:0px;
  9701. position:absolute;
  9702. left:0px;
  9703. top:0px;
  9704. width:782px;
  9705. height:30px;
  9706. background:inherit;
  9707. background-color:rgba(255, 255, 255, 1);
  9708. border:none;
  9709. border-radius:0px;
  9710. -moz-box-shadow:none;
  9711. -webkit-box-shadow:none;
  9712. box-shadow:none;
  9713. color:#AAAAAA;
  9714. }
  9715. #u13934 {
  9716. border-width:0px;
  9717. position:absolute;
  9718. left:1799px;
  9719. top:131px;
  9720. width:782px;
  9721. height:30px;
  9722. display:flex;
  9723. color:#AAAAAA;
  9724. }
  9725. #u13934 .text {
  9726. position:absolute;
  9727. align-self:flex-start;
  9728. padding:2px 2px 2px 0px;
  9729. box-sizing:border-box;
  9730. width:100%;
  9731. }
  9732. #u13934_div.disabled {
  9733. border-width:0px;
  9734. position:absolute;
  9735. left:0px;
  9736. top:0px;
  9737. width:782px;
  9738. height:30px;
  9739. background:inherit;
  9740. background-color:rgba(240, 240, 240, 1);
  9741. border:none;
  9742. border-radius:0px;
  9743. -moz-box-shadow:none;
  9744. -webkit-box-shadow:none;
  9745. box-shadow:none;
  9746. color:#AAAAAA;
  9747. }
  9748. #u13934.disabled {
  9749. }
  9750. .u13934_input_option {
  9751. }
  9752. #u13935 {
  9753. border-width:0px;
  9754. position:absolute;
  9755. left:0px;
  9756. top:0px;
  9757. width:0px;
  9758. height:0px;
  9759. }
  9760. #u13936_div {
  9761. border-width:0px;
  9762. position:absolute;
  9763. left:0px;
  9764. top:0px;
  9765. width:1000px;
  9766. height:1190px;
  9767. background:inherit;
  9768. background-color:rgba(255, 255, 255, 1);
  9769. box-sizing:border-box;
  9770. border-width:1px;
  9771. border-style:solid;
  9772. border-color:rgba(215, 215, 215, 1);
  9773. border-radius:0px;
  9774. -moz-box-shadow:none;
  9775. -webkit-box-shadow:none;
  9776. box-shadow:none;
  9777. }
  9778. #u13936 {
  9779. border-width:0px;
  9780. position:absolute;
  9781. left:2696px;
  9782. top:52px;
  9783. width:1000px;
  9784. height:1190px;
  9785. display:flex;
  9786. }
  9787. #u13936 .text {
  9788. position:absolute;
  9789. align-self:center;
  9790. padding:2px 2px 2px 2px;
  9791. box-sizing:border-box;
  9792. width:100%;
  9793. }
  9794. #u13936_text {
  9795. border-width:0px;
  9796. word-wrap:break-word;
  9797. text-transform:none;
  9798. visibility:hidden;
  9799. }
  9800. #u13937_div {
  9801. border-width:0px;
  9802. position:absolute;
  9803. left:0px;
  9804. top:0px;
  9805. width:73px;
  9806. height:30px;
  9807. background:inherit;
  9808. background-color:rgba(255, 255, 255, 0);
  9809. border:none;
  9810. border-radius:0px;
  9811. -moz-box-shadow:none;
  9812. -webkit-box-shadow:none;
  9813. box-shadow:none;
  9814. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9815. font-weight:400;
  9816. font-style:normal;
  9817. font-size:18px;
  9818. color:#000000;
  9819. line-height:30px;
  9820. }
  9821. #u13937 {
  9822. border-width:0px;
  9823. position:absolute;
  9824. left:2716px;
  9825. top:72px;
  9826. width:73px;
  9827. height:30px;
  9828. display:flex;
  9829. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9830. font-weight:400;
  9831. font-style:normal;
  9832. font-size:18px;
  9833. color:#000000;
  9834. line-height:30px;
  9835. }
  9836. #u13937 .text {
  9837. position:absolute;
  9838. align-self:flex-start;
  9839. padding:0px 0px 0px 0px;
  9840. box-sizing:border-box;
  9841. width:100%;
  9842. }
  9843. #u13937_text {
  9844. border-width:0px;
  9845. white-space:nowrap;
  9846. text-transform:none;
  9847. }
  9848. #u13938_div {
  9849. border-width:0px;
  9850. position:absolute;
  9851. left:0px;
  9852. top:0px;
  9853. width:88px;
  9854. height:30px;
  9855. background:inherit;
  9856. background-color:rgba(255, 255, 255, 0);
  9857. border:none;
  9858. border-top:0px;
  9859. border-right:0px;
  9860. border-bottom:0px;
  9861. border-radius:0px;
  9862. border-top-left-radius:0px;
  9863. border-bottom-left-radius:0px;
  9864. -moz-box-shadow:none;
  9865. -webkit-box-shadow:none;
  9866. box-shadow:none;
  9867. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9868. font-weight:400;
  9869. font-style:normal;
  9870. font-size:14px;
  9871. }
  9872. #u13938 {
  9873. border-width:0px;
  9874. position:absolute;
  9875. left:2735px;
  9876. top:222px;
  9877. width:88px;
  9878. height:30px;
  9879. display:flex;
  9880. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9881. font-weight:400;
  9882. font-style:normal;
  9883. font-size:14px;
  9884. }
  9885. #u13938 .text {
  9886. position:absolute;
  9887. align-self:center;
  9888. padding:5px 10px 5px 0px;
  9889. box-sizing:border-box;
  9890. width:100%;
  9891. }
  9892. #u13938_text {
  9893. border-width:0px;
  9894. white-space:nowrap;
  9895. text-transform:none;
  9896. }
  9897. #u13939 {
  9898. border-width:0px;
  9899. position:absolute;
  9900. left:0px;
  9901. top:0px;
  9902. width:0px;
  9903. height:0px;
  9904. }
  9905. #u13940_div {
  9906. border-width:0px;
  9907. position:absolute;
  9908. left:0px;
  9909. top:0px;
  9910. width:280px;
  9911. height:40px;
  9912. background:inherit;
  9913. background-color:rgba(255, 255, 255, 1);
  9914. box-sizing:border-box;
  9915. border-width:1px;
  9916. border-style:solid;
  9917. border-color:rgba(170, 170, 170, 1);
  9918. border-radius:4px;
  9919. -moz-box-shadow:none;
  9920. -webkit-box-shadow:none;
  9921. box-shadow:none;
  9922. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9923. font-weight:400;
  9924. font-style:normal;
  9925. text-align:left;
  9926. }
  9927. #u13940 {
  9928. border-width:0px;
  9929. position:absolute;
  9930. left:2735px;
  9931. top:252px;
  9932. width:280px;
  9933. height:40px;
  9934. display:flex;
  9935. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9936. font-weight:400;
  9937. font-style:normal;
  9938. text-align:left;
  9939. }
  9940. #u13940 .text {
  9941. position:absolute;
  9942. align-self:center;
  9943. padding:2px 2px 2px 10px;
  9944. box-sizing:border-box;
  9945. width:100%;
  9946. }
  9947. #u13940_text {
  9948. border-width:0px;
  9949. word-wrap:break-word;
  9950. text-transform:none;
  9951. visibility:hidden;
  9952. }
  9953. #u13941_input {
  9954. position:absolute;
  9955. left:0px;
  9956. top:0px;
  9957. width:132px;
  9958. height:31px;
  9959. padding:2px 2px 2px 2px;
  9960. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9961. font-weight:400;
  9962. font-style:normal;
  9963. font-size:13px;
  9964. letter-spacing:normal;
  9965. color:#AAAAAA;
  9966. vertical-align:none;
  9967. text-align:left;
  9968. text-transform:none;
  9969. background-color:transparent;
  9970. border-color:transparent;
  9971. }
  9972. #u13941_input.disabled {
  9973. position:absolute;
  9974. left:0px;
  9975. top:0px;
  9976. width:132px;
  9977. height:31px;
  9978. padding:2px 2px 2px 2px;
  9979. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9980. font-weight:400;
  9981. font-style:normal;
  9982. font-size:13px;
  9983. letter-spacing:normal;
  9984. color:#AAAAAA;
  9985. vertical-align:none;
  9986. text-align:left;
  9987. text-transform:none;
  9988. background-color:transparent;
  9989. border-color:transparent;
  9990. }
  9991. #u13941_div {
  9992. border-width:0px;
  9993. position:absolute;
  9994. left:0px;
  9995. top:0px;
  9996. width:132px;
  9997. height:31px;
  9998. background:inherit;
  9999. background-color:rgba(255, 255, 255, 0);
  10000. border:none;
  10001. border-radius:0px;
  10002. -moz-box-shadow:none;
  10003. -webkit-box-shadow:none;
  10004. box-shadow:none;
  10005. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10006. font-weight:400;
  10007. font-style:normal;
  10008. color:#AAAAAA;
  10009. }
  10010. #u13941 {
  10011. border-width:0px;
  10012. position:absolute;
  10013. left:2742px;
  10014. top:257px;
  10015. width:132px;
  10016. height:31px;
  10017. display:flex;
  10018. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10019. font-weight:400;
  10020. font-style:normal;
  10021. color:#AAAAAA;
  10022. }
  10023. #u13941 .text {
  10024. position:absolute;
  10025. align-self:center;
  10026. padding:2px 2px 2px 2px;
  10027. box-sizing:border-box;
  10028. width:100%;
  10029. }
  10030. #u13941_div.disabled {
  10031. border-width:0px;
  10032. position:absolute;
  10033. left:0px;
  10034. top:0px;
  10035. width:132px;
  10036. height:31px;
  10037. background:inherit;
  10038. background-color:rgba(240, 240, 240, 1);
  10039. border:none;
  10040. border-radius:0px;
  10041. -moz-box-shadow:none;
  10042. -webkit-box-shadow:none;
  10043. box-shadow:none;
  10044. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10045. font-weight:400;
  10046. font-style:normal;
  10047. color:#AAAAAA;
  10048. }
  10049. #u13941.disabled {
  10050. }
  10051. #u13942 {
  10052. border-width:0px;
  10053. position:absolute;
  10054. left:0px;
  10055. top:0px;
  10056. width:0px;
  10057. height:0px;
  10058. }
  10059. #u13943_div {
  10060. border-width:0px;
  10061. position:absolute;
  10062. left:0px;
  10063. top:0px;
  10064. width:40px;
  10065. height:40px;
  10066. background:inherit;
  10067. background-color:rgba(255, 255, 255, 0);
  10068. border:none;
  10069. border-top:0px;
  10070. border-right:0px;
  10071. border-bottom:0px;
  10072. border-radius:0px;
  10073. border-top-left-radius:0px;
  10074. border-bottom-left-radius:0px;
  10075. -moz-box-shadow:none;
  10076. -webkit-box-shadow:none;
  10077. box-shadow:none;
  10078. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  10079. font-weight:500;
  10080. font-style:normal;
  10081. font-size:18px;
  10082. text-align:center;
  10083. }
  10084. #u13943 {
  10085. border-width:0px;
  10086. position:absolute;
  10087. left:3656px;
  10088. top:52px;
  10089. width:40px;
  10090. height:40px;
  10091. display:flex;
  10092. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  10093. font-weight:500;
  10094. font-style:normal;
  10095. font-size:18px;
  10096. text-align:center;
  10097. }
  10098. #u13943 .text {
  10099. position:absolute;
  10100. align-self:center;
  10101. padding:5px 10px 5px 0px;
  10102. box-sizing:border-box;
  10103. width:100%;
  10104. }
  10105. #u13943_text {
  10106. border-width:0px;
  10107. word-wrap:break-word;
  10108. text-transform:none;
  10109. }
  10110. #u13944_img {
  10111. border-width:0px;
  10112. position:absolute;
  10113. left:0px;
  10114. top:0px;
  10115. width:13px;
  10116. height:13px;
  10117. }
  10118. #u13944 {
  10119. border-width:0px;
  10120. position:absolute;
  10121. left:3643px;
  10122. top:70px;
  10123. width:13px;
  10124. height:13px;
  10125. display:flex;
  10126. }
  10127. #u13944 .text {
  10128. position:absolute;
  10129. align-self:center;
  10130. padding:2px 2px 2px 2px;
  10131. box-sizing:border-box;
  10132. width:100%;
  10133. }
  10134. #u13944_text {
  10135. border-width:0px;
  10136. word-wrap:break-word;
  10137. text-transform:none;
  10138. visibility:hidden;
  10139. }
  10140. #u13945 {
  10141. border-width:0px;
  10142. position:absolute;
  10143. left:0px;
  10144. top:0px;
  10145. width:0px;
  10146. height:0px;
  10147. }
  10148. #u13946_div {
  10149. border-width:0px;
  10150. position:absolute;
  10151. left:0px;
  10152. top:0px;
  10153. width:1000px;
  10154. height:60px;
  10155. background:inherit;
  10156. background-color:rgba(255, 255, 255, 1);
  10157. box-sizing:border-box;
  10158. border-width:1px;
  10159. border-style:solid;
  10160. border-color:rgba(215, 215, 215, 1);
  10161. border-radius:0px;
  10162. -moz-box-shadow:none;
  10163. -webkit-box-shadow:none;
  10164. box-shadow:none;
  10165. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10166. font-weight:400;
  10167. font-style:normal;
  10168. font-size:14px;
  10169. color:#AAAAAA;
  10170. text-align:center;
  10171. line-height:30px;
  10172. }
  10173. #u13946 {
  10174. border-width:0px;
  10175. position:absolute;
  10176. left:2696px;
  10177. top:1182px;
  10178. width:1000px;
  10179. height:60px;
  10180. display:flex;
  10181. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10182. font-weight:400;
  10183. font-style:normal;
  10184. font-size:14px;
  10185. color:#AAAAAA;
  10186. text-align:center;
  10187. line-height:30px;
  10188. }
  10189. #u13946 .text {
  10190. position:absolute;
  10191. align-self:center;
  10192. padding:5px 10px 5px 10px;
  10193. box-sizing:border-box;
  10194. width:100%;
  10195. }
  10196. #u13946_text {
  10197. border-width:0px;
  10198. word-wrap:break-word;
  10199. text-transform:none;
  10200. visibility:hidden;
  10201. }
  10202. #u13947_div {
  10203. border-width:0px;
  10204. position:absolute;
  10205. left:0px;
  10206. top:0px;
  10207. width:80px;
  10208. height:30px;
  10209. background:inherit;
  10210. background-color:rgba(24, 144, 255, 1);
  10211. border:none;
  10212. border-radius:4px;
  10213. -moz-box-shadow:none;
  10214. -webkit-box-shadow:none;
  10215. box-shadow:none;
  10216. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10217. font-weight:400;
  10218. font-style:normal;
  10219. font-size:14px;
  10220. color:#FFFFFF;
  10221. }
  10222. #u13947 {
  10223. border-width:0px;
  10224. position:absolute;
  10225. left:3571px;
  10226. top:1197px;
  10227. width:80px;
  10228. height:30px;
  10229. display:flex;
  10230. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10231. font-weight:400;
  10232. font-style:normal;
  10233. font-size:14px;
  10234. color:#FFFFFF;
  10235. }
  10236. #u13947 .text {
  10237. position:absolute;
  10238. align-self:center;
  10239. padding:2px 2px 2px 2px;
  10240. box-sizing:border-box;
  10241. width:100%;
  10242. }
  10243. #u13947_text {
  10244. border-width:0px;
  10245. word-wrap:break-word;
  10246. text-transform:none;
  10247. }
  10248. #u13948_div {
  10249. border-width:0px;
  10250. position:absolute;
  10251. left:0px;
  10252. top:0px;
  10253. width:80px;
  10254. height:30px;
  10255. background:inherit;
  10256. background-color:rgba(255, 255, 255, 1);
  10257. box-sizing:border-box;
  10258. border-width:1px;
  10259. border-style:solid;
  10260. border-color:rgba(170, 170, 170, 1);
  10261. border-radius:4px;
  10262. -moz-box-shadow:none;
  10263. -webkit-box-shadow:none;
  10264. box-shadow:none;
  10265. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10266. font-weight:400;
  10267. font-style:normal;
  10268. font-size:14px;
  10269. }
  10270. #u13948 {
  10271. border-width:0px;
  10272. position:absolute;
  10273. left:3481px;
  10274. top:1197px;
  10275. width:80px;
  10276. height:30px;
  10277. display:flex;
  10278. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10279. font-weight:400;
  10280. font-style:normal;
  10281. font-size:14px;
  10282. }
  10283. #u13948 .text {
  10284. position:absolute;
  10285. align-self:center;
  10286. padding:2px 2px 2px 2px;
  10287. box-sizing:border-box;
  10288. width:100%;
  10289. }
  10290. #u13948_text {
  10291. border-width:0px;
  10292. word-wrap:break-word;
  10293. text-transform:none;
  10294. }
  10295. #u13949_div {
  10296. border-width:0px;
  10297. position:absolute;
  10298. left:0px;
  10299. top:0px;
  10300. width:186px;
  10301. height:50px;
  10302. background:inherit;
  10303. background-color:rgba(255, 255, 255, 0);
  10304. border:none;
  10305. border-top:0px;
  10306. border-right:0px;
  10307. border-bottom:0px;
  10308. border-radius:0px;
  10309. border-top-left-radius:0px;
  10310. border-bottom-left-radius:0px;
  10311. -moz-box-shadow:none;
  10312. -webkit-box-shadow:none;
  10313. box-shadow:none;
  10314. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10315. font-weight:400;
  10316. font-style:normal;
  10317. font-size:12px;
  10318. color:#AAAAAA;
  10319. line-height:20px;
  10320. }
  10321. #u13949 {
  10322. border-width:0px;
  10323. position:absolute;
  10324. left:2825px;
  10325. top:492px;
  10326. width:186px;
  10327. height:50px;
  10328. display:flex;
  10329. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10330. font-weight:400;
  10331. font-style:normal;
  10332. font-size:12px;
  10333. color:#AAAAAA;
  10334. line-height:20px;
  10335. }
  10336. #u13949 .text {
  10337. position:absolute;
  10338. align-self:center;
  10339. padding:5px 10px 5px 0px;
  10340. box-sizing:border-box;
  10341. width:100%;
  10342. }
  10343. #u13949_text {
  10344. border-width:0px;
  10345. word-wrap:break-word;
  10346. text-transform:none;
  10347. }
  10348. #u13950_div {
  10349. border-width:0px;
  10350. position:absolute;
  10351. left:0px;
  10352. top:0px;
  10353. width:83px;
  10354. height:35px;
  10355. background:inherit;
  10356. background-color:rgba(255, 255, 255, 0);
  10357. border:none;
  10358. border-top:0px;
  10359. border-right:0px;
  10360. border-bottom:0px;
  10361. border-radius:0px;
  10362. border-top-left-radius:0px;
  10363. border-bottom-left-radius:0px;
  10364. -moz-box-shadow:none;
  10365. -webkit-box-shadow:none;
  10366. box-shadow:none;
  10367. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  10368. font-weight:500;
  10369. font-style:normal;
  10370. font-size:18px;
  10371. }
  10372. #u13950 {
  10373. border-width:0px;
  10374. position:absolute;
  10375. left:2735px;
  10376. top:180px;
  10377. width:83px;
  10378. height:35px;
  10379. display:flex;
  10380. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  10381. font-weight:500;
  10382. font-style:normal;
  10383. font-size:18px;
  10384. }
  10385. #u13950 .text {
  10386. position:absolute;
  10387. align-self:center;
  10388. padding:5px 10px 5px 0px;
  10389. box-sizing:border-box;
  10390. width:100%;
  10391. }
  10392. #u13950_text {
  10393. border-width:0px;
  10394. white-space:nowrap;
  10395. text-transform:none;
  10396. }
  10397. #u13951_div {
  10398. border-width:0px;
  10399. position:absolute;
  10400. left:0px;
  10401. top:0px;
  10402. width:67px;
  10403. height:30px;
  10404. background:inherit;
  10405. background-color:rgba(255, 255, 255, 0);
  10406. border:none;
  10407. border-top:0px;
  10408. border-right:0px;
  10409. border-bottom:0px;
  10410. border-radius:0px;
  10411. border-top-left-radius:0px;
  10412. border-bottom-left-radius:0px;
  10413. -moz-box-shadow:none;
  10414. -webkit-box-shadow:none;
  10415. box-shadow:none;
  10416. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10417. font-weight:400;
  10418. font-style:normal;
  10419. font-size:14px;
  10420. }
  10421. #u13951 {
  10422. border-width:0px;
  10423. position:absolute;
  10424. left:3055px;
  10425. top:302px;
  10426. width:67px;
  10427. height:30px;
  10428. display:flex;
  10429. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10430. font-weight:400;
  10431. font-style:normal;
  10432. font-size:14px;
  10433. }
  10434. #u13951 .text {
  10435. position:absolute;
  10436. align-self:center;
  10437. padding:5px 10px 5px 0px;
  10438. box-sizing:border-box;
  10439. width:100%;
  10440. }
  10441. #u13951_text {
  10442. border-width:0px;
  10443. white-space:nowrap;
  10444. text-transform:none;
  10445. }
  10446. #u13952 {
  10447. border-width:0px;
  10448. position:absolute;
  10449. left:0px;
  10450. top:0px;
  10451. width:0px;
  10452. height:0px;
  10453. }
  10454. #u13953_div {
  10455. border-width:0px;
  10456. position:absolute;
  10457. left:0px;
  10458. top:0px;
  10459. width:280px;
  10460. height:40px;
  10461. background:inherit;
  10462. background-color:rgba(255, 255, 255, 1);
  10463. box-sizing:border-box;
  10464. border-width:1px;
  10465. border-style:solid;
  10466. border-color:rgba(170, 170, 170, 1);
  10467. border-radius:4px;
  10468. -moz-box-shadow:none;
  10469. -webkit-box-shadow:none;
  10470. box-shadow:none;
  10471. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10472. font-weight:400;
  10473. font-style:normal;
  10474. text-align:left;
  10475. }
  10476. #u13953 {
  10477. border-width:0px;
  10478. position:absolute;
  10479. left:3055px;
  10480. top:332px;
  10481. width:280px;
  10482. height:40px;
  10483. display:flex;
  10484. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10485. font-weight:400;
  10486. font-style:normal;
  10487. text-align:left;
  10488. }
  10489. #u13953 .text {
  10490. position:absolute;
  10491. align-self:center;
  10492. padding:2px 2px 2px 10px;
  10493. box-sizing:border-box;
  10494. width:100%;
  10495. }
  10496. #u13953_text {
  10497. border-width:0px;
  10498. word-wrap:break-word;
  10499. text-transform:none;
  10500. visibility:hidden;
  10501. }
  10502. #u13954_input {
  10503. position:absolute;
  10504. left:0px;
  10505. top:0px;
  10506. width:132px;
  10507. height:31px;
  10508. padding:2px 2px 2px 2px;
  10509. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10510. font-weight:400;
  10511. font-style:normal;
  10512. font-size:13px;
  10513. letter-spacing:normal;
  10514. color:#AAAAAA;
  10515. vertical-align:none;
  10516. text-align:left;
  10517. text-transform:none;
  10518. background-color:transparent;
  10519. border-color:transparent;
  10520. }
  10521. #u13954_input.disabled {
  10522. position:absolute;
  10523. left:0px;
  10524. top:0px;
  10525. width:132px;
  10526. height:31px;
  10527. padding:2px 2px 2px 2px;
  10528. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10529. font-weight:400;
  10530. font-style:normal;
  10531. font-size:13px;
  10532. letter-spacing:normal;
  10533. color:#AAAAAA;
  10534. vertical-align:none;
  10535. text-align:left;
  10536. text-transform:none;
  10537. background-color:transparent;
  10538. border-color:transparent;
  10539. }
  10540. #u13954_div {
  10541. border-width:0px;
  10542. position:absolute;
  10543. left:0px;
  10544. top:0px;
  10545. width:132px;
  10546. height:31px;
  10547. background:inherit;
  10548. background-color:rgba(255, 255, 255, 0);
  10549. border:none;
  10550. border-radius:0px;
  10551. -moz-box-shadow:none;
  10552. -webkit-box-shadow:none;
  10553. box-shadow:none;
  10554. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10555. font-weight:400;
  10556. font-style:normal;
  10557. color:#AAAAAA;
  10558. }
  10559. #u13954 {
  10560. border-width:0px;
  10561. position:absolute;
  10562. left:3062px;
  10563. top:337px;
  10564. width:132px;
  10565. height:31px;
  10566. display:flex;
  10567. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10568. font-weight:400;
  10569. font-style:normal;
  10570. color:#AAAAAA;
  10571. }
  10572. #u13954 .text {
  10573. position:absolute;
  10574. align-self:center;
  10575. padding:2px 2px 2px 2px;
  10576. box-sizing:border-box;
  10577. width:100%;
  10578. }
  10579. #u13954_div.disabled {
  10580. border-width:0px;
  10581. position:absolute;
  10582. left:0px;
  10583. top:0px;
  10584. width:132px;
  10585. height:31px;
  10586. background:inherit;
  10587. background-color:rgba(240, 240, 240, 1);
  10588. border:none;
  10589. border-radius:0px;
  10590. -moz-box-shadow:none;
  10591. -webkit-box-shadow:none;
  10592. box-shadow:none;
  10593. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10594. font-weight:400;
  10595. font-style:normal;
  10596. color:#AAAAAA;
  10597. }
  10598. #u13954.disabled {
  10599. }
  10600. #u13955_div {
  10601. border-width:0px;
  10602. position:absolute;
  10603. left:0px;
  10604. top:0px;
  10605. width:67px;
  10606. height:30px;
  10607. background:inherit;
  10608. background-color:rgba(255, 255, 255, 0);
  10609. border:none;
  10610. border-top:0px;
  10611. border-right:0px;
  10612. border-bottom:0px;
  10613. border-radius:0px;
  10614. border-top-left-radius:0px;
  10615. border-bottom-left-radius:0px;
  10616. -moz-box-shadow:none;
  10617. -webkit-box-shadow:none;
  10618. box-shadow:none;
  10619. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10620. font-weight:400;
  10621. font-style:normal;
  10622. font-size:14px;
  10623. }
  10624. #u13955 {
  10625. border-width:0px;
  10626. position:absolute;
  10627. left:3375px;
  10628. top:382px;
  10629. width:67px;
  10630. height:30px;
  10631. display:flex;
  10632. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10633. font-weight:400;
  10634. font-style:normal;
  10635. font-size:14px;
  10636. }
  10637. #u13955 .text {
  10638. position:absolute;
  10639. align-self:center;
  10640. padding:5px 10px 5px 0px;
  10641. box-sizing:border-box;
  10642. width:100%;
  10643. }
  10644. #u13955_text {
  10645. border-width:0px;
  10646. white-space:nowrap;
  10647. text-transform:none;
  10648. }
  10649. #u13956_div {
  10650. border-width:0px;
  10651. position:absolute;
  10652. left:0px;
  10653. top:0px;
  10654. width:74px;
  10655. height:30px;
  10656. background:inherit;
  10657. background-color:rgba(255, 255, 255, 0);
  10658. border:none;
  10659. border-top:0px;
  10660. border-right:0px;
  10661. border-bottom:0px;
  10662. border-radius:0px;
  10663. border-top-left-radius:0px;
  10664. border-bottom-left-radius:0px;
  10665. -moz-box-shadow:none;
  10666. -webkit-box-shadow:none;
  10667. box-shadow:none;
  10668. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10669. font-weight:400;
  10670. font-style:normal;
  10671. font-size:14px;
  10672. }
  10673. #u13956 {
  10674. border-width:0px;
  10675. position:absolute;
  10676. left:2735px;
  10677. top:302px;
  10678. width:74px;
  10679. height:30px;
  10680. display:flex;
  10681. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10682. font-weight:400;
  10683. font-style:normal;
  10684. font-size:14px;
  10685. }
  10686. #u13956 .text {
  10687. position:absolute;
  10688. align-self:center;
  10689. padding:5px 10px 5px 0px;
  10690. box-sizing:border-box;
  10691. width:100%;
  10692. }
  10693. #u13956_text {
  10694. border-width:0px;
  10695. white-space:nowrap;
  10696. text-transform:none;
  10697. }
  10698. #u13957_div {
  10699. border-width:0px;
  10700. position:absolute;
  10701. left:0px;
  10702. top:0px;
  10703. width:67px;
  10704. height:30px;
  10705. background:inherit;
  10706. background-color:rgba(255, 255, 255, 0);
  10707. border:none;
  10708. border-top:0px;
  10709. border-right:0px;
  10710. border-bottom:0px;
  10711. border-radius:0px;
  10712. border-top-left-radius:0px;
  10713. border-bottom-left-radius:0px;
  10714. -moz-box-shadow:none;
  10715. -webkit-box-shadow:none;
  10716. box-shadow:none;
  10717. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10718. font-weight:400;
  10719. font-style:normal;
  10720. font-size:14px;
  10721. }
  10722. #u13957 {
  10723. border-width:0px;
  10724. position:absolute;
  10725. left:3055px;
  10726. top:467px;
  10727. width:67px;
  10728. height:30px;
  10729. display:flex;
  10730. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10731. font-weight:400;
  10732. font-style:normal;
  10733. font-size:14px;
  10734. }
  10735. #u13957 .text {
  10736. position:absolute;
  10737. align-self:center;
  10738. padding:5px 10px 5px 0px;
  10739. box-sizing:border-box;
  10740. width:100%;
  10741. }
  10742. #u13957_text {
  10743. border-width:0px;
  10744. white-space:nowrap;
  10745. text-transform:none;
  10746. }
  10747. #u13958 {
  10748. border-width:0px;
  10749. position:absolute;
  10750. left:0px;
  10751. top:0px;
  10752. width:0px;
  10753. height:0px;
  10754. }
  10755. #u13959_div {
  10756. border-width:0px;
  10757. position:absolute;
  10758. left:0px;
  10759. top:0px;
  10760. width:280px;
  10761. height:80px;
  10762. background:inherit;
  10763. background-color:rgba(255, 255, 255, 1);
  10764. box-sizing:border-box;
  10765. border-width:1px;
  10766. border-style:solid;
  10767. border-color:rgba(170, 170, 170, 1);
  10768. border-radius:4px;
  10769. -moz-box-shadow:none;
  10770. -webkit-box-shadow:none;
  10771. box-shadow:none;
  10772. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10773. font-weight:400;
  10774. font-style:normal;
  10775. text-align:left;
  10776. }
  10777. #u13959 {
  10778. border-width:0px;
  10779. position:absolute;
  10780. left:3055px;
  10781. top:497px;
  10782. width:280px;
  10783. height:80px;
  10784. display:flex;
  10785. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10786. font-weight:400;
  10787. font-style:normal;
  10788. text-align:left;
  10789. }
  10790. #u13959 .text {
  10791. position:absolute;
  10792. align-self:center;
  10793. padding:2px 2px 2px 10px;
  10794. box-sizing:border-box;
  10795. width:100%;
  10796. }
  10797. #u13959_text {
  10798. border-width:0px;
  10799. word-wrap:break-word;
  10800. text-transform:none;
  10801. visibility:hidden;
  10802. }
  10803. #u13960_input {
  10804. position:absolute;
  10805. left:0px;
  10806. top:0px;
  10807. width:132px;
  10808. height:31px;
  10809. padding:2px 2px 2px 2px;
  10810. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10811. font-weight:400;
  10812. font-style:normal;
  10813. font-size:13px;
  10814. letter-spacing:normal;
  10815. color:#AAAAAA;
  10816. vertical-align:none;
  10817. text-align:left;
  10818. text-transform:none;
  10819. background-color:transparent;
  10820. border-color:transparent;
  10821. }
  10822. #u13960_input.disabled {
  10823. position:absolute;
  10824. left:0px;
  10825. top:0px;
  10826. width:132px;
  10827. height:31px;
  10828. padding:2px 2px 2px 2px;
  10829. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10830. font-weight:400;
  10831. font-style:normal;
  10832. font-size:13px;
  10833. letter-spacing:normal;
  10834. color:#AAAAAA;
  10835. vertical-align:none;
  10836. text-align:left;
  10837. text-transform:none;
  10838. background-color:transparent;
  10839. border-color:transparent;
  10840. }
  10841. #u13960_div {
  10842. border-width:0px;
  10843. position:absolute;
  10844. left:0px;
  10845. top:0px;
  10846. width:132px;
  10847. height:31px;
  10848. background:inherit;
  10849. background-color:rgba(255, 255, 255, 0);
  10850. border:none;
  10851. border-radius:0px;
  10852. -moz-box-shadow:none;
  10853. -webkit-box-shadow:none;
  10854. box-shadow:none;
  10855. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10856. font-weight:400;
  10857. font-style:normal;
  10858. color:#AAAAAA;
  10859. }
  10860. #u13960 {
  10861. border-width:0px;
  10862. position:absolute;
  10863. left:3062px;
  10864. top:502px;
  10865. width:132px;
  10866. height:31px;
  10867. display:flex;
  10868. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10869. font-weight:400;
  10870. font-style:normal;
  10871. color:#AAAAAA;
  10872. }
  10873. #u13960 .text {
  10874. position:absolute;
  10875. align-self:center;
  10876. padding:2px 2px 2px 2px;
  10877. box-sizing:border-box;
  10878. width:100%;
  10879. }
  10880. #u13960_div.disabled {
  10881. border-width:0px;
  10882. position:absolute;
  10883. left:0px;
  10884. top:0px;
  10885. width:132px;
  10886. height:31px;
  10887. background:inherit;
  10888. background-color:rgba(240, 240, 240, 1);
  10889. border:none;
  10890. border-radius:0px;
  10891. -moz-box-shadow:none;
  10892. -webkit-box-shadow:none;
  10893. box-shadow:none;
  10894. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10895. font-weight:400;
  10896. font-style:normal;
  10897. color:#AAAAAA;
  10898. }
  10899. #u13960.disabled {
  10900. }
  10901. #u13961 {
  10902. border-width:0px;
  10903. position:absolute;
  10904. left:0px;
  10905. top:0px;
  10906. width:0px;
  10907. height:0px;
  10908. }
  10909. #u13962_div {
  10910. border-width:0px;
  10911. position:absolute;
  10912. left:0px;
  10913. top:0px;
  10914. width:280px;
  10915. height:40px;
  10916. background:inherit;
  10917. background-color:rgba(255, 255, 255, 1);
  10918. box-sizing:border-box;
  10919. border-width:1px;
  10920. border-style:solid;
  10921. border-color:rgba(170, 170, 170, 1);
  10922. border-radius:4px;
  10923. -moz-box-shadow:none;
  10924. -webkit-box-shadow:none;
  10925. box-shadow:none;
  10926. }
  10927. #u13962 {
  10928. border-width:0px;
  10929. position:absolute;
  10930. left:3375px;
  10931. top:412px;
  10932. width:280px;
  10933. height:40px;
  10934. display:flex;
  10935. }
  10936. #u13962 .text {
  10937. position:absolute;
  10938. align-self:center;
  10939. padding:2px 2px 2px 0px;
  10940. box-sizing:border-box;
  10941. width:100%;
  10942. }
  10943. #u13962_text {
  10944. border-width:0px;
  10945. word-wrap:break-word;
  10946. text-transform:none;
  10947. visibility:hidden;
  10948. }
  10949. #u13963_input {
  10950. position:absolute;
  10951. left:0px;
  10952. top:0px;
  10953. width:266px;
  10954. height:30px;
  10955. padding:2px 2px 2px 0px;
  10956. font-family:'ArialMT', 'Arial', sans-serif;
  10957. font-weight:400;
  10958. font-style:normal;
  10959. font-size:13px;
  10960. letter-spacing:normal;
  10961. color:#AAAAAA;
  10962. vertical-align:none;
  10963. text-align:left;
  10964. text-transform:none;
  10965. background-color:transparent;
  10966. border-color:transparent;
  10967. }
  10968. #u13963_input.disabled {
  10969. position:absolute;
  10970. left:0px;
  10971. top:0px;
  10972. width:266px;
  10973. height:30px;
  10974. padding:2px 2px 2px 0px;
  10975. font-family:'ArialMT', 'Arial', sans-serif;
  10976. font-weight:400;
  10977. font-style:normal;
  10978. font-size:13px;
  10979. letter-spacing:normal;
  10980. color:#AAAAAA;
  10981. vertical-align:none;
  10982. text-align:left;
  10983. text-transform:none;
  10984. background-color:transparent;
  10985. border-color:transparent;
  10986. }
  10987. #u13963_div {
  10988. border-width:0px;
  10989. position:absolute;
  10990. left:0px;
  10991. top:0px;
  10992. width:266px;
  10993. height:30px;
  10994. background:inherit;
  10995. background-color:rgba(255, 255, 255, 1);
  10996. border:none;
  10997. border-radius:0px;
  10998. -moz-box-shadow:none;
  10999. -webkit-box-shadow:none;
  11000. box-shadow:none;
  11001. color:#AAAAAA;
  11002. }
  11003. #u13963 {
  11004. border-width:0px;
  11005. position:absolute;
  11006. left:3382px;
  11007. top:418px;
  11008. width:266px;
  11009. height:30px;
  11010. display:flex;
  11011. color:#AAAAAA;
  11012. }
  11013. #u13963 .text {
  11014. position:absolute;
  11015. align-self:flex-start;
  11016. padding:2px 2px 2px 0px;
  11017. box-sizing:border-box;
  11018. width:100%;
  11019. }
  11020. #u13963_div.disabled {
  11021. border-width:0px;
  11022. position:absolute;
  11023. left:0px;
  11024. top:0px;
  11025. width:266px;
  11026. height:30px;
  11027. background:inherit;
  11028. background-color:rgba(240, 240, 240, 1);
  11029. border:none;
  11030. border-radius:0px;
  11031. -moz-box-shadow:none;
  11032. -webkit-box-shadow:none;
  11033. box-shadow:none;
  11034. color:#AAAAAA;
  11035. }
  11036. #u13963.disabled {
  11037. }
  11038. .u13963_input_option {
  11039. }
  11040. #u13964_div {
  11041. border-width:0px;
  11042. position:absolute;
  11043. left:0px;
  11044. top:0px;
  11045. width:67px;
  11046. height:30px;
  11047. background:inherit;
  11048. background-color:rgba(255, 255, 255, 0);
  11049. border:none;
  11050. border-top:0px;
  11051. border-right:0px;
  11052. border-bottom:0px;
  11053. border-radius:0px;
  11054. border-top-left-radius:0px;
  11055. border-bottom-left-radius:0px;
  11056. -moz-box-shadow:none;
  11057. -webkit-box-shadow:none;
  11058. box-shadow:none;
  11059. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11060. font-weight:400;
  11061. font-style:normal;
  11062. font-size:14px;
  11063. }
  11064. #u13964 {
  11065. border-width:0px;
  11066. position:absolute;
  11067. left:2735px;
  11068. top:462px;
  11069. width:67px;
  11070. height:30px;
  11071. display:flex;
  11072. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11073. font-weight:400;
  11074. font-style:normal;
  11075. font-size:14px;
  11076. }
  11077. #u13964 .text {
  11078. position:absolute;
  11079. align-self:center;
  11080. padding:5px 10px 5px 0px;
  11081. box-sizing:border-box;
  11082. width:100%;
  11083. }
  11084. #u13964_text {
  11085. border-width:0px;
  11086. white-space:nowrap;
  11087. text-transform:none;
  11088. }
  11089. #u13965_div {
  11090. border-width:0px;
  11091. position:absolute;
  11092. left:0px;
  11093. top:0px;
  11094. width:80px;
  11095. height:80px;
  11096. background:inherit;
  11097. background-color:rgba(255, 255, 255, 1);
  11098. box-sizing:border-box;
  11099. border-width:1px;
  11100. border-style:solid;
  11101. border-color:rgba(170, 170, 170, 1);
  11102. border-radius:4px;
  11103. -moz-box-shadow:none;
  11104. -webkit-box-shadow:none;
  11105. box-shadow:none;
  11106. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11107. font-weight:400;
  11108. font-style:normal;
  11109. font-size:24px;
  11110. }
  11111. #u13965 {
  11112. border-width:0px;
  11113. position:absolute;
  11114. left:2735px;
  11115. top:492px;
  11116. width:80px;
  11117. height:80px;
  11118. display:flex;
  11119. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11120. font-weight:400;
  11121. font-style:normal;
  11122. font-size:24px;
  11123. }
  11124. #u13965 .text {
  11125. position:absolute;
  11126. align-self:center;
  11127. padding:2px 2px 2px 2px;
  11128. box-sizing:border-box;
  11129. width:100%;
  11130. }
  11131. #u13965_text {
  11132. border-width:0px;
  11133. word-wrap:break-word;
  11134. text-transform:none;
  11135. }
  11136. #u13966_div {
  11137. border-width:0px;
  11138. position:absolute;
  11139. left:0px;
  11140. top:0px;
  11141. width:71px;
  11142. height:35px;
  11143. background:inherit;
  11144. background-color:rgba(255, 255, 255, 0);
  11145. border:none;
  11146. border-top:0px;
  11147. border-right:0px;
  11148. border-bottom:0px;
  11149. border-radius:0px;
  11150. border-top-left-radius:0px;
  11151. border-bottom-left-radius:0px;
  11152. -moz-box-shadow:none;
  11153. -webkit-box-shadow:none;
  11154. box-shadow:none;
  11155. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  11156. font-weight:500;
  11157. font-style:normal;
  11158. font-size:18px;
  11159. color:#1890FF;
  11160. }
  11161. #u13966 {
  11162. border-width:0px;
  11163. position:absolute;
  11164. left:2735px;
  11165. top:633px;
  11166. width:71px;
  11167. height:35px;
  11168. display:flex;
  11169. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  11170. font-weight:500;
  11171. font-style:normal;
  11172. font-size:18px;
  11173. color:#1890FF;
  11174. }
  11175. #u13966 .text {
  11176. position:absolute;
  11177. align-self:center;
  11178. padding:5px 10px 5px 0px;
  11179. box-sizing:border-box;
  11180. width:100%;
  11181. }
  11182. #u13966_text {
  11183. border-width:0px;
  11184. white-space:nowrap;
  11185. text-transform:none;
  11186. }
  11187. #u13967_div {
  11188. border-width:0px;
  11189. position:absolute;
  11190. left:0px;
  11191. top:0px;
  11192. width:100px;
  11193. height:30px;
  11194. background:inherit;
  11195. background-color:rgba(255, 255, 255, 1);
  11196. box-sizing:border-box;
  11197. border-width:1px;
  11198. border-style:solid;
  11199. border-color:rgba(170, 170, 170, 1);
  11200. border-radius:4px;
  11201. -moz-box-shadow:none;
  11202. -webkit-box-shadow:none;
  11203. box-shadow:none;
  11204. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11205. font-weight:400;
  11206. font-style:normal;
  11207. font-size:12px;
  11208. }
  11209. #u13967 {
  11210. border-width:0px;
  11211. position:absolute;
  11212. left:2735px;
  11213. top:678px;
  11214. width:100px;
  11215. height:30px;
  11216. display:flex;
  11217. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11218. font-weight:400;
  11219. font-style:normal;
  11220. font-size:12px;
  11221. }
  11222. #u13967 .text {
  11223. position:absolute;
  11224. align-self:center;
  11225. padding:2px 2px 2px 2px;
  11226. box-sizing:border-box;
  11227. width:100%;
  11228. }
  11229. #u13967_text {
  11230. border-width:0px;
  11231. word-wrap:break-word;
  11232. text-transform:none;
  11233. }
  11234. #u13968_div {
  11235. border-width:0px;
  11236. position:absolute;
  11237. left:0px;
  11238. top:0px;
  11239. width:89px;
  11240. height:35px;
  11241. background:inherit;
  11242. background-color:rgba(255, 255, 255, 0);
  11243. border:none;
  11244. border-top:0px;
  11245. border-right:0px;
  11246. border-bottom:0px;
  11247. border-radius:0px;
  11248. border-top-left-radius:0px;
  11249. border-bottom-left-radius:0px;
  11250. -moz-box-shadow:none;
  11251. -webkit-box-shadow:none;
  11252. box-shadow:none;
  11253. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  11254. font-weight:500;
  11255. font-style:normal;
  11256. font-size:18px;
  11257. }
  11258. #u13968 {
  11259. border-width:0px;
  11260. position:absolute;
  11261. left:2840px;
  11262. top:633px;
  11263. width:89px;
  11264. height:35px;
  11265. display:flex;
  11266. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  11267. font-weight:500;
  11268. font-style:normal;
  11269. font-size:18px;
  11270. }
  11271. #u13968 .text {
  11272. position:absolute;
  11273. align-self:center;
  11274. padding:5px 10px 5px 0px;
  11275. box-sizing:border-box;
  11276. width:100%;
  11277. }
  11278. #u13968_text {
  11279. border-width:0px;
  11280. white-space:nowrap;
  11281. text-transform:none;
  11282. }
  11283. #u13969_div {
  11284. border-width:0px;
  11285. position:absolute;
  11286. left:0px;
  11287. top:0px;
  11288. width:67px;
  11289. height:30px;
  11290. background:inherit;
  11291. background-color:rgba(255, 255, 255, 0);
  11292. border:none;
  11293. border-top:0px;
  11294. border-right:0px;
  11295. border-bottom:0px;
  11296. border-radius:0px;
  11297. border-top-left-radius:0px;
  11298. border-bottom-left-radius:0px;
  11299. -moz-box-shadow:none;
  11300. -webkit-box-shadow:none;
  11301. box-shadow:none;
  11302. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11303. font-weight:400;
  11304. font-style:normal;
  11305. font-size:14px;
  11306. }
  11307. #u13969 {
  11308. border-width:0px;
  11309. position:absolute;
  11310. left:3375px;
  11311. top:302px;
  11312. width:67px;
  11313. height:30px;
  11314. display:flex;
  11315. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11316. font-weight:400;
  11317. font-style:normal;
  11318. font-size:14px;
  11319. }
  11320. #u13969 .text {
  11321. position:absolute;
  11322. align-self:center;
  11323. padding:5px 10px 5px 0px;
  11324. box-sizing:border-box;
  11325. width:100%;
  11326. }
  11327. #u13969_text {
  11328. border-width:0px;
  11329. white-space:nowrap;
  11330. text-transform:none;
  11331. }
  11332. #u13970 {
  11333. border-width:0px;
  11334. position:absolute;
  11335. left:0px;
  11336. top:0px;
  11337. width:0px;
  11338. height:0px;
  11339. }
  11340. #u13971_div {
  11341. border-width:0px;
  11342. position:absolute;
  11343. left:0px;
  11344. top:0px;
  11345. width:280px;
  11346. height:40px;
  11347. background:inherit;
  11348. background-color:rgba(255, 255, 255, 1);
  11349. box-sizing:border-box;
  11350. border-width:1px;
  11351. border-style:solid;
  11352. border-color:rgba(170, 170, 170, 1);
  11353. border-radius:4px;
  11354. -moz-box-shadow:none;
  11355. -webkit-box-shadow:none;
  11356. box-shadow:none;
  11357. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11358. font-weight:400;
  11359. font-style:normal;
  11360. text-align:left;
  11361. }
  11362. #u13971 {
  11363. border-width:0px;
  11364. position:absolute;
  11365. left:3375px;
  11366. top:332px;
  11367. width:280px;
  11368. height:40px;
  11369. display:flex;
  11370. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11371. font-weight:400;
  11372. font-style:normal;
  11373. text-align:left;
  11374. }
  11375. #u13971 .text {
  11376. position:absolute;
  11377. align-self:center;
  11378. padding:2px 2px 2px 10px;
  11379. box-sizing:border-box;
  11380. width:100%;
  11381. }
  11382. #u13971_text {
  11383. border-width:0px;
  11384. word-wrap:break-word;
  11385. text-transform:none;
  11386. visibility:hidden;
  11387. }
  11388. #u13972_input {
  11389. position:absolute;
  11390. left:0px;
  11391. top:0px;
  11392. width:132px;
  11393. height:31px;
  11394. padding:2px 2px 2px 2px;
  11395. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11396. font-weight:400;
  11397. font-style:normal;
  11398. font-size:13px;
  11399. letter-spacing:normal;
  11400. color:#AAAAAA;
  11401. vertical-align:none;
  11402. text-align:left;
  11403. text-transform:none;
  11404. background-color:transparent;
  11405. border-color:transparent;
  11406. }
  11407. #u13972_input.disabled {
  11408. position:absolute;
  11409. left:0px;
  11410. top:0px;
  11411. width:132px;
  11412. height:31px;
  11413. padding:2px 2px 2px 2px;
  11414. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11415. font-weight:400;
  11416. font-style:normal;
  11417. font-size:13px;
  11418. letter-spacing:normal;
  11419. color:#AAAAAA;
  11420. vertical-align:none;
  11421. text-align:left;
  11422. text-transform:none;
  11423. background-color:transparent;
  11424. border-color:transparent;
  11425. }
  11426. #u13972_div {
  11427. border-width:0px;
  11428. position:absolute;
  11429. left:0px;
  11430. top:0px;
  11431. width:132px;
  11432. height:31px;
  11433. background:inherit;
  11434. background-color:rgba(255, 255, 255, 0);
  11435. border:none;
  11436. border-radius:0px;
  11437. -moz-box-shadow:none;
  11438. -webkit-box-shadow:none;
  11439. box-shadow:none;
  11440. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11441. font-weight:400;
  11442. font-style:normal;
  11443. color:#AAAAAA;
  11444. }
  11445. #u13972 {
  11446. border-width:0px;
  11447. position:absolute;
  11448. left:3382px;
  11449. top:337px;
  11450. width:132px;
  11451. height:31px;
  11452. display:flex;
  11453. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11454. font-weight:400;
  11455. font-style:normal;
  11456. color:#AAAAAA;
  11457. }
  11458. #u13972 .text {
  11459. position:absolute;
  11460. align-self:center;
  11461. padding:2px 2px 2px 2px;
  11462. box-sizing:border-box;
  11463. width:100%;
  11464. }
  11465. #u13972_div.disabled {
  11466. border-width:0px;
  11467. position:absolute;
  11468. left:0px;
  11469. top:0px;
  11470. width:132px;
  11471. height:31px;
  11472. background:inherit;
  11473. background-color:rgba(240, 240, 240, 1);
  11474. border:none;
  11475. border-radius:0px;
  11476. -moz-box-shadow:none;
  11477. -webkit-box-shadow:none;
  11478. box-shadow:none;
  11479. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11480. font-weight:400;
  11481. font-style:normal;
  11482. color:#AAAAAA;
  11483. }
  11484. #u13972.disabled {
  11485. }
  11486. #u13973 {
  11487. border-width:0px;
  11488. position:absolute;
  11489. left:0px;
  11490. top:0px;
  11491. width:0px;
  11492. height:0px;
  11493. }
  11494. #u13974_div {
  11495. border-width:0px;
  11496. position:absolute;
  11497. left:0px;
  11498. top:0px;
  11499. width:280px;
  11500. height:40px;
  11501. background:inherit;
  11502. background-color:rgba(255, 255, 255, 1);
  11503. box-sizing:border-box;
  11504. border-width:1px;
  11505. border-style:solid;
  11506. border-color:rgba(170, 170, 170, 1);
  11507. border-radius:4px;
  11508. -moz-box-shadow:none;
  11509. -webkit-box-shadow:none;
  11510. box-shadow:none;
  11511. }
  11512. #u13974 {
  11513. border-width:0px;
  11514. position:absolute;
  11515. left:2735px;
  11516. top:332px;
  11517. width:280px;
  11518. height:40px;
  11519. display:flex;
  11520. }
  11521. #u13974 .text {
  11522. position:absolute;
  11523. align-self:center;
  11524. padding:2px 2px 2px 0px;
  11525. box-sizing:border-box;
  11526. width:100%;
  11527. }
  11528. #u13974_text {
  11529. border-width:0px;
  11530. word-wrap:break-word;
  11531. text-transform:none;
  11532. visibility:hidden;
  11533. }
  11534. #u13975_input {
  11535. position:absolute;
  11536. left:0px;
  11537. top:0px;
  11538. width:266px;
  11539. height:30px;
  11540. padding:2px 2px 2px 0px;
  11541. font-family:'ArialMT', 'Arial', sans-serif;
  11542. font-weight:400;
  11543. font-style:normal;
  11544. font-size:13px;
  11545. letter-spacing:normal;
  11546. color:#AAAAAA;
  11547. vertical-align:none;
  11548. text-align:left;
  11549. text-transform:none;
  11550. background-color:transparent;
  11551. border-color:transparent;
  11552. }
  11553. #u13975_input.disabled {
  11554. position:absolute;
  11555. left:0px;
  11556. top:0px;
  11557. width:266px;
  11558. height:30px;
  11559. padding:2px 2px 2px 0px;
  11560. font-family:'ArialMT', 'Arial', sans-serif;
  11561. font-weight:400;
  11562. font-style:normal;
  11563. font-size:13px;
  11564. letter-spacing:normal;
  11565. color:#AAAAAA;
  11566. vertical-align:none;
  11567. text-align:left;
  11568. text-transform:none;
  11569. background-color:transparent;
  11570. border-color:transparent;
  11571. }
  11572. #u13975_div {
  11573. border-width:0px;
  11574. position:absolute;
  11575. left:0px;
  11576. top:0px;
  11577. width:266px;
  11578. height:30px;
  11579. background:inherit;
  11580. background-color:rgba(255, 255, 255, 1);
  11581. border:none;
  11582. border-radius:0px;
  11583. -moz-box-shadow:none;
  11584. -webkit-box-shadow:none;
  11585. box-shadow:none;
  11586. color:#AAAAAA;
  11587. }
  11588. #u13975 {
  11589. border-width:0px;
  11590. position:absolute;
  11591. left:2742px;
  11592. top:338px;
  11593. width:266px;
  11594. height:30px;
  11595. display:flex;
  11596. color:#AAAAAA;
  11597. }
  11598. #u13975 .text {
  11599. position:absolute;
  11600. align-self:flex-start;
  11601. padding:2px 2px 2px 0px;
  11602. box-sizing:border-box;
  11603. width:100%;
  11604. }
  11605. #u13975_div.disabled {
  11606. border-width:0px;
  11607. position:absolute;
  11608. left:0px;
  11609. top:0px;
  11610. width:266px;
  11611. height:30px;
  11612. background:inherit;
  11613. background-color:rgba(240, 240, 240, 1);
  11614. border:none;
  11615. border-radius:0px;
  11616. -moz-box-shadow:none;
  11617. -webkit-box-shadow:none;
  11618. box-shadow:none;
  11619. color:#AAAAAA;
  11620. }
  11621. #u13975.disabled {
  11622. }
  11623. .u13975_input_option {
  11624. }
  11625. #u13976_div {
  11626. border-width:0px;
  11627. position:absolute;
  11628. left:0px;
  11629. top:0px;
  11630. width:60px;
  11631. height:30px;
  11632. background:inherit;
  11633. background-color:rgba(255, 255, 255, 0);
  11634. border:none;
  11635. border-top:0px;
  11636. border-right:0px;
  11637. border-bottom:0px;
  11638. border-radius:0px;
  11639. border-top-left-radius:0px;
  11640. border-bottom-left-radius:0px;
  11641. -moz-box-shadow:none;
  11642. -webkit-box-shadow:none;
  11643. box-shadow:none;
  11644. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11645. font-weight:400;
  11646. font-style:normal;
  11647. font-size:14px;
  11648. }
  11649. #u13976 {
  11650. border-width:0px;
  11651. position:absolute;
  11652. left:2735px;
  11653. top:382px;
  11654. width:60px;
  11655. height:30px;
  11656. display:flex;
  11657. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11658. font-weight:400;
  11659. font-style:normal;
  11660. font-size:14px;
  11661. }
  11662. #u13976 .text {
  11663. position:absolute;
  11664. align-self:center;
  11665. padding:5px 10px 5px 0px;
  11666. box-sizing:border-box;
  11667. width:100%;
  11668. }
  11669. #u13976_text {
  11670. border-width:0px;
  11671. white-space:nowrap;
  11672. text-transform:none;
  11673. }
  11674. #u13977 {
  11675. border-width:0px;
  11676. position:absolute;
  11677. left:0px;
  11678. top:0px;
  11679. width:0px;
  11680. height:0px;
  11681. }
  11682. #u13978_div {
  11683. border-width:0px;
  11684. position:absolute;
  11685. left:0px;
  11686. top:0px;
  11687. width:280px;
  11688. height:40px;
  11689. background:inherit;
  11690. background-color:rgba(255, 255, 255, 1);
  11691. box-sizing:border-box;
  11692. border-width:1px;
  11693. border-style:solid;
  11694. border-color:rgba(170, 170, 170, 1);
  11695. border-radius:4px;
  11696. -moz-box-shadow:none;
  11697. -webkit-box-shadow:none;
  11698. box-shadow:none;
  11699. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11700. font-weight:400;
  11701. font-style:normal;
  11702. text-align:left;
  11703. }
  11704. #u13978 {
  11705. border-width:0px;
  11706. position:absolute;
  11707. left:2735px;
  11708. top:412px;
  11709. width:280px;
  11710. height:40px;
  11711. display:flex;
  11712. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11713. font-weight:400;
  11714. font-style:normal;
  11715. text-align:left;
  11716. }
  11717. #u13978 .text {
  11718. position:absolute;
  11719. align-self:center;
  11720. padding:2px 2px 2px 10px;
  11721. box-sizing:border-box;
  11722. width:100%;
  11723. }
  11724. #u13978_text {
  11725. border-width:0px;
  11726. word-wrap:break-word;
  11727. text-transform:none;
  11728. visibility:hidden;
  11729. }
  11730. #u13979_input {
  11731. position:absolute;
  11732. left:0px;
  11733. top:0px;
  11734. width:132px;
  11735. height:31px;
  11736. padding:2px 2px 2px 2px;
  11737. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11738. font-weight:400;
  11739. font-style:normal;
  11740. font-size:13px;
  11741. letter-spacing:normal;
  11742. color:#AAAAAA;
  11743. vertical-align:none;
  11744. text-align:left;
  11745. text-transform:none;
  11746. background-color:transparent;
  11747. border-color:transparent;
  11748. }
  11749. #u13979_input.disabled {
  11750. position:absolute;
  11751. left:0px;
  11752. top:0px;
  11753. width:132px;
  11754. height:31px;
  11755. padding:2px 2px 2px 2px;
  11756. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11757. font-weight:400;
  11758. font-style:normal;
  11759. font-size:13px;
  11760. letter-spacing:normal;
  11761. color:#AAAAAA;
  11762. vertical-align:none;
  11763. text-align:left;
  11764. text-transform:none;
  11765. background-color:transparent;
  11766. border-color:transparent;
  11767. }
  11768. #u13979_div {
  11769. border-width:0px;
  11770. position:absolute;
  11771. left:0px;
  11772. top:0px;
  11773. width:132px;
  11774. height:31px;
  11775. background:inherit;
  11776. background-color:rgba(255, 255, 255, 0);
  11777. border:none;
  11778. border-radius:0px;
  11779. -moz-box-shadow:none;
  11780. -webkit-box-shadow:none;
  11781. box-shadow:none;
  11782. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11783. font-weight:400;
  11784. font-style:normal;
  11785. color:#AAAAAA;
  11786. }
  11787. #u13979 {
  11788. border-width:0px;
  11789. position:absolute;
  11790. left:2742px;
  11791. top:417px;
  11792. width:132px;
  11793. height:31px;
  11794. display:flex;
  11795. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11796. font-weight:400;
  11797. font-style:normal;
  11798. color:#AAAAAA;
  11799. }
  11800. #u13979 .text {
  11801. position:absolute;
  11802. align-self:center;
  11803. padding:2px 2px 2px 2px;
  11804. box-sizing:border-box;
  11805. width:100%;
  11806. }
  11807. #u13979_div.disabled {
  11808. border-width:0px;
  11809. position:absolute;
  11810. left:0px;
  11811. top:0px;
  11812. width:132px;
  11813. height:31px;
  11814. background:inherit;
  11815. background-color:rgba(240, 240, 240, 1);
  11816. border:none;
  11817. border-radius:0px;
  11818. -moz-box-shadow:none;
  11819. -webkit-box-shadow:none;
  11820. box-shadow:none;
  11821. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11822. font-weight:400;
  11823. font-style:normal;
  11824. color:#AAAAAA;
  11825. }
  11826. #u13979.disabled {
  11827. }
  11828. #u13980_div {
  11829. border-width:0px;
  11830. position:absolute;
  11831. left:0px;
  11832. top:0px;
  11833. width:74px;
  11834. height:30px;
  11835. background:inherit;
  11836. background-color:rgba(255, 255, 255, 0);
  11837. border:none;
  11838. border-top:0px;
  11839. border-right:0px;
  11840. border-bottom:0px;
  11841. border-radius:0px;
  11842. border-top-left-radius:0px;
  11843. border-bottom-left-radius:0px;
  11844. -moz-box-shadow:none;
  11845. -webkit-box-shadow:none;
  11846. box-shadow:none;
  11847. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11848. font-weight:400;
  11849. font-style:normal;
  11850. font-size:14px;
  11851. }
  11852. #u13980 {
  11853. border-width:0px;
  11854. position:absolute;
  11855. left:3055px;
  11856. top:382px;
  11857. width:74px;
  11858. height:30px;
  11859. display:flex;
  11860. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11861. font-weight:400;
  11862. font-style:normal;
  11863. font-size:14px;
  11864. }
  11865. #u13980 .text {
  11866. position:absolute;
  11867. align-self:center;
  11868. padding:5px 10px 5px 0px;
  11869. box-sizing:border-box;
  11870. width:100%;
  11871. }
  11872. #u13980_text {
  11873. border-width:0px;
  11874. white-space:nowrap;
  11875. text-transform:none;
  11876. }
  11877. #u13981 {
  11878. border-width:0px;
  11879. position:absolute;
  11880. left:0px;
  11881. top:0px;
  11882. width:0px;
  11883. height:0px;
  11884. }
  11885. #u13982_div {
  11886. border-width:0px;
  11887. position:absolute;
  11888. left:0px;
  11889. top:0px;
  11890. width:280px;
  11891. height:40px;
  11892. background:inherit;
  11893. background-color:rgba(255, 255, 255, 1);
  11894. box-sizing:border-box;
  11895. border-width:1px;
  11896. border-style:solid;
  11897. border-color:rgba(170, 170, 170, 1);
  11898. border-radius:4px;
  11899. -moz-box-shadow:none;
  11900. -webkit-box-shadow:none;
  11901. box-shadow:none;
  11902. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11903. font-weight:400;
  11904. font-style:normal;
  11905. text-align:left;
  11906. }
  11907. #u13982 {
  11908. border-width:0px;
  11909. position:absolute;
  11910. left:3055px;
  11911. top:412px;
  11912. width:280px;
  11913. height:40px;
  11914. display:flex;
  11915. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11916. font-weight:400;
  11917. font-style:normal;
  11918. text-align:left;
  11919. }
  11920. #u13982 .text {
  11921. position:absolute;
  11922. align-self:center;
  11923. padding:2px 2px 2px 10px;
  11924. box-sizing:border-box;
  11925. width:100%;
  11926. }
  11927. #u13982_text {
  11928. border-width:0px;
  11929. word-wrap:break-word;
  11930. text-transform:none;
  11931. visibility:hidden;
  11932. }
  11933. #u13983_input {
  11934. position:absolute;
  11935. left:0px;
  11936. top:0px;
  11937. width:132px;
  11938. height:31px;
  11939. padding:2px 2px 2px 2px;
  11940. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11941. font-weight:400;
  11942. font-style:normal;
  11943. font-size:13px;
  11944. letter-spacing:normal;
  11945. color:#AAAAAA;
  11946. vertical-align:none;
  11947. text-align:left;
  11948. text-transform:none;
  11949. background-color:transparent;
  11950. border-color:transparent;
  11951. }
  11952. #u13983_input.disabled {
  11953. position:absolute;
  11954. left:0px;
  11955. top:0px;
  11956. width:132px;
  11957. height:31px;
  11958. padding:2px 2px 2px 2px;
  11959. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11960. font-weight:400;
  11961. font-style:normal;
  11962. font-size:13px;
  11963. letter-spacing:normal;
  11964. color:#AAAAAA;
  11965. vertical-align:none;
  11966. text-align:left;
  11967. text-transform:none;
  11968. background-color:transparent;
  11969. border-color:transparent;
  11970. }
  11971. #u13983_div {
  11972. border-width:0px;
  11973. position:absolute;
  11974. left:0px;
  11975. top:0px;
  11976. width:132px;
  11977. height:31px;
  11978. background:inherit;
  11979. background-color:rgba(255, 255, 255, 0);
  11980. border:none;
  11981. border-radius:0px;
  11982. -moz-box-shadow:none;
  11983. -webkit-box-shadow:none;
  11984. box-shadow:none;
  11985. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11986. font-weight:400;
  11987. font-style:normal;
  11988. color:#AAAAAA;
  11989. }
  11990. #u13983 {
  11991. border-width:0px;
  11992. position:absolute;
  11993. left:3062px;
  11994. top:417px;
  11995. width:132px;
  11996. height:31px;
  11997. display:flex;
  11998. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11999. font-weight:400;
  12000. font-style:normal;
  12001. color:#AAAAAA;
  12002. }
  12003. #u13983 .text {
  12004. position:absolute;
  12005. align-self:center;
  12006. padding:2px 2px 2px 2px;
  12007. box-sizing:border-box;
  12008. width:100%;
  12009. }
  12010. #u13983_div.disabled {
  12011. border-width:0px;
  12012. position:absolute;
  12013. left:0px;
  12014. top:0px;
  12015. width:132px;
  12016. height:31px;
  12017. background:inherit;
  12018. background-color:rgba(240, 240, 240, 1);
  12019. border:none;
  12020. border-radius:0px;
  12021. -moz-box-shadow:none;
  12022. -webkit-box-shadow:none;
  12023. box-shadow:none;
  12024. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  12025. font-weight:400;
  12026. font-style:normal;
  12027. color:#AAAAAA;
  12028. }
  12029. #u13983.disabled {
  12030. }
  12031. #u13984_div {
  12032. border-width:0px;
  12033. position:absolute;
  12034. left:0px;
  12035. top:0px;
  12036. width:81px;
  12037. height:30px;
  12038. background:inherit;
  12039. background-color:rgba(255, 255, 255, 0);
  12040. border:none;
  12041. border-top:0px;
  12042. border-right:0px;
  12043. border-bottom:0px;
  12044. border-radius:0px;
  12045. border-top-left-radius:0px;
  12046. border-bottom-left-radius:0px;
  12047. -moz-box-shadow:none;
  12048. -webkit-box-shadow:none;
  12049. box-shadow:none;
  12050. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  12051. font-weight:400;
  12052. font-style:normal;
  12053. font-size:14px;
  12054. }
  12055. #u13984 {
  12056. border-width:0px;
  12057. position:absolute;
  12058. left:3375px;
  12059. top:222px;
  12060. width:81px;
  12061. height:30px;
  12062. display:flex;
  12063. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  12064. font-weight:400;
  12065. font-style:normal;
  12066. font-size:14px;
  12067. }
  12068. #u13984 .text {
  12069. position:absolute;
  12070. align-self:center;
  12071. padding:5px 10px 5px 0px;
  12072. box-sizing:border-box;
  12073. width:100%;
  12074. }
  12075. #u13984_text {
  12076. border-width:0px;
  12077. white-space:nowrap;
  12078. text-transform:none;
  12079. }
  12080. #u13985 {
  12081. border-width:0px;
  12082. position:absolute;
  12083. left:0px;
  12084. top:0px;
  12085. width:0px;
  12086. height:0px;
  12087. }
  12088. #u13986_div {
  12089. border-width:0px;
  12090. position:absolute;
  12091. left:0px;
  12092. top:0px;
  12093. width:280px;
  12094. height:40px;
  12095. background:inherit;
  12096. background-color:rgba(242, 242, 242, 1);
  12097. box-sizing:border-box;
  12098. border-width:1px;
  12099. border-style:solid;
  12100. border-color:rgba(170, 170, 170, 1);
  12101. border-radius:4px;
  12102. -moz-box-shadow:none;
  12103. -webkit-box-shadow:none;
  12104. box-shadow:none;
  12105. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  12106. font-weight:400;
  12107. font-style:normal;
  12108. text-align:left;
  12109. }
  12110. #u13986 {
  12111. border-width:0px;
  12112. position:absolute;
  12113. left:3375px;
  12114. top:252px;
  12115. width:280px;
  12116. height:40px;
  12117. display:flex;
  12118. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  12119. font-weight:400;
  12120. font-style:normal;
  12121. text-align:left;
  12122. }
  12123. #u13986 .text {
  12124. position:absolute;
  12125. align-self:center;
  12126. padding:2px 2px 2px 10px;
  12127. box-sizing:border-box;
  12128. width:100%;
  12129. }
  12130. #u13986_text {
  12131. border-width:0px;
  12132. word-wrap:break-word;
  12133. text-transform:none;
  12134. visibility:hidden;
  12135. }
  12136. #u13987_input {
  12137. position:absolute;
  12138. left:0px;
  12139. top:0px;
  12140. width:132px;
  12141. height:31px;
  12142. padding:2px 2px 2px 2px;
  12143. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  12144. font-weight:400;
  12145. font-style:normal;
  12146. font-size:13px;
  12147. letter-spacing:normal;
  12148. color:#AAAAAA;
  12149. vertical-align:none;
  12150. text-align:left;
  12151. text-transform:none;
  12152. background-color:transparent;
  12153. border-color:transparent;
  12154. }
  12155. #u13987_input.disabled {
  12156. position:absolute;
  12157. left:0px;
  12158. top:0px;
  12159. width:132px;
  12160. height:31px;
  12161. padding:2px 2px 2px 2px;
  12162. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  12163. font-weight:400;
  12164. font-style:normal;
  12165. font-size:13px;
  12166. letter-spacing:normal;
  12167. color:#AAAAAA;
  12168. vertical-align:none;
  12169. text-align:left;
  12170. text-transform:none;
  12171. background-color:transparent;
  12172. border-color:transparent;
  12173. }
  12174. #u13987_div {
  12175. border-width:0px;
  12176. position:absolute;
  12177. left:0px;
  12178. top:0px;
  12179. width:132px;
  12180. height:31px;
  12181. background:inherit;
  12182. background-color:rgba(242, 242, 242, 1);
  12183. border:none;
  12184. border-radius:0px;
  12185. -moz-box-shadow:none;
  12186. -webkit-box-shadow:none;
  12187. box-shadow:none;
  12188. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  12189. font-weight:400;
  12190. font-style:normal;
  12191. color:#AAAAAA;
  12192. }
  12193. #u13987 {
  12194. border-width:0px;
  12195. position:absolute;
  12196. left:3382px;
  12197. top:257px;
  12198. width:132px;
  12199. height:31px;
  12200. display:flex;
  12201. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  12202. font-weight:400;
  12203. font-style:normal;
  12204. color:#AAAAAA;
  12205. }
  12206. #u13987 .text {
  12207. position:absolute;
  12208. align-self:center;
  12209. padding:2px 2px 2px 2px;
  12210. box-sizing:border-box;
  12211. width:100%;
  12212. }
  12213. #u13987_div.disabled {
  12214. border-width:0px;
  12215. position:absolute;
  12216. left:0px;
  12217. top:0px;
  12218. width:132px;
  12219. height:31px;
  12220. background:inherit;
  12221. background-color:rgba(240, 240, 240, 1);
  12222. border:none;
  12223. border-radius:0px;
  12224. -moz-box-shadow:none;
  12225. -webkit-box-shadow:none;
  12226. box-shadow:none;
  12227. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  12228. font-weight:400;
  12229. font-style:normal;
  12230. color:#AAAAAA;
  12231. }
  12232. #u13987.disabled {
  12233. }
  12234. #u13988_div {
  12235. border-width:0px;
  12236. position:absolute;
  12237. left:0px;
  12238. top:0px;
  12239. width:74px;
  12240. height:30px;
  12241. background:inherit;
  12242. background-color:rgba(255, 255, 255, 0);
  12243. border:none;
  12244. border-top:0px;
  12245. border-right:0px;
  12246. border-bottom:0px;
  12247. border-radius:0px;
  12248. border-top-left-radius:0px;
  12249. border-bottom-left-radius:0px;
  12250. -moz-box-shadow:none;
  12251. -webkit-box-shadow:none;
  12252. box-shadow:none;
  12253. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  12254. font-weight:400;
  12255. font-style:normal;
  12256. font-size:14px;
  12257. }
  12258. #u13988 {
  12259. border-width:0px;
  12260. position:absolute;
  12261. left:3055px;
  12262. top:222px;
  12263. width:74px;
  12264. height:30px;
  12265. display:flex;
  12266. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  12267. font-weight:400;
  12268. font-style:normal;
  12269. font-size:14px;
  12270. }
  12271. #u13988 .text {
  12272. position:absolute;
  12273. align-self:center;
  12274. padding:5px 10px 5px 0px;
  12275. box-sizing:border-box;
  12276. width:100%;
  12277. }
  12278. #u13988_text {
  12279. border-width:0px;
  12280. white-space:nowrap;
  12281. text-transform:none;
  12282. }
  12283. #u13989 {
  12284. border-width:0px;
  12285. position:absolute;
  12286. left:0px;
  12287. top:0px;
  12288. width:0px;
  12289. height:0px;
  12290. }
  12291. #u13990_div {
  12292. border-width:0px;
  12293. position:absolute;
  12294. left:0px;
  12295. top:0px;
  12296. width:280px;
  12297. height:40px;
  12298. background:inherit;
  12299. background-color:rgba(242, 242, 242, 1);
  12300. box-sizing:border-box;
  12301. border-width:1px;
  12302. border-style:solid;
  12303. border-color:rgba(170, 170, 170, 1);
  12304. border-radius:4px;
  12305. -moz-box-shadow:none;
  12306. -webkit-box-shadow:none;
  12307. box-shadow:none;
  12308. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  12309. font-weight:400;
  12310. font-style:normal;
  12311. text-align:left;
  12312. }
  12313. #u13990 {
  12314. border-width:0px;
  12315. position:absolute;
  12316. left:3055px;
  12317. top:252px;
  12318. width:280px;
  12319. height:40px;
  12320. display:flex;
  12321. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  12322. font-weight:400;
  12323. font-style:normal;
  12324. text-align:left;
  12325. }
  12326. #u13990 .text {
  12327. position:absolute;
  12328. align-self:center;
  12329. padding:2px 2px 2px 10px;
  12330. box-sizing:border-box;
  12331. width:100%;
  12332. }
  12333. #u13990_text {
  12334. border-width:0px;
  12335. word-wrap:break-word;
  12336. text-transform:none;
  12337. }
  12338. #u13991_img {
  12339. border-width:0px;
  12340. position:absolute;
  12341. left:0px;
  12342. top:0px;
  12343. width:921px;
  12344. height:2px;
  12345. }
  12346. #u13991 {
  12347. border-width:0px;
  12348. position:absolute;
  12349. left:2735px;
  12350. top:602px;
  12351. width:920px;
  12352. height:1px;
  12353. display:flex;
  12354. }
  12355. #u13991 .text {
  12356. position:absolute;
  12357. align-self:center;
  12358. padding:2px 2px 2px 2px;
  12359. box-sizing:border-box;
  12360. width:100%;
  12361. }
  12362. #u13991_text {
  12363. border-width:0px;
  12364. word-wrap:break-word;
  12365. text-transform:none;
  12366. visibility:hidden;
  12367. }
  12368. #u13992_div {
  12369. border-width:0px;
  12370. position:absolute;
  12371. left:0px;
  12372. top:0px;
  12373. width:97px;
  12374. height:30px;
  12375. background:inherit;
  12376. background-color:rgba(255, 255, 255, 0);
  12377. border:none;
  12378. border-top:0px;
  12379. border-right:0px;
  12380. border-bottom:0px;
  12381. border-radius:0px;
  12382. border-top-left-radius:0px;
  12383. border-bottom-left-radius:0px;
  12384. -moz-box-shadow:none;
  12385. -webkit-box-shadow:none;
  12386. box-shadow:none;
  12387. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  12388. font-weight:400;
  12389. font-style:normal;
  12390. font-size:14px;
  12391. }
  12392. #u13992 {
  12393. border-width:0px;
  12394. position:absolute;
  12395. left:2735px;
  12396. top:134px;
  12397. width:97px;
  12398. height:30px;
  12399. display:flex;
  12400. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  12401. font-weight:400;
  12402. font-style:normal;
  12403. font-size:14px;
  12404. }
  12405. #u13992 .text {
  12406. position:absolute;
  12407. align-self:center;
  12408. padding:5px 10px 5px 0px;
  12409. box-sizing:border-box;
  12410. width:100%;
  12411. }
  12412. #u13992_text {
  12413. border-width:0px;
  12414. white-space:nowrap;
  12415. text-transform:none;
  12416. }
  12417. #u13993 {
  12418. border-width:0px;
  12419. position:absolute;
  12420. left:0px;
  12421. top:0px;
  12422. width:0px;
  12423. height:0px;
  12424. }
  12425. #u13994_div {
  12426. border-width:0px;
  12427. position:absolute;
  12428. left:0px;
  12429. top:0px;
  12430. width:823px;
  12431. height:40px;
  12432. background:inherit;
  12433. background-color:rgba(255, 255, 255, 1);
  12434. box-sizing:border-box;
  12435. border-width:1px;
  12436. border-style:solid;
  12437. border-color:rgba(170, 170, 170, 1);
  12438. border-radius:4px;
  12439. -moz-box-shadow:none;
  12440. -webkit-box-shadow:none;
  12441. box-shadow:none;
  12442. }
  12443. #u13994 {
  12444. border-width:0px;
  12445. position:absolute;
  12446. left:2832px;
  12447. top:129px;
  12448. width:823px;
  12449. height:40px;
  12450. display:flex;
  12451. }
  12452. #u13994 .text {
  12453. position:absolute;
  12454. align-self:center;
  12455. padding:2px 2px 2px 0px;
  12456. box-sizing:border-box;
  12457. width:100%;
  12458. }
  12459. #u13994_text {
  12460. border-width:0px;
  12461. word-wrap:break-word;
  12462. text-transform:none;
  12463. visibility:hidden;
  12464. }
  12465. #u13995_input {
  12466. position:absolute;
  12467. left:0px;
  12468. top:0px;
  12469. width:782px;
  12470. height:30px;
  12471. padding:2px 2px 2px 0px;
  12472. font-family:'ArialMT', 'Arial', sans-serif;
  12473. font-weight:400;
  12474. font-style:normal;
  12475. font-size:13px;
  12476. letter-spacing:normal;
  12477. color:#AAAAAA;
  12478. vertical-align:none;
  12479. text-align:left;
  12480. text-transform:none;
  12481. background-color:transparent;
  12482. border-color:transparent;
  12483. }
  12484. #u13995_input.disabled {
  12485. position:absolute;
  12486. left:0px;
  12487. top:0px;
  12488. width:782px;
  12489. height:30px;
  12490. padding:2px 2px 2px 0px;
  12491. font-family:'ArialMT', 'Arial', sans-serif;
  12492. font-weight:400;
  12493. font-style:normal;
  12494. font-size:13px;
  12495. letter-spacing:normal;
  12496. color:#AAAAAA;
  12497. vertical-align:none;
  12498. text-align:left;
  12499. text-transform:none;
  12500. background-color:transparent;
  12501. border-color:transparent;
  12502. }
  12503. #u13995_div {
  12504. border-width:0px;
  12505. position:absolute;
  12506. left:0px;
  12507. top:0px;
  12508. width:782px;
  12509. height:30px;
  12510. background:inherit;
  12511. background-color:rgba(255, 255, 255, 1);
  12512. border:none;
  12513. border-radius:0px;
  12514. -moz-box-shadow:none;
  12515. -webkit-box-shadow:none;
  12516. box-shadow:none;
  12517. color:#AAAAAA;
  12518. }
  12519. #u13995 {
  12520. border-width:0px;
  12521. position:absolute;
  12522. left:2853px;
  12523. top:135px;
  12524. width:782px;
  12525. height:30px;
  12526. display:flex;
  12527. color:#AAAAAA;
  12528. }
  12529. #u13995 .text {
  12530. position:absolute;
  12531. align-self:flex-start;
  12532. padding:2px 2px 2px 0px;
  12533. box-sizing:border-box;
  12534. width:100%;
  12535. }
  12536. #u13995_div.disabled {
  12537. border-width:0px;
  12538. position:absolute;
  12539. left:0px;
  12540. top:0px;
  12541. width:782px;
  12542. height:30px;
  12543. background:inherit;
  12544. background-color:rgba(240, 240, 240, 1);
  12545. border:none;
  12546. border-radius:0px;
  12547. -moz-box-shadow:none;
  12548. -webkit-box-shadow:none;
  12549. box-shadow:none;
  12550. color:#AAAAAA;
  12551. }
  12552. #u13995.disabled {
  12553. }
  12554. .u13995_input_option {
  12555. }
  12556. #u13996 {
  12557. border-width:0px;
  12558. position:absolute;
  12559. left:0px;
  12560. top:0px;
  12561. width:0px;
  12562. height:0px;
  12563. }
  12564. #u13997_div {
  12565. border-width:0px;
  12566. position:absolute;
  12567. left:0px;
  12568. top:0px;
  12569. width:800px;
  12570. height:1190px;
  12571. background:inherit;
  12572. background-color:rgba(255, 255, 255, 1);
  12573. box-sizing:border-box;
  12574. border-width:1px;
  12575. border-style:solid;
  12576. border-color:rgba(215, 215, 215, 1);
  12577. border-radius:0px;
  12578. -moz-box-shadow:none;
  12579. -webkit-box-shadow:none;
  12580. box-shadow:none;
  12581. }
  12582. #u13997 {
  12583. border-width:0px;
  12584. position:absolute;
  12585. left:3747px;
  12586. top:56px;
  12587. width:800px;
  12588. height:1190px;
  12589. display:flex;
  12590. }
  12591. #u13997 .text {
  12592. position:absolute;
  12593. align-self:center;
  12594. padding:2px 2px 2px 2px;
  12595. box-sizing:border-box;
  12596. width:100%;
  12597. }
  12598. #u13997_text {
  12599. border-width:0px;
  12600. word-wrap:break-word;
  12601. text-transform:none;
  12602. visibility:hidden;
  12603. }
  12604. #u13998_div {
  12605. border-width:0px;
  12606. position:absolute;
  12607. left:0px;
  12608. top:0px;
  12609. width:73px;
  12610. height:30px;
  12611. background:inherit;
  12612. background-color:rgba(255, 255, 255, 0);
  12613. border:none;
  12614. border-radius:0px;
  12615. -moz-box-shadow:none;
  12616. -webkit-box-shadow:none;
  12617. box-shadow:none;
  12618. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  12619. font-weight:400;
  12620. font-style:normal;
  12621. font-size:18px;
  12622. color:#000000;
  12623. line-height:30px;
  12624. }
  12625. #u13998 {
  12626. border-width:0px;
  12627. position:absolute;
  12628. left:3767px;
  12629. top:76px;
  12630. width:73px;
  12631. height:30px;
  12632. display:flex;
  12633. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  12634. font-weight:400;
  12635. font-style:normal;
  12636. font-size:18px;
  12637. color:#000000;
  12638. line-height:30px;
  12639. }
  12640. #u13998 .text {
  12641. position:absolute;
  12642. align-self:flex-start;
  12643. padding:0px 0px 0px 0px;
  12644. box-sizing:border-box;
  12645. width:100%;
  12646. }
  12647. #u13998_text {
  12648. border-width:0px;
  12649. white-space:nowrap;
  12650. text-transform:none;
  12651. }
  12652. #u13999 {
  12653. border-width:0px;
  12654. position:absolute;
  12655. left:0px;
  12656. top:0px;
  12657. width:0px;
  12658. height:0px;
  12659. }
  12660. #u14000_div {
  12661. border-width:0px;
  12662. position:absolute;
  12663. left:0px;
  12664. top:0px;
  12665. width:40px;
  12666. height:40px;
  12667. background:inherit;
  12668. background-color:rgba(255, 255, 255, 0);
  12669. border:none;
  12670. border-top:0px;
  12671. border-right:0px;
  12672. border-bottom:0px;
  12673. border-radius:0px;
  12674. border-top-left-radius:0px;
  12675. border-bottom-left-radius:0px;
  12676. -moz-box-shadow:none;
  12677. -webkit-box-shadow:none;
  12678. box-shadow:none;
  12679. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  12680. font-weight:500;
  12681. font-style:normal;
  12682. font-size:18px;
  12683. text-align:center;
  12684. }
  12685. #u14000 {
  12686. border-width:0px;
  12687. position:absolute;
  12688. left:4507px;
  12689. top:56px;
  12690. width:40px;
  12691. height:40px;
  12692. display:flex;
  12693. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  12694. font-weight:500;
  12695. font-style:normal;
  12696. font-size:18px;
  12697. text-align:center;
  12698. }
  12699. #u14000 .text {
  12700. position:absolute;
  12701. align-self:center;
  12702. padding:5px 10px 5px 0px;
  12703. box-sizing:border-box;
  12704. width:100%;
  12705. }
  12706. #u14000_text {
  12707. border-width:0px;
  12708. word-wrap:break-word;
  12709. text-transform:none;
  12710. }
  12711. #u14001_img {
  12712. border-width:0px;
  12713. position:absolute;
  12714. left:0px;
  12715. top:0px;
  12716. width:13px;
  12717. height:13px;
  12718. }
  12719. #u14001 {
  12720. border-width:0px;
  12721. position:absolute;
  12722. left:4494px;
  12723. top:74px;
  12724. width:13px;
  12725. height:13px;
  12726. display:flex;
  12727. }
  12728. #u14001 .text {
  12729. position:absolute;
  12730. align-self:center;
  12731. padding:2px 2px 2px 2px;
  12732. box-sizing:border-box;
  12733. width:100%;
  12734. }
  12735. #u14001_text {
  12736. border-width:0px;
  12737. word-wrap:break-word;
  12738. text-transform:none;
  12739. visibility:hidden;
  12740. }
  12741. #u14002 {
  12742. border-width:0px;
  12743. position:absolute;
  12744. left:0px;
  12745. top:0px;
  12746. width:0px;
  12747. height:0px;
  12748. }
  12749. #u14003_div {
  12750. border-width:0px;
  12751. position:absolute;
  12752. left:0px;
  12753. top:0px;
  12754. width:800px;
  12755. height:60px;
  12756. background:inherit;
  12757. background-color:rgba(255, 255, 255, 1);
  12758. box-sizing:border-box;
  12759. border-width:1px;
  12760. border-style:solid;
  12761. border-color:rgba(215, 215, 215, 1);
  12762. border-radius:0px;
  12763. -moz-box-shadow:none;
  12764. -webkit-box-shadow:none;
  12765. box-shadow:none;
  12766. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  12767. font-weight:400;
  12768. font-style:normal;
  12769. font-size:14px;
  12770. color:#AAAAAA;
  12771. text-align:center;
  12772. line-height:30px;
  12773. }
  12774. #u14003 {
  12775. border-width:0px;
  12776. position:absolute;
  12777. left:3747px;
  12778. top:1186px;
  12779. width:800px;
  12780. height:60px;
  12781. display:flex;
  12782. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  12783. font-weight:400;
  12784. font-style:normal;
  12785. font-size:14px;
  12786. color:#AAAAAA;
  12787. text-align:center;
  12788. line-height:30px;
  12789. }
  12790. #u14003 .text {
  12791. position:absolute;
  12792. align-self:center;
  12793. padding:5px 10px 5px 10px;
  12794. box-sizing:border-box;
  12795. width:100%;
  12796. }
  12797. #u14003_text {
  12798. border-width:0px;
  12799. word-wrap:break-word;
  12800. text-transform:none;
  12801. visibility:hidden;
  12802. }
  12803. #u14004_div {
  12804. border-width:0px;
  12805. position:absolute;
  12806. left:0px;
  12807. top:0px;
  12808. width:80px;
  12809. height:30px;
  12810. background:inherit;
  12811. background-color:rgba(24, 144, 255, 1);
  12812. border:none;
  12813. border-radius:4px;
  12814. -moz-box-shadow:none;
  12815. -webkit-box-shadow:none;
  12816. box-shadow:none;
  12817. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  12818. font-weight:400;
  12819. font-style:normal;
  12820. font-size:14px;
  12821. color:#FFFFFF;
  12822. }
  12823. #u14004 {
  12824. border-width:0px;
  12825. position:absolute;
  12826. left:4422px;
  12827. top:1201px;
  12828. width:80px;
  12829. height:30px;
  12830. display:flex;
  12831. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  12832. font-weight:400;
  12833. font-style:normal;
  12834. font-size:14px;
  12835. color:#FFFFFF;
  12836. }
  12837. #u14004 .text {
  12838. position:absolute;
  12839. align-self:center;
  12840. padding:2px 2px 2px 2px;
  12841. box-sizing:border-box;
  12842. width:100%;
  12843. }
  12844. #u14004_text {
  12845. border-width:0px;
  12846. word-wrap:break-word;
  12847. text-transform:none;
  12848. }
  12849. #u14005_div {
  12850. border-width:0px;
  12851. position:absolute;
  12852. left:0px;
  12853. top:0px;
  12854. width:80px;
  12855. height:30px;
  12856. background:inherit;
  12857. background-color:rgba(255, 255, 255, 1);
  12858. box-sizing:border-box;
  12859. border-width:1px;
  12860. border-style:solid;
  12861. border-color:rgba(170, 170, 170, 1);
  12862. border-radius:4px;
  12863. -moz-box-shadow:none;
  12864. -webkit-box-shadow:none;
  12865. box-shadow:none;
  12866. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  12867. font-weight:400;
  12868. font-style:normal;
  12869. font-size:14px;
  12870. }
  12871. #u14005 {
  12872. border-width:0px;
  12873. position:absolute;
  12874. left:4332px;
  12875. top:1201px;
  12876. width:80px;
  12877. height:30px;
  12878. display:flex;
  12879. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  12880. font-weight:400;
  12881. font-style:normal;
  12882. font-size:14px;
  12883. }
  12884. #u14005 .text {
  12885. position:absolute;
  12886. align-self:center;
  12887. padding:2px 2px 2px 2px;
  12888. box-sizing:border-box;
  12889. width:100%;
  12890. }
  12891. #u14005_text {
  12892. border-width:0px;
  12893. word-wrap:break-word;
  12894. text-transform:none;
  12895. }
  12896. #u14006_div {
  12897. border-width:0px;
  12898. position:absolute;
  12899. left:0px;
  12900. top:0px;
  12901. width:431px;
  12902. height:30px;
  12903. background:inherit;
  12904. background-color:rgba(255, 255, 255, 0);
  12905. border:none;
  12906. border-top:0px;
  12907. border-right:0px;
  12908. border-bottom:0px;
  12909. border-radius:0px;
  12910. border-top-left-radius:0px;
  12911. border-bottom-left-radius:0px;
  12912. -moz-box-shadow:none;
  12913. -webkit-box-shadow:none;
  12914. box-shadow:none;
  12915. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  12916. font-weight:400;
  12917. font-style:normal;
  12918. }
  12919. #u14006 {
  12920. border-width:0px;
  12921. position:absolute;
  12922. left:3786px;
  12923. top:266px;
  12924. width:431px;
  12925. height:30px;
  12926. display:flex;
  12927. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  12928. font-weight:400;
  12929. font-style:normal;
  12930. }
  12931. #u14006 .text {
  12932. position:absolute;
  12933. align-self:center;
  12934. padding:5px 10px 5px 0px;
  12935. box-sizing:border-box;
  12936. width:100%;
  12937. }
  12938. #u14006_text {
  12939. border-width:0px;
  12940. white-space:nowrap;
  12941. text-transform:none;
  12942. }
  12943. #u14007 {
  12944. border-width:0px;
  12945. position:absolute;
  12946. left:0px;
  12947. top:0px;
  12948. width:0px;
  12949. height:0px;
  12950. }
  12951. #u14008_div {
  12952. border-width:0px;
  12953. position:absolute;
  12954. left:0px;
  12955. top:0px;
  12956. width:640px;
  12957. height:40px;
  12958. background:inherit;
  12959. background-color:rgba(255, 255, 255, 1);
  12960. box-sizing:border-box;
  12961. border-width:1px;
  12962. border-style:solid;
  12963. border-color:rgba(170, 170, 170, 1);
  12964. border-radius:4px;
  12965. -moz-box-shadow:none;
  12966. -webkit-box-shadow:none;
  12967. box-shadow:none;
  12968. }
  12969. #u14008 {
  12970. border-width:0px;
  12971. position:absolute;
  12972. left:3786px;
  12973. top:306px;
  12974. width:640px;
  12975. height:40px;
  12976. display:flex;
  12977. }
  12978. #u14008 .text {
  12979. position:absolute;
  12980. align-self:center;
  12981. padding:2px 2px 2px 0px;
  12982. box-sizing:border-box;
  12983. width:100%;
  12984. }
  12985. #u14008_text {
  12986. border-width:0px;
  12987. word-wrap:break-word;
  12988. text-transform:none;
  12989. visibility:hidden;
  12990. }
  12991. #u14009_input {
  12992. position:absolute;
  12993. left:0px;
  12994. top:0px;
  12995. width:608px;
  12996. height:30px;
  12997. padding:2px 2px 2px 0px;
  12998. font-family:'ArialMT', 'Arial', sans-serif;
  12999. font-weight:400;
  13000. font-style:normal;
  13001. font-size:13px;
  13002. letter-spacing:normal;
  13003. color:#AAAAAA;
  13004. vertical-align:none;
  13005. text-align:left;
  13006. text-transform:none;
  13007. background-color:transparent;
  13008. border-color:transparent;
  13009. }
  13010. #u14009_input.disabled {
  13011. position:absolute;
  13012. left:0px;
  13013. top:0px;
  13014. width:608px;
  13015. height:30px;
  13016. padding:2px 2px 2px 0px;
  13017. font-family:'ArialMT', 'Arial', sans-serif;
  13018. font-weight:400;
  13019. font-style:normal;
  13020. font-size:13px;
  13021. letter-spacing:normal;
  13022. color:#AAAAAA;
  13023. vertical-align:none;
  13024. text-align:left;
  13025. text-transform:none;
  13026. background-color:transparent;
  13027. border-color:transparent;
  13028. }
  13029. #u14009_div {
  13030. border-width:0px;
  13031. position:absolute;
  13032. left:0px;
  13033. top:0px;
  13034. width:608px;
  13035. height:30px;
  13036. background:inherit;
  13037. background-color:rgba(255, 255, 255, 1);
  13038. border:none;
  13039. border-radius:0px;
  13040. -moz-box-shadow:none;
  13041. -webkit-box-shadow:none;
  13042. box-shadow:none;
  13043. color:#AAAAAA;
  13044. }
  13045. #u14009 {
  13046. border-width:0px;
  13047. position:absolute;
  13048. left:3802px;
  13049. top:312px;
  13050. width:608px;
  13051. height:30px;
  13052. display:flex;
  13053. color:#AAAAAA;
  13054. }
  13055. #u14009 .text {
  13056. position:absolute;
  13057. align-self:flex-start;
  13058. padding:2px 2px 2px 0px;
  13059. box-sizing:border-box;
  13060. width:100%;
  13061. }
  13062. #u14009_div.disabled {
  13063. border-width:0px;
  13064. position:absolute;
  13065. left:0px;
  13066. top:0px;
  13067. width:608px;
  13068. height:30px;
  13069. background:inherit;
  13070. background-color:rgba(240, 240, 240, 1);
  13071. border:none;
  13072. border-radius:0px;
  13073. -moz-box-shadow:none;
  13074. -webkit-box-shadow:none;
  13075. box-shadow:none;
  13076. color:#AAAAAA;
  13077. }
  13078. #u14009.disabled {
  13079. }
  13080. .u14009_input_option {
  13081. }
  13082. #u14010 {
  13083. border-width:0px;
  13084. position:absolute;
  13085. left:0px;
  13086. top:0px;
  13087. width:0px;
  13088. height:0px;
  13089. }
  13090. #u14011_div {
  13091. border-width:0px;
  13092. position:absolute;
  13093. left:0px;
  13094. top:0px;
  13095. width:677px;
  13096. height:80px;
  13097. background:inherit;
  13098. background-color:rgba(24, 144, 255, 0.0980392156862745);
  13099. border:none;
  13100. border-radius:4px;
  13101. -moz-box-shadow:none;
  13102. -webkit-box-shadow:none;
  13103. box-shadow:none;
  13104. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  13105. font-weight:400;
  13106. font-style:normal;
  13107. font-size:12px;
  13108. line-height:30px;
  13109. }
  13110. #u14011 {
  13111. border-width:0px;
  13112. position:absolute;
  13113. left:3786px;
  13114. top:116px;
  13115. width:677px;
  13116. height:80px;
  13117. display:flex;
  13118. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  13119. font-weight:400;
  13120. font-style:normal;
  13121. font-size:12px;
  13122. line-height:30px;
  13123. }
  13124. #u14011 .text {
  13125. position:absolute;
  13126. align-self:center;
  13127. padding:5px 10px 5px 20px;
  13128. box-sizing:border-box;
  13129. width:100%;
  13130. }
  13131. #u14011_text {
  13132. border-width:0px;
  13133. white-space:nowrap;
  13134. text-transform:none;
  13135. }
  13136. #u14012_img {
  13137. border-width:0px;
  13138. position:absolute;
  13139. left:0px;
  13140. top:0px;
  13141. width:20px;
  13142. height:20px;
  13143. }
  13144. #u14012 {
  13145. border-width:0px;
  13146. position:absolute;
  13147. left:3802px;
  13148. top:132px;
  13149. width:20px;
  13150. height:20px;
  13151. display:flex;
  13152. }
  13153. #u14012 .text {
  13154. position:absolute;
  13155. align-self:center;
  13156. padding:2px 2px 2px 2px;
  13157. box-sizing:border-box;
  13158. width:100%;
  13159. }
  13160. #u14012_text {
  13161. border-width:0px;
  13162. word-wrap:break-word;
  13163. text-transform:none;
  13164. visibility:hidden;
  13165. }
  13166. #u14013_div {
  13167. border-width:0px;
  13168. position:absolute;
  13169. left:0px;
  13170. top:0px;
  13171. width:173px;
  13172. height:35px;
  13173. background:inherit;
  13174. background-color:rgba(255, 255, 255, 0);
  13175. border:none;
  13176. border-top:0px;
  13177. border-right:0px;
  13178. border-bottom:0px;
  13179. border-radius:0px;
  13180. border-top-left-radius:0px;
  13181. border-bottom-left-radius:0px;
  13182. -moz-box-shadow:none;
  13183. -webkit-box-shadow:none;
  13184. box-shadow:none;
  13185. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  13186. font-weight:500;
  13187. font-style:normal;
  13188. font-size:18px;
  13189. }
  13190. #u14013 {
  13191. border-width:0px;
  13192. position:absolute;
  13193. left:3786px;
  13194. top:216px;
  13195. width:173px;
  13196. height:35px;
  13197. display:flex;
  13198. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  13199. font-weight:500;
  13200. font-style:normal;
  13201. font-size:18px;
  13202. }
  13203. #u14013 .text {
  13204. position:absolute;
  13205. align-self:center;
  13206. padding:5px 10px 5px 0px;
  13207. box-sizing:border-box;
  13208. width:100%;
  13209. }
  13210. #u14013_text {
  13211. border-width:0px;
  13212. white-space:nowrap;
  13213. text-transform:none;
  13214. }