styles.css 164 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135113611371138113911401141114211431144114511461147114811491150115111521153115411551156115711581159116011611162116311641165116611671168116911701171117211731174117511761177117811791180118111821183118411851186118711881189119011911192119311941195119611971198119912001201120212031204120512061207120812091210121112121213121412151216121712181219122012211222122312241225122612271228122912301231123212331234123512361237123812391240124112421243124412451246124712481249125012511252125312541255125612571258125912601261126212631264126512661267126812691270127112721273127412751276127712781279128012811282128312841285128612871288128912901291129212931294129512961297129812991300130113021303130413051306130713081309131013111312131313141315131613171318131913201321132213231324132513261327132813291330133113321333133413351336133713381339134013411342134313441345134613471348134913501351135213531354135513561357135813591360136113621363136413651366136713681369137013711372137313741375137613771378137913801381138213831384138513861387138813891390139113921393139413951396139713981399140014011402140314041405140614071408140914101411141214131414141514161417141814191420142114221423142414251426142714281429143014311432143314341435143614371438143914401441144214431444144514461447144814491450145114521453145414551456145714581459146014611462146314641465146614671468146914701471147214731474147514761477147814791480148114821483148414851486148714881489149014911492149314941495149614971498149915001501150215031504150515061507150815091510151115121513151415151516151715181519152015211522152315241525152615271528152915301531153215331534153515361537153815391540154115421543154415451546154715481549155015511552155315541555155615571558155915601561156215631564156515661567156815691570157115721573157415751576157715781579158015811582158315841585158615871588158915901591159215931594159515961597159815991600160116021603160416051606160716081609161016111612161316141615161616171618161916201621162216231624162516261627162816291630163116321633163416351636163716381639164016411642164316441645164616471648164916501651165216531654165516561657165816591660166116621663166416651666166716681669167016711672167316741675167616771678167916801681168216831684168516861687168816891690169116921693169416951696169716981699170017011702170317041705170617071708170917101711171217131714171517161717171817191720172117221723172417251726172717281729173017311732173317341735173617371738173917401741174217431744174517461747174817491750175117521753175417551756175717581759176017611762176317641765176617671768176917701771177217731774177517761777177817791780178117821783178417851786178717881789179017911792179317941795179617971798179918001801180218031804180518061807180818091810181118121813181418151816181718181819182018211822182318241825182618271828182918301831183218331834183518361837183818391840184118421843184418451846184718481849185018511852185318541855185618571858185918601861186218631864186518661867186818691870187118721873187418751876187718781879188018811882188318841885188618871888188918901891189218931894189518961897189818991900190119021903190419051906190719081909191019111912191319141915191619171918191919201921192219231924192519261927192819291930193119321933193419351936193719381939194019411942194319441945194619471948194919501951195219531954195519561957195819591960196119621963196419651966196719681969197019711972197319741975197619771978197919801981198219831984198519861987198819891990199119921993199419951996199719981999200020012002200320042005200620072008200920102011201220132014201520162017201820192020202120222023202420252026202720282029203020312032203320342035203620372038203920402041204220432044204520462047204820492050205120522053205420552056205720582059206020612062206320642065206620672068206920702071207220732074207520762077207820792080208120822083208420852086208720882089209020912092209320942095209620972098209921002101210221032104210521062107210821092110211121122113211421152116211721182119212021212122212321242125212621272128212921302131213221332134213521362137213821392140214121422143214421452146214721482149215021512152215321542155215621572158215921602161216221632164216521662167216821692170217121722173217421752176217721782179218021812182218321842185218621872188218921902191219221932194219521962197219821992200220122022203220422052206220722082209221022112212221322142215221622172218221922202221222222232224222522262227222822292230223122322233223422352236223722382239224022412242224322442245224622472248224922502251225222532254225522562257225822592260226122622263226422652266226722682269227022712272227322742275227622772278227922802281228222832284228522862287228822892290229122922293229422952296229722982299230023012302230323042305230623072308230923102311231223132314231523162317231823192320232123222323232423252326232723282329233023312332233323342335233623372338233923402341234223432344234523462347234823492350235123522353235423552356235723582359236023612362236323642365236623672368236923702371237223732374237523762377237823792380238123822383238423852386238723882389239023912392239323942395239623972398239924002401240224032404240524062407240824092410241124122413241424152416241724182419242024212422242324242425242624272428242924302431243224332434243524362437243824392440244124422443244424452446244724482449245024512452245324542455245624572458245924602461246224632464246524662467246824692470247124722473247424752476247724782479248024812482248324842485248624872488248924902491249224932494249524962497249824992500250125022503250425052506250725082509251025112512251325142515251625172518251925202521252225232524252525262527252825292530253125322533253425352536253725382539254025412542254325442545254625472548254925502551255225532554255525562557255825592560256125622563256425652566256725682569257025712572257325742575257625772578257925802581258225832584258525862587258825892590259125922593259425952596259725982599260026012602260326042605260626072608260926102611261226132614261526162617261826192620262126222623262426252626262726282629263026312632263326342635263626372638263926402641264226432644264526462647264826492650265126522653265426552656265726582659266026612662266326642665266626672668266926702671267226732674267526762677267826792680268126822683268426852686268726882689269026912692269326942695269626972698269927002701270227032704270527062707270827092710271127122713271427152716271727182719272027212722272327242725272627272728272927302731273227332734273527362737273827392740274127422743274427452746274727482749275027512752275327542755275627572758275927602761276227632764276527662767276827692770277127722773277427752776277727782779278027812782278327842785278627872788278927902791279227932794279527962797279827992800280128022803280428052806280728082809281028112812281328142815281628172818281928202821282228232824282528262827282828292830283128322833283428352836283728382839284028412842284328442845284628472848284928502851285228532854285528562857285828592860286128622863286428652866286728682869287028712872287328742875287628772878287928802881288228832884288528862887288828892890289128922893289428952896289728982899290029012902290329042905290629072908290929102911291229132914291529162917291829192920292129222923292429252926292729282929293029312932293329342935293629372938293929402941294229432944294529462947294829492950295129522953295429552956295729582959296029612962296329642965296629672968296929702971297229732974297529762977297829792980298129822983298429852986298729882989299029912992299329942995299629972998299930003001300230033004300530063007300830093010301130123013301430153016301730183019302030213022302330243025302630273028302930303031303230333034303530363037303830393040304130423043304430453046304730483049305030513052305330543055305630573058305930603061306230633064306530663067306830693070307130723073307430753076307730783079308030813082308330843085308630873088308930903091309230933094309530963097309830993100310131023103310431053106310731083109311031113112311331143115311631173118311931203121312231233124312531263127312831293130313131323133313431353136313731383139314031413142314331443145314631473148314931503151315231533154315531563157315831593160316131623163316431653166316731683169317031713172317331743175317631773178317931803181318231833184318531863187318831893190319131923193319431953196319731983199320032013202320332043205320632073208320932103211321232133214321532163217321832193220322132223223322432253226322732283229323032313232323332343235323632373238323932403241324232433244324532463247324832493250325132523253325432553256325732583259326032613262326332643265326632673268326932703271327232733274327532763277327832793280328132823283328432853286328732883289329032913292329332943295329632973298329933003301330233033304330533063307330833093310331133123313331433153316331733183319332033213322332333243325332633273328332933303331333233333334333533363337333833393340334133423343334433453346334733483349335033513352335333543355335633573358335933603361336233633364336533663367336833693370337133723373337433753376337733783379338033813382338333843385338633873388338933903391339233933394339533963397339833993400340134023403340434053406340734083409341034113412341334143415341634173418341934203421342234233424342534263427342834293430343134323433343434353436343734383439344034413442344334443445344634473448344934503451345234533454345534563457345834593460346134623463346434653466346734683469347034713472347334743475347634773478347934803481348234833484348534863487348834893490349134923493349434953496349734983499350035013502350335043505350635073508350935103511351235133514351535163517351835193520352135223523352435253526352735283529353035313532353335343535353635373538353935403541354235433544354535463547354835493550355135523553355435553556355735583559356035613562356335643565356635673568356935703571357235733574357535763577357835793580358135823583358435853586358735883589359035913592359335943595359635973598359936003601360236033604360536063607360836093610361136123613361436153616361736183619362036213622362336243625362636273628362936303631363236333634363536363637363836393640364136423643364436453646364736483649365036513652365336543655365636573658365936603661366236633664366536663667366836693670367136723673367436753676367736783679368036813682368336843685368636873688368936903691369236933694369536963697369836993700370137023703370437053706370737083709371037113712371337143715371637173718371937203721372237233724372537263727372837293730373137323733373437353736373737383739374037413742374337443745374637473748374937503751375237533754375537563757375837593760376137623763376437653766376737683769377037713772377337743775377637773778377937803781378237833784378537863787378837893790379137923793379437953796379737983799380038013802380338043805380638073808380938103811381238133814381538163817381838193820382138223823382438253826382738283829383038313832383338343835383638373838383938403841384238433844384538463847384838493850385138523853385438553856385738583859386038613862386338643865386638673868386938703871387238733874387538763877387838793880388138823883388438853886388738883889389038913892389338943895389638973898389939003901390239033904390539063907390839093910391139123913391439153916391739183919392039213922392339243925392639273928392939303931393239333934393539363937393839393940394139423943394439453946394739483949395039513952395339543955395639573958395939603961396239633964396539663967396839693970397139723973397439753976397739783979398039813982398339843985398639873988398939903991399239933994399539963997399839994000400140024003400440054006400740084009401040114012401340144015401640174018401940204021402240234024402540264027402840294030403140324033403440354036403740384039404040414042404340444045404640474048404940504051405240534054405540564057405840594060406140624063406440654066406740684069407040714072407340744075407640774078407940804081408240834084408540864087408840894090409140924093409440954096409740984099410041014102410341044105410641074108410941104111411241134114411541164117411841194120412141224123412441254126412741284129413041314132413341344135413641374138413941404141414241434144414541464147414841494150415141524153415441554156415741584159416041614162416341644165416641674168416941704171417241734174417541764177417841794180418141824183418441854186418741884189419041914192419341944195419641974198419942004201420242034204420542064207420842094210421142124213421442154216421742184219422042214222422342244225422642274228422942304231423242334234423542364237423842394240424142424243424442454246424742484249425042514252425342544255425642574258425942604261426242634264426542664267426842694270427142724273427442754276427742784279428042814282428342844285428642874288428942904291429242934294429542964297429842994300430143024303430443054306430743084309431043114312431343144315431643174318431943204321432243234324432543264327432843294330433143324333433443354336433743384339434043414342434343444345434643474348434943504351435243534354435543564357435843594360436143624363436443654366436743684369437043714372437343744375437643774378437943804381438243834384438543864387438843894390439143924393439443954396439743984399440044014402440344044405440644074408440944104411441244134414441544164417441844194420442144224423442444254426442744284429443044314432443344344435443644374438443944404441444244434444444544464447444844494450445144524453445444554456445744584459446044614462446344644465446644674468446944704471447244734474447544764477447844794480448144824483448444854486448744884489449044914492449344944495449644974498449945004501450245034504450545064507450845094510451145124513451445154516451745184519452045214522452345244525452645274528452945304531453245334534453545364537453845394540454145424543454445454546454745484549455045514552455345544555455645574558455945604561456245634564456545664567456845694570457145724573457445754576457745784579458045814582458345844585458645874588458945904591459245934594459545964597459845994600460146024603460446054606460746084609461046114612461346144615461646174618461946204621462246234624462546264627462846294630463146324633463446354636463746384639464046414642464346444645464646474648464946504651465246534654465546564657465846594660466146624663466446654666466746684669467046714672467346744675467646774678467946804681468246834684468546864687468846894690469146924693469446954696469746984699470047014702470347044705470647074708470947104711471247134714471547164717471847194720472147224723472447254726472747284729473047314732473347344735473647374738473947404741474247434744474547464747474847494750475147524753475447554756475747584759476047614762476347644765476647674768476947704771477247734774477547764777477847794780478147824783478447854786478747884789479047914792479347944795479647974798479948004801480248034804480548064807480848094810481148124813481448154816481748184819482048214822482348244825482648274828482948304831483248334834483548364837483848394840484148424843484448454846484748484849485048514852485348544855485648574858485948604861486248634864486548664867486848694870487148724873487448754876487748784879488048814882488348844885488648874888488948904891489248934894489548964897489848994900490149024903490449054906490749084909491049114912491349144915491649174918491949204921492249234924492549264927492849294930493149324933493449354936493749384939494049414942494349444945494649474948494949504951495249534954495549564957495849594960496149624963496449654966496749684969497049714972497349744975497649774978497949804981498249834984498549864987498849894990499149924993499449954996499749984999500050015002500350045005500650075008500950105011501250135014501550165017501850195020502150225023502450255026502750285029503050315032503350345035503650375038503950405041504250435044504550465047504850495050505150525053505450555056505750585059506050615062506350645065506650675068506950705071507250735074507550765077507850795080508150825083508450855086508750885089509050915092509350945095509650975098509951005101510251035104510551065107510851095110511151125113511451155116511751185119512051215122512351245125512651275128512951305131513251335134513551365137513851395140514151425143514451455146514751485149515051515152515351545155515651575158515951605161516251635164516551665167516851695170517151725173517451755176517751785179518051815182518351845185518651875188518951905191519251935194519551965197519851995200520152025203520452055206520752085209521052115212521352145215521652175218521952205221522252235224522552265227522852295230523152325233523452355236523752385239524052415242524352445245524652475248524952505251525252535254525552565257525852595260526152625263526452655266526752685269527052715272527352745275527652775278527952805281528252835284528552865287528852895290529152925293529452955296529752985299530053015302530353045305530653075308530953105311531253135314531553165317531853195320532153225323532453255326532753285329533053315332533353345335533653375338533953405341534253435344534553465347534853495350535153525353535453555356535753585359536053615362536353645365536653675368536953705371537253735374537553765377537853795380538153825383538453855386538753885389539053915392539353945395539653975398539954005401540254035404540554065407540854095410541154125413541454155416541754185419542054215422542354245425542654275428542954305431543254335434543554365437543854395440544154425443544454455446544754485449545054515452545354545455545654575458545954605461546254635464546554665467546854695470547154725473547454755476547754785479548054815482548354845485548654875488548954905491549254935494549554965497549854995500550155025503550455055506550755085509551055115512551355145515551655175518551955205521552255235524552555265527552855295530553155325533553455355536553755385539554055415542554355445545554655475548554955505551555255535554555555565557555855595560556155625563556455655566556755685569557055715572557355745575557655775578557955805581558255835584558555865587558855895590559155925593559455955596559755985599560056015602560356045605560656075608560956105611561256135614561556165617561856195620562156225623562456255626562756285629563056315632563356345635563656375638563956405641564256435644564556465647564856495650565156525653565456555656565756585659566056615662566356645665566656675668566956705671567256735674567556765677567856795680568156825683568456855686568756885689569056915692569356945695569656975698569957005701570257035704570557065707570857095710571157125713571457155716571757185719572057215722572357245725572657275728572957305731573257335734573557365737573857395740574157425743574457455746574757485749575057515752575357545755575657575758575957605761576257635764576557665767576857695770577157725773577457755776577757785779578057815782578357845785578657875788578957905791579257935794579557965797579857995800580158025803580458055806580758085809581058115812581358145815581658175818581958205821582258235824582558265827582858295830583158325833583458355836583758385839584058415842584358445845584658475848584958505851585258535854585558565857585858595860586158625863586458655866586758685869587058715872587358745875587658775878587958805881588258835884588558865887588858895890589158925893589458955896589758985899590059015902590359045905590659075908590959105911591259135914591559165917591859195920592159225923592459255926592759285929593059315932593359345935593659375938593959405941594259435944594559465947594859495950595159525953595459555956595759585959596059615962596359645965596659675968596959705971597259735974597559765977597859795980598159825983598459855986598759885989599059915992599359945995599659975998599960006001600260036004600560066007600860096010601160126013601460156016601760186019602060216022602360246025602660276028602960306031603260336034603560366037603860396040604160426043604460456046604760486049605060516052605360546055605660576058605960606061606260636064606560666067606860696070607160726073607460756076607760786079608060816082608360846085608660876088608960906091609260936094609560966097609860996100610161026103610461056106610761086109611061116112611361146115611661176118611961206121612261236124612561266127612861296130613161326133613461356136613761386139614061416142614361446145614661476148614961506151615261536154615561566157615861596160616161626163616461656166616761686169617061716172617361746175617661776178617961806181618261836184618561866187618861896190619161926193619461956196619761986199620062016202620362046205620662076208620962106211621262136214621562166217621862196220622162226223622462256226622762286229623062316232623362346235623662376238623962406241624262436244624562466247624862496250625162526253625462556256625762586259626062616262626362646265626662676268626962706271627262736274627562766277627862796280628162826283628462856286628762886289629062916292629362946295629662976298629963006301630263036304630563066307630863096310631163126313631463156316631763186319632063216322632363246325632663276328632963306331633263336334633563366337633863396340634163426343634463456346634763486349635063516352635363546355635663576358635963606361636263636364636563666367636863696370637163726373637463756376637763786379638063816382638363846385638663876388638963906391639263936394639563966397639863996400640164026403640464056406640764086409641064116412641364146415641664176418641964206421642264236424642564266427642864296430643164326433643464356436643764386439644064416442644364446445644664476448644964506451645264536454645564566457645864596460646164626463646464656466646764686469647064716472647364746475647664776478647964806481648264836484648564866487648864896490649164926493649464956496649764986499650065016502650365046505650665076508650965106511651265136514651565166517651865196520652165226523652465256526652765286529653065316532653365346535653665376538653965406541654265436544654565466547654865496550655165526553655465556556655765586559656065616562656365646565656665676568656965706571657265736574657565766577657865796580658165826583658465856586658765886589659065916592659365946595659665976598659966006601660266036604660566066607660866096610661166126613661466156616661766186619662066216622662366246625662666276628662966306631663266336634663566366637663866396640664166426643664466456646664766486649665066516652665366546655665666576658665966606661666266636664666566666667666866696670667166726673667466756676667766786679668066816682668366846685668666876688668966906691669266936694669566966697669866996700670167026703670467056706670767086709671067116712671367146715671667176718671967206721672267236724672567266727672867296730673167326733673467356736673767386739674067416742674367446745674667476748674967506751675267536754675567566757675867596760676167626763676467656766676767686769677067716772677367746775677667776778677967806781678267836784678567866787678867896790679167926793679467956796679767986799680068016802680368046805680668076808680968106811681268136814681568166817681868196820682168226823682468256826682768286829683068316832683368346835683668376838683968406841684268436844684568466847684868496850685168526853685468556856685768586859686068616862686368646865686668676868686968706871687268736874687568766877687868796880688168826883688468856886688768886889689068916892689368946895689668976898689969006901690269036904690569066907690869096910691169126913691469156916691769186919692069216922692369246925692669276928692969306931693269336934693569366937693869396940694169426943694469456946694769486949695069516952695369546955695669576958695969606961696269636964696569666967696869696970697169726973697469756976697769786979698069816982698369846985698669876988698969906991699269936994699569966997699869997000700170027003700470057006700770087009701070117012701370147015701670177018701970207021702270237024702570267027702870297030703170327033703470357036703770387039704070417042704370447045704670477048704970507051705270537054705570567057705870597060706170627063706470657066706770687069707070717072707370747075707670777078707970807081708270837084708570867087708870897090709170927093709470957096709770987099710071017102710371047105710671077108710971107111711271137114711571167117711871197120712171227123712471257126712771287129713071317132713371347135713671377138713971407141714271437144714571467147714871497150715171527153715471557156715771587159716071617162716371647165716671677168716971707171717271737174717571767177717871797180718171827183718471857186718771887189719071917192719371947195719671977198719972007201720272037204720572067207720872097210721172127213721472157216721772187219722072217222722372247225722672277228722972307231723272337234723572367237723872397240724172427243724472457246724772487249725072517252725372547255725672577258725972607261726272637264726572667267726872697270727172727273727472757276727772787279728072817282728372847285728672877288728972907291729272937294729572967297729872997300730173027303730473057306730773087309731073117312731373147315731673177318731973207321732273237324732573267327732873297330733173327333733473357336733773387339734073417342734373447345734673477348734973507351735273537354735573567357735873597360736173627363736473657366736773687369737073717372737373747375737673777378737973807381738273837384738573867387738873897390739173927393739473957396739773987399740074017402740374047405740674077408740974107411741274137414741574167417741874197420742174227423742474257426742774287429743074317432743374347435743674377438743974407441744274437444744574467447744874497450745174527453745474557456745774587459746074617462746374647465746674677468746974707471747274737474747574767477747874797480748174827483748474857486748774887489749074917492749374947495749674977498749975007501750275037504750575067507750875097510751175127513751475157516751775187519752075217522752375247525752675277528752975307531753275337534753575367537753875397540754175427543754475457546754775487549755075517552755375547555755675577558755975607561756275637564756575667567756875697570757175727573757475757576757775787579758075817582758375847585758675877588758975907591759275937594759575967597759875997600760176027603760476057606760776087609761076117612761376147615761676177618761976207621762276237624762576267627762876297630763176327633763476357636763776387639764076417642764376447645764676477648764976507651765276537654765576567657765876597660766176627663766476657666766776687669767076717672767376747675767676777678767976807681768276837684768576867687768876897690769176927693769476957696769776987699770077017702770377047705770677077708770977107711771277137714771577167717771877197720772177227723772477257726772777287729773077317732773377347735773677377738773977407741774277437744774577467747774877497750775177527753775477557756775777587759776077617762776377647765776677677768776977707771777277737774777577767777777877797780778177827783778477857786778777887789779077917792779377947795779677977798779978007801780278037804780578067807780878097810781178127813781478157816781778187819782078217822782378247825782678277828782978307831783278337834783578367837783878397840784178427843784478457846784778487849785078517852785378547855785678577858785978607861786278637864786578667867786878697870787178727873787478757876787778787879788078817882788378847885788678877888788978907891789278937894789578967897789878997900790179027903790479057906790779087909791079117912791379147915791679177918791979207921792279237924792579267927792879297930793179327933793479357936793779387939794079417942794379447945794679477948794979507951795279537954795579567957795879597960796179627963796479657966796779687969797079717972797379747975797679777978797979807981798279837984798579867987798879897990799179927993799479957996799779987999800080018002800380048005800680078008800980108011801280138014801580168017801880198020802180228023802480258026802780288029803080318032803380348035803680378038803980408041804280438044804580468047804880498050805180528053805480558056805780588059806080618062806380648065806680678068806980708071807280738074807580768077807880798080808180828083808480858086808780888089809080918092809380948095809680978098809981008101810281038104810581068107810881098110811181128113811481158116811781188119812081218122812381248125812681278128812981308131813281338134813581368137813881398140814181428143814481458146814781488149815081518152815381548155815681578158815981608161816281638164816581668167816881698170817181728173817481758176817781788179818081818182818381848185818681878188818981908191819281938194819581968197819881998200820182028203820482058206820782088209821082118212821382148215821682178218821982208221822282238224822582268227822882298230823182328233823482358236823782388239824082418242824382448245824682478248824982508251825282538254825582568257825882598260826182628263826482658266826782688269827082718272827382748275827682778278827982808281828282838284828582868287828882898290829182928293829482958296829782988299830083018302830383048305830683078308830983108311831283138314831583168317831883198320832183228323832483258326832783288329833083318332833383348335833683378338833983408341834283438344834583468347834883498350835183528353835483558356835783588359836083618362836383648365836683678368836983708371837283738374837583768377837883798380838183828383838483858386838783888389839083918392839383948395839683978398839984008401840284038404840584068407840884098410841184128413841484158416841784188419842084218422842384248425842684278428842984308431843284338434843584368437843884398440844184428443844484458446844784488449845084518452845384548455845684578458845984608461846284638464846584668467846884698470847184728473847484758476847784788479848084818482848384848485848684878488848984908491849284938494849584968497849884998500850185028503850485058506850785088509851085118512851385148515851685178518851985208521852285238524852585268527852885298530853185328533853485358536853785388539854085418542854385448545854685478548854985508551855285538554855585568557855885598560856185628563856485658566856785688569857085718572857385748575857685778578857985808581858285838584858585868587858885898590859185928593859485958596859785988599860086018602860386048605860686078608860986108611861286138614861586168617861886198620862186228623862486258626862786288629863086318632863386348635863686378638863986408641864286438644864586468647864886498650865186528653865486558656865786588659866086618662866386648665866686678668866986708671867286738674867586768677867886798680868186828683868486858686868786888689869086918692869386948695869686978698869987008701870287038704870587068707870887098710871187128713871487158716871787188719872087218722872387248725872687278728872987308731873287338734873587368737873887398740874187428743874487458746874787488749875087518752875387548755875687578758875987608761876287638764876587668767876887698770877187728773877487758776877787788779878087818782878387848785878687878788878987908791879287938794879587968797879887998800880188028803880488058806880788088809881088118812881388148815881688178818881988208821882288238824882588268827882888298830883188328833883488358836883788388839884088418842884388448845884688478848884988508851885288538854885588568857885888598860886188628863886488658866886788688869887088718872887388748875887688778878887988808881888288838884888588868887888888898890889188928893889488958896889788988899890089018902890389048905890689078908890989108911891289138914891589168917891889198920892189228923892489258926892789288929893089318932893389348935893689378938893989408941894289438944894589468947894889498950895189528953895489558956895789588959896089618962896389648965896689678968896989708971897289738974897589768977897889798980898189828983898489858986898789888989899089918992899389948995899689978998899990009001900290039004900590069007900890099010901190129013901490159016901790189019902090219022902390249025902690279028902990309031903290339034903590369037903890399040904190429043904490459046904790489049905090519052905390549055905690579058905990609061906290639064906590669067906890699070907190729073907490759076907790789079908090819082908390849085908690879088908990909091909290939094909590969097909890999100910191029103910491059106910791089109911091119112911391149115911691179118911991209121912291239124912591269127912891299130913191329133913491359136913791389139914091419142914391449145914691479148914991509151915291539154
  1. body {
  2. margin:0px;
  3. background-image:none;
  4. position:relative;
  5. left:0px;
  6. width:3244px;
  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. #u66498_div {
  20. border-width:0px;
  21. position:absolute;
  22. left:0px;
  23. top:0px;
  24. width:1480px;
  25. height:1200px;
  26. background:inherit;
  27. background-color:rgba(242, 242, 242, 1);
  28. border:none;
  29. border-radius:0px;
  30. -moz-box-shadow:none;
  31. -webkit-box-shadow:none;
  32. box-shadow:none;
  33. }
  34. #u66498 {
  35. border-width:0px;
  36. position:absolute;
  37. left:120px;
  38. top:50px;
  39. width:1480px;
  40. height:1200px;
  41. display:flex;
  42. }
  43. #u66498 .text {
  44. position:absolute;
  45. align-self:center;
  46. padding:2px 2px 2px 2px;
  47. box-sizing:border-box;
  48. width:100%;
  49. }
  50. #u66498_text {
  51. border-width:0px;
  52. word-wrap:break-word;
  53. text-transform:none;
  54. visibility:hidden;
  55. }
  56. #u66499_div {
  57. border-width:0px;
  58. position:absolute;
  59. left:0px;
  60. top:0px;
  61. width:129px;
  62. height:22px;
  63. background:inherit;
  64. background-color:rgba(255, 255, 255, 0);
  65. border:none;
  66. border-radius:0px;
  67. -moz-box-shadow:none;
  68. -webkit-box-shadow:none;
  69. box-shadow:none;
  70. font-size:16px;
  71. color:#FFFFFF;
  72. }
  73. #u66499 {
  74. border-width:0px;
  75. position:absolute;
  76. left:49px;
  77. top:14px;
  78. width:129px;
  79. height:22px;
  80. display:flex;
  81. font-size:16px;
  82. color:#FFFFFF;
  83. }
  84. #u66499 .text {
  85. position:absolute;
  86. align-self:flex-start;
  87. padding:0px 0px 0px 0px;
  88. box-sizing:border-box;
  89. width:100%;
  90. }
  91. #u66499_text {
  92. border-width:0px;
  93. white-space:nowrap;
  94. text-transform:none;
  95. }
  96. #u66500_div {
  97. border-width:0px;
  98. position:absolute;
  99. left:0px;
  100. top:0px;
  101. width:1600px;
  102. height:50px;
  103. background:inherit;
  104. background-color:rgba(30, 42, 68, 1);
  105. border:none;
  106. border-radius:0px;
  107. -moz-box-shadow:none;
  108. -webkit-box-shadow:none;
  109. box-shadow:none;
  110. color:#AFB3B6;
  111. }
  112. #u66500 {
  113. border-width:0px;
  114. position:absolute;
  115. left:0px;
  116. top:0px;
  117. width:1600px;
  118. height:50px;
  119. display:flex;
  120. color:#AFB3B6;
  121. }
  122. #u66500 .text {
  123. position:absolute;
  124. align-self:center;
  125. padding:2px 2px 2px 2px;
  126. box-sizing:border-box;
  127. width:100%;
  128. }
  129. #u66500_text {
  130. border-width:0px;
  131. word-wrap:break-word;
  132. text-transform:none;
  133. visibility:hidden;
  134. }
  135. #u66501 {
  136. border-width:0px;
  137. position:absolute;
  138. left:0px;
  139. top:0px;
  140. width:0px;
  141. height:0px;
  142. }
  143. #u66502_img {
  144. border-width:0px;
  145. position:absolute;
  146. left:0px;
  147. top:0px;
  148. width:31px;
  149. height:31px;
  150. }
  151. #u66502 {
  152. border-width:0px;
  153. position:absolute;
  154. left:19px;
  155. top:10px;
  156. width:31px;
  157. height:31px;
  158. display:flex;
  159. }
  160. #u66502 .text {
  161. position:absolute;
  162. align-self:center;
  163. padding:2px 2px 2px 2px;
  164. box-sizing:border-box;
  165. width:100%;
  166. }
  167. #u66502_text {
  168. border-width:0px;
  169. word-wrap:break-word;
  170. text-transform:none;
  171. }
  172. #u66503_div {
  173. border-width:0px;
  174. position:absolute;
  175. left:0px;
  176. top:0px;
  177. width:161px;
  178. height:22px;
  179. background:inherit;
  180. background-color:rgba(255, 255, 255, 0);
  181. border:none;
  182. border-radius:0px;
  183. -moz-box-shadow:none;
  184. -webkit-box-shadow:none;
  185. box-shadow:none;
  186. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  187. font-weight:400;
  188. font-style:normal;
  189. font-size:16px;
  190. color:#FFFFFF;
  191. }
  192. #u66503 {
  193. border-width:0px;
  194. position:absolute;
  195. left:62px;
  196. top:14px;
  197. width:161px;
  198. height:22px;
  199. display:flex;
  200. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  201. font-weight:400;
  202. font-style:normal;
  203. font-size:16px;
  204. color:#FFFFFF;
  205. }
  206. #u66503 .text {
  207. position:absolute;
  208. align-self:flex-start;
  209. padding:0px 0px 0px 0px;
  210. box-sizing:border-box;
  211. width:100%;
  212. }
  213. #u66503_text {
  214. border-width:0px;
  215. white-space:nowrap;
  216. text-transform:none;
  217. }
  218. #u66504_div {
  219. border-width:0px;
  220. position:absolute;
  221. left:0px;
  222. top:0px;
  223. width:120px;
  224. height:1200px;
  225. background:inherit;
  226. background-color:rgba(30, 42, 68, 1);
  227. border:none;
  228. border-radius:0px;
  229. -moz-box-shadow:none;
  230. -webkit-box-shadow:none;
  231. box-shadow:none;
  232. color:#AFB3B6;
  233. }
  234. #u66504 {
  235. border-width:0px;
  236. position:absolute;
  237. left:0px;
  238. top:47px;
  239. width:120px;
  240. height:1200px;
  241. display:flex;
  242. color:#AFB3B6;
  243. }
  244. #u66504 .text {
  245. position:absolute;
  246. align-self:center;
  247. padding:2px 2px 2px 2px;
  248. box-sizing:border-box;
  249. width:100%;
  250. }
  251. #u66504_text {
  252. border-width:0px;
  253. word-wrap:break-word;
  254. text-transform:none;
  255. visibility:hidden;
  256. }
  257. #u66505 {
  258. border-width:0px;
  259. position:absolute;
  260. left:0px;
  261. top:0px;
  262. width:0px;
  263. height:0px;
  264. }
  265. #u66506_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. #u66506 {
  286. border-width:0px;
  287. position:absolute;
  288. left:39px;
  289. top:71px;
  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. #u66506 .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. #u66506_text {
  307. border-width:0px;
  308. white-space:nowrap;
  309. text-transform:none;
  310. }
  311. #u66507_img {
  312. border-width:0px;
  313. position:absolute;
  314. left:0px;
  315. top:0px;
  316. width:14px;
  317. height:14px;
  318. }
  319. #u66507 {
  320. border-width:0px;
  321. position:absolute;
  322. left:20px;
  323. top:75px;
  324. width:14px;
  325. height:14px;
  326. display:flex;
  327. }
  328. #u66507 .text {
  329. position:absolute;
  330. align-self:center;
  331. padding:2px 2px 2px 2px;
  332. box-sizing:border-box;
  333. width:100%;
  334. }
  335. #u66507_text {
  336. border-width:0px;
  337. word-wrap:break-word;
  338. text-transform:none;
  339. visibility:hidden;
  340. }
  341. #u66508 {
  342. border-width:0px;
  343. position:absolute;
  344. left:0px;
  345. top:0px;
  346. width:0px;
  347. height:0px;
  348. }
  349. #u66509_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. #u66509 {
  370. border-width:0px;
  371. position:absolute;
  372. left:39px;
  373. top:147px;
  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. #u66509 .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. #u66509_text {
  391. border-width:0px;
  392. white-space:nowrap;
  393. text-transform:none;
  394. }
  395. #u66510_img {
  396. border-width:0px;
  397. position:absolute;
  398. left:0px;
  399. top:0px;
  400. width:14px;
  401. height:14px;
  402. }
  403. #u66510 {
  404. border-width:0px;
  405. position:absolute;
  406. left:20px;
  407. top:151px;
  408. width:14px;
  409. height:14px;
  410. display:flex;
  411. }
  412. #u66510 .text {
  413. position:absolute;
  414. align-self:center;
  415. padding:2px 2px 2px 2px;
  416. box-sizing:border-box;
  417. width:100%;
  418. }
  419. #u66510_text {
  420. border-width:0px;
  421. word-wrap:break-word;
  422. text-transform:none;
  423. visibility:hidden;
  424. }
  425. #u66511 {
  426. border-width:0px;
  427. position:absolute;
  428. left:0px;
  429. top:0px;
  430. width:0px;
  431. height:0px;
  432. }
  433. #u66512_div {
  434. border-width:0px;
  435. position:absolute;
  436. left:0px;
  437. top:0px;
  438. width:33px;
  439. height:22px;
  440. background:inherit;
  441. background-color:rgba(255, 255, 255, 0);
  442. border:none;
  443. border-radius:0px;
  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. font-size:16px;
  451. color:#FFFFFF;
  452. }
  453. #u66512 {
  454. border-width:0px;
  455. position:absolute;
  456. left:39px;
  457. top:399px;
  458. width:33px;
  459. height:22px;
  460. display:flex;
  461. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  462. font-weight:400;
  463. font-style:normal;
  464. font-size:16px;
  465. color:#FFFFFF;
  466. }
  467. #u66512 .text {
  468. position:absolute;
  469. align-self:flex-start;
  470. padding:0px 0px 0px 0px;
  471. box-sizing:border-box;
  472. width:100%;
  473. }
  474. #u66512_text {
  475. border-width:0px;
  476. white-space:nowrap;
  477. text-transform:none;
  478. }
  479. #u66513_img {
  480. border-width:0px;
  481. position:absolute;
  482. left:0px;
  483. top:0px;
  484. width:14px;
  485. height:14px;
  486. }
  487. #u66513 {
  488. border-width:0px;
  489. position:absolute;
  490. left:20px;
  491. top:403px;
  492. width:14px;
  493. height:14px;
  494. display:flex;
  495. }
  496. #u66513 .text {
  497. position:absolute;
  498. align-self:center;
  499. padding:2px 2px 2px 2px;
  500. box-sizing:border-box;
  501. width:100%;
  502. }
  503. #u66513_text {
  504. border-width:0px;
  505. word-wrap:break-word;
  506. text-transform:none;
  507. visibility:hidden;
  508. }
  509. #u66514 {
  510. border-width:0px;
  511. position:absolute;
  512. left:0px;
  513. top:0px;
  514. width:0px;
  515. height:0px;
  516. }
  517. #u66515_div {
  518. border-width:0px;
  519. position:absolute;
  520. left:0px;
  521. top:0px;
  522. width:49px;
  523. height:22px;
  524. background:inherit;
  525. background-color:rgba(255, 255, 255, 0);
  526. border:none;
  527. border-radius:0px;
  528. -moz-box-shadow:none;
  529. -webkit-box-shadow:none;
  530. box-shadow:none;
  531. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  532. font-weight:400;
  533. font-style:normal;
  534. font-size:16px;
  535. color:#FFFFFF;
  536. }
  537. #u66515 {
  538. border-width:0px;
  539. position:absolute;
  540. left:39px;
  541. top:109px;
  542. width:49px;
  543. height:22px;
  544. display:flex;
  545. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  546. font-weight:400;
  547. font-style:normal;
  548. font-size:16px;
  549. color:#FFFFFF;
  550. }
  551. #u66515 .text {
  552. position:absolute;
  553. align-self:flex-start;
  554. padding:0px 0px 0px 0px;
  555. box-sizing:border-box;
  556. width:100%;
  557. }
  558. #u66515_text {
  559. border-width:0px;
  560. white-space:nowrap;
  561. text-transform:none;
  562. }
  563. #u66516_img {
  564. border-width:0px;
  565. position:absolute;
  566. left:0px;
  567. top:0px;
  568. width:14px;
  569. height:14px;
  570. }
  571. #u66516 {
  572. border-width:0px;
  573. position:absolute;
  574. left:20px;
  575. top:113px;
  576. width:14px;
  577. height:14px;
  578. display:flex;
  579. }
  580. #u66516 .text {
  581. position:absolute;
  582. align-self:center;
  583. padding:2px 2px 2px 2px;
  584. box-sizing:border-box;
  585. width:100%;
  586. }
  587. #u66516_text {
  588. border-width:0px;
  589. word-wrap:break-word;
  590. text-transform:none;
  591. visibility:hidden;
  592. }
  593. #u66517 {
  594. border-width:0px;
  595. position:absolute;
  596. left:0px;
  597. top:0px;
  598. width:0px;
  599. height:0px;
  600. }
  601. #u66518_div {
  602. border-width:0px;
  603. position:absolute;
  604. left:0px;
  605. top:0px;
  606. width:33px;
  607. height:22px;
  608. background:inherit;
  609. background-color:rgba(255, 255, 255, 0);
  610. border:none;
  611. border-radius:0px;
  612. -moz-box-shadow:none;
  613. -webkit-box-shadow:none;
  614. box-shadow:none;
  615. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  616. font-weight:400;
  617. font-style:normal;
  618. font-size:16px;
  619. color:#FFFFFF;
  620. }
  621. #u66518 {
  622. border-width:0px;
  623. position:absolute;
  624. left:39px;
  625. top:441px;
  626. width:33px;
  627. height:22px;
  628. display:flex;
  629. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  630. font-weight:400;
  631. font-style:normal;
  632. font-size:16px;
  633. color:#FFFFFF;
  634. }
  635. #u66518 .text {
  636. position:absolute;
  637. align-self:flex-start;
  638. padding:0px 0px 0px 0px;
  639. box-sizing:border-box;
  640. width:100%;
  641. }
  642. #u66518_text {
  643. border-width:0px;
  644. white-space:nowrap;
  645. text-transform:none;
  646. }
  647. #u66519_img {
  648. border-width:0px;
  649. position:absolute;
  650. left:0px;
  651. top:0px;
  652. width:14px;
  653. height:14px;
  654. }
  655. #u66519 {
  656. border-width:0px;
  657. position:absolute;
  658. left:20px;
  659. top:445px;
  660. width:14px;
  661. height:14px;
  662. display:flex;
  663. }
  664. #u66519 .text {
  665. position:absolute;
  666. align-self:center;
  667. padding:2px 2px 2px 2px;
  668. box-sizing:border-box;
  669. width:100%;
  670. }
  671. #u66519_text {
  672. border-width:0px;
  673. word-wrap:break-word;
  674. text-transform:none;
  675. visibility:hidden;
  676. }
  677. #u66520 {
  678. border-width:0px;
  679. position:absolute;
  680. left:0px;
  681. top:0px;
  682. width:0px;
  683. height:0px;
  684. }
  685. #u66521_div {
  686. border-width:0px;
  687. position:absolute;
  688. left:0px;
  689. top:0px;
  690. width:33px;
  691. height:22px;
  692. background:inherit;
  693. background-color:rgba(255, 255, 255, 0);
  694. border:none;
  695. border-radius:0px;
  696. -moz-box-shadow:none;
  697. -webkit-box-shadow:none;
  698. box-shadow:none;
  699. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  700. font-weight:400;
  701. font-style:normal;
  702. font-size:16px;
  703. color:#FFFFFF;
  704. }
  705. #u66521 {
  706. border-width:0px;
  707. position:absolute;
  708. left:39px;
  709. top:315px;
  710. width:33px;
  711. height:22px;
  712. display:flex;
  713. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  714. font-weight:400;
  715. font-style:normal;
  716. font-size:16px;
  717. color:#FFFFFF;
  718. }
  719. #u66521 .text {
  720. position:absolute;
  721. align-self:flex-start;
  722. padding:0px 0px 0px 0px;
  723. box-sizing:border-box;
  724. width:100%;
  725. }
  726. #u66521_text {
  727. border-width:0px;
  728. white-space:nowrap;
  729. text-transform:none;
  730. }
  731. #u66522_img {
  732. border-width:0px;
  733. position:absolute;
  734. left:0px;
  735. top:0px;
  736. width:14px;
  737. height:14px;
  738. }
  739. #u66522 {
  740. border-width:0px;
  741. position:absolute;
  742. left:20px;
  743. top:319px;
  744. width:14px;
  745. height:14px;
  746. display:flex;
  747. }
  748. #u66522 .text {
  749. position:absolute;
  750. align-self:center;
  751. padding:2px 2px 2px 2px;
  752. box-sizing:border-box;
  753. width:100%;
  754. }
  755. #u66522_text {
  756. border-width:0px;
  757. word-wrap:break-word;
  758. text-transform:none;
  759. visibility:hidden;
  760. }
  761. #u66523 {
  762. border-width:0px;
  763. position:absolute;
  764. left:0px;
  765. top:0px;
  766. width:0px;
  767. height:0px;
  768. }
  769. #u66524_div {
  770. border-width:0px;
  771. position:absolute;
  772. left:0px;
  773. top:0px;
  774. width:33px;
  775. height:22px;
  776. background:inherit;
  777. background-color:rgba(255, 255, 255, 0);
  778. border:none;
  779. border-radius:0px;
  780. -moz-box-shadow:none;
  781. -webkit-box-shadow:none;
  782. box-shadow:none;
  783. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  784. font-weight:400;
  785. font-style:normal;
  786. font-size:16px;
  787. color:#FFFFFF;
  788. }
  789. #u66524 {
  790. border-width:0px;
  791. position:absolute;
  792. left:39px;
  793. top:189px;
  794. width:33px;
  795. height:22px;
  796. display:flex;
  797. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  798. font-weight:400;
  799. font-style:normal;
  800. font-size:16px;
  801. color:#FFFFFF;
  802. }
  803. #u66524 .text {
  804. position:absolute;
  805. align-self:flex-start;
  806. padding:0px 0px 0px 0px;
  807. box-sizing:border-box;
  808. width:100%;
  809. }
  810. #u66524_text {
  811. border-width:0px;
  812. white-space:nowrap;
  813. text-transform:none;
  814. }
  815. #u66525_img {
  816. border-width:0px;
  817. position:absolute;
  818. left:0px;
  819. top:0px;
  820. width:14px;
  821. height:14px;
  822. }
  823. #u66525 {
  824. border-width:0px;
  825. position:absolute;
  826. left:20px;
  827. top:193px;
  828. width:14px;
  829. height:14px;
  830. display:flex;
  831. }
  832. #u66525 .text {
  833. position:absolute;
  834. align-self:center;
  835. padding:2px 2px 2px 2px;
  836. box-sizing:border-box;
  837. width:100%;
  838. }
  839. #u66525_text {
  840. border-width:0px;
  841. word-wrap:break-word;
  842. text-transform:none;
  843. visibility:hidden;
  844. }
  845. #u66526 {
  846. border-width:0px;
  847. position:absolute;
  848. left:0px;
  849. top:0px;
  850. width:0px;
  851. height:0px;
  852. }
  853. #u66527_div {
  854. border-width:0px;
  855. position:absolute;
  856. left:0px;
  857. top:0px;
  858. width:33px;
  859. height:22px;
  860. background:inherit;
  861. background-color:rgba(255, 255, 255, 0);
  862. border:none;
  863. border-radius:0px;
  864. -moz-box-shadow:none;
  865. -webkit-box-shadow:none;
  866. box-shadow:none;
  867. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  868. font-weight:400;
  869. font-style:normal;
  870. font-size:16px;
  871. color:#FFFFFF;
  872. }
  873. #u66527 {
  874. border-width:0px;
  875. position:absolute;
  876. left:39px;
  877. top:357px;
  878. width:33px;
  879. height:22px;
  880. display:flex;
  881. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  882. font-weight:400;
  883. font-style:normal;
  884. font-size:16px;
  885. color:#FFFFFF;
  886. }
  887. #u66527 .text {
  888. position:absolute;
  889. align-self:flex-start;
  890. padding:0px 0px 0px 0px;
  891. box-sizing:border-box;
  892. width:100%;
  893. }
  894. #u66527_text {
  895. border-width:0px;
  896. white-space:nowrap;
  897. text-transform:none;
  898. }
  899. #u66528_img {
  900. border-width:0px;
  901. position:absolute;
  902. left:0px;
  903. top:0px;
  904. width:14px;
  905. height:14px;
  906. }
  907. #u66528 {
  908. border-width:0px;
  909. position:absolute;
  910. left:20px;
  911. top:361px;
  912. width:14px;
  913. height:14px;
  914. display:flex;
  915. }
  916. #u66528 .text {
  917. position:absolute;
  918. align-self:center;
  919. padding:2px 2px 2px 2px;
  920. box-sizing:border-box;
  921. width:100%;
  922. }
  923. #u66528_text {
  924. border-width:0px;
  925. word-wrap:break-word;
  926. text-transform:none;
  927. visibility:hidden;
  928. }
  929. #u66529 {
  930. border-width:0px;
  931. position:absolute;
  932. left:0px;
  933. top:0px;
  934. width:0px;
  935. height:0px;
  936. }
  937. #u66530_div {
  938. border-width:0px;
  939. position:absolute;
  940. left:0px;
  941. top:0px;
  942. width:33px;
  943. height:22px;
  944. background:inherit;
  945. background-color:rgba(255, 255, 255, 0);
  946. border:none;
  947. border-radius:0px;
  948. -moz-box-shadow:none;
  949. -webkit-box-shadow:none;
  950. box-shadow:none;
  951. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  952. font-weight:400;
  953. font-style:normal;
  954. font-size:16px;
  955. color:#FFFFFF;
  956. }
  957. #u66530 {
  958. border-width:0px;
  959. position:absolute;
  960. left:39px;
  961. top:483px;
  962. width:33px;
  963. height:22px;
  964. display:flex;
  965. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  966. font-weight:400;
  967. font-style:normal;
  968. font-size:16px;
  969. color:#FFFFFF;
  970. }
  971. #u66530 .text {
  972. position:absolute;
  973. align-self:flex-start;
  974. padding:0px 0px 0px 0px;
  975. box-sizing:border-box;
  976. width:100%;
  977. }
  978. #u66530_text {
  979. border-width:0px;
  980. white-space:nowrap;
  981. text-transform:none;
  982. }
  983. #u66531_img {
  984. border-width:0px;
  985. position:absolute;
  986. left:0px;
  987. top:0px;
  988. width:14px;
  989. height:14px;
  990. }
  991. #u66531 {
  992. border-width:0px;
  993. position:absolute;
  994. left:20px;
  995. top:487px;
  996. width:14px;
  997. height:14px;
  998. display:flex;
  999. }
  1000. #u66531 .text {
  1001. position:absolute;
  1002. align-self:center;
  1003. padding:2px 2px 2px 2px;
  1004. box-sizing:border-box;
  1005. width:100%;
  1006. }
  1007. #u66531_text {
  1008. border-width:0px;
  1009. word-wrap:break-word;
  1010. text-transform:none;
  1011. visibility:hidden;
  1012. }
  1013. #u66532_div {
  1014. border-width:0px;
  1015. position:absolute;
  1016. left:0px;
  1017. top:0px;
  1018. width:29px;
  1019. height:20px;
  1020. background:inherit;
  1021. background-color:rgba(255, 255, 255, 0);
  1022. border:none;
  1023. border-radius:25px;
  1024. -moz-box-shadow:none;
  1025. -webkit-box-shadow:none;
  1026. box-shadow:none;
  1027. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1028. font-weight:400;
  1029. font-style:normal;
  1030. color:#FFFFFF;
  1031. }
  1032. #u66532 {
  1033. border-width:0px;
  1034. position:absolute;
  1035. left:52px;
  1036. top:1145px;
  1037. width:29px;
  1038. height:20px;
  1039. display:flex;
  1040. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1041. font-weight:400;
  1042. font-style:normal;
  1043. color:#FFFFFF;
  1044. }
  1045. #u66532 .text {
  1046. position:absolute;
  1047. align-self:center;
  1048. padding:0px 0px 0px 0px;
  1049. box-sizing:border-box;
  1050. width:100%;
  1051. }
  1052. #u66532_text {
  1053. border-width:0px;
  1054. white-space:nowrap;
  1055. text-transform:none;
  1056. }
  1057. #u66533_img {
  1058. border-width:0px;
  1059. position:absolute;
  1060. left:0px;
  1061. top:0px;
  1062. width:22px;
  1063. height:22px;
  1064. }
  1065. #u66533 {
  1066. border-width:0px;
  1067. position:absolute;
  1068. left:20px;
  1069. top:1144px;
  1070. width:22px;
  1071. height:22px;
  1072. display:flex;
  1073. }
  1074. #u66533 .text {
  1075. position:absolute;
  1076. align-self:center;
  1077. padding:2px 2px 2px 2px;
  1078. box-sizing:border-box;
  1079. width:100%;
  1080. }
  1081. #u66533_text {
  1082. border-width:0px;
  1083. word-wrap:break-word;
  1084. text-transform:none;
  1085. visibility:hidden;
  1086. }
  1087. #u66534_div {
  1088. border-width:0px;
  1089. position:absolute;
  1090. left:0px;
  1091. top:0px;
  1092. width:29px;
  1093. height:20px;
  1094. background:inherit;
  1095. background-color:rgba(255, 255, 255, 0);
  1096. border:none;
  1097. border-radius:25px;
  1098. -moz-box-shadow:none;
  1099. -webkit-box-shadow:none;
  1100. box-shadow:none;
  1101. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1102. font-weight:400;
  1103. font-style:normal;
  1104. color:#FFFFFF;
  1105. }
  1106. #u66534 {
  1107. border-width:0px;
  1108. position:absolute;
  1109. left:52px;
  1110. top:1187px;
  1111. width:29px;
  1112. height:20px;
  1113. display:flex;
  1114. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1115. font-weight:400;
  1116. font-style:normal;
  1117. color:#FFFFFF;
  1118. }
  1119. #u66534 .text {
  1120. position:absolute;
  1121. align-self:center;
  1122. padding:0px 0px 0px 0px;
  1123. box-sizing:border-box;
  1124. width:100%;
  1125. }
  1126. #u66534_text {
  1127. border-width:0px;
  1128. white-space:nowrap;
  1129. text-transform:none;
  1130. }
  1131. #u66535_img {
  1132. border-width:0px;
  1133. position:absolute;
  1134. left:0px;
  1135. top:0px;
  1136. width:22px;
  1137. height:22px;
  1138. }
  1139. #u66535 {
  1140. border-width:0px;
  1141. position:absolute;
  1142. left:20px;
  1143. top:1186px;
  1144. width:22px;
  1145. height:22px;
  1146. display:flex;
  1147. }
  1148. #u66535 .text {
  1149. position:absolute;
  1150. align-self:center;
  1151. padding:2px 2px 2px 2px;
  1152. box-sizing:border-box;
  1153. width:100%;
  1154. }
  1155. #u66535_text {
  1156. border-width:0px;
  1157. word-wrap:break-word;
  1158. text-transform:none;
  1159. visibility:hidden;
  1160. }
  1161. #u66536 {
  1162. border-width:0px;
  1163. position:absolute;
  1164. left:0px;
  1165. top:0px;
  1166. width:0px;
  1167. height:0px;
  1168. }
  1169. #u66537_div {
  1170. border-width:0px;
  1171. position:absolute;
  1172. left:0px;
  1173. top:0px;
  1174. width:33px;
  1175. height:22px;
  1176. background:inherit;
  1177. background-color:rgba(255, 255, 255, 0);
  1178. border:none;
  1179. border-radius:0px;
  1180. -moz-box-shadow:none;
  1181. -webkit-box-shadow:none;
  1182. box-shadow:none;
  1183. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1184. font-weight:400;
  1185. font-style:normal;
  1186. font-size:16px;
  1187. color:#FFFFFF;
  1188. }
  1189. #u66537 {
  1190. border-width:0px;
  1191. position:absolute;
  1192. left:39px;
  1193. top:231px;
  1194. width:33px;
  1195. height:22px;
  1196. display:flex;
  1197. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1198. font-weight:400;
  1199. font-style:normal;
  1200. font-size:16px;
  1201. color:#FFFFFF;
  1202. }
  1203. #u66537 .text {
  1204. position:absolute;
  1205. align-self:flex-start;
  1206. padding:0px 0px 0px 0px;
  1207. box-sizing:border-box;
  1208. width:100%;
  1209. }
  1210. #u66537_text {
  1211. border-width:0px;
  1212. white-space:nowrap;
  1213. text-transform:none;
  1214. }
  1215. #u66538_img {
  1216. border-width:0px;
  1217. position:absolute;
  1218. left:0px;
  1219. top:0px;
  1220. width:14px;
  1221. height:14px;
  1222. }
  1223. #u66538 {
  1224. border-width:0px;
  1225. position:absolute;
  1226. left:20px;
  1227. top:235px;
  1228. width:14px;
  1229. height:14px;
  1230. display:flex;
  1231. }
  1232. #u66538 .text {
  1233. position:absolute;
  1234. align-self:center;
  1235. padding:2px 2px 2px 2px;
  1236. box-sizing:border-box;
  1237. width:100%;
  1238. }
  1239. #u66538_text {
  1240. border-width:0px;
  1241. word-wrap:break-word;
  1242. text-transform:none;
  1243. visibility:hidden;
  1244. }
  1245. #u66539 {
  1246. border-width:0px;
  1247. position:absolute;
  1248. left:0px;
  1249. top:0px;
  1250. width:0px;
  1251. height:0px;
  1252. }
  1253. #u66540_div {
  1254. border-width:0px;
  1255. position:absolute;
  1256. left:0px;
  1257. top:0px;
  1258. width:33px;
  1259. height:22px;
  1260. background:inherit;
  1261. background-color:rgba(255, 255, 255, 0);
  1262. border:none;
  1263. border-radius:0px;
  1264. -moz-box-shadow:none;
  1265. -webkit-box-shadow:none;
  1266. box-shadow:none;
  1267. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1268. font-weight:400;
  1269. font-style:normal;
  1270. font-size:16px;
  1271. color:#FFFFFF;
  1272. }
  1273. #u66540 {
  1274. border-width:0px;
  1275. position:absolute;
  1276. left:39px;
  1277. top:273px;
  1278. width:33px;
  1279. height:22px;
  1280. display:flex;
  1281. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1282. font-weight:400;
  1283. font-style:normal;
  1284. font-size:16px;
  1285. color:#FFFFFF;
  1286. }
  1287. #u66540 .text {
  1288. position:absolute;
  1289. align-self:flex-start;
  1290. padding:0px 0px 0px 0px;
  1291. box-sizing:border-box;
  1292. width:100%;
  1293. }
  1294. #u66540_text {
  1295. border-width:0px;
  1296. white-space:nowrap;
  1297. text-transform:none;
  1298. }
  1299. #u66541_img {
  1300. border-width:0px;
  1301. position:absolute;
  1302. left:0px;
  1303. top:0px;
  1304. width:14px;
  1305. height:14px;
  1306. }
  1307. #u66541 {
  1308. border-width:0px;
  1309. position:absolute;
  1310. left:20px;
  1311. top:277px;
  1312. width:14px;
  1313. height:14px;
  1314. display:flex;
  1315. }
  1316. #u66541 .text {
  1317. position:absolute;
  1318. align-self:center;
  1319. padding:2px 2px 2px 2px;
  1320. box-sizing:border-box;
  1321. width:100%;
  1322. }
  1323. #u66541_text {
  1324. border-width:0px;
  1325. word-wrap:break-word;
  1326. text-transform:none;
  1327. visibility:hidden;
  1328. }
  1329. #u66542 {
  1330. border-width:0px;
  1331. position:absolute;
  1332. left:0px;
  1333. top:0px;
  1334. width:0px;
  1335. height:0px;
  1336. }
  1337. #u66543_input {
  1338. position:absolute;
  1339. left:0px;
  1340. top:0px;
  1341. width:214px;
  1342. height:27px;
  1343. padding:2px 2px 2px 2px;
  1344. font-family:'ArialMT', 'Arial', sans-serif;
  1345. font-weight:400;
  1346. font-style:normal;
  1347. font-size:14px;
  1348. letter-spacing:normal;
  1349. color:#FFFFFF;
  1350. vertical-align:none;
  1351. text-align:left;
  1352. text-transform:none;
  1353. background-color:transparent;
  1354. border-color:transparent;
  1355. }
  1356. #u66543_input.disabled {
  1357. position:absolute;
  1358. left:0px;
  1359. top:0px;
  1360. width:214px;
  1361. height:27px;
  1362. padding:2px 2px 2px 2px;
  1363. font-family:'ArialMT', 'Arial', sans-serif;
  1364. font-weight:400;
  1365. font-style:normal;
  1366. font-size:14px;
  1367. letter-spacing:normal;
  1368. color:#FFFFFF;
  1369. vertical-align:none;
  1370. text-align:left;
  1371. text-transform:none;
  1372. background-color:transparent;
  1373. border-color:transparent;
  1374. }
  1375. #u66543_div {
  1376. border-width:0px;
  1377. position:absolute;
  1378. left:0px;
  1379. top:0px;
  1380. width:214px;
  1381. height:27px;
  1382. background:inherit;
  1383. background-color:rgba(255, 255, 255, 0);
  1384. border:none;
  1385. border-radius:0px;
  1386. -moz-box-shadow:none;
  1387. -webkit-box-shadow:none;
  1388. box-shadow:none;
  1389. font-size:14px;
  1390. color:#FFFFFF;
  1391. }
  1392. #u66543 {
  1393. border-width:0px;
  1394. position:absolute;
  1395. left:1221px;
  1396. top:11px;
  1397. width:214px;
  1398. height:27px;
  1399. display:flex;
  1400. font-size:14px;
  1401. color:#FFFFFF;
  1402. }
  1403. #u66543 .text {
  1404. position:absolute;
  1405. align-self:flex-start;
  1406. padding:2px 2px 2px 2px;
  1407. box-sizing:border-box;
  1408. width:100%;
  1409. }
  1410. #u66543_div.disabled {
  1411. border-width:0px;
  1412. position:absolute;
  1413. left:0px;
  1414. top:0px;
  1415. width:214px;
  1416. height:27px;
  1417. background:inherit;
  1418. background-color:rgba(240, 240, 240, 1);
  1419. border:none;
  1420. border-radius:0px;
  1421. -moz-box-shadow:none;
  1422. -webkit-box-shadow:none;
  1423. box-shadow:none;
  1424. font-size:14px;
  1425. color:#FFFFFF;
  1426. }
  1427. #u66543.disabled {
  1428. }
  1429. .u66543_input_option {
  1430. font-size:14px;
  1431. }
  1432. #u66544_img {
  1433. border-width:0px;
  1434. position:absolute;
  1435. left:0px;
  1436. top:0px;
  1437. width:22px;
  1438. height:22px;
  1439. }
  1440. #u66544 {
  1441. border-width:0px;
  1442. position:absolute;
  1443. left:1194px;
  1444. top:14px;
  1445. width:22px;
  1446. height:22px;
  1447. display:flex;
  1448. }
  1449. #u66544 .text {
  1450. position:absolute;
  1451. align-self:center;
  1452. padding:2px 2px 2px 2px;
  1453. box-sizing:border-box;
  1454. width:100%;
  1455. }
  1456. #u66544_text {
  1457. border-width:0px;
  1458. word-wrap:break-word;
  1459. text-transform:none;
  1460. visibility:hidden;
  1461. }
  1462. #u66545_div {
  1463. border-width:0px;
  1464. position:absolute;
  1465. left:0px;
  1466. top:0px;
  1467. width:100px;
  1468. height:24px;
  1469. background:inherit;
  1470. background-color:rgba(242, 242, 242, 0.2);
  1471. border:none;
  1472. border-radius:25px;
  1473. -moz-box-shadow:none;
  1474. -webkit-box-shadow:none;
  1475. box-shadow:none;
  1476. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1477. font-weight:400;
  1478. font-style:normal;
  1479. color:#FFFFFF;
  1480. text-align:center;
  1481. }
  1482. #u66545 {
  1483. border-width:0px;
  1484. position:absolute;
  1485. left:1480px;
  1486. top:13px;
  1487. width:100px;
  1488. height:24px;
  1489. display:flex;
  1490. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1491. font-weight:400;
  1492. font-style:normal;
  1493. color:#FFFFFF;
  1494. text-align:center;
  1495. }
  1496. #u66545 .text {
  1497. position:absolute;
  1498. align-self:center;
  1499. padding:0px 0px 0px 0px;
  1500. box-sizing:border-box;
  1501. width:100%;
  1502. }
  1503. #u66545_text {
  1504. border-width:0px;
  1505. word-wrap:break-word;
  1506. text-transform:none;
  1507. }
  1508. #u66546_img {
  1509. border-width:0px;
  1510. position:absolute;
  1511. left:0px;
  1512. top:0px;
  1513. width:2px;
  1514. height:12px;
  1515. }
  1516. #u66546 {
  1517. border-width:0px;
  1518. position:absolute;
  1519. left:1452px;
  1520. top:19px;
  1521. width:1px;
  1522. height:11px;
  1523. display:flex;
  1524. }
  1525. #u66546 .text {
  1526. position:absolute;
  1527. align-self:center;
  1528. padding:2px 2px 2px 2px;
  1529. box-sizing:border-box;
  1530. width:100%;
  1531. }
  1532. #u66546_text {
  1533. border-width:0px;
  1534. word-wrap:break-word;
  1535. text-transform:none;
  1536. visibility:hidden;
  1537. }
  1538. #u66547_div {
  1539. border-width:0px;
  1540. position:absolute;
  1541. left:0px;
  1542. top:0px;
  1543. width:1257px;
  1544. height:1180px;
  1545. background:inherit;
  1546. background-color:rgba(255, 255, 255, 1);
  1547. box-sizing:border-box;
  1548. border-width:1px;
  1549. border-style:solid;
  1550. border-color:rgba(242, 242, 242, 1);
  1551. border-radius:0px;
  1552. -moz-box-shadow:none;
  1553. -webkit-box-shadow:none;
  1554. box-shadow:none;
  1555. }
  1556. #u66547 {
  1557. border-width:0px;
  1558. position:absolute;
  1559. left:332px;
  1560. top:50px;
  1561. width:1257px;
  1562. height:1180px;
  1563. display:flex;
  1564. }
  1565. #u66547 .text {
  1566. position:absolute;
  1567. align-self:center;
  1568. padding:2px 2px 2px 2px;
  1569. box-sizing:border-box;
  1570. width:100%;
  1571. }
  1572. #u66547_text {
  1573. border-width:0px;
  1574. word-wrap:break-word;
  1575. text-transform:none;
  1576. visibility:hidden;
  1577. }
  1578. #u66548_div {
  1579. border-width:0px;
  1580. position:absolute;
  1581. left:0px;
  1582. top:0px;
  1583. width:1179px;
  1584. height:60px;
  1585. background:inherit;
  1586. background-color:rgba(255, 255, 255, 1);
  1587. box-sizing:border-box;
  1588. border-width:1px;
  1589. border-style:solid;
  1590. border-color:rgba(215, 215, 215, 1);
  1591. border-left:0px;
  1592. border-top:0px;
  1593. border-right:0px;
  1594. border-radius:4px;
  1595. border-bottom-right-radius:0px;
  1596. border-bottom-left-radius:0px;
  1597. -moz-box-shadow:none;
  1598. -webkit-box-shadow:none;
  1599. box-shadow:none;
  1600. font-size:14px;
  1601. }
  1602. #u66548 {
  1603. border-width:0px;
  1604. position:absolute;
  1605. left:371px;
  1606. top:417px;
  1607. width:1179px;
  1608. height:60px;
  1609. display:flex;
  1610. font-size:14px;
  1611. }
  1612. #u66548 .text {
  1613. position:absolute;
  1614. align-self:center;
  1615. padding:2px 2px 2px 2px;
  1616. box-sizing:border-box;
  1617. width:100%;
  1618. }
  1619. #u66548_text {
  1620. border-width:0px;
  1621. word-wrap:break-word;
  1622. text-transform:none;
  1623. visibility:hidden;
  1624. }
  1625. #u66549_img {
  1626. border-width:0px;
  1627. position:absolute;
  1628. left:0px;
  1629. top:0px;
  1630. width:1258px;
  1631. height:2px;
  1632. }
  1633. #u66549 {
  1634. border-width:0px;
  1635. position:absolute;
  1636. left:332px;
  1637. top:103px;
  1638. width:1257px;
  1639. height:1px;
  1640. display:flex;
  1641. }
  1642. #u66549 .text {
  1643. position:absolute;
  1644. align-self:center;
  1645. padding:2px 2px 2px 2px;
  1646. box-sizing:border-box;
  1647. width:100%;
  1648. }
  1649. #u66549_text {
  1650. border-width:0px;
  1651. word-wrap:break-word;
  1652. text-transform:none;
  1653. visibility:hidden;
  1654. }
  1655. #u66550_div {
  1656. border-width:0px;
  1657. position:absolute;
  1658. left:0px;
  1659. top:0px;
  1660. width:85px;
  1661. height:50px;
  1662. background:inherit;
  1663. background-color:rgba(255, 255, 255, 0);
  1664. border:none;
  1665. border-left:0px;
  1666. border-top:0px;
  1667. border-right:0px;
  1668. border-radius:0px;
  1669. border-bottom-right-radius:0px;
  1670. border-bottom-left-radius:0px;
  1671. -moz-box-shadow:none;
  1672. -webkit-box-shadow:none;
  1673. box-shadow:none;
  1674. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1675. font-weight:400;
  1676. font-style:normal;
  1677. font-size:14px;
  1678. line-height:40px;
  1679. }
  1680. #u66550 {
  1681. border-width:0px;
  1682. position:absolute;
  1683. left:360px;
  1684. top:54px;
  1685. width:85px;
  1686. height:50px;
  1687. display:flex;
  1688. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1689. font-weight:400;
  1690. font-style:normal;
  1691. font-size:14px;
  1692. line-height:40px;
  1693. }
  1694. #u66550 .text {
  1695. position:absolute;
  1696. align-self:center;
  1697. padding:0px 0px 0px 0px;
  1698. box-sizing:border-box;
  1699. width:100%;
  1700. }
  1701. #u66550_text {
  1702. border-width:0px;
  1703. white-space:nowrap;
  1704. text-transform:none;
  1705. }
  1706. #u66551_div {
  1707. border-width:0px;
  1708. position:absolute;
  1709. left:0px;
  1710. top:0px;
  1711. width:85px;
  1712. height:50px;
  1713. background:inherit;
  1714. background-color:rgba(255, 255, 255, 0);
  1715. border:none;
  1716. border-left:0px;
  1717. border-top:0px;
  1718. border-right:0px;
  1719. border-radius:0px;
  1720. border-bottom-right-radius:0px;
  1721. border-bottom-left-radius:0px;
  1722. -moz-box-shadow:none;
  1723. -webkit-box-shadow:none;
  1724. box-shadow:none;
  1725. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1726. font-weight:400;
  1727. font-style:normal;
  1728. font-size:14px;
  1729. line-height:40px;
  1730. }
  1731. #u66551 {
  1732. border-width:0px;
  1733. position:absolute;
  1734. left:485px;
  1735. top:54px;
  1736. width:85px;
  1737. height:50px;
  1738. display:flex;
  1739. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1740. font-weight:400;
  1741. font-style:normal;
  1742. font-size:14px;
  1743. line-height:40px;
  1744. }
  1745. #u66551 .text {
  1746. position:absolute;
  1747. align-self:center;
  1748. padding:0px 0px 0px 0px;
  1749. box-sizing:border-box;
  1750. width:100%;
  1751. }
  1752. #u66551_text {
  1753. border-width:0px;
  1754. white-space:nowrap;
  1755. text-transform:none;
  1756. }
  1757. #u66552_div {
  1758. border-width:0px;
  1759. position:absolute;
  1760. left:0px;
  1761. top:0px;
  1762. width:113px;
  1763. height:50px;
  1764. background:inherit;
  1765. background-color:rgba(255, 255, 255, 0);
  1766. border:none;
  1767. border-left:0px;
  1768. border-top:0px;
  1769. border-right:0px;
  1770. border-radius:0px;
  1771. border-bottom-right-radius:0px;
  1772. border-bottom-left-radius:0px;
  1773. -moz-box-shadow:none;
  1774. -webkit-box-shadow:none;
  1775. box-shadow:none;
  1776. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1777. font-weight:400;
  1778. font-style:normal;
  1779. font-size:14px;
  1780. line-height:40px;
  1781. }
  1782. #u66552 {
  1783. border-width:0px;
  1784. position:absolute;
  1785. left:610px;
  1786. top:54px;
  1787. width:113px;
  1788. height:50px;
  1789. display:flex;
  1790. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1791. font-weight:400;
  1792. font-style:normal;
  1793. font-size:14px;
  1794. line-height:40px;
  1795. }
  1796. #u66552 .text {
  1797. position:absolute;
  1798. align-self:center;
  1799. padding:0px 0px 0px 0px;
  1800. box-sizing:border-box;
  1801. width:100%;
  1802. }
  1803. #u66552_text {
  1804. border-width:0px;
  1805. white-space:nowrap;
  1806. text-transform:none;
  1807. }
  1808. #u66553_div {
  1809. border-width:0px;
  1810. position:absolute;
  1811. left:0px;
  1812. top:0px;
  1813. width:119px;
  1814. height:35px;
  1815. background:inherit;
  1816. background-color:rgba(255, 255, 255, 0);
  1817. border:none;
  1818. border-top:0px;
  1819. border-right:0px;
  1820. border-bottom:0px;
  1821. border-radius:0px;
  1822. border-top-left-radius:0px;
  1823. border-bottom-left-radius:0px;
  1824. -moz-box-shadow:none;
  1825. -webkit-box-shadow:none;
  1826. box-shadow:none;
  1827. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  1828. font-weight:500;
  1829. font-style:normal;
  1830. font-size:18px;
  1831. }
  1832. #u66553 {
  1833. border-width:0px;
  1834. position:absolute;
  1835. left:371px;
  1836. top:355px;
  1837. width:119px;
  1838. height:35px;
  1839. display:flex;
  1840. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  1841. font-weight:500;
  1842. font-style:normal;
  1843. font-size:18px;
  1844. }
  1845. #u66553 .text {
  1846. position:absolute;
  1847. align-self:center;
  1848. padding:5px 10px 5px 0px;
  1849. box-sizing:border-box;
  1850. width:100%;
  1851. }
  1852. #u66553_text {
  1853. border-width:0px;
  1854. white-space:nowrap;
  1855. text-transform:none;
  1856. }
  1857. #u66554_div {
  1858. border-width:0px;
  1859. position:absolute;
  1860. left:0px;
  1861. top:0px;
  1862. width:119px;
  1863. height:40px;
  1864. background:inherit;
  1865. background-color:rgba(255, 255, 255, 0);
  1866. border:none;
  1867. border-top:0px;
  1868. border-right:0px;
  1869. border-bottom:0px;
  1870. border-radius:0px;
  1871. border-top-left-radius:0px;
  1872. border-bottom-left-radius:0px;
  1873. -moz-box-shadow:none;
  1874. -webkit-box-shadow:none;
  1875. box-shadow:none;
  1876. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1877. font-weight:400;
  1878. font-style:normal;
  1879. font-size:18px;
  1880. }
  1881. #u66554 {
  1882. border-width:0px;
  1883. position:absolute;
  1884. left:371px;
  1885. top:427px;
  1886. width:119px;
  1887. height:40px;
  1888. display:flex;
  1889. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1890. font-weight:400;
  1891. font-style:normal;
  1892. font-size:18px;
  1893. }
  1894. #u66554 .text {
  1895. position:absolute;
  1896. align-self:center;
  1897. padding:5px 10px 5px 0px;
  1898. box-sizing:border-box;
  1899. width:100%;
  1900. }
  1901. #u66554_text {
  1902. border-width:0px;
  1903. white-space:nowrap;
  1904. text-transform:none;
  1905. }
  1906. #u66555 {
  1907. border-width:0px;
  1908. position:absolute;
  1909. left:0px;
  1910. top:0px;
  1911. width:0px;
  1912. height:0px;
  1913. }
  1914. #u66556_div {
  1915. border-width:0px;
  1916. position:absolute;
  1917. left:0px;
  1918. top:0px;
  1919. width:200px;
  1920. height:1180px;
  1921. background:inherit;
  1922. background-color:rgba(255, 255, 255, 1);
  1923. border:none;
  1924. border-radius:0px;
  1925. -moz-box-shadow:none;
  1926. -webkit-box-shadow:none;
  1927. box-shadow:none;
  1928. }
  1929. #u66556 {
  1930. border-width:0px;
  1931. position:absolute;
  1932. left:122px;
  1933. top:50px;
  1934. width:200px;
  1935. height:1180px;
  1936. display:flex;
  1937. }
  1938. #u66556 .text {
  1939. position:absolute;
  1940. align-self:center;
  1941. padding:2px 2px 2px 2px;
  1942. box-sizing:border-box;
  1943. width:100%;
  1944. }
  1945. #u66556_text {
  1946. border-width:0px;
  1947. word-wrap:break-word;
  1948. text-transform:none;
  1949. visibility:hidden;
  1950. }
  1951. #u66557_div {
  1952. border-width:0px;
  1953. position:absolute;
  1954. left:0px;
  1955. top:0px;
  1956. width:200px;
  1957. height:60px;
  1958. background:inherit;
  1959. background-color:rgba(224, 231, 247, 1);
  1960. border:none;
  1961. border-radius:0px;
  1962. -moz-box-shadow:none;
  1963. -webkit-box-shadow:none;
  1964. box-shadow:none;
  1965. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  1966. font-weight:500;
  1967. font-style:normal;
  1968. font-size:18px;
  1969. }
  1970. #u66557 {
  1971. border-width:0px;
  1972. position:absolute;
  1973. left:122px;
  1974. top:50px;
  1975. width:200px;
  1976. height:60px;
  1977. display:flex;
  1978. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  1979. font-weight:500;
  1980. font-style:normal;
  1981. font-size:18px;
  1982. }
  1983. #u66557 .text {
  1984. position:absolute;
  1985. align-self:center;
  1986. padding:0px 0px 0px 20px;
  1987. box-sizing:border-box;
  1988. width:100%;
  1989. }
  1990. #u66557_text {
  1991. border-width:0px;
  1992. word-wrap:break-word;
  1993. text-transform:none;
  1994. }
  1995. #u66558_div {
  1996. border-width:0px;
  1997. position:absolute;
  1998. left:0px;
  1999. top:0px;
  2000. width:65px;
  2001. height:22px;
  2002. background:inherit;
  2003. background-color:rgba(255, 255, 255, 0);
  2004. border:none;
  2005. border-radius:0px;
  2006. -moz-box-shadow:none;
  2007. -webkit-box-shadow:none;
  2008. box-shadow:none;
  2009. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2010. font-weight:400;
  2011. font-style:normal;
  2012. font-size:16px;
  2013. }
  2014. #u66558 {
  2015. border-width:0px;
  2016. position:absolute;
  2017. left:149px;
  2018. top:161px;
  2019. width:65px;
  2020. height:22px;
  2021. display:flex;
  2022. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2023. font-weight:400;
  2024. font-style:normal;
  2025. font-size:16px;
  2026. }
  2027. #u66558 .text {
  2028. position:absolute;
  2029. align-self:flex-start;
  2030. padding:0px 0px 0px 0px;
  2031. box-sizing:border-box;
  2032. width:100%;
  2033. }
  2034. #u66558_text {
  2035. border-width:0px;
  2036. white-space:nowrap;
  2037. text-transform:none;
  2038. }
  2039. #u66559_div {
  2040. border-width:0px;
  2041. position:absolute;
  2042. left:0px;
  2043. top:0px;
  2044. width:65px;
  2045. height:22px;
  2046. background:inherit;
  2047. background-color:rgba(255, 255, 255, 0);
  2048. border:none;
  2049. border-radius:0px;
  2050. -moz-box-shadow:none;
  2051. -webkit-box-shadow:none;
  2052. box-shadow:none;
  2053. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2054. font-weight:400;
  2055. font-style:normal;
  2056. font-size:16px;
  2057. }
  2058. #u66559 {
  2059. border-width:0px;
  2060. position:absolute;
  2061. left:149px;
  2062. top:203px;
  2063. width:65px;
  2064. height:22px;
  2065. display:flex;
  2066. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2067. font-weight:400;
  2068. font-style:normal;
  2069. font-size:16px;
  2070. }
  2071. #u66559 .text {
  2072. position:absolute;
  2073. align-self:flex-start;
  2074. padding:0px 0px 0px 0px;
  2075. box-sizing:border-box;
  2076. width:100%;
  2077. }
  2078. #u66559_text {
  2079. border-width:0px;
  2080. white-space:nowrap;
  2081. text-transform:none;
  2082. }
  2083. #u66560_div {
  2084. border-width:0px;
  2085. position:absolute;
  2086. left:0px;
  2087. top:0px;
  2088. width:65px;
  2089. height:22px;
  2090. background:inherit;
  2091. background-color:rgba(255, 255, 255, 0);
  2092. border:none;
  2093. border-radius:0px;
  2094. -moz-box-shadow:none;
  2095. -webkit-box-shadow:none;
  2096. box-shadow:none;
  2097. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2098. font-weight:400;
  2099. font-style:normal;
  2100. font-size:16px;
  2101. }
  2102. #u66560 {
  2103. border-width:0px;
  2104. position:absolute;
  2105. left:149px;
  2106. top:245px;
  2107. width:65px;
  2108. height:22px;
  2109. display:flex;
  2110. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2111. font-weight:400;
  2112. font-style:normal;
  2113. font-size:16px;
  2114. }
  2115. #u66560 .text {
  2116. position:absolute;
  2117. align-self:flex-start;
  2118. padding:0px 0px 0px 0px;
  2119. box-sizing:border-box;
  2120. width:100%;
  2121. }
  2122. #u66560_text {
  2123. border-width:0px;
  2124. white-space:nowrap;
  2125. text-transform:none;
  2126. }
  2127. #u66561_div {
  2128. border-width:0px;
  2129. position:absolute;
  2130. left:0px;
  2131. top:0px;
  2132. width:65px;
  2133. height:22px;
  2134. background:inherit;
  2135. background-color:rgba(255, 255, 255, 0);
  2136. border:none;
  2137. border-radius:0px;
  2138. -moz-box-shadow:none;
  2139. -webkit-box-shadow:none;
  2140. box-shadow:none;
  2141. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2142. font-weight:400;
  2143. font-style:normal;
  2144. font-size:16px;
  2145. }
  2146. #u66561 {
  2147. border-width:0px;
  2148. position:absolute;
  2149. left:149px;
  2150. top:287px;
  2151. width:65px;
  2152. height:22px;
  2153. display:flex;
  2154. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2155. font-weight:400;
  2156. font-style:normal;
  2157. font-size:16px;
  2158. }
  2159. #u66561 .text {
  2160. position:absolute;
  2161. align-self:flex-start;
  2162. padding:0px 0px 0px 0px;
  2163. box-sizing:border-box;
  2164. width:100%;
  2165. }
  2166. #u66561_text {
  2167. border-width:0px;
  2168. white-space:nowrap;
  2169. text-transform:none;
  2170. }
  2171. #u66562_div {
  2172. border-width:0px;
  2173. position:absolute;
  2174. left:0px;
  2175. top:0px;
  2176. width:49px;
  2177. height:17px;
  2178. background:inherit;
  2179. background-color:rgba(255, 255, 255, 0);
  2180. border:none;
  2181. border-radius:0px;
  2182. -moz-box-shadow:none;
  2183. -webkit-box-shadow:none;
  2184. box-shadow:none;
  2185. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2186. font-weight:400;
  2187. font-style:normal;
  2188. font-size:12px;
  2189. color:#AAAAAA;
  2190. }
  2191. #u66562 {
  2192. border-width:0px;
  2193. position:absolute;
  2194. left:149px;
  2195. top:125px;
  2196. width:49px;
  2197. height:17px;
  2198. display:flex;
  2199. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2200. font-weight:400;
  2201. font-style:normal;
  2202. font-size:12px;
  2203. color:#AAAAAA;
  2204. }
  2205. #u66562 .text {
  2206. position:absolute;
  2207. align-self:flex-start;
  2208. padding:0px 0px 0px 0px;
  2209. box-sizing:border-box;
  2210. width:100%;
  2211. }
  2212. #u66562_text {
  2213. border-width:0px;
  2214. white-space:nowrap;
  2215. text-transform:none;
  2216. }
  2217. #u66563_div {
  2218. border-width:0px;
  2219. position:absolute;
  2220. left:0px;
  2221. top:0px;
  2222. width:65px;
  2223. height:22px;
  2224. background:inherit;
  2225. background-color:rgba(255, 255, 255, 0);
  2226. border:none;
  2227. border-radius:0px;
  2228. -moz-box-shadow:none;
  2229. -webkit-box-shadow:none;
  2230. box-shadow:none;
  2231. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2232. font-weight:400;
  2233. font-style:normal;
  2234. font-size:16px;
  2235. color:#3399FF;
  2236. }
  2237. #u66563 {
  2238. border-width:0px;
  2239. position:absolute;
  2240. left:149px;
  2241. top:387px;
  2242. width:65px;
  2243. height:22px;
  2244. display:flex;
  2245. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2246. font-weight:400;
  2247. font-style:normal;
  2248. font-size:16px;
  2249. color:#3399FF;
  2250. }
  2251. #u66563 .text {
  2252. position:absolute;
  2253. align-self:flex-start;
  2254. padding:0px 0px 0px 0px;
  2255. box-sizing:border-box;
  2256. width:100%;
  2257. }
  2258. #u66563_text {
  2259. border-width:0px;
  2260. white-space:nowrap;
  2261. text-transform:none;
  2262. }
  2263. #u66564_div {
  2264. border-width:0px;
  2265. position:absolute;
  2266. left:0px;
  2267. top:0px;
  2268. width:49px;
  2269. height:17px;
  2270. background:inherit;
  2271. background-color:rgba(255, 255, 255, 0);
  2272. border:none;
  2273. border-radius:0px;
  2274. -moz-box-shadow:none;
  2275. -webkit-box-shadow:none;
  2276. box-shadow:none;
  2277. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2278. font-weight:400;
  2279. font-style:normal;
  2280. font-size:12px;
  2281. color:#AAAAAA;
  2282. }
  2283. #u66564 {
  2284. border-width:0px;
  2285. position:absolute;
  2286. left:149px;
  2287. top:351px;
  2288. width:49px;
  2289. height:17px;
  2290. display:flex;
  2291. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2292. font-weight:400;
  2293. font-style:normal;
  2294. font-size:12px;
  2295. color:#AAAAAA;
  2296. }
  2297. #u66564 .text {
  2298. position:absolute;
  2299. align-self:flex-start;
  2300. padding:0px 0px 0px 0px;
  2301. box-sizing:border-box;
  2302. width:100%;
  2303. }
  2304. #u66564_text {
  2305. border-width:0px;
  2306. white-space:nowrap;
  2307. text-transform:none;
  2308. }
  2309. #u66565_img {
  2310. border-width:0px;
  2311. position:absolute;
  2312. left:0px;
  2313. top:0px;
  2314. width:201px;
  2315. height:2px;
  2316. }
  2317. #u66565 {
  2318. border-width:0px;
  2319. position:absolute;
  2320. left:122px;
  2321. top:329px;
  2322. width:200px;
  2323. height:1px;
  2324. display:flex;
  2325. }
  2326. #u66565 .text {
  2327. position:absolute;
  2328. align-self:center;
  2329. padding:2px 2px 2px 2px;
  2330. box-sizing:border-box;
  2331. width:100%;
  2332. }
  2333. #u66565_text {
  2334. border-width:0px;
  2335. word-wrap:break-word;
  2336. text-transform:none;
  2337. visibility:hidden;
  2338. }
  2339. #u66566_div {
  2340. border-width:0px;
  2341. position:absolute;
  2342. left:0px;
  2343. top:0px;
  2344. width:65px;
  2345. height:22px;
  2346. background:inherit;
  2347. background-color:rgba(255, 255, 255, 0);
  2348. border:none;
  2349. border-radius:0px;
  2350. -moz-box-shadow:none;
  2351. -webkit-box-shadow:none;
  2352. box-shadow:none;
  2353. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2354. font-weight:400;
  2355. font-style:normal;
  2356. font-size:16px;
  2357. }
  2358. #u66566 {
  2359. border-width:0px;
  2360. position:absolute;
  2361. left:149px;
  2362. top:484px;
  2363. width:65px;
  2364. height:22px;
  2365. display:flex;
  2366. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2367. font-weight:400;
  2368. font-style:normal;
  2369. font-size:16px;
  2370. }
  2371. #u66566 .text {
  2372. position:absolute;
  2373. align-self:flex-start;
  2374. padding:0px 0px 0px 0px;
  2375. box-sizing:border-box;
  2376. width:100%;
  2377. }
  2378. #u66566_text {
  2379. border-width:0px;
  2380. white-space:nowrap;
  2381. text-transform:none;
  2382. }
  2383. #u66567_div {
  2384. border-width:0px;
  2385. position:absolute;
  2386. left:0px;
  2387. top:0px;
  2388. width:49px;
  2389. height:17px;
  2390. background:inherit;
  2391. background-color:rgba(255, 255, 255, 0);
  2392. border:none;
  2393. border-radius:0px;
  2394. -moz-box-shadow:none;
  2395. -webkit-box-shadow:none;
  2396. box-shadow:none;
  2397. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2398. font-weight:400;
  2399. font-style:normal;
  2400. font-size:12px;
  2401. color:#AAAAAA;
  2402. }
  2403. #u66567 {
  2404. border-width:0px;
  2405. position:absolute;
  2406. left:149px;
  2407. top:448px;
  2408. width:49px;
  2409. height:17px;
  2410. display:flex;
  2411. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2412. font-weight:400;
  2413. font-style:normal;
  2414. font-size:12px;
  2415. color:#AAAAAA;
  2416. }
  2417. #u66567 .text {
  2418. position:absolute;
  2419. align-self:flex-start;
  2420. padding:0px 0px 0px 0px;
  2421. box-sizing:border-box;
  2422. width:100%;
  2423. }
  2424. #u66567_text {
  2425. border-width:0px;
  2426. white-space:nowrap;
  2427. text-transform:none;
  2428. }
  2429. #u66568_img {
  2430. border-width:0px;
  2431. position:absolute;
  2432. left:0px;
  2433. top:0px;
  2434. width:201px;
  2435. height:2px;
  2436. }
  2437. #u66568 {
  2438. border-width:0px;
  2439. position:absolute;
  2440. left:122px;
  2441. top:426px;
  2442. width:200px;
  2443. height:1px;
  2444. display:flex;
  2445. }
  2446. #u66568 .text {
  2447. position:absolute;
  2448. align-self:center;
  2449. padding:2px 2px 2px 2px;
  2450. box-sizing:border-box;
  2451. width:100%;
  2452. }
  2453. #u66568_text {
  2454. border-width:0px;
  2455. word-wrap:break-word;
  2456. text-transform:none;
  2457. visibility:hidden;
  2458. }
  2459. #u66569_div {
  2460. border-width:0px;
  2461. position:absolute;
  2462. left:0px;
  2463. top:0px;
  2464. width:65px;
  2465. height:22px;
  2466. background:inherit;
  2467. background-color:rgba(255, 255, 255, 0);
  2468. border:none;
  2469. border-radius:0px;
  2470. -moz-box-shadow:none;
  2471. -webkit-box-shadow:none;
  2472. box-shadow:none;
  2473. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2474. font-weight:400;
  2475. font-style:normal;
  2476. font-size:16px;
  2477. }
  2478. #u66569 {
  2479. border-width:0px;
  2480. position:absolute;
  2481. left:149px;
  2482. top:526px;
  2483. width:65px;
  2484. height:22px;
  2485. display:flex;
  2486. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2487. font-weight:400;
  2488. font-style:normal;
  2489. font-size:16px;
  2490. }
  2491. #u66569 .text {
  2492. position:absolute;
  2493. align-self:flex-start;
  2494. padding:0px 0px 0px 0px;
  2495. box-sizing:border-box;
  2496. width:100%;
  2497. }
  2498. #u66569_text {
  2499. border-width:0px;
  2500. white-space:nowrap;
  2501. text-transform:none;
  2502. }
  2503. #u66570_div {
  2504. border-width:0px;
  2505. position:absolute;
  2506. left:0px;
  2507. top:0px;
  2508. width:57px;
  2509. height:50px;
  2510. background:inherit;
  2511. background-color:rgba(255, 255, 255, 0);
  2512. box-sizing:border-box;
  2513. border-width:2px;
  2514. border-style:solid;
  2515. border-color:rgba(41, 143, 255, 1);
  2516. border-left:0px;
  2517. border-top:0px;
  2518. border-right:0px;
  2519. border-radius:0px;
  2520. border-bottom-right-radius:0px;
  2521. border-bottom-left-radius:0px;
  2522. -moz-box-shadow:none;
  2523. -webkit-box-shadow:none;
  2524. box-shadow:none;
  2525. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2526. font-weight:400;
  2527. font-style:normal;
  2528. font-size:14px;
  2529. color:#298FFF;
  2530. line-height:40px;
  2531. }
  2532. #u66570 {
  2533. border-width:0px;
  2534. position:absolute;
  2535. left:763px;
  2536. top:54px;
  2537. width:57px;
  2538. height:50px;
  2539. display:flex;
  2540. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2541. font-weight:400;
  2542. font-style:normal;
  2543. font-size:14px;
  2544. color:#298FFF;
  2545. line-height:40px;
  2546. }
  2547. #u66570 .text {
  2548. position:absolute;
  2549. align-self:center;
  2550. padding:0px 0px 0px 0px;
  2551. box-sizing:border-box;
  2552. width:100%;
  2553. }
  2554. #u66570_text {
  2555. border-width:0px;
  2556. white-space:nowrap;
  2557. text-transform:none;
  2558. }
  2559. #u66571_div {
  2560. border-width:0px;
  2561. position:absolute;
  2562. left:0px;
  2563. top:0px;
  2564. width:421px;
  2565. height:17px;
  2566. background:inherit;
  2567. background-color:rgba(255, 255, 255, 0);
  2568. border:none;
  2569. border-radius:0px;
  2570. -moz-box-shadow:none;
  2571. -webkit-box-shadow:none;
  2572. box-shadow:none;
  2573. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2574. font-weight:400;
  2575. font-style:normal;
  2576. font-size:12px;
  2577. color:#1890FF;
  2578. }
  2579. #u66571 {
  2580. border-width:0px;
  2581. position:absolute;
  2582. left:371px;
  2583. top:390px;
  2584. width:421px;
  2585. height:17px;
  2586. display:flex;
  2587. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2588. font-weight:400;
  2589. font-style:normal;
  2590. font-size:12px;
  2591. color:#1890FF;
  2592. }
  2593. #u66571 .text {
  2594. position:absolute;
  2595. align-self:flex-start;
  2596. padding:0px 0px 0px 0px;
  2597. box-sizing:border-box;
  2598. width:100%;
  2599. }
  2600. #u66571_text {
  2601. border-width:0px;
  2602. white-space:nowrap;
  2603. text-transform:none;
  2604. }
  2605. #u66572_div {
  2606. border-width:0px;
  2607. position:absolute;
  2608. left:0px;
  2609. top:0px;
  2610. width:1179px;
  2611. height:180px;
  2612. background:inherit;
  2613. background-color:rgba(255, 255, 255, 1);
  2614. box-sizing:border-box;
  2615. border-width:1px;
  2616. border-style:solid;
  2617. border-color:rgba(215, 215, 215, 1);
  2618. border-left:0px;
  2619. border-top:0px;
  2620. border-right:0px;
  2621. border-radius:4px;
  2622. border-bottom-right-radius:0px;
  2623. border-bottom-left-radius:0px;
  2624. -moz-box-shadow:none;
  2625. -webkit-box-shadow:none;
  2626. box-shadow:none;
  2627. font-size:14px;
  2628. }
  2629. #u66572 {
  2630. border-width:0px;
  2631. position:absolute;
  2632. left:371px;
  2633. top:477px;
  2634. width:1179px;
  2635. height:180px;
  2636. display:flex;
  2637. font-size:14px;
  2638. }
  2639. #u66572 .text {
  2640. position:absolute;
  2641. align-self:center;
  2642. padding:2px 2px 2px 2px;
  2643. box-sizing:border-box;
  2644. width:100%;
  2645. }
  2646. #u66572_text {
  2647. border-width:0px;
  2648. word-wrap:break-word;
  2649. text-transform:none;
  2650. visibility:hidden;
  2651. }
  2652. #u66573_div {
  2653. border-width:0px;
  2654. position:absolute;
  2655. left:0px;
  2656. top:0px;
  2657. width:119px;
  2658. height:40px;
  2659. background:inherit;
  2660. background-color:rgba(255, 255, 255, 0);
  2661. border:none;
  2662. border-top:0px;
  2663. border-right:0px;
  2664. border-bottom:0px;
  2665. border-radius:0px;
  2666. border-top-left-radius:0px;
  2667. border-bottom-left-radius:0px;
  2668. -moz-box-shadow:none;
  2669. -webkit-box-shadow:none;
  2670. box-shadow:none;
  2671. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2672. font-weight:400;
  2673. font-style:normal;
  2674. font-size:18px;
  2675. }
  2676. #u66573 {
  2677. border-width:0px;
  2678. position:absolute;
  2679. left:371px;
  2680. top:497px;
  2681. width:119px;
  2682. height:40px;
  2683. display:flex;
  2684. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2685. font-weight:400;
  2686. font-style:normal;
  2687. font-size:18px;
  2688. }
  2689. #u66573 .text {
  2690. position:absolute;
  2691. align-self:center;
  2692. padding:5px 10px 5px 0px;
  2693. box-sizing:border-box;
  2694. width:100%;
  2695. }
  2696. #u66573_text {
  2697. border-width:0px;
  2698. white-space:nowrap;
  2699. text-transform:none;
  2700. }
  2701. #u66574_img {
  2702. border-width:0px;
  2703. position:absolute;
  2704. left:0px;
  2705. top:0px;
  2706. width:50px;
  2707. height:31px;
  2708. }
  2709. #u66574 {
  2710. border-width:0px;
  2711. position:absolute;
  2712. left:503px;
  2713. top:502px;
  2714. width:50px;
  2715. height:31px;
  2716. display:flex;
  2717. }
  2718. #u66574 .text {
  2719. position:absolute;
  2720. align-self:center;
  2721. padding:2px 2px 2px 2px;
  2722. box-sizing:border-box;
  2723. width:100%;
  2724. }
  2725. #u66574_text {
  2726. border-width:0px;
  2727. word-wrap:break-word;
  2728. text-transform:none;
  2729. visibility:hidden;
  2730. }
  2731. #u66575 {
  2732. border-width:0px;
  2733. position:absolute;
  2734. left:0px;
  2735. top:0px;
  2736. width:0px;
  2737. height:0px;
  2738. }
  2739. #u66576_div {
  2740. border-width:0px;
  2741. position:absolute;
  2742. left:0px;
  2743. top:0px;
  2744. width:180px;
  2745. height:40px;
  2746. background:inherit;
  2747. background-color:rgba(242, 242, 242, 1);
  2748. box-sizing:border-box;
  2749. border-width:1px;
  2750. border-style:solid;
  2751. border-color:rgba(215, 215, 215, 1);
  2752. border-radius:4px;
  2753. -moz-box-shadow:none;
  2754. -webkit-box-shadow:none;
  2755. box-shadow:none;
  2756. font-size:14px;
  2757. }
  2758. #u66576 {
  2759. border-width:0px;
  2760. position:absolute;
  2761. left:371px;
  2762. top:547px;
  2763. width:180px;
  2764. height:40px;
  2765. display:flex;
  2766. font-size:14px;
  2767. }
  2768. #u66576 .text {
  2769. position:absolute;
  2770. align-self:center;
  2771. padding:2px 2px 2px 2px;
  2772. box-sizing:border-box;
  2773. width:100%;
  2774. }
  2775. #u66576_text {
  2776. border-width:0px;
  2777. word-wrap:break-word;
  2778. text-transform:none;
  2779. visibility:hidden;
  2780. }
  2781. #u66577_input {
  2782. position:absolute;
  2783. left:0px;
  2784. top:0px;
  2785. width:172px;
  2786. height:31px;
  2787. padding:2px 2px 2px 2px;
  2788. font-family:'ArialMT', 'Arial', sans-serif;
  2789. font-weight:400;
  2790. font-style:normal;
  2791. font-size:14px;
  2792. letter-spacing:normal;
  2793. color:#AAAAAA;
  2794. vertical-align:none;
  2795. text-align:left;
  2796. text-transform:none;
  2797. background-color:transparent;
  2798. border-color:transparent;
  2799. }
  2800. #u66577_input.disabled {
  2801. position:absolute;
  2802. left:0px;
  2803. top:0px;
  2804. width:172px;
  2805. height:31px;
  2806. padding:2px 2px 2px 2px;
  2807. font-family:'ArialMT', 'Arial', sans-serif;
  2808. font-weight:400;
  2809. font-style:normal;
  2810. font-size:14px;
  2811. letter-spacing:normal;
  2812. color:#AAAAAA;
  2813. vertical-align:none;
  2814. text-align:left;
  2815. text-transform:none;
  2816. background-color:transparent;
  2817. border-color:transparent;
  2818. }
  2819. #u66577_div {
  2820. border-width:0px;
  2821. position:absolute;
  2822. left:0px;
  2823. top:0px;
  2824. width:172px;
  2825. height:31px;
  2826. background:inherit;
  2827. background-color:rgba(242, 242, 242, 1);
  2828. border:none;
  2829. border-radius:0px;
  2830. -moz-box-shadow:none;
  2831. -webkit-box-shadow:none;
  2832. box-shadow:none;
  2833. font-size:14px;
  2834. color:#AAAAAA;
  2835. }
  2836. #u66577 {
  2837. border-width:0px;
  2838. position:absolute;
  2839. left:376px;
  2840. top:550px;
  2841. width:172px;
  2842. height:31px;
  2843. display:flex;
  2844. font-size:14px;
  2845. color:#AAAAAA;
  2846. }
  2847. #u66577 .text {
  2848. position:absolute;
  2849. align-self:flex-start;
  2850. padding:2px 2px 2px 2px;
  2851. box-sizing:border-box;
  2852. width:100%;
  2853. }
  2854. #u66577_div.disabled {
  2855. border-width:0px;
  2856. position:absolute;
  2857. left:0px;
  2858. top:0px;
  2859. width:172px;
  2860. height:31px;
  2861. background:inherit;
  2862. background-color:rgba(240, 240, 240, 1);
  2863. border:none;
  2864. border-radius:0px;
  2865. -moz-box-shadow:none;
  2866. -webkit-box-shadow:none;
  2867. box-shadow:none;
  2868. font-size:14px;
  2869. color:#AAAAAA;
  2870. }
  2871. #u66577.disabled {
  2872. }
  2873. .u66577_input_option {
  2874. font-size:14px;
  2875. }
  2876. #u66578_div {
  2877. border-width:0px;
  2878. position:absolute;
  2879. left:0px;
  2880. top:0px;
  2881. width:151px;
  2882. height:40px;
  2883. background:inherit;
  2884. background-color:rgba(255, 255, 255, 0);
  2885. border:none;
  2886. border-top:0px;
  2887. border-right:0px;
  2888. border-bottom:0px;
  2889. border-radius:0px;
  2890. border-top-left-radius:0px;
  2891. border-bottom-left-radius:0px;
  2892. -moz-box-shadow:none;
  2893. -webkit-box-shadow:none;
  2894. box-shadow:none;
  2895. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2896. font-weight:400;
  2897. font-style:normal;
  2898. font-size:14px;
  2899. color:#7F7F7F;
  2900. }
  2901. #u66578 {
  2902. border-width:0px;
  2903. position:absolute;
  2904. left:561px;
  2905. top:547px;
  2906. width:151px;
  2907. height:40px;
  2908. display:flex;
  2909. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2910. font-weight:400;
  2911. font-style:normal;
  2912. font-size:14px;
  2913. color:#7F7F7F;
  2914. }
  2915. #u66578 .text {
  2916. position:absolute;
  2917. align-self:center;
  2918. padding:5px 10px 5px 0px;
  2919. box-sizing:border-box;
  2920. width:100%;
  2921. }
  2922. #u66578_text {
  2923. border-width:0px;
  2924. white-space:nowrap;
  2925. text-transform:none;
  2926. }
  2927. #u66579 {
  2928. border-width:0px;
  2929. position:absolute;
  2930. left:0px;
  2931. top:0px;
  2932. width:0px;
  2933. height:0px;
  2934. }
  2935. #u66580_div {
  2936. border-width:0px;
  2937. position:absolute;
  2938. left:0px;
  2939. top:0px;
  2940. width:180px;
  2941. height:40px;
  2942. background:inherit;
  2943. background-color:rgba(242, 242, 242, 1);
  2944. box-sizing:border-box;
  2945. border-width:1px;
  2946. border-style:solid;
  2947. border-color:rgba(215, 215, 215, 1);
  2948. border-radius:4px;
  2949. -moz-box-shadow:none;
  2950. -webkit-box-shadow:none;
  2951. box-shadow:none;
  2952. font-size:14px;
  2953. }
  2954. #u66580 {
  2955. border-width:0px;
  2956. position:absolute;
  2957. left:712px;
  2958. top:547px;
  2959. width:180px;
  2960. height:40px;
  2961. display:flex;
  2962. font-size:14px;
  2963. }
  2964. #u66580 .text {
  2965. position:absolute;
  2966. align-self:center;
  2967. padding:2px 2px 2px 2px;
  2968. box-sizing:border-box;
  2969. width:100%;
  2970. }
  2971. #u66580_text {
  2972. border-width:0px;
  2973. word-wrap:break-word;
  2974. text-transform:none;
  2975. visibility:hidden;
  2976. }
  2977. #u66581_input {
  2978. position:absolute;
  2979. left:0px;
  2980. top:0px;
  2981. width:172px;
  2982. height:31px;
  2983. padding:2px 2px 2px 2px;
  2984. font-family:'ArialMT', 'Arial', sans-serif;
  2985. font-weight:400;
  2986. font-style:normal;
  2987. font-size:14px;
  2988. letter-spacing:normal;
  2989. color:#AAAAAA;
  2990. vertical-align:none;
  2991. text-align:left;
  2992. text-transform:none;
  2993. background-color:transparent;
  2994. border-color:transparent;
  2995. }
  2996. #u66581_input.disabled {
  2997. position:absolute;
  2998. left:0px;
  2999. top:0px;
  3000. width:172px;
  3001. height:31px;
  3002. padding:2px 2px 2px 2px;
  3003. font-family:'ArialMT', 'Arial', sans-serif;
  3004. font-weight:400;
  3005. font-style:normal;
  3006. font-size:14px;
  3007. letter-spacing:normal;
  3008. color:#AAAAAA;
  3009. vertical-align:none;
  3010. text-align:left;
  3011. text-transform:none;
  3012. background-color:transparent;
  3013. border-color:transparent;
  3014. }
  3015. #u66581_div {
  3016. border-width:0px;
  3017. position:absolute;
  3018. left:0px;
  3019. top:0px;
  3020. width:172px;
  3021. height:31px;
  3022. background:inherit;
  3023. background-color:rgba(242, 242, 242, 1);
  3024. border:none;
  3025. border-radius:0px;
  3026. -moz-box-shadow:none;
  3027. -webkit-box-shadow:none;
  3028. box-shadow:none;
  3029. font-size:14px;
  3030. color:#AAAAAA;
  3031. }
  3032. #u66581 {
  3033. border-width:0px;
  3034. position:absolute;
  3035. left:717px;
  3036. top:550px;
  3037. width:172px;
  3038. height:31px;
  3039. display:flex;
  3040. font-size:14px;
  3041. color:#AAAAAA;
  3042. }
  3043. #u66581 .text {
  3044. position:absolute;
  3045. align-self:flex-start;
  3046. padding:2px 2px 2px 2px;
  3047. box-sizing:border-box;
  3048. width:100%;
  3049. }
  3050. #u66581_div.disabled {
  3051. border-width:0px;
  3052. position:absolute;
  3053. left:0px;
  3054. top:0px;
  3055. width:172px;
  3056. height:31px;
  3057. background:inherit;
  3058. background-color:rgba(240, 240, 240, 1);
  3059. border:none;
  3060. border-radius:0px;
  3061. -moz-box-shadow:none;
  3062. -webkit-box-shadow:none;
  3063. box-shadow:none;
  3064. font-size:14px;
  3065. color:#AAAAAA;
  3066. }
  3067. #u66581.disabled {
  3068. }
  3069. .u66581_input_option {
  3070. font-size:14px;
  3071. }
  3072. #u66582_div {
  3073. border-width:0px;
  3074. position:absolute;
  3075. left:0px;
  3076. top:0px;
  3077. width:60px;
  3078. height:30px;
  3079. background:inherit;
  3080. background-color:rgba(255, 255, 255, 1);
  3081. box-sizing:border-box;
  3082. border-width:1px;
  3083. border-style:solid;
  3084. border-color:rgba(24, 144, 255, 1);
  3085. border-radius:4px;
  3086. -moz-box-shadow:none;
  3087. -webkit-box-shadow:none;
  3088. box-shadow:none;
  3089. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3090. font-weight:400;
  3091. font-style:normal;
  3092. font-size:14px;
  3093. color:#1890FF;
  3094. }
  3095. #u66582 {
  3096. border-width:0px;
  3097. position:absolute;
  3098. left:371px;
  3099. top:607px;
  3100. width:60px;
  3101. height:30px;
  3102. display:flex;
  3103. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3104. font-weight:400;
  3105. font-style:normal;
  3106. font-size:14px;
  3107. color:#1890FF;
  3108. }
  3109. #u66582 .text {
  3110. position:absolute;
  3111. align-self:center;
  3112. padding:2px 2px 2px 2px;
  3113. box-sizing:border-box;
  3114. width:100%;
  3115. }
  3116. #u66582_text {
  3117. border-width:0px;
  3118. word-wrap:break-word;
  3119. text-transform:none;
  3120. }
  3121. #u66583_div {
  3122. border-width:0px;
  3123. position:absolute;
  3124. left:0px;
  3125. top:0px;
  3126. width:1179px;
  3127. height:180px;
  3128. background:inherit;
  3129. background-color:rgba(255, 255, 255, 1);
  3130. border:none;
  3131. border-left:0px;
  3132. border-top:0px;
  3133. border-right:0px;
  3134. border-radius:4px;
  3135. border-bottom-right-radius:0px;
  3136. border-bottom-left-radius:0px;
  3137. -moz-box-shadow:none;
  3138. -webkit-box-shadow:none;
  3139. box-shadow:none;
  3140. font-size:14px;
  3141. }
  3142. #u66583 {
  3143. border-width:0px;
  3144. position:absolute;
  3145. left:371px;
  3146. top:657px;
  3147. width:1179px;
  3148. height:180px;
  3149. display:flex;
  3150. font-size:14px;
  3151. }
  3152. #u66583 .text {
  3153. position:absolute;
  3154. align-self:center;
  3155. padding:2px 2px 2px 2px;
  3156. box-sizing:border-box;
  3157. width:100%;
  3158. }
  3159. #u66583_text {
  3160. border-width:0px;
  3161. word-wrap:break-word;
  3162. text-transform:none;
  3163. visibility:hidden;
  3164. }
  3165. #u66584_div {
  3166. border-width:0px;
  3167. position:absolute;
  3168. left:0px;
  3169. top:0px;
  3170. width:119px;
  3171. height:40px;
  3172. background:inherit;
  3173. background-color:rgba(255, 255, 255, 0);
  3174. border:none;
  3175. border-top:0px;
  3176. border-right:0px;
  3177. border-bottom:0px;
  3178. border-radius:0px;
  3179. border-top-left-radius:0px;
  3180. border-bottom-left-radius:0px;
  3181. -moz-box-shadow:none;
  3182. -webkit-box-shadow:none;
  3183. box-shadow:none;
  3184. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3185. font-weight:400;
  3186. font-style:normal;
  3187. font-size:18px;
  3188. }
  3189. #u66584 {
  3190. border-width:0px;
  3191. position:absolute;
  3192. left:371px;
  3193. top:677px;
  3194. width:119px;
  3195. height:40px;
  3196. display:flex;
  3197. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3198. font-weight:400;
  3199. font-style:normal;
  3200. font-size:18px;
  3201. }
  3202. #u66584 .text {
  3203. position:absolute;
  3204. align-self:center;
  3205. padding:5px 10px 5px 0px;
  3206. box-sizing:border-box;
  3207. width:100%;
  3208. }
  3209. #u66584_text {
  3210. border-width:0px;
  3211. white-space:nowrap;
  3212. text-transform:none;
  3213. }
  3214. #u66585_img {
  3215. border-width:0px;
  3216. position:absolute;
  3217. left:0px;
  3218. top:0px;
  3219. width:50px;
  3220. height:31px;
  3221. }
  3222. #u66585 {
  3223. border-width:0px;
  3224. position:absolute;
  3225. left:503px;
  3226. top:681px;
  3227. width:50px;
  3228. height:31px;
  3229. display:flex;
  3230. }
  3231. #u66585 .text {
  3232. position:absolute;
  3233. align-self:center;
  3234. padding:2px 2px 2px 2px;
  3235. box-sizing:border-box;
  3236. width:100%;
  3237. }
  3238. #u66585_text {
  3239. border-width:0px;
  3240. word-wrap:break-word;
  3241. text-transform:none;
  3242. visibility:hidden;
  3243. }
  3244. #u66586 {
  3245. border-width:0px;
  3246. position:absolute;
  3247. left:0px;
  3248. top:0px;
  3249. width:0px;
  3250. height:0px;
  3251. }
  3252. #u66587_div {
  3253. border-width:0px;
  3254. position:absolute;
  3255. left:0px;
  3256. top:0px;
  3257. width:180px;
  3258. height:40px;
  3259. background:inherit;
  3260. background-color:rgba(242, 242, 242, 1);
  3261. box-sizing:border-box;
  3262. border-width:1px;
  3263. border-style:solid;
  3264. border-color:rgba(215, 215, 215, 1);
  3265. border-radius:4px;
  3266. -moz-box-shadow:none;
  3267. -webkit-box-shadow:none;
  3268. box-shadow:none;
  3269. font-size:14px;
  3270. }
  3271. #u66587 {
  3272. border-width:0px;
  3273. position:absolute;
  3274. left:371px;
  3275. top:727px;
  3276. width:180px;
  3277. height:40px;
  3278. display:flex;
  3279. font-size:14px;
  3280. }
  3281. #u66587 .text {
  3282. position:absolute;
  3283. align-self:center;
  3284. padding:2px 2px 2px 2px;
  3285. box-sizing:border-box;
  3286. width:100%;
  3287. }
  3288. #u66587_text {
  3289. border-width:0px;
  3290. word-wrap:break-word;
  3291. text-transform:none;
  3292. visibility:hidden;
  3293. }
  3294. #u66588_input {
  3295. position:absolute;
  3296. left:0px;
  3297. top:0px;
  3298. width:172px;
  3299. height:31px;
  3300. padding:2px 2px 2px 2px;
  3301. font-family:'ArialMT', 'Arial', sans-serif;
  3302. font-weight:400;
  3303. font-style:normal;
  3304. font-size:14px;
  3305. letter-spacing:normal;
  3306. color:#AAAAAA;
  3307. vertical-align:none;
  3308. text-align:left;
  3309. text-transform:none;
  3310. background-color:transparent;
  3311. border-color:transparent;
  3312. }
  3313. #u66588_input.disabled {
  3314. position:absolute;
  3315. left:0px;
  3316. top:0px;
  3317. width:172px;
  3318. height:31px;
  3319. padding:2px 2px 2px 2px;
  3320. font-family:'ArialMT', 'Arial', sans-serif;
  3321. font-weight:400;
  3322. font-style:normal;
  3323. font-size:14px;
  3324. letter-spacing:normal;
  3325. color:#AAAAAA;
  3326. vertical-align:none;
  3327. text-align:left;
  3328. text-transform:none;
  3329. background-color:transparent;
  3330. border-color:transparent;
  3331. }
  3332. #u66588_div {
  3333. border-width:0px;
  3334. position:absolute;
  3335. left:0px;
  3336. top:0px;
  3337. width:172px;
  3338. height:31px;
  3339. background:inherit;
  3340. background-color:rgba(242, 242, 242, 1);
  3341. border:none;
  3342. border-radius:0px;
  3343. -moz-box-shadow:none;
  3344. -webkit-box-shadow:none;
  3345. box-shadow:none;
  3346. font-size:14px;
  3347. color:#AAAAAA;
  3348. }
  3349. #u66588 {
  3350. border-width:0px;
  3351. position:absolute;
  3352. left:376px;
  3353. top:730px;
  3354. width:172px;
  3355. height:31px;
  3356. display:flex;
  3357. font-size:14px;
  3358. color:#AAAAAA;
  3359. }
  3360. #u66588 .text {
  3361. position:absolute;
  3362. align-self:flex-start;
  3363. padding:2px 2px 2px 2px;
  3364. box-sizing:border-box;
  3365. width:100%;
  3366. }
  3367. #u66588_div.disabled {
  3368. border-width:0px;
  3369. position:absolute;
  3370. left:0px;
  3371. top:0px;
  3372. width:172px;
  3373. height:31px;
  3374. background:inherit;
  3375. background-color:rgba(240, 240, 240, 1);
  3376. border:none;
  3377. border-radius:0px;
  3378. -moz-box-shadow:none;
  3379. -webkit-box-shadow:none;
  3380. box-shadow:none;
  3381. font-size:14px;
  3382. color:#AAAAAA;
  3383. }
  3384. #u66588.disabled {
  3385. }
  3386. .u66588_input_option {
  3387. font-size:14px;
  3388. }
  3389. #u66589_div {
  3390. border-width:0px;
  3391. position:absolute;
  3392. left:0px;
  3393. top:0px;
  3394. width:151px;
  3395. height:40px;
  3396. background:inherit;
  3397. background-color:rgba(255, 255, 255, 0);
  3398. border:none;
  3399. border-top:0px;
  3400. border-right:0px;
  3401. border-bottom:0px;
  3402. border-radius:0px;
  3403. border-top-left-radius:0px;
  3404. border-bottom-left-radius:0px;
  3405. -moz-box-shadow:none;
  3406. -webkit-box-shadow:none;
  3407. box-shadow:none;
  3408. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3409. font-weight:400;
  3410. font-style:normal;
  3411. font-size:14px;
  3412. color:#7F7F7F;
  3413. }
  3414. #u66589 {
  3415. border-width:0px;
  3416. position:absolute;
  3417. left:561px;
  3418. top:727px;
  3419. width:151px;
  3420. height:40px;
  3421. display:flex;
  3422. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3423. font-weight:400;
  3424. font-style:normal;
  3425. font-size:14px;
  3426. color:#7F7F7F;
  3427. }
  3428. #u66589 .text {
  3429. position:absolute;
  3430. align-self:center;
  3431. padding:5px 10px 5px 0px;
  3432. box-sizing:border-box;
  3433. width:100%;
  3434. }
  3435. #u66589_text {
  3436. border-width:0px;
  3437. white-space:nowrap;
  3438. text-transform:none;
  3439. }
  3440. #u66590 {
  3441. border-width:0px;
  3442. position:absolute;
  3443. left:0px;
  3444. top:0px;
  3445. width:0px;
  3446. height:0px;
  3447. }
  3448. #u66591_div {
  3449. border-width:0px;
  3450. position:absolute;
  3451. left:0px;
  3452. top:0px;
  3453. width:180px;
  3454. height:40px;
  3455. background:inherit;
  3456. background-color:rgba(242, 242, 242, 1);
  3457. box-sizing:border-box;
  3458. border-width:1px;
  3459. border-style:solid;
  3460. border-color:rgba(215, 215, 215, 1);
  3461. border-radius:4px;
  3462. -moz-box-shadow:none;
  3463. -webkit-box-shadow:none;
  3464. box-shadow:none;
  3465. font-size:14px;
  3466. }
  3467. #u66591 {
  3468. border-width:0px;
  3469. position:absolute;
  3470. left:712px;
  3471. top:727px;
  3472. width:180px;
  3473. height:40px;
  3474. display:flex;
  3475. font-size:14px;
  3476. }
  3477. #u66591 .text {
  3478. position:absolute;
  3479. align-self:center;
  3480. padding:2px 2px 2px 2px;
  3481. box-sizing:border-box;
  3482. width:100%;
  3483. }
  3484. #u66591_text {
  3485. border-width:0px;
  3486. word-wrap:break-word;
  3487. text-transform:none;
  3488. visibility:hidden;
  3489. }
  3490. #u66592_input {
  3491. position:absolute;
  3492. left:0px;
  3493. top:0px;
  3494. width:172px;
  3495. height:31px;
  3496. padding:2px 2px 2px 2px;
  3497. font-family:'ArialMT', 'Arial', sans-serif;
  3498. font-weight:400;
  3499. font-style:normal;
  3500. font-size:14px;
  3501. letter-spacing:normal;
  3502. color:#AAAAAA;
  3503. vertical-align:none;
  3504. text-align:left;
  3505. text-transform:none;
  3506. background-color:transparent;
  3507. border-color:transparent;
  3508. }
  3509. #u66592_input.disabled {
  3510. position:absolute;
  3511. left:0px;
  3512. top:0px;
  3513. width:172px;
  3514. height:31px;
  3515. padding:2px 2px 2px 2px;
  3516. font-family:'ArialMT', 'Arial', sans-serif;
  3517. font-weight:400;
  3518. font-style:normal;
  3519. font-size:14px;
  3520. letter-spacing:normal;
  3521. color:#AAAAAA;
  3522. vertical-align:none;
  3523. text-align:left;
  3524. text-transform:none;
  3525. background-color:transparent;
  3526. border-color:transparent;
  3527. }
  3528. #u66592_div {
  3529. border-width:0px;
  3530. position:absolute;
  3531. left:0px;
  3532. top:0px;
  3533. width:172px;
  3534. height:31px;
  3535. background:inherit;
  3536. background-color:rgba(242, 242, 242, 1);
  3537. border:none;
  3538. border-radius:0px;
  3539. -moz-box-shadow:none;
  3540. -webkit-box-shadow:none;
  3541. box-shadow:none;
  3542. font-size:14px;
  3543. color:#AAAAAA;
  3544. }
  3545. #u66592 {
  3546. border-width:0px;
  3547. position:absolute;
  3548. left:717px;
  3549. top:730px;
  3550. width:172px;
  3551. height:31px;
  3552. display:flex;
  3553. font-size:14px;
  3554. color:#AAAAAA;
  3555. }
  3556. #u66592 .text {
  3557. position:absolute;
  3558. align-self:flex-start;
  3559. padding:2px 2px 2px 2px;
  3560. box-sizing:border-box;
  3561. width:100%;
  3562. }
  3563. #u66592_div.disabled {
  3564. border-width:0px;
  3565. position:absolute;
  3566. left:0px;
  3567. top:0px;
  3568. width:172px;
  3569. height:31px;
  3570. background:inherit;
  3571. background-color:rgba(240, 240, 240, 1);
  3572. border:none;
  3573. border-radius:0px;
  3574. -moz-box-shadow:none;
  3575. -webkit-box-shadow:none;
  3576. box-shadow:none;
  3577. font-size:14px;
  3578. color:#AAAAAA;
  3579. }
  3580. #u66592.disabled {
  3581. }
  3582. .u66592_input_option {
  3583. font-size:14px;
  3584. }
  3585. #u66593_div {
  3586. border-width:0px;
  3587. position:absolute;
  3588. left:0px;
  3589. top:0px;
  3590. width:137px;
  3591. height:35px;
  3592. background:inherit;
  3593. background-color:rgba(255, 255, 255, 0);
  3594. border:none;
  3595. border-top:0px;
  3596. border-right:0px;
  3597. border-bottom:0px;
  3598. border-radius:0px;
  3599. border-top-left-radius:0px;
  3600. border-bottom-left-radius:0px;
  3601. -moz-box-shadow:none;
  3602. -webkit-box-shadow:none;
  3603. box-shadow:none;
  3604. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  3605. font-weight:500;
  3606. font-style:normal;
  3607. font-size:18px;
  3608. }
  3609. #u66593 {
  3610. border-width:0px;
  3611. position:absolute;
  3612. left:371px;
  3613. top:134px;
  3614. width:137px;
  3615. height:35px;
  3616. display:flex;
  3617. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  3618. font-weight:500;
  3619. font-style:normal;
  3620. font-size:18px;
  3621. }
  3622. #u66593 .text {
  3623. position:absolute;
  3624. align-self:center;
  3625. padding:5px 10px 5px 0px;
  3626. box-sizing:border-box;
  3627. width:100%;
  3628. }
  3629. #u66593_text {
  3630. border-width:0px;
  3631. white-space:nowrap;
  3632. text-transform:none;
  3633. }
  3634. #u66594_div {
  3635. border-width:0px;
  3636. position:absolute;
  3637. left:0px;
  3638. top:0px;
  3639. width:193px;
  3640. height:17px;
  3641. background:inherit;
  3642. background-color:rgba(255, 255, 255, 0);
  3643. border:none;
  3644. border-radius:0px;
  3645. -moz-box-shadow:none;
  3646. -webkit-box-shadow:none;
  3647. box-shadow:none;
  3648. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3649. font-weight:400;
  3650. font-style:normal;
  3651. font-size:12px;
  3652. color:#1890FF;
  3653. }
  3654. #u66594 {
  3655. border-width:0px;
  3656. position:absolute;
  3657. left:371px;
  3658. top:172px;
  3659. width:193px;
  3660. height:17px;
  3661. display:flex;
  3662. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3663. font-weight:400;
  3664. font-style:normal;
  3665. font-size:12px;
  3666. color:#1890FF;
  3667. }
  3668. #u66594 .text {
  3669. position:absolute;
  3670. align-self:flex-start;
  3671. padding:0px 0px 0px 0px;
  3672. box-sizing:border-box;
  3673. width:100%;
  3674. }
  3675. #u66594_text {
  3676. border-width:0px;
  3677. white-space:nowrap;
  3678. text-transform:none;
  3679. }
  3680. #u66595 label {
  3681. left:0px;
  3682. width:100%;
  3683. }
  3684. #u66595_img {
  3685. border-width:0px;
  3686. position:absolute;
  3687. left:0px;
  3688. top:3px;
  3689. width:12px;
  3690. height:12px;
  3691. }
  3692. #u66595 {
  3693. border-width:0px;
  3694. position:absolute;
  3695. left:371px;
  3696. top:210px;
  3697. width:100px;
  3698. height:18px;
  3699. display:flex;
  3700. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3701. font-weight:400;
  3702. font-style:normal;
  3703. }
  3704. #u66595 .text {
  3705. position:absolute;
  3706. align-self:center;
  3707. padding:0px 2px 0px 2px;
  3708. box-sizing:border-box;
  3709. }
  3710. #u66595_img.selected {
  3711. }
  3712. #u66595.selected {
  3713. }
  3714. #u66595_img.disabled {
  3715. }
  3716. #u66595.disabled {
  3717. }
  3718. #u66595_img.selectedDisabled {
  3719. }
  3720. #u66595.selectedDisabled {
  3721. }
  3722. #u66595_text {
  3723. border-width:0px;
  3724. position:absolute;
  3725. left:14px;
  3726. top:0px;
  3727. width:84px;
  3728. word-wrap:break-word;
  3729. text-transform:none;
  3730. }
  3731. #u66595_input {
  3732. border-width:0px;
  3733. position:absolute;
  3734. left:0px;
  3735. top:0px;
  3736. width:0px;
  3737. height:0px;
  3738. opacity:0;
  3739. }
  3740. #u66596 label {
  3741. left:0px;
  3742. width:100%;
  3743. }
  3744. #u66596_img {
  3745. border-width:0px;
  3746. position:absolute;
  3747. left:0px;
  3748. top:3px;
  3749. width:12px;
  3750. height:12px;
  3751. }
  3752. #u66596 {
  3753. border-width:0px;
  3754. position:absolute;
  3755. left:471px;
  3756. top:210px;
  3757. width:157px;
  3758. height:18px;
  3759. display:flex;
  3760. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3761. font-weight:400;
  3762. font-style:normal;
  3763. }
  3764. #u66596 .text {
  3765. position:absolute;
  3766. align-self:center;
  3767. padding:0px 2px 0px 2px;
  3768. box-sizing:border-box;
  3769. }
  3770. #u66596_img.selected {
  3771. }
  3772. #u66596.selected {
  3773. }
  3774. #u66596_img.disabled {
  3775. }
  3776. #u66596.disabled {
  3777. }
  3778. #u66596_img.selectedDisabled {
  3779. }
  3780. #u66596.selectedDisabled {
  3781. }
  3782. #u66596_text {
  3783. border-width:0px;
  3784. position:absolute;
  3785. left:14px;
  3786. top:0px;
  3787. width:141px;
  3788. word-wrap:break-word;
  3789. text-transform:none;
  3790. }
  3791. #u66596_input {
  3792. border-width:0px;
  3793. position:absolute;
  3794. left:0px;
  3795. top:0px;
  3796. width:0px;
  3797. height:0px;
  3798. opacity:0;
  3799. }
  3800. #u66597 {
  3801. border-width:0px;
  3802. position:absolute;
  3803. left:0px;
  3804. top:0px;
  3805. width:0px;
  3806. height:0px;
  3807. }
  3808. #u66598_div {
  3809. border-width:0px;
  3810. position:absolute;
  3811. left:0px;
  3812. top:0px;
  3813. width:1022px;
  3814. height:40px;
  3815. background:inherit;
  3816. background-color:rgba(242, 242, 242, 1);
  3817. box-sizing:border-box;
  3818. border-width:1px;
  3819. border-style:solid;
  3820. border-color:rgba(215, 215, 215, 1);
  3821. border-radius:4px;
  3822. -moz-box-shadow:none;
  3823. -webkit-box-shadow:none;
  3824. box-shadow:none;
  3825. font-size:14px;
  3826. }
  3827. #u66598 {
  3828. border-width:0px;
  3829. position:absolute;
  3830. left:371px;
  3831. top:245px;
  3832. width:1022px;
  3833. height:40px;
  3834. display:flex;
  3835. font-size:14px;
  3836. }
  3837. #u66598 .text {
  3838. position:absolute;
  3839. align-self:center;
  3840. padding:2px 2px 2px 2px;
  3841. box-sizing:border-box;
  3842. width:100%;
  3843. }
  3844. #u66598_text {
  3845. border-width:0px;
  3846. word-wrap:break-word;
  3847. text-transform:none;
  3848. visibility:hidden;
  3849. }
  3850. #u66599_input {
  3851. position:absolute;
  3852. left:0px;
  3853. top:0px;
  3854. width:1009px;
  3855. height:31px;
  3856. padding:2px 2px 2px 2px;
  3857. font-family:'ArialMT', 'Arial', sans-serif;
  3858. font-weight:400;
  3859. font-style:normal;
  3860. font-size:14px;
  3861. letter-spacing:normal;
  3862. color:#AAAAAA;
  3863. vertical-align:none;
  3864. text-align:left;
  3865. text-transform:none;
  3866. background-color:transparent;
  3867. border-color:transparent;
  3868. }
  3869. #u66599_input.disabled {
  3870. position:absolute;
  3871. left:0px;
  3872. top:0px;
  3873. width:1009px;
  3874. height:31px;
  3875. padding:2px 2px 2px 2px;
  3876. font-family:'ArialMT', 'Arial', sans-serif;
  3877. font-weight:400;
  3878. font-style:normal;
  3879. font-size:14px;
  3880. letter-spacing:normal;
  3881. color:#AAAAAA;
  3882. vertical-align:none;
  3883. text-align:left;
  3884. text-transform:none;
  3885. background-color:transparent;
  3886. border-color:transparent;
  3887. }
  3888. #u66599_div {
  3889. border-width:0px;
  3890. position:absolute;
  3891. left:0px;
  3892. top:0px;
  3893. width:1009px;
  3894. height:31px;
  3895. background:inherit;
  3896. background-color:rgba(242, 242, 242, 1);
  3897. border:none;
  3898. border-radius:0px;
  3899. -moz-box-shadow:none;
  3900. -webkit-box-shadow:none;
  3901. box-shadow:none;
  3902. font-size:14px;
  3903. color:#AAAAAA;
  3904. }
  3905. #u66599 {
  3906. border-width:0px;
  3907. position:absolute;
  3908. left:384px;
  3909. top:248px;
  3910. width:1009px;
  3911. height:31px;
  3912. display:flex;
  3913. font-size:14px;
  3914. color:#AAAAAA;
  3915. }
  3916. #u66599 .text {
  3917. position:absolute;
  3918. align-self:flex-start;
  3919. padding:2px 2px 2px 2px;
  3920. box-sizing:border-box;
  3921. width:100%;
  3922. }
  3923. #u66599_div.disabled {
  3924. border-width:0px;
  3925. position:absolute;
  3926. left:0px;
  3927. top:0px;
  3928. width:1009px;
  3929. height:31px;
  3930. background:inherit;
  3931. background-color:rgba(240, 240, 240, 1);
  3932. border:none;
  3933. border-radius:0px;
  3934. -moz-box-shadow:none;
  3935. -webkit-box-shadow:none;
  3936. box-shadow:none;
  3937. font-size:14px;
  3938. color:#AAAAAA;
  3939. }
  3940. #u66599.disabled {
  3941. }
  3942. .u66599_input_option {
  3943. font-size:14px;
  3944. }
  3945. #u66600_div {
  3946. border-width:0px;
  3947. position:absolute;
  3948. left:0px;
  3949. top:0px;
  3950. width:60px;
  3951. height:30px;
  3952. background:inherit;
  3953. background-color:rgba(255, 255, 255, 1);
  3954. box-sizing:border-box;
  3955. border-width:1px;
  3956. border-style:solid;
  3957. border-color:rgba(24, 144, 255, 1);
  3958. border-radius:4px;
  3959. -moz-box-shadow:none;
  3960. -webkit-box-shadow:none;
  3961. box-shadow:none;
  3962. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3963. font-weight:400;
  3964. font-style:normal;
  3965. font-size:14px;
  3966. color:#1890FF;
  3967. }
  3968. #u66600 {
  3969. border-width:0px;
  3970. position:absolute;
  3971. left:371px;
  3972. top:305px;
  3973. width:60px;
  3974. height:30px;
  3975. display:flex;
  3976. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3977. font-weight:400;
  3978. font-style:normal;
  3979. font-size:14px;
  3980. color:#1890FF;
  3981. }
  3982. #u66600 .text {
  3983. position:absolute;
  3984. align-self:center;
  3985. padding:2px 2px 2px 2px;
  3986. box-sizing:border-box;
  3987. width:100%;
  3988. }
  3989. #u66600_text {
  3990. border-width:0px;
  3991. word-wrap:break-word;
  3992. text-transform:none;
  3993. }
  3994. #u66602_div {
  3995. border-width:0px;
  3996. position:absolute;
  3997. left:0px;
  3998. top:0px;
  3999. width:1480px;
  4000. height:1200px;
  4001. background:inherit;
  4002. background-color:rgba(242, 242, 242, 1);
  4003. border:none;
  4004. border-radius:0px;
  4005. -moz-box-shadow:none;
  4006. -webkit-box-shadow:none;
  4007. box-shadow:none;
  4008. }
  4009. #u66602 {
  4010. border-width:0px;
  4011. position:absolute;
  4012. left:1764px;
  4013. top:50px;
  4014. width:1480px;
  4015. height:1200px;
  4016. display:flex;
  4017. }
  4018. #u66602 .text {
  4019. position:absolute;
  4020. align-self:center;
  4021. padding:2px 2px 2px 2px;
  4022. box-sizing:border-box;
  4023. width:100%;
  4024. }
  4025. #u66602_text {
  4026. border-width:0px;
  4027. word-wrap:break-word;
  4028. text-transform:none;
  4029. visibility:hidden;
  4030. }
  4031. #u66603_div {
  4032. border-width:0px;
  4033. position:absolute;
  4034. left:0px;
  4035. top:0px;
  4036. width:129px;
  4037. height:22px;
  4038. background:inherit;
  4039. background-color:rgba(255, 255, 255, 0);
  4040. border:none;
  4041. border-radius:0px;
  4042. -moz-box-shadow:none;
  4043. -webkit-box-shadow:none;
  4044. box-shadow:none;
  4045. font-size:16px;
  4046. color:#FFFFFF;
  4047. }
  4048. #u66603 {
  4049. border-width:0px;
  4050. position:absolute;
  4051. left:1693px;
  4052. top:14px;
  4053. width:129px;
  4054. height:22px;
  4055. display:flex;
  4056. font-size:16px;
  4057. color:#FFFFFF;
  4058. }
  4059. #u66603 .text {
  4060. position:absolute;
  4061. align-self:flex-start;
  4062. padding:0px 0px 0px 0px;
  4063. box-sizing:border-box;
  4064. width:100%;
  4065. }
  4066. #u66603_text {
  4067. border-width:0px;
  4068. white-space:nowrap;
  4069. text-transform:none;
  4070. }
  4071. #u66604_div {
  4072. border-width:0px;
  4073. position:absolute;
  4074. left:0px;
  4075. top:0px;
  4076. width:1600px;
  4077. height:50px;
  4078. background:inherit;
  4079. background-color:rgba(30, 42, 68, 1);
  4080. border:none;
  4081. border-radius:0px;
  4082. -moz-box-shadow:none;
  4083. -webkit-box-shadow:none;
  4084. box-shadow:none;
  4085. color:#AFB3B6;
  4086. }
  4087. #u66604 {
  4088. border-width:0px;
  4089. position:absolute;
  4090. left:1644px;
  4091. top:0px;
  4092. width:1600px;
  4093. height:50px;
  4094. display:flex;
  4095. color:#AFB3B6;
  4096. }
  4097. #u66604 .text {
  4098. position:absolute;
  4099. align-self:center;
  4100. padding:2px 2px 2px 2px;
  4101. box-sizing:border-box;
  4102. width:100%;
  4103. }
  4104. #u66604_text {
  4105. border-width:0px;
  4106. word-wrap:break-word;
  4107. text-transform:none;
  4108. visibility:hidden;
  4109. }
  4110. #u66605 {
  4111. border-width:0px;
  4112. position:absolute;
  4113. left:0px;
  4114. top:0px;
  4115. width:0px;
  4116. height:0px;
  4117. }
  4118. #u66606_img {
  4119. border-width:0px;
  4120. position:absolute;
  4121. left:0px;
  4122. top:0px;
  4123. width:31px;
  4124. height:31px;
  4125. }
  4126. #u66606 {
  4127. border-width:0px;
  4128. position:absolute;
  4129. left:1663px;
  4130. top:10px;
  4131. width:31px;
  4132. height:31px;
  4133. display:flex;
  4134. }
  4135. #u66606 .text {
  4136. position:absolute;
  4137. align-self:center;
  4138. padding:2px 2px 2px 2px;
  4139. box-sizing:border-box;
  4140. width:100%;
  4141. }
  4142. #u66606_text {
  4143. border-width:0px;
  4144. word-wrap:break-word;
  4145. text-transform:none;
  4146. }
  4147. #u66607_div {
  4148. border-width:0px;
  4149. position:absolute;
  4150. left:0px;
  4151. top:0px;
  4152. width:161px;
  4153. height:22px;
  4154. background:inherit;
  4155. background-color:rgba(255, 255, 255, 0);
  4156. border:none;
  4157. border-radius:0px;
  4158. -moz-box-shadow:none;
  4159. -webkit-box-shadow:none;
  4160. box-shadow:none;
  4161. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4162. font-weight:400;
  4163. font-style:normal;
  4164. font-size:16px;
  4165. color:#FFFFFF;
  4166. }
  4167. #u66607 {
  4168. border-width:0px;
  4169. position:absolute;
  4170. left:1706px;
  4171. top:14px;
  4172. width:161px;
  4173. height:22px;
  4174. display:flex;
  4175. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4176. font-weight:400;
  4177. font-style:normal;
  4178. font-size:16px;
  4179. color:#FFFFFF;
  4180. }
  4181. #u66607 .text {
  4182. position:absolute;
  4183. align-self:flex-start;
  4184. padding:0px 0px 0px 0px;
  4185. box-sizing:border-box;
  4186. width:100%;
  4187. }
  4188. #u66607_text {
  4189. border-width:0px;
  4190. white-space:nowrap;
  4191. text-transform:none;
  4192. }
  4193. #u66608_div {
  4194. border-width:0px;
  4195. position:absolute;
  4196. left:0px;
  4197. top:0px;
  4198. width:120px;
  4199. height:1200px;
  4200. background:inherit;
  4201. background-color:rgba(30, 42, 68, 1);
  4202. border:none;
  4203. border-radius:0px;
  4204. -moz-box-shadow:none;
  4205. -webkit-box-shadow:none;
  4206. box-shadow:none;
  4207. color:#AFB3B6;
  4208. }
  4209. #u66608 {
  4210. border-width:0px;
  4211. position:absolute;
  4212. left:1644px;
  4213. top:47px;
  4214. width:120px;
  4215. height:1200px;
  4216. display:flex;
  4217. color:#AFB3B6;
  4218. }
  4219. #u66608 .text {
  4220. position:absolute;
  4221. align-self:center;
  4222. padding:2px 2px 2px 2px;
  4223. box-sizing:border-box;
  4224. width:100%;
  4225. }
  4226. #u66608_text {
  4227. border-width:0px;
  4228. word-wrap:break-word;
  4229. text-transform:none;
  4230. visibility:hidden;
  4231. }
  4232. #u66609 {
  4233. border-width:0px;
  4234. position:absolute;
  4235. left:0px;
  4236. top:0px;
  4237. width:0px;
  4238. height:0px;
  4239. }
  4240. #u66610_div {
  4241. border-width:0px;
  4242. position:absolute;
  4243. left:0px;
  4244. top:0px;
  4245. width:33px;
  4246. height:22px;
  4247. background:inherit;
  4248. background-color:rgba(255, 255, 255, 0);
  4249. border:none;
  4250. border-radius:0px;
  4251. -moz-box-shadow:none;
  4252. -webkit-box-shadow:none;
  4253. box-shadow:none;
  4254. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4255. font-weight:400;
  4256. font-style:normal;
  4257. font-size:16px;
  4258. color:#FFFFFF;
  4259. }
  4260. #u66610 {
  4261. border-width:0px;
  4262. position:absolute;
  4263. left:1683px;
  4264. top:71px;
  4265. width:33px;
  4266. height:22px;
  4267. display:flex;
  4268. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4269. font-weight:400;
  4270. font-style:normal;
  4271. font-size:16px;
  4272. color:#FFFFFF;
  4273. }
  4274. #u66610 .text {
  4275. position:absolute;
  4276. align-self:flex-start;
  4277. padding:0px 0px 0px 0px;
  4278. box-sizing:border-box;
  4279. width:100%;
  4280. }
  4281. #u66610_text {
  4282. border-width:0px;
  4283. white-space:nowrap;
  4284. text-transform:none;
  4285. }
  4286. #u66611_img {
  4287. border-width:0px;
  4288. position:absolute;
  4289. left:0px;
  4290. top:0px;
  4291. width:14px;
  4292. height:14px;
  4293. }
  4294. #u66611 {
  4295. border-width:0px;
  4296. position:absolute;
  4297. left:1664px;
  4298. top:75px;
  4299. width:14px;
  4300. height:14px;
  4301. display:flex;
  4302. }
  4303. #u66611 .text {
  4304. position:absolute;
  4305. align-self:center;
  4306. padding:2px 2px 2px 2px;
  4307. box-sizing:border-box;
  4308. width:100%;
  4309. }
  4310. #u66611_text {
  4311. border-width:0px;
  4312. word-wrap:break-word;
  4313. text-transform:none;
  4314. visibility:hidden;
  4315. }
  4316. #u66612 {
  4317. border-width:0px;
  4318. position:absolute;
  4319. left:0px;
  4320. top:0px;
  4321. width:0px;
  4322. height:0px;
  4323. }
  4324. #u66613_div {
  4325. border-width:0px;
  4326. position:absolute;
  4327. left:0px;
  4328. top:0px;
  4329. width:33px;
  4330. height:22px;
  4331. background:inherit;
  4332. background-color:rgba(255, 255, 255, 0);
  4333. border:none;
  4334. border-radius:0px;
  4335. -moz-box-shadow:none;
  4336. -webkit-box-shadow:none;
  4337. box-shadow:none;
  4338. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4339. font-weight:400;
  4340. font-style:normal;
  4341. font-size:16px;
  4342. color:#FFFFFF;
  4343. }
  4344. #u66613 {
  4345. border-width:0px;
  4346. position:absolute;
  4347. left:1683px;
  4348. top:147px;
  4349. width:33px;
  4350. height:22px;
  4351. display:flex;
  4352. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4353. font-weight:400;
  4354. font-style:normal;
  4355. font-size:16px;
  4356. color:#FFFFFF;
  4357. }
  4358. #u66613 .text {
  4359. position:absolute;
  4360. align-self:flex-start;
  4361. padding:0px 0px 0px 0px;
  4362. box-sizing:border-box;
  4363. width:100%;
  4364. }
  4365. #u66613_text {
  4366. border-width:0px;
  4367. white-space:nowrap;
  4368. text-transform:none;
  4369. }
  4370. #u66614_img {
  4371. border-width:0px;
  4372. position:absolute;
  4373. left:0px;
  4374. top:0px;
  4375. width:14px;
  4376. height:14px;
  4377. }
  4378. #u66614 {
  4379. border-width:0px;
  4380. position:absolute;
  4381. left:1664px;
  4382. top:151px;
  4383. width:14px;
  4384. height:14px;
  4385. display:flex;
  4386. }
  4387. #u66614 .text {
  4388. position:absolute;
  4389. align-self:center;
  4390. padding:2px 2px 2px 2px;
  4391. box-sizing:border-box;
  4392. width:100%;
  4393. }
  4394. #u66614_text {
  4395. border-width:0px;
  4396. word-wrap:break-word;
  4397. text-transform:none;
  4398. visibility:hidden;
  4399. }
  4400. #u66615 {
  4401. border-width:0px;
  4402. position:absolute;
  4403. left:0px;
  4404. top:0px;
  4405. width:0px;
  4406. height:0px;
  4407. }
  4408. #u66616_div {
  4409. border-width:0px;
  4410. position:absolute;
  4411. left:0px;
  4412. top:0px;
  4413. width:33px;
  4414. height:22px;
  4415. background:inherit;
  4416. background-color:rgba(255, 255, 255, 0);
  4417. border:none;
  4418. border-radius:0px;
  4419. -moz-box-shadow:none;
  4420. -webkit-box-shadow:none;
  4421. box-shadow:none;
  4422. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4423. font-weight:400;
  4424. font-style:normal;
  4425. font-size:16px;
  4426. color:#FFFFFF;
  4427. }
  4428. #u66616 {
  4429. border-width:0px;
  4430. position:absolute;
  4431. left:1683px;
  4432. top:399px;
  4433. width:33px;
  4434. height:22px;
  4435. display:flex;
  4436. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4437. font-weight:400;
  4438. font-style:normal;
  4439. font-size:16px;
  4440. color:#FFFFFF;
  4441. }
  4442. #u66616 .text {
  4443. position:absolute;
  4444. align-self:flex-start;
  4445. padding:0px 0px 0px 0px;
  4446. box-sizing:border-box;
  4447. width:100%;
  4448. }
  4449. #u66616_text {
  4450. border-width:0px;
  4451. white-space:nowrap;
  4452. text-transform:none;
  4453. }
  4454. #u66617_img {
  4455. border-width:0px;
  4456. position:absolute;
  4457. left:0px;
  4458. top:0px;
  4459. width:14px;
  4460. height:14px;
  4461. }
  4462. #u66617 {
  4463. border-width:0px;
  4464. position:absolute;
  4465. left:1664px;
  4466. top:403px;
  4467. width:14px;
  4468. height:14px;
  4469. display:flex;
  4470. }
  4471. #u66617 .text {
  4472. position:absolute;
  4473. align-self:center;
  4474. padding:2px 2px 2px 2px;
  4475. box-sizing:border-box;
  4476. width:100%;
  4477. }
  4478. #u66617_text {
  4479. border-width:0px;
  4480. word-wrap:break-word;
  4481. text-transform:none;
  4482. visibility:hidden;
  4483. }
  4484. #u66618 {
  4485. border-width:0px;
  4486. position:absolute;
  4487. left:0px;
  4488. top:0px;
  4489. width:0px;
  4490. height:0px;
  4491. }
  4492. #u66619_div {
  4493. border-width:0px;
  4494. position:absolute;
  4495. left:0px;
  4496. top:0px;
  4497. width:49px;
  4498. height:22px;
  4499. background:inherit;
  4500. background-color:rgba(255, 255, 255, 0);
  4501. border:none;
  4502. border-radius:0px;
  4503. -moz-box-shadow:none;
  4504. -webkit-box-shadow:none;
  4505. box-shadow:none;
  4506. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4507. font-weight:400;
  4508. font-style:normal;
  4509. font-size:16px;
  4510. color:#FFFFFF;
  4511. }
  4512. #u66619 {
  4513. border-width:0px;
  4514. position:absolute;
  4515. left:1683px;
  4516. top:109px;
  4517. width:49px;
  4518. height:22px;
  4519. display:flex;
  4520. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4521. font-weight:400;
  4522. font-style:normal;
  4523. font-size:16px;
  4524. color:#FFFFFF;
  4525. }
  4526. #u66619 .text {
  4527. position:absolute;
  4528. align-self:flex-start;
  4529. padding:0px 0px 0px 0px;
  4530. box-sizing:border-box;
  4531. width:100%;
  4532. }
  4533. #u66619_text {
  4534. border-width:0px;
  4535. white-space:nowrap;
  4536. text-transform:none;
  4537. }
  4538. #u66620_img {
  4539. border-width:0px;
  4540. position:absolute;
  4541. left:0px;
  4542. top:0px;
  4543. width:14px;
  4544. height:14px;
  4545. }
  4546. #u66620 {
  4547. border-width:0px;
  4548. position:absolute;
  4549. left:1664px;
  4550. top:113px;
  4551. width:14px;
  4552. height:14px;
  4553. display:flex;
  4554. }
  4555. #u66620 .text {
  4556. position:absolute;
  4557. align-self:center;
  4558. padding:2px 2px 2px 2px;
  4559. box-sizing:border-box;
  4560. width:100%;
  4561. }
  4562. #u66620_text {
  4563. border-width:0px;
  4564. word-wrap:break-word;
  4565. text-transform:none;
  4566. visibility:hidden;
  4567. }
  4568. #u66621 {
  4569. border-width:0px;
  4570. position:absolute;
  4571. left:0px;
  4572. top:0px;
  4573. width:0px;
  4574. height:0px;
  4575. }
  4576. #u66622_div {
  4577. border-width:0px;
  4578. position:absolute;
  4579. left:0px;
  4580. top:0px;
  4581. width:33px;
  4582. height:22px;
  4583. background:inherit;
  4584. background-color:rgba(255, 255, 255, 0);
  4585. border:none;
  4586. border-radius:0px;
  4587. -moz-box-shadow:none;
  4588. -webkit-box-shadow:none;
  4589. box-shadow:none;
  4590. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4591. font-weight:400;
  4592. font-style:normal;
  4593. font-size:16px;
  4594. color:#FFFFFF;
  4595. }
  4596. #u66622 {
  4597. border-width:0px;
  4598. position:absolute;
  4599. left:1683px;
  4600. top:441px;
  4601. width:33px;
  4602. height:22px;
  4603. display:flex;
  4604. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4605. font-weight:400;
  4606. font-style:normal;
  4607. font-size:16px;
  4608. color:#FFFFFF;
  4609. }
  4610. #u66622 .text {
  4611. position:absolute;
  4612. align-self:flex-start;
  4613. padding:0px 0px 0px 0px;
  4614. box-sizing:border-box;
  4615. width:100%;
  4616. }
  4617. #u66622_text {
  4618. border-width:0px;
  4619. white-space:nowrap;
  4620. text-transform:none;
  4621. }
  4622. #u66623_img {
  4623. border-width:0px;
  4624. position:absolute;
  4625. left:0px;
  4626. top:0px;
  4627. width:14px;
  4628. height:14px;
  4629. }
  4630. #u66623 {
  4631. border-width:0px;
  4632. position:absolute;
  4633. left:1664px;
  4634. top:445px;
  4635. width:14px;
  4636. height:14px;
  4637. display:flex;
  4638. }
  4639. #u66623 .text {
  4640. position:absolute;
  4641. align-self:center;
  4642. padding:2px 2px 2px 2px;
  4643. box-sizing:border-box;
  4644. width:100%;
  4645. }
  4646. #u66623_text {
  4647. border-width:0px;
  4648. word-wrap:break-word;
  4649. text-transform:none;
  4650. visibility:hidden;
  4651. }
  4652. #u66624 {
  4653. border-width:0px;
  4654. position:absolute;
  4655. left:0px;
  4656. top:0px;
  4657. width:0px;
  4658. height:0px;
  4659. }
  4660. #u66625_div {
  4661. border-width:0px;
  4662. position:absolute;
  4663. left:0px;
  4664. top:0px;
  4665. width:33px;
  4666. height:22px;
  4667. background:inherit;
  4668. background-color:rgba(255, 255, 255, 0);
  4669. border:none;
  4670. border-radius:0px;
  4671. -moz-box-shadow:none;
  4672. -webkit-box-shadow:none;
  4673. box-shadow:none;
  4674. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4675. font-weight:400;
  4676. font-style:normal;
  4677. font-size:16px;
  4678. color:#FFFFFF;
  4679. }
  4680. #u66625 {
  4681. border-width:0px;
  4682. position:absolute;
  4683. left:1683px;
  4684. top:315px;
  4685. width:33px;
  4686. height:22px;
  4687. display:flex;
  4688. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4689. font-weight:400;
  4690. font-style:normal;
  4691. font-size:16px;
  4692. color:#FFFFFF;
  4693. }
  4694. #u66625 .text {
  4695. position:absolute;
  4696. align-self:flex-start;
  4697. padding:0px 0px 0px 0px;
  4698. box-sizing:border-box;
  4699. width:100%;
  4700. }
  4701. #u66625_text {
  4702. border-width:0px;
  4703. white-space:nowrap;
  4704. text-transform:none;
  4705. }
  4706. #u66626_img {
  4707. border-width:0px;
  4708. position:absolute;
  4709. left:0px;
  4710. top:0px;
  4711. width:14px;
  4712. height:14px;
  4713. }
  4714. #u66626 {
  4715. border-width:0px;
  4716. position:absolute;
  4717. left:1664px;
  4718. top:319px;
  4719. width:14px;
  4720. height:14px;
  4721. display:flex;
  4722. }
  4723. #u66626 .text {
  4724. position:absolute;
  4725. align-self:center;
  4726. padding:2px 2px 2px 2px;
  4727. box-sizing:border-box;
  4728. width:100%;
  4729. }
  4730. #u66626_text {
  4731. border-width:0px;
  4732. word-wrap:break-word;
  4733. text-transform:none;
  4734. visibility:hidden;
  4735. }
  4736. #u66627 {
  4737. border-width:0px;
  4738. position:absolute;
  4739. left:0px;
  4740. top:0px;
  4741. width:0px;
  4742. height:0px;
  4743. }
  4744. #u66628_div {
  4745. border-width:0px;
  4746. position:absolute;
  4747. left:0px;
  4748. top:0px;
  4749. width:33px;
  4750. height:22px;
  4751. background:inherit;
  4752. background-color:rgba(255, 255, 255, 0);
  4753. border:none;
  4754. border-radius:0px;
  4755. -moz-box-shadow:none;
  4756. -webkit-box-shadow:none;
  4757. box-shadow:none;
  4758. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4759. font-weight:400;
  4760. font-style:normal;
  4761. font-size:16px;
  4762. color:#FFFFFF;
  4763. }
  4764. #u66628 {
  4765. border-width:0px;
  4766. position:absolute;
  4767. left:1683px;
  4768. top:189px;
  4769. width:33px;
  4770. height:22px;
  4771. display:flex;
  4772. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4773. font-weight:400;
  4774. font-style:normal;
  4775. font-size:16px;
  4776. color:#FFFFFF;
  4777. }
  4778. #u66628 .text {
  4779. position:absolute;
  4780. align-self:flex-start;
  4781. padding:0px 0px 0px 0px;
  4782. box-sizing:border-box;
  4783. width:100%;
  4784. }
  4785. #u66628_text {
  4786. border-width:0px;
  4787. white-space:nowrap;
  4788. text-transform:none;
  4789. }
  4790. #u66629_img {
  4791. border-width:0px;
  4792. position:absolute;
  4793. left:0px;
  4794. top:0px;
  4795. width:14px;
  4796. height:14px;
  4797. }
  4798. #u66629 {
  4799. border-width:0px;
  4800. position:absolute;
  4801. left:1664px;
  4802. top:193px;
  4803. width:14px;
  4804. height:14px;
  4805. display:flex;
  4806. }
  4807. #u66629 .text {
  4808. position:absolute;
  4809. align-self:center;
  4810. padding:2px 2px 2px 2px;
  4811. box-sizing:border-box;
  4812. width:100%;
  4813. }
  4814. #u66629_text {
  4815. border-width:0px;
  4816. word-wrap:break-word;
  4817. text-transform:none;
  4818. visibility:hidden;
  4819. }
  4820. #u66630 {
  4821. border-width:0px;
  4822. position:absolute;
  4823. left:0px;
  4824. top:0px;
  4825. width:0px;
  4826. height:0px;
  4827. }
  4828. #u66631_div {
  4829. border-width:0px;
  4830. position:absolute;
  4831. left:0px;
  4832. top:0px;
  4833. width:33px;
  4834. height:22px;
  4835. background:inherit;
  4836. background-color:rgba(255, 255, 255, 0);
  4837. border:none;
  4838. border-radius:0px;
  4839. -moz-box-shadow:none;
  4840. -webkit-box-shadow:none;
  4841. box-shadow:none;
  4842. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4843. font-weight:400;
  4844. font-style:normal;
  4845. font-size:16px;
  4846. color:#FFFFFF;
  4847. }
  4848. #u66631 {
  4849. border-width:0px;
  4850. position:absolute;
  4851. left:1683px;
  4852. top:357px;
  4853. width:33px;
  4854. height:22px;
  4855. display:flex;
  4856. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4857. font-weight:400;
  4858. font-style:normal;
  4859. font-size:16px;
  4860. color:#FFFFFF;
  4861. }
  4862. #u66631 .text {
  4863. position:absolute;
  4864. align-self:flex-start;
  4865. padding:0px 0px 0px 0px;
  4866. box-sizing:border-box;
  4867. width:100%;
  4868. }
  4869. #u66631_text {
  4870. border-width:0px;
  4871. white-space:nowrap;
  4872. text-transform:none;
  4873. }
  4874. #u66632_img {
  4875. border-width:0px;
  4876. position:absolute;
  4877. left:0px;
  4878. top:0px;
  4879. width:14px;
  4880. height:14px;
  4881. }
  4882. #u66632 {
  4883. border-width:0px;
  4884. position:absolute;
  4885. left:1664px;
  4886. top:361px;
  4887. width:14px;
  4888. height:14px;
  4889. display:flex;
  4890. }
  4891. #u66632 .text {
  4892. position:absolute;
  4893. align-self:center;
  4894. padding:2px 2px 2px 2px;
  4895. box-sizing:border-box;
  4896. width:100%;
  4897. }
  4898. #u66632_text {
  4899. border-width:0px;
  4900. word-wrap:break-word;
  4901. text-transform:none;
  4902. visibility:hidden;
  4903. }
  4904. #u66633 {
  4905. border-width:0px;
  4906. position:absolute;
  4907. left:0px;
  4908. top:0px;
  4909. width:0px;
  4910. height:0px;
  4911. }
  4912. #u66634_div {
  4913. border-width:0px;
  4914. position:absolute;
  4915. left:0px;
  4916. top:0px;
  4917. width:33px;
  4918. height:22px;
  4919. background:inherit;
  4920. background-color:rgba(255, 255, 255, 0);
  4921. border:none;
  4922. border-radius:0px;
  4923. -moz-box-shadow:none;
  4924. -webkit-box-shadow:none;
  4925. box-shadow:none;
  4926. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4927. font-weight:400;
  4928. font-style:normal;
  4929. font-size:16px;
  4930. color:#FFFFFF;
  4931. }
  4932. #u66634 {
  4933. border-width:0px;
  4934. position:absolute;
  4935. left:1683px;
  4936. top:483px;
  4937. width:33px;
  4938. height:22px;
  4939. display:flex;
  4940. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4941. font-weight:400;
  4942. font-style:normal;
  4943. font-size:16px;
  4944. color:#FFFFFF;
  4945. }
  4946. #u66634 .text {
  4947. position:absolute;
  4948. align-self:flex-start;
  4949. padding:0px 0px 0px 0px;
  4950. box-sizing:border-box;
  4951. width:100%;
  4952. }
  4953. #u66634_text {
  4954. border-width:0px;
  4955. white-space:nowrap;
  4956. text-transform:none;
  4957. }
  4958. #u66635_img {
  4959. border-width:0px;
  4960. position:absolute;
  4961. left:0px;
  4962. top:0px;
  4963. width:14px;
  4964. height:14px;
  4965. }
  4966. #u66635 {
  4967. border-width:0px;
  4968. position:absolute;
  4969. left:1664px;
  4970. top:487px;
  4971. width:14px;
  4972. height:14px;
  4973. display:flex;
  4974. }
  4975. #u66635 .text {
  4976. position:absolute;
  4977. align-self:center;
  4978. padding:2px 2px 2px 2px;
  4979. box-sizing:border-box;
  4980. width:100%;
  4981. }
  4982. #u66635_text {
  4983. border-width:0px;
  4984. word-wrap:break-word;
  4985. text-transform:none;
  4986. visibility:hidden;
  4987. }
  4988. #u66636_div {
  4989. border-width:0px;
  4990. position:absolute;
  4991. left:0px;
  4992. top:0px;
  4993. width:29px;
  4994. height:20px;
  4995. background:inherit;
  4996. background-color:rgba(255, 255, 255, 0);
  4997. border:none;
  4998. border-radius:25px;
  4999. -moz-box-shadow:none;
  5000. -webkit-box-shadow:none;
  5001. box-shadow:none;
  5002. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5003. font-weight:400;
  5004. font-style:normal;
  5005. color:#FFFFFF;
  5006. }
  5007. #u66636 {
  5008. border-width:0px;
  5009. position:absolute;
  5010. left:1696px;
  5011. top:1145px;
  5012. width:29px;
  5013. height:20px;
  5014. display:flex;
  5015. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5016. font-weight:400;
  5017. font-style:normal;
  5018. color:#FFFFFF;
  5019. }
  5020. #u66636 .text {
  5021. position:absolute;
  5022. align-self:center;
  5023. padding:0px 0px 0px 0px;
  5024. box-sizing:border-box;
  5025. width:100%;
  5026. }
  5027. #u66636_text {
  5028. border-width:0px;
  5029. white-space:nowrap;
  5030. text-transform:none;
  5031. }
  5032. #u66637_img {
  5033. border-width:0px;
  5034. position:absolute;
  5035. left:0px;
  5036. top:0px;
  5037. width:22px;
  5038. height:22px;
  5039. }
  5040. #u66637 {
  5041. border-width:0px;
  5042. position:absolute;
  5043. left:1664px;
  5044. top:1144px;
  5045. width:22px;
  5046. height:22px;
  5047. display:flex;
  5048. }
  5049. #u66637 .text {
  5050. position:absolute;
  5051. align-self:center;
  5052. padding:2px 2px 2px 2px;
  5053. box-sizing:border-box;
  5054. width:100%;
  5055. }
  5056. #u66637_text {
  5057. border-width:0px;
  5058. word-wrap:break-word;
  5059. text-transform:none;
  5060. visibility:hidden;
  5061. }
  5062. #u66638_div {
  5063. border-width:0px;
  5064. position:absolute;
  5065. left:0px;
  5066. top:0px;
  5067. width:29px;
  5068. height:20px;
  5069. background:inherit;
  5070. background-color:rgba(255, 255, 255, 0);
  5071. border:none;
  5072. border-radius:25px;
  5073. -moz-box-shadow:none;
  5074. -webkit-box-shadow:none;
  5075. box-shadow:none;
  5076. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5077. font-weight:400;
  5078. font-style:normal;
  5079. color:#FFFFFF;
  5080. }
  5081. #u66638 {
  5082. border-width:0px;
  5083. position:absolute;
  5084. left:1696px;
  5085. top:1187px;
  5086. width:29px;
  5087. height:20px;
  5088. display:flex;
  5089. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5090. font-weight:400;
  5091. font-style:normal;
  5092. color:#FFFFFF;
  5093. }
  5094. #u66638 .text {
  5095. position:absolute;
  5096. align-self:center;
  5097. padding:0px 0px 0px 0px;
  5098. box-sizing:border-box;
  5099. width:100%;
  5100. }
  5101. #u66638_text {
  5102. border-width:0px;
  5103. white-space:nowrap;
  5104. text-transform:none;
  5105. }
  5106. #u66639_img {
  5107. border-width:0px;
  5108. position:absolute;
  5109. left:0px;
  5110. top:0px;
  5111. width:22px;
  5112. height:22px;
  5113. }
  5114. #u66639 {
  5115. border-width:0px;
  5116. position:absolute;
  5117. left:1664px;
  5118. top:1186px;
  5119. width:22px;
  5120. height:22px;
  5121. display:flex;
  5122. }
  5123. #u66639 .text {
  5124. position:absolute;
  5125. align-self:center;
  5126. padding:2px 2px 2px 2px;
  5127. box-sizing:border-box;
  5128. width:100%;
  5129. }
  5130. #u66639_text {
  5131. border-width:0px;
  5132. word-wrap:break-word;
  5133. text-transform:none;
  5134. visibility:hidden;
  5135. }
  5136. #u66640 {
  5137. border-width:0px;
  5138. position:absolute;
  5139. left:0px;
  5140. top:0px;
  5141. width:0px;
  5142. height:0px;
  5143. }
  5144. #u66641_div {
  5145. border-width:0px;
  5146. position:absolute;
  5147. left:0px;
  5148. top:0px;
  5149. width:33px;
  5150. height:22px;
  5151. background:inherit;
  5152. background-color:rgba(255, 255, 255, 0);
  5153. border:none;
  5154. border-radius:0px;
  5155. -moz-box-shadow:none;
  5156. -webkit-box-shadow:none;
  5157. box-shadow:none;
  5158. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5159. font-weight:400;
  5160. font-style:normal;
  5161. font-size:16px;
  5162. color:#FFFFFF;
  5163. }
  5164. #u66641 {
  5165. border-width:0px;
  5166. position:absolute;
  5167. left:1683px;
  5168. top:231px;
  5169. width:33px;
  5170. height:22px;
  5171. display:flex;
  5172. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5173. font-weight:400;
  5174. font-style:normal;
  5175. font-size:16px;
  5176. color:#FFFFFF;
  5177. }
  5178. #u66641 .text {
  5179. position:absolute;
  5180. align-self:flex-start;
  5181. padding:0px 0px 0px 0px;
  5182. box-sizing:border-box;
  5183. width:100%;
  5184. }
  5185. #u66641_text {
  5186. border-width:0px;
  5187. white-space:nowrap;
  5188. text-transform:none;
  5189. }
  5190. #u66642_img {
  5191. border-width:0px;
  5192. position:absolute;
  5193. left:0px;
  5194. top:0px;
  5195. width:14px;
  5196. height:14px;
  5197. }
  5198. #u66642 {
  5199. border-width:0px;
  5200. position:absolute;
  5201. left:1664px;
  5202. top:235px;
  5203. width:14px;
  5204. height:14px;
  5205. display:flex;
  5206. }
  5207. #u66642 .text {
  5208. position:absolute;
  5209. align-self:center;
  5210. padding:2px 2px 2px 2px;
  5211. box-sizing:border-box;
  5212. width:100%;
  5213. }
  5214. #u66642_text {
  5215. border-width:0px;
  5216. word-wrap:break-word;
  5217. text-transform:none;
  5218. visibility:hidden;
  5219. }
  5220. #u66643 {
  5221. border-width:0px;
  5222. position:absolute;
  5223. left:0px;
  5224. top:0px;
  5225. width:0px;
  5226. height:0px;
  5227. }
  5228. #u66644_div {
  5229. border-width:0px;
  5230. position:absolute;
  5231. left:0px;
  5232. top:0px;
  5233. width:33px;
  5234. height:22px;
  5235. background:inherit;
  5236. background-color:rgba(255, 255, 255, 0);
  5237. border:none;
  5238. border-radius:0px;
  5239. -moz-box-shadow:none;
  5240. -webkit-box-shadow:none;
  5241. box-shadow:none;
  5242. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5243. font-weight:400;
  5244. font-style:normal;
  5245. font-size:16px;
  5246. color:#FFFFFF;
  5247. }
  5248. #u66644 {
  5249. border-width:0px;
  5250. position:absolute;
  5251. left:1683px;
  5252. top:273px;
  5253. width:33px;
  5254. height:22px;
  5255. display:flex;
  5256. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5257. font-weight:400;
  5258. font-style:normal;
  5259. font-size:16px;
  5260. color:#FFFFFF;
  5261. }
  5262. #u66644 .text {
  5263. position:absolute;
  5264. align-self:flex-start;
  5265. padding:0px 0px 0px 0px;
  5266. box-sizing:border-box;
  5267. width:100%;
  5268. }
  5269. #u66644_text {
  5270. border-width:0px;
  5271. white-space:nowrap;
  5272. text-transform:none;
  5273. }
  5274. #u66645_img {
  5275. border-width:0px;
  5276. position:absolute;
  5277. left:0px;
  5278. top:0px;
  5279. width:14px;
  5280. height:14px;
  5281. }
  5282. #u66645 {
  5283. border-width:0px;
  5284. position:absolute;
  5285. left:1664px;
  5286. top:277px;
  5287. width:14px;
  5288. height:14px;
  5289. display:flex;
  5290. }
  5291. #u66645 .text {
  5292. position:absolute;
  5293. align-self:center;
  5294. padding:2px 2px 2px 2px;
  5295. box-sizing:border-box;
  5296. width:100%;
  5297. }
  5298. #u66645_text {
  5299. border-width:0px;
  5300. word-wrap:break-word;
  5301. text-transform:none;
  5302. visibility:hidden;
  5303. }
  5304. #u66646 {
  5305. border-width:0px;
  5306. position:absolute;
  5307. left:0px;
  5308. top:0px;
  5309. width:0px;
  5310. height:0px;
  5311. }
  5312. #u66647_input {
  5313. position:absolute;
  5314. left:0px;
  5315. top:0px;
  5316. width:214px;
  5317. height:27px;
  5318. padding:2px 2px 2px 2px;
  5319. font-family:'ArialMT', 'Arial', sans-serif;
  5320. font-weight:400;
  5321. font-style:normal;
  5322. font-size:14px;
  5323. letter-spacing:normal;
  5324. color:#FFFFFF;
  5325. vertical-align:none;
  5326. text-align:left;
  5327. text-transform:none;
  5328. background-color:transparent;
  5329. border-color:transparent;
  5330. }
  5331. #u66647_input.disabled {
  5332. position:absolute;
  5333. left:0px;
  5334. top:0px;
  5335. width:214px;
  5336. height:27px;
  5337. padding:2px 2px 2px 2px;
  5338. font-family:'ArialMT', 'Arial', sans-serif;
  5339. font-weight:400;
  5340. font-style:normal;
  5341. font-size:14px;
  5342. letter-spacing:normal;
  5343. color:#FFFFFF;
  5344. vertical-align:none;
  5345. text-align:left;
  5346. text-transform:none;
  5347. background-color:transparent;
  5348. border-color:transparent;
  5349. }
  5350. #u66647_div {
  5351. border-width:0px;
  5352. position:absolute;
  5353. left:0px;
  5354. top:0px;
  5355. width:214px;
  5356. height:27px;
  5357. background:inherit;
  5358. background-color:rgba(255, 255, 255, 0);
  5359. border:none;
  5360. border-radius:0px;
  5361. -moz-box-shadow:none;
  5362. -webkit-box-shadow:none;
  5363. box-shadow:none;
  5364. font-size:14px;
  5365. color:#FFFFFF;
  5366. }
  5367. #u66647 {
  5368. border-width:0px;
  5369. position:absolute;
  5370. left:2865px;
  5371. top:11px;
  5372. width:214px;
  5373. height:27px;
  5374. display:flex;
  5375. font-size:14px;
  5376. color:#FFFFFF;
  5377. }
  5378. #u66647 .text {
  5379. position:absolute;
  5380. align-self:flex-start;
  5381. padding:2px 2px 2px 2px;
  5382. box-sizing:border-box;
  5383. width:100%;
  5384. }
  5385. #u66647_div.disabled {
  5386. border-width:0px;
  5387. position:absolute;
  5388. left:0px;
  5389. top:0px;
  5390. width:214px;
  5391. height:27px;
  5392. background:inherit;
  5393. background-color:rgba(240, 240, 240, 1);
  5394. border:none;
  5395. border-radius:0px;
  5396. -moz-box-shadow:none;
  5397. -webkit-box-shadow:none;
  5398. box-shadow:none;
  5399. font-size:14px;
  5400. color:#FFFFFF;
  5401. }
  5402. #u66647.disabled {
  5403. }
  5404. .u66647_input_option {
  5405. font-size:14px;
  5406. }
  5407. #u66648_img {
  5408. border-width:0px;
  5409. position:absolute;
  5410. left:0px;
  5411. top:0px;
  5412. width:22px;
  5413. height:22px;
  5414. }
  5415. #u66648 {
  5416. border-width:0px;
  5417. position:absolute;
  5418. left:2838px;
  5419. top:14px;
  5420. width:22px;
  5421. height:22px;
  5422. display:flex;
  5423. }
  5424. #u66648 .text {
  5425. position:absolute;
  5426. align-self:center;
  5427. padding:2px 2px 2px 2px;
  5428. box-sizing:border-box;
  5429. width:100%;
  5430. }
  5431. #u66648_text {
  5432. border-width:0px;
  5433. word-wrap:break-word;
  5434. text-transform:none;
  5435. visibility:hidden;
  5436. }
  5437. #u66649_div {
  5438. border-width:0px;
  5439. position:absolute;
  5440. left:0px;
  5441. top:0px;
  5442. width:100px;
  5443. height:24px;
  5444. background:inherit;
  5445. background-color:rgba(242, 242, 242, 0.2);
  5446. border:none;
  5447. border-radius:25px;
  5448. -moz-box-shadow:none;
  5449. -webkit-box-shadow:none;
  5450. box-shadow:none;
  5451. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5452. font-weight:400;
  5453. font-style:normal;
  5454. color:#FFFFFF;
  5455. text-align:center;
  5456. }
  5457. #u66649 {
  5458. border-width:0px;
  5459. position:absolute;
  5460. left:3124px;
  5461. top:13px;
  5462. width:100px;
  5463. height:24px;
  5464. display:flex;
  5465. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5466. font-weight:400;
  5467. font-style:normal;
  5468. color:#FFFFFF;
  5469. text-align:center;
  5470. }
  5471. #u66649 .text {
  5472. position:absolute;
  5473. align-self:center;
  5474. padding:0px 0px 0px 0px;
  5475. box-sizing:border-box;
  5476. width:100%;
  5477. }
  5478. #u66649_text {
  5479. border-width:0px;
  5480. word-wrap:break-word;
  5481. text-transform:none;
  5482. }
  5483. #u66650_img {
  5484. border-width:0px;
  5485. position:absolute;
  5486. left:0px;
  5487. top:0px;
  5488. width:2px;
  5489. height:12px;
  5490. }
  5491. #u66650 {
  5492. border-width:0px;
  5493. position:absolute;
  5494. left:3096px;
  5495. top:19px;
  5496. width:1px;
  5497. height:11px;
  5498. display:flex;
  5499. }
  5500. #u66650 .text {
  5501. position:absolute;
  5502. align-self:center;
  5503. padding:2px 2px 2px 2px;
  5504. box-sizing:border-box;
  5505. width:100%;
  5506. }
  5507. #u66650_text {
  5508. border-width:0px;
  5509. word-wrap:break-word;
  5510. text-transform:none;
  5511. visibility:hidden;
  5512. }
  5513. #u66651_div {
  5514. border-width:0px;
  5515. position:absolute;
  5516. left:0px;
  5517. top:0px;
  5518. width:1257px;
  5519. height:1180px;
  5520. background:inherit;
  5521. background-color:rgba(255, 255, 255, 1);
  5522. box-sizing:border-box;
  5523. border-width:1px;
  5524. border-style:solid;
  5525. border-color:rgba(242, 242, 242, 1);
  5526. border-radius:0px;
  5527. -moz-box-shadow:none;
  5528. -webkit-box-shadow:none;
  5529. box-shadow:none;
  5530. }
  5531. #u66651 {
  5532. border-width:0px;
  5533. position:absolute;
  5534. left:1976px;
  5535. top:50px;
  5536. width:1257px;
  5537. height:1180px;
  5538. display:flex;
  5539. }
  5540. #u66651 .text {
  5541. position:absolute;
  5542. align-self:center;
  5543. padding:2px 2px 2px 2px;
  5544. box-sizing:border-box;
  5545. width:100%;
  5546. }
  5547. #u66651_text {
  5548. border-width:0px;
  5549. word-wrap:break-word;
  5550. text-transform:none;
  5551. visibility:hidden;
  5552. }
  5553. #u66652_div {
  5554. border-width:0px;
  5555. position:absolute;
  5556. left:0px;
  5557. top:0px;
  5558. width:1179px;
  5559. height:220px;
  5560. background:inherit;
  5561. background-color:rgba(255, 255, 255, 1);
  5562. box-sizing:border-box;
  5563. border-width:1px;
  5564. border-style:solid;
  5565. border-color:rgba(215, 215, 215, 1);
  5566. border-left:0px;
  5567. border-top:0px;
  5568. border-right:0px;
  5569. border-radius:4px;
  5570. border-bottom-right-radius:0px;
  5571. border-bottom-left-radius:0px;
  5572. -moz-box-shadow:none;
  5573. -webkit-box-shadow:none;
  5574. box-shadow:none;
  5575. font-size:14px;
  5576. }
  5577. #u66652 {
  5578. border-width:0px;
  5579. position:absolute;
  5580. left:2015px;
  5581. top:417px;
  5582. width:1179px;
  5583. height:220px;
  5584. display:flex;
  5585. font-size:14px;
  5586. }
  5587. #u66652 .text {
  5588. position:absolute;
  5589. align-self:center;
  5590. padding:2px 2px 2px 2px;
  5591. box-sizing:border-box;
  5592. width:100%;
  5593. }
  5594. #u66652_text {
  5595. border-width:0px;
  5596. word-wrap:break-word;
  5597. text-transform:none;
  5598. visibility:hidden;
  5599. }
  5600. #u66653_img {
  5601. border-width:0px;
  5602. position:absolute;
  5603. left:0px;
  5604. top:0px;
  5605. width:1258px;
  5606. height:2px;
  5607. }
  5608. #u66653 {
  5609. border-width:0px;
  5610. position:absolute;
  5611. left:1976px;
  5612. top:103px;
  5613. width:1257px;
  5614. height:1px;
  5615. display:flex;
  5616. }
  5617. #u66653 .text {
  5618. position:absolute;
  5619. align-self:center;
  5620. padding:2px 2px 2px 2px;
  5621. box-sizing:border-box;
  5622. width:100%;
  5623. }
  5624. #u66653_text {
  5625. border-width:0px;
  5626. word-wrap:break-word;
  5627. text-transform:none;
  5628. visibility:hidden;
  5629. }
  5630. #u66654_div {
  5631. border-width:0px;
  5632. position:absolute;
  5633. left:0px;
  5634. top:0px;
  5635. width:85px;
  5636. height:50px;
  5637. background:inherit;
  5638. background-color:rgba(255, 255, 255, 0);
  5639. border:none;
  5640. border-left:0px;
  5641. border-top:0px;
  5642. border-right:0px;
  5643. border-radius:0px;
  5644. border-bottom-right-radius:0px;
  5645. border-bottom-left-radius:0px;
  5646. -moz-box-shadow:none;
  5647. -webkit-box-shadow:none;
  5648. box-shadow:none;
  5649. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5650. font-weight:400;
  5651. font-style:normal;
  5652. font-size:14px;
  5653. line-height:40px;
  5654. }
  5655. #u66654 {
  5656. border-width:0px;
  5657. position:absolute;
  5658. left:2004px;
  5659. top:54px;
  5660. width:85px;
  5661. height:50px;
  5662. display:flex;
  5663. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5664. font-weight:400;
  5665. font-style:normal;
  5666. font-size:14px;
  5667. line-height:40px;
  5668. }
  5669. #u66654 .text {
  5670. position:absolute;
  5671. align-self:center;
  5672. padding:0px 0px 0px 0px;
  5673. box-sizing:border-box;
  5674. width:100%;
  5675. }
  5676. #u66654_text {
  5677. border-width:0px;
  5678. white-space:nowrap;
  5679. text-transform:none;
  5680. }
  5681. #u66655_div {
  5682. border-width:0px;
  5683. position:absolute;
  5684. left:0px;
  5685. top:0px;
  5686. width:85px;
  5687. height:50px;
  5688. background:inherit;
  5689. background-color:rgba(255, 255, 255, 0);
  5690. border:none;
  5691. border-left:0px;
  5692. border-top:0px;
  5693. border-right:0px;
  5694. border-radius:0px;
  5695. border-bottom-right-radius:0px;
  5696. border-bottom-left-radius:0px;
  5697. -moz-box-shadow:none;
  5698. -webkit-box-shadow:none;
  5699. box-shadow:none;
  5700. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5701. font-weight:400;
  5702. font-style:normal;
  5703. font-size:14px;
  5704. line-height:40px;
  5705. }
  5706. #u66655 {
  5707. border-width:0px;
  5708. position:absolute;
  5709. left:2129px;
  5710. top:54px;
  5711. width:85px;
  5712. height:50px;
  5713. display:flex;
  5714. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5715. font-weight:400;
  5716. font-style:normal;
  5717. font-size:14px;
  5718. line-height:40px;
  5719. }
  5720. #u66655 .text {
  5721. position:absolute;
  5722. align-self:center;
  5723. padding:0px 0px 0px 0px;
  5724. box-sizing:border-box;
  5725. width:100%;
  5726. }
  5727. #u66655_text {
  5728. border-width:0px;
  5729. white-space:nowrap;
  5730. text-transform:none;
  5731. }
  5732. #u66656_div {
  5733. border-width:0px;
  5734. position:absolute;
  5735. left:0px;
  5736. top:0px;
  5737. width:113px;
  5738. height:50px;
  5739. background:inherit;
  5740. background-color:rgba(255, 255, 255, 0);
  5741. border:none;
  5742. border-left:0px;
  5743. border-top:0px;
  5744. border-right:0px;
  5745. border-radius:0px;
  5746. border-bottom-right-radius:0px;
  5747. border-bottom-left-radius:0px;
  5748. -moz-box-shadow:none;
  5749. -webkit-box-shadow:none;
  5750. box-shadow:none;
  5751. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5752. font-weight:400;
  5753. font-style:normal;
  5754. font-size:14px;
  5755. line-height:40px;
  5756. }
  5757. #u66656 {
  5758. border-width:0px;
  5759. position:absolute;
  5760. left:2254px;
  5761. top:54px;
  5762. width:113px;
  5763. height:50px;
  5764. display:flex;
  5765. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5766. font-weight:400;
  5767. font-style:normal;
  5768. font-size:14px;
  5769. line-height:40px;
  5770. }
  5771. #u66656 .text {
  5772. position:absolute;
  5773. align-self:center;
  5774. padding:0px 0px 0px 0px;
  5775. box-sizing:border-box;
  5776. width:100%;
  5777. }
  5778. #u66656_text {
  5779. border-width:0px;
  5780. white-space:nowrap;
  5781. text-transform:none;
  5782. }
  5783. #u66657_div {
  5784. border-width:0px;
  5785. position:absolute;
  5786. left:0px;
  5787. top:0px;
  5788. width:119px;
  5789. height:35px;
  5790. background:inherit;
  5791. background-color:rgba(255, 255, 255, 0);
  5792. border:none;
  5793. border-top:0px;
  5794. border-right:0px;
  5795. border-bottom:0px;
  5796. border-radius:0px;
  5797. border-top-left-radius:0px;
  5798. border-bottom-left-radius:0px;
  5799. -moz-box-shadow:none;
  5800. -webkit-box-shadow:none;
  5801. box-shadow:none;
  5802. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  5803. font-weight:500;
  5804. font-style:normal;
  5805. font-size:18px;
  5806. }
  5807. #u66657 {
  5808. border-width:0px;
  5809. position:absolute;
  5810. left:2015px;
  5811. top:355px;
  5812. width:119px;
  5813. height:35px;
  5814. display:flex;
  5815. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  5816. font-weight:500;
  5817. font-style:normal;
  5818. font-size:18px;
  5819. }
  5820. #u66657 .text {
  5821. position:absolute;
  5822. align-self:center;
  5823. padding:5px 10px 5px 0px;
  5824. box-sizing:border-box;
  5825. width:100%;
  5826. }
  5827. #u66657_text {
  5828. border-width:0px;
  5829. white-space:nowrap;
  5830. text-transform:none;
  5831. }
  5832. #u66658_div {
  5833. border-width:0px;
  5834. position:absolute;
  5835. left:0px;
  5836. top:0px;
  5837. width:119px;
  5838. height:40px;
  5839. background:inherit;
  5840. background-color:rgba(255, 255, 255, 0);
  5841. border:none;
  5842. border-top:0px;
  5843. border-right:0px;
  5844. border-bottom:0px;
  5845. border-radius:0px;
  5846. border-top-left-radius:0px;
  5847. border-bottom-left-radius:0px;
  5848. -moz-box-shadow:none;
  5849. -webkit-box-shadow:none;
  5850. box-shadow:none;
  5851. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5852. font-weight:400;
  5853. font-style:normal;
  5854. font-size:18px;
  5855. }
  5856. #u66658 {
  5857. border-width:0px;
  5858. position:absolute;
  5859. left:2015px;
  5860. top:427px;
  5861. width:119px;
  5862. height:40px;
  5863. display:flex;
  5864. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5865. font-weight:400;
  5866. font-style:normal;
  5867. font-size:18px;
  5868. }
  5869. #u66658 .text {
  5870. position:absolute;
  5871. align-self:center;
  5872. padding:5px 10px 5px 0px;
  5873. box-sizing:border-box;
  5874. width:100%;
  5875. }
  5876. #u66658_text {
  5877. border-width:0px;
  5878. white-space:nowrap;
  5879. text-transform:none;
  5880. }
  5881. #u66659 {
  5882. border-width:0px;
  5883. position:absolute;
  5884. left:0px;
  5885. top:0px;
  5886. width:0px;
  5887. height:0px;
  5888. }
  5889. #u66660_div {
  5890. border-width:0px;
  5891. position:absolute;
  5892. left:0px;
  5893. top:0px;
  5894. width:200px;
  5895. height:1180px;
  5896. background:inherit;
  5897. background-color:rgba(255, 255, 255, 1);
  5898. border:none;
  5899. border-radius:0px;
  5900. -moz-box-shadow:none;
  5901. -webkit-box-shadow:none;
  5902. box-shadow:none;
  5903. }
  5904. #u66660 {
  5905. border-width:0px;
  5906. position:absolute;
  5907. left:1766px;
  5908. top:50px;
  5909. width:200px;
  5910. height:1180px;
  5911. display:flex;
  5912. }
  5913. #u66660 .text {
  5914. position:absolute;
  5915. align-self:center;
  5916. padding:2px 2px 2px 2px;
  5917. box-sizing:border-box;
  5918. width:100%;
  5919. }
  5920. #u66660_text {
  5921. border-width:0px;
  5922. word-wrap:break-word;
  5923. text-transform:none;
  5924. visibility:hidden;
  5925. }
  5926. #u66661_div {
  5927. border-width:0px;
  5928. position:absolute;
  5929. left:0px;
  5930. top:0px;
  5931. width:200px;
  5932. height:60px;
  5933. background:inherit;
  5934. background-color:rgba(224, 231, 247, 1);
  5935. border:none;
  5936. border-radius:0px;
  5937. -moz-box-shadow:none;
  5938. -webkit-box-shadow:none;
  5939. box-shadow:none;
  5940. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  5941. font-weight:500;
  5942. font-style:normal;
  5943. font-size:18px;
  5944. }
  5945. #u66661 {
  5946. border-width:0px;
  5947. position:absolute;
  5948. left:1766px;
  5949. top:50px;
  5950. width:200px;
  5951. height:60px;
  5952. display:flex;
  5953. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  5954. font-weight:500;
  5955. font-style:normal;
  5956. font-size:18px;
  5957. }
  5958. #u66661 .text {
  5959. position:absolute;
  5960. align-self:center;
  5961. padding:0px 0px 0px 20px;
  5962. box-sizing:border-box;
  5963. width:100%;
  5964. }
  5965. #u66661_text {
  5966. border-width:0px;
  5967. word-wrap:break-word;
  5968. text-transform:none;
  5969. }
  5970. #u66662_div {
  5971. border-width:0px;
  5972. position:absolute;
  5973. left:0px;
  5974. top:0px;
  5975. width:65px;
  5976. height:22px;
  5977. background:inherit;
  5978. background-color:rgba(255, 255, 255, 0);
  5979. border:none;
  5980. border-radius:0px;
  5981. -moz-box-shadow:none;
  5982. -webkit-box-shadow:none;
  5983. box-shadow:none;
  5984. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5985. font-weight:400;
  5986. font-style:normal;
  5987. font-size:16px;
  5988. }
  5989. #u66662 {
  5990. border-width:0px;
  5991. position:absolute;
  5992. left:1793px;
  5993. top:161px;
  5994. width:65px;
  5995. height:22px;
  5996. display:flex;
  5997. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5998. font-weight:400;
  5999. font-style:normal;
  6000. font-size:16px;
  6001. }
  6002. #u66662 .text {
  6003. position:absolute;
  6004. align-self:flex-start;
  6005. padding:0px 0px 0px 0px;
  6006. box-sizing:border-box;
  6007. width:100%;
  6008. }
  6009. #u66662_text {
  6010. border-width:0px;
  6011. white-space:nowrap;
  6012. text-transform:none;
  6013. }
  6014. #u66663_div {
  6015. border-width:0px;
  6016. position:absolute;
  6017. left:0px;
  6018. top:0px;
  6019. width:65px;
  6020. height:22px;
  6021. background:inherit;
  6022. background-color:rgba(255, 255, 255, 0);
  6023. border:none;
  6024. border-radius:0px;
  6025. -moz-box-shadow:none;
  6026. -webkit-box-shadow:none;
  6027. box-shadow:none;
  6028. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6029. font-weight:400;
  6030. font-style:normal;
  6031. font-size:16px;
  6032. }
  6033. #u66663 {
  6034. border-width:0px;
  6035. position:absolute;
  6036. left:1793px;
  6037. top:203px;
  6038. width:65px;
  6039. height:22px;
  6040. display:flex;
  6041. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6042. font-weight:400;
  6043. font-style:normal;
  6044. font-size:16px;
  6045. }
  6046. #u66663 .text {
  6047. position:absolute;
  6048. align-self:flex-start;
  6049. padding:0px 0px 0px 0px;
  6050. box-sizing:border-box;
  6051. width:100%;
  6052. }
  6053. #u66663_text {
  6054. border-width:0px;
  6055. white-space:nowrap;
  6056. text-transform:none;
  6057. }
  6058. #u66664_div {
  6059. border-width:0px;
  6060. position:absolute;
  6061. left:0px;
  6062. top:0px;
  6063. width:65px;
  6064. height:22px;
  6065. background:inherit;
  6066. background-color:rgba(255, 255, 255, 0);
  6067. border:none;
  6068. border-radius:0px;
  6069. -moz-box-shadow:none;
  6070. -webkit-box-shadow:none;
  6071. box-shadow:none;
  6072. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6073. font-weight:400;
  6074. font-style:normal;
  6075. font-size:16px;
  6076. }
  6077. #u66664 {
  6078. border-width:0px;
  6079. position:absolute;
  6080. left:1793px;
  6081. top:245px;
  6082. width:65px;
  6083. height:22px;
  6084. display:flex;
  6085. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6086. font-weight:400;
  6087. font-style:normal;
  6088. font-size:16px;
  6089. }
  6090. #u66664 .text {
  6091. position:absolute;
  6092. align-self:flex-start;
  6093. padding:0px 0px 0px 0px;
  6094. box-sizing:border-box;
  6095. width:100%;
  6096. }
  6097. #u66664_text {
  6098. border-width:0px;
  6099. white-space:nowrap;
  6100. text-transform:none;
  6101. }
  6102. #u66665_div {
  6103. border-width:0px;
  6104. position:absolute;
  6105. left:0px;
  6106. top:0px;
  6107. width:65px;
  6108. height:22px;
  6109. background:inherit;
  6110. background-color:rgba(255, 255, 255, 0);
  6111. border:none;
  6112. border-radius:0px;
  6113. -moz-box-shadow:none;
  6114. -webkit-box-shadow:none;
  6115. box-shadow:none;
  6116. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6117. font-weight:400;
  6118. font-style:normal;
  6119. font-size:16px;
  6120. }
  6121. #u66665 {
  6122. border-width:0px;
  6123. position:absolute;
  6124. left:1793px;
  6125. top:287px;
  6126. width:65px;
  6127. height:22px;
  6128. display:flex;
  6129. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6130. font-weight:400;
  6131. font-style:normal;
  6132. font-size:16px;
  6133. }
  6134. #u66665 .text {
  6135. position:absolute;
  6136. align-self:flex-start;
  6137. padding:0px 0px 0px 0px;
  6138. box-sizing:border-box;
  6139. width:100%;
  6140. }
  6141. #u66665_text {
  6142. border-width:0px;
  6143. white-space:nowrap;
  6144. text-transform:none;
  6145. }
  6146. #u66666_div {
  6147. border-width:0px;
  6148. position:absolute;
  6149. left:0px;
  6150. top:0px;
  6151. width:49px;
  6152. height:17px;
  6153. background:inherit;
  6154. background-color:rgba(255, 255, 255, 0);
  6155. border:none;
  6156. border-radius:0px;
  6157. -moz-box-shadow:none;
  6158. -webkit-box-shadow:none;
  6159. box-shadow:none;
  6160. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6161. font-weight:400;
  6162. font-style:normal;
  6163. font-size:12px;
  6164. color:#AAAAAA;
  6165. }
  6166. #u66666 {
  6167. border-width:0px;
  6168. position:absolute;
  6169. left:1793px;
  6170. top:125px;
  6171. width:49px;
  6172. height:17px;
  6173. display:flex;
  6174. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6175. font-weight:400;
  6176. font-style:normal;
  6177. font-size:12px;
  6178. color:#AAAAAA;
  6179. }
  6180. #u66666 .text {
  6181. position:absolute;
  6182. align-self:flex-start;
  6183. padding:0px 0px 0px 0px;
  6184. box-sizing:border-box;
  6185. width:100%;
  6186. }
  6187. #u66666_text {
  6188. border-width:0px;
  6189. white-space:nowrap;
  6190. text-transform:none;
  6191. }
  6192. #u66667_div {
  6193. border-width:0px;
  6194. position:absolute;
  6195. left:0px;
  6196. top:0px;
  6197. width:65px;
  6198. height:22px;
  6199. background:inherit;
  6200. background-color:rgba(255, 255, 255, 0);
  6201. border:none;
  6202. border-radius:0px;
  6203. -moz-box-shadow:none;
  6204. -webkit-box-shadow:none;
  6205. box-shadow:none;
  6206. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6207. font-weight:400;
  6208. font-style:normal;
  6209. font-size:16px;
  6210. color:#3399FF;
  6211. }
  6212. #u66667 {
  6213. border-width:0px;
  6214. position:absolute;
  6215. left:1793px;
  6216. top:387px;
  6217. width:65px;
  6218. height:22px;
  6219. display:flex;
  6220. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6221. font-weight:400;
  6222. font-style:normal;
  6223. font-size:16px;
  6224. color:#3399FF;
  6225. }
  6226. #u66667 .text {
  6227. position:absolute;
  6228. align-self:flex-start;
  6229. padding:0px 0px 0px 0px;
  6230. box-sizing:border-box;
  6231. width:100%;
  6232. }
  6233. #u66667_text {
  6234. border-width:0px;
  6235. white-space:nowrap;
  6236. text-transform:none;
  6237. }
  6238. #u66668_div {
  6239. border-width:0px;
  6240. position:absolute;
  6241. left:0px;
  6242. top:0px;
  6243. width:49px;
  6244. height:17px;
  6245. background:inherit;
  6246. background-color:rgba(255, 255, 255, 0);
  6247. border:none;
  6248. border-radius:0px;
  6249. -moz-box-shadow:none;
  6250. -webkit-box-shadow:none;
  6251. box-shadow:none;
  6252. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6253. font-weight:400;
  6254. font-style:normal;
  6255. font-size:12px;
  6256. color:#AAAAAA;
  6257. }
  6258. #u66668 {
  6259. border-width:0px;
  6260. position:absolute;
  6261. left:1793px;
  6262. top:351px;
  6263. width:49px;
  6264. height:17px;
  6265. display:flex;
  6266. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6267. font-weight:400;
  6268. font-style:normal;
  6269. font-size:12px;
  6270. color:#AAAAAA;
  6271. }
  6272. #u66668 .text {
  6273. position:absolute;
  6274. align-self:flex-start;
  6275. padding:0px 0px 0px 0px;
  6276. box-sizing:border-box;
  6277. width:100%;
  6278. }
  6279. #u66668_text {
  6280. border-width:0px;
  6281. white-space:nowrap;
  6282. text-transform:none;
  6283. }
  6284. #u66669_img {
  6285. border-width:0px;
  6286. position:absolute;
  6287. left:0px;
  6288. top:0px;
  6289. width:201px;
  6290. height:2px;
  6291. }
  6292. #u66669 {
  6293. border-width:0px;
  6294. position:absolute;
  6295. left:1766px;
  6296. top:329px;
  6297. width:200px;
  6298. height:1px;
  6299. display:flex;
  6300. }
  6301. #u66669 .text {
  6302. position:absolute;
  6303. align-self:center;
  6304. padding:2px 2px 2px 2px;
  6305. box-sizing:border-box;
  6306. width:100%;
  6307. }
  6308. #u66669_text {
  6309. border-width:0px;
  6310. word-wrap:break-word;
  6311. text-transform:none;
  6312. visibility:hidden;
  6313. }
  6314. #u66670_div {
  6315. border-width:0px;
  6316. position:absolute;
  6317. left:0px;
  6318. top:0px;
  6319. width:65px;
  6320. height:22px;
  6321. background:inherit;
  6322. background-color:rgba(255, 255, 255, 0);
  6323. border:none;
  6324. border-radius:0px;
  6325. -moz-box-shadow:none;
  6326. -webkit-box-shadow:none;
  6327. box-shadow:none;
  6328. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6329. font-weight:400;
  6330. font-style:normal;
  6331. font-size:16px;
  6332. }
  6333. #u66670 {
  6334. border-width:0px;
  6335. position:absolute;
  6336. left:1793px;
  6337. top:484px;
  6338. width:65px;
  6339. height:22px;
  6340. display:flex;
  6341. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6342. font-weight:400;
  6343. font-style:normal;
  6344. font-size:16px;
  6345. }
  6346. #u66670 .text {
  6347. position:absolute;
  6348. align-self:flex-start;
  6349. padding:0px 0px 0px 0px;
  6350. box-sizing:border-box;
  6351. width:100%;
  6352. }
  6353. #u66670_text {
  6354. border-width:0px;
  6355. white-space:nowrap;
  6356. text-transform:none;
  6357. }
  6358. #u66671_div {
  6359. border-width:0px;
  6360. position:absolute;
  6361. left:0px;
  6362. top:0px;
  6363. width:49px;
  6364. height:17px;
  6365. background:inherit;
  6366. background-color:rgba(255, 255, 255, 0);
  6367. border:none;
  6368. border-radius:0px;
  6369. -moz-box-shadow:none;
  6370. -webkit-box-shadow:none;
  6371. box-shadow:none;
  6372. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6373. font-weight:400;
  6374. font-style:normal;
  6375. font-size:12px;
  6376. color:#AAAAAA;
  6377. }
  6378. #u66671 {
  6379. border-width:0px;
  6380. position:absolute;
  6381. left:1793px;
  6382. top:448px;
  6383. width:49px;
  6384. height:17px;
  6385. display:flex;
  6386. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6387. font-weight:400;
  6388. font-style:normal;
  6389. font-size:12px;
  6390. color:#AAAAAA;
  6391. }
  6392. #u66671 .text {
  6393. position:absolute;
  6394. align-self:flex-start;
  6395. padding:0px 0px 0px 0px;
  6396. box-sizing:border-box;
  6397. width:100%;
  6398. }
  6399. #u66671_text {
  6400. border-width:0px;
  6401. white-space:nowrap;
  6402. text-transform:none;
  6403. }
  6404. #u66672_img {
  6405. border-width:0px;
  6406. position:absolute;
  6407. left:0px;
  6408. top:0px;
  6409. width:201px;
  6410. height:2px;
  6411. }
  6412. #u66672 {
  6413. border-width:0px;
  6414. position:absolute;
  6415. left:1766px;
  6416. top:426px;
  6417. width:200px;
  6418. height:1px;
  6419. display:flex;
  6420. }
  6421. #u66672 .text {
  6422. position:absolute;
  6423. align-self:center;
  6424. padding:2px 2px 2px 2px;
  6425. box-sizing:border-box;
  6426. width:100%;
  6427. }
  6428. #u66672_text {
  6429. border-width:0px;
  6430. word-wrap:break-word;
  6431. text-transform:none;
  6432. visibility:hidden;
  6433. }
  6434. #u66673_div {
  6435. border-width:0px;
  6436. position:absolute;
  6437. left:0px;
  6438. top:0px;
  6439. width:65px;
  6440. height:22px;
  6441. background:inherit;
  6442. background-color:rgba(255, 255, 255, 0);
  6443. border:none;
  6444. border-radius:0px;
  6445. -moz-box-shadow:none;
  6446. -webkit-box-shadow:none;
  6447. box-shadow:none;
  6448. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6449. font-weight:400;
  6450. font-style:normal;
  6451. font-size:16px;
  6452. }
  6453. #u66673 {
  6454. border-width:0px;
  6455. position:absolute;
  6456. left:1793px;
  6457. top:526px;
  6458. width:65px;
  6459. height:22px;
  6460. display:flex;
  6461. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6462. font-weight:400;
  6463. font-style:normal;
  6464. font-size:16px;
  6465. }
  6466. #u66673 .text {
  6467. position:absolute;
  6468. align-self:flex-start;
  6469. padding:0px 0px 0px 0px;
  6470. box-sizing:border-box;
  6471. width:100%;
  6472. }
  6473. #u66673_text {
  6474. border-width:0px;
  6475. white-space:nowrap;
  6476. text-transform:none;
  6477. }
  6478. #u66674_div {
  6479. border-width:0px;
  6480. position:absolute;
  6481. left:0px;
  6482. top:0px;
  6483. width:57px;
  6484. height:50px;
  6485. background:inherit;
  6486. background-color:rgba(255, 255, 255, 0);
  6487. box-sizing:border-box;
  6488. border-width:2px;
  6489. border-style:solid;
  6490. border-color:rgba(41, 143, 255, 1);
  6491. border-left:0px;
  6492. border-top:0px;
  6493. border-right:0px;
  6494. border-radius:0px;
  6495. border-bottom-right-radius:0px;
  6496. border-bottom-left-radius:0px;
  6497. -moz-box-shadow:none;
  6498. -webkit-box-shadow:none;
  6499. box-shadow:none;
  6500. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6501. font-weight:400;
  6502. font-style:normal;
  6503. font-size:14px;
  6504. color:#298FFF;
  6505. line-height:40px;
  6506. }
  6507. #u66674 {
  6508. border-width:0px;
  6509. position:absolute;
  6510. left:2407px;
  6511. top:54px;
  6512. width:57px;
  6513. height:50px;
  6514. display:flex;
  6515. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6516. font-weight:400;
  6517. font-style:normal;
  6518. font-size:14px;
  6519. color:#298FFF;
  6520. line-height:40px;
  6521. }
  6522. #u66674 .text {
  6523. position:absolute;
  6524. align-self:center;
  6525. padding:0px 0px 0px 0px;
  6526. box-sizing:border-box;
  6527. width:100%;
  6528. }
  6529. #u66674_text {
  6530. border-width:0px;
  6531. white-space:nowrap;
  6532. text-transform:none;
  6533. }
  6534. #u66675_img {
  6535. border-width:0px;
  6536. position:absolute;
  6537. left:0px;
  6538. top:0px;
  6539. width:50px;
  6540. height:31px;
  6541. }
  6542. #u66675 {
  6543. border-width:0px;
  6544. position:absolute;
  6545. left:2147px;
  6546. top:432px;
  6547. width:50px;
  6548. height:31px;
  6549. display:flex;
  6550. }
  6551. #u66675 .text {
  6552. position:absolute;
  6553. align-self:center;
  6554. padding:2px 2px 2px 2px;
  6555. box-sizing:border-box;
  6556. width:100%;
  6557. }
  6558. #u66675_text {
  6559. border-width:0px;
  6560. word-wrap:break-word;
  6561. text-transform:none;
  6562. visibility:hidden;
  6563. }
  6564. #u66676_div {
  6565. border-width:0px;
  6566. position:absolute;
  6567. left:0px;
  6568. top:0px;
  6569. width:421px;
  6570. height:17px;
  6571. background:inherit;
  6572. background-color:rgba(255, 255, 255, 0);
  6573. border:none;
  6574. border-radius:0px;
  6575. -moz-box-shadow:none;
  6576. -webkit-box-shadow:none;
  6577. box-shadow:none;
  6578. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6579. font-weight:400;
  6580. font-style:normal;
  6581. font-size:12px;
  6582. color:#1890FF;
  6583. }
  6584. #u66676 {
  6585. border-width:0px;
  6586. position:absolute;
  6587. left:2015px;
  6588. top:390px;
  6589. width:421px;
  6590. height:17px;
  6591. display:flex;
  6592. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6593. font-weight:400;
  6594. font-style:normal;
  6595. font-size:12px;
  6596. color:#1890FF;
  6597. }
  6598. #u66676 .text {
  6599. position:absolute;
  6600. align-self:flex-start;
  6601. padding:0px 0px 0px 0px;
  6602. box-sizing:border-box;
  6603. width:100%;
  6604. }
  6605. #u66676_text {
  6606. border-width:0px;
  6607. white-space:nowrap;
  6608. text-transform:none;
  6609. }
  6610. #u66677 {
  6611. border-width:0px;
  6612. position:absolute;
  6613. left:0px;
  6614. top:0px;
  6615. width:0px;
  6616. height:0px;
  6617. }
  6618. #u66678_div {
  6619. border-width:0px;
  6620. position:absolute;
  6621. left:0px;
  6622. top:0px;
  6623. width:180px;
  6624. height:40px;
  6625. background:inherit;
  6626. background-color:rgba(255, 255, 255, 1);
  6627. box-sizing:border-box;
  6628. border-width:1px;
  6629. border-style:solid;
  6630. border-color:rgba(215, 215, 215, 1);
  6631. border-radius:4px;
  6632. -moz-box-shadow:none;
  6633. -webkit-box-shadow:none;
  6634. box-shadow:none;
  6635. font-size:14px;
  6636. }
  6637. #u66678 {
  6638. border-width:0px;
  6639. position:absolute;
  6640. left:2015px;
  6641. top:479px;
  6642. width:180px;
  6643. height:40px;
  6644. display:flex;
  6645. font-size:14px;
  6646. }
  6647. #u66678 .text {
  6648. position:absolute;
  6649. align-self:center;
  6650. padding:2px 2px 2px 2px;
  6651. box-sizing:border-box;
  6652. width:100%;
  6653. }
  6654. #u66678_text {
  6655. border-width:0px;
  6656. word-wrap:break-word;
  6657. text-transform:none;
  6658. visibility:hidden;
  6659. }
  6660. #u66679_input {
  6661. position:absolute;
  6662. left:0px;
  6663. top:0px;
  6664. width:172px;
  6665. height:31px;
  6666. padding:2px 2px 2px 2px;
  6667. font-family:'ArialMT', 'Arial', sans-serif;
  6668. font-weight:400;
  6669. font-style:normal;
  6670. font-size:14px;
  6671. letter-spacing:normal;
  6672. color:#AAAAAA;
  6673. vertical-align:none;
  6674. text-align:left;
  6675. text-transform:none;
  6676. background-color:transparent;
  6677. border-color:transparent;
  6678. }
  6679. #u66679_input.disabled {
  6680. position:absolute;
  6681. left:0px;
  6682. top:0px;
  6683. width:172px;
  6684. height:31px;
  6685. padding:2px 2px 2px 2px;
  6686. font-family:'ArialMT', 'Arial', sans-serif;
  6687. font-weight:400;
  6688. font-style:normal;
  6689. font-size:14px;
  6690. letter-spacing:normal;
  6691. color:#AAAAAA;
  6692. vertical-align:none;
  6693. text-align:left;
  6694. text-transform:none;
  6695. background-color:transparent;
  6696. border-color:transparent;
  6697. }
  6698. #u66679_div {
  6699. border-width:0px;
  6700. position:absolute;
  6701. left:0px;
  6702. top:0px;
  6703. width:172px;
  6704. height:31px;
  6705. background:inherit;
  6706. background-color:rgba(255, 255, 255, 1);
  6707. border:none;
  6708. border-radius:0px;
  6709. -moz-box-shadow:none;
  6710. -webkit-box-shadow:none;
  6711. box-shadow:none;
  6712. font-size:14px;
  6713. color:#AAAAAA;
  6714. }
  6715. #u66679 {
  6716. border-width:0px;
  6717. position:absolute;
  6718. left:2020px;
  6719. top:482px;
  6720. width:172px;
  6721. height:31px;
  6722. display:flex;
  6723. font-size:14px;
  6724. color:#AAAAAA;
  6725. }
  6726. #u66679 .text {
  6727. position:absolute;
  6728. align-self:flex-start;
  6729. padding:2px 2px 2px 2px;
  6730. box-sizing:border-box;
  6731. width:100%;
  6732. }
  6733. #u66679_div.disabled {
  6734. border-width:0px;
  6735. position:absolute;
  6736. left:0px;
  6737. top:0px;
  6738. width:172px;
  6739. height:31px;
  6740. background:inherit;
  6741. background-color:rgba(240, 240, 240, 1);
  6742. border:none;
  6743. border-radius:0px;
  6744. -moz-box-shadow:none;
  6745. -webkit-box-shadow:none;
  6746. box-shadow:none;
  6747. font-size:14px;
  6748. color:#AAAAAA;
  6749. }
  6750. #u66679.disabled {
  6751. }
  6752. .u66679_input_option {
  6753. font-size:14px;
  6754. }
  6755. #u66680_div {
  6756. border-width:0px;
  6757. position:absolute;
  6758. left:0px;
  6759. top:0px;
  6760. width:151px;
  6761. height:40px;
  6762. background:inherit;
  6763. background-color:rgba(255, 255, 255, 0);
  6764. border:none;
  6765. border-top:0px;
  6766. border-right:0px;
  6767. border-bottom:0px;
  6768. border-radius:0px;
  6769. border-top-left-radius:0px;
  6770. border-bottom-left-radius:0px;
  6771. -moz-box-shadow:none;
  6772. -webkit-box-shadow:none;
  6773. box-shadow:none;
  6774. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6775. font-weight:400;
  6776. font-style:normal;
  6777. font-size:14px;
  6778. color:#7F7F7F;
  6779. }
  6780. #u66680 {
  6781. border-width:0px;
  6782. position:absolute;
  6783. left:2205px;
  6784. top:479px;
  6785. width:151px;
  6786. height:40px;
  6787. display:flex;
  6788. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6789. font-weight:400;
  6790. font-style:normal;
  6791. font-size:14px;
  6792. color:#7F7F7F;
  6793. }
  6794. #u66680 .text {
  6795. position:absolute;
  6796. align-self:center;
  6797. padding:5px 10px 5px 0px;
  6798. box-sizing:border-box;
  6799. width:100%;
  6800. }
  6801. #u66680_text {
  6802. border-width:0px;
  6803. white-space:nowrap;
  6804. text-transform:none;
  6805. }
  6806. #u66681_div {
  6807. border-width:0px;
  6808. position:absolute;
  6809. left:0px;
  6810. top:0px;
  6811. width:39px;
  6812. height:40px;
  6813. background:inherit;
  6814. background-color:rgba(255, 255, 255, 0);
  6815. border:none;
  6816. border-top:0px;
  6817. border-right:0px;
  6818. border-bottom:0px;
  6819. border-radius:0px;
  6820. border-top-left-radius:0px;
  6821. border-bottom-left-radius:0px;
  6822. -moz-box-shadow:none;
  6823. -webkit-box-shadow:none;
  6824. box-shadow:none;
  6825. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6826. font-weight:400;
  6827. font-style:normal;
  6828. font-size:14px;
  6829. color:#298FFF;
  6830. }
  6831. #u66681 {
  6832. border-width:0px;
  6833. position:absolute;
  6834. left:2546px;
  6835. top:479px;
  6836. width:39px;
  6837. height:40px;
  6838. display:flex;
  6839. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6840. font-weight:400;
  6841. font-style:normal;
  6842. font-size:14px;
  6843. color:#298FFF;
  6844. }
  6845. #u66681 .text {
  6846. position:absolute;
  6847. align-self:center;
  6848. padding:5px 10px 5px 0px;
  6849. box-sizing:border-box;
  6850. width:100%;
  6851. }
  6852. #u66681_text {
  6853. border-width:0px;
  6854. white-space:nowrap;
  6855. text-transform:none;
  6856. }
  6857. #u66682 {
  6858. border-width:0px;
  6859. position:absolute;
  6860. left:0px;
  6861. top:0px;
  6862. width:0px;
  6863. height:0px;
  6864. }
  6865. #u66683_div {
  6866. border-width:0px;
  6867. position:absolute;
  6868. left:0px;
  6869. top:0px;
  6870. width:180px;
  6871. height:40px;
  6872. background:inherit;
  6873. background-color:rgba(255, 255, 255, 1);
  6874. box-sizing:border-box;
  6875. border-width:1px;
  6876. border-style:solid;
  6877. border-color:rgba(215, 215, 215, 1);
  6878. border-radius:4px;
  6879. -moz-box-shadow:none;
  6880. -webkit-box-shadow:none;
  6881. box-shadow:none;
  6882. font-size:14px;
  6883. }
  6884. #u66683 {
  6885. border-width:0px;
  6886. position:absolute;
  6887. left:2356px;
  6888. top:479px;
  6889. width:180px;
  6890. height:40px;
  6891. display:flex;
  6892. font-size:14px;
  6893. }
  6894. #u66683 .text {
  6895. position:absolute;
  6896. align-self:center;
  6897. padding:2px 2px 2px 2px;
  6898. box-sizing:border-box;
  6899. width:100%;
  6900. }
  6901. #u66683_text {
  6902. border-width:0px;
  6903. word-wrap:break-word;
  6904. text-transform:none;
  6905. visibility:hidden;
  6906. }
  6907. #u66684_input {
  6908. position:absolute;
  6909. left:0px;
  6910. top:0px;
  6911. width:172px;
  6912. height:31px;
  6913. padding:2px 2px 2px 2px;
  6914. font-family:'ArialMT', 'Arial', sans-serif;
  6915. font-weight:400;
  6916. font-style:normal;
  6917. font-size:14px;
  6918. letter-spacing:normal;
  6919. color:#AAAAAA;
  6920. vertical-align:none;
  6921. text-align:left;
  6922. text-transform:none;
  6923. background-color:transparent;
  6924. border-color:transparent;
  6925. }
  6926. #u66684_input.disabled {
  6927. position:absolute;
  6928. left:0px;
  6929. top:0px;
  6930. width:172px;
  6931. height:31px;
  6932. padding:2px 2px 2px 2px;
  6933. font-family:'ArialMT', 'Arial', sans-serif;
  6934. font-weight:400;
  6935. font-style:normal;
  6936. font-size:14px;
  6937. letter-spacing:normal;
  6938. color:#AAAAAA;
  6939. vertical-align:none;
  6940. text-align:left;
  6941. text-transform:none;
  6942. background-color:transparent;
  6943. border-color:transparent;
  6944. }
  6945. #u66684_div {
  6946. border-width:0px;
  6947. position:absolute;
  6948. left:0px;
  6949. top:0px;
  6950. width:172px;
  6951. height:31px;
  6952. background:inherit;
  6953. background-color:rgba(255, 255, 255, 1);
  6954. border:none;
  6955. border-radius:0px;
  6956. -moz-box-shadow:none;
  6957. -webkit-box-shadow:none;
  6958. box-shadow:none;
  6959. font-size:14px;
  6960. color:#AAAAAA;
  6961. }
  6962. #u66684 {
  6963. border-width:0px;
  6964. position:absolute;
  6965. left:2361px;
  6966. top:482px;
  6967. width:172px;
  6968. height:31px;
  6969. display:flex;
  6970. font-size:14px;
  6971. color:#AAAAAA;
  6972. }
  6973. #u66684 .text {
  6974. position:absolute;
  6975. align-self:flex-start;
  6976. padding:2px 2px 2px 2px;
  6977. box-sizing:border-box;
  6978. width:100%;
  6979. }
  6980. #u66684_div.disabled {
  6981. border-width:0px;
  6982. position:absolute;
  6983. left:0px;
  6984. top:0px;
  6985. width:172px;
  6986. height:31px;
  6987. background:inherit;
  6988. background-color:rgba(240, 240, 240, 1);
  6989. border:none;
  6990. border-radius:0px;
  6991. -moz-box-shadow:none;
  6992. -webkit-box-shadow:none;
  6993. box-shadow:none;
  6994. font-size:14px;
  6995. color:#AAAAAA;
  6996. }
  6997. #u66684.disabled {
  6998. }
  6999. .u66684_input_option {
  7000. font-size:14px;
  7001. }
  7002. #u66685_div {
  7003. border-width:0px;
  7004. position:absolute;
  7005. left:0px;
  7006. top:0px;
  7007. width:151px;
  7008. height:40px;
  7009. background:inherit;
  7010. background-color:rgba(255, 255, 255, 0);
  7011. border:none;
  7012. border-top:0px;
  7013. border-right:0px;
  7014. border-bottom:0px;
  7015. border-radius:0px;
  7016. border-top-left-radius:0px;
  7017. border-bottom-left-radius:0px;
  7018. -moz-box-shadow:none;
  7019. -webkit-box-shadow:none;
  7020. box-shadow:none;
  7021. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7022. font-weight:400;
  7023. font-style:normal;
  7024. font-size:14px;
  7025. color:#7F7F7F;
  7026. }
  7027. #u66685 {
  7028. border-width:0px;
  7029. position:absolute;
  7030. left:2205px;
  7031. top:529px;
  7032. width:151px;
  7033. height:40px;
  7034. display:flex;
  7035. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7036. font-weight:400;
  7037. font-style:normal;
  7038. font-size:14px;
  7039. color:#7F7F7F;
  7040. }
  7041. #u66685 .text {
  7042. position:absolute;
  7043. align-self:center;
  7044. padding:5px 10px 5px 0px;
  7045. box-sizing:border-box;
  7046. width:100%;
  7047. }
  7048. #u66685_text {
  7049. border-width:0px;
  7050. white-space:nowrap;
  7051. text-transform:none;
  7052. }
  7053. #u66686_div {
  7054. border-width:0px;
  7055. position:absolute;
  7056. left:0px;
  7057. top:0px;
  7058. width:39px;
  7059. height:40px;
  7060. background:inherit;
  7061. background-color:rgba(255, 255, 255, 0);
  7062. border:none;
  7063. border-top:0px;
  7064. border-right:0px;
  7065. border-bottom:0px;
  7066. border-radius:0px;
  7067. border-top-left-radius:0px;
  7068. border-bottom-left-radius:0px;
  7069. -moz-box-shadow:none;
  7070. -webkit-box-shadow:none;
  7071. box-shadow:none;
  7072. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7073. font-weight:400;
  7074. font-style:normal;
  7075. font-size:14px;
  7076. color:#298FFF;
  7077. }
  7078. #u66686 {
  7079. border-width:0px;
  7080. position:absolute;
  7081. left:2546px;
  7082. top:529px;
  7083. width:39px;
  7084. height:40px;
  7085. display:flex;
  7086. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7087. font-weight:400;
  7088. font-style:normal;
  7089. font-size:14px;
  7090. color:#298FFF;
  7091. }
  7092. #u66686 .text {
  7093. position:absolute;
  7094. align-self:center;
  7095. padding:5px 10px 5px 0px;
  7096. box-sizing:border-box;
  7097. width:100%;
  7098. }
  7099. #u66686_text {
  7100. border-width:0px;
  7101. white-space:nowrap;
  7102. text-transform:none;
  7103. }
  7104. #u66687 {
  7105. border-width:0px;
  7106. position:absolute;
  7107. left:0px;
  7108. top:0px;
  7109. width:0px;
  7110. height:0px;
  7111. }
  7112. #u66688_div {
  7113. border-width:0px;
  7114. position:absolute;
  7115. left:0px;
  7116. top:0px;
  7117. width:180px;
  7118. height:40px;
  7119. background:inherit;
  7120. background-color:rgba(255, 255, 255, 1);
  7121. box-sizing:border-box;
  7122. border-width:1px;
  7123. border-style:solid;
  7124. border-color:rgba(215, 215, 215, 1);
  7125. border-radius:4px;
  7126. -moz-box-shadow:none;
  7127. -webkit-box-shadow:none;
  7128. box-shadow:none;
  7129. font-size:14px;
  7130. }
  7131. #u66688 {
  7132. border-width:0px;
  7133. position:absolute;
  7134. left:2356px;
  7135. top:529px;
  7136. width:180px;
  7137. height:40px;
  7138. display:flex;
  7139. font-size:14px;
  7140. }
  7141. #u66688 .text {
  7142. position:absolute;
  7143. align-self:center;
  7144. padding:2px 2px 2px 2px;
  7145. box-sizing:border-box;
  7146. width:100%;
  7147. }
  7148. #u66688_text {
  7149. border-width:0px;
  7150. word-wrap:break-word;
  7151. text-transform:none;
  7152. visibility:hidden;
  7153. }
  7154. #u66689_input {
  7155. position:absolute;
  7156. left:0px;
  7157. top:0px;
  7158. width:172px;
  7159. height:31px;
  7160. padding:2px 2px 2px 2px;
  7161. font-family:'ArialMT', 'Arial', sans-serif;
  7162. font-weight:400;
  7163. font-style:normal;
  7164. font-size:14px;
  7165. letter-spacing:normal;
  7166. color:#AAAAAA;
  7167. vertical-align:none;
  7168. text-align:left;
  7169. text-transform:none;
  7170. background-color:transparent;
  7171. border-color:transparent;
  7172. }
  7173. #u66689_input.disabled {
  7174. position:absolute;
  7175. left:0px;
  7176. top:0px;
  7177. width:172px;
  7178. height:31px;
  7179. padding:2px 2px 2px 2px;
  7180. font-family:'ArialMT', 'Arial', sans-serif;
  7181. font-weight:400;
  7182. font-style:normal;
  7183. font-size:14px;
  7184. letter-spacing:normal;
  7185. color:#AAAAAA;
  7186. vertical-align:none;
  7187. text-align:left;
  7188. text-transform:none;
  7189. background-color:transparent;
  7190. border-color:transparent;
  7191. }
  7192. #u66689_div {
  7193. border-width:0px;
  7194. position:absolute;
  7195. left:0px;
  7196. top:0px;
  7197. width:172px;
  7198. height:31px;
  7199. background:inherit;
  7200. background-color:rgba(255, 255, 255, 1);
  7201. border:none;
  7202. border-radius:0px;
  7203. -moz-box-shadow:none;
  7204. -webkit-box-shadow:none;
  7205. box-shadow:none;
  7206. font-size:14px;
  7207. color:#AAAAAA;
  7208. }
  7209. #u66689 {
  7210. border-width:0px;
  7211. position:absolute;
  7212. left:2361px;
  7213. top:532px;
  7214. width:172px;
  7215. height:31px;
  7216. display:flex;
  7217. font-size:14px;
  7218. color:#AAAAAA;
  7219. }
  7220. #u66689 .text {
  7221. position:absolute;
  7222. align-self:flex-start;
  7223. padding:2px 2px 2px 2px;
  7224. box-sizing:border-box;
  7225. width:100%;
  7226. }
  7227. #u66689_div.disabled {
  7228. border-width:0px;
  7229. position:absolute;
  7230. left:0px;
  7231. top:0px;
  7232. width:172px;
  7233. height:31px;
  7234. background:inherit;
  7235. background-color:rgba(240, 240, 240, 1);
  7236. border:none;
  7237. border-radius:0px;
  7238. -moz-box-shadow:none;
  7239. -webkit-box-shadow:none;
  7240. box-shadow:none;
  7241. font-size:14px;
  7242. color:#AAAAAA;
  7243. }
  7244. #u66689.disabled {
  7245. }
  7246. .u66689_input_option {
  7247. font-size:14px;
  7248. }
  7249. #u66690_div {
  7250. border-width:0px;
  7251. position:absolute;
  7252. left:0px;
  7253. top:0px;
  7254. width:60px;
  7255. height:30px;
  7256. background:inherit;
  7257. background-color:rgba(24, 144, 255, 1);
  7258. border:none;
  7259. border-radius:4px;
  7260. -moz-box-shadow:none;
  7261. -webkit-box-shadow:none;
  7262. box-shadow:none;
  7263. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7264. font-weight:400;
  7265. font-style:normal;
  7266. font-size:14px;
  7267. color:#FFFFFF;
  7268. }
  7269. #u66690 {
  7270. border-width:0px;
  7271. position:absolute;
  7272. left:2015px;
  7273. top:589px;
  7274. width:60px;
  7275. height:30px;
  7276. display:flex;
  7277. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7278. font-weight:400;
  7279. font-style:normal;
  7280. font-size:14px;
  7281. color:#FFFFFF;
  7282. }
  7283. #u66690 .text {
  7284. position:absolute;
  7285. align-self:center;
  7286. padding:2px 2px 2px 2px;
  7287. box-sizing:border-box;
  7288. width:100%;
  7289. }
  7290. #u66690_text {
  7291. border-width:0px;
  7292. word-wrap:break-word;
  7293. text-transform:none;
  7294. }
  7295. #u66691_div {
  7296. border-width:0px;
  7297. position:absolute;
  7298. left:0px;
  7299. top:0px;
  7300. width:1179px;
  7301. height:180px;
  7302. background:inherit;
  7303. background-color:rgba(255, 255, 255, 1);
  7304. box-sizing:border-box;
  7305. border-width:1px;
  7306. border-style:solid;
  7307. border-color:rgba(215, 215, 215, 1);
  7308. border-left:0px;
  7309. border-top:0px;
  7310. border-right:0px;
  7311. border-radius:4px;
  7312. border-bottom-right-radius:0px;
  7313. border-bottom-left-radius:0px;
  7314. -moz-box-shadow:none;
  7315. -webkit-box-shadow:none;
  7316. box-shadow:none;
  7317. font-size:14px;
  7318. }
  7319. #u66691 {
  7320. border-width:0px;
  7321. position:absolute;
  7322. left:2015px;
  7323. top:637px;
  7324. width:1179px;
  7325. height:180px;
  7326. display:flex;
  7327. font-size:14px;
  7328. }
  7329. #u66691 .text {
  7330. position:absolute;
  7331. align-self:center;
  7332. padding:2px 2px 2px 2px;
  7333. box-sizing:border-box;
  7334. width:100%;
  7335. }
  7336. #u66691_text {
  7337. border-width:0px;
  7338. word-wrap:break-word;
  7339. text-transform:none;
  7340. visibility:hidden;
  7341. }
  7342. #u66692_div {
  7343. border-width:0px;
  7344. position:absolute;
  7345. left:0px;
  7346. top:0px;
  7347. width:119px;
  7348. height:40px;
  7349. background:inherit;
  7350. background-color:rgba(255, 255, 255, 0);
  7351. border:none;
  7352. border-top:0px;
  7353. border-right:0px;
  7354. border-bottom:0px;
  7355. border-radius:0px;
  7356. border-top-left-radius:0px;
  7357. border-bottom-left-radius:0px;
  7358. -moz-box-shadow:none;
  7359. -webkit-box-shadow:none;
  7360. box-shadow:none;
  7361. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7362. font-weight:400;
  7363. font-style:normal;
  7364. font-size:18px;
  7365. }
  7366. #u66692 {
  7367. border-width:0px;
  7368. position:absolute;
  7369. left:2015px;
  7370. top:657px;
  7371. width:119px;
  7372. height:40px;
  7373. display:flex;
  7374. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7375. font-weight:400;
  7376. font-style:normal;
  7377. font-size:18px;
  7378. }
  7379. #u66692 .text {
  7380. position:absolute;
  7381. align-self:center;
  7382. padding:5px 10px 5px 0px;
  7383. box-sizing:border-box;
  7384. width:100%;
  7385. }
  7386. #u66692_text {
  7387. border-width:0px;
  7388. white-space:nowrap;
  7389. text-transform:none;
  7390. }
  7391. #u66693_img {
  7392. border-width:0px;
  7393. position:absolute;
  7394. left:0px;
  7395. top:0px;
  7396. width:50px;
  7397. height:31px;
  7398. }
  7399. #u66693 {
  7400. border-width:0px;
  7401. position:absolute;
  7402. left:2147px;
  7403. top:662px;
  7404. width:50px;
  7405. height:31px;
  7406. display:flex;
  7407. }
  7408. #u66693 .text {
  7409. position:absolute;
  7410. align-self:center;
  7411. padding:2px 2px 2px 2px;
  7412. box-sizing:border-box;
  7413. width:100%;
  7414. }
  7415. #u66693_text {
  7416. border-width:0px;
  7417. word-wrap:break-word;
  7418. text-transform:none;
  7419. visibility:hidden;
  7420. }
  7421. #u66694 {
  7422. border-width:0px;
  7423. position:absolute;
  7424. left:0px;
  7425. top:0px;
  7426. width:0px;
  7427. height:0px;
  7428. }
  7429. #u66695_div {
  7430. border-width:0px;
  7431. position:absolute;
  7432. left:0px;
  7433. top:0px;
  7434. width:180px;
  7435. height:40px;
  7436. background:inherit;
  7437. background-color:rgba(255, 255, 255, 1);
  7438. box-sizing:border-box;
  7439. border-width:1px;
  7440. border-style:solid;
  7441. border-color:rgba(215, 215, 215, 1);
  7442. border-radius:4px;
  7443. -moz-box-shadow:none;
  7444. -webkit-box-shadow:none;
  7445. box-shadow:none;
  7446. font-size:14px;
  7447. }
  7448. #u66695 {
  7449. border-width:0px;
  7450. position:absolute;
  7451. left:2015px;
  7452. top:707px;
  7453. width:180px;
  7454. height:40px;
  7455. display:flex;
  7456. font-size:14px;
  7457. }
  7458. #u66695 .text {
  7459. position:absolute;
  7460. align-self:center;
  7461. padding:2px 2px 2px 2px;
  7462. box-sizing:border-box;
  7463. width:100%;
  7464. }
  7465. #u66695_text {
  7466. border-width:0px;
  7467. word-wrap:break-word;
  7468. text-transform:none;
  7469. visibility:hidden;
  7470. }
  7471. #u66696_input {
  7472. position:absolute;
  7473. left:0px;
  7474. top:0px;
  7475. width:172px;
  7476. height:31px;
  7477. padding:2px 2px 2px 2px;
  7478. font-family:'ArialMT', 'Arial', sans-serif;
  7479. font-weight:400;
  7480. font-style:normal;
  7481. font-size:14px;
  7482. letter-spacing:normal;
  7483. color:#AAAAAA;
  7484. vertical-align:none;
  7485. text-align:left;
  7486. text-transform:none;
  7487. background-color:transparent;
  7488. border-color:transparent;
  7489. }
  7490. #u66696_input.disabled {
  7491. position:absolute;
  7492. left:0px;
  7493. top:0px;
  7494. width:172px;
  7495. height:31px;
  7496. padding:2px 2px 2px 2px;
  7497. font-family:'ArialMT', 'Arial', sans-serif;
  7498. font-weight:400;
  7499. font-style:normal;
  7500. font-size:14px;
  7501. letter-spacing:normal;
  7502. color:#AAAAAA;
  7503. vertical-align:none;
  7504. text-align:left;
  7505. text-transform:none;
  7506. background-color:transparent;
  7507. border-color:transparent;
  7508. }
  7509. #u66696_div {
  7510. border-width:0px;
  7511. position:absolute;
  7512. left:0px;
  7513. top:0px;
  7514. width:172px;
  7515. height:31px;
  7516. background:inherit;
  7517. background-color:rgba(255, 255, 255, 1);
  7518. border:none;
  7519. border-radius:0px;
  7520. -moz-box-shadow:none;
  7521. -webkit-box-shadow:none;
  7522. box-shadow:none;
  7523. font-size:14px;
  7524. color:#AAAAAA;
  7525. }
  7526. #u66696 {
  7527. border-width:0px;
  7528. position:absolute;
  7529. left:2020px;
  7530. top:710px;
  7531. width:172px;
  7532. height:31px;
  7533. display:flex;
  7534. font-size:14px;
  7535. color:#AAAAAA;
  7536. }
  7537. #u66696 .text {
  7538. position:absolute;
  7539. align-self:flex-start;
  7540. padding:2px 2px 2px 2px;
  7541. box-sizing:border-box;
  7542. width:100%;
  7543. }
  7544. #u66696_div.disabled {
  7545. border-width:0px;
  7546. position:absolute;
  7547. left:0px;
  7548. top:0px;
  7549. width:172px;
  7550. height:31px;
  7551. background:inherit;
  7552. background-color:rgba(240, 240, 240, 1);
  7553. border:none;
  7554. border-radius:0px;
  7555. -moz-box-shadow:none;
  7556. -webkit-box-shadow:none;
  7557. box-shadow:none;
  7558. font-size:14px;
  7559. color:#AAAAAA;
  7560. }
  7561. #u66696.disabled {
  7562. }
  7563. .u66696_input_option {
  7564. font-size:14px;
  7565. }
  7566. #u66697_div {
  7567. border-width:0px;
  7568. position:absolute;
  7569. left:0px;
  7570. top:0px;
  7571. width:151px;
  7572. height:40px;
  7573. background:inherit;
  7574. background-color:rgba(255, 255, 255, 0);
  7575. border:none;
  7576. border-top:0px;
  7577. border-right:0px;
  7578. border-bottom:0px;
  7579. border-radius:0px;
  7580. border-top-left-radius:0px;
  7581. border-bottom-left-radius:0px;
  7582. -moz-box-shadow:none;
  7583. -webkit-box-shadow:none;
  7584. box-shadow:none;
  7585. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7586. font-weight:400;
  7587. font-style:normal;
  7588. font-size:14px;
  7589. color:#7F7F7F;
  7590. }
  7591. #u66697 {
  7592. border-width:0px;
  7593. position:absolute;
  7594. left:2205px;
  7595. top:707px;
  7596. width:151px;
  7597. height:40px;
  7598. display:flex;
  7599. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7600. font-weight:400;
  7601. font-style:normal;
  7602. font-size:14px;
  7603. color:#7F7F7F;
  7604. }
  7605. #u66697 .text {
  7606. position:absolute;
  7607. align-self:center;
  7608. padding:5px 10px 5px 0px;
  7609. box-sizing:border-box;
  7610. width:100%;
  7611. }
  7612. #u66697_text {
  7613. border-width:0px;
  7614. white-space:nowrap;
  7615. text-transform:none;
  7616. }
  7617. #u66698_div {
  7618. border-width:0px;
  7619. position:absolute;
  7620. left:0px;
  7621. top:0px;
  7622. width:39px;
  7623. height:40px;
  7624. background:inherit;
  7625. background-color:rgba(255, 255, 255, 0);
  7626. border:none;
  7627. border-top:0px;
  7628. border-right:0px;
  7629. border-bottom:0px;
  7630. border-radius:0px;
  7631. border-top-left-radius:0px;
  7632. border-bottom-left-radius:0px;
  7633. -moz-box-shadow:none;
  7634. -webkit-box-shadow:none;
  7635. box-shadow:none;
  7636. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7637. font-weight:400;
  7638. font-style:normal;
  7639. font-size:14px;
  7640. color:#298FFF;
  7641. }
  7642. #u66698 {
  7643. border-width:0px;
  7644. position:absolute;
  7645. left:2546px;
  7646. top:707px;
  7647. width:39px;
  7648. height:40px;
  7649. display:flex;
  7650. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7651. font-weight:400;
  7652. font-style:normal;
  7653. font-size:14px;
  7654. color:#298FFF;
  7655. }
  7656. #u66698 .text {
  7657. position:absolute;
  7658. align-self:center;
  7659. padding:5px 10px 5px 0px;
  7660. box-sizing:border-box;
  7661. width:100%;
  7662. }
  7663. #u66698_text {
  7664. border-width:0px;
  7665. white-space:nowrap;
  7666. text-transform:none;
  7667. }
  7668. #u66699 {
  7669. border-width:0px;
  7670. position:absolute;
  7671. left:0px;
  7672. top:0px;
  7673. width:0px;
  7674. height:0px;
  7675. }
  7676. #u66700_div {
  7677. border-width:0px;
  7678. position:absolute;
  7679. left:0px;
  7680. top:0px;
  7681. width:180px;
  7682. height:40px;
  7683. background:inherit;
  7684. background-color:rgba(255, 255, 255, 1);
  7685. box-sizing:border-box;
  7686. border-width:1px;
  7687. border-style:solid;
  7688. border-color:rgba(215, 215, 215, 1);
  7689. border-radius:4px;
  7690. -moz-box-shadow:none;
  7691. -webkit-box-shadow:none;
  7692. box-shadow:none;
  7693. font-size:14px;
  7694. }
  7695. #u66700 {
  7696. border-width:0px;
  7697. position:absolute;
  7698. left:2356px;
  7699. top:707px;
  7700. width:180px;
  7701. height:40px;
  7702. display:flex;
  7703. font-size:14px;
  7704. }
  7705. #u66700 .text {
  7706. position:absolute;
  7707. align-self:center;
  7708. padding:2px 2px 2px 2px;
  7709. box-sizing:border-box;
  7710. width:100%;
  7711. }
  7712. #u66700_text {
  7713. border-width:0px;
  7714. word-wrap:break-word;
  7715. text-transform:none;
  7716. visibility:hidden;
  7717. }
  7718. #u66701_input {
  7719. position:absolute;
  7720. left:0px;
  7721. top:0px;
  7722. width:172px;
  7723. height:31px;
  7724. padding:2px 2px 2px 2px;
  7725. font-family:'ArialMT', 'Arial', sans-serif;
  7726. font-weight:400;
  7727. font-style:normal;
  7728. font-size:14px;
  7729. letter-spacing:normal;
  7730. color:#AAAAAA;
  7731. vertical-align:none;
  7732. text-align:left;
  7733. text-transform:none;
  7734. background-color:transparent;
  7735. border-color:transparent;
  7736. }
  7737. #u66701_input.disabled {
  7738. position:absolute;
  7739. left:0px;
  7740. top:0px;
  7741. width:172px;
  7742. height:31px;
  7743. padding:2px 2px 2px 2px;
  7744. font-family:'ArialMT', 'Arial', sans-serif;
  7745. font-weight:400;
  7746. font-style:normal;
  7747. font-size:14px;
  7748. letter-spacing:normal;
  7749. color:#AAAAAA;
  7750. vertical-align:none;
  7751. text-align:left;
  7752. text-transform:none;
  7753. background-color:transparent;
  7754. border-color:transparent;
  7755. }
  7756. #u66701_div {
  7757. border-width:0px;
  7758. position:absolute;
  7759. left:0px;
  7760. top:0px;
  7761. width:172px;
  7762. height:31px;
  7763. background:inherit;
  7764. background-color:rgba(255, 255, 255, 1);
  7765. border:none;
  7766. border-radius:0px;
  7767. -moz-box-shadow:none;
  7768. -webkit-box-shadow:none;
  7769. box-shadow:none;
  7770. font-size:14px;
  7771. color:#AAAAAA;
  7772. }
  7773. #u66701 {
  7774. border-width:0px;
  7775. position:absolute;
  7776. left:2361px;
  7777. top:710px;
  7778. width:172px;
  7779. height:31px;
  7780. display:flex;
  7781. font-size:14px;
  7782. color:#AAAAAA;
  7783. }
  7784. #u66701 .text {
  7785. position:absolute;
  7786. align-self:flex-start;
  7787. padding:2px 2px 2px 2px;
  7788. box-sizing:border-box;
  7789. width:100%;
  7790. }
  7791. #u66701_div.disabled {
  7792. border-width:0px;
  7793. position:absolute;
  7794. left:0px;
  7795. top:0px;
  7796. width:172px;
  7797. height:31px;
  7798. background:inherit;
  7799. background-color:rgba(240, 240, 240, 1);
  7800. border:none;
  7801. border-radius:0px;
  7802. -moz-box-shadow:none;
  7803. -webkit-box-shadow:none;
  7804. box-shadow:none;
  7805. font-size:14px;
  7806. color:#AAAAAA;
  7807. }
  7808. #u66701.disabled {
  7809. }
  7810. .u66701_input_option {
  7811. font-size:14px;
  7812. }
  7813. #u66702_div {
  7814. border-width:0px;
  7815. position:absolute;
  7816. left:0px;
  7817. top:0px;
  7818. width:60px;
  7819. height:30px;
  7820. background:inherit;
  7821. background-color:rgba(24, 144, 255, 1);
  7822. border:none;
  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:14px;
  7831. color:#FFFFFF;
  7832. }
  7833. #u66702 {
  7834. border-width:0px;
  7835. position:absolute;
  7836. left:2015px;
  7837. top:767px;
  7838. width:60px;
  7839. height:30px;
  7840. display:flex;
  7841. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7842. font-weight:400;
  7843. font-style:normal;
  7844. font-size:14px;
  7845. color:#FFFFFF;
  7846. }
  7847. #u66702 .text {
  7848. position:absolute;
  7849. align-self:center;
  7850. padding:2px 2px 2px 2px;
  7851. box-sizing:border-box;
  7852. width:100%;
  7853. }
  7854. #u66702_text {
  7855. border-width:0px;
  7856. word-wrap:break-word;
  7857. text-transform:none;
  7858. }
  7859. #u66703_div {
  7860. border-width:0px;
  7861. position:absolute;
  7862. left:0px;
  7863. top:0px;
  7864. width:1179px;
  7865. height:180px;
  7866. background:inherit;
  7867. background-color:rgba(255, 255, 255, 1);
  7868. box-sizing:border-box;
  7869. border-width:1px;
  7870. border-style:solid;
  7871. border-color:rgba(215, 215, 215, 1);
  7872. border-left:0px;
  7873. border-top:0px;
  7874. border-right:0px;
  7875. border-radius:4px;
  7876. border-bottom-right-radius:0px;
  7877. border-bottom-left-radius:0px;
  7878. -moz-box-shadow:none;
  7879. -webkit-box-shadow:none;
  7880. box-shadow:none;
  7881. font-size:14px;
  7882. }
  7883. #u66703 {
  7884. border-width:0px;
  7885. position:absolute;
  7886. left:2015px;
  7887. top:817px;
  7888. width:1179px;
  7889. height:180px;
  7890. display:flex;
  7891. font-size:14px;
  7892. }
  7893. #u66703 .text {
  7894. position:absolute;
  7895. align-self:center;
  7896. padding:2px 2px 2px 2px;
  7897. box-sizing:border-box;
  7898. width:100%;
  7899. }
  7900. #u66703_text {
  7901. border-width:0px;
  7902. word-wrap:break-word;
  7903. text-transform:none;
  7904. visibility:hidden;
  7905. }
  7906. #u66704_div {
  7907. border-width:0px;
  7908. position:absolute;
  7909. left:0px;
  7910. top:0px;
  7911. width:119px;
  7912. height:40px;
  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:18px;
  7929. }
  7930. #u66704 {
  7931. border-width:0px;
  7932. position:absolute;
  7933. left:2015px;
  7934. top:837px;
  7935. width:119px;
  7936. height:40px;
  7937. display:flex;
  7938. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7939. font-weight:400;
  7940. font-style:normal;
  7941. font-size:18px;
  7942. }
  7943. #u66704 .text {
  7944. position:absolute;
  7945. align-self:center;
  7946. padding:5px 10px 5px 0px;
  7947. box-sizing:border-box;
  7948. width:100%;
  7949. }
  7950. #u66704_text {
  7951. border-width:0px;
  7952. white-space:nowrap;
  7953. text-transform:none;
  7954. }
  7955. #u66705_img {
  7956. border-width:0px;
  7957. position:absolute;
  7958. left:0px;
  7959. top:0px;
  7960. width:50px;
  7961. height:31px;
  7962. }
  7963. #u66705 {
  7964. border-width:0px;
  7965. position:absolute;
  7966. left:2147px;
  7967. top:841px;
  7968. width:50px;
  7969. height:31px;
  7970. display:flex;
  7971. }
  7972. #u66705 .text {
  7973. position:absolute;
  7974. align-self:center;
  7975. padding:2px 2px 2px 2px;
  7976. box-sizing:border-box;
  7977. width:100%;
  7978. }
  7979. #u66705_text {
  7980. border-width:0px;
  7981. word-wrap:break-word;
  7982. text-transform:none;
  7983. visibility:hidden;
  7984. }
  7985. #u66706_div {
  7986. border-width:0px;
  7987. position:absolute;
  7988. left:0px;
  7989. top:0px;
  7990. width:151px;
  7991. height:40px;
  7992. background:inherit;
  7993. background-color:rgba(255, 255, 255, 0);
  7994. border:none;
  7995. border-top:0px;
  7996. border-right:0px;
  7997. border-bottom:0px;
  7998. border-radius:0px;
  7999. border-top-left-radius:0px;
  8000. border-bottom-left-radius:0px;
  8001. -moz-box-shadow:none;
  8002. -webkit-box-shadow:none;
  8003. box-shadow:none;
  8004. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8005. font-weight:400;
  8006. font-style:normal;
  8007. font-size:14px;
  8008. color:#7F7F7F;
  8009. }
  8010. #u66706 {
  8011. border-width:0px;
  8012. position:absolute;
  8013. left:2205px;
  8014. top:887px;
  8015. width:151px;
  8016. height:40px;
  8017. display:flex;
  8018. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8019. font-weight:400;
  8020. font-style:normal;
  8021. font-size:14px;
  8022. color:#7F7F7F;
  8023. }
  8024. #u66706 .text {
  8025. position:absolute;
  8026. align-self:center;
  8027. padding:5px 10px 5px 0px;
  8028. box-sizing:border-box;
  8029. width:100%;
  8030. }
  8031. #u66706_text {
  8032. border-width:0px;
  8033. white-space:nowrap;
  8034. text-transform:none;
  8035. }
  8036. #u66707_div {
  8037. border-width:0px;
  8038. position:absolute;
  8039. left:0px;
  8040. top:0px;
  8041. width:39px;
  8042. height:40px;
  8043. background:inherit;
  8044. background-color:rgba(255, 255, 255, 0);
  8045. border:none;
  8046. border-top:0px;
  8047. border-right:0px;
  8048. border-bottom:0px;
  8049. border-radius:0px;
  8050. border-top-left-radius:0px;
  8051. border-bottom-left-radius:0px;
  8052. -moz-box-shadow:none;
  8053. -webkit-box-shadow:none;
  8054. box-shadow:none;
  8055. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8056. font-weight:400;
  8057. font-style:normal;
  8058. font-size:14px;
  8059. color:#298FFF;
  8060. }
  8061. #u66707 {
  8062. border-width:0px;
  8063. position:absolute;
  8064. left:2546px;
  8065. top:887px;
  8066. width:39px;
  8067. height:40px;
  8068. display:flex;
  8069. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8070. font-weight:400;
  8071. font-style:normal;
  8072. font-size:14px;
  8073. color:#298FFF;
  8074. }
  8075. #u66707 .text {
  8076. position:absolute;
  8077. align-self:center;
  8078. padding:5px 10px 5px 0px;
  8079. box-sizing:border-box;
  8080. width:100%;
  8081. }
  8082. #u66707_text {
  8083. border-width:0px;
  8084. white-space:nowrap;
  8085. text-transform:none;
  8086. }
  8087. #u66708 {
  8088. border-width:0px;
  8089. position:absolute;
  8090. left:0px;
  8091. top:0px;
  8092. width:0px;
  8093. height:0px;
  8094. }
  8095. #u66709_div {
  8096. border-width:0px;
  8097. position:absolute;
  8098. left:0px;
  8099. top:0px;
  8100. width:180px;
  8101. height:40px;
  8102. background:inherit;
  8103. background-color:rgba(255, 255, 255, 1);
  8104. box-sizing:border-box;
  8105. border-width:1px;
  8106. border-style:solid;
  8107. border-color:rgba(215, 215, 215, 1);
  8108. border-radius:4px;
  8109. -moz-box-shadow:none;
  8110. -webkit-box-shadow:none;
  8111. box-shadow:none;
  8112. font-size:14px;
  8113. }
  8114. #u66709 {
  8115. border-width:0px;
  8116. position:absolute;
  8117. left:2356px;
  8118. top:887px;
  8119. width:180px;
  8120. height:40px;
  8121. display:flex;
  8122. font-size:14px;
  8123. }
  8124. #u66709 .text {
  8125. position:absolute;
  8126. align-self:center;
  8127. padding:2px 2px 2px 2px;
  8128. box-sizing:border-box;
  8129. width:100%;
  8130. }
  8131. #u66709_text {
  8132. border-width:0px;
  8133. word-wrap:break-word;
  8134. text-transform:none;
  8135. visibility:hidden;
  8136. }
  8137. #u66710_input {
  8138. position:absolute;
  8139. left:0px;
  8140. top:0px;
  8141. width:172px;
  8142. height:31px;
  8143. padding:2px 2px 2px 2px;
  8144. font-family:'ArialMT', 'Arial', sans-serif;
  8145. font-weight:400;
  8146. font-style:normal;
  8147. font-size:14px;
  8148. letter-spacing:normal;
  8149. color:#AAAAAA;
  8150. vertical-align:none;
  8151. text-align:left;
  8152. text-transform:none;
  8153. background-color:transparent;
  8154. border-color:transparent;
  8155. }
  8156. #u66710_input.disabled {
  8157. position:absolute;
  8158. left:0px;
  8159. top:0px;
  8160. width:172px;
  8161. height:31px;
  8162. padding:2px 2px 2px 2px;
  8163. font-family:'ArialMT', 'Arial', sans-serif;
  8164. font-weight:400;
  8165. font-style:normal;
  8166. font-size:14px;
  8167. letter-spacing:normal;
  8168. color:#AAAAAA;
  8169. vertical-align:none;
  8170. text-align:left;
  8171. text-transform:none;
  8172. background-color:transparent;
  8173. border-color:transparent;
  8174. }
  8175. #u66710_div {
  8176. border-width:0px;
  8177. position:absolute;
  8178. left:0px;
  8179. top:0px;
  8180. width:172px;
  8181. height:31px;
  8182. background:inherit;
  8183. background-color:rgba(255, 255, 255, 1);
  8184. border:none;
  8185. border-radius:0px;
  8186. -moz-box-shadow:none;
  8187. -webkit-box-shadow:none;
  8188. box-shadow:none;
  8189. font-size:14px;
  8190. color:#AAAAAA;
  8191. }
  8192. #u66710 {
  8193. border-width:0px;
  8194. position:absolute;
  8195. left:2361px;
  8196. top:890px;
  8197. width:172px;
  8198. height:31px;
  8199. display:flex;
  8200. font-size:14px;
  8201. color:#AAAAAA;
  8202. }
  8203. #u66710 .text {
  8204. position:absolute;
  8205. align-self:flex-start;
  8206. padding:2px 2px 2px 2px;
  8207. box-sizing:border-box;
  8208. width:100%;
  8209. }
  8210. #u66710_div.disabled {
  8211. border-width:0px;
  8212. position:absolute;
  8213. left:0px;
  8214. top:0px;
  8215. width:172px;
  8216. height:31px;
  8217. background:inherit;
  8218. background-color:rgba(240, 240, 240, 1);
  8219. border:none;
  8220. border-radius:0px;
  8221. -moz-box-shadow:none;
  8222. -webkit-box-shadow:none;
  8223. box-shadow:none;
  8224. font-size:14px;
  8225. color:#AAAAAA;
  8226. }
  8227. #u66710.disabled {
  8228. }
  8229. .u66710_input_option {
  8230. font-size:14px;
  8231. }
  8232. #u66711_div {
  8233. border-width:0px;
  8234. position:absolute;
  8235. left:0px;
  8236. top:0px;
  8237. width:60px;
  8238. height:30px;
  8239. background:inherit;
  8240. background-color:rgba(24, 144, 255, 1);
  8241. border:none;
  8242. border-radius:4px;
  8243. -moz-box-shadow:none;
  8244. -webkit-box-shadow:none;
  8245. box-shadow:none;
  8246. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8247. font-weight:400;
  8248. font-style:normal;
  8249. font-size:14px;
  8250. color:#FFFFFF;
  8251. }
  8252. #u66711 {
  8253. border-width:0px;
  8254. position:absolute;
  8255. left:2015px;
  8256. top:947px;
  8257. width:60px;
  8258. height:30px;
  8259. display:flex;
  8260. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8261. font-weight:400;
  8262. font-style:normal;
  8263. font-size:14px;
  8264. color:#FFFFFF;
  8265. }
  8266. #u66711 .text {
  8267. position:absolute;
  8268. align-self:center;
  8269. padding:2px 2px 2px 2px;
  8270. box-sizing:border-box;
  8271. width:100%;
  8272. }
  8273. #u66711_text {
  8274. border-width:0px;
  8275. word-wrap:break-word;
  8276. text-transform:none;
  8277. }
  8278. #u66712_div {
  8279. border-width:0px;
  8280. position:absolute;
  8281. left:0px;
  8282. top:0px;
  8283. width:137px;
  8284. height:35px;
  8285. background:inherit;
  8286. background-color:rgba(255, 255, 255, 0);
  8287. border:none;
  8288. border-top:0px;
  8289. border-right:0px;
  8290. border-bottom:0px;
  8291. border-radius:0px;
  8292. border-top-left-radius:0px;
  8293. border-bottom-left-radius:0px;
  8294. -moz-box-shadow:none;
  8295. -webkit-box-shadow:none;
  8296. box-shadow:none;
  8297. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  8298. font-weight:500;
  8299. font-style:normal;
  8300. font-size:18px;
  8301. }
  8302. #u66712 {
  8303. border-width:0px;
  8304. position:absolute;
  8305. left:2015px;
  8306. top:134px;
  8307. width:137px;
  8308. height:35px;
  8309. display:flex;
  8310. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  8311. font-weight:500;
  8312. font-style:normal;
  8313. font-size:18px;
  8314. }
  8315. #u66712 .text {
  8316. position:absolute;
  8317. align-self:center;
  8318. padding:5px 10px 5px 0px;
  8319. box-sizing:border-box;
  8320. width:100%;
  8321. }
  8322. #u66712_text {
  8323. border-width:0px;
  8324. white-space:nowrap;
  8325. text-transform:none;
  8326. }
  8327. #u66713_div {
  8328. border-width:0px;
  8329. position:absolute;
  8330. left:0px;
  8331. top:0px;
  8332. width:193px;
  8333. height:17px;
  8334. background:inherit;
  8335. background-color:rgba(255, 255, 255, 0);
  8336. border:none;
  8337. border-radius:0px;
  8338. -moz-box-shadow:none;
  8339. -webkit-box-shadow:none;
  8340. box-shadow:none;
  8341. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8342. font-weight:400;
  8343. font-style:normal;
  8344. font-size:12px;
  8345. color:#1890FF;
  8346. }
  8347. #u66713 {
  8348. border-width:0px;
  8349. position:absolute;
  8350. left:2015px;
  8351. top:172px;
  8352. width:193px;
  8353. height:17px;
  8354. display:flex;
  8355. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8356. font-weight:400;
  8357. font-style:normal;
  8358. font-size:12px;
  8359. color:#1890FF;
  8360. }
  8361. #u66713 .text {
  8362. position:absolute;
  8363. align-self:flex-start;
  8364. padding:0px 0px 0px 0px;
  8365. box-sizing:border-box;
  8366. width:100%;
  8367. }
  8368. #u66713_text {
  8369. border-width:0px;
  8370. white-space:nowrap;
  8371. text-transform:none;
  8372. }
  8373. #u66714 label {
  8374. left:0px;
  8375. width:100%;
  8376. }
  8377. #u66714_img {
  8378. border-width:0px;
  8379. position:absolute;
  8380. left:0px;
  8381. top:3px;
  8382. width:12px;
  8383. height:12px;
  8384. }
  8385. #u66714 {
  8386. border-width:0px;
  8387. position:absolute;
  8388. left:2015px;
  8389. top:210px;
  8390. width:100px;
  8391. height:18px;
  8392. display:flex;
  8393. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8394. font-weight:400;
  8395. font-style:normal;
  8396. }
  8397. #u66714 .text {
  8398. position:absolute;
  8399. align-self:center;
  8400. padding:0px 2px 0px 2px;
  8401. box-sizing:border-box;
  8402. }
  8403. #u66714_img.selected {
  8404. }
  8405. #u66714.selected {
  8406. }
  8407. #u66714_img.disabled {
  8408. }
  8409. #u66714.disabled {
  8410. }
  8411. #u66714_img.selectedDisabled {
  8412. }
  8413. #u66714.selectedDisabled {
  8414. }
  8415. #u66714_text {
  8416. border-width:0px;
  8417. position:absolute;
  8418. left:14px;
  8419. top:0px;
  8420. width:84px;
  8421. word-wrap:break-word;
  8422. text-transform:none;
  8423. }
  8424. #u66714_input {
  8425. border-width:0px;
  8426. position:absolute;
  8427. left:0px;
  8428. top:0px;
  8429. width:0px;
  8430. height:0px;
  8431. opacity:0;
  8432. }
  8433. #u66715 label {
  8434. left:0px;
  8435. width:100%;
  8436. }
  8437. #u66715_img {
  8438. border-width:0px;
  8439. position:absolute;
  8440. left:0px;
  8441. top:3px;
  8442. width:12px;
  8443. height:12px;
  8444. }
  8445. #u66715 {
  8446. border-width:0px;
  8447. position:absolute;
  8448. left:2115px;
  8449. top:210px;
  8450. width:157px;
  8451. height:18px;
  8452. display:flex;
  8453. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8454. font-weight:400;
  8455. font-style:normal;
  8456. }
  8457. #u66715 .text {
  8458. position:absolute;
  8459. align-self:center;
  8460. padding:0px 2px 0px 2px;
  8461. box-sizing:border-box;
  8462. }
  8463. #u66715_img.selected {
  8464. }
  8465. #u66715.selected {
  8466. }
  8467. #u66715_img.disabled {
  8468. }
  8469. #u66715.disabled {
  8470. }
  8471. #u66715_img.selectedDisabled {
  8472. }
  8473. #u66715.selectedDisabled {
  8474. }
  8475. #u66715_text {
  8476. border-width:0px;
  8477. position:absolute;
  8478. left:14px;
  8479. top:0px;
  8480. width:141px;
  8481. word-wrap:break-word;
  8482. text-transform:none;
  8483. }
  8484. #u66715_input {
  8485. border-width:0px;
  8486. position:absolute;
  8487. left:0px;
  8488. top:0px;
  8489. width:0px;
  8490. height:0px;
  8491. opacity:0;
  8492. }
  8493. #u66716 {
  8494. border-width:0px;
  8495. position:absolute;
  8496. left:0px;
  8497. top:0px;
  8498. width:0px;
  8499. height:0px;
  8500. }
  8501. #u66717_div {
  8502. border-width:0px;
  8503. position:absolute;
  8504. left:0px;
  8505. top:0px;
  8506. width:1022px;
  8507. height:40px;
  8508. background:inherit;
  8509. background-color:rgba(255, 255, 255, 1);
  8510. box-sizing:border-box;
  8511. border-width:1px;
  8512. border-style:solid;
  8513. border-color:rgba(215, 215, 215, 1);
  8514. border-radius:4px;
  8515. -moz-box-shadow:none;
  8516. -webkit-box-shadow:none;
  8517. box-shadow:none;
  8518. font-size:14px;
  8519. }
  8520. #u66717 {
  8521. border-width:0px;
  8522. position:absolute;
  8523. left:2015px;
  8524. top:245px;
  8525. width:1022px;
  8526. height:40px;
  8527. display:flex;
  8528. font-size:14px;
  8529. }
  8530. #u66717 .text {
  8531. position:absolute;
  8532. align-self:center;
  8533. padding:2px 2px 2px 2px;
  8534. box-sizing:border-box;
  8535. width:100%;
  8536. }
  8537. #u66717_text {
  8538. border-width:0px;
  8539. word-wrap:break-word;
  8540. text-transform:none;
  8541. visibility:hidden;
  8542. }
  8543. #u66718_input {
  8544. position:absolute;
  8545. left:0px;
  8546. top:0px;
  8547. width:996px;
  8548. height:31px;
  8549. padding:2px 2px 2px 2px;
  8550. font-family:'ArialMT', 'Arial', sans-serif;
  8551. font-weight:400;
  8552. font-style:normal;
  8553. font-size:14px;
  8554. letter-spacing:normal;
  8555. color:#AAAAAA;
  8556. vertical-align:none;
  8557. text-align:left;
  8558. text-transform:none;
  8559. background-color:transparent;
  8560. border-color:transparent;
  8561. }
  8562. #u66718_input.disabled {
  8563. position:absolute;
  8564. left:0px;
  8565. top:0px;
  8566. width:996px;
  8567. height:31px;
  8568. padding:2px 2px 2px 2px;
  8569. font-family:'ArialMT', 'Arial', sans-serif;
  8570. font-weight:400;
  8571. font-style:normal;
  8572. font-size:14px;
  8573. letter-spacing:normal;
  8574. color:#AAAAAA;
  8575. vertical-align:none;
  8576. text-align:left;
  8577. text-transform:none;
  8578. background-color:transparent;
  8579. border-color:transparent;
  8580. }
  8581. #u66718_div {
  8582. border-width:0px;
  8583. position:absolute;
  8584. left:0px;
  8585. top:0px;
  8586. width:996px;
  8587. height:31px;
  8588. background:inherit;
  8589. background-color:rgba(255, 255, 255, 1);
  8590. border:none;
  8591. border-radius:0px;
  8592. -moz-box-shadow:none;
  8593. -webkit-box-shadow:none;
  8594. box-shadow:none;
  8595. font-size:14px;
  8596. color:#AAAAAA;
  8597. }
  8598. #u66718 {
  8599. border-width:0px;
  8600. position:absolute;
  8601. left:2028px;
  8602. top:248px;
  8603. width:996px;
  8604. height:31px;
  8605. display:flex;
  8606. font-size:14px;
  8607. color:#AAAAAA;
  8608. }
  8609. #u66718 .text {
  8610. position:absolute;
  8611. align-self:flex-start;
  8612. padding:2px 2px 2px 2px;
  8613. box-sizing:border-box;
  8614. width:100%;
  8615. }
  8616. #u66718_div.disabled {
  8617. border-width:0px;
  8618. position:absolute;
  8619. left:0px;
  8620. top:0px;
  8621. width:996px;
  8622. height:31px;
  8623. background:inherit;
  8624. background-color:rgba(240, 240, 240, 1);
  8625. border:none;
  8626. border-radius:0px;
  8627. -moz-box-shadow:none;
  8628. -webkit-box-shadow:none;
  8629. box-shadow:none;
  8630. font-size:14px;
  8631. color:#AAAAAA;
  8632. }
  8633. #u66718.disabled {
  8634. }
  8635. .u66718_input_option {
  8636. font-size:14px;
  8637. }
  8638. #u66719_div {
  8639. border-width:0px;
  8640. position:absolute;
  8641. left:0px;
  8642. top:0px;
  8643. width:60px;
  8644. height:30px;
  8645. background:inherit;
  8646. background-color:rgba(24, 144, 255, 1);
  8647. border:none;
  8648. border-radius:4px;
  8649. -moz-box-shadow:none;
  8650. -webkit-box-shadow:none;
  8651. box-shadow:none;
  8652. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8653. font-weight:400;
  8654. font-style:normal;
  8655. font-size:14px;
  8656. color:#FFFFFF;
  8657. }
  8658. #u66719 {
  8659. border-width:0px;
  8660. position:absolute;
  8661. left:2015px;
  8662. top:305px;
  8663. width:60px;
  8664. height:30px;
  8665. display:flex;
  8666. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8667. font-weight:400;
  8668. font-style:normal;
  8669. font-size:14px;
  8670. color:#FFFFFF;
  8671. }
  8672. #u66719 .text {
  8673. position:absolute;
  8674. align-self:center;
  8675. padding:2px 2px 2px 2px;
  8676. box-sizing:border-box;
  8677. width:100%;
  8678. }
  8679. #u66719_text {
  8680. border-width:0px;
  8681. word-wrap:break-word;
  8682. text-transform:none;
  8683. }
  8684. #u66720_img {
  8685. border-width:0px;
  8686. position:absolute;
  8687. left:0px;
  8688. top:0px;
  8689. width:50px;
  8690. height:31px;
  8691. }
  8692. #u66720 {
  8693. border-width:0px;
  8694. position:absolute;
  8695. left:490px;
  8696. top:432px;
  8697. width:50px;
  8698. height:31px;
  8699. display:flex;
  8700. }
  8701. #u66720 .text {
  8702. position:absolute;
  8703. align-self:center;
  8704. padding:2px 2px 2px 2px;
  8705. box-sizing:border-box;
  8706. width:100%;
  8707. }
  8708. #u66720_text {
  8709. border-width:0px;
  8710. word-wrap:break-word;
  8711. text-transform:none;
  8712. visibility:hidden;
  8713. }
  8714. #u66721_div {
  8715. border-width:0px;
  8716. position:absolute;
  8717. left:0px;
  8718. top:0px;
  8719. width:60px;
  8720. height:30px;
  8721. background:inherit;
  8722. background-color:rgba(255, 255, 255, 1);
  8723. box-sizing:border-box;
  8724. border-width:1px;
  8725. border-style:solid;
  8726. border-color:rgba(24, 144, 255, 1);
  8727. border-radius:4px;
  8728. -moz-box-shadow:none;
  8729. -webkit-box-shadow:none;
  8730. box-shadow:none;
  8731. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8732. font-weight:400;
  8733. font-style:normal;
  8734. font-size:14px;
  8735. color:#1890FF;
  8736. }
  8737. #u66721 {
  8738. border-width:0px;
  8739. position:absolute;
  8740. left:371px;
  8741. top:787px;
  8742. width:60px;
  8743. height:30px;
  8744. display:flex;
  8745. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8746. font-weight:400;
  8747. font-style:normal;
  8748. font-size:14px;
  8749. color:#1890FF;
  8750. }
  8751. #u66721 .text {
  8752. position:absolute;
  8753. align-self:center;
  8754. padding:2px 2px 2px 2px;
  8755. box-sizing:border-box;
  8756. width:100%;
  8757. }
  8758. #u66721_text {
  8759. border-width:0px;
  8760. word-wrap:break-word;
  8761. text-transform:none;
  8762. }
  8763. #u66722 {
  8764. border-width:0px;
  8765. position:absolute;
  8766. left:0px;
  8767. top:0px;
  8768. width:0px;
  8769. height:0px;
  8770. }
  8771. #u66723_div {
  8772. border-width:0px;
  8773. position:absolute;
  8774. left:0px;
  8775. top:0px;
  8776. width:180px;
  8777. height:40px;
  8778. background:inherit;
  8779. background-color:rgba(255, 255, 255, 1);
  8780. box-sizing:border-box;
  8781. border-width:1px;
  8782. border-style:solid;
  8783. border-color:rgba(215, 215, 215, 1);
  8784. border-radius:4px;
  8785. -moz-box-shadow:none;
  8786. -webkit-box-shadow:none;
  8787. box-shadow:none;
  8788. font-size:14px;
  8789. }
  8790. #u66723 {
  8791. border-width:0px;
  8792. position:absolute;
  8793. left:2015px;
  8794. top:529px;
  8795. width:180px;
  8796. height:40px;
  8797. display:flex;
  8798. font-size:14px;
  8799. }
  8800. #u66723 .text {
  8801. position:absolute;
  8802. align-self:center;
  8803. padding:2px 2px 2px 2px;
  8804. box-sizing:border-box;
  8805. width:100%;
  8806. }
  8807. #u66723_text {
  8808. border-width:0px;
  8809. word-wrap:break-word;
  8810. text-transform:none;
  8811. visibility:hidden;
  8812. }
  8813. #u66724_input {
  8814. position:absolute;
  8815. left:0px;
  8816. top:0px;
  8817. width:172px;
  8818. height:31px;
  8819. padding:2px 2px 2px 2px;
  8820. font-family:'ArialMT', 'Arial', sans-serif;
  8821. font-weight:400;
  8822. font-style:normal;
  8823. font-size:14px;
  8824. letter-spacing:normal;
  8825. color:#AAAAAA;
  8826. vertical-align:none;
  8827. text-align:left;
  8828. text-transform:none;
  8829. background-color:transparent;
  8830. border-color:transparent;
  8831. }
  8832. #u66724_input.disabled {
  8833. position:absolute;
  8834. left:0px;
  8835. top:0px;
  8836. width:172px;
  8837. height:31px;
  8838. padding:2px 2px 2px 2px;
  8839. font-family:'ArialMT', 'Arial', sans-serif;
  8840. font-weight:400;
  8841. font-style:normal;
  8842. font-size:14px;
  8843. letter-spacing:normal;
  8844. color:#AAAAAA;
  8845. vertical-align:none;
  8846. text-align:left;
  8847. text-transform:none;
  8848. background-color:transparent;
  8849. border-color:transparent;
  8850. }
  8851. #u66724_div {
  8852. border-width:0px;
  8853. position:absolute;
  8854. left:0px;
  8855. top:0px;
  8856. width:172px;
  8857. height:31px;
  8858. background:inherit;
  8859. background-color:rgba(255, 255, 255, 1);
  8860. border:none;
  8861. border-radius:0px;
  8862. -moz-box-shadow:none;
  8863. -webkit-box-shadow:none;
  8864. box-shadow:none;
  8865. font-size:14px;
  8866. color:#AAAAAA;
  8867. }
  8868. #u66724 {
  8869. border-width:0px;
  8870. position:absolute;
  8871. left:2020px;
  8872. top:532px;
  8873. width:172px;
  8874. height:31px;
  8875. display:flex;
  8876. font-size:14px;
  8877. color:#AAAAAA;
  8878. }
  8879. #u66724 .text {
  8880. position:absolute;
  8881. align-self:flex-start;
  8882. padding:2px 2px 2px 2px;
  8883. box-sizing:border-box;
  8884. width:100%;
  8885. }
  8886. #u66724_div.disabled {
  8887. border-width:0px;
  8888. position:absolute;
  8889. left:0px;
  8890. top:0px;
  8891. width:172px;
  8892. height:31px;
  8893. background:inherit;
  8894. background-color:rgba(240, 240, 240, 1);
  8895. border:none;
  8896. border-radius:0px;
  8897. -moz-box-shadow:none;
  8898. -webkit-box-shadow:none;
  8899. box-shadow:none;
  8900. font-size:14px;
  8901. color:#AAAAAA;
  8902. }
  8903. #u66724.disabled {
  8904. }
  8905. .u66724_input_option {
  8906. font-size:14px;
  8907. }
  8908. #u66725 {
  8909. border-width:0px;
  8910. position:absolute;
  8911. left:0px;
  8912. top:0px;
  8913. width:0px;
  8914. height:0px;
  8915. }
  8916. #u66726_div {
  8917. border-width:0px;
  8918. position:absolute;
  8919. left:0px;
  8920. top:0px;
  8921. width:180px;
  8922. height:40px;
  8923. background:inherit;
  8924. background-color:rgba(255, 255, 255, 1);
  8925. box-sizing:border-box;
  8926. border-width:1px;
  8927. border-style:solid;
  8928. border-color:rgba(215, 215, 215, 1);
  8929. border-radius:4px;
  8930. -moz-box-shadow:none;
  8931. -webkit-box-shadow:none;
  8932. box-shadow:none;
  8933. font-size:14px;
  8934. }
  8935. #u66726 {
  8936. border-width:0px;
  8937. position:absolute;
  8938. left:2015px;
  8939. top:887px;
  8940. width:180px;
  8941. height:40px;
  8942. display:flex;
  8943. font-size:14px;
  8944. }
  8945. #u66726 .text {
  8946. position:absolute;
  8947. align-self:center;
  8948. padding:2px 2px 2px 2px;
  8949. box-sizing:border-box;
  8950. width:100%;
  8951. }
  8952. #u66726_text {
  8953. border-width:0px;
  8954. word-wrap:break-word;
  8955. text-transform:none;
  8956. visibility:hidden;
  8957. }
  8958. #u66727_input {
  8959. position:absolute;
  8960. left:0px;
  8961. top:0px;
  8962. width:172px;
  8963. height:31px;
  8964. padding:2px 2px 2px 2px;
  8965. font-family:'ArialMT', 'Arial', sans-serif;
  8966. font-weight:400;
  8967. font-style:normal;
  8968. font-size:14px;
  8969. letter-spacing:normal;
  8970. color:#AAAAAA;
  8971. vertical-align:none;
  8972. text-align:left;
  8973. text-transform:none;
  8974. background-color:transparent;
  8975. border-color:transparent;
  8976. }
  8977. #u66727_input.disabled {
  8978. position:absolute;
  8979. left:0px;
  8980. top:0px;
  8981. width:172px;
  8982. height:31px;
  8983. padding:2px 2px 2px 2px;
  8984. font-family:'ArialMT', 'Arial', sans-serif;
  8985. font-weight:400;
  8986. font-style:normal;
  8987. font-size:14px;
  8988. letter-spacing:normal;
  8989. color:#AAAAAA;
  8990. vertical-align:none;
  8991. text-align:left;
  8992. text-transform:none;
  8993. background-color:transparent;
  8994. border-color:transparent;
  8995. }
  8996. #u66727_div {
  8997. border-width:0px;
  8998. position:absolute;
  8999. left:0px;
  9000. top:0px;
  9001. width:172px;
  9002. height:31px;
  9003. background:inherit;
  9004. background-color:rgba(255, 255, 255, 1);
  9005. border:none;
  9006. border-radius:0px;
  9007. -moz-box-shadow:none;
  9008. -webkit-box-shadow:none;
  9009. box-shadow:none;
  9010. font-size:14px;
  9011. color:#AAAAAA;
  9012. }
  9013. #u66727 {
  9014. border-width:0px;
  9015. position:absolute;
  9016. left:2020px;
  9017. top:890px;
  9018. width:172px;
  9019. height:31px;
  9020. display:flex;
  9021. font-size:14px;
  9022. color:#AAAAAA;
  9023. }
  9024. #u66727 .text {
  9025. position:absolute;
  9026. align-self:flex-start;
  9027. padding:2px 2px 2px 2px;
  9028. box-sizing:border-box;
  9029. width:100%;
  9030. }
  9031. #u66727_div.disabled {
  9032. border-width:0px;
  9033. position:absolute;
  9034. left:0px;
  9035. top:0px;
  9036. width:172px;
  9037. height:31px;
  9038. background:inherit;
  9039. background-color:rgba(240, 240, 240, 1);
  9040. border:none;
  9041. border-radius:0px;
  9042. -moz-box-shadow:none;
  9043. -webkit-box-shadow:none;
  9044. box-shadow:none;
  9045. font-size:14px;
  9046. color:#AAAAAA;
  9047. }
  9048. #u66727.disabled {
  9049. }
  9050. .u66727_input_option {
  9051. font-size:14px;
  9052. }
  9053. #u66728_div {
  9054. border-width:0px;
  9055. position:absolute;
  9056. left:0px;
  9057. top:0px;
  9058. width:57px;
  9059. height:50px;
  9060. background:inherit;
  9061. background-color:rgba(255, 255, 255, 0);
  9062. border:none;
  9063. border-left:0px;
  9064. border-top:0px;
  9065. border-right:0px;
  9066. border-radius:0px;
  9067. border-bottom-right-radius:0px;
  9068. border-bottom-left-radius:0px;
  9069. -moz-box-shadow:none;
  9070. -webkit-box-shadow:none;
  9071. box-shadow:none;
  9072. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9073. font-weight:400;
  9074. font-style:normal;
  9075. font-size:14px;
  9076. line-height:40px;
  9077. }
  9078. #u66728 {
  9079. border-width:0px;
  9080. position:absolute;
  9081. left:2504px;
  9082. top:54px;
  9083. width:57px;
  9084. height:50px;
  9085. display:flex;
  9086. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9087. font-weight:400;
  9088. font-style:normal;
  9089. font-size:14px;
  9090. line-height:40px;
  9091. }
  9092. #u66728 .text {
  9093. position:absolute;
  9094. align-self:center;
  9095. padding:0px 0px 0px 0px;
  9096. box-sizing:border-box;
  9097. width:100%;
  9098. }
  9099. #u66728_text {
  9100. border-width:0px;
  9101. white-space:nowrap;
  9102. text-transform:none;
  9103. }
  9104. #u66729_div {
  9105. border-width:0px;
  9106. position:absolute;
  9107. left:0px;
  9108. top:0px;
  9109. width:57px;
  9110. height:50px;
  9111. background:inherit;
  9112. background-color:rgba(255, 255, 255, 0);
  9113. border:none;
  9114. border-left:0px;
  9115. border-top:0px;
  9116. border-right:0px;
  9117. border-radius:0px;
  9118. border-bottom-right-radius:0px;
  9119. border-bottom-left-radius:0px;
  9120. -moz-box-shadow:none;
  9121. -webkit-box-shadow:none;
  9122. box-shadow:none;
  9123. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9124. font-weight:400;
  9125. font-style:normal;
  9126. font-size:14px;
  9127. line-height:40px;
  9128. }
  9129. #u66729 {
  9130. border-width:0px;
  9131. position:absolute;
  9132. left:860px;
  9133. top:54px;
  9134. width:57px;
  9135. height:50px;
  9136. display:flex;
  9137. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9138. font-weight:400;
  9139. font-style:normal;
  9140. font-size:14px;
  9141. line-height:40px;
  9142. }
  9143. #u66729 .text {
  9144. position:absolute;
  9145. align-self:center;
  9146. padding:0px 0px 0px 0px;
  9147. box-sizing:border-box;
  9148. width:100%;
  9149. }
  9150. #u66729_text {
  9151. border-width:0px;
  9152. white-space:nowrap;
  9153. text-transform:none;
  9154. }