styles.css 213 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135113611371138113911401141114211431144114511461147114811491150115111521153115411551156115711581159116011611162116311641165116611671168116911701171117211731174117511761177117811791180118111821183118411851186118711881189119011911192119311941195119611971198119912001201120212031204120512061207120812091210121112121213121412151216121712181219122012211222122312241225122612271228122912301231123212331234123512361237123812391240124112421243124412451246124712481249125012511252125312541255125612571258125912601261126212631264126512661267126812691270127112721273127412751276127712781279128012811282128312841285128612871288128912901291129212931294129512961297129812991300130113021303130413051306130713081309131013111312131313141315131613171318131913201321132213231324132513261327132813291330133113321333133413351336133713381339134013411342134313441345134613471348134913501351135213531354135513561357135813591360136113621363136413651366136713681369137013711372137313741375137613771378137913801381138213831384138513861387138813891390139113921393139413951396139713981399140014011402140314041405140614071408140914101411141214131414141514161417141814191420142114221423142414251426142714281429143014311432143314341435143614371438143914401441144214431444144514461447144814491450145114521453145414551456145714581459146014611462146314641465146614671468146914701471147214731474147514761477147814791480148114821483148414851486148714881489149014911492149314941495149614971498149915001501150215031504150515061507150815091510151115121513151415151516151715181519152015211522152315241525152615271528152915301531153215331534153515361537153815391540154115421543154415451546154715481549155015511552155315541555155615571558155915601561156215631564156515661567156815691570157115721573157415751576157715781579158015811582158315841585158615871588158915901591159215931594159515961597159815991600160116021603160416051606160716081609161016111612161316141615161616171618161916201621162216231624162516261627162816291630163116321633163416351636163716381639164016411642164316441645164616471648164916501651165216531654165516561657165816591660166116621663166416651666166716681669167016711672167316741675167616771678167916801681168216831684168516861687168816891690169116921693169416951696169716981699170017011702170317041705170617071708170917101711171217131714171517161717171817191720172117221723172417251726172717281729173017311732173317341735173617371738173917401741174217431744174517461747174817491750175117521753175417551756175717581759176017611762176317641765176617671768176917701771177217731774177517761777177817791780178117821783178417851786178717881789179017911792179317941795179617971798179918001801180218031804180518061807180818091810181118121813181418151816181718181819182018211822182318241825182618271828182918301831183218331834183518361837183818391840184118421843184418451846184718481849185018511852185318541855185618571858185918601861186218631864186518661867186818691870187118721873187418751876187718781879188018811882188318841885188618871888188918901891189218931894189518961897189818991900190119021903190419051906190719081909191019111912191319141915191619171918191919201921192219231924192519261927192819291930193119321933193419351936193719381939194019411942194319441945194619471948194919501951195219531954195519561957195819591960196119621963196419651966196719681969197019711972197319741975197619771978197919801981198219831984198519861987198819891990199119921993199419951996199719981999200020012002200320042005200620072008200920102011201220132014201520162017201820192020202120222023202420252026202720282029203020312032203320342035203620372038203920402041204220432044204520462047204820492050205120522053205420552056205720582059206020612062206320642065206620672068206920702071207220732074207520762077207820792080208120822083208420852086208720882089209020912092209320942095209620972098209921002101210221032104210521062107210821092110211121122113211421152116211721182119212021212122212321242125212621272128212921302131213221332134213521362137213821392140214121422143214421452146214721482149215021512152215321542155215621572158215921602161216221632164216521662167216821692170217121722173217421752176217721782179218021812182218321842185218621872188218921902191219221932194219521962197219821992200220122022203220422052206220722082209221022112212221322142215221622172218221922202221222222232224222522262227222822292230223122322233223422352236223722382239224022412242224322442245224622472248224922502251225222532254225522562257225822592260226122622263226422652266226722682269227022712272227322742275227622772278227922802281228222832284228522862287228822892290229122922293229422952296229722982299230023012302230323042305230623072308230923102311231223132314231523162317231823192320232123222323232423252326232723282329233023312332233323342335233623372338233923402341234223432344234523462347234823492350235123522353235423552356235723582359236023612362236323642365236623672368236923702371237223732374237523762377237823792380238123822383238423852386238723882389239023912392239323942395239623972398239924002401240224032404240524062407240824092410241124122413241424152416241724182419242024212422242324242425242624272428242924302431243224332434243524362437243824392440244124422443244424452446244724482449245024512452245324542455245624572458245924602461246224632464246524662467246824692470247124722473247424752476247724782479248024812482248324842485248624872488248924902491249224932494249524962497249824992500250125022503250425052506250725082509251025112512251325142515251625172518251925202521252225232524252525262527252825292530253125322533253425352536253725382539254025412542254325442545254625472548254925502551255225532554255525562557255825592560256125622563256425652566256725682569257025712572257325742575257625772578257925802581258225832584258525862587258825892590259125922593259425952596259725982599260026012602260326042605260626072608260926102611261226132614261526162617261826192620262126222623262426252626262726282629263026312632263326342635263626372638263926402641264226432644264526462647264826492650265126522653265426552656265726582659266026612662266326642665266626672668266926702671267226732674267526762677267826792680268126822683268426852686268726882689269026912692269326942695269626972698269927002701270227032704270527062707270827092710271127122713271427152716271727182719272027212722272327242725272627272728272927302731273227332734273527362737273827392740274127422743274427452746274727482749275027512752275327542755275627572758275927602761276227632764276527662767276827692770277127722773277427752776277727782779278027812782278327842785278627872788278927902791279227932794279527962797279827992800280128022803280428052806280728082809281028112812281328142815281628172818281928202821282228232824282528262827282828292830283128322833283428352836283728382839284028412842284328442845284628472848284928502851285228532854285528562857285828592860286128622863286428652866286728682869287028712872287328742875287628772878287928802881288228832884288528862887288828892890289128922893289428952896289728982899290029012902290329042905290629072908290929102911291229132914291529162917291829192920292129222923292429252926292729282929293029312932293329342935293629372938293929402941294229432944294529462947294829492950295129522953295429552956295729582959296029612962296329642965296629672968296929702971297229732974297529762977297829792980298129822983298429852986298729882989299029912992299329942995299629972998299930003001300230033004300530063007300830093010301130123013301430153016301730183019302030213022302330243025302630273028302930303031303230333034303530363037303830393040304130423043304430453046304730483049305030513052305330543055305630573058305930603061306230633064306530663067306830693070307130723073307430753076307730783079308030813082308330843085308630873088308930903091309230933094309530963097309830993100310131023103310431053106310731083109311031113112311331143115311631173118311931203121312231233124312531263127312831293130313131323133313431353136313731383139314031413142314331443145314631473148314931503151315231533154315531563157315831593160316131623163316431653166316731683169317031713172317331743175317631773178317931803181318231833184318531863187318831893190319131923193319431953196319731983199320032013202320332043205320632073208320932103211321232133214321532163217321832193220322132223223322432253226322732283229323032313232323332343235323632373238323932403241324232433244324532463247324832493250325132523253325432553256325732583259326032613262326332643265326632673268326932703271327232733274327532763277327832793280328132823283328432853286328732883289329032913292329332943295329632973298329933003301330233033304330533063307330833093310331133123313331433153316331733183319332033213322332333243325332633273328332933303331333233333334333533363337333833393340334133423343334433453346334733483349335033513352335333543355335633573358335933603361336233633364336533663367336833693370337133723373337433753376337733783379338033813382338333843385338633873388338933903391339233933394339533963397339833993400340134023403340434053406340734083409341034113412341334143415341634173418341934203421342234233424342534263427342834293430343134323433343434353436343734383439344034413442344334443445344634473448344934503451345234533454345534563457345834593460346134623463346434653466346734683469347034713472347334743475347634773478347934803481348234833484348534863487348834893490349134923493349434953496349734983499350035013502350335043505350635073508350935103511351235133514351535163517351835193520352135223523352435253526352735283529353035313532353335343535353635373538353935403541354235433544354535463547354835493550355135523553355435553556355735583559356035613562356335643565356635673568356935703571357235733574357535763577357835793580358135823583358435853586358735883589359035913592359335943595359635973598359936003601360236033604360536063607360836093610361136123613361436153616361736183619362036213622362336243625362636273628362936303631363236333634363536363637363836393640364136423643364436453646364736483649365036513652365336543655365636573658365936603661366236633664366536663667366836693670367136723673367436753676367736783679368036813682368336843685368636873688368936903691369236933694369536963697369836993700370137023703370437053706370737083709371037113712371337143715371637173718371937203721372237233724372537263727372837293730373137323733373437353736373737383739374037413742374337443745374637473748374937503751375237533754375537563757375837593760376137623763376437653766376737683769377037713772377337743775377637773778377937803781378237833784378537863787378837893790379137923793379437953796379737983799380038013802380338043805380638073808380938103811381238133814381538163817381838193820382138223823382438253826382738283829383038313832383338343835383638373838383938403841384238433844384538463847384838493850385138523853385438553856385738583859386038613862386338643865386638673868386938703871387238733874387538763877387838793880388138823883388438853886388738883889389038913892389338943895389638973898389939003901390239033904390539063907390839093910391139123913391439153916391739183919392039213922392339243925392639273928392939303931393239333934393539363937393839393940394139423943394439453946394739483949395039513952395339543955395639573958395939603961396239633964396539663967396839693970397139723973397439753976397739783979398039813982398339843985398639873988398939903991399239933994399539963997399839994000400140024003400440054006400740084009401040114012401340144015401640174018401940204021402240234024402540264027402840294030403140324033403440354036403740384039404040414042404340444045404640474048404940504051405240534054405540564057405840594060406140624063406440654066406740684069407040714072407340744075407640774078407940804081408240834084408540864087408840894090409140924093409440954096409740984099410041014102410341044105410641074108410941104111411241134114411541164117411841194120412141224123412441254126412741284129413041314132413341344135413641374138413941404141414241434144414541464147414841494150415141524153415441554156415741584159416041614162416341644165416641674168416941704171417241734174417541764177417841794180418141824183418441854186418741884189419041914192419341944195419641974198419942004201420242034204420542064207420842094210421142124213421442154216421742184219422042214222422342244225422642274228422942304231423242334234423542364237423842394240424142424243424442454246424742484249425042514252425342544255425642574258425942604261426242634264426542664267426842694270427142724273427442754276427742784279428042814282428342844285428642874288428942904291429242934294429542964297429842994300430143024303430443054306430743084309431043114312431343144315431643174318431943204321432243234324432543264327432843294330433143324333433443354336433743384339434043414342434343444345434643474348434943504351435243534354435543564357435843594360436143624363436443654366436743684369437043714372437343744375437643774378437943804381438243834384438543864387438843894390439143924393439443954396439743984399440044014402440344044405440644074408440944104411441244134414441544164417441844194420442144224423442444254426442744284429443044314432443344344435443644374438443944404441444244434444444544464447444844494450445144524453445444554456445744584459446044614462446344644465446644674468446944704471447244734474447544764477447844794480448144824483448444854486448744884489449044914492449344944495449644974498449945004501450245034504450545064507450845094510451145124513451445154516451745184519452045214522452345244525452645274528452945304531453245334534453545364537453845394540454145424543454445454546454745484549455045514552455345544555455645574558455945604561456245634564456545664567456845694570457145724573457445754576457745784579458045814582458345844585458645874588458945904591459245934594459545964597459845994600460146024603460446054606460746084609461046114612461346144615461646174618461946204621462246234624462546264627462846294630463146324633463446354636463746384639464046414642464346444645464646474648464946504651465246534654465546564657465846594660466146624663466446654666466746684669467046714672467346744675467646774678467946804681468246834684468546864687468846894690469146924693469446954696469746984699470047014702470347044705470647074708470947104711471247134714471547164717471847194720472147224723472447254726472747284729473047314732473347344735473647374738473947404741474247434744474547464747474847494750475147524753475447554756475747584759476047614762476347644765476647674768476947704771477247734774477547764777477847794780478147824783478447854786478747884789479047914792479347944795479647974798479948004801480248034804480548064807480848094810481148124813481448154816481748184819482048214822482348244825482648274828482948304831483248334834483548364837483848394840484148424843484448454846484748484849485048514852485348544855485648574858485948604861486248634864486548664867486848694870487148724873487448754876487748784879488048814882488348844885488648874888488948904891489248934894489548964897489848994900490149024903490449054906490749084909491049114912491349144915491649174918491949204921492249234924492549264927492849294930493149324933493449354936493749384939494049414942494349444945494649474948494949504951495249534954495549564957495849594960496149624963496449654966496749684969497049714972497349744975497649774978497949804981498249834984498549864987498849894990499149924993499449954996499749984999500050015002500350045005500650075008500950105011501250135014501550165017501850195020502150225023502450255026502750285029503050315032503350345035503650375038503950405041504250435044504550465047504850495050505150525053505450555056505750585059506050615062506350645065506650675068506950705071507250735074507550765077507850795080508150825083508450855086508750885089509050915092509350945095509650975098509951005101510251035104510551065107510851095110511151125113511451155116511751185119512051215122512351245125512651275128512951305131513251335134513551365137513851395140514151425143514451455146514751485149515051515152515351545155515651575158515951605161516251635164516551665167516851695170517151725173517451755176517751785179518051815182518351845185518651875188518951905191519251935194519551965197519851995200520152025203520452055206520752085209521052115212521352145215521652175218521952205221522252235224522552265227522852295230523152325233523452355236523752385239524052415242524352445245524652475248524952505251525252535254525552565257525852595260526152625263526452655266526752685269527052715272527352745275527652775278527952805281528252835284528552865287528852895290529152925293529452955296529752985299530053015302530353045305530653075308530953105311531253135314531553165317531853195320532153225323532453255326532753285329533053315332533353345335533653375338533953405341534253435344534553465347534853495350535153525353535453555356535753585359536053615362536353645365536653675368536953705371537253735374537553765377537853795380538153825383538453855386538753885389539053915392539353945395539653975398539954005401540254035404540554065407540854095410541154125413541454155416541754185419542054215422542354245425542654275428542954305431543254335434543554365437543854395440544154425443544454455446544754485449545054515452545354545455545654575458545954605461546254635464546554665467546854695470547154725473547454755476547754785479548054815482548354845485548654875488548954905491549254935494549554965497549854995500550155025503550455055506550755085509551055115512551355145515551655175518551955205521552255235524552555265527552855295530553155325533553455355536553755385539554055415542554355445545554655475548554955505551555255535554555555565557555855595560556155625563556455655566556755685569557055715572557355745575557655775578557955805581558255835584558555865587558855895590559155925593559455955596559755985599560056015602560356045605560656075608560956105611561256135614561556165617561856195620562156225623562456255626562756285629563056315632563356345635563656375638563956405641564256435644564556465647564856495650565156525653565456555656565756585659566056615662566356645665566656675668566956705671567256735674567556765677567856795680568156825683568456855686568756885689569056915692569356945695569656975698569957005701570257035704570557065707570857095710571157125713571457155716571757185719572057215722572357245725572657275728572957305731573257335734573557365737573857395740574157425743574457455746574757485749575057515752575357545755575657575758575957605761576257635764576557665767576857695770577157725773577457755776577757785779578057815782578357845785578657875788578957905791579257935794579557965797579857995800580158025803580458055806580758085809581058115812581358145815581658175818581958205821582258235824582558265827582858295830583158325833583458355836583758385839584058415842584358445845584658475848584958505851585258535854585558565857585858595860586158625863586458655866586758685869587058715872587358745875587658775878587958805881588258835884588558865887588858895890589158925893589458955896589758985899590059015902590359045905590659075908590959105911591259135914591559165917591859195920592159225923592459255926592759285929593059315932593359345935593659375938593959405941594259435944594559465947594859495950595159525953595459555956595759585959596059615962596359645965596659675968596959705971597259735974597559765977597859795980598159825983598459855986598759885989599059915992599359945995599659975998599960006001600260036004600560066007600860096010601160126013601460156016601760186019602060216022602360246025602660276028602960306031603260336034603560366037603860396040604160426043604460456046604760486049605060516052605360546055605660576058605960606061606260636064606560666067606860696070607160726073607460756076607760786079608060816082608360846085608660876088608960906091609260936094609560966097609860996100610161026103610461056106610761086109611061116112611361146115611661176118611961206121612261236124612561266127612861296130613161326133613461356136613761386139614061416142614361446145614661476148614961506151615261536154615561566157615861596160616161626163616461656166616761686169617061716172617361746175617661776178617961806181618261836184618561866187618861896190619161926193619461956196619761986199620062016202620362046205620662076208620962106211621262136214621562166217621862196220622162226223622462256226622762286229623062316232623362346235623662376238623962406241624262436244624562466247624862496250625162526253625462556256625762586259626062616262626362646265626662676268626962706271627262736274627562766277627862796280628162826283628462856286628762886289629062916292629362946295629662976298629963006301630263036304630563066307630863096310631163126313631463156316631763186319632063216322632363246325632663276328632963306331633263336334633563366337633863396340634163426343634463456346634763486349635063516352635363546355635663576358635963606361636263636364636563666367636863696370637163726373637463756376637763786379638063816382638363846385638663876388638963906391639263936394639563966397639863996400640164026403640464056406640764086409641064116412641364146415641664176418641964206421642264236424642564266427642864296430643164326433643464356436643764386439644064416442644364446445644664476448644964506451645264536454645564566457645864596460646164626463646464656466646764686469647064716472647364746475647664776478647964806481648264836484648564866487648864896490649164926493649464956496649764986499650065016502650365046505650665076508650965106511651265136514651565166517651865196520652165226523652465256526652765286529653065316532653365346535653665376538653965406541654265436544654565466547654865496550655165526553655465556556655765586559656065616562656365646565656665676568656965706571657265736574657565766577657865796580658165826583658465856586658765886589659065916592659365946595659665976598659966006601660266036604660566066607660866096610661166126613661466156616661766186619662066216622662366246625662666276628662966306631663266336634663566366637663866396640664166426643664466456646664766486649665066516652665366546655665666576658665966606661666266636664666566666667666866696670667166726673667466756676667766786679668066816682668366846685668666876688668966906691669266936694669566966697669866996700670167026703670467056706670767086709671067116712671367146715671667176718671967206721672267236724672567266727672867296730673167326733673467356736673767386739674067416742674367446745674667476748674967506751675267536754675567566757675867596760676167626763676467656766676767686769677067716772677367746775677667776778677967806781678267836784678567866787678867896790679167926793679467956796679767986799680068016802680368046805680668076808680968106811681268136814681568166817681868196820682168226823682468256826682768286829683068316832683368346835683668376838683968406841684268436844684568466847684868496850685168526853685468556856685768586859686068616862686368646865686668676868686968706871687268736874687568766877687868796880688168826883688468856886688768886889689068916892689368946895689668976898689969006901690269036904690569066907690869096910691169126913691469156916691769186919692069216922692369246925692669276928692969306931693269336934693569366937693869396940694169426943694469456946694769486949695069516952695369546955695669576958695969606961696269636964696569666967696869696970697169726973697469756976697769786979698069816982698369846985698669876988698969906991699269936994699569966997699869997000700170027003700470057006700770087009701070117012701370147015701670177018701970207021702270237024702570267027702870297030703170327033703470357036703770387039704070417042704370447045704670477048704970507051705270537054705570567057705870597060706170627063706470657066706770687069707070717072707370747075707670777078707970807081708270837084708570867087708870897090709170927093709470957096709770987099710071017102710371047105710671077108710971107111711271137114711571167117711871197120712171227123712471257126712771287129713071317132713371347135713671377138713971407141714271437144714571467147714871497150715171527153715471557156715771587159716071617162716371647165716671677168716971707171717271737174717571767177717871797180718171827183718471857186718771887189719071917192719371947195719671977198719972007201720272037204720572067207720872097210721172127213721472157216721772187219722072217222722372247225722672277228722972307231723272337234723572367237723872397240724172427243724472457246724772487249725072517252725372547255725672577258725972607261726272637264726572667267726872697270727172727273727472757276727772787279728072817282728372847285728672877288728972907291729272937294729572967297729872997300730173027303730473057306730773087309731073117312731373147315731673177318731973207321732273237324732573267327732873297330733173327333733473357336733773387339734073417342734373447345734673477348734973507351735273537354735573567357735873597360736173627363736473657366736773687369737073717372737373747375737673777378737973807381738273837384738573867387738873897390739173927393739473957396739773987399740074017402740374047405740674077408740974107411741274137414741574167417741874197420742174227423742474257426742774287429743074317432743374347435743674377438743974407441744274437444744574467447744874497450745174527453745474557456745774587459746074617462746374647465746674677468746974707471747274737474747574767477747874797480748174827483748474857486748774887489749074917492749374947495749674977498749975007501750275037504750575067507750875097510751175127513751475157516751775187519752075217522752375247525752675277528752975307531753275337534753575367537753875397540754175427543754475457546754775487549755075517552755375547555755675577558755975607561756275637564756575667567756875697570757175727573757475757576757775787579758075817582758375847585758675877588758975907591759275937594759575967597759875997600760176027603760476057606760776087609761076117612761376147615761676177618761976207621762276237624762576267627762876297630763176327633763476357636763776387639764076417642764376447645764676477648764976507651765276537654765576567657765876597660766176627663766476657666766776687669767076717672767376747675767676777678767976807681768276837684768576867687768876897690769176927693769476957696769776987699770077017702770377047705770677077708770977107711771277137714771577167717771877197720772177227723772477257726772777287729773077317732773377347735773677377738773977407741774277437744774577467747774877497750775177527753775477557756775777587759776077617762776377647765776677677768776977707771777277737774777577767777777877797780778177827783778477857786778777887789779077917792779377947795779677977798779978007801780278037804780578067807780878097810781178127813781478157816781778187819782078217822782378247825782678277828782978307831783278337834783578367837783878397840784178427843784478457846784778487849785078517852785378547855785678577858785978607861786278637864786578667867786878697870787178727873787478757876787778787879788078817882788378847885788678877888788978907891789278937894789578967897789878997900790179027903790479057906790779087909791079117912791379147915791679177918791979207921792279237924792579267927792879297930793179327933793479357936793779387939794079417942794379447945794679477948794979507951795279537954795579567957795879597960796179627963796479657966796779687969797079717972797379747975797679777978797979807981798279837984798579867987798879897990799179927993799479957996799779987999800080018002800380048005800680078008800980108011801280138014801580168017801880198020802180228023802480258026802780288029803080318032803380348035803680378038803980408041804280438044804580468047804880498050805180528053805480558056805780588059806080618062806380648065806680678068806980708071807280738074807580768077807880798080808180828083808480858086808780888089809080918092809380948095809680978098809981008101810281038104810581068107810881098110811181128113811481158116811781188119812081218122812381248125812681278128812981308131813281338134813581368137813881398140814181428143814481458146814781488149815081518152815381548155815681578158815981608161816281638164816581668167816881698170817181728173817481758176817781788179818081818182818381848185818681878188818981908191819281938194819581968197819881998200820182028203820482058206820782088209821082118212821382148215821682178218821982208221822282238224822582268227822882298230823182328233823482358236823782388239824082418242824382448245824682478248824982508251825282538254825582568257825882598260826182628263826482658266826782688269827082718272827382748275827682778278827982808281828282838284828582868287828882898290829182928293829482958296829782988299830083018302830383048305830683078308830983108311831283138314831583168317831883198320832183228323832483258326832783288329833083318332833383348335833683378338833983408341834283438344834583468347834883498350835183528353835483558356835783588359836083618362836383648365836683678368836983708371837283738374837583768377837883798380838183828383838483858386838783888389839083918392839383948395839683978398839984008401840284038404840584068407840884098410841184128413841484158416841784188419842084218422842384248425842684278428842984308431843284338434843584368437843884398440844184428443844484458446844784488449845084518452845384548455845684578458845984608461846284638464846584668467846884698470847184728473847484758476847784788479848084818482848384848485848684878488848984908491849284938494849584968497849884998500850185028503850485058506850785088509851085118512851385148515851685178518851985208521852285238524852585268527852885298530853185328533853485358536853785388539854085418542854385448545854685478548854985508551855285538554855585568557855885598560856185628563856485658566856785688569857085718572857385748575857685778578857985808581858285838584858585868587858885898590859185928593859485958596859785988599860086018602860386048605860686078608860986108611861286138614861586168617861886198620862186228623862486258626862786288629863086318632863386348635863686378638863986408641864286438644864586468647864886498650865186528653865486558656865786588659866086618662866386648665866686678668866986708671867286738674867586768677867886798680868186828683868486858686868786888689869086918692869386948695869686978698869987008701870287038704870587068707870887098710871187128713871487158716871787188719872087218722872387248725872687278728872987308731873287338734873587368737873887398740874187428743874487458746874787488749875087518752875387548755875687578758875987608761876287638764876587668767876887698770877187728773877487758776877787788779878087818782878387848785878687878788878987908791879287938794879587968797879887998800880188028803880488058806880788088809881088118812881388148815881688178818881988208821882288238824882588268827882888298830883188328833883488358836883788388839884088418842884388448845884688478848884988508851885288538854885588568857885888598860886188628863886488658866886788688869887088718872887388748875887688778878887988808881888288838884888588868887888888898890889188928893889488958896889788988899890089018902890389048905890689078908890989108911891289138914891589168917891889198920892189228923892489258926892789288929893089318932893389348935893689378938893989408941894289438944894589468947894889498950895189528953895489558956895789588959896089618962896389648965896689678968896989708971897289738974897589768977897889798980898189828983898489858986898789888989899089918992899389948995899689978998899990009001900290039004900590069007900890099010901190129013901490159016901790189019902090219022902390249025902690279028902990309031903290339034903590369037903890399040904190429043904490459046904790489049905090519052905390549055905690579058905990609061906290639064906590669067906890699070907190729073907490759076907790789079908090819082908390849085908690879088908990909091909290939094909590969097909890999100910191029103910491059106910791089109911091119112911391149115911691179118911991209121912291239124912591269127912891299130913191329133913491359136913791389139914091419142914391449145914691479148914991509151915291539154915591569157915891599160916191629163916491659166916791689169917091719172917391749175917691779178917991809181918291839184918591869187918891899190919191929193919491959196919791989199920092019202920392049205920692079208920992109211921292139214921592169217921892199220922192229223922492259226922792289229923092319232923392349235923692379238923992409241924292439244924592469247924892499250925192529253925492559256925792589259926092619262926392649265926692679268926992709271927292739274927592769277927892799280928192829283928492859286928792889289929092919292929392949295929692979298929993009301930293039304930593069307930893099310931193129313931493159316931793189319932093219322932393249325932693279328932993309331933293339334933593369337933893399340934193429343934493459346934793489349935093519352935393549355935693579358935993609361936293639364936593669367936893699370937193729373937493759376937793789379938093819382938393849385938693879388938993909391939293939394939593969397939893999400940194029403940494059406940794089409941094119412941394149415941694179418941994209421942294239424942594269427942894299430943194329433943494359436943794389439944094419442944394449445944694479448944994509451945294539454945594569457945894599460946194629463946494659466946794689469947094719472947394749475947694779478947994809481948294839484948594869487948894899490949194929493949494959496949794989499950095019502950395049505950695079508950995109511951295139514951595169517951895199520952195229523952495259526952795289529953095319532953395349535953695379538953995409541954295439544954595469547954895499550955195529553955495559556955795589559956095619562956395649565956695679568956995709571957295739574957595769577957895799580958195829583958495859586958795889589959095919592959395949595959695979598959996009601960296039604960596069607960896099610961196129613961496159616961796189619962096219622962396249625962696279628962996309631963296339634963596369637963896399640964196429643964496459646964796489649965096519652965396549655965696579658965996609661966296639664966596669667966896699670967196729673967496759676967796789679968096819682968396849685968696879688968996909691969296939694969596969697969896999700970197029703970497059706970797089709971097119712971397149715971697179718971997209721972297239724972597269727972897299730973197329733973497359736973797389739974097419742974397449745974697479748974997509751975297539754975597569757975897599760976197629763976497659766976797689769977097719772977397749775977697779778977997809781978297839784978597869787978897899790979197929793979497959796979797989799980098019802980398049805980698079808980998109811981298139814981598169817981898199820982198229823982498259826982798289829983098319832983398349835983698379838983998409841984298439844984598469847984898499850985198529853985498559856985798589859986098619862986398649865986698679868986998709871987298739874987598769877987898799880988198829883988498859886988798889889989098919892989398949895989698979898989999009901990299039904990599069907990899099910991199129913991499159916991799189919992099219922992399249925992699279928992999309931993299339934993599369937993899399940994199429943994499459946994799489949995099519952995399549955995699579958995999609961996299639964996599669967996899699970997199729973997499759976997799789979998099819982998399849985998699879988998999909991999299939994999599969997999899991000010001100021000310004100051000610007100081000910010100111001210013100141001510016100171001810019100201002110022100231002410025100261002710028100291003010031100321003310034100351003610037100381003910040100411004210043100441004510046100471004810049100501005110052100531005410055100561005710058100591006010061100621006310064100651006610067100681006910070100711007210073100741007510076100771007810079100801008110082100831008410085100861008710088100891009010091100921009310094100951009610097100981009910100101011010210103101041010510106101071010810109101101011110112101131011410115101161011710118101191012010121101221012310124101251012610127101281012910130101311013210133101341013510136101371013810139101401014110142101431014410145101461014710148101491015010151101521015310154101551015610157101581015910160101611016210163101641016510166101671016810169101701017110172101731017410175101761017710178101791018010181101821018310184101851018610187101881018910190101911019210193101941019510196101971019810199102001020110202102031020410205102061020710208102091021010211102121021310214102151021610217102181021910220102211022210223102241022510226102271022810229102301023110232102331023410235102361023710238102391024010241102421024310244102451024610247102481024910250102511025210253102541025510256102571025810259102601026110262102631026410265102661026710268102691027010271102721027310274102751027610277102781027910280102811028210283102841028510286102871028810289102901029110292102931029410295102961029710298102991030010301103021030310304103051030610307103081030910310103111031210313103141031510316103171031810319103201032110322103231032410325103261032710328103291033010331103321033310334103351033610337103381033910340103411034210343103441034510346103471034810349103501035110352103531035410355103561035710358103591036010361103621036310364103651036610367103681036910370103711037210373103741037510376103771037810379103801038110382103831038410385103861038710388103891039010391103921039310394103951039610397103981039910400104011040210403104041040510406104071040810409104101041110412104131041410415104161041710418104191042010421104221042310424104251042610427104281042910430104311043210433104341043510436104371043810439104401044110442104431044410445104461044710448104491045010451104521045310454104551045610457104581045910460104611046210463104641046510466104671046810469104701047110472104731047410475104761047710478104791048010481104821048310484104851048610487104881048910490104911049210493104941049510496104971049810499105001050110502105031050410505105061050710508105091051010511105121051310514105151051610517105181051910520105211052210523105241052510526105271052810529105301053110532105331053410535105361053710538105391054010541105421054310544105451054610547105481054910550105511055210553105541055510556105571055810559105601056110562105631056410565105661056710568105691057010571105721057310574105751057610577105781057910580105811058210583105841058510586105871058810589105901059110592105931059410595105961059710598105991060010601106021060310604106051060610607106081060910610106111061210613106141061510616106171061810619106201062110622106231062410625106261062710628106291063010631106321063310634106351063610637106381063910640106411064210643106441064510646106471064810649106501065110652106531065410655106561065710658106591066010661106621066310664106651066610667106681066910670106711067210673106741067510676106771067810679106801068110682106831068410685106861068710688106891069010691106921069310694106951069610697106981069910700107011070210703107041070510706107071070810709107101071110712107131071410715107161071710718107191072010721107221072310724107251072610727107281072910730107311073210733107341073510736107371073810739107401074110742107431074410745107461074710748107491075010751107521075310754107551075610757107581075910760107611076210763107641076510766107671076810769107701077110772107731077410775107761077710778107791078010781107821078310784107851078610787107881078910790107911079210793107941079510796107971079810799108001080110802108031080410805108061080710808108091081010811108121081310814108151081610817108181081910820108211082210823108241082510826108271082810829108301083110832108331083410835108361083710838108391084010841108421084310844108451084610847108481084910850108511085210853108541085510856108571085810859108601086110862108631086410865108661086710868108691087010871108721087310874108751087610877108781087910880108811088210883108841088510886108871088810889108901089110892108931089410895108961089710898108991090010901109021090310904109051090610907109081090910910109111091210913109141091510916109171091810919109201092110922109231092410925109261092710928109291093010931109321093310934109351093610937109381093910940109411094210943109441094510946109471094810949109501095110952109531095410955109561095710958109591096010961109621096310964109651096610967109681096910970109711097210973109741097510976109771097810979109801098110982109831098410985109861098710988109891099010991109921099310994109951099610997109981099911000110011100211003110041100511006110071100811009110101101111012110131101411015110161101711018110191102011021110221102311024110251102611027110281102911030110311103211033110341103511036110371103811039110401104111042110431104411045110461104711048110491105011051110521105311054110551105611057110581105911060110611106211063110641106511066110671106811069110701107111072110731107411075110761107711078110791108011081110821108311084110851108611087110881108911090110911109211093110941109511096110971109811099111001110111102111031110411105111061110711108111091111011111111121111311114111151111611117111181111911120111211112211123111241112511126111271112811129111301113111132111331113411135111361113711138111391114011141111421114311144111451114611147111481114911150111511115211153111541115511156111571115811159111601116111162111631116411165111661116711168111691117011171111721117311174111751117611177111781117911180111811118211183111841118511186111871118811189111901119111192111931119411195111961119711198111991120011201112021120311204112051120611207112081120911210112111121211213112141121511216112171121811219112201122111222112231122411225112261122711228112291123011231112321123311234112351123611237112381123911240112411124211243112441124511246112471124811249112501125111252112531125411255112561125711258112591126011261112621126311264112651126611267112681126911270112711127211273112741127511276112771127811279112801128111282112831128411285112861128711288112891129011291112921129311294112951129611297112981129911300113011130211303113041130511306113071130811309113101131111312113131131411315113161131711318113191132011321113221132311324113251132611327113281132911330113311133211333113341133511336113371133811339113401134111342113431134411345113461134711348113491135011351113521135311354113551135611357113581135911360113611136211363113641136511366113671136811369113701137111372113731137411375113761137711378113791138011381113821138311384113851138611387113881138911390113911139211393113941139511396113971139811399114001140111402114031140411405114061140711408114091141011411114121141311414114151141611417114181141911420114211142211423114241142511426114271142811429114301143111432114331143411435114361143711438114391144011441114421144311444114451144611447114481144911450114511145211453114541145511456114571145811459114601146111462114631146411465114661146711468114691147011471114721147311474114751147611477114781147911480114811148211483114841148511486114871148811489114901149111492114931149411495114961149711498114991150011501115021150311504115051150611507115081150911510115111151211513115141151511516115171151811519115201152111522115231152411525115261152711528115291153011531115321153311534115351153611537115381153911540115411154211543115441154511546115471154811549115501155111552115531155411555115561155711558115591156011561115621156311564115651156611567115681156911570115711157211573115741157511576115771157811579115801158111582115831158411585115861158711588115891159011591115921159311594115951159611597115981159911600116011160211603116041160511606116071160811609116101161111612116131161411615116161161711618116191162011621116221162311624116251162611627116281162911630116311163211633116341163511636116371163811639116401164111642116431164411645116461164711648116491165011651116521165311654116551165611657116581165911660116611166211663116641166511666116671166811669116701167111672116731167411675116761167711678116791168011681116821168311684116851168611687116881168911690116911169211693116941169511696116971169811699117001170111702117031170411705117061170711708117091171011711117121171311714117151171611717117181171911720117211172211723117241172511726117271172811729117301173111732117331173411735117361173711738117391174011741117421174311744117451174611747117481174911750117511175211753117541175511756117571175811759117601176111762117631176411765117661176711768117691177011771117721177311774117751177611777117781177911780117811178211783117841178511786117871178811789117901179111792117931179411795117961179711798117991180011801118021180311804118051180611807118081180911810118111181211813118141181511816118171181811819118201182111822118231182411825118261182711828118291183011831118321183311834118351183611837118381183911840118411184211843118441184511846118471184811849118501185111852118531185411855118561185711858118591186011861118621186311864118651186611867118681186911870
  1. body {
  2. margin:0px;
  3. background-image:none;
  4. position:static;
  5. left:auto;
  6. width:2123px;
  7. margin-left:0;
  8. margin-right:0;
  9. text-align:left;
  10. }
  11. #base {
  12. position:absolute;
  13. z-index:0;
  14. }
  15. #u95 {
  16. position:absolute;
  17. left:0px;
  18. top:0px;
  19. width:0px;
  20. height:0px;
  21. }
  22. #u96_div {
  23. position:absolute;
  24. left:0px;
  25. top:0px;
  26. width:320px;
  27. height:561px;
  28. background:inherit;
  29. background-color:rgba(242, 242, 242, 1);
  30. box-sizing:border-box;
  31. border-width:1px;
  32. border-style:solid;
  33. border-color:rgba(0, 0, 0, 1);
  34. border-radius:0px;
  35. -moz-box-shadow:none;
  36. -webkit-box-shadow:none;
  37. box-shadow:none;
  38. }
  39. #u96 {
  40. position:absolute;
  41. left:99px;
  42. top:1502px;
  43. width:320px;
  44. height:561px;
  45. }
  46. #u97 {
  47. position:absolute;
  48. left:2px;
  49. top:272px;
  50. width:316px;
  51. visibility:hidden;
  52. word-wrap:break-word;
  53. }
  54. #u98 {
  55. position:absolute;
  56. left:0px;
  57. top:0px;
  58. width:0px;
  59. height:0px;
  60. }
  61. #u99_div {
  62. position:absolute;
  63. left:0px;
  64. top:0px;
  65. width:318px;
  66. height:17px;
  67. background:inherit;
  68. background-color:rgba(255, 255, 255, 1);
  69. border:none;
  70. border-radius:0px;
  71. -moz-box-shadow:none;
  72. -webkit-box-shadow:none;
  73. box-shadow:none;
  74. }
  75. #u99 {
  76. position:absolute;
  77. left:100px;
  78. top:1503px;
  79. width:318px;
  80. height:17px;
  81. }
  82. #u100 {
  83. position:absolute;
  84. left:2px;
  85. top:0px;
  86. width:314px;
  87. visibility:hidden;
  88. word-wrap:break-word;
  89. }
  90. #u101_img {
  91. position:absolute;
  92. left:0px;
  93. top:0px;
  94. width:318px;
  95. height:17px;
  96. }
  97. #u101 {
  98. position:absolute;
  99. left:100px;
  100. top:1503px;
  101. width:318px;
  102. height:17px;
  103. }
  104. #u102 {
  105. position:absolute;
  106. left:2px;
  107. top:0px;
  108. width:314px;
  109. visibility:hidden;
  110. word-wrap:break-word;
  111. }
  112. #u103_div {
  113. position:absolute;
  114. left:0px;
  115. top:0px;
  116. width:318px;
  117. height:103px;
  118. background:inherit;
  119. background-color:rgba(255, 255, 255, 1);
  120. border:none;
  121. border-radius:0px;
  122. -moz-box-shadow:none;
  123. -webkit-box-shadow:none;
  124. box-shadow:none;
  125. }
  126. #u103 {
  127. position:absolute;
  128. left:100px;
  129. top:1560px;
  130. width:318px;
  131. height:103px;
  132. }
  133. #u104 {
  134. position:absolute;
  135. left:2px;
  136. top:44px;
  137. width:314px;
  138. visibility:hidden;
  139. word-wrap:break-word;
  140. }
  141. #u105_div {
  142. position:absolute;
  143. left:0px;
  144. top:0px;
  145. width:94px;
  146. height:25px;
  147. background:inherit;
  148. background-color:rgba(255, 255, 255, 0);
  149. border:none;
  150. border-radius:0px;
  151. -moz-box-shadow:none;
  152. -webkit-box-shadow:none;
  153. box-shadow:none;
  154. font-family:'PingFangSC-Semibold', 'PingFang SC Semibold', 'PingFang SC';
  155. font-weight:650;
  156. font-style:normal;
  157. }
  158. #u105 {
  159. position:absolute;
  160. left:119px;
  161. top:31px;
  162. width:94px;
  163. height:25px;
  164. font-family:'PingFangSC-Semibold', 'PingFang SC Semibold', 'PingFang SC';
  165. font-weight:650;
  166. font-style:normal;
  167. }
  168. #u106 {
  169. position:absolute;
  170. left:0px;
  171. top:0px;
  172. width:94px;
  173. white-space:nowrap;
  174. }
  175. #u107_div {
  176. position:absolute;
  177. left:0px;
  178. top:0px;
  179. width:169px;
  180. height:33px;
  181. background:inherit;
  182. background-color:rgba(255, 255, 255, 0);
  183. border:none;
  184. border-radius:0px;
  185. -moz-box-shadow:none;
  186. -webkit-box-shadow:none;
  187. box-shadow:none;
  188. font-family:'Arial-BoldMT', 'Arial Bold', 'Arial';
  189. font-weight:700;
  190. font-style:normal;
  191. }
  192. #u107 {
  193. position:absolute;
  194. left:99px;
  195. top:1433px;
  196. width:169px;
  197. height:33px;
  198. font-family:'Arial-BoldMT', 'Arial Bold', 'Arial';
  199. font-weight:700;
  200. font-style:normal;
  201. }
  202. #u108 {
  203. position:absolute;
  204. left:0px;
  205. top:0px;
  206. width:169px;
  207. white-space:nowrap;
  208. }
  209. #u109 {
  210. position:absolute;
  211. left:0px;
  212. top:0px;
  213. width:0px;
  214. height:0px;
  215. }
  216. #u110_div {
  217. position:absolute;
  218. left:0px;
  219. top:0px;
  220. width:318px;
  221. height:40px;
  222. background:inherit;
  223. background-color:rgba(255, 255, 255, 1);
  224. box-sizing:border-box;
  225. border-width:1px;
  226. border-style:solid;
  227. border-color:rgba(228, 228, 228, 1);
  228. border-left:0px;
  229. border-top:0px;
  230. border-right:0px;
  231. border-radius:0px;
  232. border-top-left-radius:0px;
  233. border-top-right-radius:0px;
  234. border-bottom-right-radius:0px;
  235. border-bottom-left-radius:0px;
  236. -moz-box-shadow:none;
  237. -webkit-box-shadow:none;
  238. box-shadow:none;
  239. font-family:'PingFangSC-Regular', 'PingFang SC';
  240. font-weight:400;
  241. font-style:normal;
  242. font-size:14px;
  243. text-align:left;
  244. }
  245. #u110 {
  246. position:absolute;
  247. left:100px;
  248. top:1520px;
  249. width:318px;
  250. height:40px;
  251. font-family:'PingFangSC-Regular', 'PingFang SC';
  252. font-weight:400;
  253. font-style:normal;
  254. font-size:14px;
  255. text-align:left;
  256. }
  257. #u111 {
  258. position:absolute;
  259. left:0px;
  260. top:10px;
  261. width:318px;
  262. word-wrap:break-word;
  263. }
  264. #u112_img {
  265. position:absolute;
  266. left:0px;
  267. top:0px;
  268. width:10px;
  269. height:16px;
  270. }
  271. #u112 {
  272. position:absolute;
  273. left:110px;
  274. top:1532px;
  275. width:10px;
  276. height:16px;
  277. }
  278. #u113 {
  279. position:absolute;
  280. left:2px;
  281. top:0px;
  282. width:6px;
  283. visibility:hidden;
  284. word-wrap:break-word;
  285. }
  286. #u114 {
  287. position:absolute;
  288. left:0px;
  289. top:0px;
  290. width:0px;
  291. height:0px;
  292. }
  293. #u115_div {
  294. position:absolute;
  295. left:0px;
  296. top:0px;
  297. width:50px;
  298. height:26px;
  299. background:inherit;
  300. background-color:rgba(255, 255, 255, 1);
  301. box-sizing:border-box;
  302. border-width:1px;
  303. border-style:solid;
  304. border-color:rgba(204, 204, 204, 1);
  305. border-radius:15px;
  306. -moz-box-shadow:none;
  307. -webkit-box-shadow:none;
  308. box-shadow:none;
  309. }
  310. #u115 {
  311. position:absolute;
  312. left:358px;
  313. top:1527px;
  314. width:50px;
  315. height:26px;
  316. }
  317. #u116 {
  318. position:absolute;
  319. left:2px;
  320. top:5px;
  321. width:46px;
  322. visibility:hidden;
  323. word-wrap:break-word;
  324. }
  325. #u117 {
  326. position:absolute;
  327. left:0px;
  328. top:0px;
  329. width:0px;
  330. height:0px;
  331. }
  332. #u118_img {
  333. position:absolute;
  334. left:0px;
  335. top:0px;
  336. width:3px;
  337. height:3px;
  338. }
  339. #u118 {
  340. position:absolute;
  341. left:365px;
  342. top:1539px;
  343. width:3px;
  344. height:3px;
  345. -webkit-transform:rotate(45deg);
  346. -moz-transform:rotate(45deg);
  347. -ms-transform:rotate(45deg);
  348. transform:rotate(45deg);
  349. font-family:'MicrosoftYaHei', '微软雅黑';
  350. font-weight:400;
  351. font-style:normal;
  352. font-size:18px;
  353. }
  354. #u119 {
  355. position:absolute;
  356. left:0px;
  357. top:-6px;
  358. width:3px;
  359. visibility:hidden;
  360. word-wrap:break-word;
  361. }
  362. #u120_img {
  363. position:absolute;
  364. left:0px;
  365. top:0px;
  366. width:5px;
  367. height:5px;
  368. }
  369. #u120 {
  370. position:absolute;
  371. left:369px;
  372. top:1538px;
  373. width:5px;
  374. height:5px;
  375. -webkit-transform:rotate(45deg);
  376. -moz-transform:rotate(45deg);
  377. -ms-transform:rotate(45deg);
  378. transform:rotate(45deg);
  379. font-family:'MicrosoftYaHei', '微软雅黑';
  380. font-weight:400;
  381. font-style:normal;
  382. font-size:18px;
  383. }
  384. #u121 {
  385. position:absolute;
  386. left:0px;
  387. top:-6px;
  388. width:5px;
  389. visibility:hidden;
  390. word-wrap:break-word;
  391. }
  392. #u122_img {
  393. position:absolute;
  394. left:0px;
  395. top:0px;
  396. width:3px;
  397. height:3px;
  398. }
  399. #u122 {
  400. position:absolute;
  401. left:375px;
  402. top:1539px;
  403. width:3px;
  404. height:3px;
  405. -webkit-transform:rotate(45deg);
  406. -moz-transform:rotate(45deg);
  407. -ms-transform:rotate(45deg);
  408. transform:rotate(45deg);
  409. font-family:'MicrosoftYaHei', '微软雅黑';
  410. font-weight:400;
  411. font-style:normal;
  412. font-size:18px;
  413. }
  414. #u123 {
  415. position:absolute;
  416. left:0px;
  417. top:-6px;
  418. width:3px;
  419. visibility:hidden;
  420. word-wrap:break-word;
  421. }
  422. #u124_img {
  423. position:absolute;
  424. left:0px;
  425. top:0px;
  426. width:2px;
  427. height:19px;
  428. }
  429. #u124 {
  430. position:absolute;
  431. left:382px;
  432. top:1531px;
  433. width:1px;
  434. height:18px;
  435. }
  436. #u125 {
  437. position:absolute;
  438. left:2px;
  439. top:1px;
  440. width:1px;
  441. visibility:hidden;
  442. word-wrap:break-word;
  443. }
  444. #u126_img {
  445. position:absolute;
  446. left:0px;
  447. top:0px;
  448. width:14px;
  449. height:14px;
  450. }
  451. #u126 {
  452. position:absolute;
  453. left:388px;
  454. top:1533px;
  455. width:14px;
  456. height:14px;
  457. }
  458. #u127 {
  459. position:absolute;
  460. left:2px;
  461. top:-1px;
  462. width:10px;
  463. visibility:hidden;
  464. word-wrap:break-word;
  465. }
  466. #u128_img {
  467. position:absolute;
  468. left:0px;
  469. top:0px;
  470. width:6px;
  471. height:6px;
  472. }
  473. #u128 {
  474. position:absolute;
  475. left:392px;
  476. top:1537px;
  477. width:6px;
  478. height:6px;
  479. }
  480. #u129 {
  481. position:absolute;
  482. left:2px;
  483. top:-5px;
  484. width:2px;
  485. visibility:hidden;
  486. word-wrap:break-word;
  487. }
  488. #u130 {
  489. position:absolute;
  490. left:0px;
  491. top:0px;
  492. width:0px;
  493. height:0px;
  494. }
  495. #u131_div {
  496. position:absolute;
  497. left:0px;
  498. top:0px;
  499. width:318px;
  500. height:49px;
  501. background:inherit;
  502. background-color:rgba(247, 247, 250, 1);
  503. box-sizing:border-box;
  504. border-width:1px;
  505. border-style:solid;
  506. border-color:rgba(228, 228, 228, 1);
  507. border-left:0px;
  508. border-right:0px;
  509. border-bottom:0px;
  510. border-radius:0px;
  511. border-top-left-radius:0px;
  512. border-top-right-radius:0px;
  513. border-bottom-right-radius:0px;
  514. border-bottom-left-radius:0px;
  515. -moz-box-shadow:none;
  516. -webkit-box-shadow:none;
  517. box-shadow:none;
  518. font-size:16px;
  519. color:#333333;
  520. text-align:left;
  521. }
  522. #u131 {
  523. position:absolute;
  524. left:100px;
  525. top:2013px;
  526. width:318px;
  527. height:49px;
  528. font-size:16px;
  529. color:#333333;
  530. text-align:left;
  531. }
  532. #u131_div.selected {
  533. position:absolute;
  534. left:0px;
  535. top:0px;
  536. width:318px;
  537. height:49px;
  538. background:inherit;
  539. background-color:rgba(247, 247, 250, 1);
  540. box-sizing:border-box;
  541. border-width:1px;
  542. border-style:solid;
  543. border-color:rgba(45, 183, 245, 1);
  544. border-left:0px;
  545. border-right:0px;
  546. border-bottom:0px;
  547. border-radius:0px;
  548. border-top-left-radius:0px;
  549. border-top-right-radius:0px;
  550. border-bottom-right-radius:0px;
  551. border-bottom-left-radius:0px;
  552. -moz-box-shadow:none;
  553. -webkit-box-shadow:none;
  554. box-shadow:none;
  555. font-size:16px;
  556. color:#333333;
  557. text-align:left;
  558. }
  559. #u131.selected {
  560. }
  561. #u132 {
  562. position:absolute;
  563. left:55px;
  564. top:16px;
  565. width:263px;
  566. visibility:hidden;
  567. word-wrap:break-word;
  568. }
  569. #u133 {
  570. position:absolute;
  571. left:0px;
  572. top:0px;
  573. width:0px;
  574. height:0px;
  575. }
  576. #u134_div {
  577. position:absolute;
  578. left:0px;
  579. top:0px;
  580. width:70px;
  581. height:10px;
  582. background:inherit;
  583. background-color:rgba(255, 255, 255, 0);
  584. border:none;
  585. border-radius:0px;
  586. -moz-box-shadow:none;
  587. -webkit-box-shadow:none;
  588. box-shadow:none;
  589. font-family:'PingFangSC-Regular', 'PingFang SC';
  590. font-weight:400;
  591. font-style:normal;
  592. font-size:10px;
  593. color:#666666;
  594. line-height:10px;
  595. }
  596. #u134 {
  597. position:absolute;
  598. left:119px;
  599. top:2048px;
  600. width:70px;
  601. height:10px;
  602. font-family:'PingFangSC-Regular', 'PingFang SC';
  603. font-weight:400;
  604. font-style:normal;
  605. font-size:10px;
  606. color:#666666;
  607. line-height:10px;
  608. }
  609. #u135 {
  610. position:absolute;
  611. left:0px;
  612. top:0px;
  613. width:70px;
  614. word-wrap:break-word;
  615. }
  616. #u136_img {
  617. position:absolute;
  618. left:0px;
  619. top:0px;
  620. width:27px;
  621. height:27px;
  622. }
  623. #u136 {
  624. position:absolute;
  625. left:140px;
  626. top:2017px;
  627. width:27px;
  628. height:27px;
  629. }
  630. #u137 {
  631. position:absolute;
  632. left:2px;
  633. top:6px;
  634. width:23px;
  635. visibility:hidden;
  636. word-wrap:break-word;
  637. }
  638. #u138 {
  639. position:absolute;
  640. left:0px;
  641. top:0px;
  642. width:0px;
  643. height:0px;
  644. }
  645. #u139_div {
  646. position:absolute;
  647. left:0px;
  648. top:0px;
  649. width:70px;
  650. height:10px;
  651. background:inherit;
  652. background-color:rgba(255, 255, 255, 0);
  653. border:none;
  654. border-radius:0px;
  655. -moz-box-shadow:none;
  656. -webkit-box-shadow:none;
  657. box-shadow:none;
  658. font-family:'PingFangSC-Regular', 'PingFang SC';
  659. font-weight:400;
  660. font-style:normal;
  661. font-size:10px;
  662. color:#7F8389;
  663. line-height:10px;
  664. }
  665. #u139 {
  666. position:absolute;
  667. left:224px;
  668. top:2048px;
  669. width:70px;
  670. height:10px;
  671. font-family:'PingFangSC-Regular', 'PingFang SC';
  672. font-weight:400;
  673. font-style:normal;
  674. font-size:10px;
  675. color:#7F8389;
  676. line-height:10px;
  677. }
  678. #u140 {
  679. position:absolute;
  680. left:0px;
  681. top:0px;
  682. width:70px;
  683. word-wrap:break-word;
  684. }
  685. #u141_img {
  686. position:absolute;
  687. left:0px;
  688. top:0px;
  689. width:27px;
  690. height:27px;
  691. }
  692. #u141 {
  693. position:absolute;
  694. left:245px;
  695. top:2017px;
  696. width:27px;
  697. height:27px;
  698. }
  699. #u142 {
  700. position:absolute;
  701. left:2px;
  702. top:6px;
  703. width:23px;
  704. visibility:hidden;
  705. word-wrap:break-word;
  706. }
  707. #u143 {
  708. position:absolute;
  709. left:0px;
  710. top:0px;
  711. width:0px;
  712. height:0px;
  713. }
  714. #u144_div {
  715. position:absolute;
  716. left:0px;
  717. top:0px;
  718. width:70px;
  719. height:10px;
  720. background:inherit;
  721. background-color:rgba(255, 255, 255, 0);
  722. border:none;
  723. border-radius:0px;
  724. -moz-box-shadow:none;
  725. -webkit-box-shadow:none;
  726. box-shadow:none;
  727. font-family:'PingFangSC-Regular', 'PingFang SC';
  728. font-weight:400;
  729. font-style:normal;
  730. font-size:10px;
  731. color:#009900;
  732. line-height:10px;
  733. }
  734. #u144 {
  735. position:absolute;
  736. left:329px;
  737. top:2048px;
  738. width:70px;
  739. height:10px;
  740. font-family:'PingFangSC-Regular', 'PingFang SC';
  741. font-weight:400;
  742. font-style:normal;
  743. font-size:10px;
  744. color:#009900;
  745. line-height:10px;
  746. }
  747. #u145 {
  748. position:absolute;
  749. left:0px;
  750. top:0px;
  751. width:70px;
  752. word-wrap:break-word;
  753. }
  754. #u146_img {
  755. position:absolute;
  756. left:0px;
  757. top:0px;
  758. width:27px;
  759. height:27px;
  760. }
  761. #u146 {
  762. position:absolute;
  763. left:350px;
  764. top:2017px;
  765. width:27px;
  766. height:27px;
  767. }
  768. #u147 {
  769. position:absolute;
  770. left:2px;
  771. top:6px;
  772. width:23px;
  773. visibility:hidden;
  774. word-wrap:break-word;
  775. }
  776. #u148_div {
  777. position:absolute;
  778. left:0px;
  779. top:0px;
  780. width:84px;
  781. height:22px;
  782. background:inherit;
  783. background-color:rgba(255, 255, 255, 0);
  784. border:none;
  785. border-radius:0px;
  786. -moz-box-shadow:none;
  787. -webkit-box-shadow:none;
  788. box-shadow:none;
  789. font-family:'PingFangSC-Thin', 'PingFang SC Thin', 'PingFang SC';
  790. font-weight:200;
  791. font-style:normal;
  792. font-size:16px;
  793. color:#000000;
  794. text-align:center;
  795. }
  796. #u148 {
  797. position:absolute;
  798. left:186px;
  799. top:1582px;
  800. width:84px;
  801. height:22px;
  802. font-family:'PingFangSC-Thin', 'PingFang SC Thin', 'PingFang SC';
  803. font-weight:200;
  804. font-style:normal;
  805. font-size:16px;
  806. color:#000000;
  807. text-align:center;
  808. }
  809. #u149 {
  810. position:absolute;
  811. left:0px;
  812. top:0px;
  813. width:84px;
  814. word-wrap:break-word;
  815. }
  816. #u150 {
  817. position:absolute;
  818. left:0px;
  819. top:0px;
  820. width:0px;
  821. height:0px;
  822. }
  823. #u151_div {
  824. position:absolute;
  825. left:0px;
  826. top:0px;
  827. width:126px;
  828. height:18px;
  829. background:inherit;
  830. background-color:rgba(255, 255, 255, 0);
  831. border:none;
  832. border-radius:0px;
  833. -moz-box-shadow:none;
  834. -webkit-box-shadow:none;
  835. box-shadow:none;
  836. font-family:'PingFangSC-Thin', 'PingFang SC Thin', 'PingFang SC';
  837. font-weight:200;
  838. font-style:normal;
  839. font-size:13px;
  840. color:#000000;
  841. text-align:center;
  842. }
  843. #u151 {
  844. position:absolute;
  845. left:186px;
  846. top:1620px;
  847. width:126px;
  848. height:18px;
  849. font-family:'PingFangSC-Thin', 'PingFang SC Thin', 'PingFang SC';
  850. font-weight:200;
  851. font-style:normal;
  852. font-size:13px;
  853. color:#000000;
  854. text-align:center;
  855. }
  856. #u152 {
  857. position:absolute;
  858. left:0px;
  859. top:0px;
  860. width:126px;
  861. word-wrap:break-word;
  862. }
  863. #u153 {
  864. position:absolute;
  865. left:0px;
  866. top:0px;
  867. width:0px;
  868. height:0px;
  869. }
  870. #u154_div {
  871. position:absolute;
  872. left:0px;
  873. top:0px;
  874. width:318px;
  875. height:50px;
  876. background:inherit;
  877. background-color:rgba(255, 255, 255, 1);
  878. box-sizing:border-box;
  879. border-width:1px;
  880. border-style:solid;
  881. border-color:rgba(229, 229, 229, 1);
  882. border-left:0px;
  883. border-right:0px;
  884. border-radius:0px;
  885. border-top-left-radius:0px;
  886. border-top-right-radius:0px;
  887. border-bottom-right-radius:0px;
  888. border-bottom-left-radius:0px;
  889. -moz-box-shadow:none;
  890. -webkit-box-shadow:none;
  891. box-shadow:none;
  892. font-size:16px;
  893. color:#333333;
  894. text-align:left;
  895. }
  896. #u154 {
  897. position:absolute;
  898. left:100px;
  899. top:1762px;
  900. width:318px;
  901. height:50px;
  902. font-size:16px;
  903. color:#333333;
  904. text-align:left;
  905. }
  906. #u154_div.selected {
  907. position:absolute;
  908. left:0px;
  909. top:0px;
  910. width:318px;
  911. height:50px;
  912. background:inherit;
  913. background-color:rgba(255, 255, 255, 1);
  914. box-sizing:border-box;
  915. border-width:1px;
  916. border-style:solid;
  917. border-color:rgba(45, 183, 245, 1);
  918. border-left:0px;
  919. border-right:0px;
  920. border-radius:0px;
  921. border-top-left-radius:0px;
  922. border-top-right-radius:0px;
  923. border-bottom-right-radius:0px;
  924. border-bottom-left-radius:0px;
  925. -moz-box-shadow:none;
  926. -webkit-box-shadow:none;
  927. box-shadow:none;
  928. font-size:16px;
  929. color:#333333;
  930. text-align:left;
  931. }
  932. #u154.selected {
  933. }
  934. #u155 {
  935. position:absolute;
  936. left:10px;
  937. top:17px;
  938. width:308px;
  939. visibility:hidden;
  940. word-wrap:break-word;
  941. }
  942. #u156_div {
  943. position:absolute;
  944. left:0px;
  945. top:0px;
  946. width:300px;
  947. height:50px;
  948. background:inherit;
  949. background-color:rgba(255, 255, 255, 0);
  950. box-sizing:border-box;
  951. border-width:1px;
  952. border-style:solid;
  953. border-color:rgba(229, 229, 229, 1);
  954. border-left:0px;
  955. border-top:0px;
  956. border-right:0px;
  957. border-radius:0px;
  958. border-top-left-radius:0px;
  959. border-top-right-radius:0px;
  960. border-bottom-right-radius:0px;
  961. border-bottom-left-radius:0px;
  962. -moz-box-shadow:none;
  963. -webkit-box-shadow:none;
  964. box-shadow:none;
  965. font-family:'PingFangSC-Thin', 'PingFang SC Thin', 'PingFang SC';
  966. font-weight:200;
  967. font-style:normal;
  968. font-size:14px;
  969. color:#000000;
  970. text-align:left;
  971. }
  972. #u156 {
  973. position:absolute;
  974. left:109px;
  975. top:1762px;
  976. width:300px;
  977. height:50px;
  978. font-family:'PingFangSC-Thin', 'PingFang SC Thin', 'PingFang SC';
  979. font-weight:200;
  980. font-style:normal;
  981. font-size:14px;
  982. color:#000000;
  983. text-align:left;
  984. }
  985. #u156_div.selected {
  986. position:absolute;
  987. left:0px;
  988. top:0px;
  989. width:300px;
  990. height:50px;
  991. background:inherit;
  992. background-color:rgba(255, 255, 255, 0);
  993. box-sizing:border-box;
  994. border-width:1px;
  995. border-style:solid;
  996. border-color:rgba(45, 183, 245, 1);
  997. border-left:0px;
  998. border-top:0px;
  999. border-right:0px;
  1000. border-radius:0px;
  1001. border-top-left-radius:0px;
  1002. border-top-right-radius:0px;
  1003. border-bottom-right-radius:0px;
  1004. border-bottom-left-radius:0px;
  1005. -moz-box-shadow:none;
  1006. -webkit-box-shadow:none;
  1007. box-shadow:none;
  1008. font-family:'PingFangSC-Thin', 'PingFang SC Thin', 'PingFang SC';
  1009. font-weight:200;
  1010. font-style:normal;
  1011. font-size:14px;
  1012. color:#000000;
  1013. text-align:left;
  1014. }
  1015. #u156.selected {
  1016. }
  1017. #u157 {
  1018. position:absolute;
  1019. left:0px;
  1020. top:15px;
  1021. width:300px;
  1022. word-wrap:break-word;
  1023. }
  1024. #u158_img {
  1025. position:absolute;
  1026. left:0px;
  1027. top:0px;
  1028. width:6px;
  1029. height:12px;
  1030. }
  1031. #u158 {
  1032. position:absolute;
  1033. left:403px;
  1034. top:1782px;
  1035. width:6px;
  1036. height:12px;
  1037. -webkit-transform:rotate(180deg);
  1038. -moz-transform:rotate(180deg);
  1039. -ms-transform:rotate(180deg);
  1040. transform:rotate(180deg);
  1041. }
  1042. #u159 {
  1043. position:absolute;
  1044. left:2px;
  1045. top:-2px;
  1046. width:2px;
  1047. visibility:hidden;
  1048. word-wrap:break-word;
  1049. }
  1050. #u160 {
  1051. position:absolute;
  1052. left:0px;
  1053. top:0px;
  1054. width:0px;
  1055. height:0px;
  1056. }
  1057. #u161_div {
  1058. position:absolute;
  1059. left:0px;
  1060. top:0px;
  1061. width:318px;
  1062. height:50px;
  1063. background:inherit;
  1064. background-color:rgba(255, 255, 255, 1);
  1065. box-sizing:border-box;
  1066. border-width:1px;
  1067. border-style:solid;
  1068. border-color:rgba(229, 229, 229, 1);
  1069. border-left:0px;
  1070. border-right:0px;
  1071. border-radius:0px;
  1072. border-top-left-radius:0px;
  1073. border-top-right-radius:0px;
  1074. border-bottom-right-radius:0px;
  1075. border-bottom-left-radius:0px;
  1076. -moz-box-shadow:none;
  1077. -webkit-box-shadow:none;
  1078. box-shadow:none;
  1079. font-size:16px;
  1080. color:#333333;
  1081. text-align:left;
  1082. }
  1083. #u161 {
  1084. position:absolute;
  1085. left:100px;
  1086. top:1816px;
  1087. width:318px;
  1088. height:50px;
  1089. font-size:16px;
  1090. color:#333333;
  1091. text-align:left;
  1092. }
  1093. #u161_div.selected {
  1094. position:absolute;
  1095. left:0px;
  1096. top:0px;
  1097. width:318px;
  1098. height:50px;
  1099. background:inherit;
  1100. background-color:rgba(255, 255, 255, 1);
  1101. box-sizing:border-box;
  1102. border-width:1px;
  1103. border-style:solid;
  1104. border-color:rgba(45, 183, 245, 1);
  1105. border-left:0px;
  1106. border-right:0px;
  1107. border-radius:0px;
  1108. border-top-left-radius:0px;
  1109. border-top-right-radius:0px;
  1110. border-bottom-right-radius:0px;
  1111. border-bottom-left-radius:0px;
  1112. -moz-box-shadow:none;
  1113. -webkit-box-shadow:none;
  1114. box-shadow:none;
  1115. font-size:16px;
  1116. color:#333333;
  1117. text-align:left;
  1118. }
  1119. #u161.selected {
  1120. }
  1121. #u162 {
  1122. position:absolute;
  1123. left:10px;
  1124. top:17px;
  1125. width:308px;
  1126. visibility:hidden;
  1127. word-wrap:break-word;
  1128. }
  1129. #u163_div {
  1130. position:absolute;
  1131. left:0px;
  1132. top:0px;
  1133. width:300px;
  1134. height:50px;
  1135. background:inherit;
  1136. background-color:rgba(255, 255, 255, 0);
  1137. box-sizing:border-box;
  1138. border-width:1px;
  1139. border-style:solid;
  1140. border-color:rgba(229, 229, 229, 1);
  1141. border-left:0px;
  1142. border-top:0px;
  1143. border-right:0px;
  1144. border-radius:0px;
  1145. border-top-left-radius:0px;
  1146. border-top-right-radius:0px;
  1147. border-bottom-right-radius:0px;
  1148. border-bottom-left-radius:0px;
  1149. -moz-box-shadow:none;
  1150. -webkit-box-shadow:none;
  1151. box-shadow:none;
  1152. font-family:'PingFangSC-Thin', 'PingFang SC Thin', 'PingFang SC';
  1153. font-weight:200;
  1154. font-style:normal;
  1155. font-size:14px;
  1156. color:#000000;
  1157. text-align:left;
  1158. }
  1159. #u163 {
  1160. position:absolute;
  1161. left:109px;
  1162. top:1816px;
  1163. width:300px;
  1164. height:50px;
  1165. font-family:'PingFangSC-Thin', 'PingFang SC Thin', 'PingFang SC';
  1166. font-weight:200;
  1167. font-style:normal;
  1168. font-size:14px;
  1169. color:#000000;
  1170. text-align:left;
  1171. }
  1172. #u163_div.selected {
  1173. position:absolute;
  1174. left:0px;
  1175. top:0px;
  1176. width:300px;
  1177. height:50px;
  1178. background:inherit;
  1179. background-color:rgba(255, 255, 255, 0);
  1180. box-sizing:border-box;
  1181. border-width:1px;
  1182. border-style:solid;
  1183. border-color:rgba(45, 183, 245, 1);
  1184. border-left:0px;
  1185. border-top:0px;
  1186. border-right:0px;
  1187. border-radius:0px;
  1188. border-top-left-radius:0px;
  1189. border-top-right-radius:0px;
  1190. border-bottom-right-radius:0px;
  1191. border-bottom-left-radius:0px;
  1192. -moz-box-shadow:none;
  1193. -webkit-box-shadow:none;
  1194. box-shadow:none;
  1195. font-family:'PingFangSC-Thin', 'PingFang SC Thin', 'PingFang SC';
  1196. font-weight:200;
  1197. font-style:normal;
  1198. font-size:14px;
  1199. color:#000000;
  1200. text-align:left;
  1201. }
  1202. #u163.selected {
  1203. }
  1204. #u164 {
  1205. position:absolute;
  1206. left:0px;
  1207. top:15px;
  1208. width:300px;
  1209. word-wrap:break-word;
  1210. }
  1211. #u165_img {
  1212. position:absolute;
  1213. left:0px;
  1214. top:0px;
  1215. width:6px;
  1216. height:12px;
  1217. }
  1218. #u165 {
  1219. position:absolute;
  1220. left:403px;
  1221. top:1836px;
  1222. width:6px;
  1223. height:12px;
  1224. -webkit-transform:rotate(180deg);
  1225. -moz-transform:rotate(180deg);
  1226. -ms-transform:rotate(180deg);
  1227. transform:rotate(180deg);
  1228. }
  1229. #u166 {
  1230. position:absolute;
  1231. left:2px;
  1232. top:-2px;
  1233. width:2px;
  1234. visibility:hidden;
  1235. word-wrap:break-word;
  1236. }
  1237. #u167_img {
  1238. position:absolute;
  1239. left:0px;
  1240. top:0px;
  1241. width:56px;
  1242. height:56px;
  1243. }
  1244. #u167 {
  1245. position:absolute;
  1246. left:120px;
  1247. top:1582px;
  1248. width:56px;
  1249. height:56px;
  1250. }
  1251. #u168 {
  1252. position:absolute;
  1253. left:2px;
  1254. top:20px;
  1255. width:52px;
  1256. visibility:hidden;
  1257. word-wrap:break-word;
  1258. }
  1259. #u169 {
  1260. position:absolute;
  1261. left:0px;
  1262. top:0px;
  1263. width:0px;
  1264. height:0px;
  1265. }
  1266. #u170_div {
  1267. position:absolute;
  1268. left:0px;
  1269. top:0px;
  1270. width:318px;
  1271. height:50px;
  1272. background:inherit;
  1273. background-color:rgba(255, 255, 255, 1);
  1274. box-sizing:border-box;
  1275. border-width:1px;
  1276. border-style:solid;
  1277. border-color:rgba(229, 229, 229, 1);
  1278. border-left:0px;
  1279. border-right:0px;
  1280. border-radius:0px;
  1281. border-top-left-radius:0px;
  1282. border-top-right-radius:0px;
  1283. border-bottom-right-radius:0px;
  1284. border-bottom-left-radius:0px;
  1285. -moz-box-shadow:none;
  1286. -webkit-box-shadow:none;
  1287. box-shadow:none;
  1288. font-size:16px;
  1289. color:#333333;
  1290. text-align:left;
  1291. }
  1292. #u170 {
  1293. position:absolute;
  1294. left:100px;
  1295. top:1713px;
  1296. width:318px;
  1297. height:50px;
  1298. font-size:16px;
  1299. color:#333333;
  1300. text-align:left;
  1301. }
  1302. #u170_div.selected {
  1303. position:absolute;
  1304. left:0px;
  1305. top:0px;
  1306. width:318px;
  1307. height:50px;
  1308. background:inherit;
  1309. background-color:rgba(255, 255, 255, 1);
  1310. box-sizing:border-box;
  1311. border-width:1px;
  1312. border-style:solid;
  1313. border-color:rgba(45, 183, 245, 1);
  1314. border-left:0px;
  1315. border-right:0px;
  1316. border-radius:0px;
  1317. border-top-left-radius:0px;
  1318. border-top-right-radius:0px;
  1319. border-bottom-right-radius:0px;
  1320. border-bottom-left-radius:0px;
  1321. -moz-box-shadow:none;
  1322. -webkit-box-shadow:none;
  1323. box-shadow:none;
  1324. font-size:16px;
  1325. color:#333333;
  1326. text-align:left;
  1327. }
  1328. #u170.selected {
  1329. }
  1330. #u171 {
  1331. position:absolute;
  1332. left:10px;
  1333. top:17px;
  1334. width:308px;
  1335. visibility:hidden;
  1336. word-wrap:break-word;
  1337. }
  1338. #u172_div {
  1339. position:absolute;
  1340. left:0px;
  1341. top:0px;
  1342. width:300px;
  1343. height:50px;
  1344. background:inherit;
  1345. background-color:rgba(255, 255, 255, 0);
  1346. box-sizing:border-box;
  1347. border-width:1px;
  1348. border-style:solid;
  1349. border-color:rgba(229, 229, 229, 1);
  1350. border-left:0px;
  1351. border-top:0px;
  1352. border-right:0px;
  1353. border-radius:0px;
  1354. border-top-left-radius:0px;
  1355. border-top-right-radius:0px;
  1356. border-bottom-right-radius:0px;
  1357. border-bottom-left-radius:0px;
  1358. -moz-box-shadow:none;
  1359. -webkit-box-shadow:none;
  1360. box-shadow:none;
  1361. font-family:'PingFangSC-Thin', 'PingFang SC Thin', 'PingFang SC';
  1362. font-weight:200;
  1363. font-style:normal;
  1364. font-size:14px;
  1365. color:#000000;
  1366. text-align:left;
  1367. }
  1368. #u172 {
  1369. position:absolute;
  1370. left:109px;
  1371. top:1713px;
  1372. width:300px;
  1373. height:50px;
  1374. font-family:'PingFangSC-Thin', 'PingFang SC Thin', 'PingFang SC';
  1375. font-weight:200;
  1376. font-style:normal;
  1377. font-size:14px;
  1378. color:#000000;
  1379. text-align:left;
  1380. }
  1381. #u172_div.selected {
  1382. position:absolute;
  1383. left:0px;
  1384. top:0px;
  1385. width:300px;
  1386. height:50px;
  1387. background:inherit;
  1388. background-color:rgba(255, 255, 255, 0);
  1389. box-sizing:border-box;
  1390. border-width:1px;
  1391. border-style:solid;
  1392. border-color:rgba(45, 183, 245, 1);
  1393. border-left:0px;
  1394. border-top:0px;
  1395. border-right:0px;
  1396. border-radius:0px;
  1397. border-top-left-radius:0px;
  1398. border-top-right-radius:0px;
  1399. border-bottom-right-radius:0px;
  1400. border-bottom-left-radius:0px;
  1401. -moz-box-shadow:none;
  1402. -webkit-box-shadow:none;
  1403. box-shadow:none;
  1404. font-family:'PingFangSC-Thin', 'PingFang SC Thin', 'PingFang SC';
  1405. font-weight:200;
  1406. font-style:normal;
  1407. font-size:14px;
  1408. color:#000000;
  1409. text-align:left;
  1410. }
  1411. #u172.selected {
  1412. }
  1413. #u173 {
  1414. position:absolute;
  1415. left:0px;
  1416. top:15px;
  1417. width:300px;
  1418. word-wrap:break-word;
  1419. }
  1420. #u174_img {
  1421. position:absolute;
  1422. left:0px;
  1423. top:0px;
  1424. width:6px;
  1425. height:12px;
  1426. }
  1427. #u174 {
  1428. position:absolute;
  1429. left:403px;
  1430. top:1733px;
  1431. width:6px;
  1432. height:12px;
  1433. -webkit-transform:rotate(180deg);
  1434. -moz-transform:rotate(180deg);
  1435. -ms-transform:rotate(180deg);
  1436. transform:rotate(180deg);
  1437. }
  1438. #u175 {
  1439. position:absolute;
  1440. left:2px;
  1441. top:-2px;
  1442. width:2px;
  1443. visibility:hidden;
  1444. word-wrap:break-word;
  1445. }
  1446. #u176 {
  1447. position:absolute;
  1448. left:0px;
  1449. top:0px;
  1450. width:0px;
  1451. height:0px;
  1452. }
  1453. #u177_div {
  1454. position:absolute;
  1455. left:0px;
  1456. top:0px;
  1457. width:318px;
  1458. height:50px;
  1459. background:inherit;
  1460. background-color:rgba(255, 255, 255, 1);
  1461. box-sizing:border-box;
  1462. border-width:1px;
  1463. border-style:solid;
  1464. border-color:rgba(229, 229, 229, 1);
  1465. border-left:0px;
  1466. border-right:0px;
  1467. border-radius:0px;
  1468. border-top-left-radius:0px;
  1469. border-top-right-radius:0px;
  1470. border-bottom-right-radius:0px;
  1471. border-bottom-left-radius:0px;
  1472. -moz-box-shadow:none;
  1473. -webkit-box-shadow:none;
  1474. box-shadow:none;
  1475. font-size:16px;
  1476. color:#333333;
  1477. text-align:left;
  1478. }
  1479. #u177 {
  1480. position:absolute;
  1481. left:100px;
  1482. top:1664px;
  1483. width:318px;
  1484. height:50px;
  1485. font-size:16px;
  1486. color:#333333;
  1487. text-align:left;
  1488. }
  1489. #u177_div.selected {
  1490. position:absolute;
  1491. left:0px;
  1492. top:0px;
  1493. width:318px;
  1494. height:50px;
  1495. background:inherit;
  1496. background-color:rgba(255, 255, 255, 1);
  1497. box-sizing:border-box;
  1498. border-width:1px;
  1499. border-style:solid;
  1500. border-color:rgba(45, 183, 245, 1);
  1501. border-left:0px;
  1502. border-right:0px;
  1503. border-radius:0px;
  1504. border-top-left-radius:0px;
  1505. border-top-right-radius:0px;
  1506. border-bottom-right-radius:0px;
  1507. border-bottom-left-radius:0px;
  1508. -moz-box-shadow:none;
  1509. -webkit-box-shadow:none;
  1510. box-shadow:none;
  1511. font-size:16px;
  1512. color:#333333;
  1513. text-align:left;
  1514. }
  1515. #u177.selected {
  1516. }
  1517. #u178 {
  1518. position:absolute;
  1519. left:10px;
  1520. top:17px;
  1521. width:308px;
  1522. visibility:hidden;
  1523. word-wrap:break-word;
  1524. }
  1525. #u179_div {
  1526. position:absolute;
  1527. left:0px;
  1528. top:0px;
  1529. width:300px;
  1530. height:50px;
  1531. background:inherit;
  1532. background-color:rgba(255, 255, 255, 0);
  1533. box-sizing:border-box;
  1534. border-width:1px;
  1535. border-style:solid;
  1536. border-color:rgba(229, 229, 229, 1);
  1537. border-left:0px;
  1538. border-top:0px;
  1539. border-right:0px;
  1540. border-radius:0px;
  1541. border-top-left-radius:0px;
  1542. border-top-right-radius:0px;
  1543. border-bottom-right-radius:0px;
  1544. border-bottom-left-radius:0px;
  1545. -moz-box-shadow:none;
  1546. -webkit-box-shadow:none;
  1547. box-shadow:none;
  1548. font-family:'PingFangSC-Thin', 'PingFang SC Thin', 'PingFang SC';
  1549. font-weight:200;
  1550. font-style:normal;
  1551. font-size:14px;
  1552. color:#000000;
  1553. text-align:left;
  1554. }
  1555. #u179 {
  1556. position:absolute;
  1557. left:109px;
  1558. top:1664px;
  1559. width:300px;
  1560. height:50px;
  1561. font-family:'PingFangSC-Thin', 'PingFang SC Thin', 'PingFang SC';
  1562. font-weight:200;
  1563. font-style:normal;
  1564. font-size:14px;
  1565. color:#000000;
  1566. text-align:left;
  1567. }
  1568. #u179_div.selected {
  1569. position:absolute;
  1570. left:0px;
  1571. top:0px;
  1572. width:300px;
  1573. height:50px;
  1574. background:inherit;
  1575. background-color:rgba(255, 255, 255, 0);
  1576. box-sizing:border-box;
  1577. border-width:1px;
  1578. border-style:solid;
  1579. border-color:rgba(45, 183, 245, 1);
  1580. border-left:0px;
  1581. border-top:0px;
  1582. border-right:0px;
  1583. border-radius:0px;
  1584. border-top-left-radius:0px;
  1585. border-top-right-radius:0px;
  1586. border-bottom-right-radius:0px;
  1587. border-bottom-left-radius:0px;
  1588. -moz-box-shadow:none;
  1589. -webkit-box-shadow:none;
  1590. box-shadow:none;
  1591. font-family:'PingFangSC-Thin', 'PingFang SC Thin', 'PingFang SC';
  1592. font-weight:200;
  1593. font-style:normal;
  1594. font-size:14px;
  1595. color:#000000;
  1596. text-align:left;
  1597. }
  1598. #u179.selected {
  1599. }
  1600. #u180 {
  1601. position:absolute;
  1602. left:0px;
  1603. top:15px;
  1604. width:300px;
  1605. word-wrap:break-word;
  1606. }
  1607. #u181_img {
  1608. position:absolute;
  1609. left:0px;
  1610. top:0px;
  1611. width:6px;
  1612. height:12px;
  1613. }
  1614. #u181 {
  1615. position:absolute;
  1616. left:403px;
  1617. top:1684px;
  1618. width:6px;
  1619. height:12px;
  1620. -webkit-transform:rotate(180deg);
  1621. -moz-transform:rotate(180deg);
  1622. -ms-transform:rotate(180deg);
  1623. transform:rotate(180deg);
  1624. }
  1625. #u182 {
  1626. position:absolute;
  1627. left:2px;
  1628. top:-2px;
  1629. width:2px;
  1630. visibility:hidden;
  1631. word-wrap:break-word;
  1632. }
  1633. #u183 {
  1634. position:absolute;
  1635. left:0px;
  1636. top:0px;
  1637. width:0px;
  1638. height:0px;
  1639. }
  1640. #u184_div {
  1641. position:absolute;
  1642. left:0px;
  1643. top:0px;
  1644. width:318px;
  1645. height:50px;
  1646. background:inherit;
  1647. background-color:rgba(255, 255, 255, 1);
  1648. box-sizing:border-box;
  1649. border-width:1px;
  1650. border-style:solid;
  1651. border-color:rgba(229, 229, 229, 1);
  1652. border-left:0px;
  1653. border-right:0px;
  1654. border-radius:0px;
  1655. border-top-left-radius:0px;
  1656. border-top-right-radius:0px;
  1657. border-bottom-right-radius:0px;
  1658. border-bottom-left-radius:0px;
  1659. -moz-box-shadow:none;
  1660. -webkit-box-shadow:none;
  1661. box-shadow:none;
  1662. font-size:16px;
  1663. color:#333333;
  1664. text-align:left;
  1665. }
  1666. #u184 {
  1667. position:absolute;
  1668. left:100px;
  1669. top:1865px;
  1670. width:318px;
  1671. height:50px;
  1672. font-size:16px;
  1673. color:#333333;
  1674. text-align:left;
  1675. }
  1676. #u184_div.selected {
  1677. position:absolute;
  1678. left:0px;
  1679. top:0px;
  1680. width:318px;
  1681. height:50px;
  1682. background:inherit;
  1683. background-color:rgba(255, 255, 255, 1);
  1684. box-sizing:border-box;
  1685. border-width:1px;
  1686. border-style:solid;
  1687. border-color:rgba(45, 183, 245, 1);
  1688. border-left:0px;
  1689. border-right:0px;
  1690. border-radius:0px;
  1691. border-top-left-radius:0px;
  1692. border-top-right-radius:0px;
  1693. border-bottom-right-radius:0px;
  1694. border-bottom-left-radius:0px;
  1695. -moz-box-shadow:none;
  1696. -webkit-box-shadow:none;
  1697. box-shadow:none;
  1698. font-size:16px;
  1699. color:#333333;
  1700. text-align:left;
  1701. }
  1702. #u184.selected {
  1703. }
  1704. #u185 {
  1705. position:absolute;
  1706. left:10px;
  1707. top:17px;
  1708. width:308px;
  1709. visibility:hidden;
  1710. word-wrap:break-word;
  1711. }
  1712. #u186_div {
  1713. position:absolute;
  1714. left:0px;
  1715. top:0px;
  1716. width:300px;
  1717. height:50px;
  1718. background:inherit;
  1719. background-color:rgba(255, 255, 255, 0);
  1720. box-sizing:border-box;
  1721. border-width:1px;
  1722. border-style:solid;
  1723. border-color:rgba(229, 229, 229, 1);
  1724. border-left:0px;
  1725. border-top:0px;
  1726. border-right:0px;
  1727. border-radius:0px;
  1728. border-top-left-radius:0px;
  1729. border-top-right-radius:0px;
  1730. border-bottom-right-radius:0px;
  1731. border-bottom-left-radius:0px;
  1732. -moz-box-shadow:none;
  1733. -webkit-box-shadow:none;
  1734. box-shadow:none;
  1735. font-family:'PingFangSC-Thin', 'PingFang SC Thin', 'PingFang SC';
  1736. font-weight:200;
  1737. font-style:normal;
  1738. font-size:14px;
  1739. color:#000000;
  1740. text-align:left;
  1741. }
  1742. #u186 {
  1743. position:absolute;
  1744. left:109px;
  1745. top:1865px;
  1746. width:300px;
  1747. height:50px;
  1748. font-family:'PingFangSC-Thin', 'PingFang SC Thin', 'PingFang SC';
  1749. font-weight:200;
  1750. font-style:normal;
  1751. font-size:14px;
  1752. color:#000000;
  1753. text-align:left;
  1754. }
  1755. #u186_div.selected {
  1756. position:absolute;
  1757. left:0px;
  1758. top:0px;
  1759. width:300px;
  1760. height:50px;
  1761. background:inherit;
  1762. background-color:rgba(255, 255, 255, 0);
  1763. box-sizing:border-box;
  1764. border-width:1px;
  1765. border-style:solid;
  1766. border-color:rgba(45, 183, 245, 1);
  1767. border-left:0px;
  1768. border-top:0px;
  1769. border-right:0px;
  1770. border-radius:0px;
  1771. border-top-left-radius:0px;
  1772. border-top-right-radius:0px;
  1773. border-bottom-right-radius:0px;
  1774. border-bottom-left-radius:0px;
  1775. -moz-box-shadow:none;
  1776. -webkit-box-shadow:none;
  1777. box-shadow:none;
  1778. font-family:'PingFangSC-Thin', 'PingFang SC Thin', 'PingFang SC';
  1779. font-weight:200;
  1780. font-style:normal;
  1781. font-size:14px;
  1782. color:#000000;
  1783. text-align:left;
  1784. }
  1785. #u186.selected {
  1786. }
  1787. #u187 {
  1788. position:absolute;
  1789. left:0px;
  1790. top:15px;
  1791. width:300px;
  1792. word-wrap:break-word;
  1793. }
  1794. #u188_img {
  1795. position:absolute;
  1796. left:0px;
  1797. top:0px;
  1798. width:6px;
  1799. height:12px;
  1800. }
  1801. #u188 {
  1802. position:absolute;
  1803. left:403px;
  1804. top:1885px;
  1805. width:6px;
  1806. height:12px;
  1807. -webkit-transform:rotate(180deg);
  1808. -moz-transform:rotate(180deg);
  1809. -ms-transform:rotate(180deg);
  1810. transform:rotate(180deg);
  1811. }
  1812. #u189 {
  1813. position:absolute;
  1814. left:2px;
  1815. top:-2px;
  1816. width:2px;
  1817. visibility:hidden;
  1818. word-wrap:break-word;
  1819. }
  1820. #u190_img {
  1821. position:absolute;
  1822. left:0px;
  1823. top:0px;
  1824. width:18px;
  1825. height:18px;
  1826. }
  1827. #u190 {
  1828. position:absolute;
  1829. left:392px;
  1830. top:1570px;
  1831. width:18px;
  1832. height:18px;
  1833. }
  1834. #u191 {
  1835. position:absolute;
  1836. left:2px;
  1837. top:1px;
  1838. width:14px;
  1839. visibility:hidden;
  1840. word-wrap:break-word;
  1841. }
  1842. #u192 {
  1843. position:absolute;
  1844. left:0px;
  1845. top:0px;
  1846. width:0px;
  1847. height:0px;
  1848. }
  1849. #u193_div {
  1850. position:absolute;
  1851. left:0px;
  1852. top:0px;
  1853. width:320px;
  1854. height:581px;
  1855. background:inherit;
  1856. background-color:rgba(242, 242, 242, 1);
  1857. box-sizing:border-box;
  1858. border-width:1px;
  1859. border-style:solid;
  1860. border-color:rgba(0, 0, 0, 1);
  1861. border-radius:0px;
  1862. -moz-box-shadow:none;
  1863. -webkit-box-shadow:none;
  1864. box-shadow:none;
  1865. font-family:'PingFangSC-Regular', 'PingFang SC';
  1866. font-weight:400;
  1867. font-style:normal;
  1868. font-size:12px;
  1869. color:#000000;
  1870. }
  1871. #u193 {
  1872. position:absolute;
  1873. left:534px;
  1874. top:78px;
  1875. width:320px;
  1876. height:581px;
  1877. font-family:'PingFangSC-Regular', 'PingFang SC';
  1878. font-weight:400;
  1879. font-style:normal;
  1880. font-size:12px;
  1881. color:#000000;
  1882. }
  1883. #u194 {
  1884. position:absolute;
  1885. left:2px;
  1886. top:282px;
  1887. width:316px;
  1888. visibility:hidden;
  1889. word-wrap:break-word;
  1890. }
  1891. #u195 {
  1892. position:absolute;
  1893. left:0px;
  1894. top:0px;
  1895. width:0px;
  1896. height:0px;
  1897. }
  1898. #u196_div {
  1899. position:absolute;
  1900. left:0px;
  1901. top:0px;
  1902. width:318px;
  1903. height:17px;
  1904. background:inherit;
  1905. background-color:rgba(255, 255, 255, 1);
  1906. border:none;
  1907. border-radius:0px;
  1908. -moz-box-shadow:none;
  1909. -webkit-box-shadow:none;
  1910. box-shadow:none;
  1911. }
  1912. #u196 {
  1913. position:absolute;
  1914. left:535px;
  1915. top:79px;
  1916. width:318px;
  1917. height:17px;
  1918. }
  1919. #u197 {
  1920. position:absolute;
  1921. left:2px;
  1922. top:0px;
  1923. width:314px;
  1924. visibility:hidden;
  1925. word-wrap:break-word;
  1926. }
  1927. #u198_img {
  1928. position:absolute;
  1929. left:0px;
  1930. top:0px;
  1931. width:318px;
  1932. height:17px;
  1933. }
  1934. #u198 {
  1935. position:absolute;
  1936. left:535px;
  1937. top:79px;
  1938. width:318px;
  1939. height:17px;
  1940. }
  1941. #u199 {
  1942. position:absolute;
  1943. left:2px;
  1944. top:0px;
  1945. width:314px;
  1946. visibility:hidden;
  1947. word-wrap:break-word;
  1948. }
  1949. #u200 {
  1950. position:absolute;
  1951. left:0px;
  1952. top:0px;
  1953. width:0px;
  1954. height:0px;
  1955. }
  1956. #u201_div {
  1957. position:absolute;
  1958. left:0px;
  1959. top:0px;
  1960. width:318px;
  1961. height:40px;
  1962. background:inherit;
  1963. background-color:rgba(255, 255, 255, 1);
  1964. box-sizing:border-box;
  1965. border-width:1px;
  1966. border-style:solid;
  1967. border-color:rgba(228, 228, 228, 1);
  1968. border-left:0px;
  1969. border-top:0px;
  1970. border-right:0px;
  1971. border-radius:0px;
  1972. border-top-left-radius:0px;
  1973. border-top-right-radius:0px;
  1974. border-bottom-right-radius:0px;
  1975. border-bottom-left-radius:0px;
  1976. -moz-box-shadow:none;
  1977. -webkit-box-shadow:none;
  1978. box-shadow:none;
  1979. font-family:'PingFangSC-Regular', 'PingFang SC';
  1980. font-weight:400;
  1981. font-style:normal;
  1982. font-size:14px;
  1983. text-align:left;
  1984. }
  1985. #u201 {
  1986. position:absolute;
  1987. left:535px;
  1988. top:96px;
  1989. width:318px;
  1990. height:40px;
  1991. font-family:'PingFangSC-Regular', 'PingFang SC';
  1992. font-weight:400;
  1993. font-style:normal;
  1994. font-size:14px;
  1995. text-align:left;
  1996. }
  1997. #u202 {
  1998. position:absolute;
  1999. left:0px;
  2000. top:10px;
  2001. width:318px;
  2002. word-wrap:break-word;
  2003. }
  2004. #u203_img {
  2005. position:absolute;
  2006. left:0px;
  2007. top:0px;
  2008. width:10px;
  2009. height:16px;
  2010. }
  2011. #u203 {
  2012. position:absolute;
  2013. left:545px;
  2014. top:108px;
  2015. width:10px;
  2016. height:16px;
  2017. }
  2018. #u204 {
  2019. position:absolute;
  2020. left:2px;
  2021. top:0px;
  2022. width:6px;
  2023. visibility:hidden;
  2024. word-wrap:break-word;
  2025. }
  2026. #u205_div {
  2027. position:absolute;
  2028. left:0px;
  2029. top:0px;
  2030. width:37px;
  2031. height:25px;
  2032. background:inherit;
  2033. background-color:rgba(255, 255, 255, 0);
  2034. border:none;
  2035. border-radius:0px;
  2036. -moz-box-shadow:none;
  2037. -webkit-box-shadow:none;
  2038. box-shadow:none;
  2039. font-family:'PingFangSC-Semibold', 'PingFang SC Semibold', 'PingFang SC';
  2040. font-weight:650;
  2041. font-style:normal;
  2042. }
  2043. #u205 {
  2044. position:absolute;
  2045. left:536px;
  2046. top:31px;
  2047. width:37px;
  2048. height:25px;
  2049. font-family:'PingFangSC-Semibold', 'PingFang SC Semibold', 'PingFang SC';
  2050. font-weight:650;
  2051. font-style:normal;
  2052. }
  2053. #u206 {
  2054. position:absolute;
  2055. left:0px;
  2056. top:0px;
  2057. width:37px;
  2058. white-space:nowrap;
  2059. }
  2060. #u207_div {
  2061. position:absolute;
  2062. left:0px;
  2063. top:0px;
  2064. width:133px;
  2065. height:36px;
  2066. background:inherit;
  2067. background-color:rgba(0, 0, 0, 1);
  2068. box-sizing:border-box;
  2069. border-width:1px;
  2070. border-style:solid;
  2071. border-color:rgba(0, 0, 0, 1);
  2072. border-radius:20px;
  2073. -moz-box-shadow:none;
  2074. -webkit-box-shadow:none;
  2075. box-shadow:none;
  2076. font-family:'PingFangSC-Regular', 'PingFang SC';
  2077. font-weight:400;
  2078. font-style:normal;
  2079. font-size:12px;
  2080. color:#FFFFFF;
  2081. }
  2082. #u207 {
  2083. position:absolute;
  2084. left:628px;
  2085. top:439px;
  2086. width:133px;
  2087. height:36px;
  2088. font-family:'PingFangSC-Regular', 'PingFang SC';
  2089. font-weight:400;
  2090. font-style:normal;
  2091. font-size:12px;
  2092. color:#FFFFFF;
  2093. }
  2094. #u208 {
  2095. position:absolute;
  2096. left:2px;
  2097. top:10px;
  2098. width:129px;
  2099. word-wrap:break-word;
  2100. }
  2101. #u209_img {
  2102. position:absolute;
  2103. left:0px;
  2104. top:0px;
  2105. width:100px;
  2106. height:100px;
  2107. }
  2108. #u209 {
  2109. position:absolute;
  2110. left:644px;
  2111. top:236px;
  2112. width:100px;
  2113. height:100px;
  2114. font-family:'PingFangSC-Regular', 'PingFang SC';
  2115. font-weight:400;
  2116. font-style:normal;
  2117. }
  2118. #u210 {
  2119. position:absolute;
  2120. left:2px;
  2121. top:41px;
  2122. width:96px;
  2123. word-wrap:break-word;
  2124. }
  2125. #u211_div {
  2126. position:absolute;
  2127. left:0px;
  2128. top:0px;
  2129. width:169px;
  2130. height:56px;
  2131. background:inherit;
  2132. background-color:rgba(255, 255, 255, 0);
  2133. border:none;
  2134. border-radius:0px;
  2135. -moz-box-shadow:none;
  2136. -webkit-box-shadow:none;
  2137. box-shadow:none;
  2138. font-family:'PingFangSC-Regular', 'PingFang SC';
  2139. font-weight:400;
  2140. font-style:normal;
  2141. text-align:center;
  2142. line-height:28px;
  2143. }
  2144. #u211 {
  2145. position:absolute;
  2146. left:610px;
  2147. top:351px;
  2148. width:169px;
  2149. height:56px;
  2150. font-family:'PingFangSC-Regular', 'PingFang SC';
  2151. font-weight:400;
  2152. font-style:normal;
  2153. text-align:center;
  2154. line-height:28px;
  2155. }
  2156. #u212 {
  2157. position:absolute;
  2158. left:0px;
  2159. top:0px;
  2160. width:169px;
  2161. white-space:nowrap;
  2162. }
  2163. #u213 {
  2164. position:absolute;
  2165. left:0px;
  2166. top:0px;
  2167. width:0px;
  2168. height:0px;
  2169. }
  2170. #u214_div {
  2171. position:absolute;
  2172. left:0px;
  2173. top:0px;
  2174. width:320px;
  2175. height:600px;
  2176. background:inherit;
  2177. background-color:rgba(242, 242, 242, 1);
  2178. box-sizing:border-box;
  2179. border-width:1px;
  2180. border-style:solid;
  2181. border-color:rgba(0, 0, 0, 1);
  2182. border-radius:0px;
  2183. -moz-box-shadow:none;
  2184. -webkit-box-shadow:none;
  2185. box-shadow:none;
  2186. font-family:'PingFangSC-Regular', 'PingFang SC';
  2187. font-weight:400;
  2188. font-style:normal;
  2189. font-size:12px;
  2190. color:#000000;
  2191. }
  2192. #u214 {
  2193. position:absolute;
  2194. left:951px;
  2195. top:79px;
  2196. width:320px;
  2197. height:600px;
  2198. font-family:'PingFangSC-Regular', 'PingFang SC';
  2199. font-weight:400;
  2200. font-style:normal;
  2201. font-size:12px;
  2202. color:#000000;
  2203. }
  2204. #u215 {
  2205. position:absolute;
  2206. left:2px;
  2207. top:292px;
  2208. width:316px;
  2209. visibility:hidden;
  2210. word-wrap:break-word;
  2211. }
  2212. #u216 {
  2213. position:absolute;
  2214. left:0px;
  2215. top:0px;
  2216. width:0px;
  2217. height:0px;
  2218. }
  2219. #u217_div {
  2220. position:absolute;
  2221. left:0px;
  2222. top:0px;
  2223. width:318px;
  2224. height:17px;
  2225. background:inherit;
  2226. background-color:rgba(255, 255, 255, 1);
  2227. border:none;
  2228. border-radius:0px;
  2229. -moz-box-shadow:none;
  2230. -webkit-box-shadow:none;
  2231. box-shadow:none;
  2232. }
  2233. #u217 {
  2234. position:absolute;
  2235. left:952px;
  2236. top:80px;
  2237. width:318px;
  2238. height:17px;
  2239. }
  2240. #u218 {
  2241. position:absolute;
  2242. left:2px;
  2243. top:0px;
  2244. width:314px;
  2245. visibility:hidden;
  2246. word-wrap:break-word;
  2247. }
  2248. #u219_img {
  2249. position:absolute;
  2250. left:0px;
  2251. top:0px;
  2252. width:318px;
  2253. height:17px;
  2254. }
  2255. #u219 {
  2256. position:absolute;
  2257. left:952px;
  2258. top:80px;
  2259. width:318px;
  2260. height:17px;
  2261. }
  2262. #u220 {
  2263. position:absolute;
  2264. left:2px;
  2265. top:0px;
  2266. width:314px;
  2267. visibility:hidden;
  2268. word-wrap:break-word;
  2269. }
  2270. #u221 {
  2271. position:absolute;
  2272. left:0px;
  2273. top:0px;
  2274. width:0px;
  2275. height:0px;
  2276. }
  2277. #u222_div {
  2278. position:absolute;
  2279. left:0px;
  2280. top:0px;
  2281. width:318px;
  2282. height:40px;
  2283. background:inherit;
  2284. background-color:rgba(255, 255, 255, 1);
  2285. box-sizing:border-box;
  2286. border-width:1px;
  2287. border-style:solid;
  2288. border-color:rgba(228, 228, 228, 1);
  2289. border-left:0px;
  2290. border-top:0px;
  2291. border-right:0px;
  2292. border-radius:0px;
  2293. border-top-left-radius:0px;
  2294. border-top-right-radius:0px;
  2295. border-bottom-right-radius:0px;
  2296. border-bottom-left-radius:0px;
  2297. -moz-box-shadow:none;
  2298. -webkit-box-shadow:none;
  2299. box-shadow:none;
  2300. font-family:'PingFangSC-Regular', 'PingFang SC';
  2301. font-weight:400;
  2302. font-style:normal;
  2303. font-size:14px;
  2304. text-align:left;
  2305. }
  2306. #u222 {
  2307. position:absolute;
  2308. left:952px;
  2309. top:97px;
  2310. width:318px;
  2311. height:40px;
  2312. font-family:'PingFangSC-Regular', 'PingFang SC';
  2313. font-weight:400;
  2314. font-style:normal;
  2315. font-size:14px;
  2316. text-align:left;
  2317. }
  2318. #u223 {
  2319. position:absolute;
  2320. left:0px;
  2321. top:10px;
  2322. width:318px;
  2323. word-wrap:break-word;
  2324. }
  2325. #u224_img {
  2326. position:absolute;
  2327. left:0px;
  2328. top:0px;
  2329. width:10px;
  2330. height:16px;
  2331. }
  2332. #u224 {
  2333. position:absolute;
  2334. left:962px;
  2335. top:109px;
  2336. width:10px;
  2337. height:16px;
  2338. }
  2339. #u225 {
  2340. position:absolute;
  2341. left:2px;
  2342. top:0px;
  2343. width:6px;
  2344. visibility:hidden;
  2345. word-wrap:break-word;
  2346. }
  2347. #u226_div {
  2348. position:absolute;
  2349. left:0px;
  2350. top:0px;
  2351. width:37px;
  2352. height:25px;
  2353. background:inherit;
  2354. background-color:rgba(255, 255, 255, 0);
  2355. border:none;
  2356. border-radius:0px;
  2357. -moz-box-shadow:none;
  2358. -webkit-box-shadow:none;
  2359. box-shadow:none;
  2360. font-family:'PingFangSC-Semibold', 'PingFang SC Semibold', 'PingFang SC';
  2361. font-weight:650;
  2362. font-style:normal;
  2363. }
  2364. #u226 {
  2365. position:absolute;
  2366. left:953px;
  2367. top:32px;
  2368. width:37px;
  2369. height:25px;
  2370. font-family:'PingFangSC-Semibold', 'PingFang SC Semibold', 'PingFang SC';
  2371. font-weight:650;
  2372. font-style:normal;
  2373. }
  2374. #u227 {
  2375. position:absolute;
  2376. left:0px;
  2377. top:0px;
  2378. width:37px;
  2379. white-space:nowrap;
  2380. }
  2381. #u228_div {
  2382. position:absolute;
  2383. left:0px;
  2384. top:0px;
  2385. width:318px;
  2386. height:539px;
  2387. background:inherit;
  2388. background-color:rgba(255, 255, 255, 1);
  2389. border:none;
  2390. border-radius:0px;
  2391. -moz-box-shadow:none;
  2392. -webkit-box-shadow:none;
  2393. box-shadow:none;
  2394. }
  2395. #u228 {
  2396. position:absolute;
  2397. left:952px;
  2398. top:137px;
  2399. width:318px;
  2400. height:539px;
  2401. }
  2402. #u229 {
  2403. position:absolute;
  2404. left:2px;
  2405. top:262px;
  2406. width:314px;
  2407. visibility:hidden;
  2408. word-wrap:break-word;
  2409. }
  2410. #u230_div {
  2411. position:absolute;
  2412. left:0px;
  2413. top:0px;
  2414. width:73px;
  2415. height:17px;
  2416. background:inherit;
  2417. background-color:rgba(255, 255, 255, 0);
  2418. border:none;
  2419. border-radius:0px;
  2420. -moz-box-shadow:none;
  2421. -webkit-box-shadow:none;
  2422. box-shadow:none;
  2423. font-size:12px;
  2424. }
  2425. #u230 {
  2426. position:absolute;
  2427. left:959px;
  2428. top:320px;
  2429. width:73px;
  2430. height:17px;
  2431. font-size:12px;
  2432. }
  2433. #u231 {
  2434. position:absolute;
  2435. left:0px;
  2436. top:0px;
  2437. width:73px;
  2438. white-space:nowrap;
  2439. }
  2440. #u232 {
  2441. position:absolute;
  2442. left:0px;
  2443. top:0px;
  2444. width:0px;
  2445. height:0px;
  2446. }
  2447. #u233_div {
  2448. position:absolute;
  2449. left:0px;
  2450. top:0px;
  2451. width:304px;
  2452. height:36px;
  2453. background:inherit;
  2454. background-color:rgba(255, 255, 255, 1);
  2455. box-sizing:border-box;
  2456. border-width:1px;
  2457. border-style:solid;
  2458. border-color:rgba(209, 23, 26, 1);
  2459. border-radius:4px;
  2460. -moz-box-shadow:none;
  2461. -webkit-box-shadow:none;
  2462. box-shadow:none;
  2463. }
  2464. #u233 {
  2465. position:absolute;
  2466. left:959px;
  2467. top:347px;
  2468. width:304px;
  2469. height:36px;
  2470. }
  2471. #u234 {
  2472. position:absolute;
  2473. left:2px;
  2474. top:10px;
  2475. width:300px;
  2476. visibility:hidden;
  2477. word-wrap:break-word;
  2478. }
  2479. #u235_div {
  2480. position:absolute;
  2481. left:0px;
  2482. top:0px;
  2483. width:18px;
  2484. height:16px;
  2485. background:inherit;
  2486. background-color:rgba(255, 255, 255, 0);
  2487. border:none;
  2488. border-radius:0px;
  2489. -moz-box-shadow:none;
  2490. -webkit-box-shadow:none;
  2491. box-shadow:none;
  2492. font-size:11px;
  2493. color:#666666;
  2494. }
  2495. #u235 {
  2496. position:absolute;
  2497. left:1001px;
  2498. top:357px;
  2499. width:18px;
  2500. height:16px;
  2501. font-size:11px;
  2502. color:#666666;
  2503. }
  2504. #u236 {
  2505. position:absolute;
  2506. left:0px;
  2507. top:0px;
  2508. width:18px;
  2509. white-space:nowrap;
  2510. }
  2511. #u237_img {
  2512. position:absolute;
  2513. left:0px;
  2514. top:0px;
  2515. width:2px;
  2516. height:17px;
  2517. }
  2518. #u237 {
  2519. position:absolute;
  2520. left:1080px;
  2521. top:357px;
  2522. width:1px;
  2523. height:16px;
  2524. }
  2525. #u238 {
  2526. position:absolute;
  2527. left:2px;
  2528. top:0px;
  2529. width:1px;
  2530. visibility:hidden;
  2531. word-wrap:break-word;
  2532. }
  2533. #u239_div {
  2534. position:absolute;
  2535. left:0px;
  2536. top:0px;
  2537. width:25px;
  2538. height:12px;
  2539. background:inherit;
  2540. background-color:rgba(255, 255, 255, 0);
  2541. border:none;
  2542. border-radius:0px;
  2543. -moz-box-shadow:none;
  2544. -webkit-box-shadow:none;
  2545. box-shadow:none;
  2546. font-size:11px;
  2547. color:#666666;
  2548. }
  2549. #u239 {
  2550. position:absolute;
  2551. left:1122px;
  2552. top:359px;
  2553. width:25px;
  2554. height:12px;
  2555. font-size:11px;
  2556. color:#666666;
  2557. }
  2558. #u240 {
  2559. position:absolute;
  2560. left:0px;
  2561. top:0px;
  2562. width:25px;
  2563. white-space:nowrap;
  2564. }
  2565. #u241_div {
  2566. position:absolute;
  2567. left:0px;
  2568. top:0px;
  2569. width:21px;
  2570. height:10px;
  2571. background:inherit;
  2572. background-color:rgba(255, 255, 255, 0);
  2573. border:none;
  2574. border-radius:0px;
  2575. -moz-box-shadow:none;
  2576. -webkit-box-shadow:none;
  2577. box-shadow:none;
  2578. font-size:9px;
  2579. color:#999999;
  2580. }
  2581. #u241 {
  2582. position:absolute;
  2583. left:1157px;
  2584. top:360px;
  2585. width:21px;
  2586. height:10px;
  2587. font-size:9px;
  2588. color:#999999;
  2589. }
  2590. #u242 {
  2591. position:absolute;
  2592. left:0px;
  2593. top:0px;
  2594. width:21px;
  2595. white-space:nowrap;
  2596. }
  2597. #u243_img {
  2598. position:absolute;
  2599. left:0px;
  2600. top:0px;
  2601. width:22px;
  2602. height:2px;
  2603. }
  2604. #u243 {
  2605. position:absolute;
  2606. left:1157px;
  2607. top:365px;
  2608. width:21px;
  2609. height:1px;
  2610. }
  2611. #u244 {
  2612. position:absolute;
  2613. left:2px;
  2614. top:-8px;
  2615. width:17px;
  2616. visibility:hidden;
  2617. word-wrap:break-word;
  2618. }
  2619. #u245_div {
  2620. position:absolute;
  2621. left:0px;
  2622. top:0px;
  2623. width:22px;
  2624. height:12px;
  2625. background:inherit;
  2626. background-color:rgba(255, 0, 0, 1);
  2627. border:none;
  2628. border-radius:0px;
  2629. -moz-box-shadow:none;
  2630. -webkit-box-shadow:none;
  2631. box-shadow:none;
  2632. font-size:7px;
  2633. }
  2634. #u245 {
  2635. position:absolute;
  2636. left:1022px;
  2637. top:359px;
  2638. width:22px;
  2639. height:12px;
  2640. font-size:7px;
  2641. }
  2642. #u246 {
  2643. position:absolute;
  2644. left:2px;
  2645. top:2px;
  2646. width:18px;
  2647. word-wrap:break-word;
  2648. }
  2649. #u247 {
  2650. position:absolute;
  2651. left:0px;
  2652. top:0px;
  2653. width:0px;
  2654. height:0px;
  2655. }
  2656. #u248_div {
  2657. position:absolute;
  2658. left:0px;
  2659. top:0px;
  2660. width:304px;
  2661. height:36px;
  2662. background:inherit;
  2663. background-color:rgba(255, 255, 255, 1);
  2664. box-sizing:border-box;
  2665. border-width:1px;
  2666. border-style:solid;
  2667. border-color:rgba(215, 215, 215, 1);
  2668. border-radius:4px;
  2669. -moz-box-shadow:none;
  2670. -webkit-box-shadow:none;
  2671. box-shadow:none;
  2672. }
  2673. #u248 {
  2674. position:absolute;
  2675. left:959px;
  2676. top:388px;
  2677. width:304px;
  2678. height:36px;
  2679. }
  2680. #u249 {
  2681. position:absolute;
  2682. left:2px;
  2683. top:10px;
  2684. width:300px;
  2685. visibility:hidden;
  2686. word-wrap:break-word;
  2687. }
  2688. #u250_div {
  2689. position:absolute;
  2690. left:0px;
  2691. top:0px;
  2692. width:29px;
  2693. height:16px;
  2694. background:inherit;
  2695. background-color:rgba(255, 255, 255, 0);
  2696. border:none;
  2697. border-radius:0px;
  2698. -moz-box-shadow:none;
  2699. -webkit-box-shadow:none;
  2700. box-shadow:none;
  2701. font-size:11px;
  2702. color:#666666;
  2703. }
  2704. #u250 {
  2705. position:absolute;
  2706. left:1001px;
  2707. top:398px;
  2708. width:29px;
  2709. height:16px;
  2710. font-size:11px;
  2711. color:#666666;
  2712. }
  2713. #u251 {
  2714. position:absolute;
  2715. left:0px;
  2716. top:0px;
  2717. width:29px;
  2718. white-space:nowrap;
  2719. }
  2720. #u252_img {
  2721. position:absolute;
  2722. left:0px;
  2723. top:0px;
  2724. width:2px;
  2725. height:17px;
  2726. }
  2727. #u252 {
  2728. position:absolute;
  2729. left:1080px;
  2730. top:398px;
  2731. width:1px;
  2732. height:16px;
  2733. }
  2734. #u253 {
  2735. position:absolute;
  2736. left:2px;
  2737. top:0px;
  2738. width:1px;
  2739. visibility:hidden;
  2740. word-wrap:break-word;
  2741. }
  2742. #u254_div {
  2743. position:absolute;
  2744. left:0px;
  2745. top:0px;
  2746. width:25px;
  2747. height:12px;
  2748. background:inherit;
  2749. background-color:rgba(255, 255, 255, 0);
  2750. border:none;
  2751. border-radius:0px;
  2752. -moz-box-shadow:none;
  2753. -webkit-box-shadow:none;
  2754. box-shadow:none;
  2755. font-size:11px;
  2756. color:#666666;
  2757. }
  2758. #u254 {
  2759. position:absolute;
  2760. left:1122px;
  2761. top:400px;
  2762. width:25px;
  2763. height:12px;
  2764. font-size:11px;
  2765. color:#666666;
  2766. }
  2767. #u255 {
  2768. position:absolute;
  2769. left:0px;
  2770. top:0px;
  2771. width:25px;
  2772. white-space:nowrap;
  2773. }
  2774. #u256_div {
  2775. position:absolute;
  2776. left:0px;
  2777. top:0px;
  2778. width:21px;
  2779. height:10px;
  2780. background:inherit;
  2781. background-color:rgba(255, 255, 255, 0);
  2782. border:none;
  2783. border-radius:0px;
  2784. -moz-box-shadow:none;
  2785. -webkit-box-shadow:none;
  2786. box-shadow:none;
  2787. font-size:9px;
  2788. color:#999999;
  2789. }
  2790. #u256 {
  2791. position:absolute;
  2792. left:1157px;
  2793. top:401px;
  2794. width:21px;
  2795. height:10px;
  2796. font-size:9px;
  2797. color:#999999;
  2798. }
  2799. #u257 {
  2800. position:absolute;
  2801. left:0px;
  2802. top:0px;
  2803. width:21px;
  2804. white-space:nowrap;
  2805. }
  2806. #u258_img {
  2807. position:absolute;
  2808. left:0px;
  2809. top:0px;
  2810. width:22px;
  2811. height:2px;
  2812. }
  2813. #u258 {
  2814. position:absolute;
  2815. left:1157px;
  2816. top:406px;
  2817. width:21px;
  2818. height:1px;
  2819. }
  2820. #u259 {
  2821. position:absolute;
  2822. left:2px;
  2823. top:-8px;
  2824. width:17px;
  2825. visibility:hidden;
  2826. word-wrap:break-word;
  2827. }
  2828. #u260 {
  2829. position:absolute;
  2830. left:0px;
  2831. top:0px;
  2832. width:0px;
  2833. height:0px;
  2834. }
  2835. #u261_div {
  2836. position:absolute;
  2837. left:0px;
  2838. top:0px;
  2839. width:304px;
  2840. height:36px;
  2841. background:inherit;
  2842. background-color:rgba(255, 255, 255, 1);
  2843. box-sizing:border-box;
  2844. border-width:1px;
  2845. border-style:solid;
  2846. border-color:rgba(215, 215, 215, 1);
  2847. border-radius:4px;
  2848. -moz-box-shadow:none;
  2849. -webkit-box-shadow:none;
  2850. box-shadow:none;
  2851. }
  2852. #u261 {
  2853. position:absolute;
  2854. left:959px;
  2855. top:429px;
  2856. width:304px;
  2857. height:36px;
  2858. }
  2859. #u262 {
  2860. position:absolute;
  2861. left:2px;
  2862. top:10px;
  2863. width:300px;
  2864. visibility:hidden;
  2865. word-wrap:break-word;
  2866. }
  2867. #u263_div {
  2868. position:absolute;
  2869. left:0px;
  2870. top:0px;
  2871. width:29px;
  2872. height:16px;
  2873. background:inherit;
  2874. background-color:rgba(255, 255, 255, 0);
  2875. border:none;
  2876. border-radius:0px;
  2877. -moz-box-shadow:none;
  2878. -webkit-box-shadow:none;
  2879. box-shadow:none;
  2880. font-size:11px;
  2881. color:#666666;
  2882. }
  2883. #u263 {
  2884. position:absolute;
  2885. left:1001px;
  2886. top:439px;
  2887. width:29px;
  2888. height:16px;
  2889. font-size:11px;
  2890. color:#666666;
  2891. }
  2892. #u264 {
  2893. position:absolute;
  2894. left:0px;
  2895. top:0px;
  2896. width:29px;
  2897. white-space:nowrap;
  2898. }
  2899. #u265_img {
  2900. position:absolute;
  2901. left:0px;
  2902. top:0px;
  2903. width:2px;
  2904. height:17px;
  2905. }
  2906. #u265 {
  2907. position:absolute;
  2908. left:1080px;
  2909. top:439px;
  2910. width:1px;
  2911. height:16px;
  2912. }
  2913. #u266 {
  2914. position:absolute;
  2915. left:2px;
  2916. top:0px;
  2917. width:1px;
  2918. visibility:hidden;
  2919. word-wrap:break-word;
  2920. }
  2921. #u267_div {
  2922. position:absolute;
  2923. left:0px;
  2924. top:0px;
  2925. width:19px;
  2926. height:12px;
  2927. background:inherit;
  2928. background-color:rgba(255, 255, 255, 0);
  2929. border:none;
  2930. border-radius:0px;
  2931. -moz-box-shadow:none;
  2932. -webkit-box-shadow:none;
  2933. box-shadow:none;
  2934. font-size:11px;
  2935. color:#666666;
  2936. }
  2937. #u267 {
  2938. position:absolute;
  2939. left:1127px;
  2940. top:441px;
  2941. width:19px;
  2942. height:12px;
  2943. font-size:11px;
  2944. color:#666666;
  2945. }
  2946. #u268 {
  2947. position:absolute;
  2948. left:0px;
  2949. top:0px;
  2950. width:19px;
  2951. white-space:nowrap;
  2952. }
  2953. #u269_div {
  2954. position:absolute;
  2955. left:0px;
  2956. top:0px;
  2957. width:145px;
  2958. height:17px;
  2959. background:inherit;
  2960. background-color:rgba(255, 255, 255, 0);
  2961. border:none;
  2962. border-radius:0px;
  2963. -moz-box-shadow:none;
  2964. -webkit-box-shadow:none;
  2965. box-shadow:none;
  2966. font-family:'PingFangSC-Regular', 'PingFang SC';
  2967. font-weight:400;
  2968. font-style:normal;
  2969. font-size:12px;
  2970. }
  2971. #u269 {
  2972. position:absolute;
  2973. left:962px;
  2974. top:240px;
  2975. width:145px;
  2976. height:17px;
  2977. font-family:'PingFangSC-Regular', 'PingFang SC';
  2978. font-weight:400;
  2979. font-style:normal;
  2980. font-size:12px;
  2981. }
  2982. #u270 {
  2983. position:absolute;
  2984. left:0px;
  2985. top:0px;
  2986. width:145px;
  2987. white-space:nowrap;
  2988. }
  2989. #u271_div {
  2990. position:absolute;
  2991. left:0px;
  2992. top:0px;
  2993. width:304px;
  2994. height:36px;
  2995. background:inherit;
  2996. background-color:rgba(255, 255, 255, 1);
  2997. box-sizing:border-box;
  2998. border-width:1px;
  2999. border-style:solid;
  3000. border-color:rgba(215, 215, 215, 1);
  3001. border-radius:4px;
  3002. -moz-box-shadow:none;
  3003. -webkit-box-shadow:none;
  3004. box-shadow:none;
  3005. text-align:left;
  3006. }
  3007. #u271 {
  3008. position:absolute;
  3009. left:959px;
  3010. top:263px;
  3011. width:304px;
  3012. height:36px;
  3013. text-align:left;
  3014. }
  3015. #u272 {
  3016. position:absolute;
  3017. left:2px;
  3018. top:10px;
  3019. width:300px;
  3020. word-wrap:break-word;
  3021. }
  3022. #u273_div {
  3023. position:absolute;
  3024. left:0px;
  3025. top:0px;
  3026. width:270px;
  3027. height:41px;
  3028. background:inherit;
  3029. background-color:rgba(0, 0, 0, 1);
  3030. box-sizing:border-box;
  3031. border-width:1px;
  3032. border-style:solid;
  3033. border-color:rgba(121, 121, 121, 1);
  3034. border-radius:160px;
  3035. -moz-box-shadow:none;
  3036. -webkit-box-shadow:none;
  3037. box-shadow:none;
  3038. color:#FFFFFF;
  3039. }
  3040. #u273 {
  3041. position:absolute;
  3042. left:976px;
  3043. top:627px;
  3044. width:270px;
  3045. height:41px;
  3046. color:#FFFFFF;
  3047. }
  3048. #u274 {
  3049. position:absolute;
  3050. left:2px;
  3051. top:12px;
  3052. width:266px;
  3053. word-wrap:break-word;
  3054. }
  3055. #u275 {
  3056. position:absolute;
  3057. left:0px;
  3058. top:0px;
  3059. width:0px;
  3060. height:0px;
  3061. }
  3062. #u276_div {
  3063. position:absolute;
  3064. left:0px;
  3065. top:0px;
  3066. width:320px;
  3067. height:598px;
  3068. background:inherit;
  3069. background-color:rgba(242, 242, 242, 1);
  3070. box-sizing:border-box;
  3071. border-width:1px;
  3072. border-style:solid;
  3073. border-color:rgba(0, 0, 0, 1);
  3074. border-radius:0px;
  3075. -moz-box-shadow:none;
  3076. -webkit-box-shadow:none;
  3077. box-shadow:none;
  3078. font-family:'PingFangSC-Regular', 'PingFang SC';
  3079. font-weight:400;
  3080. font-style:normal;
  3081. font-size:12px;
  3082. color:#000000;
  3083. }
  3084. #u276 {
  3085. position:absolute;
  3086. left:1361px;
  3087. top:78px;
  3088. width:320px;
  3089. height:598px;
  3090. font-family:'PingFangSC-Regular', 'PingFang SC';
  3091. font-weight:400;
  3092. font-style:normal;
  3093. font-size:12px;
  3094. color:#000000;
  3095. }
  3096. #u277 {
  3097. position:absolute;
  3098. left:2px;
  3099. top:291px;
  3100. width:316px;
  3101. visibility:hidden;
  3102. word-wrap:break-word;
  3103. }
  3104. #u278 {
  3105. position:absolute;
  3106. left:0px;
  3107. top:0px;
  3108. width:0px;
  3109. height:0px;
  3110. }
  3111. #u279_div {
  3112. position:absolute;
  3113. left:0px;
  3114. top:0px;
  3115. width:318px;
  3116. height:17px;
  3117. background:inherit;
  3118. background-color:rgba(255, 255, 255, 1);
  3119. border:none;
  3120. border-radius:0px;
  3121. -moz-box-shadow:none;
  3122. -webkit-box-shadow:none;
  3123. box-shadow:none;
  3124. }
  3125. #u279 {
  3126. position:absolute;
  3127. left:1362px;
  3128. top:79px;
  3129. width:318px;
  3130. height:17px;
  3131. }
  3132. #u280 {
  3133. position:absolute;
  3134. left:2px;
  3135. top:0px;
  3136. width:314px;
  3137. visibility:hidden;
  3138. word-wrap:break-word;
  3139. }
  3140. #u281_img {
  3141. position:absolute;
  3142. left:0px;
  3143. top:0px;
  3144. width:318px;
  3145. height:17px;
  3146. }
  3147. #u281 {
  3148. position:absolute;
  3149. left:1362px;
  3150. top:79px;
  3151. width:318px;
  3152. height:17px;
  3153. }
  3154. #u282 {
  3155. position:absolute;
  3156. left:2px;
  3157. top:0px;
  3158. width:314px;
  3159. visibility:hidden;
  3160. word-wrap:break-word;
  3161. }
  3162. #u283 {
  3163. position:absolute;
  3164. left:0px;
  3165. top:0px;
  3166. width:0px;
  3167. height:0px;
  3168. }
  3169. #u284_div {
  3170. position:absolute;
  3171. left:0px;
  3172. top:0px;
  3173. width:318px;
  3174. height:40px;
  3175. background:inherit;
  3176. background-color:rgba(255, 255, 255, 1);
  3177. box-sizing:border-box;
  3178. border-width:1px;
  3179. border-style:solid;
  3180. border-color:rgba(228, 228, 228, 1);
  3181. border-left:0px;
  3182. border-top:0px;
  3183. border-right:0px;
  3184. border-radius:0px;
  3185. border-top-left-radius:0px;
  3186. border-top-right-radius:0px;
  3187. border-bottom-right-radius:0px;
  3188. border-bottom-left-radius:0px;
  3189. -moz-box-shadow:none;
  3190. -webkit-box-shadow:none;
  3191. box-shadow:none;
  3192. font-family:'PingFangSC-Regular', 'PingFang SC';
  3193. font-weight:400;
  3194. font-style:normal;
  3195. font-size:14px;
  3196. text-align:left;
  3197. }
  3198. #u284 {
  3199. position:absolute;
  3200. left:1362px;
  3201. top:96px;
  3202. width:318px;
  3203. height:40px;
  3204. font-family:'PingFangSC-Regular', 'PingFang SC';
  3205. font-weight:400;
  3206. font-style:normal;
  3207. font-size:14px;
  3208. text-align:left;
  3209. }
  3210. #u285 {
  3211. position:absolute;
  3212. left:0px;
  3213. top:10px;
  3214. width:318px;
  3215. word-wrap:break-word;
  3216. }
  3217. #u286_img {
  3218. position:absolute;
  3219. left:0px;
  3220. top:0px;
  3221. width:10px;
  3222. height:16px;
  3223. }
  3224. #u286 {
  3225. position:absolute;
  3226. left:1372px;
  3227. top:108px;
  3228. width:10px;
  3229. height:16px;
  3230. }
  3231. #u287 {
  3232. position:absolute;
  3233. left:2px;
  3234. top:0px;
  3235. width:6px;
  3236. visibility:hidden;
  3237. word-wrap:break-word;
  3238. }
  3239. #u288_div {
  3240. position:absolute;
  3241. left:0px;
  3242. top:0px;
  3243. width:109px;
  3244. height:25px;
  3245. background:inherit;
  3246. background-color:rgba(255, 255, 255, 0);
  3247. border:none;
  3248. border-radius:0px;
  3249. -moz-box-shadow:none;
  3250. -webkit-box-shadow:none;
  3251. box-shadow:none;
  3252. font-family:'PingFangSC-Semibold', 'PingFang SC Semibold', 'PingFang SC';
  3253. font-weight:650;
  3254. font-style:normal;
  3255. }
  3256. #u288 {
  3257. position:absolute;
  3258. left:1363px;
  3259. top:31px;
  3260. width:109px;
  3261. height:25px;
  3262. font-family:'PingFangSC-Semibold', 'PingFang SC Semibold', 'PingFang SC';
  3263. font-weight:650;
  3264. font-style:normal;
  3265. }
  3266. #u289 {
  3267. position:absolute;
  3268. left:0px;
  3269. top:0px;
  3270. width:109px;
  3271. white-space:nowrap;
  3272. }
  3273. #u290_div {
  3274. position:absolute;
  3275. left:0px;
  3276. top:0px;
  3277. width:166px;
  3278. height:40px;
  3279. background:inherit;
  3280. background-color:rgba(255, 255, 255, 0);
  3281. border:none;
  3282. border-radius:0px;
  3283. -moz-box-shadow:none;
  3284. -webkit-box-shadow:none;
  3285. box-shadow:none;
  3286. text-align:center;
  3287. }
  3288. #u290 {
  3289. position:absolute;
  3290. left:1439px;
  3291. top:513px;
  3292. width:166px;
  3293. height:40px;
  3294. text-align:center;
  3295. }
  3296. #u291 {
  3297. position:absolute;
  3298. left:0px;
  3299. top:0px;
  3300. width:166px;
  3301. white-space:nowrap;
  3302. }
  3303. #u292_div {
  3304. position:absolute;
  3305. left:0px;
  3306. top:0px;
  3307. width:163px;
  3308. height:163px;
  3309. background:inherit;
  3310. background-color:rgba(255, 255, 255, 1);
  3311. box-sizing:border-box;
  3312. border-width:1px;
  3313. border-style:solid;
  3314. border-color:rgba(121, 121, 121, 1);
  3315. border-radius:0px;
  3316. -moz-box-shadow:none;
  3317. -webkit-box-shadow:none;
  3318. box-shadow:none;
  3319. font-family:'PingFangSC-Regular', 'PingFang SC';
  3320. font-weight:400;
  3321. font-style:normal;
  3322. }
  3323. #u292 {
  3324. position:absolute;
  3325. left:1441px;
  3326. top:340px;
  3327. width:163px;
  3328. height:163px;
  3329. font-family:'PingFangSC-Regular', 'PingFang SC';
  3330. font-weight:400;
  3331. font-style:normal;
  3332. }
  3333. #u293 {
  3334. position:absolute;
  3335. left:2px;
  3336. top:72px;
  3337. width:159px;
  3338. word-wrap:break-word;
  3339. }
  3340. #u294_div {
  3341. position:absolute;
  3342. left:0px;
  3343. top:0px;
  3344. width:243px;
  3345. height:17px;
  3346. background:inherit;
  3347. background-color:rgba(255, 255, 255, 0);
  3348. border:none;
  3349. border-radius:0px;
  3350. -moz-box-shadow:none;
  3351. -webkit-box-shadow:none;
  3352. box-shadow:none;
  3353. font-size:12px;
  3354. color:#CC1619;
  3355. }
  3356. #u294 {
  3357. position:absolute;
  3358. left:1401px;
  3359. top:277px;
  3360. width:243px;
  3361. height:17px;
  3362. font-size:12px;
  3363. color:#CC1619;
  3364. }
  3365. #u295 {
  3366. position:absolute;
  3367. left:0px;
  3368. top:0px;
  3369. width:243px;
  3370. white-space:nowrap;
  3371. }
  3372. #u296_img {
  3373. position:absolute;
  3374. left:0px;
  3375. top:0px;
  3376. width:30px;
  3377. height:30px;
  3378. }
  3379. #u296 {
  3380. position:absolute;
  3381. left:1507px;
  3382. top:178px;
  3383. width:30px;
  3384. height:30px;
  3385. }
  3386. #u297 {
  3387. position:absolute;
  3388. left:2px;
  3389. top:7px;
  3390. width:26px;
  3391. visibility:hidden;
  3392. word-wrap:break-word;
  3393. }
  3394. #u298_div {
  3395. position:absolute;
  3396. left:0px;
  3397. top:0px;
  3398. width:57px;
  3399. height:20px;
  3400. background:inherit;
  3401. background-color:rgba(255, 255, 255, 0);
  3402. border:none;
  3403. border-radius:0px;
  3404. -moz-box-shadow:none;
  3405. -webkit-box-shadow:none;
  3406. box-shadow:none;
  3407. }
  3408. #u298 {
  3409. position:absolute;
  3410. left:1494px;
  3411. top:218px;
  3412. width:57px;
  3413. height:20px;
  3414. }
  3415. #u299 {
  3416. position:absolute;
  3417. left:0px;
  3418. top:0px;
  3419. width:57px;
  3420. white-space:nowrap;
  3421. }
  3422. #u300_img {
  3423. position:absolute;
  3424. left:0px;
  3425. top:0px;
  3426. width:23px;
  3427. height:20px;
  3428. }
  3429. #u300 {
  3430. position:absolute;
  3431. left:153px;
  3432. top:1618px;
  3433. width:23px;
  3434. height:20px;
  3435. }
  3436. #u301 {
  3437. position:absolute;
  3438. left:2px;
  3439. top:2px;
  3440. width:19px;
  3441. visibility:hidden;
  3442. word-wrap:break-word;
  3443. }
  3444. #u302_div {
  3445. position:absolute;
  3446. left:0px;
  3447. top:0px;
  3448. width:318px;
  3449. height:86px;
  3450. background:inherit;
  3451. background-color:rgba(208, 225, 125, 1);
  3452. border:none;
  3453. border-radius:0px;
  3454. -moz-box-shadow:5px 5px 5px rgba(0, 0, 0, 0.2);
  3455. -webkit-box-shadow:5px 5px 5px rgba(0, 0, 0, 0.2);
  3456. box-shadow:5px 5px 5px rgba(0, 0, 0, 0.2);
  3457. }
  3458. #u302 {
  3459. position:absolute;
  3460. left:100px;
  3461. top:2086px;
  3462. width:318px;
  3463. height:86px;
  3464. }
  3465. #u303 {
  3466. position:absolute;
  3467. left:10px;
  3468. top:10px;
  3469. width:298px;
  3470. word-wrap:break-word;
  3471. }
  3472. #u304_div {
  3473. position:absolute;
  3474. left:0px;
  3475. top:0px;
  3476. width:73px;
  3477. height:17px;
  3478. background:inherit;
  3479. background-color:rgba(255, 255, 255, 0);
  3480. border:none;
  3481. border-radius:0px;
  3482. -moz-box-shadow:none;
  3483. -webkit-box-shadow:none;
  3484. box-shadow:none;
  3485. font-size:12px;
  3486. }
  3487. #u304 {
  3488. position:absolute;
  3489. left:959px;
  3490. top:484px;
  3491. width:73px;
  3492. height:17px;
  3493. font-size:12px;
  3494. }
  3495. #u305 {
  3496. position:absolute;
  3497. left:0px;
  3498. top:0px;
  3499. width:73px;
  3500. white-space:nowrap;
  3501. }
  3502. #u306_div {
  3503. position:absolute;
  3504. left:0px;
  3505. top:0px;
  3506. width:28px;
  3507. height:28px;
  3508. background:inherit;
  3509. background-color:rgba(0, 153, 255, 1);
  3510. border:none;
  3511. border-radius:4px;
  3512. -moz-box-shadow:none;
  3513. -webkit-box-shadow:none;
  3514. box-shadow:none;
  3515. font-size:16px;
  3516. color:#FFFFFF;
  3517. }
  3518. #u306 {
  3519. position:absolute;
  3520. left:959px;
  3521. top:546px;
  3522. width:28px;
  3523. height:28px;
  3524. font-size:16px;
  3525. color:#FFFFFF;
  3526. }
  3527. #u307 {
  3528. position:absolute;
  3529. left:2px;
  3530. top:3px;
  3531. width:24px;
  3532. word-wrap:break-word;
  3533. }
  3534. #u308_div {
  3535. position:absolute;
  3536. left:0px;
  3537. top:0px;
  3538. width:40px;
  3539. height:18px;
  3540. background:inherit;
  3541. background-color:rgba(255, 255, 255, 0);
  3542. border:none;
  3543. border-radius:0px;
  3544. -moz-box-shadow:none;
  3545. -webkit-box-shadow:none;
  3546. box-shadow:none;
  3547. font-size:13px;
  3548. color:#666666;
  3549. }
  3550. #u308 {
  3551. position:absolute;
  3552. left:995px;
  3553. top:549px;
  3554. width:40px;
  3555. height:18px;
  3556. font-size:13px;
  3557. color:#666666;
  3558. }
  3559. #u309 {
  3560. position:absolute;
  3561. left:0px;
  3562. top:0px;
  3563. width:40px;
  3564. white-space:nowrap;
  3565. }
  3566. #u310_img {
  3567. position:absolute;
  3568. left:0px;
  3569. top:0px;
  3570. width:16px;
  3571. height:16px;
  3572. }
  3573. #u310 {
  3574. position:absolute;
  3575. left:1247px;
  3576. top:552px;
  3577. width:16px;
  3578. height:16px;
  3579. }
  3580. #u311 {
  3581. position:absolute;
  3582. left:2px;
  3583. top:0px;
  3584. width:12px;
  3585. visibility:hidden;
  3586. word-wrap:break-word;
  3587. }
  3588. #u312_div {
  3589. position:absolute;
  3590. left:0px;
  3591. top:0px;
  3592. width:27px;
  3593. height:18px;
  3594. background:inherit;
  3595. background-color:rgba(255, 255, 255, 0);
  3596. border:none;
  3597. border-radius:0px;
  3598. -moz-box-shadow:none;
  3599. -webkit-box-shadow:none;
  3600. box-shadow:none;
  3601. font-size:13px;
  3602. color:#666666;
  3603. }
  3604. #u312 {
  3605. position:absolute;
  3606. left:995px;
  3607. top:517px;
  3608. width:27px;
  3609. height:18px;
  3610. font-size:13px;
  3611. color:#666666;
  3612. }
  3613. #u313 {
  3614. position:absolute;
  3615. left:0px;
  3616. top:0px;
  3617. width:27px;
  3618. white-space:nowrap;
  3619. }
  3620. #u314_img {
  3621. position:absolute;
  3622. left:0px;
  3623. top:0px;
  3624. width:26px;
  3625. height:21px;
  3626. }
  3627. #u314 {
  3628. position:absolute;
  3629. left:959px;
  3630. top:515px;
  3631. width:26px;
  3632. height:21px;
  3633. }
  3634. #u315 {
  3635. position:absolute;
  3636. left:2px;
  3637. top:2px;
  3638. width:22px;
  3639. visibility:hidden;
  3640. word-wrap:break-word;
  3641. }
  3642. #u316 {
  3643. position:absolute;
  3644. left:0px;
  3645. top:0px;
  3646. width:0px;
  3647. height:0px;
  3648. }
  3649. #u317_div {
  3650. position:absolute;
  3651. left:0px;
  3652. top:0px;
  3653. width:320px;
  3654. height:561px;
  3655. background:inherit;
  3656. background-color:rgba(242, 242, 242, 1);
  3657. box-sizing:border-box;
  3658. border-width:1px;
  3659. border-style:solid;
  3660. border-color:rgba(0, 0, 0, 1);
  3661. border-radius:0px;
  3662. -moz-box-shadow:none;
  3663. -webkit-box-shadow:none;
  3664. box-shadow:none;
  3665. }
  3666. #u317 {
  3667. position:absolute;
  3668. left:508px;
  3669. top:1502px;
  3670. width:320px;
  3671. height:561px;
  3672. }
  3673. #u318 {
  3674. position:absolute;
  3675. left:2px;
  3676. top:272px;
  3677. width:316px;
  3678. visibility:hidden;
  3679. word-wrap:break-word;
  3680. }
  3681. #u319 {
  3682. position:absolute;
  3683. left:0px;
  3684. top:0px;
  3685. width:0px;
  3686. height:0px;
  3687. }
  3688. #u320_div {
  3689. position:absolute;
  3690. left:0px;
  3691. top:0px;
  3692. width:318px;
  3693. height:17px;
  3694. background:inherit;
  3695. background-color:rgba(255, 255, 255, 1);
  3696. border:none;
  3697. border-radius:0px;
  3698. -moz-box-shadow:none;
  3699. -webkit-box-shadow:none;
  3700. box-shadow:none;
  3701. }
  3702. #u320 {
  3703. position:absolute;
  3704. left:509px;
  3705. top:1503px;
  3706. width:318px;
  3707. height:17px;
  3708. }
  3709. #u321 {
  3710. position:absolute;
  3711. left:2px;
  3712. top:0px;
  3713. width:314px;
  3714. visibility:hidden;
  3715. word-wrap:break-word;
  3716. }
  3717. #u322_img {
  3718. position:absolute;
  3719. left:0px;
  3720. top:0px;
  3721. width:318px;
  3722. height:17px;
  3723. }
  3724. #u322 {
  3725. position:absolute;
  3726. left:509px;
  3727. top:1503px;
  3728. width:318px;
  3729. height:17px;
  3730. }
  3731. #u323 {
  3732. position:absolute;
  3733. left:2px;
  3734. top:0px;
  3735. width:314px;
  3736. visibility:hidden;
  3737. word-wrap:break-word;
  3738. }
  3739. #u324_div {
  3740. position:absolute;
  3741. left:0px;
  3742. top:0px;
  3743. width:140px;
  3744. height:33px;
  3745. background:inherit;
  3746. background-color:rgba(255, 255, 255, 0);
  3747. border:none;
  3748. border-radius:0px;
  3749. -moz-box-shadow:none;
  3750. -webkit-box-shadow:none;
  3751. box-shadow:none;
  3752. font-family:'Arial-BoldMT', 'Arial Bold', 'Arial';
  3753. font-weight:700;
  3754. font-style:normal;
  3755. }
  3756. #u324 {
  3757. position:absolute;
  3758. left:508px;
  3759. top:1433px;
  3760. width:140px;
  3761. height:33px;
  3762. font-family:'Arial-BoldMT', 'Arial Bold', 'Arial';
  3763. font-weight:700;
  3764. font-style:normal;
  3765. }
  3766. #u325 {
  3767. position:absolute;
  3768. left:0px;
  3769. top:0px;
  3770. width:140px;
  3771. white-space:nowrap;
  3772. }
  3773. #u326 {
  3774. position:absolute;
  3775. left:0px;
  3776. top:0px;
  3777. width:0px;
  3778. height:0px;
  3779. }
  3780. #u327_div {
  3781. position:absolute;
  3782. left:0px;
  3783. top:0px;
  3784. width:318px;
  3785. height:40px;
  3786. background:inherit;
  3787. background-color:rgba(255, 255, 255, 1);
  3788. box-sizing:border-box;
  3789. border-width:1px;
  3790. border-style:solid;
  3791. border-color:rgba(228, 228, 228, 1);
  3792. border-left:0px;
  3793. border-top:0px;
  3794. border-right:0px;
  3795. border-radius:0px;
  3796. border-top-left-radius:0px;
  3797. border-top-right-radius:0px;
  3798. border-bottom-right-radius:0px;
  3799. border-bottom-left-radius:0px;
  3800. -moz-box-shadow:none;
  3801. -webkit-box-shadow:none;
  3802. box-shadow:none;
  3803. font-family:'PingFangSC-Regular', 'PingFang SC';
  3804. font-weight:400;
  3805. font-style:normal;
  3806. font-size:14px;
  3807. text-align:left;
  3808. }
  3809. #u327 {
  3810. position:absolute;
  3811. left:509px;
  3812. top:1520px;
  3813. width:318px;
  3814. height:40px;
  3815. font-family:'PingFangSC-Regular', 'PingFang SC';
  3816. font-weight:400;
  3817. font-style:normal;
  3818. font-size:14px;
  3819. text-align:left;
  3820. }
  3821. #u328 {
  3822. position:absolute;
  3823. left:0px;
  3824. top:10px;
  3825. width:318px;
  3826. word-wrap:break-word;
  3827. }
  3828. #u329_img {
  3829. position:absolute;
  3830. left:0px;
  3831. top:0px;
  3832. width:10px;
  3833. height:16px;
  3834. }
  3835. #u329 {
  3836. position:absolute;
  3837. left:519px;
  3838. top:1532px;
  3839. width:10px;
  3840. height:16px;
  3841. }
  3842. #u330 {
  3843. position:absolute;
  3844. left:2px;
  3845. top:0px;
  3846. width:6px;
  3847. visibility:hidden;
  3848. word-wrap:break-word;
  3849. }
  3850. #u331 {
  3851. position:absolute;
  3852. left:0px;
  3853. top:0px;
  3854. width:0px;
  3855. height:0px;
  3856. }
  3857. #u332_div {
  3858. position:absolute;
  3859. left:0px;
  3860. top:0px;
  3861. width:50px;
  3862. height:26px;
  3863. background:inherit;
  3864. background-color:rgba(255, 255, 255, 1);
  3865. box-sizing:border-box;
  3866. border-width:1px;
  3867. border-style:solid;
  3868. border-color:rgba(204, 204, 204, 1);
  3869. border-radius:15px;
  3870. -moz-box-shadow:none;
  3871. -webkit-box-shadow:none;
  3872. box-shadow:none;
  3873. }
  3874. #u332 {
  3875. position:absolute;
  3876. left:767px;
  3877. top:1527px;
  3878. width:50px;
  3879. height:26px;
  3880. }
  3881. #u333 {
  3882. position:absolute;
  3883. left:2px;
  3884. top:5px;
  3885. width:46px;
  3886. visibility:hidden;
  3887. word-wrap:break-word;
  3888. }
  3889. #u334 {
  3890. position:absolute;
  3891. left:0px;
  3892. top:0px;
  3893. width:0px;
  3894. height:0px;
  3895. }
  3896. #u335_img {
  3897. position:absolute;
  3898. left:0px;
  3899. top:0px;
  3900. width:3px;
  3901. height:3px;
  3902. }
  3903. #u335 {
  3904. position:absolute;
  3905. left:774px;
  3906. top:1539px;
  3907. width:3px;
  3908. height:3px;
  3909. -webkit-transform:rotate(45deg);
  3910. -moz-transform:rotate(45deg);
  3911. -ms-transform:rotate(45deg);
  3912. transform:rotate(45deg);
  3913. font-family:'MicrosoftYaHei', '微软雅黑';
  3914. font-weight:400;
  3915. font-style:normal;
  3916. font-size:18px;
  3917. }
  3918. #u336 {
  3919. position:absolute;
  3920. left:0px;
  3921. top:-6px;
  3922. width:3px;
  3923. visibility:hidden;
  3924. word-wrap:break-word;
  3925. }
  3926. #u337_img {
  3927. position:absolute;
  3928. left:0px;
  3929. top:0px;
  3930. width:5px;
  3931. height:5px;
  3932. }
  3933. #u337 {
  3934. position:absolute;
  3935. left:778px;
  3936. top:1538px;
  3937. width:5px;
  3938. height:5px;
  3939. -webkit-transform:rotate(45deg);
  3940. -moz-transform:rotate(45deg);
  3941. -ms-transform:rotate(45deg);
  3942. transform:rotate(45deg);
  3943. font-family:'MicrosoftYaHei', '微软雅黑';
  3944. font-weight:400;
  3945. font-style:normal;
  3946. font-size:18px;
  3947. }
  3948. #u338 {
  3949. position:absolute;
  3950. left:0px;
  3951. top:-6px;
  3952. width:5px;
  3953. visibility:hidden;
  3954. word-wrap:break-word;
  3955. }
  3956. #u339_img {
  3957. position:absolute;
  3958. left:0px;
  3959. top:0px;
  3960. width:3px;
  3961. height:3px;
  3962. }
  3963. #u339 {
  3964. position:absolute;
  3965. left:784px;
  3966. top:1539px;
  3967. width:3px;
  3968. height:3px;
  3969. -webkit-transform:rotate(45deg);
  3970. -moz-transform:rotate(45deg);
  3971. -ms-transform:rotate(45deg);
  3972. transform:rotate(45deg);
  3973. font-family:'MicrosoftYaHei', '微软雅黑';
  3974. font-weight:400;
  3975. font-style:normal;
  3976. font-size:18px;
  3977. }
  3978. #u340 {
  3979. position:absolute;
  3980. left:0px;
  3981. top:-6px;
  3982. width:3px;
  3983. visibility:hidden;
  3984. word-wrap:break-word;
  3985. }
  3986. #u341_img {
  3987. position:absolute;
  3988. left:0px;
  3989. top:0px;
  3990. width:2px;
  3991. height:19px;
  3992. }
  3993. #u341 {
  3994. position:absolute;
  3995. left:791px;
  3996. top:1531px;
  3997. width:1px;
  3998. height:18px;
  3999. }
  4000. #u342 {
  4001. position:absolute;
  4002. left:2px;
  4003. top:1px;
  4004. width:1px;
  4005. visibility:hidden;
  4006. word-wrap:break-word;
  4007. }
  4008. #u343_img {
  4009. position:absolute;
  4010. left:0px;
  4011. top:0px;
  4012. width:14px;
  4013. height:14px;
  4014. }
  4015. #u343 {
  4016. position:absolute;
  4017. left:797px;
  4018. top:1533px;
  4019. width:14px;
  4020. height:14px;
  4021. }
  4022. #u344 {
  4023. position:absolute;
  4024. left:2px;
  4025. top:-1px;
  4026. width:10px;
  4027. visibility:hidden;
  4028. word-wrap:break-word;
  4029. }
  4030. #u345_img {
  4031. position:absolute;
  4032. left:0px;
  4033. top:0px;
  4034. width:6px;
  4035. height:6px;
  4036. }
  4037. #u345 {
  4038. position:absolute;
  4039. left:801px;
  4040. top:1537px;
  4041. width:6px;
  4042. height:6px;
  4043. }
  4044. #u346 {
  4045. position:absolute;
  4046. left:2px;
  4047. top:-5px;
  4048. width:2px;
  4049. visibility:hidden;
  4050. word-wrap:break-word;
  4051. }
  4052. #u347 {
  4053. position:absolute;
  4054. left:0px;
  4055. top:0px;
  4056. width:0px;
  4057. height:0px;
  4058. }
  4059. #u348_div {
  4060. position:absolute;
  4061. left:0px;
  4062. top:0px;
  4063. width:318px;
  4064. height:49px;
  4065. background:inherit;
  4066. background-color:rgba(247, 247, 250, 1);
  4067. box-sizing:border-box;
  4068. border-width:1px;
  4069. border-style:solid;
  4070. border-color:rgba(228, 228, 228, 1);
  4071. border-left:0px;
  4072. border-right:0px;
  4073. border-bottom:0px;
  4074. border-radius:0px;
  4075. border-top-left-radius:0px;
  4076. border-top-right-radius:0px;
  4077. border-bottom-right-radius:0px;
  4078. border-bottom-left-radius:0px;
  4079. -moz-box-shadow:none;
  4080. -webkit-box-shadow:none;
  4081. box-shadow:none;
  4082. font-size:16px;
  4083. color:#333333;
  4084. text-align:left;
  4085. }
  4086. #u348 {
  4087. position:absolute;
  4088. left:509px;
  4089. top:2013px;
  4090. width:318px;
  4091. height:49px;
  4092. font-size:16px;
  4093. color:#333333;
  4094. text-align:left;
  4095. }
  4096. #u348_div.selected {
  4097. position:absolute;
  4098. left:0px;
  4099. top:0px;
  4100. width:318px;
  4101. height:49px;
  4102. background:inherit;
  4103. background-color:rgba(247, 247, 250, 1);
  4104. box-sizing:border-box;
  4105. border-width:1px;
  4106. border-style:solid;
  4107. border-color:rgba(45, 183, 245, 1);
  4108. border-left:0px;
  4109. border-right:0px;
  4110. border-bottom:0px;
  4111. border-radius:0px;
  4112. border-top-left-radius:0px;
  4113. border-top-right-radius:0px;
  4114. border-bottom-right-radius:0px;
  4115. border-bottom-left-radius:0px;
  4116. -moz-box-shadow:none;
  4117. -webkit-box-shadow:none;
  4118. box-shadow:none;
  4119. font-size:16px;
  4120. color:#333333;
  4121. text-align:left;
  4122. }
  4123. #u348.selected {
  4124. }
  4125. #u349 {
  4126. position:absolute;
  4127. left:55px;
  4128. top:16px;
  4129. width:263px;
  4130. visibility:hidden;
  4131. word-wrap:break-word;
  4132. }
  4133. #u350 {
  4134. position:absolute;
  4135. left:0px;
  4136. top:0px;
  4137. width:0px;
  4138. height:0px;
  4139. }
  4140. #u351_div {
  4141. position:absolute;
  4142. left:0px;
  4143. top:0px;
  4144. width:70px;
  4145. height:10px;
  4146. background:inherit;
  4147. background-color:rgba(255, 255, 255, 0);
  4148. border:none;
  4149. border-radius:0px;
  4150. -moz-box-shadow:none;
  4151. -webkit-box-shadow:none;
  4152. box-shadow:none;
  4153. font-family:'PingFangSC-Regular', 'PingFang SC';
  4154. font-weight:400;
  4155. font-style:normal;
  4156. font-size:10px;
  4157. color:#666666;
  4158. line-height:10px;
  4159. }
  4160. #u351 {
  4161. position:absolute;
  4162. left:528px;
  4163. top:2048px;
  4164. width:70px;
  4165. height:10px;
  4166. font-family:'PingFangSC-Regular', 'PingFang SC';
  4167. font-weight:400;
  4168. font-style:normal;
  4169. font-size:10px;
  4170. color:#666666;
  4171. line-height:10px;
  4172. }
  4173. #u352 {
  4174. position:absolute;
  4175. left:0px;
  4176. top:0px;
  4177. width:70px;
  4178. word-wrap:break-word;
  4179. }
  4180. #u353_img {
  4181. position:absolute;
  4182. left:0px;
  4183. top:0px;
  4184. width:27px;
  4185. height:27px;
  4186. }
  4187. #u353 {
  4188. position:absolute;
  4189. left:549px;
  4190. top:2017px;
  4191. width:27px;
  4192. height:27px;
  4193. }
  4194. #u354 {
  4195. position:absolute;
  4196. left:2px;
  4197. top:6px;
  4198. width:23px;
  4199. visibility:hidden;
  4200. word-wrap:break-word;
  4201. }
  4202. #u355 {
  4203. position:absolute;
  4204. left:0px;
  4205. top:0px;
  4206. width:0px;
  4207. height:0px;
  4208. }
  4209. #u356_div {
  4210. position:absolute;
  4211. left:0px;
  4212. top:0px;
  4213. width:70px;
  4214. height:10px;
  4215. background:inherit;
  4216. background-color:rgba(255, 255, 255, 0);
  4217. border:none;
  4218. border-radius:0px;
  4219. -moz-box-shadow:none;
  4220. -webkit-box-shadow:none;
  4221. box-shadow:none;
  4222. font-family:'PingFangSC-Regular', 'PingFang SC';
  4223. font-weight:400;
  4224. font-style:normal;
  4225. font-size:10px;
  4226. color:#7F8389;
  4227. line-height:10px;
  4228. }
  4229. #u356 {
  4230. position:absolute;
  4231. left:633px;
  4232. top:2048px;
  4233. width:70px;
  4234. height:10px;
  4235. font-family:'PingFangSC-Regular', 'PingFang SC';
  4236. font-weight:400;
  4237. font-style:normal;
  4238. font-size:10px;
  4239. color:#7F8389;
  4240. line-height:10px;
  4241. }
  4242. #u357 {
  4243. position:absolute;
  4244. left:0px;
  4245. top:0px;
  4246. width:70px;
  4247. word-wrap:break-word;
  4248. }
  4249. #u358_img {
  4250. position:absolute;
  4251. left:0px;
  4252. top:0px;
  4253. width:27px;
  4254. height:27px;
  4255. }
  4256. #u358 {
  4257. position:absolute;
  4258. left:654px;
  4259. top:2017px;
  4260. width:27px;
  4261. height:27px;
  4262. }
  4263. #u359 {
  4264. position:absolute;
  4265. left:2px;
  4266. top:6px;
  4267. width:23px;
  4268. visibility:hidden;
  4269. word-wrap:break-word;
  4270. }
  4271. #u360 {
  4272. position:absolute;
  4273. left:0px;
  4274. top:0px;
  4275. width:0px;
  4276. height:0px;
  4277. }
  4278. #u361_div {
  4279. position:absolute;
  4280. left:0px;
  4281. top:0px;
  4282. width:70px;
  4283. height:10px;
  4284. background:inherit;
  4285. background-color:rgba(255, 255, 255, 0);
  4286. border:none;
  4287. border-radius:0px;
  4288. -moz-box-shadow:none;
  4289. -webkit-box-shadow:none;
  4290. box-shadow:none;
  4291. font-family:'PingFangSC-Regular', 'PingFang SC';
  4292. font-weight:400;
  4293. font-style:normal;
  4294. font-size:10px;
  4295. color:#009900;
  4296. line-height:10px;
  4297. }
  4298. #u361 {
  4299. position:absolute;
  4300. left:738px;
  4301. top:2048px;
  4302. width:70px;
  4303. height:10px;
  4304. font-family:'PingFangSC-Regular', 'PingFang SC';
  4305. font-weight:400;
  4306. font-style:normal;
  4307. font-size:10px;
  4308. color:#009900;
  4309. line-height:10px;
  4310. }
  4311. #u362 {
  4312. position:absolute;
  4313. left:0px;
  4314. top:0px;
  4315. width:70px;
  4316. word-wrap:break-word;
  4317. }
  4318. #u363_img {
  4319. position:absolute;
  4320. left:0px;
  4321. top:0px;
  4322. width:27px;
  4323. height:27px;
  4324. }
  4325. #u363 {
  4326. position:absolute;
  4327. left:759px;
  4328. top:2017px;
  4329. width:27px;
  4330. height:27px;
  4331. }
  4332. #u364 {
  4333. position:absolute;
  4334. left:2px;
  4335. top:6px;
  4336. width:23px;
  4337. visibility:hidden;
  4338. word-wrap:break-word;
  4339. }
  4340. #u365 {
  4341. position:absolute;
  4342. left:0px;
  4343. top:0px;
  4344. width:0px;
  4345. height:0px;
  4346. }
  4347. #u366_div {
  4348. position:absolute;
  4349. left:0px;
  4350. top:0px;
  4351. width:318px;
  4352. height:50px;
  4353. background:inherit;
  4354. background-color:rgba(255, 255, 255, 1);
  4355. box-sizing:border-box;
  4356. border-width:1px;
  4357. border-style:solid;
  4358. border-color:rgba(229, 229, 229, 1);
  4359. border-left:0px;
  4360. border-right:0px;
  4361. border-radius:0px;
  4362. border-top-left-radius:0px;
  4363. border-top-right-radius:0px;
  4364. border-bottom-right-radius:0px;
  4365. border-bottom-left-radius:0px;
  4366. -moz-box-shadow:none;
  4367. -webkit-box-shadow:none;
  4368. box-shadow:none;
  4369. font-size:16px;
  4370. color:#333333;
  4371. text-align:left;
  4372. }
  4373. #u366 {
  4374. position:absolute;
  4375. left:509px;
  4376. top:1793px;
  4377. width:318px;
  4378. height:50px;
  4379. font-size:16px;
  4380. color:#333333;
  4381. text-align:left;
  4382. }
  4383. #u366_div.selected {
  4384. position:absolute;
  4385. left:0px;
  4386. top:0px;
  4387. width:318px;
  4388. height:50px;
  4389. background:inherit;
  4390. background-color:rgba(255, 255, 255, 1);
  4391. box-sizing:border-box;
  4392. border-width:1px;
  4393. border-style:solid;
  4394. border-color:rgba(45, 183, 245, 1);
  4395. border-left:0px;
  4396. border-right:0px;
  4397. border-radius:0px;
  4398. border-top-left-radius:0px;
  4399. border-top-right-radius:0px;
  4400. border-bottom-right-radius:0px;
  4401. border-bottom-left-radius:0px;
  4402. -moz-box-shadow:none;
  4403. -webkit-box-shadow:none;
  4404. box-shadow:none;
  4405. font-size:16px;
  4406. color:#333333;
  4407. text-align:left;
  4408. }
  4409. #u366.selected {
  4410. }
  4411. #u367 {
  4412. position:absolute;
  4413. left:10px;
  4414. top:17px;
  4415. width:308px;
  4416. visibility:hidden;
  4417. word-wrap:break-word;
  4418. }
  4419. #u368_div {
  4420. position:absolute;
  4421. left:0px;
  4422. top:0px;
  4423. width:300px;
  4424. height:50px;
  4425. background:inherit;
  4426. background-color:rgba(255, 255, 255, 0);
  4427. box-sizing:border-box;
  4428. border-width:1px;
  4429. border-style:solid;
  4430. border-color:rgba(229, 229, 229, 1);
  4431. border-left:0px;
  4432. border-top:0px;
  4433. border-right:0px;
  4434. border-radius:0px;
  4435. border-top-left-radius:0px;
  4436. border-top-right-radius:0px;
  4437. border-bottom-right-radius:0px;
  4438. border-bottom-left-radius:0px;
  4439. -moz-box-shadow:none;
  4440. -webkit-box-shadow:none;
  4441. box-shadow:none;
  4442. font-family:'PingFangSC-Thin', 'PingFang SC Thin', 'PingFang SC';
  4443. font-weight:200;
  4444. font-style:normal;
  4445. font-size:14px;
  4446. color:#000000;
  4447. text-align:left;
  4448. }
  4449. #u368 {
  4450. position:absolute;
  4451. left:518px;
  4452. top:1793px;
  4453. width:300px;
  4454. height:50px;
  4455. font-family:'PingFangSC-Thin', 'PingFang SC Thin', 'PingFang SC';
  4456. font-weight:200;
  4457. font-style:normal;
  4458. font-size:14px;
  4459. color:#000000;
  4460. text-align:left;
  4461. }
  4462. #u368_div.selected {
  4463. position:absolute;
  4464. left:0px;
  4465. top:0px;
  4466. width:300px;
  4467. height:50px;
  4468. background:inherit;
  4469. background-color:rgba(255, 255, 255, 0);
  4470. box-sizing:border-box;
  4471. border-width:1px;
  4472. border-style:solid;
  4473. border-color:rgba(45, 183, 245, 1);
  4474. border-left:0px;
  4475. border-top:0px;
  4476. border-right:0px;
  4477. border-radius:0px;
  4478. border-top-left-radius:0px;
  4479. border-top-right-radius:0px;
  4480. border-bottom-right-radius:0px;
  4481. border-bottom-left-radius:0px;
  4482. -moz-box-shadow:none;
  4483. -webkit-box-shadow:none;
  4484. box-shadow:none;
  4485. font-family:'PingFangSC-Thin', 'PingFang SC Thin', 'PingFang SC';
  4486. font-weight:200;
  4487. font-style:normal;
  4488. font-size:14px;
  4489. color:#000000;
  4490. text-align:left;
  4491. }
  4492. #u368.selected {
  4493. }
  4494. #u369 {
  4495. position:absolute;
  4496. left:0px;
  4497. top:15px;
  4498. width:300px;
  4499. word-wrap:break-word;
  4500. }
  4501. #u370_img {
  4502. position:absolute;
  4503. left:0px;
  4504. top:0px;
  4505. width:6px;
  4506. height:12px;
  4507. }
  4508. #u370 {
  4509. position:absolute;
  4510. left:812px;
  4511. top:1813px;
  4512. width:6px;
  4513. height:12px;
  4514. -webkit-transform:rotate(180deg);
  4515. -moz-transform:rotate(180deg);
  4516. -ms-transform:rotate(180deg);
  4517. transform:rotate(180deg);
  4518. }
  4519. #u371 {
  4520. position:absolute;
  4521. left:2px;
  4522. top:-2px;
  4523. width:2px;
  4524. visibility:hidden;
  4525. word-wrap:break-word;
  4526. }
  4527. #u372 {
  4528. position:absolute;
  4529. left:0px;
  4530. top:0px;
  4531. width:0px;
  4532. height:0px;
  4533. }
  4534. #u373_div {
  4535. position:absolute;
  4536. left:0px;
  4537. top:0px;
  4538. width:318px;
  4539. height:50px;
  4540. background:inherit;
  4541. background-color:rgba(255, 255, 255, 1);
  4542. box-sizing:border-box;
  4543. border-width:1px;
  4544. border-style:solid;
  4545. border-color:rgba(229, 229, 229, 1);
  4546. border-left:0px;
  4547. border-right:0px;
  4548. border-radius:0px;
  4549. border-top-left-radius:0px;
  4550. border-top-right-radius:0px;
  4551. border-bottom-right-radius:0px;
  4552. border-bottom-left-radius:0px;
  4553. -moz-box-shadow:none;
  4554. -webkit-box-shadow:none;
  4555. box-shadow:none;
  4556. font-size:16px;
  4557. color:#333333;
  4558. text-align:left;
  4559. }
  4560. #u373 {
  4561. position:absolute;
  4562. left:509px;
  4563. top:1847px;
  4564. width:318px;
  4565. height:50px;
  4566. font-size:16px;
  4567. color:#333333;
  4568. text-align:left;
  4569. }
  4570. #u373_div.selected {
  4571. position:absolute;
  4572. left:0px;
  4573. top:0px;
  4574. width:318px;
  4575. height:50px;
  4576. background:inherit;
  4577. background-color:rgba(255, 255, 255, 1);
  4578. box-sizing:border-box;
  4579. border-width:1px;
  4580. border-style:solid;
  4581. border-color:rgba(45, 183, 245, 1);
  4582. border-left:0px;
  4583. border-right:0px;
  4584. border-radius:0px;
  4585. border-top-left-radius:0px;
  4586. border-top-right-radius:0px;
  4587. border-bottom-right-radius:0px;
  4588. border-bottom-left-radius:0px;
  4589. -moz-box-shadow:none;
  4590. -webkit-box-shadow:none;
  4591. box-shadow:none;
  4592. font-size:16px;
  4593. color:#333333;
  4594. text-align:left;
  4595. }
  4596. #u373.selected {
  4597. }
  4598. #u374 {
  4599. position:absolute;
  4600. left:10px;
  4601. top:17px;
  4602. width:308px;
  4603. visibility:hidden;
  4604. word-wrap:break-word;
  4605. }
  4606. #u375_div {
  4607. position:absolute;
  4608. left:0px;
  4609. top:0px;
  4610. width:300px;
  4611. height:50px;
  4612. background:inherit;
  4613. background-color:rgba(255, 255, 255, 0);
  4614. box-sizing:border-box;
  4615. border-width:1px;
  4616. border-style:solid;
  4617. border-color:rgba(229, 229, 229, 1);
  4618. border-left:0px;
  4619. border-top:0px;
  4620. border-right:0px;
  4621. border-radius:0px;
  4622. border-top-left-radius:0px;
  4623. border-top-right-radius:0px;
  4624. border-bottom-right-radius:0px;
  4625. border-bottom-left-radius:0px;
  4626. -moz-box-shadow:none;
  4627. -webkit-box-shadow:none;
  4628. box-shadow:none;
  4629. font-family:'PingFangSC-Thin', 'PingFang SC Thin', 'PingFang SC';
  4630. font-weight:200;
  4631. font-style:normal;
  4632. font-size:14px;
  4633. color:#000000;
  4634. text-align:left;
  4635. }
  4636. #u375 {
  4637. position:absolute;
  4638. left:518px;
  4639. top:1847px;
  4640. width:300px;
  4641. height:50px;
  4642. font-family:'PingFangSC-Thin', 'PingFang SC Thin', 'PingFang SC';
  4643. font-weight:200;
  4644. font-style:normal;
  4645. font-size:14px;
  4646. color:#000000;
  4647. text-align:left;
  4648. }
  4649. #u375_div.selected {
  4650. position:absolute;
  4651. left:0px;
  4652. top:0px;
  4653. width:300px;
  4654. height:50px;
  4655. background:inherit;
  4656. background-color:rgba(255, 255, 255, 0);
  4657. box-sizing:border-box;
  4658. border-width:1px;
  4659. border-style:solid;
  4660. border-color:rgba(45, 183, 245, 1);
  4661. border-left:0px;
  4662. border-top:0px;
  4663. border-right:0px;
  4664. border-radius:0px;
  4665. border-top-left-radius:0px;
  4666. border-top-right-radius:0px;
  4667. border-bottom-right-radius:0px;
  4668. border-bottom-left-radius:0px;
  4669. -moz-box-shadow:none;
  4670. -webkit-box-shadow:none;
  4671. box-shadow:none;
  4672. font-family:'PingFangSC-Thin', 'PingFang SC Thin', 'PingFang SC';
  4673. font-weight:200;
  4674. font-style:normal;
  4675. font-size:14px;
  4676. color:#000000;
  4677. text-align:left;
  4678. }
  4679. #u375.selected {
  4680. }
  4681. #u376 {
  4682. position:absolute;
  4683. left:0px;
  4684. top:15px;
  4685. width:300px;
  4686. word-wrap:break-word;
  4687. }
  4688. #u377_img {
  4689. position:absolute;
  4690. left:0px;
  4691. top:0px;
  4692. width:6px;
  4693. height:12px;
  4694. }
  4695. #u377 {
  4696. position:absolute;
  4697. left:812px;
  4698. top:1867px;
  4699. width:6px;
  4700. height:12px;
  4701. -webkit-transform:rotate(180deg);
  4702. -moz-transform:rotate(180deg);
  4703. -ms-transform:rotate(180deg);
  4704. transform:rotate(180deg);
  4705. }
  4706. #u378 {
  4707. position:absolute;
  4708. left:2px;
  4709. top:-2px;
  4710. width:2px;
  4711. visibility:hidden;
  4712. word-wrap:break-word;
  4713. }
  4714. #u379 {
  4715. position:absolute;
  4716. left:0px;
  4717. top:0px;
  4718. width:0px;
  4719. height:0px;
  4720. }
  4721. #u380_div {
  4722. position:absolute;
  4723. left:0px;
  4724. top:0px;
  4725. width:318px;
  4726. height:50px;
  4727. background:inherit;
  4728. background-color:rgba(255, 255, 255, 1);
  4729. box-sizing:border-box;
  4730. border-width:1px;
  4731. border-style:solid;
  4732. border-color:rgba(229, 229, 229, 1);
  4733. border-left:0px;
  4734. border-right:0px;
  4735. border-radius:0px;
  4736. border-top-left-radius:0px;
  4737. border-top-right-radius:0px;
  4738. border-bottom-right-radius:0px;
  4739. border-bottom-left-radius:0px;
  4740. -moz-box-shadow:none;
  4741. -webkit-box-shadow:none;
  4742. box-shadow:none;
  4743. font-size:16px;
  4744. color:#333333;
  4745. text-align:left;
  4746. }
  4747. #u380 {
  4748. position:absolute;
  4749. left:509px;
  4750. top:1744px;
  4751. width:318px;
  4752. height:50px;
  4753. font-size:16px;
  4754. color:#333333;
  4755. text-align:left;
  4756. }
  4757. #u380_div.selected {
  4758. position:absolute;
  4759. left:0px;
  4760. top:0px;
  4761. width:318px;
  4762. height:50px;
  4763. background:inherit;
  4764. background-color:rgba(255, 255, 255, 1);
  4765. box-sizing:border-box;
  4766. border-width:1px;
  4767. border-style:solid;
  4768. border-color:rgba(45, 183, 245, 1);
  4769. border-left:0px;
  4770. border-right:0px;
  4771. border-radius:0px;
  4772. border-top-left-radius:0px;
  4773. border-top-right-radius:0px;
  4774. border-bottom-right-radius:0px;
  4775. border-bottom-left-radius:0px;
  4776. -moz-box-shadow:none;
  4777. -webkit-box-shadow:none;
  4778. box-shadow:none;
  4779. font-size:16px;
  4780. color:#333333;
  4781. text-align:left;
  4782. }
  4783. #u380.selected {
  4784. }
  4785. #u381 {
  4786. position:absolute;
  4787. left:10px;
  4788. top:17px;
  4789. width:308px;
  4790. visibility:hidden;
  4791. word-wrap:break-word;
  4792. }
  4793. #u382_div {
  4794. position:absolute;
  4795. left:0px;
  4796. top:0px;
  4797. width:300px;
  4798. height:50px;
  4799. background:inherit;
  4800. background-color:rgba(255, 255, 255, 0);
  4801. box-sizing:border-box;
  4802. border-width:1px;
  4803. border-style:solid;
  4804. border-color:rgba(229, 229, 229, 1);
  4805. border-left:0px;
  4806. border-top:0px;
  4807. border-right:0px;
  4808. border-radius:0px;
  4809. border-top-left-radius:0px;
  4810. border-top-right-radius:0px;
  4811. border-bottom-right-radius:0px;
  4812. border-bottom-left-radius:0px;
  4813. -moz-box-shadow:none;
  4814. -webkit-box-shadow:none;
  4815. box-shadow:none;
  4816. font-family:'PingFangSC-Thin', 'PingFang SC Thin', 'PingFang SC';
  4817. font-weight:200;
  4818. font-style:normal;
  4819. font-size:14px;
  4820. color:#000000;
  4821. text-align:left;
  4822. }
  4823. #u382 {
  4824. position:absolute;
  4825. left:518px;
  4826. top:1744px;
  4827. width:300px;
  4828. height:50px;
  4829. font-family:'PingFangSC-Thin', 'PingFang SC Thin', 'PingFang SC';
  4830. font-weight:200;
  4831. font-style:normal;
  4832. font-size:14px;
  4833. color:#000000;
  4834. text-align:left;
  4835. }
  4836. #u382_div.selected {
  4837. position:absolute;
  4838. left:0px;
  4839. top:0px;
  4840. width:300px;
  4841. height:50px;
  4842. background:inherit;
  4843. background-color:rgba(255, 255, 255, 0);
  4844. box-sizing:border-box;
  4845. border-width:1px;
  4846. border-style:solid;
  4847. border-color:rgba(45, 183, 245, 1);
  4848. border-left:0px;
  4849. border-top:0px;
  4850. border-right:0px;
  4851. border-radius:0px;
  4852. border-top-left-radius:0px;
  4853. border-top-right-radius:0px;
  4854. border-bottom-right-radius:0px;
  4855. border-bottom-left-radius:0px;
  4856. -moz-box-shadow:none;
  4857. -webkit-box-shadow:none;
  4858. box-shadow:none;
  4859. font-family:'PingFangSC-Thin', 'PingFang SC Thin', 'PingFang SC';
  4860. font-weight:200;
  4861. font-style:normal;
  4862. font-size:14px;
  4863. color:#000000;
  4864. text-align:left;
  4865. }
  4866. #u382.selected {
  4867. }
  4868. #u383 {
  4869. position:absolute;
  4870. left:0px;
  4871. top:15px;
  4872. width:300px;
  4873. word-wrap:break-word;
  4874. }
  4875. #u384_img {
  4876. position:absolute;
  4877. left:0px;
  4878. top:0px;
  4879. width:6px;
  4880. height:12px;
  4881. }
  4882. #u384 {
  4883. position:absolute;
  4884. left:812px;
  4885. top:1764px;
  4886. width:6px;
  4887. height:12px;
  4888. -webkit-transform:rotate(180deg);
  4889. -moz-transform:rotate(180deg);
  4890. -ms-transform:rotate(180deg);
  4891. transform:rotate(180deg);
  4892. }
  4893. #u385 {
  4894. position:absolute;
  4895. left:2px;
  4896. top:-2px;
  4897. width:2px;
  4898. visibility:hidden;
  4899. word-wrap:break-word;
  4900. }
  4901. #u386 {
  4902. position:absolute;
  4903. left:0px;
  4904. top:0px;
  4905. width:0px;
  4906. height:0px;
  4907. }
  4908. #u387_div {
  4909. position:absolute;
  4910. left:0px;
  4911. top:0px;
  4912. width:318px;
  4913. height:50px;
  4914. background:inherit;
  4915. background-color:rgba(255, 255, 255, 1);
  4916. box-sizing:border-box;
  4917. border-width:1px;
  4918. border-style:solid;
  4919. border-color:rgba(229, 229, 229, 1);
  4920. border-left:0px;
  4921. border-right:0px;
  4922. border-radius:0px;
  4923. border-top-left-radius:0px;
  4924. border-top-right-radius:0px;
  4925. border-bottom-right-radius:0px;
  4926. border-bottom-left-radius:0px;
  4927. -moz-box-shadow:none;
  4928. -webkit-box-shadow:none;
  4929. box-shadow:none;
  4930. font-size:16px;
  4931. color:#333333;
  4932. text-align:left;
  4933. }
  4934. #u387 {
  4935. position:absolute;
  4936. left:509px;
  4937. top:1695px;
  4938. width:318px;
  4939. height:50px;
  4940. font-size:16px;
  4941. color:#333333;
  4942. text-align:left;
  4943. }
  4944. #u387_div.selected {
  4945. position:absolute;
  4946. left:0px;
  4947. top:0px;
  4948. width:318px;
  4949. height:50px;
  4950. background:inherit;
  4951. background-color:rgba(255, 255, 255, 1);
  4952. box-sizing:border-box;
  4953. border-width:1px;
  4954. border-style:solid;
  4955. border-color:rgba(45, 183, 245, 1);
  4956. border-left:0px;
  4957. border-right:0px;
  4958. border-radius:0px;
  4959. border-top-left-radius:0px;
  4960. border-top-right-radius:0px;
  4961. border-bottom-right-radius:0px;
  4962. border-bottom-left-radius:0px;
  4963. -moz-box-shadow:none;
  4964. -webkit-box-shadow:none;
  4965. box-shadow:none;
  4966. font-size:16px;
  4967. color:#333333;
  4968. text-align:left;
  4969. }
  4970. #u387.selected {
  4971. }
  4972. #u388 {
  4973. position:absolute;
  4974. left:10px;
  4975. top:17px;
  4976. width:308px;
  4977. visibility:hidden;
  4978. word-wrap:break-word;
  4979. }
  4980. #u389_div {
  4981. position:absolute;
  4982. left:0px;
  4983. top:0px;
  4984. width:300px;
  4985. height:50px;
  4986. background:inherit;
  4987. background-color:rgba(255, 255, 255, 0);
  4988. box-sizing:border-box;
  4989. border-width:1px;
  4990. border-style:solid;
  4991. border-color:rgba(229, 229, 229, 1);
  4992. border-left:0px;
  4993. border-top:0px;
  4994. border-right:0px;
  4995. border-radius:0px;
  4996. border-top-left-radius:0px;
  4997. border-top-right-radius:0px;
  4998. border-bottom-right-radius:0px;
  4999. border-bottom-left-radius:0px;
  5000. -moz-box-shadow:none;
  5001. -webkit-box-shadow:none;
  5002. box-shadow:none;
  5003. font-family:'PingFangSC-Thin', 'PingFang SC Thin', 'PingFang SC';
  5004. font-weight:200;
  5005. font-style:normal;
  5006. font-size:14px;
  5007. color:#000000;
  5008. text-align:left;
  5009. }
  5010. #u389 {
  5011. position:absolute;
  5012. left:518px;
  5013. top:1695px;
  5014. width:300px;
  5015. height:50px;
  5016. font-family:'PingFangSC-Thin', 'PingFang SC Thin', 'PingFang SC';
  5017. font-weight:200;
  5018. font-style:normal;
  5019. font-size:14px;
  5020. color:#000000;
  5021. text-align:left;
  5022. }
  5023. #u389_div.selected {
  5024. position:absolute;
  5025. left:0px;
  5026. top:0px;
  5027. width:300px;
  5028. height:50px;
  5029. background:inherit;
  5030. background-color:rgba(255, 255, 255, 0);
  5031. box-sizing:border-box;
  5032. border-width:1px;
  5033. border-style:solid;
  5034. border-color:rgba(45, 183, 245, 1);
  5035. border-left:0px;
  5036. border-top:0px;
  5037. border-right:0px;
  5038. border-radius:0px;
  5039. border-top-left-radius:0px;
  5040. border-top-right-radius:0px;
  5041. border-bottom-right-radius:0px;
  5042. border-bottom-left-radius:0px;
  5043. -moz-box-shadow:none;
  5044. -webkit-box-shadow:none;
  5045. box-shadow:none;
  5046. font-family:'PingFangSC-Thin', 'PingFang SC Thin', 'PingFang SC';
  5047. font-weight:200;
  5048. font-style:normal;
  5049. font-size:14px;
  5050. color:#000000;
  5051. text-align:left;
  5052. }
  5053. #u389.selected {
  5054. }
  5055. #u390 {
  5056. position:absolute;
  5057. left:0px;
  5058. top:15px;
  5059. width:300px;
  5060. word-wrap:break-word;
  5061. }
  5062. #u391_img {
  5063. position:absolute;
  5064. left:0px;
  5065. top:0px;
  5066. width:6px;
  5067. height:12px;
  5068. }
  5069. #u391 {
  5070. position:absolute;
  5071. left:812px;
  5072. top:1715px;
  5073. width:6px;
  5074. height:12px;
  5075. -webkit-transform:rotate(180deg);
  5076. -moz-transform:rotate(180deg);
  5077. -ms-transform:rotate(180deg);
  5078. transform:rotate(180deg);
  5079. }
  5080. #u392 {
  5081. position:absolute;
  5082. left:2px;
  5083. top:-2px;
  5084. width:2px;
  5085. visibility:hidden;
  5086. word-wrap:break-word;
  5087. }
  5088. #u393 {
  5089. position:absolute;
  5090. left:0px;
  5091. top:0px;
  5092. width:0px;
  5093. height:0px;
  5094. }
  5095. #u394_div {
  5096. position:absolute;
  5097. left:0px;
  5098. top:0px;
  5099. width:318px;
  5100. height:50px;
  5101. background:inherit;
  5102. background-color:rgba(255, 255, 255, 1);
  5103. box-sizing:border-box;
  5104. border-width:1px;
  5105. border-style:solid;
  5106. border-color:rgba(229, 229, 229, 1);
  5107. border-left:0px;
  5108. border-right:0px;
  5109. border-radius:0px;
  5110. border-top-left-radius:0px;
  5111. border-top-right-radius:0px;
  5112. border-bottom-right-radius:0px;
  5113. border-bottom-left-radius:0px;
  5114. -moz-box-shadow:none;
  5115. -webkit-box-shadow:none;
  5116. box-shadow:none;
  5117. font-size:16px;
  5118. color:#333333;
  5119. text-align:left;
  5120. }
  5121. #u394 {
  5122. position:absolute;
  5123. left:509px;
  5124. top:1896px;
  5125. width:318px;
  5126. height:50px;
  5127. font-size:16px;
  5128. color:#333333;
  5129. text-align:left;
  5130. }
  5131. #u394_div.selected {
  5132. position:absolute;
  5133. left:0px;
  5134. top:0px;
  5135. width:318px;
  5136. height:50px;
  5137. background:inherit;
  5138. background-color:rgba(255, 255, 255, 1);
  5139. box-sizing:border-box;
  5140. border-width:1px;
  5141. border-style:solid;
  5142. border-color:rgba(45, 183, 245, 1);
  5143. border-left:0px;
  5144. border-right:0px;
  5145. border-radius:0px;
  5146. border-top-left-radius:0px;
  5147. border-top-right-radius:0px;
  5148. border-bottom-right-radius:0px;
  5149. border-bottom-left-radius:0px;
  5150. -moz-box-shadow:none;
  5151. -webkit-box-shadow:none;
  5152. box-shadow:none;
  5153. font-size:16px;
  5154. color:#333333;
  5155. text-align:left;
  5156. }
  5157. #u394.selected {
  5158. }
  5159. #u395 {
  5160. position:absolute;
  5161. left:10px;
  5162. top:17px;
  5163. width:308px;
  5164. visibility:hidden;
  5165. word-wrap:break-word;
  5166. }
  5167. #u396_div {
  5168. position:absolute;
  5169. left:0px;
  5170. top:0px;
  5171. width:300px;
  5172. height:50px;
  5173. background:inherit;
  5174. background-color:rgba(255, 255, 255, 0);
  5175. box-sizing:border-box;
  5176. border-width:1px;
  5177. border-style:solid;
  5178. border-color:rgba(229, 229, 229, 1);
  5179. border-left:0px;
  5180. border-top:0px;
  5181. border-right:0px;
  5182. border-radius:0px;
  5183. border-top-left-radius:0px;
  5184. border-top-right-radius:0px;
  5185. border-bottom-right-radius:0px;
  5186. border-bottom-left-radius:0px;
  5187. -moz-box-shadow:none;
  5188. -webkit-box-shadow:none;
  5189. box-shadow:none;
  5190. font-family:'PingFangSC-Thin', 'PingFang SC Thin', 'PingFang SC';
  5191. font-weight:200;
  5192. font-style:normal;
  5193. font-size:14px;
  5194. color:#000000;
  5195. text-align:left;
  5196. }
  5197. #u396 {
  5198. position:absolute;
  5199. left:518px;
  5200. top:1896px;
  5201. width:300px;
  5202. height:50px;
  5203. font-family:'PingFangSC-Thin', 'PingFang SC Thin', 'PingFang SC';
  5204. font-weight:200;
  5205. font-style:normal;
  5206. font-size:14px;
  5207. color:#000000;
  5208. text-align:left;
  5209. }
  5210. #u396_div.selected {
  5211. position:absolute;
  5212. left:0px;
  5213. top:0px;
  5214. width:300px;
  5215. height:50px;
  5216. background:inherit;
  5217. background-color:rgba(255, 255, 255, 0);
  5218. box-sizing:border-box;
  5219. border-width:1px;
  5220. border-style:solid;
  5221. border-color:rgba(45, 183, 245, 1);
  5222. border-left:0px;
  5223. border-top:0px;
  5224. border-right:0px;
  5225. border-radius:0px;
  5226. border-top-left-radius:0px;
  5227. border-top-right-radius:0px;
  5228. border-bottom-right-radius:0px;
  5229. border-bottom-left-radius:0px;
  5230. -moz-box-shadow:none;
  5231. -webkit-box-shadow:none;
  5232. box-shadow:none;
  5233. font-family:'PingFangSC-Thin', 'PingFang SC Thin', 'PingFang SC';
  5234. font-weight:200;
  5235. font-style:normal;
  5236. font-size:14px;
  5237. color:#000000;
  5238. text-align:left;
  5239. }
  5240. #u396.selected {
  5241. }
  5242. #u397 {
  5243. position:absolute;
  5244. left:0px;
  5245. top:15px;
  5246. width:300px;
  5247. word-wrap:break-word;
  5248. }
  5249. #u398_img {
  5250. position:absolute;
  5251. left:0px;
  5252. top:0px;
  5253. width:6px;
  5254. height:12px;
  5255. }
  5256. #u398 {
  5257. position:absolute;
  5258. left:812px;
  5259. top:1916px;
  5260. width:6px;
  5261. height:12px;
  5262. -webkit-transform:rotate(180deg);
  5263. -moz-transform:rotate(180deg);
  5264. -ms-transform:rotate(180deg);
  5265. transform:rotate(180deg);
  5266. }
  5267. #u399 {
  5268. position:absolute;
  5269. left:2px;
  5270. top:-2px;
  5271. width:2px;
  5272. visibility:hidden;
  5273. word-wrap:break-word;
  5274. }
  5275. #u400_div {
  5276. position:absolute;
  5277. left:0px;
  5278. top:0px;
  5279. width:318px;
  5280. height:222px;
  5281. background:inherit;
  5282. background-color:rgba(208, 225, 125, 1);
  5283. border:none;
  5284. border-radius:0px;
  5285. -moz-box-shadow:5px 5px 5px rgba(0, 0, 0, 0.2);
  5286. -webkit-box-shadow:5px 5px 5px rgba(0, 0, 0, 0.2);
  5287. box-shadow:5px 5px 5px rgba(0, 0, 0, 0.2);
  5288. }
  5289. #u400 {
  5290. position:absolute;
  5291. left:509px;
  5292. top:2086px;
  5293. width:318px;
  5294. height:222px;
  5295. }
  5296. #u401 {
  5297. position:absolute;
  5298. left:10px;
  5299. top:10px;
  5300. width:298px;
  5301. word-wrap:break-word;
  5302. }
  5303. #u402_div {
  5304. position:absolute;
  5305. left:0px;
  5306. top:0px;
  5307. width:212px;
  5308. height:33px;
  5309. background:inherit;
  5310. background-color:rgba(255, 255, 255, 0);
  5311. border:none;
  5312. border-radius:0px;
  5313. -moz-box-shadow:none;
  5314. -webkit-box-shadow:none;
  5315. box-shadow:none;
  5316. font-family:'Arial-BoldMT', 'Arial Bold', 'Arial';
  5317. font-weight:700;
  5318. font-style:normal;
  5319. }
  5320. #u402 {
  5321. position:absolute;
  5322. left:942px;
  5323. top:1433px;
  5324. width:212px;
  5325. height:33px;
  5326. font-family:'Arial-BoldMT', 'Arial Bold', 'Arial';
  5327. font-weight:700;
  5328. font-style:normal;
  5329. }
  5330. #u403 {
  5331. position:absolute;
  5332. left:0px;
  5333. top:0px;
  5334. width:212px;
  5335. white-space:nowrap;
  5336. }
  5337. #u404_div {
  5338. position:absolute;
  5339. left:0px;
  5340. top:0px;
  5341. width:174px;
  5342. height:32px;
  5343. background:inherit;
  5344. background-color:rgba(51, 51, 51, 1);
  5345. box-sizing:border-box;
  5346. border-width:1px;
  5347. border-style:solid;
  5348. border-color:rgba(121, 121, 121, 1);
  5349. border-radius:5px;
  5350. -moz-box-shadow:none;
  5351. -webkit-box-shadow:none;
  5352. box-shadow:none;
  5353. font-family:'PingFangSC-Regular', 'PingFang SC';
  5354. font-weight:400;
  5355. font-style:normal;
  5356. color:#FFFFFF;
  5357. }
  5358. #u404 {
  5359. position:absolute;
  5360. left:952px;
  5361. top:2177px;
  5362. width:174px;
  5363. height:32px;
  5364. font-family:'PingFangSC-Regular', 'PingFang SC';
  5365. font-weight:400;
  5366. font-style:normal;
  5367. color:#FFFFFF;
  5368. }
  5369. #u405 {
  5370. position:absolute;
  5371. left:2px;
  5372. top:7px;
  5373. width:170px;
  5374. word-wrap:break-word;
  5375. }
  5376. #u406 {
  5377. position:absolute;
  5378. left:0px;
  5379. top:0px;
  5380. width:0px;
  5381. height:0px;
  5382. }
  5383. #u407_div {
  5384. position:absolute;
  5385. left:0px;
  5386. top:0px;
  5387. width:320px;
  5388. height:561px;
  5389. background:inherit;
  5390. background-color:rgba(242, 242, 242, 1);
  5391. box-sizing:border-box;
  5392. border-width:1px;
  5393. border-style:solid;
  5394. border-color:rgba(0, 0, 0, 1);
  5395. border-radius:0px;
  5396. -moz-box-shadow:none;
  5397. -webkit-box-shadow:none;
  5398. box-shadow:none;
  5399. }
  5400. #u407 {
  5401. position:absolute;
  5402. left:942px;
  5403. top:1497px;
  5404. width:320px;
  5405. height:561px;
  5406. }
  5407. #u408 {
  5408. position:absolute;
  5409. left:2px;
  5410. top:272px;
  5411. width:316px;
  5412. visibility:hidden;
  5413. word-wrap:break-word;
  5414. }
  5415. #u409 {
  5416. position:absolute;
  5417. left:0px;
  5418. top:0px;
  5419. width:0px;
  5420. height:0px;
  5421. }
  5422. #u410_div {
  5423. position:absolute;
  5424. left:0px;
  5425. top:0px;
  5426. width:318px;
  5427. height:17px;
  5428. background:inherit;
  5429. background-color:rgba(255, 255, 255, 1);
  5430. border:none;
  5431. border-radius:0px;
  5432. -moz-box-shadow:none;
  5433. -webkit-box-shadow:none;
  5434. box-shadow:none;
  5435. }
  5436. #u410 {
  5437. position:absolute;
  5438. left:943px;
  5439. top:1498px;
  5440. width:318px;
  5441. height:17px;
  5442. }
  5443. #u411 {
  5444. position:absolute;
  5445. left:2px;
  5446. top:0px;
  5447. width:314px;
  5448. visibility:hidden;
  5449. word-wrap:break-word;
  5450. }
  5451. #u412_img {
  5452. position:absolute;
  5453. left:0px;
  5454. top:0px;
  5455. width:318px;
  5456. height:17px;
  5457. }
  5458. #u412 {
  5459. position:absolute;
  5460. left:943px;
  5461. top:1498px;
  5462. width:318px;
  5463. height:17px;
  5464. }
  5465. #u413 {
  5466. position:absolute;
  5467. left:2px;
  5468. top:0px;
  5469. width:314px;
  5470. visibility:hidden;
  5471. word-wrap:break-word;
  5472. }
  5473. #u414 {
  5474. position:absolute;
  5475. left:0px;
  5476. top:0px;
  5477. width:0px;
  5478. height:0px;
  5479. }
  5480. #u415_div {
  5481. position:absolute;
  5482. left:0px;
  5483. top:0px;
  5484. width:318px;
  5485. height:40px;
  5486. background:inherit;
  5487. background-color:rgba(255, 255, 255, 1);
  5488. box-sizing:border-box;
  5489. border-width:1px;
  5490. border-style:solid;
  5491. border-color:rgba(228, 228, 228, 1);
  5492. border-left:0px;
  5493. border-top:0px;
  5494. border-right:0px;
  5495. border-radius:0px;
  5496. border-top-left-radius:0px;
  5497. border-top-right-radius:0px;
  5498. border-bottom-right-radius:0px;
  5499. border-bottom-left-radius:0px;
  5500. -moz-box-shadow:none;
  5501. -webkit-box-shadow:none;
  5502. box-shadow:none;
  5503. font-family:'PingFangSC-Regular', 'PingFang SC';
  5504. font-weight:400;
  5505. font-style:normal;
  5506. font-size:14px;
  5507. text-align:left;
  5508. }
  5509. #u415 {
  5510. position:absolute;
  5511. left:943px;
  5512. top:1515px;
  5513. width:318px;
  5514. height:40px;
  5515. font-family:'PingFangSC-Regular', 'PingFang SC';
  5516. font-weight:400;
  5517. font-style:normal;
  5518. font-size:14px;
  5519. text-align:left;
  5520. }
  5521. #u416 {
  5522. position:absolute;
  5523. left:0px;
  5524. top:10px;
  5525. width:318px;
  5526. word-wrap:break-word;
  5527. }
  5528. #u417_img {
  5529. position:absolute;
  5530. left:0px;
  5531. top:0px;
  5532. width:10px;
  5533. height:16px;
  5534. }
  5535. #u417 {
  5536. position:absolute;
  5537. left:953px;
  5538. top:1527px;
  5539. width:10px;
  5540. height:16px;
  5541. }
  5542. #u418 {
  5543. position:absolute;
  5544. left:2px;
  5545. top:0px;
  5546. width:6px;
  5547. visibility:hidden;
  5548. word-wrap:break-word;
  5549. }
  5550. #u419 {
  5551. position:absolute;
  5552. left:0px;
  5553. top:0px;
  5554. width:0px;
  5555. height:0px;
  5556. }
  5557. #u420_div {
  5558. position:absolute;
  5559. left:0px;
  5560. top:0px;
  5561. width:50px;
  5562. height:26px;
  5563. background:inherit;
  5564. background-color:rgba(255, 255, 255, 1);
  5565. box-sizing:border-box;
  5566. border-width:1px;
  5567. border-style:solid;
  5568. border-color:rgba(204, 204, 204, 1);
  5569. border-radius:15px;
  5570. -moz-box-shadow:none;
  5571. -webkit-box-shadow:none;
  5572. box-shadow:none;
  5573. }
  5574. #u420 {
  5575. position:absolute;
  5576. left:1201px;
  5577. top:1522px;
  5578. width:50px;
  5579. height:26px;
  5580. }
  5581. #u421 {
  5582. position:absolute;
  5583. left:2px;
  5584. top:5px;
  5585. width:46px;
  5586. visibility:hidden;
  5587. word-wrap:break-word;
  5588. }
  5589. #u422 {
  5590. position:absolute;
  5591. left:0px;
  5592. top:0px;
  5593. width:0px;
  5594. height:0px;
  5595. }
  5596. #u423_img {
  5597. position:absolute;
  5598. left:0px;
  5599. top:0px;
  5600. width:3px;
  5601. height:3px;
  5602. }
  5603. #u423 {
  5604. position:absolute;
  5605. left:1208px;
  5606. top:1534px;
  5607. width:3px;
  5608. height:3px;
  5609. -webkit-transform:rotate(45deg);
  5610. -moz-transform:rotate(45deg);
  5611. -ms-transform:rotate(45deg);
  5612. transform:rotate(45deg);
  5613. font-family:'MicrosoftYaHei', '微软雅黑';
  5614. font-weight:400;
  5615. font-style:normal;
  5616. font-size:18px;
  5617. }
  5618. #u424 {
  5619. position:absolute;
  5620. left:0px;
  5621. top:-6px;
  5622. width:3px;
  5623. visibility:hidden;
  5624. word-wrap:break-word;
  5625. }
  5626. #u425_img {
  5627. position:absolute;
  5628. left:0px;
  5629. top:0px;
  5630. width:5px;
  5631. height:5px;
  5632. }
  5633. #u425 {
  5634. position:absolute;
  5635. left:1212px;
  5636. top:1533px;
  5637. width:5px;
  5638. height:5px;
  5639. -webkit-transform:rotate(45deg);
  5640. -moz-transform:rotate(45deg);
  5641. -ms-transform:rotate(45deg);
  5642. transform:rotate(45deg);
  5643. font-family:'MicrosoftYaHei', '微软雅黑';
  5644. font-weight:400;
  5645. font-style:normal;
  5646. font-size:18px;
  5647. }
  5648. #u426 {
  5649. position:absolute;
  5650. left:0px;
  5651. top:-6px;
  5652. width:5px;
  5653. visibility:hidden;
  5654. word-wrap:break-word;
  5655. }
  5656. #u427_img {
  5657. position:absolute;
  5658. left:0px;
  5659. top:0px;
  5660. width:3px;
  5661. height:3px;
  5662. }
  5663. #u427 {
  5664. position:absolute;
  5665. left:1218px;
  5666. top:1534px;
  5667. width:3px;
  5668. height:3px;
  5669. -webkit-transform:rotate(45deg);
  5670. -moz-transform:rotate(45deg);
  5671. -ms-transform:rotate(45deg);
  5672. transform:rotate(45deg);
  5673. font-family:'MicrosoftYaHei', '微软雅黑';
  5674. font-weight:400;
  5675. font-style:normal;
  5676. font-size:18px;
  5677. }
  5678. #u428 {
  5679. position:absolute;
  5680. left:0px;
  5681. top:-6px;
  5682. width:3px;
  5683. visibility:hidden;
  5684. word-wrap:break-word;
  5685. }
  5686. #u429_img {
  5687. position:absolute;
  5688. left:0px;
  5689. top:0px;
  5690. width:2px;
  5691. height:19px;
  5692. }
  5693. #u429 {
  5694. position:absolute;
  5695. left:1225px;
  5696. top:1526px;
  5697. width:1px;
  5698. height:18px;
  5699. }
  5700. #u430 {
  5701. position:absolute;
  5702. left:2px;
  5703. top:1px;
  5704. width:1px;
  5705. visibility:hidden;
  5706. word-wrap:break-word;
  5707. }
  5708. #u431_img {
  5709. position:absolute;
  5710. left:0px;
  5711. top:0px;
  5712. width:14px;
  5713. height:14px;
  5714. }
  5715. #u431 {
  5716. position:absolute;
  5717. left:1231px;
  5718. top:1528px;
  5719. width:14px;
  5720. height:14px;
  5721. }
  5722. #u432 {
  5723. position:absolute;
  5724. left:2px;
  5725. top:-1px;
  5726. width:10px;
  5727. visibility:hidden;
  5728. word-wrap:break-word;
  5729. }
  5730. #u433_img {
  5731. position:absolute;
  5732. left:0px;
  5733. top:0px;
  5734. width:6px;
  5735. height:6px;
  5736. }
  5737. #u433 {
  5738. position:absolute;
  5739. left:1235px;
  5740. top:1532px;
  5741. width:6px;
  5742. height:6px;
  5743. }
  5744. #u434 {
  5745. position:absolute;
  5746. left:2px;
  5747. top:-5px;
  5748. width:2px;
  5749. visibility:hidden;
  5750. word-wrap:break-word;
  5751. }
  5752. #u435 {
  5753. position:absolute;
  5754. left:0px;
  5755. top:0px;
  5756. width:0px;
  5757. height:0px;
  5758. }
  5759. #u436_div {
  5760. position:absolute;
  5761. left:0px;
  5762. top:0px;
  5763. width:318px;
  5764. height:49px;
  5765. background:inherit;
  5766. background-color:rgba(247, 247, 250, 1);
  5767. box-sizing:border-box;
  5768. border-width:1px;
  5769. border-style:solid;
  5770. border-color:rgba(228, 228, 228, 1);
  5771. border-left:0px;
  5772. border-right:0px;
  5773. border-bottom:0px;
  5774. border-radius:0px;
  5775. border-top-left-radius:0px;
  5776. border-top-right-radius:0px;
  5777. border-bottom-right-radius:0px;
  5778. border-bottom-left-radius:0px;
  5779. -moz-box-shadow:none;
  5780. -webkit-box-shadow:none;
  5781. box-shadow:none;
  5782. font-size:16px;
  5783. color:#333333;
  5784. text-align:left;
  5785. }
  5786. #u436 {
  5787. position:absolute;
  5788. left:943px;
  5789. top:2008px;
  5790. width:318px;
  5791. height:49px;
  5792. font-size:16px;
  5793. color:#333333;
  5794. text-align:left;
  5795. }
  5796. #u436_div.selected {
  5797. position:absolute;
  5798. left:0px;
  5799. top:0px;
  5800. width:318px;
  5801. height:49px;
  5802. background:inherit;
  5803. background-color:rgba(247, 247, 250, 1);
  5804. box-sizing:border-box;
  5805. border-width:1px;
  5806. border-style:solid;
  5807. border-color:rgba(45, 183, 245, 1);
  5808. border-left:0px;
  5809. border-right:0px;
  5810. border-bottom:0px;
  5811. border-radius:0px;
  5812. border-top-left-radius:0px;
  5813. border-top-right-radius:0px;
  5814. border-bottom-right-radius:0px;
  5815. border-bottom-left-radius:0px;
  5816. -moz-box-shadow:none;
  5817. -webkit-box-shadow:none;
  5818. box-shadow:none;
  5819. font-size:16px;
  5820. color:#333333;
  5821. text-align:left;
  5822. }
  5823. #u436.selected {
  5824. }
  5825. #u437 {
  5826. position:absolute;
  5827. left:55px;
  5828. top:16px;
  5829. width:263px;
  5830. visibility:hidden;
  5831. word-wrap:break-word;
  5832. }
  5833. #u438 {
  5834. position:absolute;
  5835. left:0px;
  5836. top:0px;
  5837. width:0px;
  5838. height:0px;
  5839. }
  5840. #u439_div {
  5841. position:absolute;
  5842. left:0px;
  5843. top:0px;
  5844. width:70px;
  5845. height:10px;
  5846. background:inherit;
  5847. background-color:rgba(255, 255, 255, 0);
  5848. border:none;
  5849. border-radius:0px;
  5850. -moz-box-shadow:none;
  5851. -webkit-box-shadow:none;
  5852. box-shadow:none;
  5853. font-family:'PingFangSC-Regular', 'PingFang SC';
  5854. font-weight:400;
  5855. font-style:normal;
  5856. font-size:10px;
  5857. color:#666666;
  5858. line-height:10px;
  5859. }
  5860. #u439 {
  5861. position:absolute;
  5862. left:962px;
  5863. top:2043px;
  5864. width:70px;
  5865. height:10px;
  5866. font-family:'PingFangSC-Regular', 'PingFang SC';
  5867. font-weight:400;
  5868. font-style:normal;
  5869. font-size:10px;
  5870. color:#666666;
  5871. line-height:10px;
  5872. }
  5873. #u440 {
  5874. position:absolute;
  5875. left:0px;
  5876. top:0px;
  5877. width:70px;
  5878. word-wrap:break-word;
  5879. }
  5880. #u441_img {
  5881. position:absolute;
  5882. left:0px;
  5883. top:0px;
  5884. width:27px;
  5885. height:27px;
  5886. }
  5887. #u441 {
  5888. position:absolute;
  5889. left:983px;
  5890. top:2012px;
  5891. width:27px;
  5892. height:27px;
  5893. }
  5894. #u442 {
  5895. position:absolute;
  5896. left:2px;
  5897. top:6px;
  5898. width:23px;
  5899. visibility:hidden;
  5900. word-wrap:break-word;
  5901. }
  5902. #u443 {
  5903. position:absolute;
  5904. left:0px;
  5905. top:0px;
  5906. width:0px;
  5907. height:0px;
  5908. }
  5909. #u444_div {
  5910. position:absolute;
  5911. left:0px;
  5912. top:0px;
  5913. width:70px;
  5914. height:10px;
  5915. background:inherit;
  5916. background-color:rgba(255, 255, 255, 0);
  5917. border:none;
  5918. border-radius:0px;
  5919. -moz-box-shadow:none;
  5920. -webkit-box-shadow:none;
  5921. box-shadow:none;
  5922. font-family:'PingFangSC-Regular', 'PingFang SC';
  5923. font-weight:400;
  5924. font-style:normal;
  5925. font-size:10px;
  5926. color:#7F8389;
  5927. line-height:10px;
  5928. }
  5929. #u444 {
  5930. position:absolute;
  5931. left:1067px;
  5932. top:2043px;
  5933. width:70px;
  5934. height:10px;
  5935. font-family:'PingFangSC-Regular', 'PingFang SC';
  5936. font-weight:400;
  5937. font-style:normal;
  5938. font-size:10px;
  5939. color:#7F8389;
  5940. line-height:10px;
  5941. }
  5942. #u445 {
  5943. position:absolute;
  5944. left:0px;
  5945. top:0px;
  5946. width:70px;
  5947. word-wrap:break-word;
  5948. }
  5949. #u446_img {
  5950. position:absolute;
  5951. left:0px;
  5952. top:0px;
  5953. width:27px;
  5954. height:27px;
  5955. }
  5956. #u446 {
  5957. position:absolute;
  5958. left:1088px;
  5959. top:2012px;
  5960. width:27px;
  5961. height:27px;
  5962. }
  5963. #u447 {
  5964. position:absolute;
  5965. left:2px;
  5966. top:6px;
  5967. width:23px;
  5968. visibility:hidden;
  5969. word-wrap:break-word;
  5970. }
  5971. #u448 {
  5972. position:absolute;
  5973. left:0px;
  5974. top:0px;
  5975. width:0px;
  5976. height:0px;
  5977. }
  5978. #u449_div {
  5979. position:absolute;
  5980. left:0px;
  5981. top:0px;
  5982. width:70px;
  5983. height:10px;
  5984. background:inherit;
  5985. background-color:rgba(255, 255, 255, 0);
  5986. border:none;
  5987. border-radius:0px;
  5988. -moz-box-shadow:none;
  5989. -webkit-box-shadow:none;
  5990. box-shadow:none;
  5991. font-family:'PingFangSC-Regular', 'PingFang SC';
  5992. font-weight:400;
  5993. font-style:normal;
  5994. font-size:10px;
  5995. color:#009900;
  5996. line-height:10px;
  5997. }
  5998. #u449 {
  5999. position:absolute;
  6000. left:1172px;
  6001. top:2043px;
  6002. width:70px;
  6003. height:10px;
  6004. font-family:'PingFangSC-Regular', 'PingFang SC';
  6005. font-weight:400;
  6006. font-style:normal;
  6007. font-size:10px;
  6008. color:#009900;
  6009. line-height:10px;
  6010. }
  6011. #u450 {
  6012. position:absolute;
  6013. left:0px;
  6014. top:0px;
  6015. width:70px;
  6016. word-wrap:break-word;
  6017. }
  6018. #u451_img {
  6019. position:absolute;
  6020. left:0px;
  6021. top:0px;
  6022. width:27px;
  6023. height:27px;
  6024. }
  6025. #u451 {
  6026. position:absolute;
  6027. left:1193px;
  6028. top:2012px;
  6029. width:27px;
  6030. height:27px;
  6031. }
  6032. #u452 {
  6033. position:absolute;
  6034. left:2px;
  6035. top:6px;
  6036. width:23px;
  6037. visibility:hidden;
  6038. word-wrap:break-word;
  6039. }
  6040. #u453 {
  6041. position:absolute;
  6042. left:0px;
  6043. top:0px;
  6044. width:0px;
  6045. height:0px;
  6046. }
  6047. #u454_div {
  6048. position:absolute;
  6049. left:0px;
  6050. top:0px;
  6051. width:318px;
  6052. height:50px;
  6053. background:inherit;
  6054. background-color:rgba(255, 255, 255, 1);
  6055. box-sizing:border-box;
  6056. border-width:1px;
  6057. border-style:solid;
  6058. border-color:rgba(229, 229, 229, 1);
  6059. border-left:0px;
  6060. border-right:0px;
  6061. border-radius:0px;
  6062. border-top-left-radius:0px;
  6063. border-top-right-radius:0px;
  6064. border-bottom-right-radius:0px;
  6065. border-bottom-left-radius:0px;
  6066. -moz-box-shadow:none;
  6067. -webkit-box-shadow:none;
  6068. box-shadow:none;
  6069. font-size:16px;
  6070. color:#333333;
  6071. text-align:left;
  6072. }
  6073. #u454 {
  6074. position:absolute;
  6075. left:943px;
  6076. top:1793px;
  6077. width:318px;
  6078. height:50px;
  6079. font-size:16px;
  6080. color:#333333;
  6081. text-align:left;
  6082. }
  6083. #u454_div.selected {
  6084. position:absolute;
  6085. left:0px;
  6086. top:0px;
  6087. width:318px;
  6088. height:50px;
  6089. background:inherit;
  6090. background-color:rgba(255, 255, 255, 1);
  6091. box-sizing:border-box;
  6092. border-width:1px;
  6093. border-style:solid;
  6094. border-color:rgba(45, 183, 245, 1);
  6095. border-left:0px;
  6096. border-right:0px;
  6097. border-radius:0px;
  6098. border-top-left-radius:0px;
  6099. border-top-right-radius:0px;
  6100. border-bottom-right-radius:0px;
  6101. border-bottom-left-radius:0px;
  6102. -moz-box-shadow:none;
  6103. -webkit-box-shadow:none;
  6104. box-shadow:none;
  6105. font-size:16px;
  6106. color:#333333;
  6107. text-align:left;
  6108. }
  6109. #u454.selected {
  6110. }
  6111. #u455 {
  6112. position:absolute;
  6113. left:10px;
  6114. top:17px;
  6115. width:308px;
  6116. visibility:hidden;
  6117. word-wrap:break-word;
  6118. }
  6119. #u456_div {
  6120. position:absolute;
  6121. left:0px;
  6122. top:0px;
  6123. width:300px;
  6124. height:50px;
  6125. background:inherit;
  6126. background-color:rgba(255, 255, 255, 0);
  6127. box-sizing:border-box;
  6128. border-width:1px;
  6129. border-style:solid;
  6130. border-color:rgba(229, 229, 229, 1);
  6131. border-left:0px;
  6132. border-top:0px;
  6133. border-right:0px;
  6134. border-radius:0px;
  6135. border-top-left-radius:0px;
  6136. border-top-right-radius:0px;
  6137. border-bottom-right-radius:0px;
  6138. border-bottom-left-radius:0px;
  6139. -moz-box-shadow:none;
  6140. -webkit-box-shadow:none;
  6141. box-shadow:none;
  6142. font-family:'PingFangSC-Thin', 'PingFang SC Thin', 'PingFang SC';
  6143. font-weight:200;
  6144. font-style:normal;
  6145. font-size:14px;
  6146. color:#000000;
  6147. text-align:left;
  6148. }
  6149. #u456 {
  6150. position:absolute;
  6151. left:952px;
  6152. top:1793px;
  6153. width:300px;
  6154. height:50px;
  6155. font-family:'PingFangSC-Thin', 'PingFang SC Thin', 'PingFang SC';
  6156. font-weight:200;
  6157. font-style:normal;
  6158. font-size:14px;
  6159. color:#000000;
  6160. text-align:left;
  6161. }
  6162. #u456_div.selected {
  6163. position:absolute;
  6164. left:0px;
  6165. top:0px;
  6166. width:300px;
  6167. height:50px;
  6168. background:inherit;
  6169. background-color:rgba(255, 255, 255, 0);
  6170. box-sizing:border-box;
  6171. border-width:1px;
  6172. border-style:solid;
  6173. border-color:rgba(45, 183, 245, 1);
  6174. border-left:0px;
  6175. border-top:0px;
  6176. border-right:0px;
  6177. border-radius:0px;
  6178. border-top-left-radius:0px;
  6179. border-top-right-radius:0px;
  6180. border-bottom-right-radius:0px;
  6181. border-bottom-left-radius:0px;
  6182. -moz-box-shadow:none;
  6183. -webkit-box-shadow:none;
  6184. box-shadow:none;
  6185. font-family:'PingFangSC-Thin', 'PingFang SC Thin', 'PingFang SC';
  6186. font-weight:200;
  6187. font-style:normal;
  6188. font-size:14px;
  6189. color:#000000;
  6190. text-align:left;
  6191. }
  6192. #u456.selected {
  6193. }
  6194. #u457 {
  6195. position:absolute;
  6196. left:0px;
  6197. top:15px;
  6198. width:300px;
  6199. word-wrap:break-word;
  6200. }
  6201. #u458_img {
  6202. position:absolute;
  6203. left:0px;
  6204. top:0px;
  6205. width:6px;
  6206. height:12px;
  6207. }
  6208. #u458 {
  6209. position:absolute;
  6210. left:1246px;
  6211. top:1813px;
  6212. width:6px;
  6213. height:12px;
  6214. -webkit-transform:rotate(180deg);
  6215. -moz-transform:rotate(180deg);
  6216. -ms-transform:rotate(180deg);
  6217. transform:rotate(180deg);
  6218. }
  6219. #u459 {
  6220. position:absolute;
  6221. left:2px;
  6222. top:-2px;
  6223. width:2px;
  6224. visibility:hidden;
  6225. word-wrap:break-word;
  6226. }
  6227. #u460 {
  6228. position:absolute;
  6229. left:0px;
  6230. top:0px;
  6231. width:0px;
  6232. height:0px;
  6233. }
  6234. #u461_div {
  6235. position:absolute;
  6236. left:0px;
  6237. top:0px;
  6238. width:318px;
  6239. height:50px;
  6240. background:inherit;
  6241. background-color:rgba(255, 255, 255, 1);
  6242. box-sizing:border-box;
  6243. border-width:1px;
  6244. border-style:solid;
  6245. border-color:rgba(229, 229, 229, 1);
  6246. border-left:0px;
  6247. border-right:0px;
  6248. border-radius:0px;
  6249. border-top-left-radius:0px;
  6250. border-top-right-radius:0px;
  6251. border-bottom-right-radius:0px;
  6252. border-bottom-left-radius:0px;
  6253. -moz-box-shadow:none;
  6254. -webkit-box-shadow:none;
  6255. box-shadow:none;
  6256. font-size:16px;
  6257. color:#333333;
  6258. text-align:left;
  6259. }
  6260. #u461 {
  6261. position:absolute;
  6262. left:943px;
  6263. top:1847px;
  6264. width:318px;
  6265. height:50px;
  6266. font-size:16px;
  6267. color:#333333;
  6268. text-align:left;
  6269. }
  6270. #u461_div.selected {
  6271. position:absolute;
  6272. left:0px;
  6273. top:0px;
  6274. width:318px;
  6275. height:50px;
  6276. background:inherit;
  6277. background-color:rgba(255, 255, 255, 1);
  6278. box-sizing:border-box;
  6279. border-width:1px;
  6280. border-style:solid;
  6281. border-color:rgba(45, 183, 245, 1);
  6282. border-left:0px;
  6283. border-right:0px;
  6284. border-radius:0px;
  6285. border-top-left-radius:0px;
  6286. border-top-right-radius:0px;
  6287. border-bottom-right-radius:0px;
  6288. border-bottom-left-radius:0px;
  6289. -moz-box-shadow:none;
  6290. -webkit-box-shadow:none;
  6291. box-shadow:none;
  6292. font-size:16px;
  6293. color:#333333;
  6294. text-align:left;
  6295. }
  6296. #u461.selected {
  6297. }
  6298. #u462 {
  6299. position:absolute;
  6300. left:10px;
  6301. top:17px;
  6302. width:308px;
  6303. visibility:hidden;
  6304. word-wrap:break-word;
  6305. }
  6306. #u463_div {
  6307. position:absolute;
  6308. left:0px;
  6309. top:0px;
  6310. width:300px;
  6311. height:50px;
  6312. background:inherit;
  6313. background-color:rgba(255, 255, 255, 0);
  6314. box-sizing:border-box;
  6315. border-width:1px;
  6316. border-style:solid;
  6317. border-color:rgba(229, 229, 229, 1);
  6318. border-left:0px;
  6319. border-top:0px;
  6320. border-right:0px;
  6321. border-radius:0px;
  6322. border-top-left-radius:0px;
  6323. border-top-right-radius:0px;
  6324. border-bottom-right-radius:0px;
  6325. border-bottom-left-radius:0px;
  6326. -moz-box-shadow:none;
  6327. -webkit-box-shadow:none;
  6328. box-shadow:none;
  6329. font-family:'PingFangSC-Thin', 'PingFang SC Thin', 'PingFang SC';
  6330. font-weight:200;
  6331. font-style:normal;
  6332. font-size:14px;
  6333. color:#000000;
  6334. text-align:left;
  6335. }
  6336. #u463 {
  6337. position:absolute;
  6338. left:952px;
  6339. top:1847px;
  6340. width:300px;
  6341. height:50px;
  6342. font-family:'PingFangSC-Thin', 'PingFang SC Thin', 'PingFang SC';
  6343. font-weight:200;
  6344. font-style:normal;
  6345. font-size:14px;
  6346. color:#000000;
  6347. text-align:left;
  6348. }
  6349. #u463_div.selected {
  6350. position:absolute;
  6351. left:0px;
  6352. top:0px;
  6353. width:300px;
  6354. height:50px;
  6355. background:inherit;
  6356. background-color:rgba(255, 255, 255, 0);
  6357. box-sizing:border-box;
  6358. border-width:1px;
  6359. border-style:solid;
  6360. border-color:rgba(45, 183, 245, 1);
  6361. border-left:0px;
  6362. border-top:0px;
  6363. border-right:0px;
  6364. border-radius:0px;
  6365. border-top-left-radius:0px;
  6366. border-top-right-radius:0px;
  6367. border-bottom-right-radius:0px;
  6368. border-bottom-left-radius:0px;
  6369. -moz-box-shadow:none;
  6370. -webkit-box-shadow:none;
  6371. box-shadow:none;
  6372. font-family:'PingFangSC-Thin', 'PingFang SC Thin', 'PingFang SC';
  6373. font-weight:200;
  6374. font-style:normal;
  6375. font-size:14px;
  6376. color:#000000;
  6377. text-align:left;
  6378. }
  6379. #u463.selected {
  6380. }
  6381. #u464 {
  6382. position:absolute;
  6383. left:0px;
  6384. top:15px;
  6385. width:300px;
  6386. word-wrap:break-word;
  6387. }
  6388. #u465_img {
  6389. position:absolute;
  6390. left:0px;
  6391. top:0px;
  6392. width:6px;
  6393. height:12px;
  6394. }
  6395. #u465 {
  6396. position:absolute;
  6397. left:1246px;
  6398. top:1867px;
  6399. width:6px;
  6400. height:12px;
  6401. -webkit-transform:rotate(180deg);
  6402. -moz-transform:rotate(180deg);
  6403. -ms-transform:rotate(180deg);
  6404. transform:rotate(180deg);
  6405. }
  6406. #u466 {
  6407. position:absolute;
  6408. left:2px;
  6409. top:-2px;
  6410. width:2px;
  6411. visibility:hidden;
  6412. word-wrap:break-word;
  6413. }
  6414. #u467 {
  6415. position:absolute;
  6416. left:0px;
  6417. top:0px;
  6418. width:0px;
  6419. height:0px;
  6420. }
  6421. #u468_div {
  6422. position:absolute;
  6423. left:0px;
  6424. top:0px;
  6425. width:318px;
  6426. height:50px;
  6427. background:inherit;
  6428. background-color:rgba(255, 255, 255, 1);
  6429. box-sizing:border-box;
  6430. border-width:1px;
  6431. border-style:solid;
  6432. border-color:rgba(229, 229, 229, 1);
  6433. border-left:0px;
  6434. border-right:0px;
  6435. border-radius:0px;
  6436. border-top-left-radius:0px;
  6437. border-top-right-radius:0px;
  6438. border-bottom-right-radius:0px;
  6439. border-bottom-left-radius:0px;
  6440. -moz-box-shadow:none;
  6441. -webkit-box-shadow:none;
  6442. box-shadow:none;
  6443. font-size:16px;
  6444. color:#333333;
  6445. text-align:left;
  6446. }
  6447. #u468 {
  6448. position:absolute;
  6449. left:943px;
  6450. top:1744px;
  6451. width:318px;
  6452. height:50px;
  6453. font-size:16px;
  6454. color:#333333;
  6455. text-align:left;
  6456. }
  6457. #u468_div.selected {
  6458. position:absolute;
  6459. left:0px;
  6460. top:0px;
  6461. width:318px;
  6462. height:50px;
  6463. background:inherit;
  6464. background-color:rgba(255, 255, 255, 1);
  6465. box-sizing:border-box;
  6466. border-width:1px;
  6467. border-style:solid;
  6468. border-color:rgba(45, 183, 245, 1);
  6469. border-left:0px;
  6470. border-right:0px;
  6471. border-radius:0px;
  6472. border-top-left-radius:0px;
  6473. border-top-right-radius:0px;
  6474. border-bottom-right-radius:0px;
  6475. border-bottom-left-radius:0px;
  6476. -moz-box-shadow:none;
  6477. -webkit-box-shadow:none;
  6478. box-shadow:none;
  6479. font-size:16px;
  6480. color:#333333;
  6481. text-align:left;
  6482. }
  6483. #u468.selected {
  6484. }
  6485. #u469 {
  6486. position:absolute;
  6487. left:10px;
  6488. top:17px;
  6489. width:308px;
  6490. visibility:hidden;
  6491. word-wrap:break-word;
  6492. }
  6493. #u470_div {
  6494. position:absolute;
  6495. left:0px;
  6496. top:0px;
  6497. width:300px;
  6498. height:50px;
  6499. background:inherit;
  6500. background-color:rgba(255, 255, 255, 0);
  6501. box-sizing:border-box;
  6502. border-width:1px;
  6503. border-style:solid;
  6504. border-color:rgba(229, 229, 229, 1);
  6505. border-left:0px;
  6506. border-top:0px;
  6507. border-right:0px;
  6508. border-radius:0px;
  6509. border-top-left-radius:0px;
  6510. border-top-right-radius:0px;
  6511. border-bottom-right-radius:0px;
  6512. border-bottom-left-radius:0px;
  6513. -moz-box-shadow:none;
  6514. -webkit-box-shadow:none;
  6515. box-shadow:none;
  6516. font-family:'PingFangSC-Thin', 'PingFang SC Thin', 'PingFang SC';
  6517. font-weight:200;
  6518. font-style:normal;
  6519. font-size:14px;
  6520. color:#000000;
  6521. text-align:left;
  6522. }
  6523. #u470 {
  6524. position:absolute;
  6525. left:952px;
  6526. top:1744px;
  6527. width:300px;
  6528. height:50px;
  6529. font-family:'PingFangSC-Thin', 'PingFang SC Thin', 'PingFang SC';
  6530. font-weight:200;
  6531. font-style:normal;
  6532. font-size:14px;
  6533. color:#000000;
  6534. text-align:left;
  6535. }
  6536. #u470_div.selected {
  6537. position:absolute;
  6538. left:0px;
  6539. top:0px;
  6540. width:300px;
  6541. height:50px;
  6542. background:inherit;
  6543. background-color:rgba(255, 255, 255, 0);
  6544. box-sizing:border-box;
  6545. border-width:1px;
  6546. border-style:solid;
  6547. border-color:rgba(45, 183, 245, 1);
  6548. border-left:0px;
  6549. border-top:0px;
  6550. border-right:0px;
  6551. border-radius:0px;
  6552. border-top-left-radius:0px;
  6553. border-top-right-radius:0px;
  6554. border-bottom-right-radius:0px;
  6555. border-bottom-left-radius:0px;
  6556. -moz-box-shadow:none;
  6557. -webkit-box-shadow:none;
  6558. box-shadow:none;
  6559. font-family:'PingFangSC-Thin', 'PingFang SC Thin', 'PingFang SC';
  6560. font-weight:200;
  6561. font-style:normal;
  6562. font-size:14px;
  6563. color:#000000;
  6564. text-align:left;
  6565. }
  6566. #u470.selected {
  6567. }
  6568. #u471 {
  6569. position:absolute;
  6570. left:0px;
  6571. top:15px;
  6572. width:300px;
  6573. word-wrap:break-word;
  6574. }
  6575. #u472_img {
  6576. position:absolute;
  6577. left:0px;
  6578. top:0px;
  6579. width:6px;
  6580. height:12px;
  6581. }
  6582. #u472 {
  6583. position:absolute;
  6584. left:1246px;
  6585. top:1764px;
  6586. width:6px;
  6587. height:12px;
  6588. -webkit-transform:rotate(180deg);
  6589. -moz-transform:rotate(180deg);
  6590. -ms-transform:rotate(180deg);
  6591. transform:rotate(180deg);
  6592. }
  6593. #u473 {
  6594. position:absolute;
  6595. left:2px;
  6596. top:-2px;
  6597. width:2px;
  6598. visibility:hidden;
  6599. word-wrap:break-word;
  6600. }
  6601. #u474 {
  6602. position:absolute;
  6603. left:0px;
  6604. top:0px;
  6605. width:0px;
  6606. height:0px;
  6607. }
  6608. #u475_div {
  6609. position:absolute;
  6610. left:0px;
  6611. top:0px;
  6612. width:318px;
  6613. height:50px;
  6614. background:inherit;
  6615. background-color:rgba(255, 255, 255, 1);
  6616. box-sizing:border-box;
  6617. border-width:1px;
  6618. border-style:solid;
  6619. border-color:rgba(229, 229, 229, 1);
  6620. border-left:0px;
  6621. border-right:0px;
  6622. border-radius:0px;
  6623. border-top-left-radius:0px;
  6624. border-top-right-radius:0px;
  6625. border-bottom-right-radius:0px;
  6626. border-bottom-left-radius:0px;
  6627. -moz-box-shadow:none;
  6628. -webkit-box-shadow:none;
  6629. box-shadow:none;
  6630. font-size:16px;
  6631. color:#333333;
  6632. text-align:left;
  6633. }
  6634. #u475 {
  6635. position:absolute;
  6636. left:943px;
  6637. top:1695px;
  6638. width:318px;
  6639. height:50px;
  6640. font-size:16px;
  6641. color:#333333;
  6642. text-align:left;
  6643. }
  6644. #u475_div.selected {
  6645. position:absolute;
  6646. left:0px;
  6647. top:0px;
  6648. width:318px;
  6649. height:50px;
  6650. background:inherit;
  6651. background-color:rgba(255, 255, 255, 1);
  6652. box-sizing:border-box;
  6653. border-width:1px;
  6654. border-style:solid;
  6655. border-color:rgba(45, 183, 245, 1);
  6656. border-left:0px;
  6657. border-right:0px;
  6658. border-radius:0px;
  6659. border-top-left-radius:0px;
  6660. border-top-right-radius:0px;
  6661. border-bottom-right-radius:0px;
  6662. border-bottom-left-radius:0px;
  6663. -moz-box-shadow:none;
  6664. -webkit-box-shadow:none;
  6665. box-shadow:none;
  6666. font-size:16px;
  6667. color:#333333;
  6668. text-align:left;
  6669. }
  6670. #u475.selected {
  6671. }
  6672. #u476 {
  6673. position:absolute;
  6674. left:10px;
  6675. top:17px;
  6676. width:308px;
  6677. visibility:hidden;
  6678. word-wrap:break-word;
  6679. }
  6680. #u477_div {
  6681. position:absolute;
  6682. left:0px;
  6683. top:0px;
  6684. width:300px;
  6685. height:50px;
  6686. background:inherit;
  6687. background-color:rgba(255, 255, 255, 0);
  6688. box-sizing:border-box;
  6689. border-width:1px;
  6690. border-style:solid;
  6691. border-color:rgba(229, 229, 229, 1);
  6692. border-left:0px;
  6693. border-top:0px;
  6694. border-right:0px;
  6695. border-radius:0px;
  6696. border-top-left-radius:0px;
  6697. border-top-right-radius:0px;
  6698. border-bottom-right-radius:0px;
  6699. border-bottom-left-radius:0px;
  6700. -moz-box-shadow:none;
  6701. -webkit-box-shadow:none;
  6702. box-shadow:none;
  6703. font-family:'PingFangSC-Thin', 'PingFang SC Thin', 'PingFang SC';
  6704. font-weight:200;
  6705. font-style:normal;
  6706. font-size:14px;
  6707. color:#000000;
  6708. text-align:left;
  6709. }
  6710. #u477 {
  6711. position:absolute;
  6712. left:952px;
  6713. top:1695px;
  6714. width:300px;
  6715. height:50px;
  6716. font-family:'PingFangSC-Thin', 'PingFang SC Thin', 'PingFang SC';
  6717. font-weight:200;
  6718. font-style:normal;
  6719. font-size:14px;
  6720. color:#000000;
  6721. text-align:left;
  6722. }
  6723. #u477_div.selected {
  6724. position:absolute;
  6725. left:0px;
  6726. top:0px;
  6727. width:300px;
  6728. height:50px;
  6729. background:inherit;
  6730. background-color:rgba(255, 255, 255, 0);
  6731. box-sizing:border-box;
  6732. border-width:1px;
  6733. border-style:solid;
  6734. border-color:rgba(45, 183, 245, 1);
  6735. border-left:0px;
  6736. border-top:0px;
  6737. border-right:0px;
  6738. border-radius:0px;
  6739. border-top-left-radius:0px;
  6740. border-top-right-radius:0px;
  6741. border-bottom-right-radius:0px;
  6742. border-bottom-left-radius:0px;
  6743. -moz-box-shadow:none;
  6744. -webkit-box-shadow:none;
  6745. box-shadow:none;
  6746. font-family:'PingFangSC-Thin', 'PingFang SC Thin', 'PingFang SC';
  6747. font-weight:200;
  6748. font-style:normal;
  6749. font-size:14px;
  6750. color:#000000;
  6751. text-align:left;
  6752. }
  6753. #u477.selected {
  6754. }
  6755. #u478 {
  6756. position:absolute;
  6757. left:0px;
  6758. top:15px;
  6759. width:300px;
  6760. word-wrap:break-word;
  6761. }
  6762. #u479_img {
  6763. position:absolute;
  6764. left:0px;
  6765. top:0px;
  6766. width:6px;
  6767. height:12px;
  6768. }
  6769. #u479 {
  6770. position:absolute;
  6771. left:1246px;
  6772. top:1715px;
  6773. width:6px;
  6774. height:12px;
  6775. -webkit-transform:rotate(180deg);
  6776. -moz-transform:rotate(180deg);
  6777. -ms-transform:rotate(180deg);
  6778. transform:rotate(180deg);
  6779. }
  6780. #u480 {
  6781. position:absolute;
  6782. left:2px;
  6783. top:-2px;
  6784. width:2px;
  6785. visibility:hidden;
  6786. word-wrap:break-word;
  6787. }
  6788. #u481 {
  6789. position:absolute;
  6790. left:0px;
  6791. top:0px;
  6792. width:0px;
  6793. height:0px;
  6794. }
  6795. #u482_div {
  6796. position:absolute;
  6797. left:0px;
  6798. top:0px;
  6799. width:318px;
  6800. height:50px;
  6801. background:inherit;
  6802. background-color:rgba(255, 255, 255, 1);
  6803. box-sizing:border-box;
  6804. border-width:1px;
  6805. border-style:solid;
  6806. border-color:rgba(229, 229, 229, 1);
  6807. border-left:0px;
  6808. border-right:0px;
  6809. border-radius:0px;
  6810. border-top-left-radius:0px;
  6811. border-top-right-radius:0px;
  6812. border-bottom-right-radius:0px;
  6813. border-bottom-left-radius:0px;
  6814. -moz-box-shadow:none;
  6815. -webkit-box-shadow:none;
  6816. box-shadow:none;
  6817. font-size:16px;
  6818. color:#333333;
  6819. text-align:left;
  6820. }
  6821. #u482 {
  6822. position:absolute;
  6823. left:943px;
  6824. top:1896px;
  6825. width:318px;
  6826. height:50px;
  6827. font-size:16px;
  6828. color:#333333;
  6829. text-align:left;
  6830. }
  6831. #u482_div.selected {
  6832. position:absolute;
  6833. left:0px;
  6834. top:0px;
  6835. width:318px;
  6836. height:50px;
  6837. background:inherit;
  6838. background-color:rgba(255, 255, 255, 1);
  6839. box-sizing:border-box;
  6840. border-width:1px;
  6841. border-style:solid;
  6842. border-color:rgba(45, 183, 245, 1);
  6843. border-left:0px;
  6844. border-right:0px;
  6845. border-radius:0px;
  6846. border-top-left-radius:0px;
  6847. border-top-right-radius:0px;
  6848. border-bottom-right-radius:0px;
  6849. border-bottom-left-radius:0px;
  6850. -moz-box-shadow:none;
  6851. -webkit-box-shadow:none;
  6852. box-shadow:none;
  6853. font-size:16px;
  6854. color:#333333;
  6855. text-align:left;
  6856. }
  6857. #u482.selected {
  6858. }
  6859. #u483 {
  6860. position:absolute;
  6861. left:10px;
  6862. top:17px;
  6863. width:308px;
  6864. visibility:hidden;
  6865. word-wrap:break-word;
  6866. }
  6867. #u484_div {
  6868. position:absolute;
  6869. left:0px;
  6870. top:0px;
  6871. width:300px;
  6872. height:50px;
  6873. background:inherit;
  6874. background-color:rgba(255, 255, 255, 0);
  6875. box-sizing:border-box;
  6876. border-width:1px;
  6877. border-style:solid;
  6878. border-color:rgba(229, 229, 229, 1);
  6879. border-left:0px;
  6880. border-top:0px;
  6881. border-right:0px;
  6882. border-radius:0px;
  6883. border-top-left-radius:0px;
  6884. border-top-right-radius:0px;
  6885. border-bottom-right-radius:0px;
  6886. border-bottom-left-radius:0px;
  6887. -moz-box-shadow:none;
  6888. -webkit-box-shadow:none;
  6889. box-shadow:none;
  6890. font-family:'PingFangSC-Thin', 'PingFang SC Thin', 'PingFang SC';
  6891. font-weight:200;
  6892. font-style:normal;
  6893. font-size:14px;
  6894. color:#000000;
  6895. text-align:left;
  6896. }
  6897. #u484 {
  6898. position:absolute;
  6899. left:952px;
  6900. top:1896px;
  6901. width:300px;
  6902. height:50px;
  6903. font-family:'PingFangSC-Thin', 'PingFang SC Thin', 'PingFang SC';
  6904. font-weight:200;
  6905. font-style:normal;
  6906. font-size:14px;
  6907. color:#000000;
  6908. text-align:left;
  6909. }
  6910. #u484_div.selected {
  6911. position:absolute;
  6912. left:0px;
  6913. top:0px;
  6914. width:300px;
  6915. height:50px;
  6916. background:inherit;
  6917. background-color:rgba(255, 255, 255, 0);
  6918. box-sizing:border-box;
  6919. border-width:1px;
  6920. border-style:solid;
  6921. border-color:rgba(45, 183, 245, 1);
  6922. border-left:0px;
  6923. border-top:0px;
  6924. border-right:0px;
  6925. border-radius:0px;
  6926. border-top-left-radius:0px;
  6927. border-top-right-radius:0px;
  6928. border-bottom-right-radius:0px;
  6929. border-bottom-left-radius:0px;
  6930. -moz-box-shadow:none;
  6931. -webkit-box-shadow:none;
  6932. box-shadow:none;
  6933. font-family:'PingFangSC-Thin', 'PingFang SC Thin', 'PingFang SC';
  6934. font-weight:200;
  6935. font-style:normal;
  6936. font-size:14px;
  6937. color:#000000;
  6938. text-align:left;
  6939. }
  6940. #u484.selected {
  6941. }
  6942. #u485 {
  6943. position:absolute;
  6944. left:0px;
  6945. top:15px;
  6946. width:300px;
  6947. word-wrap:break-word;
  6948. }
  6949. #u486_img {
  6950. position:absolute;
  6951. left:0px;
  6952. top:0px;
  6953. width:6px;
  6954. height:12px;
  6955. }
  6956. #u486 {
  6957. position:absolute;
  6958. left:1246px;
  6959. top:1916px;
  6960. width:6px;
  6961. height:12px;
  6962. -webkit-transform:rotate(180deg);
  6963. -moz-transform:rotate(180deg);
  6964. -ms-transform:rotate(180deg);
  6965. transform:rotate(180deg);
  6966. }
  6967. #u487 {
  6968. position:absolute;
  6969. left:2px;
  6970. top:-2px;
  6971. width:2px;
  6972. visibility:hidden;
  6973. word-wrap:break-word;
  6974. }
  6975. #u488_div {
  6976. position:absolute;
  6977. left:0px;
  6978. top:0px;
  6979. width:310px;
  6980. height:131px;
  6981. background:inherit;
  6982. background-color:rgba(51, 51, 51, 1);
  6983. box-sizing:border-box;
  6984. border-width:1px;
  6985. border-style:solid;
  6986. border-color:rgba(121, 121, 121, 1);
  6987. border-radius:5px;
  6988. -moz-box-shadow:none;
  6989. -webkit-box-shadow:none;
  6990. box-shadow:none;
  6991. font-family:'PingFangSC-Regular', 'PingFang SC';
  6992. font-weight:400;
  6993. font-style:normal;
  6994. color:#FFFFFF;
  6995. }
  6996. #u488 {
  6997. position:absolute;
  6998. left:947px;
  6999. top:1558px;
  7000. width:310px;
  7001. height:131px;
  7002. font-family:'PingFangSC-Regular', 'PingFang SC';
  7003. font-weight:400;
  7004. font-style:normal;
  7005. color:#FFFFFF;
  7006. }
  7007. #u489 {
  7008. position:absolute;
  7009. left:2px;
  7010. top:58px;
  7011. width:306px;
  7012. visibility:hidden;
  7013. word-wrap:break-word;
  7014. }
  7015. #u490_div {
  7016. position:absolute;
  7017. left:0px;
  7018. top:0px;
  7019. width:149px;
  7020. height:17px;
  7021. background:inherit;
  7022. background-color:rgba(255, 255, 255, 0);
  7023. border:none;
  7024. border-radius:0px;
  7025. -moz-box-shadow:none;
  7026. -webkit-box-shadow:none;
  7027. box-shadow:none;
  7028. font-size:12px;
  7029. color:#FFFFFF;
  7030. }
  7031. #u490 {
  7032. position:absolute;
  7033. left:960px;
  7034. top:1664px;
  7035. width:149px;
  7036. height:17px;
  7037. font-size:12px;
  7038. color:#FFFFFF;
  7039. }
  7040. #u491 {
  7041. position:absolute;
  7042. left:0px;
  7043. top:0px;
  7044. width:149px;
  7045. white-space:nowrap;
  7046. }
  7047. #u492_div {
  7048. position:absolute;
  7049. left:0px;
  7050. top:0px;
  7051. width:69px;
  7052. height:17px;
  7053. background:inherit;
  7054. background-color:rgba(255, 255, 255, 1);
  7055. box-sizing:border-box;
  7056. border-width:1px;
  7057. border-style:solid;
  7058. border-color:rgba(121, 121, 121, 1);
  7059. border-radius:70px;
  7060. -moz-box-shadow:none;
  7061. -webkit-box-shadow:none;
  7062. box-shadow:none;
  7063. font-family:'PingFangSC-Regular', 'PingFang SC';
  7064. font-weight:400;
  7065. font-style:normal;
  7066. font-size:11px;
  7067. }
  7068. #u492 {
  7069. position:absolute;
  7070. left:1183px;
  7071. top:1664px;
  7072. width:69px;
  7073. height:17px;
  7074. font-family:'PingFangSC-Regular', 'PingFang SC';
  7075. font-weight:400;
  7076. font-style:normal;
  7077. font-size:11px;
  7078. }
  7079. #u493 {
  7080. position:absolute;
  7081. left:2px;
  7082. top:0px;
  7083. width:65px;
  7084. word-wrap:break-word;
  7085. }
  7086. #u494_div {
  7087. position:absolute;
  7088. left:0px;
  7089. top:0px;
  7090. width:318px;
  7091. height:72px;
  7092. background:inherit;
  7093. background-color:rgba(208, 225, 125, 1);
  7094. border:none;
  7095. border-radius:0px;
  7096. -moz-box-shadow:5px 5px 5px rgba(0, 0, 0, 0.2);
  7097. -webkit-box-shadow:5px 5px 5px rgba(0, 0, 0, 0.2);
  7098. box-shadow:5px 5px 5px rgba(0, 0, 0, 0.2);
  7099. }
  7100. #u494 {
  7101. position:absolute;
  7102. left:943px;
  7103. top:2086px;
  7104. width:318px;
  7105. height:72px;
  7106. }
  7107. #u495 {
  7108. position:absolute;
  7109. left:10px;
  7110. top:10px;
  7111. width:298px;
  7112. word-wrap:break-word;
  7113. }
  7114. #u496_div {
  7115. position:absolute;
  7116. left:0px;
  7117. top:0px;
  7118. width:318px;
  7119. height:318px;
  7120. background:inherit;
  7121. background-color:rgba(208, 225, 125, 1);
  7122. border:none;
  7123. border-radius:0px;
  7124. -moz-box-shadow:5px 5px 5px rgba(0, 0, 0, 0.2);
  7125. -webkit-box-shadow:5px 5px 5px rgba(0, 0, 0, 0.2);
  7126. box-shadow:5px 5px 5px rgba(0, 0, 0, 0.2);
  7127. }
  7128. #u496 {
  7129. position:absolute;
  7130. left:943px;
  7131. top:2236px;
  7132. width:318px;
  7133. height:318px;
  7134. }
  7135. #u497 {
  7136. position:absolute;
  7137. left:10px;
  7138. top:10px;
  7139. width:298px;
  7140. word-wrap:break-word;
  7141. }
  7142. #u498_div {
  7143. position:absolute;
  7144. left:0px;
  7145. top:0px;
  7146. width:84px;
  7147. height:22px;
  7148. background:inherit;
  7149. background-color:rgba(255, 255, 255, 0);
  7150. border:none;
  7151. border-radius:0px;
  7152. -moz-box-shadow:none;
  7153. -webkit-box-shadow:none;
  7154. box-shadow:none;
  7155. font-family:'PingFangSC-Thin', 'PingFang SC Thin', 'PingFang SC';
  7156. font-weight:200;
  7157. font-style:normal;
  7158. font-size:16px;
  7159. color:#FFFFFF;
  7160. text-align:center;
  7161. }
  7162. #u498 {
  7163. position:absolute;
  7164. left:1021px;
  7165. top:1585px;
  7166. width:84px;
  7167. height:22px;
  7168. font-family:'PingFangSC-Thin', 'PingFang SC Thin', 'PingFang SC';
  7169. font-weight:200;
  7170. font-style:normal;
  7171. font-size:16px;
  7172. color:#FFFFFF;
  7173. text-align:center;
  7174. }
  7175. #u499 {
  7176. position:absolute;
  7177. left:0px;
  7178. top:0px;
  7179. width:84px;
  7180. word-wrap:break-word;
  7181. }
  7182. #u500 {
  7183. position:absolute;
  7184. left:0px;
  7185. top:0px;
  7186. width:0px;
  7187. height:0px;
  7188. }
  7189. #u501_div {
  7190. position:absolute;
  7191. left:0px;
  7192. top:0px;
  7193. width:126px;
  7194. height:18px;
  7195. background:inherit;
  7196. background-color:rgba(255, 255, 255, 0);
  7197. border:none;
  7198. border-radius:0px;
  7199. -moz-box-shadow:none;
  7200. -webkit-box-shadow:none;
  7201. box-shadow:none;
  7202. font-family:'PingFangSC-Thin', 'PingFang SC Thin', 'PingFang SC';
  7203. font-weight:200;
  7204. font-style:normal;
  7205. font-size:13px;
  7206. color:#FFFFFF;
  7207. text-align:center;
  7208. }
  7209. #u501 {
  7210. position:absolute;
  7211. left:1021px;
  7212. top:1623px;
  7213. width:126px;
  7214. height:18px;
  7215. font-family:'PingFangSC-Thin', 'PingFang SC Thin', 'PingFang SC';
  7216. font-weight:200;
  7217. font-style:normal;
  7218. font-size:13px;
  7219. color:#FFFFFF;
  7220. text-align:center;
  7221. }
  7222. #u502 {
  7223. position:absolute;
  7224. left:0px;
  7225. top:0px;
  7226. width:126px;
  7227. word-wrap:break-word;
  7228. }
  7229. #u503_img {
  7230. position:absolute;
  7231. left:0px;
  7232. top:0px;
  7233. width:56px;
  7234. height:56px;
  7235. }
  7236. #u503 {
  7237. position:absolute;
  7238. left:961px;
  7239. top:1585px;
  7240. width:56px;
  7241. height:56px;
  7242. }
  7243. #u504 {
  7244. position:absolute;
  7245. left:2px;
  7246. top:20px;
  7247. width:52px;
  7248. visibility:hidden;
  7249. word-wrap:break-word;
  7250. }
  7251. #u505_img {
  7252. position:absolute;
  7253. left:0px;
  7254. top:0px;
  7255. width:18px;
  7256. height:18px;
  7257. }
  7258. #u505 {
  7259. position:absolute;
  7260. left:1224px;
  7261. top:1570px;
  7262. width:18px;
  7263. height:18px;
  7264. }
  7265. #u506 {
  7266. position:absolute;
  7267. left:2px;
  7268. top:1px;
  7269. width:14px;
  7270. visibility:hidden;
  7271. word-wrap:break-word;
  7272. }
  7273. #u507_img {
  7274. position:absolute;
  7275. left:0px;
  7276. top:0px;
  7277. width:23px;
  7278. height:20px;
  7279. }
  7280. #u507 {
  7281. position:absolute;
  7282. left:991px;
  7283. top:1621px;
  7284. width:23px;
  7285. height:20px;
  7286. }
  7287. #u508 {
  7288. position:absolute;
  7289. left:2px;
  7290. top:2px;
  7291. width:19px;
  7292. visibility:hidden;
  7293. word-wrap:break-word;
  7294. }
  7295. #u509_div {
  7296. position:absolute;
  7297. left:0px;
  7298. top:0px;
  7299. width:310px;
  7300. height:131px;
  7301. background:inherit;
  7302. background-color:rgba(51, 51, 51, 1);
  7303. box-sizing:border-box;
  7304. border-width:1px;
  7305. border-style:solid;
  7306. border-color:rgba(121, 121, 121, 1);
  7307. border-radius:5px;
  7308. -moz-box-shadow:none;
  7309. -webkit-box-shadow:none;
  7310. box-shadow:none;
  7311. font-family:'PingFangSC-Regular', 'PingFang SC';
  7312. font-weight:400;
  7313. font-style:normal;
  7314. color:#FFFFFF;
  7315. }
  7316. #u509 {
  7317. position:absolute;
  7318. left:513px;
  7319. top:1562px;
  7320. width:310px;
  7321. height:131px;
  7322. font-family:'PingFangSC-Regular', 'PingFang SC';
  7323. font-weight:400;
  7324. font-style:normal;
  7325. color:#FFFFFF;
  7326. }
  7327. #u510 {
  7328. position:absolute;
  7329. left:2px;
  7330. top:58px;
  7331. width:306px;
  7332. visibility:hidden;
  7333. word-wrap:break-word;
  7334. }
  7335. #u511_div {
  7336. position:absolute;
  7337. left:0px;
  7338. top:0px;
  7339. width:128px;
  7340. height:17px;
  7341. background:inherit;
  7342. background-color:rgba(255, 255, 255, 0);
  7343. border:none;
  7344. border-radius:0px;
  7345. -moz-box-shadow:none;
  7346. -webkit-box-shadow:none;
  7347. box-shadow:none;
  7348. font-size:12px;
  7349. color:#FFFFFF;
  7350. }
  7351. #u511 {
  7352. position:absolute;
  7353. left:526px;
  7354. top:1668px;
  7355. width:128px;
  7356. height:17px;
  7357. font-size:12px;
  7358. color:#FFFFFF;
  7359. }
  7360. #u512 {
  7361. position:absolute;
  7362. left:0px;
  7363. top:0px;
  7364. width:128px;
  7365. white-space:nowrap;
  7366. }
  7367. #u513_div {
  7368. position:absolute;
  7369. left:0px;
  7370. top:0px;
  7371. width:69px;
  7372. height:17px;
  7373. background:inherit;
  7374. background-color:rgba(255, 255, 255, 1);
  7375. box-sizing:border-box;
  7376. border-width:1px;
  7377. border-style:solid;
  7378. border-color:rgba(121, 121, 121, 1);
  7379. border-radius:70px;
  7380. -moz-box-shadow:none;
  7381. -webkit-box-shadow:none;
  7382. box-shadow:none;
  7383. font-size:11px;
  7384. }
  7385. #u513 {
  7386. position:absolute;
  7387. left:749px;
  7388. top:1668px;
  7389. width:69px;
  7390. height:17px;
  7391. font-size:11px;
  7392. }
  7393. #u514 {
  7394. position:absolute;
  7395. left:2px;
  7396. top:0px;
  7397. width:65px;
  7398. word-wrap:break-word;
  7399. }
  7400. #u515_div {
  7401. position:absolute;
  7402. left:0px;
  7403. top:0px;
  7404. width:84px;
  7405. height:22px;
  7406. background:inherit;
  7407. background-color:rgba(255, 255, 255, 0);
  7408. border:none;
  7409. border-radius:0px;
  7410. -moz-box-shadow:none;
  7411. -webkit-box-shadow:none;
  7412. box-shadow:none;
  7413. font-family:'PingFangSC-Thin', 'PingFang SC Thin', 'PingFang SC';
  7414. font-weight:200;
  7415. font-style:normal;
  7416. font-size:16px;
  7417. color:#FFFFFF;
  7418. text-align:center;
  7419. }
  7420. #u515 {
  7421. position:absolute;
  7422. left:587px;
  7423. top:1589px;
  7424. width:84px;
  7425. height:22px;
  7426. font-family:'PingFangSC-Thin', 'PingFang SC Thin', 'PingFang SC';
  7427. font-weight:200;
  7428. font-style:normal;
  7429. font-size:16px;
  7430. color:#FFFFFF;
  7431. text-align:center;
  7432. }
  7433. #u516 {
  7434. position:absolute;
  7435. left:0px;
  7436. top:0px;
  7437. width:84px;
  7438. word-wrap:break-word;
  7439. }
  7440. #u517 {
  7441. position:absolute;
  7442. left:0px;
  7443. top:0px;
  7444. width:0px;
  7445. height:0px;
  7446. }
  7447. #u518_div {
  7448. position:absolute;
  7449. left:0px;
  7450. top:0px;
  7451. width:126px;
  7452. height:18px;
  7453. background:inherit;
  7454. background-color:rgba(255, 255, 255, 0);
  7455. border:none;
  7456. border-radius:0px;
  7457. -moz-box-shadow:none;
  7458. -webkit-box-shadow:none;
  7459. box-shadow:none;
  7460. font-family:'PingFangSC-Thin', 'PingFang SC Thin', 'PingFang SC';
  7461. font-weight:200;
  7462. font-style:normal;
  7463. font-size:13px;
  7464. color:#FFFFFF;
  7465. text-align:center;
  7466. }
  7467. #u518 {
  7468. position:absolute;
  7469. left:587px;
  7470. top:1627px;
  7471. width:126px;
  7472. height:18px;
  7473. font-family:'PingFangSC-Thin', 'PingFang SC Thin', 'PingFang SC';
  7474. font-weight:200;
  7475. font-style:normal;
  7476. font-size:13px;
  7477. color:#FFFFFF;
  7478. text-align:center;
  7479. }
  7480. #u519 {
  7481. position:absolute;
  7482. left:0px;
  7483. top:0px;
  7484. width:126px;
  7485. word-wrap:break-word;
  7486. }
  7487. #u520_img {
  7488. position:absolute;
  7489. left:0px;
  7490. top:0px;
  7491. width:56px;
  7492. height:56px;
  7493. }
  7494. #u520 {
  7495. position:absolute;
  7496. left:527px;
  7497. top:1589px;
  7498. width:56px;
  7499. height:56px;
  7500. }
  7501. #u521 {
  7502. position:absolute;
  7503. left:2px;
  7504. top:20px;
  7505. width:52px;
  7506. visibility:hidden;
  7507. word-wrap:break-word;
  7508. }
  7509. #u522_img {
  7510. position:absolute;
  7511. left:0px;
  7512. top:0px;
  7513. width:18px;
  7514. height:18px;
  7515. }
  7516. #u522 {
  7517. position:absolute;
  7518. left:790px;
  7519. top:1574px;
  7520. width:18px;
  7521. height:18px;
  7522. }
  7523. #u523 {
  7524. position:absolute;
  7525. left:2px;
  7526. top:1px;
  7527. width:14px;
  7528. visibility:hidden;
  7529. word-wrap:break-word;
  7530. }
  7531. #u524_div {
  7532. position:absolute;
  7533. left:0px;
  7534. top:0px;
  7535. width:174px;
  7536. height:32px;
  7537. background:inherit;
  7538. background-color:rgba(51, 51, 51, 1);
  7539. box-sizing:border-box;
  7540. border-width:1px;
  7541. border-style:solid;
  7542. border-color:rgba(121, 121, 121, 1);
  7543. border-radius:5px;
  7544. -moz-box-shadow:none;
  7545. -webkit-box-shadow:none;
  7546. box-shadow:none;
  7547. font-family:'PingFangSC-Regular', 'PingFang SC';
  7548. font-weight:400;
  7549. font-style:normal;
  7550. color:#FFFFFF;
  7551. }
  7552. #u524 {
  7553. position:absolute;
  7554. left:1362px;
  7555. top:727px;
  7556. width:174px;
  7557. height:32px;
  7558. font-family:'PingFangSC-Regular', 'PingFang SC';
  7559. font-weight:400;
  7560. font-style:normal;
  7561. color:#FFFFFF;
  7562. }
  7563. #u525 {
  7564. position:absolute;
  7565. left:2px;
  7566. top:7px;
  7567. width:170px;
  7568. word-wrap:break-word;
  7569. }
  7570. #u526_div {
  7571. position:absolute;
  7572. left:0px;
  7573. top:0px;
  7574. width:300px;
  7575. height:83px;
  7576. background:inherit;
  7577. background-color:rgba(0, 0, 0, 1);
  7578. border:none;
  7579. border-bottom:0px;
  7580. border-radius:5px;
  7581. border-bottom-right-radius:0px;
  7582. border-bottom-left-radius:0px;
  7583. -moz-box-shadow:none;
  7584. -webkit-box-shadow:none;
  7585. box-shadow:none;
  7586. }
  7587. #u526 {
  7588. position:absolute;
  7589. left:961px;
  7590. top:147px;
  7591. width:300px;
  7592. height:83px;
  7593. }
  7594. #u527 {
  7595. position:absolute;
  7596. left:2px;
  7597. top:34px;
  7598. width:296px;
  7599. visibility:hidden;
  7600. word-wrap:break-word;
  7601. }
  7602. #u528_div {
  7603. position:absolute;
  7604. left:0px;
  7605. top:0px;
  7606. width:139px;
  7607. height:25px;
  7608. background:inherit;
  7609. background-color:rgba(255, 255, 255, 0);
  7610. border:none;
  7611. border-radius:0px;
  7612. -moz-box-shadow:none;
  7613. -webkit-box-shadow:none;
  7614. box-shadow:none;
  7615. color:#FFFFFF;
  7616. }
  7617. #u528 {
  7618. position:absolute;
  7619. left:1042px;
  7620. top:176px;
  7621. width:139px;
  7622. height:25px;
  7623. color:#FFFFFF;
  7624. }
  7625. #u529 {
  7626. position:absolute;
  7627. left:0px;
  7628. top:0px;
  7629. width:139px;
  7630. white-space:nowrap;
  7631. }
  7632. #u530 {
  7633. position:absolute;
  7634. left:413px;
  7635. top:628px;
  7636. width:0px;
  7637. height:0px;
  7638. }
  7639. #u530_seg0 {
  7640. position:absolute;
  7641. left:0px;
  7642. top:-4px;
  7643. width:77px;
  7644. height:8px;
  7645. }
  7646. #u530_seg1 {
  7647. position:absolute;
  7648. left:69px;
  7649. top:-263px;
  7650. width:8px;
  7651. height:267px;
  7652. }
  7653. #u530_seg2 {
  7654. position:absolute;
  7655. left:69px;
  7656. top:-263px;
  7657. width:52px;
  7658. height:8px;
  7659. }
  7660. #u530_seg3 {
  7661. position:absolute;
  7662. left:106px;
  7663. top:-269px;
  7664. width:20px;
  7665. height:20px;
  7666. }
  7667. #u531 {
  7668. position:absolute;
  7669. left:23px;
  7670. top:-125px;
  7671. width:100px;
  7672. visibility:hidden;
  7673. word-wrap:break-word;
  7674. }
  7675. #u532 {
  7676. position:absolute;
  7677. left:854px;
  7678. top:369px;
  7679. width:0px;
  7680. height:0px;
  7681. }
  7682. #u532_seg0 {
  7683. position:absolute;
  7684. left:0px;
  7685. top:-4px;
  7686. width:90px;
  7687. height:8px;
  7688. }
  7689. #u532_seg1 {
  7690. position:absolute;
  7691. left:82px;
  7692. top:-8px;
  7693. width:8px;
  7694. height:12px;
  7695. }
  7696. #u532_seg2 {
  7697. position:absolute;
  7698. left:82px;
  7699. top:-8px;
  7700. width:23px;
  7701. height:8px;
  7702. }
  7703. #u532_seg3 {
  7704. position:absolute;
  7705. left:90px;
  7706. top:-14px;
  7707. width:20px;
  7708. height:20px;
  7709. }
  7710. #u533 {
  7711. position:absolute;
  7712. left:4px;
  7713. top:-8px;
  7714. width:100px;
  7715. visibility:hidden;
  7716. word-wrap:break-word;
  7717. }
  7718. #u534 {
  7719. position:absolute;
  7720. left:1270px;
  7721. top:407px;
  7722. width:0px;
  7723. height:0px;
  7724. }
  7725. #u534_seg0 {
  7726. position:absolute;
  7727. left:0px;
  7728. top:-4px;
  7729. width:84px;
  7730. height:8px;
  7731. }
  7732. #u534_seg1 {
  7733. position:absolute;
  7734. left:76px;
  7735. top:-34px;
  7736. width:8px;
  7737. height:38px;
  7738. }
  7739. #u534_seg2 {
  7740. position:absolute;
  7741. left:76px;
  7742. top:-34px;
  7743. width:15px;
  7744. height:8px;
  7745. }
  7746. #u534_seg3 {
  7747. position:absolute;
  7748. left:76px;
  7749. top:-40px;
  7750. width:20px;
  7751. height:20px;
  7752. }
  7753. #u535 {
  7754. position:absolute;
  7755. left:10px;
  7756. top:-8px;
  7757. width:100px;
  7758. visibility:hidden;
  7759. word-wrap:break-word;
  7760. }
  7761. #u536 {
  7762. position:absolute;
  7763. left:0px;
  7764. top:0px;
  7765. width:0px;
  7766. height:0px;
  7767. }
  7768. #u537_div {
  7769. position:absolute;
  7770. left:0px;
  7771. top:0px;
  7772. width:320px;
  7773. height:1249px;
  7774. background:inherit;
  7775. background-color:rgba(242, 242, 242, 1);
  7776. box-sizing:border-box;
  7777. border-width:1px;
  7778. border-style:solid;
  7779. border-color:rgba(0, 0, 0, 1);
  7780. border-radius:0px;
  7781. -moz-box-shadow:none;
  7782. -webkit-box-shadow:none;
  7783. box-shadow:none;
  7784. font-family:'PingFangSC-Regular', 'PingFang SC';
  7785. font-weight:400;
  7786. font-style:normal;
  7787. font-size:12px;
  7788. color:#000000;
  7789. }
  7790. #u537 {
  7791. position:absolute;
  7792. left:1402px;
  7793. top:1480px;
  7794. width:320px;
  7795. height:1249px;
  7796. font-family:'PingFangSC-Regular', 'PingFang SC';
  7797. font-weight:400;
  7798. font-style:normal;
  7799. font-size:12px;
  7800. color:#000000;
  7801. }
  7802. #u538 {
  7803. position:absolute;
  7804. left:2px;
  7805. top:616px;
  7806. width:316px;
  7807. visibility:hidden;
  7808. word-wrap:break-word;
  7809. }
  7810. #u539 {
  7811. position:absolute;
  7812. left:0px;
  7813. top:0px;
  7814. width:0px;
  7815. height:0px;
  7816. }
  7817. #u540_div {
  7818. position:absolute;
  7819. left:0px;
  7820. top:0px;
  7821. width:318px;
  7822. height:22px;
  7823. background:inherit;
  7824. background-color:rgba(255, 255, 255, 1);
  7825. border:none;
  7826. border-radius:0px;
  7827. -moz-box-shadow:none;
  7828. -webkit-box-shadow:none;
  7829. box-shadow:none;
  7830. }
  7831. #u540 {
  7832. position:absolute;
  7833. left:1403px;
  7834. top:1481px;
  7835. width:318px;
  7836. height:22px;
  7837. }
  7838. #u541 {
  7839. position:absolute;
  7840. left:2px;
  7841. top:3px;
  7842. width:314px;
  7843. visibility:hidden;
  7844. word-wrap:break-word;
  7845. }
  7846. #u542_img {
  7847. position:absolute;
  7848. left:0px;
  7849. top:0px;
  7850. width:318px;
  7851. height:22px;
  7852. }
  7853. #u542 {
  7854. position:absolute;
  7855. left:1403px;
  7856. top:1481px;
  7857. width:318px;
  7858. height:22px;
  7859. }
  7860. #u543 {
  7861. position:absolute;
  7862. left:2px;
  7863. top:3px;
  7864. width:314px;
  7865. visibility:hidden;
  7866. word-wrap:break-word;
  7867. }
  7868. #u544 {
  7869. position:absolute;
  7870. left:0px;
  7871. top:0px;
  7872. width:0px;
  7873. height:0px;
  7874. }
  7875. #u545_div {
  7876. position:absolute;
  7877. left:0px;
  7878. top:0px;
  7879. width:318px;
  7880. height:40px;
  7881. background:inherit;
  7882. background-color:rgba(255, 255, 255, 1);
  7883. box-sizing:border-box;
  7884. border-width:1px;
  7885. border-style:solid;
  7886. border-color:rgba(228, 228, 228, 1);
  7887. border-left:0px;
  7888. border-top:0px;
  7889. border-right:0px;
  7890. border-radius:0px;
  7891. border-top-left-radius:0px;
  7892. border-top-right-radius:0px;
  7893. border-bottom-right-radius:0px;
  7894. border-bottom-left-radius:0px;
  7895. -moz-box-shadow:none;
  7896. -webkit-box-shadow:none;
  7897. box-shadow:none;
  7898. font-family:'PingFangSC-Regular', 'PingFang SC';
  7899. font-weight:400;
  7900. font-style:normal;
  7901. font-size:14px;
  7902. text-align:left;
  7903. }
  7904. #u545 {
  7905. position:absolute;
  7906. left:1403px;
  7907. top:1498px;
  7908. width:318px;
  7909. height:40px;
  7910. font-family:'PingFangSC-Regular', 'PingFang SC';
  7911. font-weight:400;
  7912. font-style:normal;
  7913. font-size:14px;
  7914. text-align:left;
  7915. }
  7916. #u546 {
  7917. position:absolute;
  7918. left:0px;
  7919. top:10px;
  7920. width:318px;
  7921. word-wrap:break-word;
  7922. }
  7923. #u547_img {
  7924. position:absolute;
  7925. left:0px;
  7926. top:0px;
  7927. width:10px;
  7928. height:16px;
  7929. }
  7930. #u547 {
  7931. position:absolute;
  7932. left:1413px;
  7933. top:1510px;
  7934. width:10px;
  7935. height:16px;
  7936. }
  7937. #u548 {
  7938. position:absolute;
  7939. left:2px;
  7940. top:0px;
  7941. width:6px;
  7942. visibility:hidden;
  7943. word-wrap:break-word;
  7944. }
  7945. #u549_div {
  7946. position:absolute;
  7947. left:0px;
  7948. top:0px;
  7949. width:105px;
  7950. height:25px;
  7951. background:inherit;
  7952. background-color:rgba(255, 255, 255, 0);
  7953. border:none;
  7954. border-radius:0px;
  7955. -moz-box-shadow:none;
  7956. -webkit-box-shadow:none;
  7957. box-shadow:none;
  7958. font-family:'PingFangSC-Semibold', 'PingFang SC Semibold', 'PingFang SC';
  7959. font-weight:650;
  7960. font-style:normal;
  7961. }
  7962. #u549 {
  7963. position:absolute;
  7964. left:1404px;
  7965. top:1433px;
  7966. width:105px;
  7967. height:25px;
  7968. font-family:'PingFangSC-Semibold', 'PingFang SC Semibold', 'PingFang SC';
  7969. font-weight:650;
  7970. font-style:normal;
  7971. }
  7972. #u550 {
  7973. position:absolute;
  7974. left:0px;
  7975. top:0px;
  7976. width:105px;
  7977. white-space:nowrap;
  7978. }
  7979. #u551_div {
  7980. position:absolute;
  7981. left:0px;
  7982. top:0px;
  7983. width:318px;
  7984. height:1191px;
  7985. background:inherit;
  7986. background-color:rgba(255, 255, 255, 1);
  7987. box-sizing:border-box;
  7988. border-width:1px;
  7989. border-style:solid;
  7990. border-color:rgba(242, 242, 242, 1);
  7991. border-radius:0px;
  7992. -moz-box-shadow:none;
  7993. -webkit-box-shadow:none;
  7994. box-shadow:none;
  7995. }
  7996. #u551 {
  7997. position:absolute;
  7998. left:1403px;
  7999. top:1538px;
  8000. width:318px;
  8001. height:1191px;
  8002. }
  8003. #u552 {
  8004. position:absolute;
  8005. left:2px;
  8006. top:588px;
  8007. width:314px;
  8008. visibility:hidden;
  8009. word-wrap:break-word;
  8010. }
  8011. #u553_div {
  8012. position:absolute;
  8013. left:0px;
  8014. top:0px;
  8015. width:270px;
  8016. height:41px;
  8017. background:inherit;
  8018. background-color:rgba(0, 0, 0, 1);
  8019. box-sizing:border-box;
  8020. border-width:1px;
  8021. border-style:solid;
  8022. border-color:rgba(121, 121, 121, 1);
  8023. border-radius:160px;
  8024. -moz-box-shadow:none;
  8025. -webkit-box-shadow:none;
  8026. box-shadow:none;
  8027. font-family:'PingFangSC-Regular', 'PingFang SC';
  8028. font-weight:400;
  8029. font-style:normal;
  8030. color:#FFFFFF;
  8031. }
  8032. #u553 {
  8033. position:absolute;
  8034. left:1432px;
  8035. top:2678px;
  8036. width:270px;
  8037. height:41px;
  8038. font-family:'PingFangSC-Regular', 'PingFang SC';
  8039. font-weight:400;
  8040. font-style:normal;
  8041. color:#FFFFFF;
  8042. }
  8043. #u554 {
  8044. position:absolute;
  8045. left:2px;
  8046. top:12px;
  8047. width:266px;
  8048. word-wrap:break-word;
  8049. }
  8050. #u555_div {
  8051. position:absolute;
  8052. left:0px;
  8053. top:0px;
  8054. width:307px;
  8055. height:170px;
  8056. background:inherit;
  8057. background-color:rgba(51, 51, 51, 1);
  8058. box-sizing:border-box;
  8059. border-width:1px;
  8060. border-style:solid;
  8061. border-color:rgba(121, 121, 121, 1);
  8062. border-radius:5px;
  8063. -moz-box-shadow:none;
  8064. -webkit-box-shadow:none;
  8065. box-shadow:none;
  8066. font-size:18px;
  8067. color:#FFFFFF;
  8068. }
  8069. #u555 {
  8070. position:absolute;
  8071. left:1409px;
  8072. top:1544px;
  8073. width:307px;
  8074. height:170px;
  8075. font-size:18px;
  8076. color:#FFFFFF;
  8077. }
  8078. #u556 {
  8079. position:absolute;
  8080. left:2px;
  8081. top:77px;
  8082. width:303px;
  8083. visibility:hidden;
  8084. word-wrap:break-word;
  8085. }
  8086. #u557 {
  8087. position:absolute;
  8088. left:0px;
  8089. top:0px;
  8090. width:0px;
  8091. height:0px;
  8092. }
  8093. #u558_div {
  8094. position:absolute;
  8095. left:0px;
  8096. top:0px;
  8097. width:320px;
  8098. height:582px;
  8099. background:inherit;
  8100. background-color:rgba(242, 242, 242, 1);
  8101. box-sizing:border-box;
  8102. border-width:1px;
  8103. border-style:solid;
  8104. border-color:rgba(0, 0, 0, 1);
  8105. border-radius:0px;
  8106. -moz-box-shadow:none;
  8107. -webkit-box-shadow:none;
  8108. box-shadow:none;
  8109. font-family:'PingFangSC-Regular', 'PingFang SC';
  8110. font-weight:400;
  8111. font-style:normal;
  8112. font-size:12px;
  8113. color:#000000;
  8114. }
  8115. #u558 {
  8116. position:absolute;
  8117. left:1803px;
  8118. top:1480px;
  8119. width:320px;
  8120. height:582px;
  8121. font-family:'PingFangSC-Regular', 'PingFang SC';
  8122. font-weight:400;
  8123. font-style:normal;
  8124. font-size:12px;
  8125. color:#000000;
  8126. }
  8127. #u559 {
  8128. position:absolute;
  8129. left:2px;
  8130. top:283px;
  8131. width:316px;
  8132. visibility:hidden;
  8133. word-wrap:break-word;
  8134. }
  8135. #u560 {
  8136. position:absolute;
  8137. left:0px;
  8138. top:0px;
  8139. width:0px;
  8140. height:0px;
  8141. }
  8142. #u561_div {
  8143. position:absolute;
  8144. left:0px;
  8145. top:0px;
  8146. width:318px;
  8147. height:17px;
  8148. background:inherit;
  8149. background-color:rgba(255, 255, 255, 1);
  8150. border:none;
  8151. border-radius:0px;
  8152. -moz-box-shadow:none;
  8153. -webkit-box-shadow:none;
  8154. box-shadow:none;
  8155. }
  8156. #u561 {
  8157. position:absolute;
  8158. left:1804px;
  8159. top:1481px;
  8160. width:318px;
  8161. height:17px;
  8162. }
  8163. #u562 {
  8164. position:absolute;
  8165. left:2px;
  8166. top:0px;
  8167. width:314px;
  8168. visibility:hidden;
  8169. word-wrap:break-word;
  8170. }
  8171. #u563_img {
  8172. position:absolute;
  8173. left:0px;
  8174. top:0px;
  8175. width:318px;
  8176. height:17px;
  8177. }
  8178. #u563 {
  8179. position:absolute;
  8180. left:1804px;
  8181. top:1481px;
  8182. width:318px;
  8183. height:17px;
  8184. }
  8185. #u564 {
  8186. position:absolute;
  8187. left:2px;
  8188. top:0px;
  8189. width:314px;
  8190. visibility:hidden;
  8191. word-wrap:break-word;
  8192. }
  8193. #u565 {
  8194. position:absolute;
  8195. left:0px;
  8196. top:0px;
  8197. width:0px;
  8198. height:0px;
  8199. }
  8200. #u566_div {
  8201. position:absolute;
  8202. left:0px;
  8203. top:0px;
  8204. width:318px;
  8205. height:40px;
  8206. background:inherit;
  8207. background-color:rgba(255, 255, 255, 1);
  8208. box-sizing:border-box;
  8209. border-width:1px;
  8210. border-style:solid;
  8211. border-color:rgba(228, 228, 228, 1);
  8212. border-left:0px;
  8213. border-top:0px;
  8214. border-right:0px;
  8215. border-radius:0px;
  8216. border-top-left-radius:0px;
  8217. border-top-right-radius:0px;
  8218. border-bottom-right-radius:0px;
  8219. border-bottom-left-radius:0px;
  8220. -moz-box-shadow:none;
  8221. -webkit-box-shadow:none;
  8222. box-shadow:none;
  8223. font-family:'PingFangSC-Regular', 'PingFang SC';
  8224. font-weight:400;
  8225. font-style:normal;
  8226. font-size:14px;
  8227. text-align:left;
  8228. }
  8229. #u566 {
  8230. position:absolute;
  8231. left:1804px;
  8232. top:1498px;
  8233. width:318px;
  8234. height:40px;
  8235. font-family:'PingFangSC-Regular', 'PingFang SC';
  8236. font-weight:400;
  8237. font-style:normal;
  8238. font-size:14px;
  8239. text-align:left;
  8240. }
  8241. #u567 {
  8242. position:absolute;
  8243. left:0px;
  8244. top:10px;
  8245. width:318px;
  8246. word-wrap:break-word;
  8247. }
  8248. #u568_img {
  8249. position:absolute;
  8250. left:0px;
  8251. top:0px;
  8252. width:10px;
  8253. height:16px;
  8254. }
  8255. #u568 {
  8256. position:absolute;
  8257. left:1814px;
  8258. top:1510px;
  8259. width:10px;
  8260. height:16px;
  8261. }
  8262. #u569 {
  8263. position:absolute;
  8264. left:2px;
  8265. top:0px;
  8266. width:6px;
  8267. visibility:hidden;
  8268. word-wrap:break-word;
  8269. }
  8270. #u570_div {
  8271. position:absolute;
  8272. left:0px;
  8273. top:0px;
  8274. width:37px;
  8275. height:25px;
  8276. background:inherit;
  8277. background-color:rgba(255, 255, 255, 0);
  8278. border:none;
  8279. border-radius:0px;
  8280. -moz-box-shadow:none;
  8281. -webkit-box-shadow:none;
  8282. box-shadow:none;
  8283. font-family:'PingFangSC-Semibold', 'PingFang SC Semibold', 'PingFang SC';
  8284. font-weight:650;
  8285. font-style:normal;
  8286. }
  8287. #u570 {
  8288. position:absolute;
  8289. left:1805px;
  8290. top:1433px;
  8291. width:37px;
  8292. height:25px;
  8293. font-family:'PingFangSC-Semibold', 'PingFang SC Semibold', 'PingFang SC';
  8294. font-weight:650;
  8295. font-style:normal;
  8296. }
  8297. #u571 {
  8298. position:absolute;
  8299. left:0px;
  8300. top:0px;
  8301. width:37px;
  8302. white-space:nowrap;
  8303. }
  8304. #u572_div {
  8305. position:absolute;
  8306. left:0px;
  8307. top:0px;
  8308. width:318px;
  8309. height:524px;
  8310. background:inherit;
  8311. background-color:rgba(255, 255, 255, 1);
  8312. border:none;
  8313. border-radius:0px;
  8314. -moz-box-shadow:none;
  8315. -webkit-box-shadow:none;
  8316. box-shadow:none;
  8317. }
  8318. #u572 {
  8319. position:absolute;
  8320. left:1804px;
  8321. top:1538px;
  8322. width:318px;
  8323. height:524px;
  8324. }
  8325. #u573 {
  8326. position:absolute;
  8327. left:2px;
  8328. top:254px;
  8329. width:314px;
  8330. visibility:hidden;
  8331. word-wrap:break-word;
  8332. }
  8333. #u574_div {
  8334. position:absolute;
  8335. left:0px;
  8336. top:0px;
  8337. width:73px;
  8338. height:17px;
  8339. background:inherit;
  8340. background-color:rgba(255, 255, 255, 0);
  8341. border:none;
  8342. border-radius:0px;
  8343. -moz-box-shadow:none;
  8344. -webkit-box-shadow:none;
  8345. box-shadow:none;
  8346. font-size:12px;
  8347. }
  8348. #u574 {
  8349. position:absolute;
  8350. left:1811px;
  8351. top:1721px;
  8352. width:73px;
  8353. height:17px;
  8354. font-size:12px;
  8355. }
  8356. #u575 {
  8357. position:absolute;
  8358. left:0px;
  8359. top:0px;
  8360. width:73px;
  8361. white-space:nowrap;
  8362. }
  8363. #u576 {
  8364. position:absolute;
  8365. left:0px;
  8366. top:0px;
  8367. width:0px;
  8368. height:0px;
  8369. }
  8370. #u577_div {
  8371. position:absolute;
  8372. left:0px;
  8373. top:0px;
  8374. width:304px;
  8375. height:36px;
  8376. background:inherit;
  8377. background-color:rgba(255, 255, 255, 1);
  8378. box-sizing:border-box;
  8379. border-width:1px;
  8380. border-style:solid;
  8381. border-color:rgba(209, 23, 26, 1);
  8382. border-radius:4px;
  8383. -moz-box-shadow:none;
  8384. -webkit-box-shadow:none;
  8385. box-shadow:none;
  8386. }
  8387. #u577 {
  8388. position:absolute;
  8389. left:1811px;
  8390. top:1748px;
  8391. width:304px;
  8392. height:36px;
  8393. }
  8394. #u578 {
  8395. position:absolute;
  8396. left:2px;
  8397. top:10px;
  8398. width:300px;
  8399. visibility:hidden;
  8400. word-wrap:break-word;
  8401. }
  8402. #u579_div {
  8403. position:absolute;
  8404. left:0px;
  8405. top:0px;
  8406. width:18px;
  8407. height:16px;
  8408. background:inherit;
  8409. background-color:rgba(255, 255, 255, 0);
  8410. border:none;
  8411. border-radius:0px;
  8412. -moz-box-shadow:none;
  8413. -webkit-box-shadow:none;
  8414. box-shadow:none;
  8415. font-size:11px;
  8416. color:#666666;
  8417. }
  8418. #u579 {
  8419. position:absolute;
  8420. left:1853px;
  8421. top:1758px;
  8422. width:18px;
  8423. height:16px;
  8424. font-size:11px;
  8425. color:#666666;
  8426. }
  8427. #u580 {
  8428. position:absolute;
  8429. left:0px;
  8430. top:0px;
  8431. width:18px;
  8432. white-space:nowrap;
  8433. }
  8434. #u581_img {
  8435. position:absolute;
  8436. left:0px;
  8437. top:0px;
  8438. width:2px;
  8439. height:17px;
  8440. }
  8441. #u581 {
  8442. position:absolute;
  8443. left:1932px;
  8444. top:1758px;
  8445. width:1px;
  8446. height:16px;
  8447. }
  8448. #u582 {
  8449. position:absolute;
  8450. left:2px;
  8451. top:0px;
  8452. width:1px;
  8453. visibility:hidden;
  8454. word-wrap:break-word;
  8455. }
  8456. #u583_div {
  8457. position:absolute;
  8458. left:0px;
  8459. top:0px;
  8460. width:25px;
  8461. height:12px;
  8462. background:inherit;
  8463. background-color:rgba(255, 255, 255, 0);
  8464. border:none;
  8465. border-radius:0px;
  8466. -moz-box-shadow:none;
  8467. -webkit-box-shadow:none;
  8468. box-shadow:none;
  8469. font-size:11px;
  8470. color:#666666;
  8471. }
  8472. #u583 {
  8473. position:absolute;
  8474. left:1974px;
  8475. top:1760px;
  8476. width:25px;
  8477. height:12px;
  8478. font-size:11px;
  8479. color:#666666;
  8480. }
  8481. #u584 {
  8482. position:absolute;
  8483. left:0px;
  8484. top:0px;
  8485. width:25px;
  8486. white-space:nowrap;
  8487. }
  8488. #u585_div {
  8489. position:absolute;
  8490. left:0px;
  8491. top:0px;
  8492. width:21px;
  8493. height:10px;
  8494. background:inherit;
  8495. background-color:rgba(255, 255, 255, 0);
  8496. border:none;
  8497. border-radius:0px;
  8498. -moz-box-shadow:none;
  8499. -webkit-box-shadow:none;
  8500. box-shadow:none;
  8501. font-size:9px;
  8502. color:#999999;
  8503. }
  8504. #u585 {
  8505. position:absolute;
  8506. left:2009px;
  8507. top:1761px;
  8508. width:21px;
  8509. height:10px;
  8510. font-size:9px;
  8511. color:#999999;
  8512. }
  8513. #u586 {
  8514. position:absolute;
  8515. left:0px;
  8516. top:0px;
  8517. width:21px;
  8518. white-space:nowrap;
  8519. }
  8520. #u587_img {
  8521. position:absolute;
  8522. left:0px;
  8523. top:0px;
  8524. width:22px;
  8525. height:2px;
  8526. }
  8527. #u587 {
  8528. position:absolute;
  8529. left:2009px;
  8530. top:1766px;
  8531. width:21px;
  8532. height:1px;
  8533. }
  8534. #u588 {
  8535. position:absolute;
  8536. left:2px;
  8537. top:-8px;
  8538. width:17px;
  8539. visibility:hidden;
  8540. word-wrap:break-word;
  8541. }
  8542. #u589_div {
  8543. position:absolute;
  8544. left:0px;
  8545. top:0px;
  8546. width:22px;
  8547. height:12px;
  8548. background:inherit;
  8549. background-color:rgba(255, 0, 0, 1);
  8550. border:none;
  8551. border-radius:0px;
  8552. -moz-box-shadow:none;
  8553. -webkit-box-shadow:none;
  8554. box-shadow:none;
  8555. font-size:7px;
  8556. }
  8557. #u589 {
  8558. position:absolute;
  8559. left:1874px;
  8560. top:1760px;
  8561. width:22px;
  8562. height:12px;
  8563. font-size:7px;
  8564. }
  8565. #u590 {
  8566. position:absolute;
  8567. left:2px;
  8568. top:2px;
  8569. width:18px;
  8570. word-wrap:break-word;
  8571. }
  8572. #u591 {
  8573. position:absolute;
  8574. left:0px;
  8575. top:0px;
  8576. width:0px;
  8577. height:0px;
  8578. }
  8579. #u592_div {
  8580. position:absolute;
  8581. left:0px;
  8582. top:0px;
  8583. width:304px;
  8584. height:36px;
  8585. background:inherit;
  8586. background-color:rgba(255, 255, 255, 1);
  8587. box-sizing:border-box;
  8588. border-width:1px;
  8589. border-style:solid;
  8590. border-color:rgba(215, 215, 215, 1);
  8591. border-radius:4px;
  8592. -moz-box-shadow:none;
  8593. -webkit-box-shadow:none;
  8594. box-shadow:none;
  8595. }
  8596. #u592 {
  8597. position:absolute;
  8598. left:1811px;
  8599. top:1789px;
  8600. width:304px;
  8601. height:36px;
  8602. }
  8603. #u593 {
  8604. position:absolute;
  8605. left:2px;
  8606. top:10px;
  8607. width:300px;
  8608. visibility:hidden;
  8609. word-wrap:break-word;
  8610. }
  8611. #u594_div {
  8612. position:absolute;
  8613. left:0px;
  8614. top:0px;
  8615. width:29px;
  8616. height:16px;
  8617. background:inherit;
  8618. background-color:rgba(255, 255, 255, 0);
  8619. border:none;
  8620. border-radius:0px;
  8621. -moz-box-shadow:none;
  8622. -webkit-box-shadow:none;
  8623. box-shadow:none;
  8624. font-size:11px;
  8625. color:#666666;
  8626. }
  8627. #u594 {
  8628. position:absolute;
  8629. left:1853px;
  8630. top:1799px;
  8631. width:29px;
  8632. height:16px;
  8633. font-size:11px;
  8634. color:#666666;
  8635. }
  8636. #u595 {
  8637. position:absolute;
  8638. left:0px;
  8639. top:0px;
  8640. width:29px;
  8641. white-space:nowrap;
  8642. }
  8643. #u596_img {
  8644. position:absolute;
  8645. left:0px;
  8646. top:0px;
  8647. width:2px;
  8648. height:17px;
  8649. }
  8650. #u596 {
  8651. position:absolute;
  8652. left:1932px;
  8653. top:1799px;
  8654. width:1px;
  8655. height:16px;
  8656. }
  8657. #u597 {
  8658. position:absolute;
  8659. left:2px;
  8660. top:0px;
  8661. width:1px;
  8662. visibility:hidden;
  8663. word-wrap:break-word;
  8664. }
  8665. #u598_div {
  8666. position:absolute;
  8667. left:0px;
  8668. top:0px;
  8669. width:25px;
  8670. height:12px;
  8671. background:inherit;
  8672. background-color:rgba(255, 255, 255, 0);
  8673. border:none;
  8674. border-radius:0px;
  8675. -moz-box-shadow:none;
  8676. -webkit-box-shadow:none;
  8677. box-shadow:none;
  8678. font-size:11px;
  8679. color:#666666;
  8680. }
  8681. #u598 {
  8682. position:absolute;
  8683. left:1974px;
  8684. top:1801px;
  8685. width:25px;
  8686. height:12px;
  8687. font-size:11px;
  8688. color:#666666;
  8689. }
  8690. #u599 {
  8691. position:absolute;
  8692. left:0px;
  8693. top:0px;
  8694. width:25px;
  8695. white-space:nowrap;
  8696. }
  8697. #u600_div {
  8698. position:absolute;
  8699. left:0px;
  8700. top:0px;
  8701. width:21px;
  8702. height:10px;
  8703. background:inherit;
  8704. background-color:rgba(255, 255, 255, 0);
  8705. border:none;
  8706. border-radius:0px;
  8707. -moz-box-shadow:none;
  8708. -webkit-box-shadow:none;
  8709. box-shadow:none;
  8710. font-size:9px;
  8711. color:#999999;
  8712. }
  8713. #u600 {
  8714. position:absolute;
  8715. left:2009px;
  8716. top:1802px;
  8717. width:21px;
  8718. height:10px;
  8719. font-size:9px;
  8720. color:#999999;
  8721. }
  8722. #u601 {
  8723. position:absolute;
  8724. left:0px;
  8725. top:0px;
  8726. width:21px;
  8727. white-space:nowrap;
  8728. }
  8729. #u602_img {
  8730. position:absolute;
  8731. left:0px;
  8732. top:0px;
  8733. width:22px;
  8734. height:2px;
  8735. }
  8736. #u602 {
  8737. position:absolute;
  8738. left:2009px;
  8739. top:1807px;
  8740. width:21px;
  8741. height:1px;
  8742. }
  8743. #u603 {
  8744. position:absolute;
  8745. left:2px;
  8746. top:-8px;
  8747. width:17px;
  8748. visibility:hidden;
  8749. word-wrap:break-word;
  8750. }
  8751. #u604 {
  8752. position:absolute;
  8753. left:0px;
  8754. top:0px;
  8755. width:0px;
  8756. height:0px;
  8757. }
  8758. #u605_div {
  8759. position:absolute;
  8760. left:0px;
  8761. top:0px;
  8762. width:304px;
  8763. height:36px;
  8764. background:inherit;
  8765. background-color:rgba(255, 255, 255, 1);
  8766. box-sizing:border-box;
  8767. border-width:1px;
  8768. border-style:solid;
  8769. border-color:rgba(215, 215, 215, 1);
  8770. border-radius:4px;
  8771. -moz-box-shadow:none;
  8772. -webkit-box-shadow:none;
  8773. box-shadow:none;
  8774. }
  8775. #u605 {
  8776. position:absolute;
  8777. left:1811px;
  8778. top:1830px;
  8779. width:304px;
  8780. height:36px;
  8781. }
  8782. #u606 {
  8783. position:absolute;
  8784. left:2px;
  8785. top:10px;
  8786. width:300px;
  8787. visibility:hidden;
  8788. word-wrap:break-word;
  8789. }
  8790. #u607_div {
  8791. position:absolute;
  8792. left:0px;
  8793. top:0px;
  8794. width:29px;
  8795. height:16px;
  8796. background:inherit;
  8797. background-color:rgba(255, 255, 255, 0);
  8798. border:none;
  8799. border-radius:0px;
  8800. -moz-box-shadow:none;
  8801. -webkit-box-shadow:none;
  8802. box-shadow:none;
  8803. font-size:11px;
  8804. color:#666666;
  8805. }
  8806. #u607 {
  8807. position:absolute;
  8808. left:1853px;
  8809. top:1840px;
  8810. width:29px;
  8811. height:16px;
  8812. font-size:11px;
  8813. color:#666666;
  8814. }
  8815. #u608 {
  8816. position:absolute;
  8817. left:0px;
  8818. top:0px;
  8819. width:29px;
  8820. white-space:nowrap;
  8821. }
  8822. #u609_img {
  8823. position:absolute;
  8824. left:0px;
  8825. top:0px;
  8826. width:2px;
  8827. height:17px;
  8828. }
  8829. #u609 {
  8830. position:absolute;
  8831. left:1932px;
  8832. top:1840px;
  8833. width:1px;
  8834. height:16px;
  8835. }
  8836. #u610 {
  8837. position:absolute;
  8838. left:2px;
  8839. top:0px;
  8840. width:1px;
  8841. visibility:hidden;
  8842. word-wrap:break-word;
  8843. }
  8844. #u611_div {
  8845. position:absolute;
  8846. left:0px;
  8847. top:0px;
  8848. width:19px;
  8849. height:12px;
  8850. background:inherit;
  8851. background-color:rgba(255, 255, 255, 0);
  8852. border:none;
  8853. border-radius:0px;
  8854. -moz-box-shadow:none;
  8855. -webkit-box-shadow:none;
  8856. box-shadow:none;
  8857. font-size:11px;
  8858. color:#666666;
  8859. }
  8860. #u611 {
  8861. position:absolute;
  8862. left:1979px;
  8863. top:1842px;
  8864. width:19px;
  8865. height:12px;
  8866. font-size:11px;
  8867. color:#666666;
  8868. }
  8869. #u612 {
  8870. position:absolute;
  8871. left:0px;
  8872. top:0px;
  8873. width:19px;
  8874. white-space:nowrap;
  8875. }
  8876. #u613_div {
  8877. position:absolute;
  8878. left:0px;
  8879. top:0px;
  8880. width:145px;
  8881. height:17px;
  8882. background:inherit;
  8883. background-color:rgba(255, 255, 255, 0);
  8884. border:none;
  8885. border-radius:0px;
  8886. -moz-box-shadow:none;
  8887. -webkit-box-shadow:none;
  8888. box-shadow:none;
  8889. font-family:'PingFangSC-Regular', 'PingFang SC';
  8890. font-weight:400;
  8891. font-style:normal;
  8892. font-size:12px;
  8893. }
  8894. #u613 {
  8895. position:absolute;
  8896. left:1814px;
  8897. top:1641px;
  8898. width:145px;
  8899. height:17px;
  8900. font-family:'PingFangSC-Regular', 'PingFang SC';
  8901. font-weight:400;
  8902. font-style:normal;
  8903. font-size:12px;
  8904. }
  8905. #u614 {
  8906. position:absolute;
  8907. left:0px;
  8908. top:0px;
  8909. width:145px;
  8910. white-space:nowrap;
  8911. }
  8912. #u615_div {
  8913. position:absolute;
  8914. left:0px;
  8915. top:0px;
  8916. width:304px;
  8917. height:36px;
  8918. background:inherit;
  8919. background-color:rgba(255, 255, 255, 1);
  8920. box-sizing:border-box;
  8921. border-width:1px;
  8922. border-style:solid;
  8923. border-color:rgba(215, 215, 215, 1);
  8924. border-radius:4px;
  8925. -moz-box-shadow:none;
  8926. -webkit-box-shadow:none;
  8927. box-shadow:none;
  8928. text-align:left;
  8929. }
  8930. #u615 {
  8931. position:absolute;
  8932. left:1811px;
  8933. top:1664px;
  8934. width:304px;
  8935. height:36px;
  8936. text-align:left;
  8937. }
  8938. #u616 {
  8939. position:absolute;
  8940. left:2px;
  8941. top:10px;
  8942. width:300px;
  8943. word-wrap:break-word;
  8944. }
  8945. #u617_div {
  8946. position:absolute;
  8947. left:0px;
  8948. top:0px;
  8949. width:270px;
  8950. height:41px;
  8951. background:inherit;
  8952. background-color:rgba(0, 0, 0, 1);
  8953. box-sizing:border-box;
  8954. border-width:1px;
  8955. border-style:solid;
  8956. border-color:rgba(121, 121, 121, 1);
  8957. border-radius:160px;
  8958. -moz-box-shadow:none;
  8959. -webkit-box-shadow:none;
  8960. box-shadow:none;
  8961. color:#FFFFFF;
  8962. }
  8963. #u617 {
  8964. position:absolute;
  8965. left:1828px;
  8966. top:2003px;
  8967. width:270px;
  8968. height:41px;
  8969. color:#FFFFFF;
  8970. }
  8971. #u618 {
  8972. position:absolute;
  8973. left:2px;
  8974. top:12px;
  8975. width:266px;
  8976. word-wrap:break-word;
  8977. }
  8978. #u619_div {
  8979. position:absolute;
  8980. left:0px;
  8981. top:0px;
  8982. width:33px;
  8983. height:33px;
  8984. background:inherit;
  8985. background-color:rgba(255, 255, 255, 1);
  8986. box-sizing:border-box;
  8987. border-width:1px;
  8988. border-style:solid;
  8989. border-color:rgba(121, 121, 121, 1);
  8990. border-radius:4px;
  8991. -moz-box-shadow:none;
  8992. -webkit-box-shadow:none;
  8993. box-shadow:none;
  8994. font-size:11px;
  8995. }
  8996. #u619 {
  8997. position:absolute;
  8998. left:1669px;
  8999. top:1665px;
  9000. width:33px;
  9001. height:33px;
  9002. font-size:11px;
  9003. }
  9004. #u620 {
  9005. position:absolute;
  9006. left:2px;
  9007. top:10px;
  9008. width:29px;
  9009. word-wrap:break-word;
  9010. }
  9011. #u621_img {
  9012. position:absolute;
  9013. left:0px;
  9014. top:0px;
  9015. width:170px;
  9016. height:20px;
  9017. }
  9018. #u621 {
  9019. position:absolute;
  9020. left:1477px;
  9021. top:1627px;
  9022. width:170px;
  9023. height:20px;
  9024. font-size:18px;
  9025. color:#FFFFFF;
  9026. text-align:center;
  9027. }
  9028. #u622 {
  9029. position:absolute;
  9030. left:0px;
  9031. top:0px;
  9032. width:170px;
  9033. word-wrap:break-word;
  9034. }
  9035. #u623_img {
  9036. position:absolute;
  9037. left:0px;
  9038. top:0px;
  9039. width:175px;
  9040. height:25px;
  9041. }
  9042. #u623 {
  9043. position:absolute;
  9044. left:1475px;
  9045. top:1592px;
  9046. width:175px;
  9047. height:25px;
  9048. font-size:18px;
  9049. color:#FFFFFF;
  9050. }
  9051. #u624 {
  9052. position:absolute;
  9053. left:0px;
  9054. top:0px;
  9055. width:175px;
  9056. white-space:nowrap;
  9057. }
  9058. #u625 {
  9059. position:absolute;
  9060. left:0px;
  9061. top:0px;
  9062. width:0px;
  9063. height:0px;
  9064. }
  9065. #u626_div {
  9066. position:absolute;
  9067. left:0px;
  9068. top:0px;
  9069. width:300px;
  9070. height:233px;
  9071. background:inherit;
  9072. background-color:rgba(255, 255, 255, 1);
  9073. box-sizing:border-box;
  9074. border-width:1px;
  9075. border-style:solid;
  9076. border-color:rgba(121, 121, 121, 1);
  9077. border-radius:0px;
  9078. -moz-box-shadow:none;
  9079. -webkit-box-shadow:none;
  9080. box-shadow:none;
  9081. font-family:'PingFangSC-Regular', 'PingFang SC';
  9082. font-weight:400;
  9083. font-style:normal;
  9084. color:#CCCCCC;
  9085. }
  9086. #u626 {
  9087. position:absolute;
  9088. left:1413px;
  9089. top:1732px;
  9090. width:300px;
  9091. height:233px;
  9092. font-family:'PingFangSC-Regular', 'PingFang SC';
  9093. font-weight:400;
  9094. font-style:normal;
  9095. color:#CCCCCC;
  9096. }
  9097. #u627 {
  9098. position:absolute;
  9099. left:2px;
  9100. top:108px;
  9101. width:296px;
  9102. visibility:hidden;
  9103. word-wrap:break-word;
  9104. }
  9105. #u628_div {
  9106. position:absolute;
  9107. left:0px;
  9108. top:0px;
  9109. width:145px;
  9110. height:25px;
  9111. background:inherit;
  9112. background-color:rgba(255, 255, 255, 0);
  9113. border:none;
  9114. border-radius:0px;
  9115. -moz-box-shadow:none;
  9116. -webkit-box-shadow:none;
  9117. box-shadow:none;
  9118. font-family:'PingFangSC-Semibold', 'PingFang SC Semibold', 'PingFang SC';
  9119. font-weight:650;
  9120. font-style:normal;
  9121. text-decoration:underline;
  9122. }
  9123. #u628 {
  9124. position:absolute;
  9125. left:1491px;
  9126. top:1749px;
  9127. width:145px;
  9128. height:25px;
  9129. font-family:'PingFangSC-Semibold', 'PingFang SC Semibold', 'PingFang SC';
  9130. font-weight:650;
  9131. font-style:normal;
  9132. text-decoration:underline;
  9133. }
  9134. #u629 {
  9135. position:absolute;
  9136. left:0px;
  9137. top:0px;
  9138. width:145px;
  9139. white-space:nowrap;
  9140. }
  9141. #u630_div {
  9142. position:absolute;
  9143. left:0px;
  9144. top:0px;
  9145. width:64px;
  9146. height:88px;
  9147. background:inherit;
  9148. background-color:rgba(242, 242, 242, 1);
  9149. border:none;
  9150. border-radius:0px;
  9151. -moz-box-shadow:none;
  9152. -webkit-box-shadow:none;
  9153. box-shadow:none;
  9154. font-family:'PingFangSC-Regular', 'PingFang SC';
  9155. font-weight:400;
  9156. font-style:normal;
  9157. color:#999999;
  9158. }
  9159. #u630 {
  9160. position:absolute;
  9161. left:1426px;
  9162. top:1820px;
  9163. width:64px;
  9164. height:88px;
  9165. font-family:'PingFangSC-Regular', 'PingFang SC';
  9166. font-weight:400;
  9167. font-style:normal;
  9168. color:#999999;
  9169. }
  9170. #u631 {
  9171. position:absolute;
  9172. left:2px;
  9173. top:35px;
  9174. width:60px;
  9175. word-wrap:break-word;
  9176. }
  9177. #u632_div {
  9178. position:absolute;
  9179. left:0px;
  9180. top:0px;
  9181. width:64px;
  9182. height:88px;
  9183. background:inherit;
  9184. background-color:rgba(242, 242, 242, 1);
  9185. border:none;
  9186. border-radius:0px;
  9187. -moz-box-shadow:none;
  9188. -webkit-box-shadow:none;
  9189. box-shadow:none;
  9190. font-family:'PingFangSC-Regular', 'PingFang SC';
  9191. font-weight:400;
  9192. font-style:normal;
  9193. color:#999999;
  9194. }
  9195. #u632 {
  9196. position:absolute;
  9197. left:1496px;
  9198. top:1820px;
  9199. width:64px;
  9200. height:88px;
  9201. font-family:'PingFangSC-Regular', 'PingFang SC';
  9202. font-weight:400;
  9203. font-style:normal;
  9204. color:#999999;
  9205. }
  9206. #u633 {
  9207. position:absolute;
  9208. left:2px;
  9209. top:35px;
  9210. width:60px;
  9211. word-wrap:break-word;
  9212. }
  9213. #u634_div {
  9214. position:absolute;
  9215. left:0px;
  9216. top:0px;
  9217. width:64px;
  9218. height:88px;
  9219. background:inherit;
  9220. background-color:rgba(242, 242, 242, 1);
  9221. border:none;
  9222. border-radius:0px;
  9223. -moz-box-shadow:none;
  9224. -webkit-box-shadow:none;
  9225. box-shadow:none;
  9226. font-family:'PingFangSC-Regular', 'PingFang SC';
  9227. font-weight:400;
  9228. font-style:normal;
  9229. color:#999999;
  9230. }
  9231. #u634 {
  9232. position:absolute;
  9233. left:1567px;
  9234. top:1820px;
  9235. width:64px;
  9236. height:88px;
  9237. font-family:'PingFangSC-Regular', 'PingFang SC';
  9238. font-weight:400;
  9239. font-style:normal;
  9240. color:#999999;
  9241. }
  9242. #u635 {
  9243. position:absolute;
  9244. left:2px;
  9245. top:35px;
  9246. width:60px;
  9247. word-wrap:break-word;
  9248. }
  9249. #u636_div {
  9250. position:absolute;
  9251. left:0px;
  9252. top:0px;
  9253. width:64px;
  9254. height:88px;
  9255. background:inherit;
  9256. background-color:rgba(242, 242, 242, 1);
  9257. border:none;
  9258. border-radius:0px;
  9259. -moz-box-shadow:none;
  9260. -webkit-box-shadow:none;
  9261. box-shadow:none;
  9262. font-family:'PingFangSC-Regular', 'PingFang SC';
  9263. font-weight:400;
  9264. font-style:normal;
  9265. color:#999999;
  9266. }
  9267. #u636 {
  9268. position:absolute;
  9269. left:1638px;
  9270. top:1820px;
  9271. width:64px;
  9272. height:88px;
  9273. font-family:'PingFangSC-Regular', 'PingFang SC';
  9274. font-weight:400;
  9275. font-style:normal;
  9276. color:#999999;
  9277. }
  9278. #u637 {
  9279. position:absolute;
  9280. left:2px;
  9281. top:35px;
  9282. width:60px;
  9283. word-wrap:break-word;
  9284. }
  9285. #u638_div {
  9286. position:absolute;
  9287. left:0px;
  9288. top:0px;
  9289. width:37px;
  9290. height:17px;
  9291. background:inherit;
  9292. background-color:rgba(255, 255, 255, 0);
  9293. border:none;
  9294. border-radius:0px;
  9295. -moz-box-shadow:none;
  9296. -webkit-box-shadow:none;
  9297. box-shadow:none;
  9298. font-size:12px;
  9299. }
  9300. #u638 {
  9301. position:absolute;
  9302. left:1434px;
  9303. top:1918px;
  9304. width:37px;
  9305. height:17px;
  9306. font-size:12px;
  9307. }
  9308. #u639 {
  9309. position:absolute;
  9310. left:0px;
  9311. top:0px;
  9312. width:37px;
  9313. white-space:nowrap;
  9314. }
  9315. #u640_div {
  9316. position:absolute;
  9317. left:0px;
  9318. top:0px;
  9319. width:37px;
  9320. height:17px;
  9321. background:inherit;
  9322. background-color:rgba(255, 255, 255, 0);
  9323. border:none;
  9324. border-radius:0px;
  9325. -moz-box-shadow:none;
  9326. -webkit-box-shadow:none;
  9327. box-shadow:none;
  9328. font-size:12px;
  9329. }
  9330. #u640 {
  9331. position:absolute;
  9332. left:1510px;
  9333. top:1918px;
  9334. width:37px;
  9335. height:17px;
  9336. font-size:12px;
  9337. }
  9338. #u641 {
  9339. position:absolute;
  9340. left:0px;
  9341. top:0px;
  9342. width:37px;
  9343. white-space:nowrap;
  9344. }
  9345. #u642_div {
  9346. position:absolute;
  9347. left:0px;
  9348. top:0px;
  9349. width:25px;
  9350. height:17px;
  9351. background:inherit;
  9352. background-color:rgba(255, 255, 255, 0);
  9353. border:none;
  9354. border-radius:0px;
  9355. -moz-box-shadow:none;
  9356. -webkit-box-shadow:none;
  9357. box-shadow:none;
  9358. font-family:'PingFangSC-Regular', 'PingFang SC';
  9359. font-weight:400;
  9360. font-style:normal;
  9361. font-size:12px;
  9362. }
  9363. #u642 {
  9364. position:absolute;
  9365. left:1587px;
  9366. top:1918px;
  9367. width:25px;
  9368. height:17px;
  9369. font-family:'PingFangSC-Regular', 'PingFang SC';
  9370. font-weight:400;
  9371. font-style:normal;
  9372. font-size:12px;
  9373. }
  9374. #u643 {
  9375. position:absolute;
  9376. left:0px;
  9377. top:0px;
  9378. width:25px;
  9379. white-space:nowrap;
  9380. }
  9381. #u644_div {
  9382. position:absolute;
  9383. left:0px;
  9384. top:0px;
  9385. width:25px;
  9386. height:17px;
  9387. background:inherit;
  9388. background-color:rgba(255, 255, 255, 0);
  9389. border:none;
  9390. border-radius:0px;
  9391. -moz-box-shadow:none;
  9392. -webkit-box-shadow:none;
  9393. box-shadow:none;
  9394. font-family:'PingFangSC-Regular', 'PingFang SC';
  9395. font-weight:400;
  9396. font-style:normal;
  9397. font-size:12px;
  9398. }
  9399. #u644 {
  9400. position:absolute;
  9401. left:1658px;
  9402. top:1918px;
  9403. width:25px;
  9404. height:17px;
  9405. font-family:'PingFangSC-Regular', 'PingFang SC';
  9406. font-weight:400;
  9407. font-style:normal;
  9408. font-size:12px;
  9409. }
  9410. #u645 {
  9411. position:absolute;
  9412. left:0px;
  9413. top:0px;
  9414. width:25px;
  9415. white-space:nowrap;
  9416. }
  9417. #u646_div {
  9418. position:absolute;
  9419. left:0px;
  9420. top:0px;
  9421. width:73px;
  9422. height:17px;
  9423. background:inherit;
  9424. background-color:rgba(255, 255, 255, 0);
  9425. border:none;
  9426. border-radius:0px;
  9427. -moz-box-shadow:none;
  9428. -webkit-box-shadow:none;
  9429. box-shadow:none;
  9430. font-size:12px;
  9431. }
  9432. #u646 {
  9433. position:absolute;
  9434. left:1811px;
  9435. top:1885px;
  9436. width:73px;
  9437. height:17px;
  9438. font-size:12px;
  9439. }
  9440. #u647 {
  9441. position:absolute;
  9442. left:0px;
  9443. top:0px;
  9444. width:73px;
  9445. white-space:nowrap;
  9446. }
  9447. #u648_div {
  9448. position:absolute;
  9449. left:0px;
  9450. top:0px;
  9451. width:28px;
  9452. height:28px;
  9453. background:inherit;
  9454. background-color:rgba(0, 153, 255, 1);
  9455. border:none;
  9456. border-radius:4px;
  9457. -moz-box-shadow:none;
  9458. -webkit-box-shadow:none;
  9459. box-shadow:none;
  9460. font-size:16px;
  9461. color:#FFFFFF;
  9462. }
  9463. #u648 {
  9464. position:absolute;
  9465. left:1811px;
  9466. top:1947px;
  9467. width:28px;
  9468. height:28px;
  9469. font-size:16px;
  9470. color:#FFFFFF;
  9471. }
  9472. #u649 {
  9473. position:absolute;
  9474. left:2px;
  9475. top:3px;
  9476. width:24px;
  9477. word-wrap:break-word;
  9478. }
  9479. #u650_div {
  9480. position:absolute;
  9481. left:0px;
  9482. top:0px;
  9483. width:40px;
  9484. height:18px;
  9485. background:inherit;
  9486. background-color:rgba(255, 255, 255, 0);
  9487. border:none;
  9488. border-radius:0px;
  9489. -moz-box-shadow:none;
  9490. -webkit-box-shadow:none;
  9491. box-shadow:none;
  9492. font-size:13px;
  9493. color:#666666;
  9494. }
  9495. #u650 {
  9496. position:absolute;
  9497. left:1847px;
  9498. top:1950px;
  9499. width:40px;
  9500. height:18px;
  9501. font-size:13px;
  9502. color:#666666;
  9503. }
  9504. #u651 {
  9505. position:absolute;
  9506. left:0px;
  9507. top:0px;
  9508. width:40px;
  9509. white-space:nowrap;
  9510. }
  9511. #u652_img {
  9512. position:absolute;
  9513. left:0px;
  9514. top:0px;
  9515. width:16px;
  9516. height:16px;
  9517. }
  9518. #u652 {
  9519. position:absolute;
  9520. left:2099px;
  9521. top:1953px;
  9522. width:16px;
  9523. height:16px;
  9524. }
  9525. #u653 {
  9526. position:absolute;
  9527. left:2px;
  9528. top:0px;
  9529. width:12px;
  9530. visibility:hidden;
  9531. word-wrap:break-word;
  9532. }
  9533. #u654_div {
  9534. position:absolute;
  9535. left:0px;
  9536. top:0px;
  9537. width:27px;
  9538. height:18px;
  9539. background:inherit;
  9540. background-color:rgba(255, 255, 255, 0);
  9541. border:none;
  9542. border-radius:0px;
  9543. -moz-box-shadow:none;
  9544. -webkit-box-shadow:none;
  9545. box-shadow:none;
  9546. font-size:13px;
  9547. color:#666666;
  9548. }
  9549. #u654 {
  9550. position:absolute;
  9551. left:1847px;
  9552. top:1918px;
  9553. width:27px;
  9554. height:18px;
  9555. font-size:13px;
  9556. color:#666666;
  9557. }
  9558. #u655 {
  9559. position:absolute;
  9560. left:0px;
  9561. top:0px;
  9562. width:27px;
  9563. white-space:nowrap;
  9564. }
  9565. #u656_img {
  9566. position:absolute;
  9567. left:0px;
  9568. top:0px;
  9569. width:26px;
  9570. height:21px;
  9571. }
  9572. #u656 {
  9573. position:absolute;
  9574. left:1811px;
  9575. top:1916px;
  9576. width:26px;
  9577. height:21px;
  9578. }
  9579. #u657 {
  9580. position:absolute;
  9581. left:2px;
  9582. top:2px;
  9583. width:22px;
  9584. visibility:hidden;
  9585. word-wrap:break-word;
  9586. }
  9587. #u658_div {
  9588. position:absolute;
  9589. left:0px;
  9590. top:0px;
  9591. width:300px;
  9592. height:83px;
  9593. background:inherit;
  9594. background-color:rgba(0, 0, 0, 1);
  9595. border:none;
  9596. border-bottom:0px;
  9597. border-radius:5px;
  9598. border-bottom-right-radius:0px;
  9599. border-bottom-left-radius:0px;
  9600. -moz-box-shadow:none;
  9601. -webkit-box-shadow:none;
  9602. box-shadow:none;
  9603. }
  9604. #u658 {
  9605. position:absolute;
  9606. left:1813px;
  9607. top:1548px;
  9608. width:300px;
  9609. height:83px;
  9610. }
  9611. #u659 {
  9612. position:absolute;
  9613. left:2px;
  9614. top:34px;
  9615. width:296px;
  9616. visibility:hidden;
  9617. word-wrap:break-word;
  9618. }
  9619. #u660_div {
  9620. position:absolute;
  9621. left:0px;
  9622. top:0px;
  9623. width:139px;
  9624. height:25px;
  9625. background:inherit;
  9626. background-color:rgba(255, 255, 255, 0);
  9627. border:none;
  9628. border-radius:0px;
  9629. -moz-box-shadow:none;
  9630. -webkit-box-shadow:none;
  9631. box-shadow:none;
  9632. color:#FFFFFF;
  9633. }
  9634. #u660 {
  9635. position:absolute;
  9636. left:1894px;
  9637. top:1577px;
  9638. width:139px;
  9639. height:25px;
  9640. color:#FFFFFF;
  9641. }
  9642. #u661 {
  9643. position:absolute;
  9644. left:0px;
  9645. top:0px;
  9646. width:139px;
  9647. white-space:nowrap;
  9648. }
  9649. #u662 {
  9650. position:absolute;
  9651. left:1702px;
  9652. top:2699px;
  9653. width:0px;
  9654. height:0px;
  9655. }
  9656. #u662_seg0 {
  9657. position:absolute;
  9658. left:0px;
  9659. top:-4px;
  9660. width:92px;
  9661. height:8px;
  9662. }
  9663. #u662_seg1 {
  9664. position:absolute;
  9665. left:84px;
  9666. top:-932px;
  9667. width:8px;
  9668. height:936px;
  9669. }
  9670. #u662_seg2 {
  9671. position:absolute;
  9672. left:84px;
  9673. top:-932px;
  9674. width:17px;
  9675. height:8px;
  9676. }
  9677. #u662_seg3 {
  9678. position:absolute;
  9679. left:86px;
  9680. top:-938px;
  9681. width:20px;
  9682. height:20px;
  9683. }
  9684. #u663 {
  9685. position:absolute;
  9686. left:38px;
  9687. top:-434px;
  9688. width:100px;
  9689. visibility:hidden;
  9690. word-wrap:break-word;
  9691. }
  9692. #u664 {
  9693. position:absolute;
  9694. left:1252px;
  9695. top:1673px;
  9696. width:0px;
  9697. height:0px;
  9698. }
  9699. #u664_seg0 {
  9700. position:absolute;
  9701. left:0px;
  9702. top:-4px;
  9703. width:92px;
  9704. height:8px;
  9705. }
  9706. #u664_seg1 {
  9707. position:absolute;
  9708. left:84px;
  9709. top:-4px;
  9710. width:8px;
  9711. height:469px;
  9712. }
  9713. #u664_seg2 {
  9714. position:absolute;
  9715. left:84px;
  9716. top:457px;
  9717. width:67px;
  9718. height:8px;
  9719. }
  9720. #u664_seg3 {
  9721. position:absolute;
  9722. left:136px;
  9723. top:451px;
  9724. width:20px;
  9725. height:20px;
  9726. }
  9727. #u665 {
  9728. position:absolute;
  9729. left:38px;
  9730. top:210px;
  9731. width:100px;
  9732. visibility:hidden;
  9733. word-wrap:break-word;
  9734. }
  9735. #u666 {
  9736. position:absolute;
  9737. left:0px;
  9738. top:0px;
  9739. width:0px;
  9740. height:0px;
  9741. }
  9742. #u667_div {
  9743. position:absolute;
  9744. left:0px;
  9745. top:0px;
  9746. width:300px;
  9747. height:308px;
  9748. background:inherit;
  9749. background-color:rgba(255, 255, 255, 1);
  9750. box-sizing:border-box;
  9751. border-width:1px;
  9752. border-style:solid;
  9753. border-color:rgba(121, 121, 121, 1);
  9754. border-radius:0px;
  9755. -moz-box-shadow:none;
  9756. -webkit-box-shadow:none;
  9757. box-shadow:none;
  9758. font-family:'PingFangSC-Regular', 'PingFang SC';
  9759. font-weight:400;
  9760. font-style:normal;
  9761. color:#CCCCCC;
  9762. }
  9763. #u667 {
  9764. position:absolute;
  9765. left:1413px;
  9766. top:1983px;
  9767. width:300px;
  9768. height:308px;
  9769. font-family:'PingFangSC-Regular', 'PingFang SC';
  9770. font-weight:400;
  9771. font-style:normal;
  9772. color:#CCCCCC;
  9773. }
  9774. #u668 {
  9775. position:absolute;
  9776. left:2px;
  9777. top:146px;
  9778. width:296px;
  9779. visibility:hidden;
  9780. word-wrap:break-word;
  9781. }
  9782. #u669_div {
  9783. position:absolute;
  9784. left:0px;
  9785. top:0px;
  9786. width:145px;
  9787. height:25px;
  9788. background:inherit;
  9789. background-color:rgba(255, 255, 255, 0);
  9790. border:none;
  9791. border-radius:0px;
  9792. -moz-box-shadow:none;
  9793. -webkit-box-shadow:none;
  9794. box-shadow:none;
  9795. font-family:'PingFangSC-Semibold', 'PingFang SC Semibold', 'PingFang SC';
  9796. font-weight:650;
  9797. font-style:normal;
  9798. text-decoration:underline;
  9799. }
  9800. #u669 {
  9801. position:absolute;
  9802. left:1491px;
  9803. top:2000px;
  9804. width:145px;
  9805. height:25px;
  9806. font-family:'PingFangSC-Semibold', 'PingFang SC Semibold', 'PingFang SC';
  9807. font-weight:650;
  9808. font-style:normal;
  9809. text-decoration:underline;
  9810. }
  9811. #u670 {
  9812. position:absolute;
  9813. left:0px;
  9814. top:0px;
  9815. width:145px;
  9816. white-space:nowrap;
  9817. }
  9818. #u671_div {
  9819. position:absolute;
  9820. left:0px;
  9821. top:0px;
  9822. width:75px;
  9823. height:99px;
  9824. background:inherit;
  9825. background-color:rgba(242, 242, 242, 1);
  9826. border:none;
  9827. border-radius:0px;
  9828. -moz-box-shadow:none;
  9829. -webkit-box-shadow:none;
  9830. box-shadow:none;
  9831. font-family:'PingFangSC-Regular', 'PingFang SC';
  9832. font-weight:400;
  9833. font-style:normal;
  9834. color:#999999;
  9835. }
  9836. #u671 {
  9837. position:absolute;
  9838. left:1446px;
  9839. top:2058px;
  9840. width:75px;
  9841. height:99px;
  9842. font-family:'PingFangSC-Regular', 'PingFang SC';
  9843. font-weight:400;
  9844. font-style:normal;
  9845. color:#999999;
  9846. }
  9847. #u672 {
  9848. position:absolute;
  9849. left:2px;
  9850. top:40px;
  9851. width:71px;
  9852. word-wrap:break-word;
  9853. }
  9854. #u673_div {
  9855. position:absolute;
  9856. left:0px;
  9857. top:0px;
  9858. width:75px;
  9859. height:99px;
  9860. background:inherit;
  9861. background-color:rgba(242, 242, 242, 1);
  9862. border:none;
  9863. border-radius:0px;
  9864. -moz-box-shadow:none;
  9865. -webkit-box-shadow:none;
  9866. box-shadow:none;
  9867. font-family:'PingFangSC-Regular', 'PingFang SC';
  9868. font-weight:400;
  9869. font-style:normal;
  9870. color:#999999;
  9871. }
  9872. #u673 {
  9873. position:absolute;
  9874. left:1446px;
  9875. top:2170px;
  9876. width:75px;
  9877. height:99px;
  9878. font-family:'PingFangSC-Regular', 'PingFang SC';
  9879. font-weight:400;
  9880. font-style:normal;
  9881. color:#999999;
  9882. }
  9883. #u674 {
  9884. position:absolute;
  9885. left:2px;
  9886. top:40px;
  9887. width:71px;
  9888. word-wrap:break-word;
  9889. }
  9890. #u675_div {
  9891. position:absolute;
  9892. left:0px;
  9893. top:0px;
  9894. width:171px;
  9895. height:40px;
  9896. background:inherit;
  9897. background-color:rgba(255, 255, 255, 0);
  9898. border:none;
  9899. border-radius:0px;
  9900. -moz-box-shadow:none;
  9901. -webkit-box-shadow:none;
  9902. box-shadow:none;
  9903. }
  9904. #u675 {
  9905. position:absolute;
  9906. left:1531px;
  9907. top:2088px;
  9908. width:171px;
  9909. height:40px;
  9910. }
  9911. #u676 {
  9912. position:absolute;
  9913. left:0px;
  9914. top:0px;
  9915. width:171px;
  9916. word-wrap:break-word;
  9917. }
  9918. #u677_div {
  9919. position:absolute;
  9920. left:0px;
  9921. top:0px;
  9922. width:71px;
  9923. height:16px;
  9924. background:inherit;
  9925. background-color:rgba(255, 255, 255, 0);
  9926. border:none;
  9927. border-radius:0px;
  9928. -moz-box-shadow:none;
  9929. -webkit-box-shadow:none;
  9930. box-shadow:none;
  9931. font-size:11px;
  9932. color:#999999;
  9933. }
  9934. #u677 {
  9935. position:absolute;
  9936. left:1533px;
  9937. top:2137px;
  9938. width:71px;
  9939. height:16px;
  9940. font-size:11px;
  9941. color:#999999;
  9942. }
  9943. #u678 {
  9944. position:absolute;
  9945. left:0px;
  9946. top:0px;
  9947. width:71px;
  9948. white-space:nowrap;
  9949. }
  9950. #u679_div {
  9951. position:absolute;
  9952. left:0px;
  9953. top:0px;
  9954. width:171px;
  9955. height:37px;
  9956. background:inherit;
  9957. background-color:rgba(255, 255, 255, 0);
  9958. border:none;
  9959. border-radius:0px;
  9960. -moz-box-shadow:none;
  9961. -webkit-box-shadow:none;
  9962. box-shadow:none;
  9963. }
  9964. #u679 {
  9965. position:absolute;
  9966. left:1531px;
  9967. top:2204px;
  9968. width:171px;
  9969. height:37px;
  9970. }
  9971. #u680 {
  9972. position:absolute;
  9973. left:0px;
  9974. top:0px;
  9975. width:171px;
  9976. word-wrap:break-word;
  9977. }
  9978. #u681_div {
  9979. position:absolute;
  9980. left:0px;
  9981. top:0px;
  9982. width:69px;
  9983. height:16px;
  9984. background:inherit;
  9985. background-color:rgba(255, 255, 255, 0);
  9986. border:none;
  9987. border-radius:0px;
  9988. -moz-box-shadow:none;
  9989. -webkit-box-shadow:none;
  9990. box-shadow:none;
  9991. font-size:11px;
  9992. color:#999999;
  9993. }
  9994. #u681 {
  9995. position:absolute;
  9996. left:1531px;
  9997. top:2251px;
  9998. width:69px;
  9999. height:16px;
  10000. font-size:11px;
  10001. color:#999999;
  10002. }
  10003. #u682 {
  10004. position:absolute;
  10005. left:0px;
  10006. top:0px;
  10007. width:69px;
  10008. white-space:nowrap;
  10009. }
  10010. #u683_div {
  10011. position:absolute;
  10012. left:0px;
  10013. top:0px;
  10014. width:300px;
  10015. height:367px;
  10016. background:inherit;
  10017. background-color:rgba(255, 255, 255, 1);
  10018. box-sizing:border-box;
  10019. border-width:1px;
  10020. border-style:solid;
  10021. border-color:rgba(121, 121, 121, 1);
  10022. border-radius:0px;
  10023. -moz-box-shadow:none;
  10024. -webkit-box-shadow:none;
  10025. box-shadow:none;
  10026. font-family:'PingFangSC-Regular', 'PingFang SC';
  10027. font-weight:400;
  10028. font-style:normal;
  10029. color:#CCCCCC;
  10030. }
  10031. #u683 {
  10032. position:absolute;
  10033. left:1413px;
  10034. top:2301px;
  10035. width:300px;
  10036. height:367px;
  10037. font-family:'PingFangSC-Regular', 'PingFang SC';
  10038. font-weight:400;
  10039. font-style:normal;
  10040. color:#CCCCCC;
  10041. }
  10042. #u684 {
  10043. position:absolute;
  10044. left:2px;
  10045. top:176px;
  10046. width:296px;
  10047. visibility:hidden;
  10048. word-wrap:break-word;
  10049. }
  10050. #u685_div {
  10051. position:absolute;
  10052. left:0px;
  10053. top:0px;
  10054. width:145px;
  10055. height:25px;
  10056. background:inherit;
  10057. background-color:rgba(255, 255, 255, 0);
  10058. border:none;
  10059. border-radius:0px;
  10060. -moz-box-shadow:none;
  10061. -webkit-box-shadow:none;
  10062. box-shadow:none;
  10063. font-family:'PingFangSC-Semibold', 'PingFang SC Semibold', 'PingFang SC';
  10064. font-weight:650;
  10065. font-style:normal;
  10066. text-decoration:underline;
  10067. }
  10068. #u685 {
  10069. position:absolute;
  10070. left:1493px;
  10071. top:2318px;
  10072. width:145px;
  10073. height:25px;
  10074. font-family:'PingFangSC-Semibold', 'PingFang SC Semibold', 'PingFang SC';
  10075. font-weight:650;
  10076. font-style:normal;
  10077. text-decoration:underline;
  10078. }
  10079. #u686 {
  10080. position:absolute;
  10081. left:0px;
  10082. top:0px;
  10083. width:145px;
  10084. white-space:nowrap;
  10085. }
  10086. #u687_div {
  10087. position:absolute;
  10088. left:0px;
  10089. top:0px;
  10090. width:127px;
  10091. height:20px;
  10092. background:inherit;
  10093. background-color:rgba(255, 255, 255, 0);
  10094. border:none;
  10095. border-radius:0px;
  10096. -moz-box-shadow:none;
  10097. -webkit-box-shadow:none;
  10098. box-shadow:none;
  10099. }
  10100. #u687 {
  10101. position:absolute;
  10102. left:1502px;
  10103. top:2353px;
  10104. width:127px;
  10105. height:20px;
  10106. }
  10107. #u688 {
  10108. position:absolute;
  10109. left:0px;
  10110. top:0px;
  10111. width:127px;
  10112. white-space:nowrap;
  10113. }
  10114. #u689_div {
  10115. position:absolute;
  10116. left:0px;
  10117. top:0px;
  10118. width:121px;
  10119. height:71px;
  10120. background:inherit;
  10121. background-color:rgba(242, 242, 242, 1);
  10122. border:none;
  10123. border-radius:0px;
  10124. -moz-box-shadow:none;
  10125. -webkit-box-shadow:none;
  10126. box-shadow:none;
  10127. font-family:'PingFangSC-Regular', 'PingFang SC';
  10128. font-weight:400;
  10129. font-style:normal;
  10130. color:#999999;
  10131. }
  10132. #u689 {
  10133. position:absolute;
  10134. left:1439px;
  10135. top:2397px;
  10136. width:121px;
  10137. height:71px;
  10138. font-family:'PingFangSC-Regular', 'PingFang SC';
  10139. font-weight:400;
  10140. font-style:normal;
  10141. color:#999999;
  10142. }
  10143. #u690 {
  10144. position:absolute;
  10145. left:2px;
  10146. top:26px;
  10147. width:117px;
  10148. word-wrap:break-word;
  10149. }
  10150. #u691_div {
  10151. position:absolute;
  10152. left:0px;
  10153. top:0px;
  10154. width:106px;
  10155. height:20px;
  10156. background:inherit;
  10157. background-color:rgba(255, 255, 255, 0);
  10158. border:none;
  10159. border-radius:0px;
  10160. -moz-box-shadow:none;
  10161. -webkit-box-shadow:none;
  10162. box-shadow:none;
  10163. }
  10164. #u691 {
  10165. position:absolute;
  10166. left:1439px;
  10167. top:2478px;
  10168. width:106px;
  10169. height:20px;
  10170. }
  10171. #u692 {
  10172. position:absolute;
  10173. left:0px;
  10174. top:0px;
  10175. width:106px;
  10176. word-wrap:break-word;
  10177. }
  10178. #u693_div {
  10179. position:absolute;
  10180. left:0px;
  10181. top:0px;
  10182. width:121px;
  10183. height:71px;
  10184. background:inherit;
  10185. background-color:rgba(242, 242, 242, 1);
  10186. border:none;
  10187. border-radius:0px;
  10188. -moz-box-shadow:none;
  10189. -webkit-box-shadow:none;
  10190. box-shadow:none;
  10191. font-family:'PingFangSC-Regular', 'PingFang SC';
  10192. font-weight:400;
  10193. font-style:normal;
  10194. color:#999999;
  10195. }
  10196. #u693 {
  10197. position:absolute;
  10198. left:1570px;
  10199. top:2397px;
  10200. width:121px;
  10201. height:71px;
  10202. font-family:'PingFangSC-Regular', 'PingFang SC';
  10203. font-weight:400;
  10204. font-style:normal;
  10205. color:#999999;
  10206. }
  10207. #u694 {
  10208. position:absolute;
  10209. left:2px;
  10210. top:26px;
  10211. width:117px;
  10212. word-wrap:break-word;
  10213. }
  10214. #u695_div {
  10215. position:absolute;
  10216. left:0px;
  10217. top:0px;
  10218. width:106px;
  10219. height:20px;
  10220. background:inherit;
  10221. background-color:rgba(255, 255, 255, 0);
  10222. border:none;
  10223. border-radius:0px;
  10224. -moz-box-shadow:none;
  10225. -webkit-box-shadow:none;
  10226. box-shadow:none;
  10227. }
  10228. #u695 {
  10229. position:absolute;
  10230. left:1570px;
  10231. top:2478px;
  10232. width:106px;
  10233. height:20px;
  10234. }
  10235. #u696 {
  10236. position:absolute;
  10237. left:0px;
  10238. top:0px;
  10239. width:106px;
  10240. word-wrap:break-word;
  10241. }
  10242. #u697_div {
  10243. position:absolute;
  10244. left:0px;
  10245. top:0px;
  10246. width:121px;
  10247. height:71px;
  10248. background:inherit;
  10249. background-color:rgba(242, 242, 242, 1);
  10250. border:none;
  10251. border-radius:0px;
  10252. -moz-box-shadow:none;
  10253. -webkit-box-shadow:none;
  10254. box-shadow:none;
  10255. font-family:'PingFangSC-Regular', 'PingFang SC';
  10256. font-weight:400;
  10257. font-style:normal;
  10258. color:#999999;
  10259. }
  10260. #u697 {
  10261. position:absolute;
  10262. left:1439px;
  10263. top:2525px;
  10264. width:121px;
  10265. height:71px;
  10266. font-family:'PingFangSC-Regular', 'PingFang SC';
  10267. font-weight:400;
  10268. font-style:normal;
  10269. color:#999999;
  10270. }
  10271. #u698 {
  10272. position:absolute;
  10273. left:2px;
  10274. top:26px;
  10275. width:117px;
  10276. word-wrap:break-word;
  10277. }
  10278. #u699_div {
  10279. position:absolute;
  10280. left:0px;
  10281. top:0px;
  10282. width:106px;
  10283. height:20px;
  10284. background:inherit;
  10285. background-color:rgba(255, 255, 255, 0);
  10286. border:none;
  10287. border-radius:0px;
  10288. -moz-box-shadow:none;
  10289. -webkit-box-shadow:none;
  10290. box-shadow:none;
  10291. }
  10292. #u699 {
  10293. position:absolute;
  10294. left:1439px;
  10295. top:2606px;
  10296. width:106px;
  10297. height:20px;
  10298. }
  10299. #u700 {
  10300. position:absolute;
  10301. left:0px;
  10302. top:0px;
  10303. width:106px;
  10304. word-wrap:break-word;
  10305. }
  10306. #u701_div {
  10307. position:absolute;
  10308. left:0px;
  10309. top:0px;
  10310. width:121px;
  10311. height:71px;
  10312. background:inherit;
  10313. background-color:rgba(242, 242, 242, 1);
  10314. border:none;
  10315. border-radius:0px;
  10316. -moz-box-shadow:none;
  10317. -webkit-box-shadow:none;
  10318. box-shadow:none;
  10319. font-family:'PingFangSC-Regular', 'PingFang SC';
  10320. font-weight:400;
  10321. font-style:normal;
  10322. color:#999999;
  10323. }
  10324. #u701 {
  10325. position:absolute;
  10326. left:1570px;
  10327. top:2525px;
  10328. width:121px;
  10329. height:71px;
  10330. font-family:'PingFangSC-Regular', 'PingFang SC';
  10331. font-weight:400;
  10332. font-style:normal;
  10333. color:#999999;
  10334. }
  10335. #u702 {
  10336. position:absolute;
  10337. left:2px;
  10338. top:26px;
  10339. width:117px;
  10340. word-wrap:break-word;
  10341. }
  10342. #u703_div {
  10343. position:absolute;
  10344. left:0px;
  10345. top:0px;
  10346. width:106px;
  10347. height:20px;
  10348. background:inherit;
  10349. background-color:rgba(255, 255, 255, 0);
  10350. border:none;
  10351. border-radius:0px;
  10352. -moz-box-shadow:none;
  10353. -webkit-box-shadow:none;
  10354. box-shadow:none;
  10355. }
  10356. #u703 {
  10357. position:absolute;
  10358. left:1570px;
  10359. top:2606px;
  10360. width:106px;
  10361. height:20px;
  10362. }
  10363. #u704 {
  10364. position:absolute;
  10365. left:0px;
  10366. top:0px;
  10367. width:106px;
  10368. word-wrap:break-word;
  10369. }
  10370. #u705_div {
  10371. position:absolute;
  10372. left:0px;
  10373. top:0px;
  10374. width:113px;
  10375. height:20px;
  10376. background:inherit;
  10377. background-color:rgba(255, 255, 255, 0);
  10378. border:none;
  10379. border-radius:0px;
  10380. -moz-box-shadow:none;
  10381. -webkit-box-shadow:none;
  10382. box-shadow:none;
  10383. font-family:'PingFangSC-Regular', 'PingFang SC';
  10384. font-weight:400;
  10385. font-style:normal;
  10386. }
  10387. #u705 {
  10388. position:absolute;
  10389. left:1507px;
  10390. top:1784px;
  10391. width:113px;
  10392. height:20px;
  10393. font-family:'PingFangSC-Regular', 'PingFang SC';
  10394. font-weight:400;
  10395. font-style:normal;
  10396. }
  10397. #u706 {
  10398. position:absolute;
  10399. left:0px;
  10400. top:0px;
  10401. width:113px;
  10402. white-space:nowrap;
  10403. }
  10404. #u707_div {
  10405. position:absolute;
  10406. left:0px;
  10407. top:0px;
  10408. width:197px;
  10409. height:20px;
  10410. background:inherit;
  10411. background-color:rgba(255, 255, 255, 0);
  10412. border:none;
  10413. border-radius:0px;
  10414. -moz-box-shadow:none;
  10415. -webkit-box-shadow:none;
  10416. box-shadow:none;
  10417. font-family:'PingFangSC-Regular', 'PingFang SC';
  10418. font-weight:400;
  10419. font-style:normal;
  10420. }
  10421. #u707 {
  10422. position:absolute;
  10423. left:1465px;
  10424. top:2028px;
  10425. width:197px;
  10426. height:20px;
  10427. font-family:'PingFangSC-Regular', 'PingFang SC';
  10428. font-weight:400;
  10429. font-style:normal;
  10430. }
  10431. #u708 {
  10432. position:absolute;
  10433. left:0px;
  10434. top:0px;
  10435. width:197px;
  10436. white-space:nowrap;
  10437. }
  10438. #u709 {
  10439. position:absolute;
  10440. left:0px;
  10441. top:0px;
  10442. width:0px;
  10443. height:0px;
  10444. }
  10445. #u710_div {
  10446. position:absolute;
  10447. left:0px;
  10448. top:0px;
  10449. width:320px;
  10450. height:1249px;
  10451. background:inherit;
  10452. background-color:rgba(242, 242, 242, 1);
  10453. box-sizing:border-box;
  10454. border-width:1px;
  10455. border-style:solid;
  10456. border-color:rgba(0, 0, 0, 1);
  10457. border-radius:0px;
  10458. -moz-box-shadow:none;
  10459. -webkit-box-shadow:none;
  10460. box-shadow:none;
  10461. font-family:'PingFangSC-Regular', 'PingFang SC';
  10462. font-weight:400;
  10463. font-style:normal;
  10464. font-size:12px;
  10465. color:#000000;
  10466. }
  10467. #u710 {
  10468. position:absolute;
  10469. left:109px;
  10470. top:78px;
  10471. width:320px;
  10472. height:1249px;
  10473. font-family:'PingFangSC-Regular', 'PingFang SC';
  10474. font-weight:400;
  10475. font-style:normal;
  10476. font-size:12px;
  10477. color:#000000;
  10478. }
  10479. #u711 {
  10480. position:absolute;
  10481. left:2px;
  10482. top:616px;
  10483. width:316px;
  10484. visibility:hidden;
  10485. word-wrap:break-word;
  10486. }
  10487. #u712 {
  10488. position:absolute;
  10489. left:0px;
  10490. top:0px;
  10491. width:0px;
  10492. height:0px;
  10493. }
  10494. #u713_div {
  10495. position:absolute;
  10496. left:0px;
  10497. top:0px;
  10498. width:318px;
  10499. height:22px;
  10500. background:inherit;
  10501. background-color:rgba(255, 255, 255, 1);
  10502. border:none;
  10503. border-radius:0px;
  10504. -moz-box-shadow:none;
  10505. -webkit-box-shadow:none;
  10506. box-shadow:none;
  10507. }
  10508. #u713 {
  10509. position:absolute;
  10510. left:110px;
  10511. top:79px;
  10512. width:318px;
  10513. height:22px;
  10514. }
  10515. #u714 {
  10516. position:absolute;
  10517. left:2px;
  10518. top:3px;
  10519. width:314px;
  10520. visibility:hidden;
  10521. word-wrap:break-word;
  10522. }
  10523. #u715_img {
  10524. position:absolute;
  10525. left:0px;
  10526. top:0px;
  10527. width:318px;
  10528. height:22px;
  10529. }
  10530. #u715 {
  10531. position:absolute;
  10532. left:110px;
  10533. top:79px;
  10534. width:318px;
  10535. height:22px;
  10536. }
  10537. #u716 {
  10538. position:absolute;
  10539. left:2px;
  10540. top:3px;
  10541. width:314px;
  10542. visibility:hidden;
  10543. word-wrap:break-word;
  10544. }
  10545. #u717 {
  10546. position:absolute;
  10547. left:0px;
  10548. top:0px;
  10549. width:0px;
  10550. height:0px;
  10551. }
  10552. #u718_div {
  10553. position:absolute;
  10554. left:0px;
  10555. top:0px;
  10556. width:318px;
  10557. height:40px;
  10558. background:inherit;
  10559. background-color:rgba(255, 255, 255, 1);
  10560. box-sizing:border-box;
  10561. border-width:1px;
  10562. border-style:solid;
  10563. border-color:rgba(228, 228, 228, 1);
  10564. border-left:0px;
  10565. border-top:0px;
  10566. border-right:0px;
  10567. border-radius:0px;
  10568. border-top-left-radius:0px;
  10569. border-top-right-radius:0px;
  10570. border-bottom-right-radius:0px;
  10571. border-bottom-left-radius:0px;
  10572. -moz-box-shadow:none;
  10573. -webkit-box-shadow:none;
  10574. box-shadow:none;
  10575. font-family:'PingFangSC-Regular', 'PingFang SC';
  10576. font-weight:400;
  10577. font-style:normal;
  10578. font-size:14px;
  10579. text-align:left;
  10580. }
  10581. #u718 {
  10582. position:absolute;
  10583. left:110px;
  10584. top:96px;
  10585. width:318px;
  10586. height:40px;
  10587. font-family:'PingFangSC-Regular', 'PingFang SC';
  10588. font-weight:400;
  10589. font-style:normal;
  10590. font-size:14px;
  10591. text-align:left;
  10592. }
  10593. #u719 {
  10594. position:absolute;
  10595. left:0px;
  10596. top:10px;
  10597. width:318px;
  10598. word-wrap:break-word;
  10599. }
  10600. #u720_img {
  10601. position:absolute;
  10602. left:0px;
  10603. top:0px;
  10604. width:10px;
  10605. height:16px;
  10606. }
  10607. #u720 {
  10608. position:absolute;
  10609. left:120px;
  10610. top:108px;
  10611. width:10px;
  10612. height:16px;
  10613. }
  10614. #u721 {
  10615. position:absolute;
  10616. left:2px;
  10617. top:0px;
  10618. width:6px;
  10619. visibility:hidden;
  10620. word-wrap:break-word;
  10621. }
  10622. #u722_div {
  10623. position:absolute;
  10624. left:0px;
  10625. top:0px;
  10626. width:318px;
  10627. height:1191px;
  10628. background:inherit;
  10629. background-color:rgba(255, 255, 255, 1);
  10630. box-sizing:border-box;
  10631. border-width:1px;
  10632. border-style:solid;
  10633. border-color:rgba(242, 242, 242, 1);
  10634. border-radius:0px;
  10635. -moz-box-shadow:none;
  10636. -webkit-box-shadow:none;
  10637. box-shadow:none;
  10638. }
  10639. #u722 {
  10640. position:absolute;
  10641. left:110px;
  10642. top:136px;
  10643. width:318px;
  10644. height:1191px;
  10645. }
  10646. #u723 {
  10647. position:absolute;
  10648. left:2px;
  10649. top:588px;
  10650. width:314px;
  10651. visibility:hidden;
  10652. word-wrap:break-word;
  10653. }
  10654. #u724_div {
  10655. position:absolute;
  10656. left:0px;
  10657. top:0px;
  10658. width:270px;
  10659. height:41px;
  10660. background:inherit;
  10661. background-color:rgba(0, 0, 0, 1);
  10662. box-sizing:border-box;
  10663. border-width:1px;
  10664. border-style:solid;
  10665. border-color:rgba(121, 121, 121, 1);
  10666. border-radius:160px;
  10667. -moz-box-shadow:none;
  10668. -webkit-box-shadow:none;
  10669. box-shadow:none;
  10670. font-family:'PingFangSC-Regular', 'PingFang SC';
  10671. font-weight:400;
  10672. font-style:normal;
  10673. color:#FFFFFF;
  10674. }
  10675. #u724 {
  10676. position:absolute;
  10677. left:139px;
  10678. top:1276px;
  10679. width:270px;
  10680. height:41px;
  10681. font-family:'PingFangSC-Regular', 'PingFang SC';
  10682. font-weight:400;
  10683. font-style:normal;
  10684. color:#FFFFFF;
  10685. }
  10686. #u725 {
  10687. position:absolute;
  10688. left:2px;
  10689. top:12px;
  10690. width:266px;
  10691. word-wrap:break-word;
  10692. }
  10693. #u726_div {
  10694. position:absolute;
  10695. left:0px;
  10696. top:0px;
  10697. width:307px;
  10698. height:170px;
  10699. background:inherit;
  10700. background-color:rgba(51, 51, 51, 1);
  10701. box-sizing:border-box;
  10702. border-width:1px;
  10703. border-style:solid;
  10704. border-color:rgba(121, 121, 121, 1);
  10705. border-radius:5px;
  10706. -moz-box-shadow:none;
  10707. -webkit-box-shadow:none;
  10708. box-shadow:none;
  10709. font-size:18px;
  10710. color:#FFFFFF;
  10711. }
  10712. #u726 {
  10713. position:absolute;
  10714. left:116px;
  10715. top:142px;
  10716. width:307px;
  10717. height:170px;
  10718. font-size:18px;
  10719. color:#FFFFFF;
  10720. }
  10721. #u727 {
  10722. position:absolute;
  10723. left:2px;
  10724. top:77px;
  10725. width:303px;
  10726. visibility:hidden;
  10727. word-wrap:break-word;
  10728. }
  10729. #u728_div {
  10730. position:absolute;
  10731. left:0px;
  10732. top:0px;
  10733. width:33px;
  10734. height:33px;
  10735. background:inherit;
  10736. background-color:rgba(255, 255, 255, 1);
  10737. box-sizing:border-box;
  10738. border-width:1px;
  10739. border-style:solid;
  10740. border-color:rgba(121, 121, 121, 1);
  10741. border-radius:4px;
  10742. -moz-box-shadow:none;
  10743. -webkit-box-shadow:none;
  10744. box-shadow:none;
  10745. font-size:11px;
  10746. }
  10747. #u728 {
  10748. position:absolute;
  10749. left:376px;
  10750. top:263px;
  10751. width:33px;
  10752. height:33px;
  10753. font-size:11px;
  10754. }
  10755. #u729 {
  10756. position:absolute;
  10757. left:2px;
  10758. top:10px;
  10759. width:29px;
  10760. word-wrap:break-word;
  10761. }
  10762. #u730_img {
  10763. position:absolute;
  10764. left:0px;
  10765. top:0px;
  10766. width:170px;
  10767. height:20px;
  10768. }
  10769. #u730 {
  10770. position:absolute;
  10771. left:184px;
  10772. top:225px;
  10773. width:170px;
  10774. height:20px;
  10775. font-size:18px;
  10776. color:#FFFFFF;
  10777. text-align:center;
  10778. }
  10779. #u731 {
  10780. position:absolute;
  10781. left:0px;
  10782. top:0px;
  10783. width:170px;
  10784. word-wrap:break-word;
  10785. }
  10786. #u732_img {
  10787. position:absolute;
  10788. left:0px;
  10789. top:0px;
  10790. width:175px;
  10791. height:25px;
  10792. }
  10793. #u732 {
  10794. position:absolute;
  10795. left:182px;
  10796. top:190px;
  10797. width:175px;
  10798. height:25px;
  10799. font-size:18px;
  10800. color:#FFFFFF;
  10801. }
  10802. #u733 {
  10803. position:absolute;
  10804. left:0px;
  10805. top:0px;
  10806. width:175px;
  10807. white-space:nowrap;
  10808. }
  10809. #u734 {
  10810. position:absolute;
  10811. left:0px;
  10812. top:0px;
  10813. width:0px;
  10814. height:0px;
  10815. }
  10816. #u735_div {
  10817. position:absolute;
  10818. left:0px;
  10819. top:0px;
  10820. width:300px;
  10821. height:233px;
  10822. background:inherit;
  10823. background-color:rgba(255, 255, 255, 1);
  10824. box-sizing:border-box;
  10825. border-width:1px;
  10826. border-style:solid;
  10827. border-color:rgba(121, 121, 121, 1);
  10828. border-radius:0px;
  10829. -moz-box-shadow:none;
  10830. -webkit-box-shadow:none;
  10831. box-shadow:none;
  10832. font-family:'PingFangSC-Regular', 'PingFang SC';
  10833. font-weight:400;
  10834. font-style:normal;
  10835. color:#CCCCCC;
  10836. }
  10837. #u735 {
  10838. position:absolute;
  10839. left:120px;
  10840. top:330px;
  10841. width:300px;
  10842. height:233px;
  10843. font-family:'PingFangSC-Regular', 'PingFang SC';
  10844. font-weight:400;
  10845. font-style:normal;
  10846. color:#CCCCCC;
  10847. }
  10848. #u736 {
  10849. position:absolute;
  10850. left:2px;
  10851. top:108px;
  10852. width:296px;
  10853. visibility:hidden;
  10854. word-wrap:break-word;
  10855. }
  10856. #u737_div {
  10857. position:absolute;
  10858. left:0px;
  10859. top:0px;
  10860. width:145px;
  10861. height:25px;
  10862. background:inherit;
  10863. background-color:rgba(255, 255, 255, 0);
  10864. border:none;
  10865. border-radius:0px;
  10866. -moz-box-shadow:none;
  10867. -webkit-box-shadow:none;
  10868. box-shadow:none;
  10869. font-family:'PingFangSC-Semibold', 'PingFang SC Semibold', 'PingFang SC';
  10870. font-weight:650;
  10871. font-style:normal;
  10872. text-decoration:underline;
  10873. }
  10874. #u737 {
  10875. position:absolute;
  10876. left:198px;
  10877. top:347px;
  10878. width:145px;
  10879. height:25px;
  10880. font-family:'PingFangSC-Semibold', 'PingFang SC Semibold', 'PingFang SC';
  10881. font-weight:650;
  10882. font-style:normal;
  10883. text-decoration:underline;
  10884. }
  10885. #u738 {
  10886. position:absolute;
  10887. left:0px;
  10888. top:0px;
  10889. width:145px;
  10890. white-space:nowrap;
  10891. }
  10892. #u739_div {
  10893. position:absolute;
  10894. left:0px;
  10895. top:0px;
  10896. width:64px;
  10897. height:88px;
  10898. background:inherit;
  10899. background-color:rgba(242, 242, 242, 1);
  10900. border:none;
  10901. border-radius:0px;
  10902. -moz-box-shadow:none;
  10903. -webkit-box-shadow:none;
  10904. box-shadow:none;
  10905. font-family:'PingFangSC-Regular', 'PingFang SC';
  10906. font-weight:400;
  10907. font-style:normal;
  10908. color:#999999;
  10909. }
  10910. #u739 {
  10911. position:absolute;
  10912. left:133px;
  10913. top:418px;
  10914. width:64px;
  10915. height:88px;
  10916. font-family:'PingFangSC-Regular', 'PingFang SC';
  10917. font-weight:400;
  10918. font-style:normal;
  10919. color:#999999;
  10920. }
  10921. #u740 {
  10922. position:absolute;
  10923. left:2px;
  10924. top:35px;
  10925. width:60px;
  10926. word-wrap:break-word;
  10927. }
  10928. #u741_div {
  10929. position:absolute;
  10930. left:0px;
  10931. top:0px;
  10932. width:64px;
  10933. height:88px;
  10934. background:inherit;
  10935. background-color:rgba(242, 242, 242, 1);
  10936. border:none;
  10937. border-radius:0px;
  10938. -moz-box-shadow:none;
  10939. -webkit-box-shadow:none;
  10940. box-shadow:none;
  10941. font-family:'PingFangSC-Regular', 'PingFang SC';
  10942. font-weight:400;
  10943. font-style:normal;
  10944. color:#999999;
  10945. }
  10946. #u741 {
  10947. position:absolute;
  10948. left:203px;
  10949. top:418px;
  10950. width:64px;
  10951. height:88px;
  10952. font-family:'PingFangSC-Regular', 'PingFang SC';
  10953. font-weight:400;
  10954. font-style:normal;
  10955. color:#999999;
  10956. }
  10957. #u742 {
  10958. position:absolute;
  10959. left:2px;
  10960. top:35px;
  10961. width:60px;
  10962. word-wrap:break-word;
  10963. }
  10964. #u743_div {
  10965. position:absolute;
  10966. left:0px;
  10967. top:0px;
  10968. width:64px;
  10969. height:88px;
  10970. background:inherit;
  10971. background-color:rgba(242, 242, 242, 1);
  10972. border:none;
  10973. border-radius:0px;
  10974. -moz-box-shadow:none;
  10975. -webkit-box-shadow:none;
  10976. box-shadow:none;
  10977. font-family:'PingFangSC-Regular', 'PingFang SC';
  10978. font-weight:400;
  10979. font-style:normal;
  10980. color:#999999;
  10981. }
  10982. #u743 {
  10983. position:absolute;
  10984. left:274px;
  10985. top:418px;
  10986. width:64px;
  10987. height:88px;
  10988. font-family:'PingFangSC-Regular', 'PingFang SC';
  10989. font-weight:400;
  10990. font-style:normal;
  10991. color:#999999;
  10992. }
  10993. #u744 {
  10994. position:absolute;
  10995. left:2px;
  10996. top:35px;
  10997. width:60px;
  10998. word-wrap:break-word;
  10999. }
  11000. #u745_div {
  11001. position:absolute;
  11002. left:0px;
  11003. top:0px;
  11004. width:64px;
  11005. height:88px;
  11006. background:inherit;
  11007. background-color:rgba(242, 242, 242, 1);
  11008. border:none;
  11009. border-radius:0px;
  11010. -moz-box-shadow:none;
  11011. -webkit-box-shadow:none;
  11012. box-shadow:none;
  11013. font-family:'PingFangSC-Regular', 'PingFang SC';
  11014. font-weight:400;
  11015. font-style:normal;
  11016. color:#999999;
  11017. }
  11018. #u745 {
  11019. position:absolute;
  11020. left:345px;
  11021. top:418px;
  11022. width:64px;
  11023. height:88px;
  11024. font-family:'PingFangSC-Regular', 'PingFang SC';
  11025. font-weight:400;
  11026. font-style:normal;
  11027. color:#999999;
  11028. }
  11029. #u746 {
  11030. position:absolute;
  11031. left:2px;
  11032. top:35px;
  11033. width:60px;
  11034. word-wrap:break-word;
  11035. }
  11036. #u747_div {
  11037. position:absolute;
  11038. left:0px;
  11039. top:0px;
  11040. width:37px;
  11041. height:17px;
  11042. background:inherit;
  11043. background-color:rgba(255, 255, 255, 0);
  11044. border:none;
  11045. border-radius:0px;
  11046. -moz-box-shadow:none;
  11047. -webkit-box-shadow:none;
  11048. box-shadow:none;
  11049. font-size:12px;
  11050. }
  11051. #u747 {
  11052. position:absolute;
  11053. left:141px;
  11054. top:516px;
  11055. width:37px;
  11056. height:17px;
  11057. font-size:12px;
  11058. }
  11059. #u748 {
  11060. position:absolute;
  11061. left:0px;
  11062. top:0px;
  11063. width:37px;
  11064. white-space:nowrap;
  11065. }
  11066. #u749_div {
  11067. position:absolute;
  11068. left:0px;
  11069. top:0px;
  11070. width:37px;
  11071. height:17px;
  11072. background:inherit;
  11073. background-color:rgba(255, 255, 255, 0);
  11074. border:none;
  11075. border-radius:0px;
  11076. -moz-box-shadow:none;
  11077. -webkit-box-shadow:none;
  11078. box-shadow:none;
  11079. font-size:12px;
  11080. }
  11081. #u749 {
  11082. position:absolute;
  11083. left:217px;
  11084. top:516px;
  11085. width:37px;
  11086. height:17px;
  11087. font-size:12px;
  11088. }
  11089. #u750 {
  11090. position:absolute;
  11091. left:0px;
  11092. top:0px;
  11093. width:37px;
  11094. white-space:nowrap;
  11095. }
  11096. #u751_div {
  11097. position:absolute;
  11098. left:0px;
  11099. top:0px;
  11100. width:25px;
  11101. height:17px;
  11102. background:inherit;
  11103. background-color:rgba(255, 255, 255, 0);
  11104. border:none;
  11105. border-radius:0px;
  11106. -moz-box-shadow:none;
  11107. -webkit-box-shadow:none;
  11108. box-shadow:none;
  11109. font-family:'PingFangSC-Regular', 'PingFang SC';
  11110. font-weight:400;
  11111. font-style:normal;
  11112. font-size:12px;
  11113. }
  11114. #u751 {
  11115. position:absolute;
  11116. left:294px;
  11117. top:516px;
  11118. width:25px;
  11119. height:17px;
  11120. font-family:'PingFangSC-Regular', 'PingFang SC';
  11121. font-weight:400;
  11122. font-style:normal;
  11123. font-size:12px;
  11124. }
  11125. #u752 {
  11126. position:absolute;
  11127. left:0px;
  11128. top:0px;
  11129. width:25px;
  11130. white-space:nowrap;
  11131. }
  11132. #u753_div {
  11133. position:absolute;
  11134. left:0px;
  11135. top:0px;
  11136. width:25px;
  11137. height:17px;
  11138. background:inherit;
  11139. background-color:rgba(255, 255, 255, 0);
  11140. border:none;
  11141. border-radius:0px;
  11142. -moz-box-shadow:none;
  11143. -webkit-box-shadow:none;
  11144. box-shadow:none;
  11145. font-family:'PingFangSC-Regular', 'PingFang SC';
  11146. font-weight:400;
  11147. font-style:normal;
  11148. font-size:12px;
  11149. }
  11150. #u753 {
  11151. position:absolute;
  11152. left:365px;
  11153. top:516px;
  11154. width:25px;
  11155. height:17px;
  11156. font-family:'PingFangSC-Regular', 'PingFang SC';
  11157. font-weight:400;
  11158. font-style:normal;
  11159. font-size:12px;
  11160. }
  11161. #u754 {
  11162. position:absolute;
  11163. left:0px;
  11164. top:0px;
  11165. width:25px;
  11166. white-space:nowrap;
  11167. }
  11168. #u755 {
  11169. position:absolute;
  11170. left:0px;
  11171. top:0px;
  11172. width:0px;
  11173. height:0px;
  11174. }
  11175. #u756_div {
  11176. position:absolute;
  11177. left:0px;
  11178. top:0px;
  11179. width:300px;
  11180. height:308px;
  11181. background:inherit;
  11182. background-color:rgba(255, 255, 255, 1);
  11183. box-sizing:border-box;
  11184. border-width:1px;
  11185. border-style:solid;
  11186. border-color:rgba(121, 121, 121, 1);
  11187. border-radius:0px;
  11188. -moz-box-shadow:none;
  11189. -webkit-box-shadow:none;
  11190. box-shadow:none;
  11191. font-family:'PingFangSC-Regular', 'PingFang SC';
  11192. font-weight:400;
  11193. font-style:normal;
  11194. color:#CCCCCC;
  11195. }
  11196. #u756 {
  11197. position:absolute;
  11198. left:120px;
  11199. top:581px;
  11200. width:300px;
  11201. height:308px;
  11202. font-family:'PingFangSC-Regular', 'PingFang SC';
  11203. font-weight:400;
  11204. font-style:normal;
  11205. color:#CCCCCC;
  11206. }
  11207. #u757 {
  11208. position:absolute;
  11209. left:2px;
  11210. top:146px;
  11211. width:296px;
  11212. visibility:hidden;
  11213. word-wrap:break-word;
  11214. }
  11215. #u758_div {
  11216. position:absolute;
  11217. left:0px;
  11218. top:0px;
  11219. width:145px;
  11220. height:25px;
  11221. background:inherit;
  11222. background-color:rgba(255, 255, 255, 0);
  11223. border:none;
  11224. border-radius:0px;
  11225. -moz-box-shadow:none;
  11226. -webkit-box-shadow:none;
  11227. box-shadow:none;
  11228. font-family:'PingFangSC-Semibold', 'PingFang SC Semibold', 'PingFang SC';
  11229. font-weight:650;
  11230. font-style:normal;
  11231. text-decoration:underline;
  11232. }
  11233. #u758 {
  11234. position:absolute;
  11235. left:198px;
  11236. top:598px;
  11237. width:145px;
  11238. height:25px;
  11239. font-family:'PingFangSC-Semibold', 'PingFang SC Semibold', 'PingFang SC';
  11240. font-weight:650;
  11241. font-style:normal;
  11242. text-decoration:underline;
  11243. }
  11244. #u759 {
  11245. position:absolute;
  11246. left:0px;
  11247. top:0px;
  11248. width:145px;
  11249. white-space:nowrap;
  11250. }
  11251. #u760_div {
  11252. position:absolute;
  11253. left:0px;
  11254. top:0px;
  11255. width:75px;
  11256. height:99px;
  11257. background:inherit;
  11258. background-color:rgba(242, 242, 242, 1);
  11259. border:none;
  11260. border-radius:0px;
  11261. -moz-box-shadow:none;
  11262. -webkit-box-shadow:none;
  11263. box-shadow:none;
  11264. font-family:'PingFangSC-Regular', 'PingFang SC';
  11265. font-weight:400;
  11266. font-style:normal;
  11267. color:#999999;
  11268. }
  11269. #u760 {
  11270. position:absolute;
  11271. left:153px;
  11272. top:656px;
  11273. width:75px;
  11274. height:99px;
  11275. font-family:'PingFangSC-Regular', 'PingFang SC';
  11276. font-weight:400;
  11277. font-style:normal;
  11278. color:#999999;
  11279. }
  11280. #u761 {
  11281. position:absolute;
  11282. left:2px;
  11283. top:40px;
  11284. width:71px;
  11285. word-wrap:break-word;
  11286. }
  11287. #u762_div {
  11288. position:absolute;
  11289. left:0px;
  11290. top:0px;
  11291. width:75px;
  11292. height:99px;
  11293. background:inherit;
  11294. background-color:rgba(242, 242, 242, 1);
  11295. border:none;
  11296. border-radius:0px;
  11297. -moz-box-shadow:none;
  11298. -webkit-box-shadow:none;
  11299. box-shadow:none;
  11300. font-family:'PingFangSC-Regular', 'PingFang SC';
  11301. font-weight:400;
  11302. font-style:normal;
  11303. color:#999999;
  11304. }
  11305. #u762 {
  11306. position:absolute;
  11307. left:153px;
  11308. top:768px;
  11309. width:75px;
  11310. height:99px;
  11311. font-family:'PingFangSC-Regular', 'PingFang SC';
  11312. font-weight:400;
  11313. font-style:normal;
  11314. color:#999999;
  11315. }
  11316. #u763 {
  11317. position:absolute;
  11318. left:2px;
  11319. top:40px;
  11320. width:71px;
  11321. word-wrap:break-word;
  11322. }
  11323. #u764_div {
  11324. position:absolute;
  11325. left:0px;
  11326. top:0px;
  11327. width:171px;
  11328. height:40px;
  11329. background:inherit;
  11330. background-color:rgba(255, 255, 255, 0);
  11331. border:none;
  11332. border-radius:0px;
  11333. -moz-box-shadow:none;
  11334. -webkit-box-shadow:none;
  11335. box-shadow:none;
  11336. }
  11337. #u764 {
  11338. position:absolute;
  11339. left:238px;
  11340. top:686px;
  11341. width:171px;
  11342. height:40px;
  11343. }
  11344. #u765 {
  11345. position:absolute;
  11346. left:0px;
  11347. top:0px;
  11348. width:171px;
  11349. word-wrap:break-word;
  11350. }
  11351. #u766_div {
  11352. position:absolute;
  11353. left:0px;
  11354. top:0px;
  11355. width:71px;
  11356. height:16px;
  11357. background:inherit;
  11358. background-color:rgba(255, 255, 255, 0);
  11359. border:none;
  11360. border-radius:0px;
  11361. -moz-box-shadow:none;
  11362. -webkit-box-shadow:none;
  11363. box-shadow:none;
  11364. font-size:11px;
  11365. color:#999999;
  11366. }
  11367. #u766 {
  11368. position:absolute;
  11369. left:240px;
  11370. top:735px;
  11371. width:71px;
  11372. height:16px;
  11373. font-size:11px;
  11374. color:#999999;
  11375. }
  11376. #u767 {
  11377. position:absolute;
  11378. left:0px;
  11379. top:0px;
  11380. width:71px;
  11381. white-space:nowrap;
  11382. }
  11383. #u768_div {
  11384. position:absolute;
  11385. left:0px;
  11386. top:0px;
  11387. width:171px;
  11388. height:37px;
  11389. background:inherit;
  11390. background-color:rgba(255, 255, 255, 0);
  11391. border:none;
  11392. border-radius:0px;
  11393. -moz-box-shadow:none;
  11394. -webkit-box-shadow:none;
  11395. box-shadow:none;
  11396. }
  11397. #u768 {
  11398. position:absolute;
  11399. left:238px;
  11400. top:802px;
  11401. width:171px;
  11402. height:37px;
  11403. }
  11404. #u769 {
  11405. position:absolute;
  11406. left:0px;
  11407. top:0px;
  11408. width:171px;
  11409. word-wrap:break-word;
  11410. }
  11411. #u770_div {
  11412. position:absolute;
  11413. left:0px;
  11414. top:0px;
  11415. width:69px;
  11416. height:16px;
  11417. background:inherit;
  11418. background-color:rgba(255, 255, 255, 0);
  11419. border:none;
  11420. border-radius:0px;
  11421. -moz-box-shadow:none;
  11422. -webkit-box-shadow:none;
  11423. box-shadow:none;
  11424. font-size:11px;
  11425. color:#999999;
  11426. }
  11427. #u770 {
  11428. position:absolute;
  11429. left:238px;
  11430. top:849px;
  11431. width:69px;
  11432. height:16px;
  11433. font-size:11px;
  11434. color:#999999;
  11435. }
  11436. #u771 {
  11437. position:absolute;
  11438. left:0px;
  11439. top:0px;
  11440. width:69px;
  11441. white-space:nowrap;
  11442. }
  11443. #u772_div {
  11444. position:absolute;
  11445. left:0px;
  11446. top:0px;
  11447. width:300px;
  11448. height:367px;
  11449. background:inherit;
  11450. background-color:rgba(255, 255, 255, 1);
  11451. box-sizing:border-box;
  11452. border-width:1px;
  11453. border-style:solid;
  11454. border-color:rgba(121, 121, 121, 1);
  11455. border-radius:0px;
  11456. -moz-box-shadow:none;
  11457. -webkit-box-shadow:none;
  11458. box-shadow:none;
  11459. font-family:'PingFangSC-Regular', 'PingFang SC';
  11460. font-weight:400;
  11461. font-style:normal;
  11462. color:#CCCCCC;
  11463. }
  11464. #u772 {
  11465. position:absolute;
  11466. left:120px;
  11467. top:899px;
  11468. width:300px;
  11469. height:367px;
  11470. font-family:'PingFangSC-Regular', 'PingFang SC';
  11471. font-weight:400;
  11472. font-style:normal;
  11473. color:#CCCCCC;
  11474. }
  11475. #u773 {
  11476. position:absolute;
  11477. left:2px;
  11478. top:176px;
  11479. width:296px;
  11480. visibility:hidden;
  11481. word-wrap:break-word;
  11482. }
  11483. #u774_div {
  11484. position:absolute;
  11485. left:0px;
  11486. top:0px;
  11487. width:145px;
  11488. height:25px;
  11489. background:inherit;
  11490. background-color:rgba(255, 255, 255, 0);
  11491. border:none;
  11492. border-radius:0px;
  11493. -moz-box-shadow:none;
  11494. -webkit-box-shadow:none;
  11495. box-shadow:none;
  11496. font-family:'PingFangSC-Semibold', 'PingFang SC Semibold', 'PingFang SC';
  11497. font-weight:650;
  11498. font-style:normal;
  11499. text-decoration:underline;
  11500. }
  11501. #u774 {
  11502. position:absolute;
  11503. left:200px;
  11504. top:916px;
  11505. width:145px;
  11506. height:25px;
  11507. font-family:'PingFangSC-Semibold', 'PingFang SC Semibold', 'PingFang SC';
  11508. font-weight:650;
  11509. font-style:normal;
  11510. text-decoration:underline;
  11511. }
  11512. #u775 {
  11513. position:absolute;
  11514. left:0px;
  11515. top:0px;
  11516. width:145px;
  11517. white-space:nowrap;
  11518. }
  11519. #u776_div {
  11520. position:absolute;
  11521. left:0px;
  11522. top:0px;
  11523. width:127px;
  11524. height:20px;
  11525. background:inherit;
  11526. background-color:rgba(255, 255, 255, 0);
  11527. border:none;
  11528. border-radius:0px;
  11529. -moz-box-shadow:none;
  11530. -webkit-box-shadow:none;
  11531. box-shadow:none;
  11532. }
  11533. #u776 {
  11534. position:absolute;
  11535. left:209px;
  11536. top:951px;
  11537. width:127px;
  11538. height:20px;
  11539. }
  11540. #u777 {
  11541. position:absolute;
  11542. left:0px;
  11543. top:0px;
  11544. width:127px;
  11545. white-space:nowrap;
  11546. }
  11547. #u778_div {
  11548. position:absolute;
  11549. left:0px;
  11550. top:0px;
  11551. width:121px;
  11552. height:71px;
  11553. background:inherit;
  11554. background-color:rgba(242, 242, 242, 1);
  11555. border:none;
  11556. border-radius:0px;
  11557. -moz-box-shadow:none;
  11558. -webkit-box-shadow:none;
  11559. box-shadow:none;
  11560. font-family:'PingFangSC-Regular', 'PingFang SC';
  11561. font-weight:400;
  11562. font-style:normal;
  11563. color:#999999;
  11564. }
  11565. #u778 {
  11566. position:absolute;
  11567. left:146px;
  11568. top:995px;
  11569. width:121px;
  11570. height:71px;
  11571. font-family:'PingFangSC-Regular', 'PingFang SC';
  11572. font-weight:400;
  11573. font-style:normal;
  11574. color:#999999;
  11575. }
  11576. #u779 {
  11577. position:absolute;
  11578. left:2px;
  11579. top:26px;
  11580. width:117px;
  11581. word-wrap:break-word;
  11582. }
  11583. #u780_div {
  11584. position:absolute;
  11585. left:0px;
  11586. top:0px;
  11587. width:106px;
  11588. height:20px;
  11589. background:inherit;
  11590. background-color:rgba(255, 255, 255, 0);
  11591. border:none;
  11592. border-radius:0px;
  11593. -moz-box-shadow:none;
  11594. -webkit-box-shadow:none;
  11595. box-shadow:none;
  11596. }
  11597. #u780 {
  11598. position:absolute;
  11599. left:146px;
  11600. top:1076px;
  11601. width:106px;
  11602. height:20px;
  11603. }
  11604. #u781 {
  11605. position:absolute;
  11606. left:0px;
  11607. top:0px;
  11608. width:106px;
  11609. word-wrap:break-word;
  11610. }
  11611. #u782_div {
  11612. position:absolute;
  11613. left:0px;
  11614. top:0px;
  11615. width:121px;
  11616. height:71px;
  11617. background:inherit;
  11618. background-color:rgba(242, 242, 242, 1);
  11619. border:none;
  11620. border-radius:0px;
  11621. -moz-box-shadow:none;
  11622. -webkit-box-shadow:none;
  11623. box-shadow:none;
  11624. font-family:'PingFangSC-Regular', 'PingFang SC';
  11625. font-weight:400;
  11626. font-style:normal;
  11627. color:#999999;
  11628. }
  11629. #u782 {
  11630. position:absolute;
  11631. left:277px;
  11632. top:995px;
  11633. width:121px;
  11634. height:71px;
  11635. font-family:'PingFangSC-Regular', 'PingFang SC';
  11636. font-weight:400;
  11637. font-style:normal;
  11638. color:#999999;
  11639. }
  11640. #u783 {
  11641. position:absolute;
  11642. left:2px;
  11643. top:26px;
  11644. width:117px;
  11645. word-wrap:break-word;
  11646. }
  11647. #u784_div {
  11648. position:absolute;
  11649. left:0px;
  11650. top:0px;
  11651. width:106px;
  11652. height:20px;
  11653. background:inherit;
  11654. background-color:rgba(255, 255, 255, 0);
  11655. border:none;
  11656. border-radius:0px;
  11657. -moz-box-shadow:none;
  11658. -webkit-box-shadow:none;
  11659. box-shadow:none;
  11660. }
  11661. #u784 {
  11662. position:absolute;
  11663. left:277px;
  11664. top:1076px;
  11665. width:106px;
  11666. height:20px;
  11667. }
  11668. #u785 {
  11669. position:absolute;
  11670. left:0px;
  11671. top:0px;
  11672. width:106px;
  11673. word-wrap:break-word;
  11674. }
  11675. #u786_div {
  11676. position:absolute;
  11677. left:0px;
  11678. top:0px;
  11679. width:121px;
  11680. height:71px;
  11681. background:inherit;
  11682. background-color:rgba(242, 242, 242, 1);
  11683. border:none;
  11684. border-radius:0px;
  11685. -moz-box-shadow:none;
  11686. -webkit-box-shadow:none;
  11687. box-shadow:none;
  11688. font-family:'PingFangSC-Regular', 'PingFang SC';
  11689. font-weight:400;
  11690. font-style:normal;
  11691. color:#999999;
  11692. }
  11693. #u786 {
  11694. position:absolute;
  11695. left:146px;
  11696. top:1123px;
  11697. width:121px;
  11698. height:71px;
  11699. font-family:'PingFangSC-Regular', 'PingFang SC';
  11700. font-weight:400;
  11701. font-style:normal;
  11702. color:#999999;
  11703. }
  11704. #u787 {
  11705. position:absolute;
  11706. left:2px;
  11707. top:26px;
  11708. width:117px;
  11709. word-wrap:break-word;
  11710. }
  11711. #u788_div {
  11712. position:absolute;
  11713. left:0px;
  11714. top:0px;
  11715. width:106px;
  11716. height:20px;
  11717. background:inherit;
  11718. background-color:rgba(255, 255, 255, 0);
  11719. border:none;
  11720. border-radius:0px;
  11721. -moz-box-shadow:none;
  11722. -webkit-box-shadow:none;
  11723. box-shadow:none;
  11724. }
  11725. #u788 {
  11726. position:absolute;
  11727. left:146px;
  11728. top:1204px;
  11729. width:106px;
  11730. height:20px;
  11731. }
  11732. #u789 {
  11733. position:absolute;
  11734. left:0px;
  11735. top:0px;
  11736. width:106px;
  11737. word-wrap:break-word;
  11738. }
  11739. #u790_div {
  11740. position:absolute;
  11741. left:0px;
  11742. top:0px;
  11743. width:121px;
  11744. height:71px;
  11745. background:inherit;
  11746. background-color:rgba(242, 242, 242, 1);
  11747. border:none;
  11748. border-radius:0px;
  11749. -moz-box-shadow:none;
  11750. -webkit-box-shadow:none;
  11751. box-shadow:none;
  11752. font-family:'PingFangSC-Regular', 'PingFang SC';
  11753. font-weight:400;
  11754. font-style:normal;
  11755. color:#999999;
  11756. }
  11757. #u790 {
  11758. position:absolute;
  11759. left:277px;
  11760. top:1123px;
  11761. width:121px;
  11762. height:71px;
  11763. font-family:'PingFangSC-Regular', 'PingFang SC';
  11764. font-weight:400;
  11765. font-style:normal;
  11766. color:#999999;
  11767. }
  11768. #u791 {
  11769. position:absolute;
  11770. left:2px;
  11771. top:26px;
  11772. width:117px;
  11773. word-wrap:break-word;
  11774. }
  11775. #u792_div {
  11776. position:absolute;
  11777. left:0px;
  11778. top:0px;
  11779. width:106px;
  11780. height:20px;
  11781. background:inherit;
  11782. background-color:rgba(255, 255, 255, 0);
  11783. border:none;
  11784. border-radius:0px;
  11785. -moz-box-shadow:none;
  11786. -webkit-box-shadow:none;
  11787. box-shadow:none;
  11788. }
  11789. #u792 {
  11790. position:absolute;
  11791. left:277px;
  11792. top:1204px;
  11793. width:106px;
  11794. height:20px;
  11795. }
  11796. #u793 {
  11797. position:absolute;
  11798. left:0px;
  11799. top:0px;
  11800. width:106px;
  11801. word-wrap:break-word;
  11802. }
  11803. #u794_div {
  11804. position:absolute;
  11805. left:0px;
  11806. top:0px;
  11807. width:113px;
  11808. height:20px;
  11809. background:inherit;
  11810. background-color:rgba(255, 255, 255, 0);
  11811. border:none;
  11812. border-radius:0px;
  11813. -moz-box-shadow:none;
  11814. -webkit-box-shadow:none;
  11815. box-shadow:none;
  11816. font-family:'PingFangSC-Regular', 'PingFang SC';
  11817. font-weight:400;
  11818. font-style:normal;
  11819. }
  11820. #u794 {
  11821. position:absolute;
  11822. left:214px;
  11823. top:382px;
  11824. width:113px;
  11825. height:20px;
  11826. font-family:'PingFangSC-Regular', 'PingFang SC';
  11827. font-weight:400;
  11828. font-style:normal;
  11829. }
  11830. #u795 {
  11831. position:absolute;
  11832. left:0px;
  11833. top:0px;
  11834. width:113px;
  11835. white-space:nowrap;
  11836. }
  11837. #u796_div {
  11838. position:absolute;
  11839. left:0px;
  11840. top:0px;
  11841. width:197px;
  11842. height:20px;
  11843. background:inherit;
  11844. background-color:rgba(255, 255, 255, 0);
  11845. border:none;
  11846. border-radius:0px;
  11847. -moz-box-shadow:none;
  11848. -webkit-box-shadow:none;
  11849. box-shadow:none;
  11850. font-family:'PingFangSC-Regular', 'PingFang SC';
  11851. font-weight:400;
  11852. font-style:normal;
  11853. }
  11854. #u796 {
  11855. position:absolute;
  11856. left:172px;
  11857. top:626px;
  11858. width:197px;
  11859. height:20px;
  11860. font-family:'PingFangSC-Regular', 'PingFang SC';
  11861. font-weight:400;
  11862. font-style:normal;
  11863. }
  11864. #u797 {
  11865. position:absolute;
  11866. left:0px;
  11867. top:0px;
  11868. width:197px;
  11869. white-space:nowrap;
  11870. }