jiangzhong-liver-voc-validation-report.html 738 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135113611371138113911401141114211431144114511461147114811491150115111521153115411551156115711581159116011611162116311641165116611671168116911701171117211731174117511761177117811791180118111821183118411851186118711881189119011911192119311941195119611971198119912001201120212031204120512061207120812091210121112121213121412151216121712181219122012211222122312241225122612271228122912301231123212331234123512361237123812391240124112421243124412451246124712481249125012511252125312541255125612571258125912601261126212631264126512661267126812691270127112721273127412751276127712781279128012811282128312841285128612871288128912901291129212931294129512961297129812991300130113021303130413051306130713081309131013111312131313141315131613171318131913201321132213231324132513261327132813291330133113321333133413351336133713381339134013411342134313441345134613471348134913501351135213531354135513561357135813591360136113621363136413651366136713681369137013711372137313741375137613771378137913801381138213831384138513861387138813891390139113921393139413951396139713981399140014011402140314041405140614071408140914101411141214131414141514161417141814191420142114221423142414251426142714281429143014311432143314341435143614371438143914401441144214431444144514461447144814491450145114521453145414551456145714581459146014611462146314641465146614671468146914701471147214731474147514761477147814791480148114821483148414851486148714881489149014911492149314941495149614971498149915001501150215031504150515061507150815091510151115121513151415151516151715181519152015211522152315241525152615271528152915301531153215331534153515361537153815391540154115421543154415451546154715481549155015511552155315541555155615571558155915601561156215631564156515661567156815691570157115721573157415751576157715781579158015811582158315841585158615871588158915901591159215931594159515961597159815991600160116021603160416051606160716081609161016111612161316141615161616171618161916201621162216231624162516261627162816291630163116321633163416351636163716381639164016411642164316441645164616471648164916501651165216531654165516561657165816591660166116621663166416651666166716681669167016711672167316741675167616771678167916801681168216831684168516861687168816891690169116921693169416951696169716981699170017011702170317041705170617071708170917101711171217131714171517161717171817191720172117221723172417251726172717281729173017311732173317341735173617371738173917401741174217431744174517461747174817491750175117521753175417551756175717581759176017611762176317641765176617671768176917701771177217731774177517761777177817791780178117821783178417851786178717881789179017911792179317941795179617971798179918001801180218031804180518061807180818091810181118121813181418151816181718181819182018211822182318241825182618271828182918301831183218331834183518361837183818391840184118421843184418451846184718481849185018511852185318541855185618571858185918601861186218631864186518661867186818691870187118721873187418751876187718781879188018811882188318841885188618871888188918901891189218931894189518961897189818991900190119021903190419051906190719081909191019111912191319141915191619171918191919201921192219231924192519261927192819291930193119321933193419351936193719381939194019411942194319441945194619471948194919501951195219531954195519561957195819591960196119621963196419651966196719681969197019711972197319741975197619771978197919801981198219831984198519861987198819891990199119921993199419951996199719981999200020012002200320042005200620072008200920102011201220132014201520162017201820192020202120222023202420252026202720282029203020312032203320342035203620372038203920402041204220432044204520462047204820492050205120522053205420552056205720582059206020612062206320642065206620672068206920702071207220732074207520762077207820792080208120822083208420852086208720882089209020912092209320942095209620972098209921002101210221032104210521062107210821092110211121122113211421152116211721182119212021212122212321242125212621272128212921302131213221332134213521362137213821392140214121422143214421452146214721482149215021512152215321542155215621572158215921602161216221632164216521662167216821692170217121722173217421752176217721782179218021812182218321842185218621872188218921902191219221932194219521962197219821992200220122022203220422052206220722082209221022112212221322142215221622172218221922202221222222232224222522262227222822292230223122322233223422352236223722382239224022412242224322442245224622472248224922502251225222532254225522562257225822592260226122622263226422652266226722682269227022712272227322742275227622772278227922802281228222832284228522862287228822892290229122922293229422952296229722982299230023012302230323042305230623072308230923102311231223132314231523162317231823192320232123222323232423252326232723282329233023312332233323342335233623372338233923402341234223432344234523462347234823492350235123522353235423552356235723582359236023612362236323642365236623672368236923702371237223732374237523762377237823792380238123822383238423852386238723882389239023912392239323942395239623972398239924002401240224032404240524062407240824092410241124122413241424152416241724182419242024212422242324242425242624272428242924302431243224332434243524362437243824392440244124422443244424452446244724482449245024512452245324542455245624572458245924602461246224632464246524662467246824692470247124722473247424752476247724782479248024812482248324842485248624872488248924902491249224932494249524962497249824992500250125022503250425052506250725082509251025112512251325142515251625172518251925202521252225232524252525262527252825292530253125322533253425352536253725382539254025412542254325442545254625472548254925502551255225532554255525562557255825592560256125622563256425652566256725682569257025712572257325742575257625772578257925802581258225832584258525862587258825892590259125922593259425952596259725982599260026012602260326042605260626072608260926102611261226132614261526162617261826192620262126222623262426252626262726282629263026312632263326342635263626372638263926402641264226432644264526462647264826492650265126522653265426552656265726582659266026612662266326642665266626672668266926702671267226732674267526762677267826792680268126822683268426852686268726882689269026912692269326942695269626972698269927002701270227032704270527062707270827092710271127122713271427152716271727182719272027212722272327242725272627272728272927302731273227332734273527362737273827392740274127422743274427452746274727482749275027512752275327542755275627572758275927602761276227632764276527662767276827692770277127722773277427752776277727782779278027812782278327842785278627872788278927902791279227932794279527962797279827992800280128022803280428052806280728082809281028112812281328142815281628172818281928202821282228232824282528262827282828292830283128322833283428352836283728382839284028412842284328442845284628472848284928502851285228532854285528562857285828592860286128622863286428652866286728682869287028712872287328742875287628772878287928802881288228832884288528862887288828892890289128922893289428952896289728982899290029012902290329042905290629072908290929102911291229132914291529162917291829192920292129222923292429252926292729282929293029312932293329342935293629372938293929402941294229432944294529462947294829492950295129522953295429552956295729582959296029612962296329642965296629672968296929702971297229732974297529762977297829792980298129822983298429852986298729882989299029912992299329942995299629972998299930003001300230033004300530063007300830093010301130123013301430153016301730183019302030213022302330243025302630273028302930303031303230333034303530363037303830393040304130423043304430453046304730483049305030513052305330543055305630573058305930603061306230633064306530663067306830693070307130723073307430753076307730783079308030813082308330843085308630873088308930903091309230933094309530963097309830993100310131023103310431053106310731083109311031113112311331143115311631173118311931203121312231233124312531263127312831293130313131323133313431353136313731383139314031413142314331443145314631473148314931503151315231533154315531563157315831593160316131623163316431653166316731683169317031713172317331743175317631773178317931803181318231833184318531863187318831893190319131923193319431953196319731983199320032013202320332043205320632073208320932103211321232133214321532163217321832193220322132223223322432253226322732283229323032313232323332343235323632373238323932403241324232433244324532463247324832493250325132523253325432553256325732583259326032613262326332643265326632673268326932703271327232733274327532763277327832793280328132823283328432853286328732883289329032913292329332943295329632973298329933003301330233033304330533063307330833093310331133123313331433153316331733183319332033213322332333243325332633273328332933303331333233333334333533363337333833393340334133423343334433453346334733483349335033513352335333543355335633573358335933603361336233633364336533663367336833693370337133723373337433753376337733783379338033813382338333843385338633873388338933903391339233933394339533963397339833993400340134023403340434053406340734083409341034113412341334143415341634173418341934203421342234233424342534263427342834293430343134323433343434353436343734383439344034413442344334443445344634473448344934503451345234533454345534563457345834593460346134623463346434653466346734683469347034713472347334743475347634773478347934803481348234833484348534863487348834893490349134923493349434953496349734983499350035013502350335043505350635073508350935103511351235133514351535163517351835193520352135223523352435253526352735283529353035313532353335343535353635373538353935403541354235433544354535463547354835493550355135523553355435553556355735583559356035613562356335643565356635673568356935703571357235733574357535763577357835793580358135823583358435853586358735883589359035913592359335943595359635973598359936003601360236033604360536063607360836093610361136123613361436153616361736183619362036213622362336243625362636273628362936303631363236333634363536363637363836393640364136423643364436453646364736483649365036513652365336543655365636573658365936603661366236633664366536663667366836693670367136723673367436753676367736783679368036813682368336843685368636873688368936903691369236933694369536963697369836993700370137023703370437053706370737083709371037113712371337143715371637173718371937203721372237233724372537263727372837293730373137323733373437353736373737383739374037413742374337443745374637473748374937503751375237533754375537563757375837593760376137623763376437653766376737683769377037713772377337743775377637773778377937803781378237833784378537863787378837893790379137923793379437953796379737983799380038013802380338043805380638073808380938103811381238133814381538163817381838193820382138223823382438253826382738283829383038313832383338343835383638373838383938403841384238433844384538463847384838493850385138523853385438553856385738583859386038613862386338643865386638673868386938703871387238733874387538763877387838793880388138823883388438853886388738883889389038913892389338943895389638973898389939003901390239033904390539063907390839093910391139123913391439153916391739183919392039213922392339243925392639273928392939303931393239333934393539363937393839393940394139423943394439453946394739483949395039513952395339543955395639573958395939603961396239633964396539663967396839693970397139723973397439753976397739783979398039813982398339843985398639873988398939903991399239933994399539963997399839994000400140024003400440054006400740084009401040114012401340144015401640174018401940204021402240234024402540264027402840294030403140324033403440354036403740384039404040414042404340444045404640474048404940504051405240534054405540564057405840594060406140624063406440654066406740684069407040714072407340744075407640774078407940804081408240834084408540864087408840894090409140924093409440954096409740984099410041014102410341044105410641074108410941104111411241134114411541164117411841194120412141224123412441254126412741284129413041314132413341344135413641374138413941404141414241434144414541464147414841494150415141524153415441554156415741584159416041614162416341644165416641674168416941704171417241734174417541764177417841794180418141824183418441854186418741884189419041914192419341944195419641974198419942004201420242034204420542064207420842094210421142124213421442154216421742184219422042214222422342244225422642274228422942304231423242334234423542364237423842394240424142424243424442454246424742484249425042514252425342544255425642574258425942604261426242634264426542664267426842694270427142724273427442754276427742784279428042814282428342844285428642874288428942904291429242934294429542964297429842994300430143024303430443054306430743084309431043114312431343144315431643174318431943204321432243234324432543264327432843294330433143324333433443354336433743384339434043414342434343444345434643474348434943504351435243534354435543564357435843594360436143624363436443654366436743684369437043714372437343744375437643774378437943804381438243834384438543864387438843894390439143924393439443954396439743984399440044014402440344044405440644074408440944104411441244134414441544164417441844194420442144224423442444254426442744284429443044314432443344344435443644374438443944404441444244434444444544464447444844494450445144524453445444554456445744584459446044614462446344644465446644674468446944704471447244734474447544764477447844794480448144824483448444854486448744884489449044914492449344944495449644974498449945004501450245034504450545064507450845094510451145124513451445154516451745184519452045214522452345244525452645274528452945304531453245334534453545364537453845394540454145424543454445454546454745484549455045514552455345544555455645574558455945604561456245634564456545664567456845694570457145724573457445754576457745784579458045814582458345844585458645874588458945904591459245934594459545964597459845994600460146024603460446054606460746084609461046114612461346144615461646174618461946204621462246234624462546264627462846294630463146324633463446354636463746384639464046414642464346444645464646474648464946504651465246534654465546564657465846594660466146624663466446654666466746684669467046714672467346744675467646774678467946804681468246834684468546864687468846894690469146924693469446954696469746984699470047014702470347044705470647074708470947104711471247134714471547164717471847194720472147224723472447254726472747284729473047314732473347344735473647374738473947404741474247434744474547464747474847494750475147524753475447554756475747584759476047614762476347644765476647674768476947704771477247734774477547764777477847794780478147824783478447854786478747884789479047914792479347944795479647974798479948004801480248034804480548064807480848094810481148124813481448154816481748184819482048214822482348244825482648274828482948304831483248334834483548364837483848394840484148424843484448454846484748484849485048514852485348544855485648574858485948604861486248634864486548664867486848694870487148724873487448754876487748784879488048814882488348844885488648874888488948904891489248934894489548964897489848994900490149024903490449054906490749084909491049114912491349144915491649174918491949204921492249234924492549264927492849294930493149324933493449354936493749384939494049414942494349444945494649474948494949504951495249534954495549564957495849594960496149624963496449654966496749684969497049714972497349744975497649774978497949804981498249834984498549864987498849894990499149924993499449954996499749984999500050015002500350045005500650075008500950105011501250135014501550165017501850195020502150225023502450255026502750285029503050315032503350345035503650375038503950405041504250435044504550465047504850495050505150525053505450555056505750585059506050615062506350645065506650675068506950705071507250735074507550765077507850795080508150825083508450855086508750885089509050915092509350945095509650975098509951005101510251035104510551065107510851095110511151125113511451155116511751185119512051215122512351245125512651275128512951305131513251335134513551365137513851395140514151425143514451455146514751485149515051515152515351545155515651575158515951605161516251635164516551665167516851695170517151725173517451755176517751785179518051815182518351845185518651875188518951905191519251935194519551965197519851995200520152025203520452055206520752085209521052115212521352145215521652175218521952205221522252235224522552265227522852295230523152325233523452355236523752385239524052415242524352445245524652475248524952505251525252535254525552565257525852595260526152625263526452655266526752685269527052715272527352745275527652775278527952805281528252835284528552865287528852895290529152925293529452955296529752985299530053015302530353045305530653075308530953105311531253135314531553165317531853195320532153225323532453255326532753285329533053315332533353345335533653375338533953405341534253435344534553465347534853495350535153525353535453555356535753585359536053615362536353645365536653675368536953705371537253735374537553765377537853795380538153825383538453855386538753885389539053915392539353945395539653975398539954005401540254035404540554065407540854095410541154125413541454155416541754185419542054215422542354245425542654275428542954305431543254335434543554365437543854395440544154425443544454455446544754485449545054515452545354545455545654575458545954605461546254635464546554665467546854695470547154725473547454755476547754785479548054815482548354845485548654875488548954905491549254935494549554965497549854995500550155025503550455055506550755085509551055115512551355145515551655175518551955205521552255235524552555265527552855295530553155325533553455355536553755385539554055415542554355445545554655475548554955505551555255535554555555565557555855595560556155625563556455655566556755685569557055715572557355745575557655775578557955805581558255835584558555865587558855895590559155925593559455955596559755985599560056015602560356045605560656075608560956105611561256135614561556165617561856195620562156225623562456255626562756285629563056315632563356345635563656375638563956405641564256435644564556465647564856495650565156525653565456555656565756585659566056615662566356645665566656675668566956705671567256735674567556765677567856795680568156825683568456855686568756885689569056915692569356945695569656975698569957005701570257035704570557065707570857095710571157125713571457155716571757185719572057215722572357245725572657275728572957305731573257335734573557365737573857395740574157425743574457455746574757485749575057515752575357545755575657575758575957605761576257635764576557665767576857695770577157725773577457755776577757785779578057815782578357845785578657875788578957905791579257935794579557965797579857995800580158025803580458055806580758085809581058115812581358145815581658175818581958205821582258235824582558265827582858295830583158325833583458355836583758385839584058415842584358445845584658475848584958505851585258535854585558565857585858595860586158625863586458655866586758685869587058715872587358745875587658775878587958805881588258835884588558865887588858895890589158925893589458955896589758985899590059015902590359045905590659075908590959105911591259135914591559165917591859195920592159225923592459255926592759285929593059315932593359345935593659375938593959405941594259435944594559465947594859495950595159525953595459555956595759585959596059615962596359645965596659675968596959705971597259735974597559765977597859795980598159825983598459855986598759885989599059915992599359945995599659975998599960006001600260036004600560066007600860096010601160126013601460156016601760186019602060216022602360246025602660276028602960306031603260336034603560366037603860396040604160426043604460456046604760486049605060516052605360546055605660576058605960606061606260636064606560666067606860696070607160726073607460756076607760786079608060816082608360846085608660876088608960906091609260936094609560966097609860996100610161026103610461056106610761086109611061116112611361146115611661176118611961206121612261236124612561266127612861296130613161326133613461356136613761386139614061416142614361446145614661476148614961506151615261536154615561566157615861596160616161626163616461656166616761686169617061716172617361746175617661776178617961806181618261836184618561866187618861896190619161926193619461956196619761986199620062016202620362046205620662076208620962106211621262136214621562166217621862196220622162226223622462256226622762286229623062316232623362346235623662376238623962406241624262436244624562466247624862496250625162526253625462556256625762586259626062616262626362646265626662676268626962706271627262736274627562766277627862796280628162826283628462856286628762886289629062916292629362946295629662976298629963006301630263036304630563066307630863096310631163126313631463156316631763186319632063216322632363246325632663276328632963306331633263336334633563366337633863396340634163426343634463456346634763486349635063516352635363546355635663576358635963606361636263636364636563666367636863696370637163726373637463756376637763786379638063816382638363846385638663876388638963906391639263936394639563966397639863996400640164026403640464056406640764086409641064116412641364146415641664176418641964206421642264236424642564266427642864296430643164326433643464356436643764386439644064416442644364446445644664476448644964506451645264536454645564566457645864596460646164626463646464656466646764686469647064716472647364746475647664776478647964806481648264836484648564866487648864896490649164926493649464956496649764986499650065016502650365046505650665076508650965106511651265136514651565166517651865196520652165226523652465256526652765286529653065316532653365346535653665376538653965406541654265436544654565466547654865496550655165526553655465556556655765586559656065616562656365646565656665676568656965706571657265736574657565766577657865796580658165826583658465856586658765886589659065916592659365946595659665976598659966006601660266036604660566066607660866096610661166126613661466156616661766186619662066216622662366246625662666276628662966306631663266336634663566366637663866396640664166426643664466456646664766486649665066516652665366546655665666576658665966606661666266636664666566666667666866696670667166726673667466756676667766786679668066816682668366846685668666876688668966906691669266936694669566966697669866996700670167026703670467056706670767086709671067116712671367146715671667176718671967206721672267236724672567266727672867296730673167326733673467356736673767386739674067416742674367446745674667476748674967506751675267536754675567566757675867596760676167626763676467656766676767686769677067716772677367746775677667776778677967806781678267836784678567866787678867896790679167926793679467956796679767986799680068016802680368046805680668076808680968106811681268136814681568166817681868196820682168226823682468256826682768286829683068316832683368346835683668376838683968406841684268436844684568466847684868496850685168526853685468556856685768586859686068616862686368646865686668676868686968706871687268736874687568766877687868796880688168826883688468856886688768886889689068916892689368946895689668976898689969006901690269036904690569066907690869096910691169126913691469156916691769186919692069216922692369246925692669276928692969306931693269336934693569366937693869396940694169426943694469456946694769486949695069516952695369546955695669576958695969606961696269636964696569666967696869696970697169726973697469756976697769786979698069816982698369846985698669876988698969906991699269936994699569966997699869997000700170027003700470057006700770087009701070117012701370147015701670177018701970207021702270237024702570267027702870297030703170327033703470357036703770387039704070417042704370447045704670477048704970507051705270537054705570567057705870597060706170627063706470657066706770687069707070717072707370747075707670777078707970807081708270837084708570867087708870897090709170927093709470957096709770987099710071017102710371047105710671077108710971107111711271137114711571167117711871197120712171227123712471257126712771287129713071317132713371347135713671377138713971407141714271437144714571467147714871497150715171527153715471557156715771587159716071617162716371647165716671677168716971707171717271737174717571767177717871797180718171827183718471857186718771887189719071917192719371947195719671977198719972007201720272037204720572067207720872097210721172127213721472157216721772187219722072217222722372247225722672277228722972307231723272337234723572367237723872397240724172427243724472457246724772487249725072517252725372547255725672577258725972607261726272637264726572667267726872697270727172727273727472757276727772787279728072817282728372847285728672877288728972907291729272937294729572967297729872997300730173027303730473057306730773087309731073117312731373147315731673177318731973207321732273237324732573267327732873297330733173327333733473357336733773387339734073417342734373447345734673477348734973507351735273537354735573567357735873597360736173627363736473657366736773687369737073717372737373747375737673777378737973807381738273837384738573867387738873897390739173927393739473957396739773987399740074017402740374047405740674077408740974107411741274137414741574167417741874197420742174227423742474257426742774287429743074317432743374347435743674377438743974407441744274437444744574467447744874497450745174527453745474557456745774587459746074617462746374647465746674677468746974707471747274737474747574767477747874797480748174827483748474857486748774887489749074917492749374947495749674977498749975007501750275037504750575067507750875097510751175127513751475157516751775187519752075217522752375247525752675277528752975307531753275337534753575367537753875397540754175427543754475457546754775487549755075517552755375547555755675577558755975607561756275637564756575667567756875697570757175727573757475757576757775787579758075817582758375847585758675877588758975907591759275937594759575967597759875997600760176027603760476057606760776087609761076117612761376147615761676177618761976207621762276237624762576267627762876297630763176327633763476357636763776387639764076417642764376447645764676477648764976507651765276537654765576567657765876597660766176627663766476657666766776687669767076717672767376747675767676777678767976807681768276837684768576867687768876897690769176927693769476957696769776987699770077017702770377047705770677077708770977107711771277137714771577167717771877197720772177227723772477257726772777287729773077317732773377347735773677377738773977407741774277437744774577467747774877497750775177527753775477557756775777587759776077617762776377647765776677677768776977707771777277737774777577767777777877797780778177827783778477857786778777887789779077917792779377947795779677977798779978007801780278037804780578067807780878097810781178127813781478157816781778187819782078217822782378247825782678277828782978307831783278337834783578367837783878397840784178427843784478457846784778487849785078517852785378547855785678577858785978607861786278637864786578667867786878697870787178727873787478757876787778787879788078817882788378847885788678877888788978907891789278937894789578967897789878997900790179027903790479057906790779087909791079117912791379147915791679177918791979207921792279237924792579267927792879297930793179327933793479357936793779387939794079417942794379447945794679477948794979507951795279537954795579567957795879597960796179627963796479657966796779687969797079717972797379747975797679777978797979807981798279837984798579867987798879897990799179927993799479957996799779987999800080018002800380048005800680078008800980108011801280138014801580168017801880198020802180228023802480258026802780288029803080318032803380348035803680378038803980408041804280438044804580468047804880498050805180528053805480558056805780588059806080618062806380648065806680678068806980708071807280738074807580768077807880798080808180828083808480858086808780888089809080918092809380948095809680978098809981008101810281038104810581068107810881098110811181128113811481158116811781188119812081218122812381248125812681278128812981308131813281338134813581368137813881398140814181428143814481458146814781488149815081518152815381548155815681578158815981608161816281638164816581668167816881698170817181728173817481758176817781788179818081818182818381848185818681878188818981908191819281938194819581968197819881998200820182028203820482058206820782088209821082118212821382148215821682178218821982208221822282238224822582268227822882298230823182328233823482358236823782388239824082418242824382448245824682478248824982508251825282538254825582568257825882598260826182628263826482658266826782688269827082718272827382748275827682778278827982808281828282838284828582868287828882898290829182928293829482958296829782988299830083018302830383048305830683078308830983108311831283138314831583168317831883198320832183228323832483258326832783288329833083318332833383348335833683378338833983408341834283438344834583468347834883498350835183528353835483558356835783588359836083618362836383648365836683678368836983708371837283738374837583768377837883798380838183828383838483858386838783888389839083918392839383948395839683978398839984008401840284038404840584068407840884098410841184128413841484158416841784188419842084218422842384248425842684278428842984308431843284338434843584368437843884398440844184428443844484458446844784488449845084518452845384548455845684578458845984608461846284638464846584668467846884698470847184728473847484758476847784788479848084818482848384848485848684878488848984908491849284938494849584968497849884998500850185028503850485058506850785088509851085118512851385148515851685178518851985208521852285238524852585268527852885298530853185328533853485358536853785388539854085418542854385448545854685478548854985508551855285538554855585568557855885598560856185628563856485658566856785688569857085718572857385748575857685778578857985808581858285838584858585868587858885898590859185928593859485958596859785988599860086018602860386048605860686078608860986108611861286138614861586168617861886198620862186228623862486258626862786288629863086318632863386348635863686378638863986408641864286438644864586468647864886498650865186528653865486558656865786588659866086618662866386648665866686678668866986708671867286738674867586768677867886798680868186828683868486858686868786888689869086918692869386948695869686978698869987008701870287038704870587068707870887098710871187128713871487158716871787188719872087218722872387248725872687278728872987308731873287338734873587368737873887398740874187428743874487458746874787488749875087518752875387548755875687578758875987608761876287638764876587668767876887698770877187728773877487758776877787788779878087818782878387848785878687878788878987908791879287938794879587968797879887998800880188028803880488058806880788088809881088118812881388148815881688178818881988208821882288238824882588268827882888298830883188328833883488358836883788388839884088418842884388448845884688478848884988508851885288538854885588568857885888598860886188628863886488658866886788688869887088718872887388748875887688778878887988808881888288838884888588868887888888898890889188928893889488958896889788988899890089018902890389048905890689078908890989108911891289138914891589168917891889198920892189228923892489258926892789288929893089318932893389348935893689378938893989408941894289438944894589468947894889498950895189528953895489558956895789588959896089618962896389648965896689678968896989708971897289738974897589768977897889798980898189828983898489858986898789888989899089918992899389948995899689978998899990009001900290039004900590069007900890099010901190129013901490159016901790189019902090219022902390249025902690279028902990309031903290339034903590369037903890399040904190429043904490459046904790489049905090519052905390549055905690579058905990609061906290639064906590669067906890699070907190729073907490759076907790789079908090819082908390849085908690879088908990909091909290939094909590969097909890999100
  1. <!DOCTYPE html>
  2. <html lang="zh-CN">
  3. <head>
  4. <meta charset="UTF-8"/>
  5. <meta name="viewport" content="width=device-width, initial-scale=1.0"/>
  6. <title>江中肝纯片 · VOC 验证报告 · 10亿×4渠道×5模块</title>
  7. <style>
  8. :root {
  9. --bg-0: #0A0A0A;
  10. --bg-1: #111111;
  11. --bg-2: #1A1A1A;
  12. --bg-3: #252525;
  13. --border: rgba(255,255,255,0.08);
  14. --border-strong: rgba(255,255,255,0.16);
  15. --text-1: #F5F5F5;
  16. --text-2: #A8A8A8;
  17. --text-3: #6B6B6B;
  18. --amber: #F5A623;
  19. --amber-glow: rgba(245,166,35,0.15);
  20. --green: #00DC82;
  21. --purple: #8B5CF6;
  22. --rose: #FF4D8D;
  23. --blue: #3B82F6;
  24. --red: #EF4444;
  25. --font-head: 'Inter','Noto Sans SC','PingFang SC','Hiragino Sans GB','Microsoft YaHei','微软雅黑','Source Han Sans CN',system-ui,-apple-system,BlinkMacSystemFont,sans-serif;
  26. --font-body: 'Noto Sans SC','Inter','PingFang SC','Hiragino Sans GB','Microsoft YaHei','微软雅黑','Source Han Sans CN',system-ui,-apple-system,BlinkMacSystemFont,sans-serif;
  27. --font-mono: 'JetBrains Mono','SF Mono','Fira Code','Cascadia Code',Consolas,'Courier New',monospace;
  28. --max-w: 1280px;
  29. --radius-sm: 8px;
  30. --radius-md: 12px;
  31. --radius-lg: 20px;
  32. }
  33. * { margin: 0; padding: 0; box-sizing: border-box; }
  34. html {
  35. scroll-behavior: smooth;
  36. font-size: 16px;
  37. /* 轻 snap:不打断流式浏览,但在接近 slide 时会贴合 */
  38. scroll-snap-type: y proximity;
  39. }
  40. @media (prefers-reduced-motion: reduce) {
  41. html { scroll-snap-type: none; scroll-behavior: auto; }
  42. }
  43. body {
  44. font-family: var(--font-body);
  45. background: var(--bg-0);
  46. color: var(--text-1);
  47. line-height: 1.65;
  48. -webkit-font-smoothing: antialiased;
  49. overflow-x: hidden;
  50. position: relative;
  51. }
  52. /* 全局 ambient 光晕 —— 伴随 slide 切换缓慢漂移 */
  53. body::before {
  54. content: '';
  55. position: fixed; inset: 0; pointer-events: none; z-index: 0;
  56. background:
  57. radial-gradient(ellipse 900px 700px at var(--amb-x, 20%) var(--amb-y, 25%), rgba(245,166,35,0.10), transparent 60%),
  58. radial-gradient(ellipse 800px 600px at calc(100% - var(--amb-x, 20%)) calc(100% - var(--amb-y, 25%)), rgba(139,92,246,0.07), transparent 60%);
  59. transition: background 1.4s cubic-bezier(.2,.7,.2,1);
  60. }
  61. body::after {
  62. content: '';
  63. position: fixed; inset: 0; pointer-events: none; z-index: 0;
  64. background-image:
  65. linear-gradient(rgba(255,255,255,0.015) 1px, transparent 1px),
  66. linear-gradient(90deg, rgba(255,255,255,0.015) 1px, transparent 1px);
  67. background-size: 80px 80px;
  68. mask-image: radial-gradient(ellipse 90% 95% at 50% 50%, black 0%, transparent 85%);
  69. -webkit-mask-image: radial-gradient(ellipse 90% 95% at 50% 50%, black 0%, transparent 85%);
  70. }
  71. main.deck { position: relative; z-index: 1; }
  72. ::selection { background: var(--amber); color: #000; }
  73. a { color: inherit; text-decoration: none; }
  74. img { max-width: 100%; display: block; }
  75. .text-hero { font-family: var(--font-head); font-weight: 900; letter-spacing: -0.04em; line-height: 0.95; font-size: clamp(4rem, 12vw, 10rem); }
  76. .text-poster { font-family: var(--font-head); font-weight: 800; letter-spacing: -0.03em; line-height: 1.05; font-size: clamp(2.5rem, 6vw, 5rem); }
  77. .text-h1 { font-family: var(--font-head); font-weight: 700; letter-spacing: -0.02em; line-height: 1.1; font-size: clamp(2rem, 4vw, 3.5rem); }
  78. .text-h2 { font-family: var(--font-head); font-weight: 700; letter-spacing: -0.015em; line-height: 1.2; font-size: clamp(1.4rem, 2.5vw, 2rem); }
  79. .text-h3 { font-weight: 600; font-size: clamp(1.05rem, 1.6vw, 1.3rem); letter-spacing: -0.01em; }
  80. .text-body { font-size: clamp(0.92rem, 1.1vw, 1rem); line-height: 1.75; color: var(--text-2); }
  81. .text-sm { font-size: 0.85rem; color: var(--text-2); }
  82. .text-xs { font-size: 0.72rem; color: var(--text-3); letter-spacing: 0.02em; }
  83. .text-mono { font-family: var(--font-mono); }
  84. .text-amber { color: var(--amber); }
  85. .text-green { color: var(--green); }
  86. .text-purple { color: var(--purple); }
  87. .text-rose { color: var(--rose); }
  88. .text-blue { color: var(--blue); }
  89. .text-red { color: var(--red); }
  90. section.report-section {
  91. min-height: 100vh;
  92. padding: clamp(60px, 10vh, 120px) clamp(24px, 6vw, 80px);
  93. position: relative;
  94. border-bottom: 1px solid var(--border);
  95. display: flex;
  96. flex-direction: column;
  97. justify-content: center;
  98. scroll-snap-align: start;
  99. scroll-snap-stop: always;
  100. overflow: hidden;
  101. isolation: isolate;
  102. }
  103. /* 每一张 slide 的角标:大号数字 */
  104. section.report-section::before {
  105. content: attr(data-slide-num);
  106. position: absolute;
  107. top: clamp(20px, 3vh, 36px); right: clamp(24px, 4vw, 60px);
  108. font-family: var(--font-mono); font-weight: 600;
  109. font-size: clamp(0.68rem, 0.75vw, 0.78rem);
  110. letter-spacing: 0.25em; color: var(--text-3);
  111. z-index: 4; pointer-events: none;
  112. }
  113. /* slide 专属渐变层(通过 CSS 变量驱动色调) */
  114. section.report-section::after {
  115. content: '';
  116. position: absolute; inset: 0; pointer-events: none; z-index: -1;
  117. background:
  118. radial-gradient(ellipse 70% 60% at 85% 15%, var(--slide-glow-1, rgba(245,166,35,0.06)), transparent 55%),
  119. radial-gradient(ellipse 60% 50% at 15% 85%, var(--slide-glow-2, rgba(139,92,246,0.04)), transparent 55%);
  120. opacity: 0; transition: opacity 1s cubic-bezier(.2,.7,.2,1);
  121. }
  122. section.report-section.in-view::after { opacity: 1; }
  123. section.report-section[data-tone="amber"] { --slide-glow-1: rgba(245,166,35,0.10); --slide-glow-2: rgba(245,166,35,0.04); }
  124. section.report-section[data-tone="rose"] { --slide-glow-1: rgba(255,77,141,0.09); --slide-glow-2: rgba(255,77,141,0.04); }
  125. section.report-section[data-tone="green"] { --slide-glow-1: rgba(0,220,130,0.08); --slide-glow-2: rgba(0,220,130,0.03); }
  126. section.report-section[data-tone="purple"]{ --slide-glow-1: rgba(139,92,246,0.10); --slide-glow-2: rgba(139,92,246,0.04); }
  127. section.report-section[data-tone="blue"] { --slide-glow-1: rgba(59,130,246,0.08); --slide-glow-2: rgba(59,130,246,0.03); }
  128. section.report-section[data-tone="orange"]{ --slide-glow-1: rgba(255,140,66,0.10); --slide-glow-2: rgba(255,140,66,0.04); }
  129. .section-inner { width: 100%; max-width: var(--max-w); margin: 0 auto; position: relative; }
  130. .section-head { margin-bottom: clamp(32px, 5vh, 64px); }
  131. .section-eyebrow {
  132. display: inline-flex; align-items: center; gap: 10px;
  133. font-family: var(--font-mono); font-size: 0.72rem;
  134. letter-spacing: 0.18em; text-transform: uppercase;
  135. color: var(--amber); font-weight: 500; margin-bottom: 18px;
  136. }
  137. .section-eyebrow::before { content: ''; display: inline-block; width: 24px; height: 1px; background: var(--amber); }
  138. .section-sub { color: var(--text-2); font-size: 1.05rem; max-width: 720px; margin-top: 14px; line-height: 1.8; }
  139. .grid { display: grid; gap: clamp(14px, 1.6vw, 22px); }
  140. .grid-2 { grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); }
  141. .grid-3 { grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); }
  142. .grid-4 { grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); }
  143. .card {
  144. background: linear-gradient(180deg, rgba(255,255,255,0.025) 0%, rgba(255,255,255,0.008) 100%), var(--bg-1);
  145. border: 1px solid var(--border);
  146. border-radius: var(--radius-md);
  147. padding: clamp(20px, 2.2vw, 32px);
  148. position: relative;
  149. backdrop-filter: blur(8px);
  150. -webkit-backdrop-filter: blur(8px);
  151. transition: transform 0.4s cubic-bezier(.2,.7,.2,1), border-color 0.3s ease, box-shadow 0.4s ease;
  152. }
  153. .card:hover {
  154. border-color: var(--border-strong);
  155. transform: translateY(-3px);
  156. box-shadow: 0 12px 40px rgba(0,0,0,0.35), 0 0 0 1px rgba(245,166,35,0.08);
  157. }
  158. .card.card-glow { box-shadow: 0 0 40px rgba(245,166,35,0.06); }
  159. .card-accent {
  160. border-left: 3px solid var(--amber);
  161. border-top: 1px solid var(--border); border-right: 1px solid var(--border); border-bottom: 1px solid var(--border);
  162. }
  163. .metric {
  164. background: var(--bg-1); border: 1px solid var(--border); border-radius: var(--radius-md);
  165. padding: clamp(24px, 2.5vw, 36px); position: relative; overflow: hidden;
  166. }
  167. .metric::before {
  168. content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px;
  169. background: linear-gradient(90deg, var(--amber), transparent); opacity: 0.6;
  170. }
  171. .metric .metric-label { font-family: var(--font-mono); font-size: 0.7rem; letter-spacing: 0.15em; text-transform: uppercase; color: var(--text-3); margin-bottom: 10px; }
  172. .metric .metric-value { font-family: var(--font-head); font-weight: 800; font-size: clamp(2.2rem, 4vw, 3.5rem); letter-spacing: -0.03em; line-height: 1; color: var(--text-1); margin-bottom: 8px; }
  173. .metric .metric-unit { font-family: var(--font-mono); font-size: 0.85rem; color: var(--amber); font-weight: 500; }
  174. .metric .metric-sub { margin-top: 14px; font-size: 0.82rem; color: var(--text-2); line-height: 1.5; }
  175. .tag {
  176. display: inline-flex; align-items: center; gap: 6px;
  177. padding: 4px 10px; border-radius: 4px; font-size: 0.72rem; font-weight: 500;
  178. letter-spacing: 0.02em; font-family: var(--font-head);
  179. background: rgba(245,166,35,0.1); color: var(--amber); border: 1px solid rgba(245,166,35,0.22);
  180. }
  181. .tag.green { background: rgba(0,220,130,0.08); color: var(--green); border-color: rgba(0,220,130,0.2); }
  182. .tag.purple { background: rgba(139,92,246,0.08); color: var(--purple); border-color: rgba(139,92,246,0.2); }
  183. .tag.rose { background: rgba(255,77,141,0.08); color: var(--rose); border-color: rgba(255,77,141,0.2); }
  184. .tag.gray { background: rgba(255,255,255,0.04); color: var(--text-2); border-color: var(--border); }
  185. .cover-hero {
  186. position: absolute; inset: 0; display: flex; flex-direction: column; justify-content: center;
  187. padding: clamp(40px, 8vh, 100px) clamp(24px, 6vw, 80px);
  188. background:
  189. radial-gradient(ellipse 60% 80% at 30% 30%, rgba(245,166,35,0.08) 0%, transparent 70%),
  190. radial-gradient(ellipse 40% 60% at 80% 70%, rgba(139,92,246,0.05) 0%, transparent 70%),
  191. var(--bg-0);
  192. }
  193. .cover-grid-bg {
  194. position: absolute; inset: 0;
  195. background-image: linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px),
  196. linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px);
  197. background-size: 64px 64px; pointer-events: none;
  198. mask-image: radial-gradient(ellipse 80% 90% at 50% 50%, black 0%, transparent 80%);
  199. -webkit-mask-image: radial-gradient(ellipse 80% 90% at 50% 50%, black 0%, transparent 80%);
  200. }
  201. .cover-content { position: relative; z-index: 2; max-width: var(--max-w); }
  202. .cover-meta {
  203. display: flex; align-items: center; gap: 16px;
  204. font-family: var(--font-mono); font-size: 0.78rem; color: var(--text-3);
  205. letter-spacing: 0.18em; text-transform: uppercase; margin-bottom: 32px;
  206. }
  207. .cover-meta::before { content: ''; width: 32px; height: 2px; background: var(--amber); }
  208. .cover-title-stack { display: flex; flex-direction: column; gap: 4px; }
  209. .cover-title {
  210. font-family: var(--font-head); font-weight: 900; letter-spacing: -0.04em;
  211. line-height: 0.92; font-size: clamp(3.5rem, 11vw, 9rem);
  212. color: #fff; /* 兜底纯色:若渐变裁剪失效,至少显示白色粗体 */
  213. background: linear-gradient(135deg, #fff 30%, rgba(245,166,35,0.9) 100%);
  214. -webkit-background-clip: text; background-clip: text;
  215. -webkit-text-fill-color: transparent; /* 代替 color: transparent,不支持时自动退回 color */
  216. }
  217. .cover-sub { font-size: clamp(1rem, 1.6vw, 1.4rem); color: var(--text-2); max-width: 780px; margin-top: 32px; line-height: 1.7; }
  218. .cover-stats {
  219. display: grid; grid-template-columns: repeat(4, 1fr); gap: clamp(12px, 2vw, 28px);
  220. margin-top: clamp(48px, 8vh, 96px); padding-top: clamp(24px, 4vh, 48px);
  221. border-top: 1px solid var(--border); max-width: 900px;
  222. }
  223. .cover-stat .num { font-family: var(--font-head); font-weight: 800; font-size: clamp(1.6rem, 2.8vw, 2.4rem); letter-spacing: -0.02em; color: var(--amber); }
  224. .cover-stat .lbl { font-size: 0.78rem; color: var(--text-3); margin-top: 4px; font-family: var(--font-mono); letter-spacing: 0.05em; text-transform: uppercase; }
  225. @media (max-width: 720px) { .cover-stats { grid-template-columns: repeat(2, 1fr); } }
  226. .nav-rail {
  227. position: fixed; left: clamp(16px, 2vw, 32px); top: 50%; transform: translateY(-50%);
  228. z-index: 100; display: flex; flex-direction: column; gap: 12px;
  229. }
  230. .nav-dot {
  231. width: 32px; height: 3px; border-radius: 2px;
  232. background: rgba(255,255,255,0.14); cursor: pointer;
  233. transition: all 0.5s cubic-bezier(.2,.7,.2,1); position: relative;
  234. display: flex; align-items: center;
  235. }
  236. .nav-dot.active { background: var(--amber); width: 48px; box-shadow: 0 0 12px rgba(245,166,35,0.4); }
  237. .nav-dot:hover { background: rgba(255,255,255,0.3); }
  238. .nav-dot::after {
  239. content: attr(data-tip); position: absolute; left: calc(100% + 16px); top: 50%;
  240. transform: translateY(-50%) translateX(-6px);
  241. background: rgba(20,20,20,0.92); backdrop-filter: blur(8px);
  242. border: 1px solid var(--border); padding: 6px 12px; border-radius: 6px;
  243. font-size: 0.72rem; color: var(--text-1);
  244. white-space: nowrap; opacity: 0; pointer-events: none;
  245. transition: opacity 0.25s ease, transform 0.25s ease;
  246. font-family: var(--font-mono); letter-spacing: 0.04em;
  247. }
  248. .nav-dot:hover::after, .nav-dot.active::after { opacity: 1; transform: translateY(-50%) translateX(0); }
  249. .top-bar {
  250. position: fixed; top: 0; left: 0; right: 0;
  251. display: flex; justify-content: space-between; align-items: center;
  252. padding: 18px clamp(24px, 4vw, 48px); z-index: 99; pointer-events: none;
  253. background: linear-gradient(180deg, rgba(10,10,10,0.85) 0%, transparent 100%);
  254. }
  255. .brand-logo { font-family: var(--font-head); font-weight: 900; font-size: 0.88rem; letter-spacing: 0.2em; }
  256. .brand-logo .dot { color: var(--amber); }
  257. .progress-line {
  258. position: fixed; top: 0; left: 0; height: 2px;
  259. background: linear-gradient(90deg, var(--amber), var(--rose));
  260. z-index: 1000; width: 0%; transition: width 0.3s ease;
  261. }
  262. .chart-container {
  263. width: 100%; min-height: 340px;
  264. background: var(--bg-1); border: 1px solid var(--border); border-radius: var(--radius-md); padding: 20px;
  265. }
  266. .voice-wall { display: grid; grid-template-columns: repeat(auto-fill, minmax(320px, 1fr)); gap: 16px; }
  267. .voice-card {
  268. background: var(--bg-1); border: 1px solid var(--border); border-radius: var(--radius-md);
  269. padding: 24px; position: relative; transition: all 0.3s ease;
  270. }
  271. .voice-card::before {
  272. content: '"'; position: absolute; top: 8px; left: 12px;
  273. font-family: Georgia, serif; font-size: 60px; color: var(--amber);
  274. opacity: 0.3; line-height: 1; pointer-events: none;
  275. }
  276. .voice-card .voice-content { font-size: 0.96rem; line-height: 1.7; color: var(--text-1); margin: 20px 0 16px 24px; font-weight: 400; }
  277. .voice-card .voice-meta {
  278. display: flex; justify-content: space-between; align-items: center;
  279. padding-top: 12px; border-top: 1px solid var(--border);
  280. font-size: 0.75rem; color: var(--text-3);
  281. }
  282. .voice-card .voice-likes { color: var(--amber); font-weight: 600; font-family: var(--font-mono); }
  283. .voice-card.hot { border-color: rgba(245,166,35,0.3); }
  284. .voice-card.hot::before { opacity: 0.5; }
  285. .voice-card:hover { border-color: var(--amber); transform: translateY(-3px); }
  286. .note-card {
  287. background: var(--bg-1); border: 1px solid var(--border); border-radius: var(--radius-md);
  288. padding: 20px; display: flex; flex-direction: column; gap: 12px;
  289. transition: all 0.3s ease;
  290. }
  291. .note-card:hover { border-color: var(--amber); transform: translateY(-3px); }
  292. .note-rank { font-family: var(--font-mono); font-weight: 700; font-size: 0.75rem; color: var(--amber); letter-spacing: 0.15em; }
  293. .note-title {
  294. font-size: 1rem; line-height: 1.45; font-weight: 600; color: var(--text-1);
  295. overflow: hidden; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical;
  296. }
  297. .note-stats {
  298. display: flex; gap: 16px; padding-top: 12px; border-top: 1px solid var(--border);
  299. font-family: var(--font-mono); font-size: 0.8rem; color: var(--text-2);
  300. }
  301. .note-stats .st { display: flex; flex-direction: column; gap: 2px; }
  302. .note-stats .st .n { color: var(--text-1); font-weight: 600; font-size: 1rem; }
  303. .note-stats .st .l { font-size: 0.65rem; color: var(--text-3); text-transform: uppercase; letter-spacing: 0.1em; }
  304. .theme-poster {
  305. background: var(--bg-1); border: 1px solid var(--border); border-radius: var(--radius-md);
  306. padding: 28px; position: relative; overflow: hidden;
  307. }
  308. .theme-poster.pain { border-top: 3px solid var(--rose); }
  309. .theme-poster.bright { border-top: 3px solid var(--green); }
  310. .theme-poster.scene { border-top: 3px solid var(--blue); }
  311. .theme-poster h4 { font-family: var(--font-head); font-weight: 700; font-size: 1.3rem; margin-bottom: 8px; }
  312. .theme-poster .count { font-family: var(--font-mono); font-size: 0.78rem; color: var(--text-3); margin-bottom: 16px; }
  313. .theme-poster .count .num { font-size: 1.4rem; font-weight: 700; color: var(--text-1); margin-right: 4px; }
  314. .theme-poster .examples { list-style: none; display: flex; flex-direction: column; gap: 10px; margin-top: 12px; }
  315. .theme-poster .examples li {
  316. padding: 10px 14px; background: var(--bg-2); border-left: 2px solid var(--border-strong);
  317. border-radius: 4px; font-size: 0.85rem; line-height: 1.55; color: var(--text-2);
  318. }
  319. .theme-poster.pain .examples li { border-left-color: var(--rose); }
  320. .theme-poster.bright .examples li { border-left-color: var(--green); }
  321. .theme-poster.scene .examples li { border-left-color: var(--blue); }
  322. .insight-banner {
  323. min-height: 260px; background: var(--bg-1); border: 1px solid var(--border); border-radius: var(--radius-md);
  324. padding: clamp(32px, 4vw, 56px); display: flex; flex-direction: column;
  325. justify-content: space-between; gap: 32px; position: relative; overflow: hidden;
  326. }
  327. .insight-banner::before {
  328. content: attr(data-num); position: absolute; top: 16px; right: 24px;
  329. font-family: var(--font-head); font-weight: 900; font-size: clamp(4rem, 9vw, 7rem);
  330. line-height: 1; color: var(--bg-3); letter-spacing: -0.05em; pointer-events: none;
  331. }
  332. .insight-banner h3 {
  333. font-family: var(--font-head); font-weight: 800;
  334. font-size: clamp(1.5rem, 2.8vw, 2.2rem); letter-spacing: -0.02em;
  335. line-height: 1.25; color: var(--text-1); max-width: 85%;
  336. }
  337. .insight-banner h3 strong { color: var(--amber); font-weight: 900; }
  338. .insight-banner .insight-body { color: var(--text-2); font-size: 1rem; line-height: 1.75; max-width: 85%; }
  339. .insight-banner .insight-data {
  340. display: flex; gap: 24px; margin-top: 16px; padding-top: 20px; border-top: 1px solid var(--border);
  341. }
  342. .insight-banner .insight-data .dp { display: flex; flex-direction: column; gap: 2px; }
  343. .insight-banner .insight-data .dp .num { font-family: var(--font-mono); font-size: 1.3rem; font-weight: 700; color: var(--amber); }
  344. .insight-banner .insight-data .dp .lbl { font-size: 0.72rem; color: var(--text-3); text-transform: uppercase; letter-spacing: 0.1em; }
  345. .kol-card { background: var(--bg-1); border: 1px solid var(--border); border-radius: var(--radius-md); padding: 20px; display: flex; gap: 14px; align-items: flex-start; }
  346. .kol-avatar { width: 56px; height: 56px; border-radius: 50%; background: var(--bg-3); flex-shrink: 0; object-fit: cover; border: 1px solid var(--border); }
  347. .kol-info { flex: 1; overflow: hidden; }
  348. .kol-name { font-weight: 700; font-size: 0.98rem; margin-bottom: 4px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
  349. .kol-desc { font-size: 0.82rem; color: var(--text-3); line-height: 1.5; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
  350. .kol-stats { display: flex; gap: 14px; margin-top: 10px; font-family: var(--font-mono); font-size: 0.75rem; color: var(--text-2); }
  351. .kol-stats .amber { color: var(--amber); font-weight: 600; }
  352. .table-wrap { overflow-x: auto; border-radius: var(--radius-md); border: 1px solid var(--border); }
  353. .data-tbl { width: 100%; border-collapse: collapse; font-size: 0.88rem; }
  354. .data-tbl thead th {
  355. text-align: left; padding: 14px 16px; background: var(--bg-1); border-bottom: 1px solid var(--border);
  356. font-family: var(--font-mono); font-weight: 500; font-size: 0.72rem;
  357. letter-spacing: 0.08em; text-transform: uppercase; color: var(--text-3);
  358. }
  359. .data-tbl tbody td { padding: 14px 16px; border-bottom: 1px solid var(--border); color: var(--text-1); vertical-align: middle; }
  360. .data-tbl tbody tr:last-child td { border-bottom: none; }
  361. .data-tbl tbody tr:hover { background: rgba(255,255,255,0.02); }
  362. .data-tbl .tb-num { font-family: var(--font-mono); font-weight: 600; color: var(--amber); }
  363. .matrix-2x2 {
  364. display: grid; grid-template-columns: 60px 1fr 1fr; grid-template-rows: 1fr 1fr 60px;
  365. gap: 12px; min-height: 520px; font-family: var(--font-head);
  366. }
  367. .matrix-2x2 .axis-y {
  368. grid-column: 1; grid-row: 1 / 3;
  369. display: flex; align-items: center; justify-content: center;
  370. writing-mode: vertical-rl; transform: rotate(180deg);
  371. font-family: var(--font-mono); font-size: 0.72rem;
  372. letter-spacing: 0.15em; color: var(--text-3); text-transform: uppercase;
  373. }
  374. .matrix-2x2 .axis-x {
  375. grid-column: 2 / 4; grid-row: 3;
  376. display: flex; justify-content: center; align-items: center;
  377. font-family: var(--font-mono); font-size: 0.72rem;
  378. letter-spacing: 0.15em; color: var(--text-3); text-transform: uppercase;
  379. }
  380. .matrix-cell {
  381. background: var(--bg-1); border: 1px solid var(--border); border-radius: var(--radius-md);
  382. padding: 20px; position: relative; display: flex; flex-direction: column;
  383. }
  384. .matrix-cell .cell-label { font-family: var(--font-mono); font-size: 0.7rem; letter-spacing: 0.12em; color: var(--text-3); margin-bottom: 10px; text-transform: uppercase; }
  385. .matrix-cell h5 { font-weight: 700; font-size: 1rem; margin-bottom: 6px; color: var(--text-1); }
  386. .matrix-cell p { font-size: 0.85rem; color: var(--text-2); line-height: 1.55; }
  387. .matrix-cell.q1 { border-top: 2px solid var(--amber); }
  388. .matrix-cell.q2 { border-top: 2px solid var(--green); }
  389. .matrix-cell.q3 { border-top: 2px solid var(--rose); }
  390. .matrix-cell.q4 { border-top: 2px solid var(--purple); }
  391. .tl { position: relative; padding-left: 32px; }
  392. .tl::before {
  393. content: ''; position: absolute; left: 8px; top: 10px; bottom: 10px;
  394. width: 1px; background: linear-gradient(180deg, var(--amber), var(--purple), transparent);
  395. }
  396. .tl-item { position: relative; margin-bottom: 28px; padding-left: 20px; }
  397. .tl-item::before {
  398. content: ''; position: absolute; left: -30px; top: 6px;
  399. width: 10px; height: 10px; border-radius: 50%; background: var(--amber);
  400. border: 2px solid var(--bg-0); box-shadow: 0 0 0 2px var(--amber);
  401. }
  402. .tl-item .tl-time { font-family: var(--font-mono); font-size: 0.72rem; letter-spacing: 0.1em; color: var(--amber); text-transform: uppercase; margin-bottom: 4px; }
  403. .tl-item h5 { font-weight: 700; font-size: 1rem; margin-bottom: 6px; }
  404. .tl-item p { font-size: 0.88rem; color: var(--text-2); line-height: 1.6; }
  405. /* === 渐显:默认可见,只有 js 已就绪时才先隐藏 === */
  406. .fade-up { opacity: 1; transform: none; transition: opacity 0.9s cubic-bezier(.16,.84,.33,1), transform 0.9s cubic-bezier(.16,.84,.33,1); }
  407. html.js .fade-up { opacity: 0; transform: translateY(32px); will-change: opacity, transform; }
  408. html.js .fade-up.is-visible { opacity: 1; transform: translateY(0); }
  409. /* 深度入场:从下方滑入 + 微缩放(用于 section-head) */
  410. .rise-in { opacity: 1; transform: none; transition: opacity 1.1s cubic-bezier(.16,.84,.33,1), transform 1.1s cubic-bezier(.16,.84,.33,1); }
  411. html.js .rise-in { opacity: 0; transform: translateY(48px) scale(0.97); will-change: opacity, transform; }
  412. html.js .rise-in.is-visible { opacity: 1; transform: translateY(0) scale(1); }
  413. /* 逐字标题:每个 .char 独立控制 */
  414. .headline-anim { display: inline-block; }
  415. .headline-anim .char { display: inline-block; opacity: 1; transform: none; transition: opacity 0.7s cubic-bezier(.16,.84,.33,1), transform 0.7s cubic-bezier(.16,.84,.33,1); }
  416. html.js .headline-anim .char { opacity: 0; transform: translateY(0.6em) rotate(6deg); will-change: opacity, transform; }
  417. html.js .headline-anim.is-visible .char { opacity: 1; transform: translateY(0) rotate(0); }
  418. /* 键盘提示 pill —— 右下角,首次滚动 5s 后自动淡出 */
  419. .kbd-hint {
  420. position: fixed; right: clamp(16px, 2vw, 28px); bottom: clamp(16px, 2vh, 28px);
  421. z-index: 100; display: flex; align-items: center; gap: 10px;
  422. padding: 10px 16px; border-radius: 999px;
  423. background: rgba(20,20,20,0.85); backdrop-filter: blur(16px);
  424. border: 1px solid var(--border-strong);
  425. font-family: var(--font-mono); font-size: 0.72rem; color: var(--text-2);
  426. letter-spacing: 0.04em;
  427. transition: opacity 0.6s ease, transform 0.6s ease;
  428. }
  429. .kbd-hint.fade { opacity: 0; transform: translateY(12px); pointer-events: none; }
  430. .kbd-hint kbd {
  431. display: inline-flex; align-items: center; justify-content: center;
  432. min-width: 22px; height: 22px; padding: 0 6px;
  433. background: var(--bg-3); border: 1px solid var(--border-strong);
  434. border-radius: 4px; font-size: 0.7rem; font-family: var(--font-mono);
  435. color: var(--text-1); box-shadow: 0 1px 0 rgba(0,0,0,0.4);
  436. }
  437. /* slide counter pill —— 左下角 */
  438. .slide-counter {
  439. position: fixed; left: clamp(16px, 2vw, 28px); bottom: clamp(16px, 2vh, 28px);
  440. z-index: 100; display: flex; align-items: center; gap: 8px;
  441. padding: 8px 14px; border-radius: 999px;
  442. background: rgba(20,20,20,0.85); backdrop-filter: blur(16px);
  443. border: 1px solid var(--border-strong);
  444. font-family: var(--font-mono); font-size: 0.74rem; letter-spacing: 0.1em;
  445. color: var(--text-2);
  446. }
  447. .slide-counter .now { color: var(--amber); font-weight: 700; }
  448. .slide-counter .bar { width: 60px; height: 2px; background: rgba(255,255,255,0.1); border-radius: 2px; overflow: hidden; }
  449. .slide-counter .bar::after {
  450. content: ''; display: block; height: 100%; width: var(--pct, 0%);
  451. background: linear-gradient(90deg, var(--amber), var(--rose));
  452. transition: width 0.6s cubic-bezier(.2,.7,.2,1);
  453. }
  454. /* 海报式 hero 点缀:流动的光弧 */
  455. .cover-hero .aurora {
  456. position: absolute; inset: 0; pointer-events: none; overflow: hidden; z-index: 1;
  457. }
  458. .cover-hero .aurora span {
  459. position: absolute; border-radius: 50%; filter: blur(80px); opacity: 0.5;
  460. }
  461. .cover-hero .aurora span:nth-child(1) { width: 500px; height: 500px; background: rgba(245,166,35,0.35); top: -10%; left: 10%; animation: aurora-drift-1 18s ease-in-out infinite alternate; }
  462. .cover-hero .aurora span:nth-child(2) { width: 420px; height: 420px; background: rgba(139,92,246,0.30); bottom: -8%; right: 10%; animation: aurora-drift-2 22s ease-in-out infinite alternate; }
  463. .cover-hero .aurora span:nth-child(3) { width: 300px; height: 300px; background: rgba(0,220,130,0.22); top: 40%; left: 55%; animation: aurora-drift-3 26s ease-in-out infinite alternate; }
  464. @keyframes aurora-drift-1 { from { transform: translate(0,0) scale(1); } to { transform: translate(60px,80px) scale(1.2); } }
  465. @keyframes aurora-drift-2 { from { transform: translate(0,0) scale(1); } to { transform: translate(-80px,-60px) scale(1.15); } }
  466. @keyframes aurora-drift-3 { from { transform: translate(0,0) scale(1); } to { transform: translate(-100px,40px) scale(1.3); } }
  467. @media (prefers-reduced-motion: reduce) { .cover-hero .aurora span { animation: none; } }
  468. footer.report-footer {
  469. padding: 48px clamp(24px, 6vw, 80px); text-align: center;
  470. border-top: 1px solid var(--border); color: var(--text-3); font-size: 0.8rem;
  471. background: var(--bg-0);
  472. }
  473. footer.report-footer .meta { font-family: var(--font-mono); letter-spacing: 0.12em; text-transform: uppercase; margin-top: 8px; font-size: 0.7rem; }
  474. @media (max-width: 900px) {
  475. .matrix-2x2 { grid-template-columns: 40px 1fr; grid-template-rows: auto; }
  476. .matrix-2x2 .axis-x, .matrix-2x2 .axis-y { display: none; }
  477. .matrix-cell { grid-column: 2; }
  478. }
  479. @media (max-width: 600px) {
  480. .nav-rail { display: none; }
  481. .top-bar { padding: 14px 18px; font-size: 0.72rem; }
  482. }
  483. </style>
  484. </head>
  485. <body>
  486. <nav class="nav-rail" aria-label="章节导航">
  487. <a class="nav-dot active" href="#s0" data-tip="封面" data-idx="0"></a><a class="nav-dot" href="#agenda" data-tip="目录" data-idx="1"></a><a class="nav-dot" href="#method" data-tip="1 VOC 方法论" data-idx="2"></a><a class="nav-dot" href="#package" data-tip="2 包装调研" data-idx="3"></a><a class="nav-dot" href="#pricing" data-tip="3 定价调研" data-idx="4"></a><a class="nav-dot" href="#positioning" data-tip="4 定位与话术" data-idx="5"></a><a class="nav-dot" href="#scene" data-tip="5 场景适配" data-idx="6"></a><a class="nav-dot" href="#competitor" data-tip="6 竞品认知" data-idx="7"></a><a class="nav-dot" href="#action" data-tip="7 落地行动" data-idx="8"></a>
  488. </nav>
  489. <div class="top-bar">
  490. <div class="brand-logo">江中<span class="dot">·</span>产品开发部 / 肝纯片 VOC 验证报告 v1.0</div>
  491. <div class="text-mono text-xs" style="color:var(--text-3);">BRAIN·HACK / VOC × 10亿×4渠道 × 藤茶DMY</div>
  492. </div>
  493. <div class="kbd-hint" id="kbdHint">
  494. <span>键盘切换</span>
  495. <kbd>↑</kbd><kbd>↓</kbd>
  496. <span>或</span>
  497. <kbd>PgUp</kbd><kbd>PgDn</kbd>
  498. </div>
  499. <div class="progress-line" id="progressLine"></div>
  500. <main class="deck">
  501. <section class="report-section" id="s0" data-tone="amber" data-slide-num="01/42" style="min-height:100vh;padding:0;">
  502. <div class="cover-hero">
  503. <div class="aurora" aria-hidden="true"><span></span><span></span><span></span></div>
  504. <div class="cover-grid-bg"></div>
  505. <div class="cover-content">
  506. <div class="cover-meta rise-in">
  507. <span>江中 / 产品开发部 / 2026 · 江中肝纯片 · VOC 验证报告</span>
  508. </div>
  509. <div class="cover-title-stack">
  510. <p class="text-mono text-amber rise-in" style="font-size:0.9rem;letter-spacing:0.2em;margin-bottom:18px;">VOC × MULTI-PLATFORM × COMMENT-LEVEL</p>
  511. <h1 class="cover-title rise-in">江中肝纯片<br/><span style="color:#D4A574; -webkit-text-fill-color:#D4A574; background:none; font-size:0.7em;">VOC 验证报告</span></h1>
  512. <p class="text-poster rise-in" style="margin-top:20px;color:var(--text-2); font-size:1.5rem;">
  513. 10 亿目标 · 4 渠道 × 5 模块 · 藤茶 DMY 差异化
  514. </p>
  515. </div>
  516. <p class="cover-sub fade-up">
  517. 围绕 <strong class="text-amber">江中内部会议确认</strong>的 4 核心维度 × 5 调研模块,
  518. 跨 <strong class="text-amber">3</strong> 平台
  519. (<strong class="text-amber">小红书 4.5k</strong> + <strong class="text-amber">抖音 627</strong> + <strong class="text-amber">Amazon 2.6k</strong>)
  520. × <strong class="text-amber">46</strong> 关键词 ·
  521. <strong class="text-amber">323</strong> 笔记/视频/产品 ·
  522. <strong class="text-amber">7,715</strong> 条评论颗粒度真实原声,
  523. 验证 <strong style="color:#D4A574;">包装 / 定价 / 定位话术 / 场景适配 / 竞品认知</strong>五大维度 × <strong style="color:#D4A574;">H1-H8 8 条假设</strong>,
  524. 输出可直接落地的 <strong style="color:#0085CA;">4 渠道 PRD + SKU 矩阵</strong>,闭环 <strong style="color:#D4A574;">10 亿</strong> 路径。
  525. </p>
  526. <div class="cover-stats fade-up" style="grid-template-columns:repeat(6, 1fr); max-width:1100px;">
  527. <div class="cover-stat"><div class="num">10 亿</div><div class="lbl">营收目标</div></div>
  528. <div class="cover-stat"><div class="num">7,715</div><div class="lbl">真实评论</div></div>
  529. <div class="cover-stat"><div class="num">3</div><div class="lbl">采集平台</div></div>
  530. <div class="cover-stat"><div class="num">46</div><div class="lbl">关键词</div></div>
  531. <div class="cover-stat"><div class="num">4</div><div class="lbl">核心渠道</div></div>
  532. <div class="cover-stat"><div class="num">42</div><div class="lbl">slides</div></div>
  533. </div>
  534. <p class="text-mono text-xs fade-up" style="margin-top:64px; color:var(--text-3);">SCROLL DOWN · 数据采集 2026-04-19 · 7,715 条真实 VOC</p>
  535. </div>
  536. </div>
  537. </section>
  538. <section class="report-section" id="agenda" data-tone="amber" data-slide-num="02/42">
  539. <div class="section-inner">
  540. <div class="section-head rise-in">
  541. <div class="section-eyebrow">CONTENTS · 目录总览</div>
  542. <h2 class="text-h1"><span class="headline-anim">VOC 验证 · 7 章节全景</span></h2>
  543. <p class="section-sub">从方法论到落地行动 · 每一章都以 <strong class="text-amber">多平台评论颗粒度</strong>真实 VOC 证据驱动 · 每一步都可以直接指向产品 PRD 和 4 渠道铺货</p>
  544. </div>
  545. <div class="grid" style="grid-template-columns:repeat(2, 1fr); gap:24px; margin-top:20px;">
  546. <a href="#method" class="fade-up" style="text-decoration:none; display:block; background:var(--bg-1); border:1px solid var(--border); border-left:4px solid #2D9C5D; border-radius:var(--radius-md); padding:28px; transition:all .35s cubic-bezier(.2,.7,.2,1); position:relative; overflow:hidden;" onmouseover="this.style.transform='translateY(-4px)'; this.style.borderColor='#2D9C5D'; this.style.boxShadow='0 20px 60px -20px #2D9C5D55'" onmouseout="this.style.transform='translateY(0)'; this.style.borderColor='var(--border)'; this.style.boxShadow='none'">
  547. <div style="position:absolute; top:-20px; right:-10px; font-family:var(--font-head); font-weight:900; font-size:9rem; line-height:1; color:#2D9C5D; opacity:.08; letter-spacing:-0.06em; pointer-events:none;">1</div>
  548. <div style="display:flex; justify-content:space-between; align-items:start; margin-bottom:16px;">
  549. <div class="text-mono text-xs" style="color:#2D9C5D; letter-spacing:0.18em; font-weight:700;">CH 1 · METHODOLOGY</div>
  550. <div style="font-size:1.8rem; filter:grayscale(20%);">🧭</div>
  551. </div>
  552. <h3 class="text-h2" style="margin:0 0 12px; color:var(--text-1); font-size:1.55rem;">VOC 方法论</h3>
  553. <p style="color:var(--text-2); font-size:0.92rem; line-height:1.6; margin-bottom:14px;">10亿目标 × 4 渠道 × 5 模块 × 多平台评论颗粒度验证框架</p>
  554. <div style="display:flex; flex-wrap:wrap; gap:6px; margin-bottom:14px;">
  555. <span style="padding:3px 9px; background:#2D9C5D15; color:#2D9C5D; border-radius:3px; font-size:0.68rem; font-weight:600;">1.1 10亿目标×4渠道拆解</span><span style="padding:3px 9px; background:#2D9C5D15; color:#2D9C5D; border-radius:3px; font-size:0.68rem; font-weight:600;">1.2 5 模块×决策阈值</span><span style="padding:3px 9px; background:#2D9C5D15; color:#2D9C5D; border-radius:3px; font-size:0.68rem; font-weight:600;">1.3 多平台采集矩阵</span><span style="padding:3px 9px; background:#2D9C5D15; color:#2D9C5D; border-radius:3px; font-size:0.68rem; font-weight:600;">1.4 评论颗粒度分析框架</span><span style="padding:3px 9px; background:#2D9C5D15; color:#2D9C5D; border-radius:3px; font-size:0.68rem; font-weight:600;">1.5 可做/不可做边界</span>
  556. </div>
  557. <div style="padding-top:14px; border-top:1px solid var(--border); display:flex; justify-content:space-between; align-items:center;">
  558. <span class="text-xs text-mono" style="color:var(--text-3); letter-spacing:0.12em;">→ 跳转章节</span>
  559. <span class="text-mono text-xs" style="color:#2D9C5D;">1 / 7</span>
  560. </div>
  561. </a>
  562. <a href="#package" class="fade-up" style="text-decoration:none; display:block; background:var(--bg-1); border:1px solid var(--border); border-left:4px solid #D4A574; border-radius:var(--radius-md); padding:28px; transition:all .35s cubic-bezier(.2,.7,.2,1); position:relative; overflow:hidden;" onmouseover="this.style.transform='translateY(-4px)'; this.style.borderColor='#D4A574'; this.style.boxShadow='0 20px 60px -20px #D4A57455'" onmouseout="this.style.transform='translateY(0)'; this.style.borderColor='var(--border)'; this.style.boxShadow='none'">
  563. <div style="position:absolute; top:-20px; right:-10px; font-family:var(--font-head); font-weight:900; font-size:9rem; line-height:1; color:#D4A574; opacity:.08; letter-spacing:-0.06em; pointer-events:none;">2</div>
  564. <div style="display:flex; justify-content:space-between; align-items:start; margin-bottom:16px;">
  565. <div class="text-mono text-xs" style="color:#D4A574; letter-spacing:0.18em; font-weight:700;">CH 2 · PACKAGE</div>
  566. <div style="font-size:1.8rem; filter:grayscale(20%);">📦</div>
  567. </div>
  568. <h3 class="text-h2" style="margin:0 0 12px; color:var(--text-1); font-size:1.55rem;">包装调研</h3>
  569. <p style="color:var(--text-2); font-size:0.92rem; line-height:1.6; margin-bottom:14px;">破解&quot;土&quot;的问题,对标 Swisse 轻奢中式风 · 药线板装 + 高端礼盒双形态</p>
  570. <div style="display:flex; flex-wrap:wrap; gap:6px; margin-bottom:14px;">
  571. <span style="padding:3px 9px; background:#D4A57415; color:#D4A574; border-radius:3px; font-size:0.68rem; font-weight:600;">2.1 现状诊断·&quot;土&quot;的 VOC 印证</span><span style="padding:3px 9px; background:#D4A57415; color:#D4A574; border-radius:3px; font-size:0.68rem; font-weight:600;">2.2 外包装偏好(Swisse风 vs 中式轻奢 vs 铁盒)</span><span style="padding:3px 9px; background:#D4A57415; color:#D4A574; border-radius:3px; font-size:0.68rem; font-weight:600;">2.3 内包装形态(瓶装/板装/锡纸片)</span><span style="padding:3px 9px; background:#D4A57415; color:#D4A574; border-radius:3px; font-size:0.68rem; font-weight:600;">2.4 片剂外观(形状/纹理/口感)</span><span style="padding:3px 9px; background:#D4A57415; color:#D4A574; border-radius:3px; font-size:0.68rem; font-weight:600;">2.5 礼品规格 × SKU 矩阵</span>
  572. </div>
  573. <div style="padding-top:14px; border-top:1px solid var(--border); display:flex; justify-content:space-between; align-items:center;">
  574. <span class="text-xs text-mono" style="color:var(--text-3); letter-spacing:0.12em;">→ 跳转章节</span>
  575. <span class="text-mono text-xs" style="color:#D4A574;">2 / 7</span>
  576. </div>
  577. </a>
  578. <a href="#pricing" class="fade-up" style="text-decoration:none; display:block; background:var(--bg-1); border:1px solid var(--border); border-left:4px solid #0085CA; border-radius:var(--radius-md); padding:28px; transition:all .35s cubic-bezier(.2,.7,.2,1); position:relative; overflow:hidden;" onmouseover="this.style.transform='translateY(-4px)'; this.style.borderColor='#0085CA'; this.style.boxShadow='0 20px 60px -20px #0085CA55'" onmouseout="this.style.transform='translateY(0)'; this.style.borderColor='var(--border)'; this.style.boxShadow='none'">
  579. <div style="position:absolute; top:-20px; right:-10px; font-family:var(--font-head); font-weight:900; font-size:9rem; line-height:1; color:#0085CA; opacity:.08; letter-spacing:-0.06em; pointer-events:none;">3</div>
  580. <div style="display:flex; justify-content:space-between; align-items:start; margin-bottom:16px;">
  581. <div class="text-mono text-xs" style="color:#0085CA; letter-spacing:0.18em; font-weight:700;">CH 3 · PRICING</div>
  582. <div style="font-size:1.8rem; filter:grayscale(20%);">💰</div>
  583. </div>
  584. <h3 class="text-h2" style="margin:0 0 12px; color:var(--text-1); font-size:1.55rem;">定价调研</h3>
  585. <p style="color:var(--text-2); font-size:0.92rem; line-height:1.6; margin-bottom:14px;">药线/电商/礼品分渠道价位带 × 规格 × 竞品定价参照</p>
  586. <div style="display:flex; flex-wrap:wrap; gap:6px; margin-bottom:14px;">
  587. <span style="padding:3px 9px; background:#0085CA15; color:#0085CA; border-radius:3px; font-size:0.68rem; font-weight:600;">3.1 分渠道定价区间</span><span style="padding:3px 9px; background:#0085CA15; color:#0085CA; border-radius:3px; font-size:0.68rem; font-weight:600;">3.2 规格-价格带(12/60/120片)</span><span style="padding:3px 9px; background:#0085CA15; color:#0085CA; border-radius:3px; font-size:0.68rem; font-weight:600;">3.3 竞品定价参照</span><span style="padding:3px 9px; background:#0085CA15; color:#0085CA; border-radius:3px; font-size:0.68rem; font-weight:600;">3.4 价格-价值感知匹配度</span>
  588. </div>
  589. <div style="padding-top:14px; border-top:1px solid var(--border); display:flex; justify-content:space-between; align-items:center;">
  590. <span class="text-xs text-mono" style="color:var(--text-3); letter-spacing:0.12em;">→ 跳转章节</span>
  591. <span class="text-mono text-xs" style="color:#0085CA;">3 / 7</span>
  592. </div>
  593. </a>
  594. <a href="#positioning" class="fade-up" style="text-decoration:none; display:block; background:var(--bg-1); border:1px solid var(--border); border-left:4px solid #8B5CF6; border-radius:var(--radius-md); padding:28px; transition:all .35s cubic-bezier(.2,.7,.2,1); position:relative; overflow:hidden;" onmouseover="this.style.transform='translateY(-4px)'; this.style.borderColor='#8B5CF6'; this.style.boxShadow='0 20px 60px -20px #8B5CF655'" onmouseout="this.style.transform='translateY(0)'; this.style.borderColor='var(--border)'; this.style.boxShadow='none'">
  595. <div style="position:absolute; top:-20px; right:-10px; font-family:var(--font-head); font-weight:900; font-size:9rem; line-height:1; color:#8B5CF6; opacity:.08; letter-spacing:-0.06em; pointer-events:none;">4</div>
  596. <div style="display:flex; justify-content:space-between; align-items:start; margin-bottom:16px;">
  597. <div class="text-mono text-xs" style="color:#8B5CF6; letter-spacing:0.18em; font-weight:700;">CH 4 · POSITIONING</div>
  598. <div style="font-size:1.8rem; filter:grayscale(20%);">🎯</div>
  599. </div>
  600. <h3 class="text-h2" style="margin:0 0 12px; color:var(--text-1); font-size:1.55rem;">定位与话术</h3>
  601. <p style="color:var(--text-2); font-size:0.92rem; line-height:1.6; margin-bottom:14px;">藤茶 DMY 差异化心智 × 解酒社交货币 × 安全无副作用话术</p>
  602. <div style="display:flex; flex-wrap:wrap; gap:6px; margin-bottom:14px;">
  603. <span style="padding:3px 9px; background:#8B5CF615; color:#8B5CF6; border-radius:3px; font-size:0.68rem; font-weight:600;">4.1 藤茶/DMY 概念认知度</span><span style="padding:3px 9px; background:#8B5CF615; color:#8B5CF6; border-radius:3px; font-size:0.68rem; font-weight:600;">4.2 安全无副作用话术·药食同源</span><span style="padding:3px 9px; background:#8B5CF615; color:#8B5CF6; border-radius:3px; font-size:0.68rem; font-weight:600;">4.3 解酒场景话术 AB 测试</span><span style="padding:3px 9px; background:#8B5CF615; color:#8B5CF6; border-radius:3px; font-size:0.68rem; font-weight:600;">4.4 社交货币话术·酒局面子</span><span style="padding:3px 9px; background:#8B5CF615; color:#8B5CF6; border-radius:3px; font-size:0.68rem; font-weight:600;">4.5 分渠道话术适配 × 差异化记忆点</span>
  604. </div>
  605. <div style="padding-top:14px; border-top:1px solid var(--border); display:flex; justify-content:space-between; align-items:center;">
  606. <span class="text-xs text-mono" style="color:var(--text-3); letter-spacing:0.12em;">→ 跳转章节</span>
  607. <span class="text-mono text-xs" style="color:#8B5CF6;">4 / 7</span>
  608. </div>
  609. </a>
  610. <a href="#scene" class="fade-up" style="text-decoration:none; display:block; background:var(--bg-1); border:1px solid var(--border); border-left:4px solid #FF8C42; border-radius:var(--radius-md); padding:28px; transition:all .35s cubic-bezier(.2,.7,.2,1); position:relative; overflow:hidden;" onmouseover="this.style.transform='translateY(-4px)'; this.style.borderColor='#FF8C42'; this.style.boxShadow='0 20px 60px -20px #FF8C4255'" onmouseout="this.style.transform='translateY(0)'; this.style.borderColor='var(--border)'; this.style.boxShadow='none'">
  611. <div style="position:absolute; top:-20px; right:-10px; font-family:var(--font-head); font-weight:900; font-size:9rem; line-height:1; color:#FF8C42; opacity:.08; letter-spacing:-0.06em; pointer-events:none;">5</div>
  612. <div style="display:flex; justify-content:space-between; align-items:start; margin-bottom:16px;">
  613. <div class="text-mono text-xs" style="color:#FF8C42; letter-spacing:0.18em; font-weight:700;">CH 5 · SCENE-FIT</div>
  614. <div style="font-size:1.8rem; filter:grayscale(20%);">🎬</div>
  615. </div>
  616. <h3 class="text-h2" style="margin:0 0 12px; color:var(--text-1); font-size:1.55rem;">场景适配</h3>
  617. <p style="color:var(--text-2); font-size:0.92rem; line-height:1.6; margin-bottom:14px;">药线 / 礼品 / 餐饮 / 电商 4 渠道场景 VOC 独立验证</p>
  618. <div style="display:flex; flex-wrap:wrap; gap:6px; margin-bottom:14px;">
  619. <span style="padding:3px 9px; background:#FF8C4215; color:#FF8C42; border-radius:3px; font-size:0.68rem; font-weight:600;">5.1 药线场景·合规+长期</span><span style="padding:3px 9px; background:#FF8C4215; color:#FF8C42; border-radius:3px; font-size:0.68rem; font-weight:600;">5.2 礼品场景·颜值+体面</span><span style="padding:3px 9px; background:#FF8C4215; color:#FF8C42; border-radius:3px; font-size:0.68rem; font-weight:600;">5.3 餐饮场景·便携+体感</span><span style="padding:3px 9px; background:#FF8C4215; color:#FF8C42; border-radius:3px; font-size:0.68rem; font-weight:600;">5.4 电商场景·性价比+差异化</span>
  620. </div>
  621. <div style="padding-top:14px; border-top:1px solid var(--border); display:flex; justify-content:space-between; align-items:center;">
  622. <span class="text-xs text-mono" style="color:var(--text-3); letter-spacing:0.12em;">→ 跳转章节</span>
  623. <span class="text-mono text-xs" style="color:#FF8C42;">5 / 7</span>
  624. </div>
  625. </a>
  626. <a href="#competitor" class="fade-up" style="text-decoration:none; display:block; background:var(--bg-1); border:1px solid var(--border); border-left:4px solid #FF4D8D; border-radius:var(--radius-md); padding:28px; transition:all .35s cubic-bezier(.2,.7,.2,1); position:relative; overflow:hidden;" onmouseover="this.style.transform='translateY(-4px)'; this.style.borderColor='#FF4D8D'; this.style.boxShadow='0 20px 60px -20px #FF4D8D55'" onmouseout="this.style.transform='translateY(0)'; this.style.borderColor='var(--border)'; this.style.boxShadow='none'">
  627. <div style="position:absolute; top:-20px; right:-10px; font-family:var(--font-head); font-weight:900; font-size:9rem; line-height:1; color:#FF4D8D; opacity:.08; letter-spacing:-0.06em; pointer-events:none;">6</div>
  628. <div style="display:flex; justify-content:space-between; align-items:start; margin-bottom:16px;">
  629. <div class="text-mono text-xs" style="color:#FF4D8D; letter-spacing:0.18em; font-weight:700;">CH 6 · COMPETITOR</div>
  630. <div style="font-size:1.8rem; filter:grayscale(20%);">⚔️</div>
  631. </div>
  632. <h3 class="text-h2" style="margin:0 0 12px; color:var(--text-1); font-size:1.55rem;">竞品认知</h3>
  633. <p style="color:var(--text-2); font-size:0.92rem; line-height:1.6; margin-bottom:14px;">护肝片/易善复/片仔癀/熊胆粉/Swisse/海王金樽 6 大竞品 VOC 拆解</p>
  634. <div style="display:flex; flex-wrap:wrap; gap:6px; margin-bottom:14px;">
  635. <span style="padding:3px 9px; background:#FF4D8D15; color:#FF4D8D; border-radius:3px; font-size:0.68rem; font-weight:600;">6.1 护肝片·副作用/品牌老化</span><span style="padding:3px 9px; background:#FF4D8D15; color:#FF4D8D; border-radius:3px; font-size:0.68rem; font-weight:600;">6.2 易善复·胃肠反应/西药感</span><span style="padding:3px 9px; background:#FF4D8D15; color:#FF4D8D; border-radius:3px; font-size:0.68rem; font-weight:600;">6.3 片仔癀·天价/稀缺</span><span style="padding:3px 9px; background:#FF4D8D15; color:#FF4D8D; border-radius:3px; font-size:0.68rem; font-weight:600;">6.4 熊胆粉·寒凉/伦理</span><span style="padding:3px 9px; background:#FF4D8D15; color:#FF4D8D; border-radius:3px; font-size:0.68rem; font-weight:600;">6.5 Swisse/汤臣倍健·水飞蓟弱体感</span>
  636. </div>
  637. <div style="padding-top:14px; border-top:1px solid var(--border); display:flex; justify-content:space-between; align-items:center;">
  638. <span class="text-xs text-mono" style="color:var(--text-3); letter-spacing:0.12em;">→ 跳转章节</span>
  639. <span class="text-mono text-xs" style="color:#FF4D8D;">6 / 7</span>
  640. </div>
  641. </a>
  642. <a href="#action" class="fade-up" style="text-decoration:none; display:block; background:var(--bg-1); border:1px solid var(--border); border-left:4px solid #2D9C5D; border-radius:var(--radius-md); padding:28px; transition:all .35s cubic-bezier(.2,.7,.2,1); position:relative; overflow:hidden;" onmouseover="this.style.transform='translateY(-4px)'; this.style.borderColor='#2D9C5D'; this.style.boxShadow='0 20px 60px -20px #2D9C5D55'" onmouseout="this.style.transform='translateY(0)'; this.style.borderColor='var(--border)'; this.style.boxShadow='none'">
  643. <div style="position:absolute; top:-20px; right:-10px; font-family:var(--font-head); font-weight:900; font-size:9rem; line-height:1; color:#2D9C5D; opacity:.08; letter-spacing:-0.06em; pointer-events:none;">7</div>
  644. <div style="display:flex; justify-content:space-between; align-items:start; margin-bottom:16px;">
  645. <div class="text-mono text-xs" style="color:#2D9C5D; letter-spacing:0.18em; font-weight:700;">CH 7 · ACTION</div>
  646. <div style="font-size:1.8rem; filter:grayscale(20%);">🚀</div>
  647. </div>
  648. <h3 class="text-h2" style="margin:0 0 12px; color:var(--text-1); font-size:1.55rem;">落地行动</h3>
  649. <p style="color:var(--text-2); font-size:0.92rem; line-height:1.6; margin-bottom:14px;">优先级矩阵 × 决策阈值达标 × 10亿 4 渠道拆解路径</p>
  650. <div style="display:flex; flex-wrap:wrap; gap:6px; margin-bottom:14px;">
  651. <span style="padding:3px 9px; background:#2D9C5D15; color:#2D9C5D; border-radius:3px; font-size:0.68rem; font-weight:600;">7.1 优先级矩阵(P0/P1)</span><span style="padding:3px 9px; background:#2D9C5D15; color:#2D9C5D; border-radius:3px; font-size:0.68rem; font-weight:600;">7.2 决策阈值达标表(70%/80%)</span><span style="padding:3px 9px; background:#2D9C5D15; color:#2D9C5D; border-radius:3px; font-size:0.68rem; font-weight:600;">7.3 10亿拆解×4渠道落地</span><span style="padding:3px 9px; background:#2D9C5D15; color:#2D9C5D; border-radius:3px; font-size:0.68rem; font-weight:600;">7.4 下阶段衔接</span>
  652. </div>
  653. <div style="padding-top:14px; border-top:1px solid var(--border); display:flex; justify-content:space-between; align-items:center;">
  654. <span class="text-xs text-mono" style="color:var(--text-3); letter-spacing:0.12em;">→ 跳转章节</span>
  655. <span class="text-mono text-xs" style="color:#2D9C5D;">7 / 7</span>
  656. </div>
  657. </a>
  658. </div>
  659. <div class="fade-up" style="margin-top:48px; padding:24px 28px; background:linear-gradient(135deg, #D4A57408, #2D9C5D06); border:1px solid #D4A57422; border-radius:var(--radius-md);">
  660. <div class="text-mono text-xs" style="color:#D4A574; letter-spacing:0.15em; margin-bottom:10px;">METHODOLOGY · 方法论自律</div>
  661. <div style="color:var(--text-1); font-size:1rem; line-height:1.7;">
  662. 本报告严格遵循《<strong style="color:#2D9C5D;">docs/jiangzhong/1.VOC方向定位.md</strong>》会议确认的 <strong>能做 / 不能做</strong>边界:<br/>
  663. <strong style="color:#D4A574;">✅ 可调研</strong>:包装(外/内/片剂外观/规格)、定价(分渠道×规格)、话术(藤茶/DMY/解酒/社交)、场景(4 渠道适配)、竞品认知;<br/>
  664. <strong style="color:#FF4D8D;">❌ 不调研</strong>:产品名字、批文、配方、剂型(片剂形态不可改,但三角形/纹理可调);<br/>
  665. 每一个结论都附 <strong style="color:#2D9C5D;">多平台 VOC 真实原声</strong>(小红书/抖音/知乎/电商) + <strong style="color:#0085CA;">竞品对比数据</strong> + <strong style="color:#D4A574;">决策阈值量化</strong>(≥70% / ≥80%)三重交叉验证。
  666. </div>
  667. </div>
  668. </div>
  669. </section>
  670. <section class="report-section" id="method" data-tone="green" data-slide-num="03/42" style="justify-content:center;">
  671. <div class="section-inner">
  672. <div class="rise-in" style="text-align:center; margin-bottom:48px;">
  673. <div class="text-mono" style="color:#2D9C5D; letter-spacing:0.35em; font-size:0.8rem; margin-bottom:20px;">CHAPTER 1 · METHODOLOGY</div>
  674. <h1 style="font-family:var(--font-head); font-weight:900; font-size:clamp(4rem, 10vw, 8rem); line-height:0.92; letter-spacing:-0.04em; color:#fff; background:linear-gradient(135deg, #fff 30%, #2D9C5D 100%); -webkit-background-clip:text; background-clip:text; -webkit-text-fill-color:transparent; margin:0 0 18px;">
  675. VOC 方法论
  676. </h1>
  677. <p class="text-poster" style="font-size:clamp(1.2rem, 2.2vw, 1.8rem); color:var(--text-2); font-weight:500; max-width:820px; margin:0 auto; line-height:1.5;">10亿目标 × 4 渠道 × 5 模块 × 多平台评论颗粒度验证框架</p>
  678. </div>
  679. <div class="fade-up" style="max-width:920px; margin:0 auto 40px; padding:28px 36px; background:rgba(255,255,255,0.02); border-left:4px solid #2D9C5D; border-radius:0 var(--radius-md) var(--radius-md) 0;">
  680. <div class="text-mono text-xs" style="color:#2D9C5D; letter-spacing:0.15em; margin-bottom:10px;">KEY TAKE · 本章核心</div>
  681. <div style="font-size:1.15rem; line-height:1.75; color:var(--text-1);">基于会议确认的 <strong style="color:#2D9C5D;">4 大核心维度 × 5 调研模块</strong>,锁定"能做(包装/定价/话术/渠道)"与"不能做(名字/批文/配方/剂型)"边界,所有 VOC 采集均服务于 <strong style="color:#D4A574;">10 亿规模 × 药线3亿 + 礼品2.5亿 + 餐饮2.5亿 + 电商2亿</strong>落地。</div>
  682. </div>
  683. <div class="grid fade-up" style="grid-template-columns:repeat(5, 1fr); gap:14px; max-width:1100px; margin:0 auto;">
  684. <div style="background:var(--bg-1); border:1px solid var(--border); border-radius:var(--radius-md); padding:18px 16px; display:flex; flex-direction:column; gap:8px; border-top:2px solid #2D9C5D;">
  685. <div class="text-mono text-xs" style="color:#2D9C5D; letter-spacing:0.1em; font-weight:700;">1.1</div>
  686. <div style="font-weight:700; font-size:0.86rem; color:var(--text-1); line-height:1.35;">10亿目标×4渠道拆解</div>
  687. </div>
  688. <div style="background:var(--bg-1); border:1px solid var(--border); border-radius:var(--radius-md); padding:18px 16px; display:flex; flex-direction:column; gap:8px; border-top:2px solid #2D9C5D;">
  689. <div class="text-mono text-xs" style="color:#2D9C5D; letter-spacing:0.1em; font-weight:700;">1.2</div>
  690. <div style="font-weight:700; font-size:0.86rem; color:var(--text-1); line-height:1.35;">5 模块×决策阈值</div>
  691. </div>
  692. <div style="background:var(--bg-1); border:1px solid var(--border); border-radius:var(--radius-md); padding:18px 16px; display:flex; flex-direction:column; gap:8px; border-top:2px solid #2D9C5D;">
  693. <div class="text-mono text-xs" style="color:#2D9C5D; letter-spacing:0.1em; font-weight:700;">1.3</div>
  694. <div style="font-weight:700; font-size:0.86rem; color:var(--text-1); line-height:1.35;">多平台采集矩阵</div>
  695. </div>
  696. <div style="background:var(--bg-1); border:1px solid var(--border); border-radius:var(--radius-md); padding:18px 16px; display:flex; flex-direction:column; gap:8px; border-top:2px solid #2D9C5D;">
  697. <div class="text-mono text-xs" style="color:#2D9C5D; letter-spacing:0.1em; font-weight:700;">1.4</div>
  698. <div style="font-weight:700; font-size:0.86rem; color:var(--text-1); line-height:1.35;">评论颗粒度分析框架</div>
  699. </div>
  700. <div style="background:var(--bg-1); border:1px solid var(--border); border-radius:var(--radius-md); padding:18px 16px; display:flex; flex-direction:column; gap:8px; border-top:2px solid #2D9C5D;">
  701. <div class="text-mono text-xs" style="color:#2D9C5D; letter-spacing:0.1em; font-weight:700;">1.5</div>
  702. <div style="font-weight:700; font-size:0.86rem; color:var(--text-1); line-height:1.35;">可做/不可做边界</div>
  703. </div>
  704. </div>
  705. <div class="fade-up text-mono text-xs" style="margin-top:56px; text-align:center; color:var(--text-3); letter-spacing:0.2em;">
  706. ↓ 滚动查看 5 个子章节展开
  707. </div>
  708. </div>
  709. </section>
  710. <section class="report-section" id="method-1" data-tone="green" data-slide-num="04/42">
  711. <div class="section-inner">
  712. <div class="section-head rise-in">
  713. <div class="section-eyebrow" style="color:#2D9C5D;">1.1 · REVENUE TARGET DECOMPOSITION</div>
  714. <h2 class="text-h1"><span class="headline-anim">10 亿目标 · 4 渠道营收拆解</span></h2>
  715. <p class="section-sub">基于会议确认的 <strong style="color:#2D9C5D;">10 亿目标 × 4 渠道分工</strong>,每个渠道独立的 SKU / 定价 / 用户画像 / 增长参照系</p>
  716. </div>
  717. <!-- 10 亿总览 SVG 饼图 -->
  718. <div class="fade-up" style="background:var(--bg-1); border:1px solid var(--border); border-radius:var(--radius-md); padding:28px; margin-bottom:28px;">
  719. <div class="text-mono text-xs" style="color:#2D9C5D; letter-spacing:0.15em; margin-bottom:16px;">TARGET BREAKDOWN · 10亿 × 4 渠道分布(饼图)</div>
  720. <div style="display:grid; grid-template-columns:320px 1fr; gap:32px; align-items:center;">
  721. <svg viewBox="0 0 200 200" style="width:100%; max-width:320px;">
  722. <defs>
  723. <linearGradient id="gradCh0" x1="0" y1="0" x2="1" y2="1">
  724. <stop offset="0" stop-color="#0085CA" stop-opacity="0.85"/>
  725. <stop offset="1" stop-color="#0085CA" stop-opacity="1"/>
  726. </linearGradient>
  727. <linearGradient id="gradCh1" x1="0" y1="0" x2="1" y2="1">
  728. <stop offset="0" stop-color="#D4A574" stop-opacity="0.85"/>
  729. <stop offset="1" stop-color="#D4A574" stop-opacity="1"/>
  730. </linearGradient>
  731. <linearGradient id="gradCh2" x1="0" y1="0" x2="1" y2="1">
  732. <stop offset="0" stop-color="#FF8C42" stop-opacity="0.85"/>
  733. <stop offset="1" stop-color="#FF8C42" stop-opacity="1"/>
  734. </linearGradient>
  735. <linearGradient id="gradCh3" x1="0" y1="0" x2="1" y2="1">
  736. <stop offset="0" stop-color="#2D9C5D" stop-opacity="0.85"/>
  737. <stop offset="1" stop-color="#2D9C5D" stop-opacity="1"/>
  738. </linearGradient>
  739. </defs>
  740. <path d="M 100,100 L 100.00,20.00 A 80,80 0 0 1 176.08,124.72 Z" fill="url(#gradCh0)" stroke="var(--bg-0)" stroke-width="2"/>
  741. <text x="142.07" y="69.44" text-anchor="middle" font-family="ui-sans-serif" font-size="14" font-weight="900" fill="#fff">30%</text>
  742. <text x="142.07" y="85.44" text-anchor="middle" font-family="ui-sans-serif" font-size="10" font-weight="700" fill="#fff" opacity="0.9">🏥 药线</text>
  743. <path d="M 100,100 L 176.08,124.72 A 80,80 0 0 1 75.28,176.08 Z" fill="url(#gradCh1)" stroke="var(--bg-0)" stroke-width="2"/>
  744. <text x="123.61" y="146.33" text-anchor="middle" font-family="ui-sans-serif" font-size="14" font-weight="900" fill="#fff">25%</text>
  745. <text x="123.61" y="162.33" text-anchor="middle" font-family="ui-sans-serif" font-size="10" font-weight="700" fill="#fff" opacity="0.9">🎁 礼品</text>
  746. <path d="M 100,100 L 75.28,176.08 A 80,80 0 0 1 23.92,75.28 Z" fill="url(#gradCh2)" stroke="var(--bg-0)" stroke-width="2"/>
  747. <text x="53.67" y="123.61" text-anchor="middle" font-family="ui-sans-serif" font-size="14" font-weight="900" fill="#fff">25%</text>
  748. <text x="53.67" y="139.61" text-anchor="middle" font-family="ui-sans-serif" font-size="10" font-weight="700" fill="#fff" opacity="0.9">🍷 餐饮</text>
  749. <path d="M 100,100 L 23.92,75.28 A 80,80 0 0 1 100.00,20.00 Z" fill="url(#gradCh3)" stroke="var(--bg-0)" stroke-width="2"/>
  750. <text x="69.44" y="57.93" text-anchor="middle" font-family="ui-sans-serif" font-size="14" font-weight="900" fill="#fff">20%</text>
  751. <text x="69.44" y="73.93" text-anchor="middle" font-family="ui-sans-serif" font-size="10" font-weight="700" fill="#fff" opacity="0.9">💻 电商</text>
  752. <circle cx="100" cy="100" r="36" fill="var(--bg-1)" stroke="#2D9C5D" stroke-width="2"/>
  753. <text x="100" y="94" text-anchor="middle" font-family="ui-sans-serif" font-size="11" fill="var(--text-3)" font-weight="700" letter-spacing="0.08em">TOTAL</text>
  754. <text x="100" y="112" text-anchor="middle" font-family="ui-sans-serif" font-size="20" fill="#2D9C5D" font-weight="900">10亿</text>
  755. </svg>
  756. <div style="display:grid; gap:10px;">
  757. <div style="display:flex; align-items:center; gap:14px; padding:12px 14px; background:#0085CA08; border-left:4px solid #0085CA; border-radius:6px;">
  758. <div style="width:44px; height:44px; background:#0085CA; border-radius:50%; display:flex; align-items:center; justify-content:center; font-size:1.4rem; color:#fff;">🏥</div>
  759. <div style="flex:1;">
  760. <div style="display:flex; align-items:baseline; gap:8px; margin-bottom:2px;">
  761. <span style="font-size:1.05rem; font-weight:800; color:var(--text-1);">药线</span>
  762. <span class="text-mono text-xs" style="color:#0085CA; letter-spacing:0.08em;">MEDICAL</span>
  763. </div>
  764. <div style="font-size:0.78rem; color:var(--text-3); line-height:1.45;">目标:<strong style="color:#0085CA;">3亿</strong>(占比 30%)· 增长参照 <strong style="color:#0085CA;">+350%(对标易善复 OTC 柜)</strong></div>
  765. </div>
  766. <div style="text-align:right;">
  767. <div style="font-family:var(--font-head); font-weight:900; font-size:1.8rem; color:#0085CA; line-height:1;">3</div>
  768. <div class="text-mono text-xs" style="color:#0085CA; letter-spacing:0.08em; margin-top:2px;">亿 / YEAR</div>
  769. </div>
  770. </div>
  771. <div style="display:flex; align-items:center; gap:14px; padding:12px 14px; background:#D4A57408; border-left:4px solid #D4A574; border-radius:6px;">
  772. <div style="width:44px; height:44px; background:#D4A574; border-radius:50%; display:flex; align-items:center; justify-content:center; font-size:1.4rem; color:#fff;">🎁</div>
  773. <div style="flex:1;">
  774. <div style="display:flex; align-items:baseline; gap:8px; margin-bottom:2px;">
  775. <span style="font-size:1.05rem; font-weight:800; color:var(--text-1);">礼品</span>
  776. <span class="text-mono text-xs" style="color:#D4A574; letter-spacing:0.08em;">GIFT</span>
  777. </div>
  778. <div style="font-size:0.78rem; color:var(--text-3); line-height:1.45;">目标:<strong style="color:#D4A574;">2.5亿</strong>(占比 25%)· 增长参照 <strong style="color:#D4A574;">+420%(对标 Swisse 礼盒)</strong></div>
  779. </div>
  780. <div style="text-align:right;">
  781. <div style="font-family:var(--font-head); font-weight:900; font-size:1.8rem; color:#D4A574; line-height:1;">2.5</div>
  782. <div class="text-mono text-xs" style="color:#D4A574; letter-spacing:0.08em; margin-top:2px;">亿 / YEAR</div>
  783. </div>
  784. </div>
  785. <div style="display:flex; align-items:center; gap:14px; padding:12px 14px; background:#FF8C4208; border-left:4px solid #FF8C42; border-radius:6px;">
  786. <div style="width:44px; height:44px; background:#FF8C42; border-radius:50%; display:flex; align-items:center; justify-content:center; font-size:1.4rem; color:#fff;">🍷</div>
  787. <div style="flex:1;">
  788. <div style="display:flex; align-items:baseline; gap:8px; margin-bottom:2px;">
  789. <span style="font-size:1.05rem; font-weight:800; color:var(--text-1);">餐饮</span>
  790. <span class="text-mono text-xs" style="color:#FF8C42; letter-spacing:0.08em;">DINING</span>
  791. </div>
  792. <div style="font-size:0.78rem; color:var(--text-3); line-height:1.45;">目标:<strong style="color:#FF8C42;">2.5亿</strong>(占比 25%)· 增长参照 <strong style="color:#FF8C42;">+800%(对标海王金樽失败复盘)</strong></div>
  793. </div>
  794. <div style="text-align:right;">
  795. <div style="font-family:var(--font-head); font-weight:900; font-size:1.8rem; color:#FF8C42; line-height:1;">2.5</div>
  796. <div class="text-mono text-xs" style="color:#FF8C42; letter-spacing:0.08em; margin-top:2px;">亿 / YEAR</div>
  797. </div>
  798. </div>
  799. <div style="display:flex; align-items:center; gap:14px; padding:12px 14px; background:#2D9C5D08; border-left:4px solid #2D9C5D; border-radius:6px;">
  800. <div style="width:44px; height:44px; background:#2D9C5D; border-radius:50%; display:flex; align-items:center; justify-content:center; font-size:1.4rem; color:#fff;">💻</div>
  801. <div style="flex:1;">
  802. <div style="display:flex; align-items:baseline; gap:8px; margin-bottom:2px;">
  803. <span style="font-size:1.05rem; font-weight:800; color:var(--text-1);">电商</span>
  804. <span class="text-mono text-xs" style="color:#2D9C5D; letter-spacing:0.08em;">ECOMMERCE</span>
  805. </div>
  806. <div style="font-size:0.78rem; color:var(--text-3); line-height:1.45;">目标:<strong style="color:#2D9C5D;">2亿</strong>(占比 20%)· 增长参照 <strong style="color:#2D9C5D;">+180%(对标 Swisse 天猫)</strong></div>
  807. </div>
  808. <div style="text-align:right;">
  809. <div style="font-family:var(--font-head); font-weight:900; font-size:1.8rem; color:#2D9C5D; line-height:1;">2</div>
  810. <div class="text-mono text-xs" style="color:#2D9C5D; letter-spacing:0.08em; margin-top:2px;">亿 / YEAR</div>
  811. </div>
  812. </div>
  813. </div>
  814. </div>
  815. </div>
  816. <!-- 4 渠道详细卡片 -->
  817. <div class="fade-up" style="display:grid; grid-template-columns:repeat(2, 1fr); gap:16px; margin-bottom:24px;">
  818. <div style="background:var(--bg-1); border:1px solid #0085CA44; border-top:4px solid #0085CA; border-radius:var(--radius-md); padding:20px;">
  819. <div style="display:flex; align-items:center; justify-content:space-between; margin-bottom:14px;">
  820. <div style="display:flex; align-items:center; gap:12px;">
  821. <div style="width:44px; height:44px; background:#0085CA22; border-radius:50%; display:flex; align-items:center; justify-content:center; font-size:1.5rem;">🏥</div>
  822. <div>
  823. <div class="text-mono text-xs" style="color:#0085CA; letter-spacing:0.12em;">CHANNEL MEDICAL</div>
  824. <div style="font-size:1.15rem; font-weight:800; color:var(--text-1);">药线渠道</div>
  825. </div>
  826. </div>
  827. <div style="text-align:right;">
  828. <div style="font-family:var(--font-head); font-weight:900; font-size:2rem; color:#0085CA; line-height:1;">3亿</div>
  829. <div class="text-mono text-xs" style="color:#0085CA; margin-top:2px; letter-spacing:0.08em;">30% OF 10亿</div>
  830. </div>
  831. </div>
  832. <div style="display:grid; gap:8px;">
  833. <div style="padding:8px 12px; background:#0085CA08; border-radius:4px;">
  834. <div class="text-mono text-xs" style="color:#0085CA; letter-spacing:0.08em; margin-bottom:3px;">🎯 核心钩子</div>
  835. <div style="font-size:0.82rem; color:var(--text-1); font-weight:600; line-height:1.45;">&quot;对化学性肝损伤有辅助保护&quot;蓝帽合规 · 长期服用安全 · 与药物同服无冲突</div>
  836. </div>
  837. <div style="padding:8px 12px; background:var(--bg-2); border-radius:4px;">
  838. <div class="text-mono text-xs" style="color:var(--text-3); letter-spacing:0.08em; margin-bottom:3px;">📦 SKU 形态</div>
  839. <div style="font-size:0.78rem; color:var(--text-2); line-height:1.45;">板装 12片×2板 / 60片瓶装(白底标准蓝绿)</div>
  840. </div>
  841. <div style="padding:8px 12px; background:var(--bg-2); border-radius:4px;">
  842. <div class="text-mono text-xs" style="color:var(--text-3); letter-spacing:0.08em; margin-bottom:3px;">🏪 主阵地</div>
  843. <div style="font-size:0.78rem; color:var(--text-2); line-height:1.45;">药店(一心堂/大参林/老百姓)+ 医院便民药房 + 医药流通</div>
  844. </div>
  845. <div style="padding:8px 12px; background:var(--bg-2); border-radius:4px;">
  846. <div class="text-mono text-xs" style="color:var(--text-3); letter-spacing:0.08em; margin-bottom:3px;">👤 目标用户</div>
  847. <div style="font-size:0.78rem; color:var(--text-2); line-height:1.45;">执业药师 / 消化科/肝病科医生 / 长期服用护肝用户</div>
  848. </div>
  849. <div style="padding:8px 12px; background:#0085CA12; border-radius:4px;">
  850. <div class="text-mono text-xs" style="color:#0085CA; letter-spacing:0.08em; margin-bottom:3px;">💰 价位参考</div>
  851. <div style="font-size:0.82rem; color:#0085CA; font-weight:700;">¥25-40(板装)/ ¥79-119(瓶装)</div>
  852. </div>
  853. </div>
  854. </div>
  855. <div style="background:var(--bg-1); border:1px solid #D4A57444; border-top:4px solid #D4A574; border-radius:var(--radius-md); padding:20px;">
  856. <div style="display:flex; align-items:center; justify-content:space-between; margin-bottom:14px;">
  857. <div style="display:flex; align-items:center; gap:12px;">
  858. <div style="width:44px; height:44px; background:#D4A57422; border-radius:50%; display:flex; align-items:center; justify-content:center; font-size:1.5rem;">🎁</div>
  859. <div>
  860. <div class="text-mono text-xs" style="color:#D4A574; letter-spacing:0.12em;">CHANNEL GIFT</div>
  861. <div style="font-size:1.15rem; font-weight:800; color:var(--text-1);">礼品渠道</div>
  862. </div>
  863. </div>
  864. <div style="text-align:right;">
  865. <div style="font-family:var(--font-head); font-weight:900; font-size:2rem; color:#D4A574; line-height:1;">2.5亿</div>
  866. <div class="text-mono text-xs" style="color:#D4A574; margin-top:2px; letter-spacing:0.08em;">25% OF 10亿</div>
  867. </div>
  868. </div>
  869. <div style="display:grid; gap:8px;">
  870. <div style="padding:8px 12px; background:#D4A57408; border-radius:4px;">
  871. <div class="text-mono text-xs" style="color:#D4A574; letter-spacing:0.08em; margin-bottom:3px;">🎯 核心钩子</div>
  872. <div style="font-size:0.82rem; color:var(--text-1); font-weight:600; line-height:1.45;">&quot;中国藤茶·新中式轻奢礼盒&quot;有面子有健康价值 · 区别普通保健品</div>
  873. </div>
  874. <div style="padding:8px 12px; background:var(--bg-2); border-radius:4px;">
  875. <div class="text-mono text-xs" style="color:var(--text-3); letter-spacing:0.08em; margin-bottom:3px;">📦 SKU 形态</div>
  876. <div style="font-size:0.78rem; color:var(--text-2); line-height:1.45;">高端礼盒 2瓶/4瓶(磨砂玻璃+草本纹)</div>
  877. </div>
  878. <div style="padding:8px 12px; background:var(--bg-2); border-radius:4px;">
  879. <div class="text-mono text-xs" style="color:var(--text-3); letter-spacing:0.08em; margin-bottom:3px;">🏪 主阵地</div>
  880. <div style="font-size:0.78rem; color:var(--text-2); line-height:1.45;">节日/商务送礼场景 · 品牌官方旗舰店 · 高端商超专柜</div>
  881. </div>
  882. <div style="padding:8px 12px; background:var(--bg-2); border-radius:4px;">
  883. <div class="text-mono text-xs" style="color:var(--text-3); letter-spacing:0.08em; margin-bottom:3px;">👤 目标用户</div>
  884. <div style="font-size:0.78rem; color:var(--text-2); line-height:1.45;">25-55岁 商务/节日送礼 · 关注健康+注重体面</div>
  885. </div>
  886. <div style="padding:8px 12px; background:#D4A57412; border-radius:4px;">
  887. <div class="text-mono text-xs" style="color:#D4A574; letter-spacing:0.08em; margin-bottom:3px;">💰 价位参考</div>
  888. <div style="font-size:0.82rem; color:#D4A574; font-weight:700;">¥298-498(2瓶)/ ¥598-898(4瓶)</div>
  889. </div>
  890. </div>
  891. </div>
  892. <div style="background:var(--bg-1); border:1px solid #FF8C4244; border-top:4px solid #FF8C42; border-radius:var(--radius-md); padding:20px;">
  893. <div style="display:flex; align-items:center; justify-content:space-between; margin-bottom:14px;">
  894. <div style="display:flex; align-items:center; gap:12px;">
  895. <div style="width:44px; height:44px; background:#FF8C4222; border-radius:50%; display:flex; align-items:center; justify-content:center; font-size:1.5rem;">🍷</div>
  896. <div>
  897. <div class="text-mono text-xs" style="color:#FF8C42; letter-spacing:0.12em;">CHANNEL DINING</div>
  898. <div style="font-size:1.15rem; font-weight:800; color:var(--text-1);">餐饮渠道</div>
  899. </div>
  900. </div>
  901. <div style="text-align:right;">
  902. <div style="font-family:var(--font-head); font-weight:900; font-size:2rem; color:#FF8C42; line-height:1;">2.5亿</div>
  903. <div class="text-mono text-xs" style="color:#FF8C42; margin-top:2px; letter-spacing:0.08em;">25% OF 10亿</div>
  904. </div>
  905. </div>
  906. <div style="display:grid; gap:8px;">
  907. <div style="padding:8px 12px; background:#FF8C4208; border-radius:4px;">
  908. <div class="text-mono text-xs" style="color:#FF8C42; letter-spacing:0.08em; margin-bottom:3px;">🎯 核心钩子</div>
  909. <div style="font-size:0.82rem; color:var(--text-1); font-weight:600; line-height:1.45;">&quot;酒局掏出分一片&quot;DMY 即时解酒体感 · 社交货币属性</div>
  910. </div>
  911. <div style="padding:8px 12px; background:var(--bg-2); border-radius:4px;">
  912. <div class="text-mono text-xs" style="color:var(--text-3); letter-spacing:0.08em; margin-bottom:3px;">📦 SKU 形态</div>
  913. <div style="font-size:0.78rem; color:var(--text-2); line-height:1.45;">便携锡纸板装 12片 · 单片小包装</div>
  914. </div>
  915. <div style="padding:8px 12px; background:var(--bg-2); border-radius:4px;">
  916. <div class="text-mono text-xs" style="color:var(--text-3); letter-spacing:0.08em; margin-bottom:3px;">🏪 主阵地</div>
  917. <div style="font-size:0.78rem; color:var(--text-2); line-height:1.45;">饭店 / KTV / 商务宴会 · 社交酒局 · 企业团购</div>
  918. </div>
  919. <div style="padding:8px 12px; background:var(--bg-2); border-radius:4px;">
  920. <div class="text-mono text-xs" style="color:var(--text-3); letter-spacing:0.08em; margin-bottom:3px;">👤 目标用户</div>
  921. <div style="font-size:0.78rem; color:var(--text-2); line-height:1.45;">25-45岁 应酬男 · 老板/中高层管理 · 注重面子社交</div>
  922. </div>
  923. <div style="padding:8px 12px; background:#FF8C4212; border-radius:4px;">
  924. <div class="text-mono text-xs" style="color:#FF8C42; letter-spacing:0.08em; margin-bottom:3px;">💰 价位参考</div>
  925. <div style="font-size:0.82rem; color:#FF8C42; font-weight:700;">¥29-39(12片便携装)</div>
  926. </div>
  927. </div>
  928. </div>
  929. <div style="background:var(--bg-1); border:1px solid #2D9C5D44; border-top:4px solid #2D9C5D; border-radius:var(--radius-md); padding:20px;">
  930. <div style="display:flex; align-items:center; justify-content:space-between; margin-bottom:14px;">
  931. <div style="display:flex; align-items:center; gap:12px;">
  932. <div style="width:44px; height:44px; background:#2D9C5D22; border-radius:50%; display:flex; align-items:center; justify-content:center; font-size:1.5rem;">💻</div>
  933. <div>
  934. <div class="text-mono text-xs" style="color:#2D9C5D; letter-spacing:0.12em;">CHANNEL ECOMMERCE</div>
  935. <div style="font-size:1.15rem; font-weight:800; color:var(--text-1);">电商渠道</div>
  936. </div>
  937. </div>
  938. <div style="text-align:right;">
  939. <div style="font-family:var(--font-head); font-weight:900; font-size:2rem; color:#2D9C5D; line-height:1;">2亿</div>
  940. <div class="text-mono text-xs" style="color:#2D9C5D; margin-top:2px; letter-spacing:0.08em;">20% OF 10亿</div>
  941. </div>
  942. </div>
  943. <div style="display:grid; gap:8px;">
  944. <div style="padding:8px 12px; background:#2D9C5D08; border-radius:4px;">
  945. <div class="text-mono text-xs" style="color:#2D9C5D; letter-spacing:0.08em; margin-bottom:3px;">🎯 核心钩子</div>
  946. <div style="font-size:0.82rem; color:var(--text-1); font-weight:600; line-height:1.45;">&quot;藤茶DMY vs 水飞蓟&quot;差异化科普 + 会员复购 + 一物一码</div>
  947. </div>
  948. <div style="padding:8px 12px; background:var(--bg-2); border-radius:4px;">
  949. <div class="text-mono text-xs" style="color:var(--text-3); letter-spacing:0.08em; margin-bottom:3px;">📦 SKU 形态</div>
  950. <div style="font-size:0.78rem; color:var(--text-2); line-height:1.45;">瓶装 60片日常装 / 多规格矩阵</div>
  951. </div>
  952. <div style="padding:8px 12px; background:var(--bg-2); border-radius:4px;">
  953. <div class="text-mono text-xs" style="color:var(--text-3); letter-spacing:0.08em; margin-bottom:3px;">🏪 主阵地</div>
  954. <div style="font-size:0.78rem; color:var(--text-2); line-height:1.45;">天猫 / 京东 / 拼多多 / 抖音小店 · 品牌旗舰店</div>
  955. </div>
  956. <div style="padding:8px 12px; background:var(--bg-2); border-radius:4px;">
  957. <div class="text-mono text-xs" style="color:var(--text-3); letter-spacing:0.08em; margin-bottom:3px;">👤 目标用户</div>
  958. <div style="font-size:0.78rem; color:var(--text-2); line-height:1.45;">20-50岁 线上购买保健品习惯 · 关注性价比+差异化</div>
  959. </div>
  960. <div style="padding:8px 12px; background:#2D9C5D12; border-radius:4px;">
  961. <div class="text-mono text-xs" style="color:#2D9C5D; letter-spacing:0.08em; margin-bottom:3px;">💰 价位参考</div>
  962. <div style="font-size:0.82rem; color:#2D9C5D; font-weight:700;">¥89-139(60片)/ 组合装¥169-259</div>
  963. </div>
  964. </div>
  965. </div>
  966. </div>
  967. <!-- 方法论核心逻辑 -->
  968. <div class="fade-up" style="background:linear-gradient(135deg, #2D9C5D10, #D4A57408); border:1px solid #2D9C5D44; border-radius:var(--radius-md); padding:20px 24px;">
  969. <div class="text-mono text-xs" style="color:#2D9C5D; letter-spacing:0.15em; margin-bottom:10px;">CORE LOGIC · 10亿方法论核心</div>
  970. <div style="display:grid; grid-template-columns:repeat(4, 1fr); gap:14px;">
  971. <div style="text-align:center; padding:12px; border-right:1px dashed #2D9C5D33;">
  972. <div style="font-family:var(--font-head); font-weight:900; font-size:1.8rem; color:#0085CA; line-height:1;">30%</div>
  973. <div class="text-mono text-xs" style="color:#0085CA; margin-top:4px; letter-spacing:0.08em;">药线</div>
  974. <div style="font-size:0.72rem; color:var(--text-3); margin-top:4px;">合规背书 · 长期养护</div>
  975. </div>
  976. <div style="text-align:center; padding:12px; border-right:1px dashed #2D9C5D33;">
  977. <div style="font-family:var(--font-head); font-weight:900; font-size:1.8rem; color:#D4A574; line-height:1;">25%</div>
  978. <div class="text-mono text-xs" style="color:#D4A574; margin-top:4px; letter-spacing:0.08em;">礼品</div>
  979. <div style="font-size:0.72rem; color:var(--text-3); margin-top:4px;">颜值溢价 · 体面社交</div>
  980. </div>
  981. <div style="text-align:center; padding:12px; border-right:1px dashed #2D9C5D33;">
  982. <div style="font-family:var(--font-head); font-weight:900; font-size:1.8rem; color:#FF8C42; line-height:1;">25%</div>
  983. <div class="text-mono text-xs" style="color:#FF8C42; margin-top:4px; letter-spacing:0.08em;">餐饮</div>
  984. <div style="font-size:0.72rem; color:var(--text-3); margin-top:4px;">即时体感 · 酒桌货币</div>
  985. </div>
  986. <div style="text-align:center; padding:12px;">
  987. <div style="font-family:var(--font-head); font-weight:900; font-size:1.8rem; color:#2D9C5D; line-height:1;">20%</div>
  988. <div class="text-mono text-xs" style="color:#2D9C5D; margin-top:4px; letter-spacing:0.08em;">电商</div>
  989. <div style="font-size:0.72rem; color:var(--text-3); margin-top:4px;">差异科普 · 会员复购</div>
  990. </div>
  991. </div>
  992. </div>
  993. </div>
  994. </section>
  995. <section class="report-section" id="method-2" data-tone="green" data-slide-num="05/42">
  996. <div class="section-inner">
  997. <div class="section-head rise-in">
  998. <div class="section-eyebrow" style="color:#2D9C5D;">1.2 · RESEARCH MODULES & DECISION THRESHOLDS</div>
  999. <h2 class="text-h1"><span class="headline-anim">5 调研模块 × 决策阈值矩阵</span></h2>
  1000. <p class="section-sub">从《1.VOC方向定位.md》会议确认的 <strong style="color:#2D9C5D;">5 大调研模块</strong>,每个模块独立的 调研范围 × 排除项 × 决策阈值 × 样本量 × 落地产出</p>
  1001. </div>
  1002. <!-- 5 模块卡片 -->
  1003. <div class="fade-up" style="display:grid; grid-template-columns:repeat(1, 1fr); gap:14px; margin-bottom:28px;">
  1004. <div style="background:var(--bg-1); border:1px solid #D4A57444; border-left:4px solid #D4A574; border-radius:var(--radius-md); padding:18px; display:grid; grid-template-columns:50px 1.3fr 1fr 1fr 180px; gap:16px; align-items:center;">
  1005. <div style="text-align:center;">
  1006. <div style="width:44px; height:44px; background:#D4A57422; border-radius:50%; display:flex; align-items:center; justify-content:center; font-size:1.4rem; margin:0 auto;">📦</div>
  1007. <div class="text-mono text-xs" style="color:#D4A574; margin-top:6px; letter-spacing:0.08em; font-weight:700;">01</div>
  1008. </div>
  1009. <div>
  1010. <div style="display:flex; align-items:center; gap:8px; margin-bottom:4px;">
  1011. <span style="font-size:1.05rem; font-weight:800; color:var(--text-1);">包装调研</span>
  1012. <span class="text-mono text-xs" style="color:#D4A574; letter-spacing:0.08em;">PACKAGE</span>
  1013. <span style="padding:2px 7px; background:#FF4D8D22; color:#FF4D8D; border-radius:3px; font-family:var(--font-mono); font-size:0.7rem; font-weight:700;">P0</span>
  1014. </div>
  1015. <div class="text-mono text-xs" style="color:var(--text-3); letter-spacing:0.08em; margin-bottom:3px;">📋 调研范围</div>
  1016. <div style="font-size:0.78rem; color:var(--text-2); line-height:1.45; margin-bottom:6px;">外包装材质/颜色/设计、内包装形态、片剂外观、礼品规格</div>
  1017. <div style="font-size:0.7rem; color:#FF4D8D; line-height:1.4;">❌ 不调研:换剂型 / 改核心标识 / 违规材质</div>
  1018. </div>
  1019. <div>
  1020. <div class="text-mono text-xs" style="color:var(--text-3); letter-spacing:0.08em; margin-bottom:3px;">📊 样本量</div>
  1021. <div style="font-size:0.82rem; color:var(--text-1); font-weight:700; line-height:1.4; margin-bottom:8px;">≥ 150 条评论 · 20-30 用户深访</div>
  1022. <div class="text-mono text-xs" style="color:var(--text-3); letter-spacing:0.08em; margin-bottom:3px;">⚖️ 决策规则</div>
  1023. <div style="font-size:0.73rem; color:var(--text-2); line-height:1.45;">用户偏好度 ≥70% 的方案 + 兼顾四大渠道适配</div>
  1024. </div>
  1025. <div>
  1026. <div class="text-mono text-xs" style="color:var(--text-3); letter-spacing:0.08em; margin-bottom:5px;">📤 落地产出</div>
  1027. <ul style="margin:0; padding:0; list-style:none;">
  1028. <li style="padding:2px 0; font-size:0.72rem; color:var(--text-2); line-height:1.4; padding-left:12px; position:relative;"><span style="position:absolute; left:0; color:#D4A574;">✓</span>药线板装视觉规范</li><li style="padding:2px 0; font-size:0.72rem; color:var(--text-2); line-height:1.4; padding-left:12px; position:relative;"><span style="position:absolute; left:0; color:#D4A574;">✓</span>礼品礼盒包装样稿</li><li style="padding:2px 0; font-size:0.72rem; color:var(--text-2); line-height:1.4; padding-left:12px; position:relative;"><span style="position:absolute; left:0; color:#D4A574;">✓</span>片剂 3 个外观候选</li><li style="padding:2px 0; font-size:0.72rem; color:var(--text-2); line-height:1.4; padding-left:12px; position:relative;"><span style="position:absolute; left:0; color:#D4A574;">✓</span>4 渠道 SKU 矩阵</li>
  1029. </ul>
  1030. </div>
  1031. <div style="text-align:center; padding:14px 10px; background:#D4A57412; border-radius:8px;">
  1032. <div class="text-mono text-xs" style="color:#D4A574; letter-spacing:0.08em; margin-bottom:4px;">阈值</div>
  1033. <div style="font-family:var(--font-head); font-weight:900; font-size:1.6rem; color:#D4A574; line-height:1; margin-bottom:3px;">70%</div>
  1034. <div style="font-size:0.7rem; color:#D4A574; font-weight:600;">偏好度 ≥</div>
  1035. </div>
  1036. </div>
  1037. <div style="background:var(--bg-1); border:1px solid #0085CA44; border-left:4px solid #0085CA; border-radius:var(--radius-md); padding:18px; display:grid; grid-template-columns:50px 1.3fr 1fr 1fr 180px; gap:16px; align-items:center;">
  1038. <div style="text-align:center;">
  1039. <div style="width:44px; height:44px; background:#0085CA22; border-radius:50%; display:flex; align-items:center; justify-content:center; font-size:1.4rem; margin:0 auto;">💰</div>
  1040. <div class="text-mono text-xs" style="color:#0085CA; margin-top:6px; letter-spacing:0.08em; font-weight:700;">02</div>
  1041. </div>
  1042. <div>
  1043. <div style="display:flex; align-items:center; gap:8px; margin-bottom:4px;">
  1044. <span style="font-size:1.05rem; font-weight:800; color:var(--text-1);">定价调研</span>
  1045. <span class="text-mono text-xs" style="color:#0085CA; letter-spacing:0.08em;">PRICING</span>
  1046. <span style="padding:2px 7px; background:#FF4D8D22; color:#FF4D8D; border-radius:3px; font-family:var(--font-mono); font-size:0.7rem; font-weight:700;">P0</span>
  1047. </div>
  1048. <div class="text-mono text-xs" style="color:var(--text-3); letter-spacing:0.08em; margin-bottom:3px;">📋 调研范围</div>
  1049. <div style="font-size:0.78rem; color:var(--text-2); line-height:1.45; margin-bottom:6px;">分渠道定价区间、规格价格带(12/60/120片)、竞品定价对比</div>
  1050. <div style="font-size:0.7rem; color:#FF4D8D; line-height:1.4;">❌ 不调研:突破成本定价 / 低于竞品底线</div>
  1051. </div>
  1052. <div>
  1053. <div class="text-mono text-xs" style="color:var(--text-3); letter-spacing:0.08em; margin-bottom:3px;">📊 样本量</div>
  1054. <div style="font-size:0.82rem; color:var(--text-1); font-weight:700; line-height:1.4; margin-bottom:8px;">≥ 100 条价格敏感度评论 · 电商平台晒单</div>
  1055. <div class="text-mono text-xs" style="color:var(--text-3); letter-spacing:0.08em; margin-bottom:3px;">⚖️ 决策规则</div>
  1056. <div style="font-size:0.73rem; color:var(--text-2); line-height:1.45;">80% 目标用户接受的区间 + 兼顾毛利支撑 10 亿</div>
  1057. </div>
  1058. <div>
  1059. <div class="text-mono text-xs" style="color:var(--text-3); letter-spacing:0.08em; margin-bottom:5px;">📤 落地产出</div>
  1060. <ul style="margin:0; padding:0; list-style:none;">
  1061. <li style="padding:2px 0; font-size:0.72rem; color:var(--text-2); line-height:1.4; padding-left:12px; position:relative;"><span style="position:absolute; left:0; color:#0085CA;">✓</span>药线定价 ¥25-40</li><li style="padding:2px 0; font-size:0.72rem; color:var(--text-2); line-height:1.4; padding-left:12px; position:relative;"><span style="position:absolute; left:0; color:#0085CA;">✓</span>电商定价 ¥89-139</li><li style="padding:2px 0; font-size:0.72rem; color:var(--text-2); line-height:1.4; padding-left:12px; position:relative;"><span style="position:absolute; left:0; color:#0085CA;">✓</span>礼品定价 ¥298-898</li><li style="padding:2px 0; font-size:0.72rem; color:var(--text-2); line-height:1.4; padding-left:12px; position:relative;"><span style="position:absolute; left:0; color:#0085CA;">✓</span>价格带 SKU 对照表</li>
  1062. </ul>
  1063. </div>
  1064. <div style="text-align:center; padding:14px 10px; background:#0085CA12; border-radius:8px;">
  1065. <div class="text-mono text-xs" style="color:#0085CA; letter-spacing:0.08em; margin-bottom:4px;">阈值</div>
  1066. <div style="font-family:var(--font-head); font-weight:900; font-size:1.6rem; color:#0085CA; line-height:1; margin-bottom:3px;">80%</div>
  1067. <div style="font-size:0.7rem; color:#0085CA; font-weight:600;">接受度 ≥</div>
  1068. </div>
  1069. </div>
  1070. <div style="background:var(--bg-1); border:1px solid #8B5CF644; border-left:4px solid #8B5CF6; border-radius:var(--radius-md); padding:18px; display:grid; grid-template-columns:50px 1.3fr 1fr 1fr 180px; gap:16px; align-items:center;">
  1071. <div style="text-align:center;">
  1072. <div style="width:44px; height:44px; background:#8B5CF622; border-radius:50%; display:flex; align-items:center; justify-content:center; font-size:1.4rem; margin:0 auto;">🎯</div>
  1073. <div class="text-mono text-xs" style="color:#8B5CF6; margin-top:6px; letter-spacing:0.08em; font-weight:700;">03</div>
  1074. </div>
  1075. <div>
  1076. <div style="display:flex; align-items:center; gap:8px; margin-bottom:4px;">
  1077. <span style="font-size:1.05rem; font-weight:800; color:var(--text-1);">定位与话术调研</span>
  1078. <span class="text-mono text-xs" style="color:#8B5CF6; letter-spacing:0.08em;">POSITIONING</span>
  1079. <span style="padding:2px 7px; background:#FF4D8D22; color:#FF4D8D; border-radius:3px; font-family:var(--font-mono); font-size:0.7rem; font-weight:700;">P0</span>
  1080. </div>
  1081. <div class="text-mono text-xs" style="color:var(--text-3); letter-spacing:0.08em; margin-bottom:3px;">📋 调研范围</div>
  1082. <div style="font-size:0.78rem; color:var(--text-2); line-height:1.45; margin-bottom:6px;">藤茶/DMY 概念认知度、解酒/安全/社交话术吸引力、分渠道话术</div>
  1083. <div style="font-size:0.7rem; color:#FF4D8D; line-height:1.4;">❌ 不调研:改核心成分 / 宣传治疗 / 更名</div>
  1084. </div>
  1085. <div>
  1086. <div class="text-mono text-xs" style="color:var(--text-3); letter-spacing:0.08em; margin-bottom:3px;">📊 样本量</div>
  1087. <div style="font-size:0.82rem; color:var(--text-1); font-weight:700; line-height:1.4; margin-bottom:8px;">≥ 200 条评论 · 话术 AB 测试</div>
  1088. <div class="text-mono text-xs" style="color:var(--text-3); letter-spacing:0.08em; margin-bottom:3px;">⚖️ 决策规则</div>
  1089. <div style="font-size:0.73rem; color:var(--text-2); line-height:1.45;">记忆点强、能区分竞品(药品/水飞蓟)的话术优先</div>
  1090. </div>
  1091. <div>
  1092. <div class="text-mono text-xs" style="color:var(--text-3); letter-spacing:0.08em; margin-bottom:5px;">📤 落地产出</div>
  1093. <ul style="margin:0; padding:0; list-style:none;">
  1094. <li style="padding:2px 0; font-size:0.72rem; color:var(--text-2); line-height:1.4; padding-left:12px; position:relative;"><span style="position:absolute; left:0; color:#8B5CF6;">✓</span>4 渠道话术包</li><li style="padding:2px 0; font-size:0.72rem; color:var(--text-2); line-height:1.4; padding-left:12px; position:relative;"><span style="position:absolute; left:0; color:#8B5CF6;">✓</span>核心记忆点 Top 5</li><li style="padding:2px 0; font-size:0.72rem; color:var(--text-2); line-height:1.4; padding-left:12px; position:relative;"><span style="position:absolute; left:0; color:#8B5CF6;">✓</span>DMY 科普模板</li><li style="padding:2px 0; font-size:0.72rem; color:var(--text-2); line-height:1.4; padding-left:12px; position:relative;"><span style="position:absolute; left:0; color:#8B5CF6;">✓</span>社交货币故事</li>
  1095. </ul>
  1096. </div>
  1097. <div style="text-align:center; padding:14px 10px; background:#8B5CF612; border-radius:8px;">
  1098. <div class="text-mono text-xs" style="color:#8B5CF6; letter-spacing:0.08em; margin-bottom:4px;">阈值</div>
  1099. <div style="font-family:var(--font-head); font-weight:900; font-size:1.6rem; color:#8B5CF6; line-height:1; margin-bottom:3px;">80%</div>
  1100. <div style="font-size:0.7rem; color:#8B5CF6; font-weight:600;">认可度 ≥</div>
  1101. </div>
  1102. </div>
  1103. <div style="background:var(--bg-1); border:1px solid #FF8C4244; border-left:4px solid #FF8C42; border-radius:var(--radius-md); padding:18px; display:grid; grid-template-columns:50px 1.3fr 1fr 1fr 180px; gap:16px; align-items:center;">
  1104. <div style="text-align:center;">
  1105. <div style="width:44px; height:44px; background:#FF8C4222; border-radius:50%; display:flex; align-items:center; justify-content:center; font-size:1.4rem; margin:0 auto;">🎬</div>
  1106. <div class="text-mono text-xs" style="color:#FF8C42; margin-top:6px; letter-spacing:0.08em; font-weight:700;">04</div>
  1107. </div>
  1108. <div>
  1109. <div style="display:flex; align-items:center; gap:8px; margin-bottom:4px;">
  1110. <span style="font-size:1.05rem; font-weight:800; color:var(--text-1);">场景适配调研</span>
  1111. <span class="text-mono text-xs" style="color:#FF8C42; letter-spacing:0.08em;">SCENE-FIT</span>
  1112. <span style="padding:2px 7px; background:#FF8C4222; color:#FF8C42; border-radius:3px; font-family:var(--font-mono); font-size:0.7rem; font-weight:700;">P1</span>
  1113. </div>
  1114. <div class="text-mono text-xs" style="color:var(--text-3); letter-spacing:0.08em; margin-bottom:3px;">📋 调研范围</div>
  1115. <div style="font-size:0.78rem; color:var(--text-2); line-height:1.45; margin-bottom:6px;">药线合规性、礼品体面感、餐饮便携分食、电商性价比</div>
  1116. <div style="font-size:0.7rem; color:#FF4D8D; line-height:1.4;">❌ 不调研:拓展非护肝场景 / 偏离 4 大渠道</div>
  1117. </div>
  1118. <div>
  1119. <div class="text-mono text-xs" style="color:var(--text-3); letter-spacing:0.08em; margin-bottom:3px;">📊 样本量</div>
  1120. <div style="font-size:0.82rem; color:var(--text-1); font-weight:700; line-height:1.4; margin-bottom:8px;">每渠道 ≥ 80 条评论 · 分场景深访</div>
  1121. <div class="text-mono text-xs" style="color:var(--text-3); letter-spacing:0.08em; margin-bottom:3px;">⚖️ 决策规则</div>
  1122. <div style="font-size:0.73rem; color:var(--text-2); line-height:1.45;">每渠道核心人群 ≥80% 认可方可投放</div>
  1123. </div>
  1124. <div>
  1125. <div class="text-mono text-xs" style="color:var(--text-3); letter-spacing:0.08em; margin-bottom:5px;">📤 落地产出</div>
  1126. <ul style="margin:0; padding:0; list-style:none;">
  1127. <li style="padding:2px 0; font-size:0.72rem; color:var(--text-2); line-height:1.4; padding-left:12px; position:relative;"><span style="position:absolute; left:0; color:#FF8C42;">✓</span>药线医生推荐话术</li><li style="padding:2px 0; font-size:0.72rem; color:var(--text-2); line-height:1.4; padding-left:12px; position:relative;"><span style="position:absolute; left:0; color:#FF8C42;">✓</span>礼品开箱 UGC 物料</li><li style="padding:2px 0; font-size:0.72rem; color:var(--text-2); line-height:1.4; padding-left:12px; position:relative;"><span style="position:absolute; left:0; color:#FF8C42;">✓</span>餐饮酒局示范</li><li style="padding:2px 0; font-size:0.72rem; color:var(--text-2); line-height:1.4; padding-left:12px; position:relative;"><span style="position:absolute; left:0; color:#FF8C42;">✓</span>电商详情页结构</li>
  1128. </ul>
  1129. </div>
  1130. <div style="text-align:center; padding:14px 10px; background:#FF8C4212; border-radius:8px;">
  1131. <div class="text-mono text-xs" style="color:#FF8C42; letter-spacing:0.08em; margin-bottom:4px;">阈值</div>
  1132. <div style="font-family:var(--font-head); font-weight:900; font-size:1.6rem; color:#FF8C42; line-height:1; margin-bottom:3px;">75%</div>
  1133. <div style="font-size:0.7rem; color:#FF8C42; font-weight:600;">场景适配度 ≥</div>
  1134. </div>
  1135. </div>
  1136. <div style="background:var(--bg-1); border:1px solid #FF4D8D44; border-left:4px solid #FF4D8D; border-radius:var(--radius-md); padding:18px; display:grid; grid-template-columns:50px 1.3fr 1fr 1fr 180px; gap:16px; align-items:center;">
  1137. <div style="text-align:center;">
  1138. <div style="width:44px; height:44px; background:#FF4D8D22; border-radius:50%; display:flex; align-items:center; justify-content:center; font-size:1.4rem; margin:0 auto;">⚔️</div>
  1139. <div class="text-mono text-xs" style="color:#FF4D8D; margin-top:6px; letter-spacing:0.08em; font-weight:700;">05</div>
  1140. </div>
  1141. <div>
  1142. <div style="display:flex; align-items:center; gap:8px; margin-bottom:4px;">
  1143. <span style="font-size:1.05rem; font-weight:800; color:var(--text-1);">竞品认知调研</span>
  1144. <span class="text-mono text-xs" style="color:#FF4D8D; letter-spacing:0.08em;">COMPETITOR</span>
  1145. <span style="padding:2px 7px; background:#FF8C4222; color:#FF8C42; border-radius:3px; font-family:var(--font-mono); font-size:0.7rem; font-weight:700;">P1</span>
  1146. </div>
  1147. <div class="text-mono text-xs" style="color:var(--text-3); letter-spacing:0.08em; margin-bottom:3px;">📋 调研范围</div>
  1148. <div style="font-size:0.78rem; color:var(--text-2); line-height:1.45; margin-bottom:6px;">护肝片/易善复/片仔癀/熊胆粉痛点、水飞蓟弱点、海王金樽失败复盘</div>
  1149. <div style="font-size:0.7rem; color:#FF4D8D; line-height:1.4;">❌ 不调研:模仿竞品配方 / 定位药品</div>
  1150. </div>
  1151. <div>
  1152. <div class="text-mono text-xs" style="color:var(--text-3); letter-spacing:0.08em; margin-bottom:3px;">📊 样本量</div>
  1153. <div style="font-size:0.82rem; color:var(--text-1); font-weight:700; line-height:1.4; margin-bottom:8px;">每竞品 ≥ 50 条评论 · 交叉对比</div>
  1154. <div class="text-mono text-xs" style="color:var(--text-3); letter-spacing:0.08em; margin-bottom:3px;">⚖️ 决策规则</div>
  1155. <div style="font-size:0.73rem; color:var(--text-2); line-height:1.45;">用户能口头说出 ≥1 条 江中 vs 竞品 差异</div>
  1156. </div>
  1157. <div>
  1158. <div class="text-mono text-xs" style="color:var(--text-3); letter-spacing:0.08em; margin-bottom:5px;">📤 落地产出</div>
  1159. <ul style="margin:0; padding:0; list-style:none;">
  1160. <li style="padding:2px 0; font-size:0.72rem; color:var(--text-2); line-height:1.4; padding-left:12px; position:relative;"><span style="position:absolute; left:0; color:#FF4D8D;">✓</span>6 竞品痛点清单</li><li style="padding:2px 0; font-size:0.72rem; color:var(--text-2); line-height:1.4; padding-left:12px; position:relative;"><span style="position:absolute; left:0; color:#FF4D8D;">✓</span>差异化论据 Top 10</li><li style="padding:2px 0; font-size:0.72rem; color:var(--text-2); line-height:1.4; padding-left:12px; position:relative;"><span style="position:absolute; left:0; color:#FF4D8D;">✓</span>对比陈列物料</li><li style="padding:2px 0; font-size:0.72rem; color:var(--text-2); line-height:1.4; padding-left:12px; position:relative;"><span style="position:absolute; left:0; color:#FF4D8D;">✓</span>打脸话术包</li>
  1161. </ul>
  1162. </div>
  1163. <div style="text-align:center; padding:14px 10px; background:#FF4D8D12; border-radius:8px;">
  1164. <div class="text-mono text-xs" style="color:#FF4D8D; letter-spacing:0.08em; margin-bottom:4px;">阈值</div>
  1165. <div style="font-family:var(--font-head); font-weight:900; font-size:1.6rem; color:#FF4D8D; line-height:1; margin-bottom:3px;">70%</div>
  1166. <div style="font-size:0.7rem; color:#FF4D8D; font-weight:600;">差异化感知 ≥</div>
  1167. </div>
  1168. </div>
  1169. </div>
  1170. <!-- 决策漏斗可视化 -->
  1171. <div class="fade-up" style="background:linear-gradient(135deg, #2D9C5D10, #D4A57408); border:1px solid #2D9C5D44; border-radius:var(--radius-md); padding:24px;">
  1172. <div class="text-mono text-xs" style="color:#2D9C5D; letter-spacing:0.15em; margin-bottom:16px;">DECISION FUNNEL · 从 VOC 原声到落地方案</div>
  1173. <div style="display:grid; grid-template-columns:repeat(5, 1fr) auto; gap:10px; align-items:center;">
  1174. <div style="text-align:center;">
  1175. <div style="padding:14px 10px; background:#2D9C5D15; border:2px solid #2D9C5D44; border-radius:8px;">
  1176. <div style="font-family:var(--font-head); font-weight:900; font-size:1.6rem; color:#2D9C5D; line-height:1;">1000+</div>
  1177. <div class="text-mono text-xs" style="color:#2D9C5D; margin-top:3px; letter-spacing:0.06em;">VOC 采集</div>
  1178. <div style="font-size:0.7rem; color:var(--text-3); margin-top:3px;">评论原声</div>
  1179. </div>
  1180. </div>
  1181. <div style="font-size:1.4rem; color:#2D9C5D; text-align:center;">→</div>
  1182. <div style="text-align:center;">
  1183. <div style="padding:14px 10px; background:#0085CA15; border:2px solid #0085CA44; border-radius:8px;">
  1184. <div style="font-family:var(--font-head); font-weight:900; font-size:1.6rem; color:#0085CA; line-height:1;">20-30</div>
  1185. <div class="text-mono text-xs" style="color:#0085CA; margin-top:3px; letter-spacing:0.06em;">主题聚类</div>
  1186. <div style="font-size:0.7rem; color:var(--text-3); margin-top:3px;">高频主题</div>
  1187. </div>
  1188. </div>
  1189. <div style="font-size:1.4rem; color:#2D9C5D; text-align:center;">→</div>
  1190. <div style="text-align:center;">
  1191. <div style="padding:14px 10px; background:#D4A57415; border:2px solid #D4A57444; border-radius:8px;">
  1192. <div style="font-family:var(--font-head); font-weight:900; font-size:1.6rem; color:#D4A574; line-height:1;">10-15</div>
  1193. <div class="text-mono text-xs" style="color:#D4A574; margin-top:3px; letter-spacing:0.06em;">阈值筛选</div>
  1194. <div style="font-size:0.7rem; color:var(--text-3); margin-top:3px;">达标方案</div>
  1195. </div>
  1196. </div>
  1197. <div style="font-size:1.4rem; color:#2D9C5D; text-align:center;">→</div>
  1198. <div style="text-align:center;">
  1199. <div style="padding:14px 10px; background:#FF8C4215; border:2px solid #FF8C4244; border-radius:8px;">
  1200. <div style="font-family:var(--font-head); font-weight:900; font-size:1.6rem; color:#FF8C42; line-height:1;">5-8</div>
  1201. <div class="text-mono text-xs" style="color:#FF8C42; margin-top:3px; letter-spacing:0.06em;">交叉验证</div>
  1202. <div style="font-size:0.7rem; color:var(--text-3); margin-top:3px;">可落地</div>
  1203. </div>
  1204. </div>
  1205. <div style="font-size:1.4rem; color:#2D9C5D; text-align:center;">→</div>
  1206. <div style="text-align:center;">
  1207. <div style="padding:14px 10px; background:#FF4D8D15; border:2px solid #FF4D8D44; border-radius:8px;">
  1208. <div style="font-family:var(--font-head); font-weight:900; font-size:1.6rem; color:#FF4D8D; line-height:1;">3-5</div>
  1209. <div class="text-mono text-xs" style="color:#FF4D8D; margin-top:3px; letter-spacing:0.06em;">最终决策</div>
  1210. <div style="font-size:0.7rem; color:var(--text-3); margin-top:3px;">4 渠道 PRD</div>
  1211. </div>
  1212. </div>
  1213. </div>
  1214. </div>
  1215. </div>
  1216. </section>
  1217. <section class="report-section" id="method-3" data-tone="green" data-slide-num="06/42">
  1218. <div class="section-inner">
  1219. <div class="section-head rise-in">
  1220. <div class="section-eyebrow" style="color:#2D9C5D;">1.3 · MULTI-PLATFORM MATRIX</div>
  1221. <h2 class="text-h1"><span class="headline-anim">多平台采集矩阵 · 6 平台 × 评论颗粒度</span></h2>
  1222. <p class="section-sub">按 4 渠道覆盖选平台,按 5 模块选关键词,按评论权重筛样本 · 目标 <strong style="color:#2D9C5D;">≥ 2500 条真实评论</strong></p>
  1223. </div>
  1224. <!-- 平台矩阵卡片 -->
  1225. <div class="fade-up" style="display:grid; grid-template-columns:repeat(2, 1fr); gap:14px; margin-bottom:24px;">
  1226. <div style="background:var(--bg-1); border:1px solid #FF244244; border-top:4px solid #FF2442; border-radius:var(--radius-md); padding:18px;">
  1227. <div style="display:flex; align-items:center; justify-content:space-between; margin-bottom:12px;">
  1228. <div style="display:flex; align-items:center; gap:10px;">
  1229. <div style="width:40px; height:40px; background:#FF244222; border-radius:50%; display:flex; align-items:center; justify-content:center; font-size:1.3rem;">📕</div>
  1230. <div>
  1231. <div style="display:flex; align-items:baseline; gap:8px;">
  1232. <span style="font-size:1.05rem; font-weight:800; color:var(--text-1);">小红书</span>
  1233. <span class="text-mono text-xs" style="color:#FF2442; letter-spacing:0.08em;">XIAOHONGSHU</span>
  1234. </div>
  1235. <div style="font-size:0.72rem; color:#FF2442;">★★★★★</div>
  1236. </div>
  1237. </div>
  1238. <div style="padding:3px 8px; background:#2D9C5D22; color:#2D9C5D; border-radius:3px; font-family:var(--font-mono); font-size:0.7rem; font-weight:700;">READY</div>
  1239. </div>
  1240. <div style="padding:8px 12px; background:#FF244208; border-left:3px solid #FF2442; border-radius:4px; margin-bottom:10px;">
  1241. <div style="font-size:0.82rem; color:var(--text-1); font-weight:700; margin-bottom:2px;">女性 / 礼品 / 日常养护主战场</div>
  1242. <div style="font-size:0.72rem; color:var(--text-2); line-height:1.45;">国内保健品 VOC 最深的平台,女性决策群体+爆款种草</div>
  1243. </div>
  1244. <div style="margin-bottom:8px;">
  1245. <div class="text-mono text-xs" style="color:var(--text-3); letter-spacing:0.08em; margin-bottom:4px;">🎯 覆盖渠道</div>
  1246. <div style="display:flex; flex-wrap:wrap; gap:4px;">
  1247. <span style="padding:2px 7px; background:#D4A57418; color:#D4A574; border-radius:3px; font-size:0.68rem; font-weight:700;">礼品</span><span style="padding:2px 7px; background:#2D9C5D18; color:#2D9C5D; border-radius:3px; font-size:0.68rem; font-weight:700;">电商</span><span style="padding:2px 7px; background:#FF244218; color:#FF2442; border-radius:3px; font-size:0.68rem; font-weight:700;">日常养护</span>
  1248. </div>
  1249. </div>
  1250. <div style="margin-bottom:8px;">
  1251. <div class="text-mono text-xs" style="color:var(--text-3); letter-spacing:0.08em; margin-bottom:4px;">🔑 采集关键词(10 个)</div>
  1252. <div style="font-size:0.72rem; color:var(--text-2); line-height:1.45;"><span style="color:#FF2442;">「肝纯片」</span> · <span style="color:#FF2442;">「江中肝纯片」</span> · <span style="color:#FF2442;">「护肝片」</span> · <span style="color:#FF2442;">「藤茶 护肝」</span> · <span style="color:#FF2442;">「熬夜 护肝」</span> · <span style="color:#FF2442;">「脂肪肝 推荐」</span> · <span style="color:#FF2442;">「送礼 保健品」</span> · <span style="color:#FF2442;">「送长辈 礼盒」</span> · <span style="color:#FF2442;">「女性 护肝」</span> · <span style="color:#FF2442;">「Swisse 水飞蓟」</span></div>
  1253. </div>
  1254. <div style="display:grid; grid-template-columns:1fr 1fr; gap:6px; padding-top:8px; border-top:1px dashed var(--border);">
  1255. <div>
  1256. <div class="text-mono text-xs" style="color:var(--text-3); letter-spacing:0.06em; margin-bottom:2px;">📊 样本目标</div>
  1257. <div style="font-size:0.76rem; color:#FF2442; font-weight:700;">25 笔记 × 30-50 评论 = 800+ 条</div>
  1258. </div>
  1259. <div>
  1260. <div class="text-mono text-xs" style="color:var(--text-3); letter-spacing:0.06em; margin-bottom:2px;">🛠️ 工具就绪</div>
  1261. <div style="font-size:0.72rem; color:var(--text-2); line-height:1.35;">✅ xiaohongshu-note-comments skill</div>
  1262. </div>
  1263. </div>
  1264. <div style="margin-top:6px; padding:5px 10px; background:var(--bg-2); border-radius:4px;">
  1265. <div style="font-size:0.7rem; color:var(--text-3); line-height:1.45;"><strong style="color:#FF2442;">数据深度:</strong>评论颗粒度 · 含用户画像(IP/昵称)· 子评论(反驳)· 点赞权重</div>
  1266. </div>
  1267. </div>
  1268. <div style="background:var(--bg-1); border:1px solid #00000044; border-top:4px solid #000000; border-radius:var(--radius-md); padding:18px;">
  1269. <div style="display:flex; align-items:center; justify-content:space-between; margin-bottom:12px;">
  1270. <div style="display:flex; align-items:center; gap:10px;">
  1271. <div style="width:40px; height:40px; background:#00000022; border-radius:50%; display:flex; align-items:center; justify-content:center; font-size:1.3rem;">🎵</div>
  1272. <div>
  1273. <div style="display:flex; align-items:baseline; gap:8px;">
  1274. <span style="font-size:1.05rem; font-weight:800; color:var(--text-1);">抖音</span>
  1275. <span class="text-mono text-xs" style="color:#000000; letter-spacing:0.08em;">DOUYIN</span>
  1276. </div>
  1277. <div style="font-size:0.72rem; color:#000000;">★★★★☆</div>
  1278. </div>
  1279. </div>
  1280. <div style="padding:3px 8px; background:#2D9C5D22; color:#2D9C5D; border-radius:3px; font-family:var(--font-mono); font-size:0.7rem; font-weight:700;">READY</div>
  1281. </div>
  1282. <div style="padding:8px 12px; background:#00000008; border-left:3px solid #000000; border-radius:4px; margin-bottom:10px;">
  1283. <div style="font-size:0.82rem; color:var(--text-1); font-weight:700; margin-bottom:2px;">男性 / 应酬 / 解酒场景主战场</div>
  1284. <div style="font-size:0.72rem; color:var(--text-2); line-height:1.45;">短视频生态,男性酒桌用户 + 医生科普号密集</div>
  1285. </div>
  1286. <div style="margin-bottom:8px;">
  1287. <div class="text-mono text-xs" style="color:var(--text-3); letter-spacing:0.08em; margin-bottom:4px;">🎯 覆盖渠道</div>
  1288. <div style="display:flex; flex-wrap:wrap; gap:4px;">
  1289. <span style="padding:2px 7px; background:#FF8C4218; color:#FF8C42; border-radius:3px; font-size:0.68rem; font-weight:700;">餐饮</span><span style="padding:2px 7px; background:#2D9C5D18; color:#2D9C5D; border-radius:3px; font-size:0.68rem; font-weight:700;">电商</span><span style="padding:2px 7px; background:#00000018; color:#000000; border-radius:3px; font-size:0.68rem; font-weight:700;">药线教育</span>
  1290. </div>
  1291. </div>
  1292. <div style="margin-bottom:8px;">
  1293. <div class="text-mono text-xs" style="color:var(--text-3); letter-spacing:0.08em; margin-bottom:4px;">🔑 采集关键词(8 个)</div>
  1294. <div style="font-size:0.72rem; color:var(--text-2); line-height:1.45;"><span style="color:#000000;">「肝纯片」</span> · <span style="color:#000000;">「解酒片」</span> · <span style="color:#000000;">「应酬 护肝」</span> · <span style="color:#000000;">「酒局 解酒」</span> · <span style="color:#000000;">「脂肪肝」</span> · <span style="color:#000000;">「喝酒伤肝」</span> · <span style="color:#000000;">「海王金樽」</span> · <span style="color:#000000;">「护肝 真的有用吗」</span></div>
  1295. </div>
  1296. <div style="display:grid; grid-template-columns:1fr 1fr; gap:6px; padding-top:8px; border-top:1px dashed var(--border);">
  1297. <div>
  1298. <div class="text-mono text-xs" style="color:var(--text-3); letter-spacing:0.06em; margin-bottom:2px;">📊 样本目标</div>
  1299. <div style="font-size:0.76rem; color:#000000; font-weight:700;">20 视频 × 20-30 评论 = 500+ 条</div>
  1300. </div>
  1301. <div>
  1302. <div class="text-mono text-xs" style="color:var(--text-3); letter-spacing:0.06em; margin-bottom:2px;">🛠️ 工具就绪</div>
  1303. <div style="font-size:0.72rem; color:var(--text-2); line-height:1.35;">✅ probe-tikhub-douyin + collect-douyin</div>
  1304. </div>
  1305. </div>
  1306. <div style="margin-top:6px; padding:5px 10px; background:var(--bg-2); border-radius:4px;">
  1307. <div style="font-size:0.7rem; color:var(--text-3); line-height:1.45;"><strong style="color:#000000;">数据深度:</strong>评论 + 转发 + 子评论 + IP 归属</div>
  1308. </div>
  1309. </div>
  1310. <div style="background:var(--bg-1); border:1px solid #0084FF44; border-top:4px solid #0084FF; border-radius:var(--radius-md); padding:18px;">
  1311. <div style="display:flex; align-items:center; justify-content:space-between; margin-bottom:12px;">
  1312. <div style="display:flex; align-items:center; gap:10px;">
  1313. <div style="width:40px; height:40px; background:#0084FF22; border-radius:50%; display:flex; align-items:center; justify-content:center; font-size:1.3rem;">💬</div>
  1314. <div>
  1315. <div style="display:flex; align-items:baseline; gap:8px;">
  1316. <span style="font-size:1.05rem; font-weight:800; color:var(--text-1);">知乎</span>
  1317. <span class="text-mono text-xs" style="color:#0084FF; letter-spacing:0.08em;">ZHIHU</span>
  1318. </div>
  1319. <div style="font-size:0.72rem; color:#0084FF;">★★★★☆</div>
  1320. </div>
  1321. </div>
  1322. <div style="padding:3px 8px; background:#FF8C4222; color:#FF8C42; border-radius:3px; font-family:var(--font-mono); font-size:0.7rem; font-weight:700;">TBD</div>
  1323. </div>
  1324. <div style="padding:8px 12px; background:#0084FF08; border-left:3px solid #0084FF; border-radius:4px; margin-bottom:10px;">
  1325. <div style="font-size:0.82rem; color:var(--text-1); font-weight:700; margin-bottom:2px;">药线专业科普 + 长文决策</div>
  1326. <div style="font-size:0.72rem; color:var(--text-2); line-height:1.45;">深度用户搜「护肝片真的有用吗」、「脂肪肝怎么治」,医学大V 密集</div>
  1327. </div>
  1328. <div style="margin-bottom:8px;">
  1329. <div class="text-mono text-xs" style="color:var(--text-3); letter-spacing:0.08em; margin-bottom:4px;">🎯 覆盖渠道</div>
  1330. <div style="display:flex; flex-wrap:wrap; gap:4px;">
  1331. <span style="padding:2px 7px; background:#0085CA18; color:#0085CA; border-radius:3px; font-size:0.68rem; font-weight:700;">药线</span><span style="padding:2px 7px; background:#0084FF18; color:#0084FF; border-radius:3px; font-size:0.68rem; font-weight:700;">电商 深度决策</span>
  1332. </div>
  1333. </div>
  1334. <div style="margin-bottom:8px;">
  1335. <div class="text-mono text-xs" style="color:var(--text-3); letter-spacing:0.08em; margin-bottom:4px;">🔑 采集关键词(8 个)</div>
  1336. <div style="font-size:0.72rem; color:var(--text-2); line-height:1.45;"><span style="color:#0084FF;">「护肝片有用吗」</span> · <span style="color:#0084FF;">「江中肝纯片 知乎」</span> · <span style="color:#0084FF;">「水飞蓟 vs DMY」</span> · <span style="color:#0084FF;">「二氢杨梅素」</span> · <span style="color:#0084FF;">「脂肪肝怎么办」</span> · <span style="color:#0084FF;">「易善复 副作用」</span> · <span style="color:#0084FF;">「解酒药 推荐」</span> · <span style="color:#0084FF;">「藤茶 护肝」</span></div>
  1337. </div>
  1338. <div style="display:grid; grid-template-columns:1fr 1fr; gap:6px; padding-top:8px; border-top:1px dashed var(--border);">
  1339. <div>
  1340. <div class="text-mono text-xs" style="color:var(--text-3); letter-spacing:0.06em; margin-bottom:2px;">📊 样本目标</div>
  1341. <div style="font-size:0.76rem; color:#0084FF; font-weight:700;">15 问题 × 10 高赞答 × 20 评论 = 300+ 条</div>
  1342. </div>
  1343. <div>
  1344. <div class="text-mono text-xs" style="color:var(--text-3); letter-spacing:0.06em; margin-bottom:2px;">🛠️ 工具就绪</div>
  1345. <div style="font-size:0.72rem; color:var(--text-2); line-height:1.35;">⚠️ 需新建 collect-zhihu.js(搜索+答案+评论接口)</div>
  1346. </div>
  1347. </div>
  1348. <div style="margin-top:6px; padding:5px 10px; background:var(--bg-2); border-radius:4px;">
  1349. <div style="font-size:0.7rem; color:var(--text-3); line-height:1.45;"><strong style="color:#0084FF;">数据深度:</strong>长答辩论 + 评论 + 赞同数权重</div>
  1350. </div>
  1351. </div>
  1352. <div style="background:var(--bg-1); border:1px solid #FF6A0044; border-top:4px solid #FF6A00; border-radius:var(--radius-md); padding:18px;">
  1353. <div style="display:flex; align-items:center; justify-content:space-between; margin-bottom:12px;">
  1354. <div style="display:flex; align-items:center; gap:10px;">
  1355. <div style="width:40px; height:40px; background:#FF6A0022; border-radius:50%; display:flex; align-items:center; justify-content:center; font-size:1.3rem;">🛒</div>
  1356. <div>
  1357. <div style="display:flex; align-items:baseline; gap:8px;">
  1358. <span style="font-size:1.05rem; font-weight:800; color:var(--text-1);">电商评论</span>
  1359. <span class="text-mono text-xs" style="color:#FF6A00; letter-spacing:0.08em;">ECOMMERCE</span>
  1360. </div>
  1361. <div style="font-size:0.72rem; color:#FF6A00;">★★★★★</div>
  1362. </div>
  1363. </div>
  1364. <div style="padding:3px 8px; background:#FF8C4222; color:#FF8C42; border-radius:3px; font-family:var(--font-mono); font-size:0.7rem; font-weight:700;">TBD</div>
  1365. </div>
  1366. <div style="padding:8px 12px; background:#FF6A0008; border-left:3px solid #FF6A00; border-radius:4px; margin-bottom:10px;">
  1367. <div style="font-size:0.82rem; color:var(--text-1); font-weight:700; margin-bottom:2px;">电商购买决策 + 复购 + 晒单</div>
  1368. <div style="font-size:0.72rem; color:var(--text-2); line-height:1.45;">淘宝/京东/拼多多/抖音小店评论区,真实购买者声音</div>
  1369. </div>
  1370. <div style="margin-bottom:8px;">
  1371. <div class="text-mono text-xs" style="color:var(--text-3); letter-spacing:0.08em; margin-bottom:4px;">🎯 覆盖渠道</div>
  1372. <div style="display:flex; flex-wrap:wrap; gap:4px;">
  1373. <span style="padding:2px 7px; background:#2D9C5D18; color:#2D9C5D; border-radius:3px; font-size:0.68rem; font-weight:700;">电商</span><span style="padding:2px 7px; background:#D4A57418; color:#D4A574; border-radius:3px; font-size:0.68rem; font-weight:700;">礼品</span><span style="padding:2px 7px; background:#FF6A0018; color:#FF6A00; border-radius:3px; font-size:0.68rem; font-weight:700;">餐饮(散装购买)</span>
  1374. </div>
  1375. </div>
  1376. <div style="margin-bottom:8px;">
  1377. <div class="text-mono text-xs" style="color:var(--text-3); letter-spacing:0.08em; margin-bottom:4px;">🔑 采集关键词(6 个)</div>
  1378. <div style="font-size:0.72rem; color:var(--text-2); line-height:1.45;"><span style="color:#FF6A00;">「江中肝纯片」</span> · <span style="color:#FF6A00;">「Swisse 奶蓟草」</span> · <span style="color:#FF6A00;">「汤臣倍健 护肝」</span> · <span style="color:#FF6A00;">「护肝片 京东」</span> · <span style="color:#FF6A00;">「同仁堂 护肝片」</span> · <span style="color:#FF6A00;">「海王金樽」</span></div>
  1379. </div>
  1380. <div style="display:grid; grid-template-columns:1fr 1fr; gap:6px; padding-top:8px; border-top:1px dashed var(--border);">
  1381. <div>
  1382. <div class="text-mono text-xs" style="color:var(--text-3); letter-spacing:0.06em; margin-bottom:2px;">📊 样本目标</div>
  1383. <div style="font-size:0.76rem; color:#FF6A00; font-weight:700;">8-10 SKU × 50-100 评论 = 500+ 条</div>
  1384. </div>
  1385. <div>
  1386. <div class="text-mono text-xs" style="color:var(--text-3); letter-spacing:0.06em; margin-bottom:2px;">🛠️ 工具就绪</div>
  1387. <div style="font-size:0.72rem; color:var(--text-2); line-height:1.35;">⚠️ 需新建 collect-taobao-jd.js(商品详情页抓评论)</div>
  1388. </div>
  1389. </div>
  1390. <div style="margin-top:6px; padding:5px 10px; background:var(--bg-2); border-radius:4px;">
  1391. <div style="font-size:0.7rem; color:var(--text-3); line-height:1.45;"><strong style="color:#FF6A00;">数据深度:</strong>评分 1-5 星 + 文字评论 + 图文晒单 + 追评(长期反馈)</div>
  1392. </div>
  1393. </div>
  1394. <div style="background:var(--bg-1); border:1px solid #00A4E044; border-top:4px solid #00A4E0; border-radius:var(--radius-md); padding:18px;">
  1395. <div style="display:flex; align-items:center; justify-content:space-between; margin-bottom:12px;">
  1396. <div style="display:flex; align-items:center; gap:10px;">
  1397. <div style="width:40px; height:40px; background:#00A4E022; border-radius:50%; display:flex; align-items:center; justify-content:center; font-size:1.3rem;">🩺</div>
  1398. <div>
  1399. <div style="display:flex; align-items:baseline; gap:8px;">
  1400. <span style="font-size:1.05rem; font-weight:800; color:var(--text-1);">丁香医生</span>
  1401. <span class="text-mono text-xs" style="color:#00A4E0; letter-spacing:0.08em;">DXY</span>
  1402. </div>
  1403. <div style="font-size:0.72rem; color:#00A4E0;">★★★☆☆</div>
  1404. </div>
  1405. </div>
  1406. <div style="padding:3px 8px; background:#FF8C4222; color:#FF8C42; border-radius:3px; font-family:var(--font-mono); font-size:0.7rem; font-weight:700;">TBD</div>
  1407. </div>
  1408. <div style="padding:8px 12px; background:#00A4E008; border-left:3px solid #00A4E0; border-radius:4px; margin-bottom:10px;">
  1409. <div style="font-size:0.82rem; color:var(--text-1); font-weight:700; margin-bottom:2px;">专业医生药师视角</div>
  1410. <div style="font-size:0.72rem; color:var(--text-2); line-height:1.45;">医生科普文章 + 付费问诊话题,权威但体量小</div>
  1411. </div>
  1412. <div style="margin-bottom:8px;">
  1413. <div class="text-mono text-xs" style="color:var(--text-3); letter-spacing:0.08em; margin-bottom:4px;">🎯 覆盖渠道</div>
  1414. <div style="display:flex; flex-wrap:wrap; gap:4px;">
  1415. <span style="padding:2px 7px; background:#00A4E018; color:#00A4E0; border-radius:3px; font-size:0.68rem; font-weight:700;">药线 专业权威</span>
  1416. </div>
  1417. </div>
  1418. <div style="margin-bottom:8px;">
  1419. <div class="text-mono text-xs" style="color:var(--text-3); letter-spacing:0.08em; margin-bottom:4px;">🔑 采集关键词(5 个)</div>
  1420. <div style="font-size:0.72rem; color:var(--text-2); line-height:1.45;"><span style="color:#00A4E0;">「护肝片 医生」</span> · <span style="color:#00A4E0;">「DMY 二氢杨梅素」</span> · <span style="color:#00A4E0;">「水飞蓟 副作用」</span> · <span style="color:#00A4E0;">「脂肪肝 治疗」</span> · <span style="color:#00A4E0;">「解酒药」</span></div>
  1421. </div>
  1422. <div style="display:grid; grid-template-columns:1fr 1fr; gap:6px; padding-top:8px; border-top:1px dashed var(--border);">
  1423. <div>
  1424. <div class="text-mono text-xs" style="color:var(--text-3); letter-spacing:0.06em; margin-bottom:2px;">📊 样本目标</div>
  1425. <div style="font-size:0.76rem; color:#00A4E0; font-weight:700;">10-15 文章 × 20 评论 = 200+ 条</div>
  1426. </div>
  1427. <div>
  1428. <div class="text-mono text-xs" style="color:var(--text-3); letter-spacing:0.06em; margin-bottom:2px;">🛠️ 工具就绪</div>
  1429. <div style="font-size:0.72rem; color:var(--text-2); line-height:1.35;">⚠️ 需新建 collect-dxy.js 或手工抓取</div>
  1430. </div>
  1431. </div>
  1432. <div style="margin-top:6px; padding:5px 10px; background:var(--bg-2); border-radius:4px;">
  1433. <div style="font-size:0.7rem; color:var(--text-3); line-height:1.45;"><strong style="color:#00A4E0;">数据深度:</strong>医生回复 + 用户追问 + 医学术语解释</div>
  1434. </div>
  1435. </div>
  1436. <div style="background:var(--bg-1); border:1px solid #14B8A644; border-top:4px solid #14B8A6; border-radius:var(--radius-md); padding:18px;">
  1437. <div style="display:flex; align-items:center; justify-content:space-between; margin-bottom:12px;">
  1438. <div style="display:flex; align-items:center; gap:10px;">
  1439. <div style="width:40px; height:40px; background:#14B8A622; border-radius:50%; display:flex; align-items:center; justify-content:center; font-size:1.3rem;">🌍</div>
  1440. <div>
  1441. <div style="display:flex; align-items:baseline; gap:8px;">
  1442. <span style="font-size:1.05rem; font-weight:800; color:var(--text-1);">TikTok/Amazon</span>
  1443. <span class="text-mono text-xs" style="color:#14B8A6; letter-spacing:0.08em;">OVERSEAS</span>
  1444. </div>
  1445. <div style="font-size:0.72rem; color:#14B8A6;">★★★☆☆</div>
  1446. </div>
  1447. </div>
  1448. <div style="padding:3px 8px; background:#2D9C5D22; color:#2D9C5D; border-radius:3px; font-family:var(--font-mono); font-size:0.7rem; font-weight:700;">READY</div>
  1449. </div>
  1450. <div style="padding:8px 12px; background:#14B8A608; border-left:3px solid #14B8A6; border-radius:4px; margin-bottom:10px;">
  1451. <div style="font-size:0.82rem; color:var(--text-1); font-weight:700; margin-bottom:2px;">海外对标参考</div>
  1452. <div style="font-size:0.72rem; color:var(--text-2); line-height:1.45;">已采集 82 TikTok 视频 + 689 Amazon 产品 + 158 条评论,直接复用</div>
  1453. </div>
  1454. <div style="margin-bottom:8px;">
  1455. <div class="text-mono text-xs" style="color:var(--text-3); letter-spacing:0.08em; margin-bottom:4px;">🎯 覆盖渠道</div>
  1456. <div style="display:flex; flex-wrap:wrap; gap:4px;">
  1457. <span style="padding:2px 7px; background:#14B8A618; color:#14B8A6; border-radius:3px; font-size:0.68rem; font-weight:700;">礼品 高端对标</span><span style="padding:2px 7px; background:#14B8A618; color:#14B8A6; border-radius:3px; font-size:0.68rem; font-weight:700;">电商 差异化</span>
  1458. </div>
  1459. </div>
  1460. <div style="margin-bottom:8px;">
  1461. <div class="text-mono text-xs" style="color:var(--text-3); letter-spacing:0.08em; margin-bottom:4px;">🔑 采集关键词(4 个)</div>
  1462. <div style="font-size:0.72rem; color:var(--text-2); line-height:1.45;"><span style="color:#14B8A6;">「milk thistle」</span> · <span style="color:#14B8A6;">「liver support supplement」</span> · <span style="color:#14B8A6;">「silymarin」</span> · <span style="color:#14B8A6;">「liver cleanse detox」</span></div>
  1463. </div>
  1464. <div style="display:grid; grid-template-columns:1fr 1fr; gap:6px; padding-top:8px; border-top:1px dashed var(--border);">
  1465. <div>
  1466. <div class="text-mono text-xs" style="color:var(--text-3); letter-spacing:0.06em; margin-bottom:2px;">📊 样本目标</div>
  1467. <div style="font-size:0.76rem; color:#14B8A6; font-weight:700;">✅ 已就绪:158 条 TikTok 评论 + 689 Amazon 款</div>
  1468. </div>
  1469. <div>
  1470. <div class="text-mono text-xs" style="color:var(--text-3); letter-spacing:0.06em; margin-bottom:2px;">🛠️ 工具就绪</div>
  1471. <div style="font-size:0.72rem; color:var(--text-2); line-height:1.35;">✅ 已有数据(jiangzhong-liver-voc.json)</div>
  1472. </div>
  1473. </div>
  1474. <div style="margin-top:6px; padding:5px 10px; background:var(--bg-2); border-radius:4px;">
  1475. <div style="font-size:0.7rem; color:var(--text-3); line-height:1.45;"><strong style="color:#14B8A6;">数据深度:</strong>英文评论 + 评分 + 品牌对比数据</div>
  1476. </div>
  1477. </div>
  1478. </div>
  1479. <!-- 采集总览汇总 -->
  1480. <div class="fade-up" style="background:linear-gradient(135deg, #2D9C5D10, #D4A57408); border:1px solid #2D9C5D44; border-radius:var(--radius-md); padding:24px;">
  1481. <div class="text-mono text-xs" style="color:#2D9C5D; letter-spacing:0.15em; margin-bottom:14px;">AGGREGATE · 跨平台采集总目标</div>
  1482. <div style="display:grid; grid-template-columns:repeat(5, 1fr); gap:16px;">
  1483. <div style="text-align:center;">
  1484. <div style="font-family:var(--font-head); font-weight:900; font-size:2.4rem; color:#2D9C5D; line-height:1;">6</div>
  1485. <div class="text-mono text-xs" style="color:#2D9C5D; margin-top:4px; letter-spacing:0.08em;">PLATFORMS</div>
  1486. <div style="font-size:0.72rem; color:var(--text-3); margin-top:4px;">国内 5 + 海外 1</div>
  1487. </div>
  1488. <div style="text-align:center;">
  1489. <div style="font-family:var(--font-head); font-weight:900; font-size:2.4rem; color:#D4A574; line-height:1;">40+</div>
  1490. <div class="text-mono text-xs" style="color:#D4A574; margin-top:4px; letter-spacing:0.08em;">KEYWORDS</div>
  1491. <div style="font-size:0.72rem; color:var(--text-3); margin-top:4px;">精准筛选</div>
  1492. </div>
  1493. <div style="text-align:center;">
  1494. <div style="font-family:var(--font-head); font-weight:900; font-size:2.4rem; color:#0085CA; line-height:1;">80+</div>
  1495. <div class="text-mono text-xs" style="color:#0085CA; margin-top:4px; letter-spacing:0.08em;">NOTES/VIDEOS</div>
  1496. <div style="font-size:0.72rem; color:var(--text-3); margin-top:4px;">跨平台笔记</div>
  1497. </div>
  1498. <div style="text-align:center;">
  1499. <div style="font-family:var(--font-head); font-weight:900; font-size:2.4rem; color:#2D9C5D; line-height:1;">2500+</div>
  1500. <div class="text-mono text-xs" style="color:#2D9C5D; margin-top:4px; letter-spacing:0.08em;">COMMENTS</div>
  1501. <div style="font-size:0.72rem; color:var(--text-3); margin-top:4px;">真实原声</div>
  1502. </div>
  1503. <div style="text-align:center;">
  1504. <div style="font-family:var(--font-head); font-weight:900; font-size:2.4rem; color:#FF4D8D; line-height:1;">4×5</div>
  1505. <div class="text-mono text-xs" style="color:#FF4D8D; margin-top:4px; letter-spacing:0.08em;">CHANNEL×MODULE</div>
  1506. <div style="font-size:0.72rem; color:var(--text-3); margin-top:4px;">交叉覆盖</div>
  1507. </div>
  1508. </div>
  1509. </div>
  1510. </div>
  1511. </section>
  1512. <section class="report-section" id="method-4" data-tone="green" data-slide-num="07/42">
  1513. <div class="section-inner">
  1514. <div class="section-head rise-in">
  1515. <div class="section-eyebrow" style="color:#2D9C5D;">1.4 · COMMENT-LEVEL ANALYTICAL FRAMEWORK</div>
  1516. <h2 class="text-h1"><span class="headline-anim">评论颗粒度分析框架 · 6 维</span></h2>
  1517. <p class="section-sub">本报告不做"摘要式调研",每一条评论都独立分析 · <strong style="color:#2D9C5D;">主题 × 情感 × 权重 × 可信度 × 场景人群 × 痛点映射</strong> 6 维全量标签</p>
  1518. </div>
  1519. <!-- 6 维分析卡片 -->
  1520. <div class="fade-up" style="display:grid; grid-template-columns:repeat(3, 1fr); gap:14px; margin-bottom:24px;">
  1521. <div style="background:var(--bg-1); border:1px solid #0085CA44; border-top:4px solid #0085CA; border-radius:var(--radius-md); padding:18px;">
  1522. <div style="display:flex; align-items:center; gap:10px; margin-bottom:10px;">
  1523. <div style="width:42px; height:42px; background:#0085CA22; border-radius:50%; display:flex; align-items:center; justify-content:center; font-size:1.3rem;">🔖</div>
  1524. <div>
  1525. <div class="text-mono text-xs" style="color:#0085CA; letter-spacing:0.1em;">DIM · 01</div>
  1526. <div style="font-size:1rem; font-weight:800; color:var(--text-1);">主题聚类</div>
  1527. </div>
  1528. </div>
  1529. <div style="padding:8px 10px; background:#0085CA08; border-left:3px solid #0085CA; border-radius:4px; margin-bottom:10px;">
  1530. <div style="font-size:0.8rem; color:var(--text-1); font-weight:600; line-height:1.45;">基于 TF-IDF + 语义聚类,抽取 20-30 条核心主题</div>
  1531. </div>
  1532. <div style="margin-bottom:8px;">
  1533. <div class="text-mono text-xs" style="color:var(--text-3); letter-spacing:0.08em; margin-bottom:3px;">🔬 方法</div>
  1534. <div style="font-size:0.74rem; color:var(--text-2); line-height:1.5;">关键词提取 → 共现矩阵 → K-Means 聚类 → 人工复核</div>
  1535. </div>
  1536. <div style="margin-bottom:8px;">
  1537. <div class="text-mono text-xs" style="color:var(--text-3); letter-spacing:0.08em; margin-bottom:3px;">📤 产出</div>
  1538. <div style="font-size:0.74rem; color:var(--text-2); line-height:1.5;">主题词云图 + Top 20 主题表 + 每主题的代表评论</div>
  1539. </div>
  1540. <div style="padding:8px 10px; background:var(--bg-2); border-radius:4px;">
  1541. <div class="text-mono text-xs" style="color:#0085CA; letter-spacing:0.08em; margin-bottom:3px;">💬 示例</div>
  1542. <div style="font-size:0.72rem; color:var(--text-1); font-style:italic; line-height:1.5;">&quot;副作用&quot;、&quot;解酒&quot;、&quot;藤茶&quot;、&quot;送礼&quot;、&quot;酒桌&quot;、&quot;水飞蓟&quot; 等主题</div>
  1543. </div>
  1544. </div>
  1545. <div style="background:var(--bg-1); border:1px solid #D4A57444; border-top:4px solid #D4A574; border-radius:var(--radius-md); padding:18px;">
  1546. <div style="display:flex; align-items:center; gap:10px; margin-bottom:10px;">
  1547. <div style="width:42px; height:42px; background:#D4A57422; border-radius:50%; display:flex; align-items:center; justify-content:center; font-size:1.3rem;">💭</div>
  1548. <div>
  1549. <div class="text-mono text-xs" style="color:#D4A574; letter-spacing:0.1em;">DIM · 02</div>
  1550. <div style="font-size:1rem; font-weight:800; color:var(--text-1);">情感分布</div>
  1551. </div>
  1552. </div>
  1553. <div style="padding:8px 10px; background:#D4A57408; border-left:3px solid #D4A574; border-radius:4px; margin-bottom:10px;">
  1554. <div style="font-size:0.8rem; color:var(--text-1); font-weight:600; line-height:1.45;">每条评论打情感标签:正面 / 中性 / 负面 / 疑问</div>
  1555. </div>
  1556. <div style="margin-bottom:8px;">
  1557. <div class="text-mono text-xs" style="color:var(--text-3); letter-spacing:0.08em; margin-bottom:3px;">🔬 方法</div>
  1558. <div style="font-size:0.74rem; color:var(--text-2); line-height:1.5;">规则 + 词典 + 语境识别 → 评论人工校验 → 饼图可视化</div>
  1559. </div>
  1560. <div style="margin-bottom:8px;">
  1561. <div class="text-mono text-xs" style="color:var(--text-3); letter-spacing:0.08em; margin-bottom:3px;">📤 产出</div>
  1562. <div style="font-size:0.74rem; color:var(--text-2); line-height:1.5;">5 模块 × 4 情感 热力图 + 每情感代表 3 条原声</div>
  1563. </div>
  1564. <div style="padding:8px 10px; background:var(--bg-2); border-radius:4px;">
  1565. <div class="text-mono text-xs" style="color:#D4A574; letter-spacing:0.08em; margin-bottom:3px;">💬 示例</div>
  1566. <div style="font-size:0.72rem; color:var(--text-1); font-style:italic; line-height:1.5;">&quot;这个真的有效(正面)&quot; vs &quot;没感觉(负面)&quot; vs &quot;能天天吃吗(疑问)&quot;</div>
  1567. </div>
  1568. </div>
  1569. <div style="background:var(--bg-1); border:1px solid #2D9C5D44; border-top:4px solid #2D9C5D; border-radius:var(--radius-md); padding:18px;">
  1570. <div style="display:flex; align-items:center; gap:10px; margin-bottom:10px;">
  1571. <div style="width:42px; height:42px; background:#2D9C5D22; border-radius:50%; display:flex; align-items:center; justify-content:center; font-size:1.3rem;">📊</div>
  1572. <div>
  1573. <div class="text-mono text-xs" style="color:#2D9C5D; letter-spacing:0.1em;">DIM · 03</div>
  1574. <div style="font-size:1rem; font-weight:800; color:var(--text-1);">频次权重</div>
  1575. </div>
  1576. </div>
  1577. <div style="padding:8px 10px; background:#2D9C5D08; border-left:3px solid #2D9C5D; border-radius:4px; margin-bottom:10px;">
  1578. <div style="font-size:0.8rem; color:var(--text-1); font-weight:600; line-height:1.45;">单条评论权重 = log(1+点赞数) × 置信度</div>
  1579. </div>
  1580. <div style="margin-bottom:8px;">
  1581. <div class="text-mono text-xs" style="color:var(--text-3); letter-spacing:0.08em; margin-bottom:3px;">🔬 方法</div>
  1582. <div style="font-size:0.74rem; color:var(--text-2); line-height:1.5;">高赞评论(≥50)权重提升 2x · 首评权重 1.5x · 反复出现的主题加权</div>
  1583. </div>
  1584. <div style="margin-bottom:8px;">
  1585. <div class="text-mono text-xs" style="color:var(--text-3); letter-spacing:0.08em; margin-bottom:3px;">📤 产出</div>
  1586. <div style="font-size:0.74rem; color:var(--text-2); line-height:1.5;">加权主题排序表 + 热点图(金句 vs 长尾)</div>
  1587. </div>
  1588. <div style="padding:8px 10px; background:var(--bg-2); border-radius:4px;">
  1589. <div class="text-mono text-xs" style="color:#2D9C5D; letter-spacing:0.08em; margin-bottom:3px;">💬 示例</div>
  1590. <div style="font-size:0.72rem; color:var(--text-1); font-style:italic; line-height:1.5;">&quot;吃了 2 个月转氨酶没降&quot;(点赞 108)&gt; &quot;还行&quot;(点赞 3)</div>
  1591. </div>
  1592. </div>
  1593. <div style="background:var(--bg-1); border:1px solid #8B5CF644; border-top:4px solid #8B5CF6; border-radius:var(--radius-md); padding:18px;">
  1594. <div style="display:flex; align-items:center; gap:10px; margin-bottom:10px;">
  1595. <div style="width:42px; height:42px; background:#8B5CF622; border-radius:50%; display:flex; align-items:center; justify-content:center; font-size:1.3rem;">🔐</div>
  1596. <div>
  1597. <div class="text-mono text-xs" style="color:#8B5CF6; letter-spacing:0.1em;">DIM · 04</div>
  1598. <div style="font-size:1rem; font-weight:800; color:var(--text-1);">可信度分层</div>
  1599. </div>
  1600. </div>
  1601. <div style="padding:8px 10px; background:#8B5CF608; border-left:3px solid #8B5CF6; border-radius:4px; margin-bottom:10px;">
  1602. <div style="font-size:0.8rem; color:var(--text-1); font-weight:600; line-height:1.45;">按评论来源可信度分层:医生 &gt; 素人晒单 &gt; KOL &gt; 水军</div>
  1603. </div>
  1604. <div style="margin-bottom:8px;">
  1605. <div class="text-mono text-xs" style="color:var(--text-3); letter-spacing:0.08em; margin-bottom:3px;">🔬 方法</div>
  1606. <div style="font-size:0.74rem; color:var(--text-2); line-height:1.5;">用户画像分析 + 评论深度识别 + 子评论交叉验证</div>
  1607. </div>
  1608. <div style="margin-bottom:8px;">
  1609. <div class="text-mono text-xs" style="color:var(--text-3); letter-spacing:0.08em; margin-bottom:3px;">📤 产出</div>
  1610. <div style="font-size:0.74rem; color:var(--text-2); line-height:1.5;">可信度分层表 + 高可信原声金句库(≥80 分为决策依据)</div>
  1611. </div>
  1612. <div style="padding:8px 10px; background:var(--bg-2); border-radius:4px;">
  1613. <div class="text-mono text-xs" style="color:#8B5CF6; letter-spacing:0.08em; margin-bottom:3px;">💬 示例</div>
  1614. <div style="font-size:0.72rem; color:var(--text-1); font-style:italic; line-height:1.5;">丁香医生认证号评论 = 95 分 · 小红书素人追评 = 75 分 · KOL 带货 = 40 分</div>
  1615. </div>
  1616. </div>
  1617. <div style="background:var(--bg-1); border:1px solid #FF8C4244; border-top:4px solid #FF8C42; border-radius:var(--radius-md); padding:18px;">
  1618. <div style="display:flex; align-items:center; gap:10px; margin-bottom:10px;">
  1619. <div style="width:42px; height:42px; background:#FF8C4222; border-radius:50%; display:flex; align-items:center; justify-content:center; font-size:1.3rem;">🎭</div>
  1620. <div>
  1621. <div class="text-mono text-xs" style="color:#FF8C42; letter-spacing:0.1em;">DIM · 05</div>
  1622. <div style="font-size:1rem; font-weight:800; color:var(--text-1);">场景×人群</div>
  1623. </div>
  1624. </div>
  1625. <div style="padding:8px 10px; background:#FF8C4208; border-left:3px solid #FF8C42; border-radius:4px; margin-bottom:10px;">
  1626. <div style="font-size:0.8rem; color:var(--text-1); font-weight:600; line-height:1.45;">评论分派到 4 渠道 × 3-4 人群矩阵</div>
  1627. </div>
  1628. <div style="margin-bottom:8px;">
  1629. <div class="text-mono text-xs" style="color:var(--text-3); letter-spacing:0.08em; margin-bottom:3px;">🔬 方法</div>
  1630. <div style="font-size:0.74rem; color:var(--text-2); line-height:1.5;">评论 IP/昵称/语气 → 人群标签 → 场景标签 → 交叉分组</div>
  1631. </div>
  1632. <div style="margin-bottom:8px;">
  1633. <div class="text-mono text-xs" style="color:var(--text-3); letter-spacing:0.08em; margin-bottom:3px;">📤 产出</div>
  1634. <div style="font-size:0.74rem; color:var(--text-2); line-height:1.5;">4 渠道 × 4 人群 16 格热力图 + 每格 Top 3 金句</div>
  1635. </div>
  1636. <div style="padding:8px 10px; background:var(--bg-2); border-radius:4px;">
  1637. <div class="text-mono text-xs" style="color:#FF8C42; letter-spacing:0.08em; margin-bottom:3px;">💬 示例</div>
  1638. <div style="font-size:0.72rem; color:var(--text-1); font-style:italic; line-height:1.5;">&quot;应酬男·餐饮&quot;格 · Top 原声:&quot;分一片真的有面子&quot;</div>
  1639. </div>
  1640. </div>
  1641. <div style="background:var(--bg-1); border:1px solid #FF4D8D44; border-top:4px solid #FF4D8D; border-radius:var(--radius-md); padding:18px;">
  1642. <div style="display:flex; align-items:center; gap:10px; margin-bottom:10px;">
  1643. <div style="width:42px; height:42px; background:#FF4D8D22; border-radius:50%; display:flex; align-items:center; justify-content:center; font-size:1.3rem;">⚖️</div>
  1644. <div>
  1645. <div class="text-mono text-xs" style="color:#FF4D8D; letter-spacing:0.1em;">DIM · 06</div>
  1646. <div style="font-size:1rem; font-weight:800; color:var(--text-1);">痛点×收益映射</div>
  1647. </div>
  1648. </div>
  1649. <div style="padding:8px 10px; background:#FF4D8D08; border-left:3px solid #FF4D8D; border-radius:4px; margin-bottom:10px;">
  1650. <div style="font-size:0.8rem; color:var(--text-1); font-weight:600; line-height:1.45;">Osterwalder 画布法,每个痛点 → 对应产品功能</div>
  1651. </div>
  1652. <div style="margin-bottom:8px;">
  1653. <div class="text-mono text-xs" style="color:var(--text-3); letter-spacing:0.08em; margin-bottom:3px;">🔬 方法</div>
  1654. <div style="font-size:0.74rem; color:var(--text-2); line-height:1.5;">痛点提取 → 严重度打分 → 收益映射 → 产品功能对照</div>
  1655. </div>
  1656. <div style="margin-bottom:8px;">
  1657. <div class="text-mono text-xs" style="color:var(--text-3); letter-spacing:0.08em; margin-bottom:3px;">📤 产出</div>
  1658. <div style="font-size:0.74rem; color:var(--text-2); line-height:1.5;">6 痛点 × 6 收益 × 产品功能映射表(PMF Fit 评分)</div>
  1659. </div>
  1660. <div style="padding:8px 10px; background:var(--bg-2); border-radius:4px;">
  1661. <div class="text-mono text-xs" style="color:#FF4D8D; letter-spacing:0.08em; margin-bottom:3px;">💬 示例</div>
  1662. <div style="font-size:0.72rem; color:var(--text-1); font-style:italic; line-height:1.5;">&quot;不好吞(痛点)&quot; → &quot;易吞咽小片剂(功能)&quot; → &quot;吞咽体验好(收益)&quot;</div>
  1663. </div>
  1664. </div>
  1665. </div>
  1666. <!-- 分析全流程图 -->
  1667. <div class="fade-up" style="background:linear-gradient(135deg, #2D9C5D10, #D4A57408); border:1px solid #2D9C5D44; border-radius:var(--radius-md); padding:24px;">
  1668. <div class="text-mono text-xs" style="color:#2D9C5D; letter-spacing:0.15em; margin-bottom:16px;">ANALYSIS PIPELINE · 从评论原声到决策证据</div>
  1669. <div style="display:grid; grid-template-columns:repeat(6, 1fr) auto; gap:10px; align-items:center;">
  1670. <div style="text-align:center;">
  1671. <div style="padding:14px 10px; background:#2D9C5D15; border:2px solid #2D9C5D44; border-radius:8px;">
  1672. <div style="font-size:1.4rem; margin-bottom:4px;">📝</div>
  1673. <div class="text-mono text-xs" style="color:#2D9C5D; letter-spacing:0.06em;">原始评论</div>
  1674. <div style="font-size:0.75rem; color:#2D9C5D; font-weight:700; margin-top:3px;">2500+</div>
  1675. </div>
  1676. </div>
  1677. <div style="font-size:1.2rem; color:#2D9C5D; text-align:center;">→</div>
  1678. <div style="text-align:center;">
  1679. <div style="padding:14px 10px; background:#0085CA15; border:2px solid #0085CA44; border-radius:8px;">
  1680. <div style="font-size:1.4rem; margin-bottom:4px;">🧹</div>
  1681. <div class="text-mono text-xs" style="color:#0085CA; letter-spacing:0.06em;">清洗 + 去重</div>
  1682. <div style="font-size:0.75rem; color:#0085CA; font-weight:700; margin-top:3px;">1800+</div>
  1683. </div>
  1684. </div>
  1685. <div style="font-size:1.2rem; color:#2D9C5D; text-align:center;">→</div>
  1686. <div style="text-align:center;">
  1687. <div style="padding:14px 10px; background:#D4A57415; border:2px solid #D4A57444; border-radius:8px;">
  1688. <div style="font-size:1.4rem; margin-bottom:4px;">🏷️</div>
  1689. <div class="text-mono text-xs" style="color:#D4A574; letter-spacing:0.06em;">6 维打标</div>
  1690. <div style="font-size:0.75rem; color:#D4A574; font-weight:700; margin-top:3px;">全量</div>
  1691. </div>
  1692. </div>
  1693. <div style="font-size:1.2rem; color:#2D9C5D; text-align:center;">→</div>
  1694. <div style="text-align:center;">
  1695. <div style="padding:14px 10px; background:#8B5CF615; border:2px solid #8B5CF644; border-radius:8px;">
  1696. <div style="font-size:1.4rem; margin-bottom:4px;">🧬</div>
  1697. <div class="text-mono text-xs" style="color:#8B5CF6; letter-spacing:0.06em;">主题聚类</div>
  1698. <div style="font-size:0.75rem; color:#8B5CF6; font-weight:700; margin-top:3px;">30 主题</div>
  1699. </div>
  1700. </div>
  1701. <div style="font-size:1.2rem; color:#2D9C5D; text-align:center;">→</div>
  1702. <div style="text-align:center;">
  1703. <div style="padding:14px 10px; background:#FF8C4215; border:2px solid #FF8C4244; border-radius:8px;">
  1704. <div style="font-size:1.4rem; margin-bottom:4px;">⚖️</div>
  1705. <div class="text-mono text-xs" style="color:#FF8C42; letter-spacing:0.06em;">权重排序</div>
  1706. <div style="font-size:0.75rem; color:#FF8C42; font-weight:700; margin-top:3px;">Top 100</div>
  1707. </div>
  1708. </div>
  1709. <div style="font-size:1.2rem; color:#2D9C5D; text-align:center;">→</div>
  1710. <div style="text-align:center;">
  1711. <div style="padding:14px 10px; background:#FF4D8D15; border:2px solid #FF4D8D44; border-radius:8px;">
  1712. <div style="font-size:1.4rem; margin-bottom:4px;">🎯</div>
  1713. <div class="text-mono text-xs" style="color:#FF4D8D; letter-spacing:0.06em;">决策证据</div>
  1714. <div style="font-size:0.75rem; color:#FF4D8D; font-weight:700; margin-top:3px;">金句库</div>
  1715. </div>
  1716. </div>
  1717. </div>
  1718. </div>
  1719. </div>
  1720. </section>
  1721. <section class="report-section" id="method-5" data-tone="green" data-slide-num="08/42">
  1722. <div class="section-inner">
  1723. <div class="section-head rise-in">
  1724. <div class="section-eyebrow" style="color:#2D9C5D;">1.5 · SCOPE BOUNDARIES</div>
  1725. <h2 class="text-h1"><span class="headline-anim">可做 / 不可做边界 · 方法论自律</span></h2>
  1726. <p class="section-sub">会议明确:"<strong style="color:#2D9C5D;">能做(包装/定价/话术/渠道)</strong>" vs "<strong style="color:#FF4D8D;">不能做(名字/批文/配方/剂型)</strong>" · VOC 严格守边界,不做无效调研</p>
  1727. </div>
  1728. <!-- 双列对比 · 能做 vs 不能做 -->
  1729. <div style="display:grid; grid-template-columns:1fr 1fr; gap:24px; margin-bottom:24px;">
  1730. <!-- 左:能做 -->
  1731. <div class="fade-up">
  1732. <div style="padding:16px 20px; background:linear-gradient(135deg, #2D9C5D15, #2D9C5D05); border:2px solid #2D9C5D44; border-radius:var(--radius-md) var(--radius-md) 0 0; display:flex; align-items:center; gap:10px;">
  1733. <div style="font-size:1.8rem;">✅</div>
  1734. <div>
  1735. <div class="text-mono text-xs" style="color:#2D9C5D; letter-spacing:0.15em;">CAN DO · 可做 4 类</div>
  1736. <div style="font-size:1.2rem; font-weight:800; color:var(--text-1);">VOC 可调研 · 落地性强</div>
  1737. </div>
  1738. </div>
  1739. <div style="background:var(--bg-1); border:2px solid #2D9C5D44; border-top:none; border-radius:0 0 var(--radius-md) var(--radius-md); padding:18px; display:grid; gap:12px;">
  1740. <div style="padding:14px; background:#D4A57408; border-left:3px solid #D4A574; border-radius:4px;">
  1741. <div style="display:flex; align-items:center; gap:8px; margin-bottom:8px;">
  1742. <div style="font-size:1.3rem;">📦</div>
  1743. <div style="font-size:1rem; font-weight:800; color:var(--text-1);">包装形态</div>
  1744. </div>
  1745. <ul style="margin:0 0 8px; padding:0; list-style:none;">
  1746. <li style="padding:3px 0; font-size:0.76rem; color:var(--text-2); line-height:1.5; padding-left:14px; position:relative;"><span style="position:absolute; left:0; color:#D4A574;">▸</span>外包装:盒装(礼品/普通)、罐装(磨砂玻璃/PET)、铁盒(可调研接受度)</li><li style="padding:3px 0; font-size:0.76rem; color:var(--text-2); line-height:1.5; padding-left:14px; position:relative;"><span style="position:absolute; left:0; color:#D4A574;">▸</span>内包装:锡纸片(板装,药线便携分食)、瓶装(日常自用、礼品)</li><li style="padding:3px 0; font-size:0.76rem; color:var(--text-2); line-height:1.5; padding-left:14px; position:relative;"><span style="position:absolute; left:0; color:#D4A574;">▸</span>材质/颜色/视觉:融入藤茶元素、DMY 白霜视觉化、Swisse 风轻奢</li>
  1747. </ul>
  1748. <div style="padding:6px 10px; background:var(--bg-2); border-radius:3px; font-size:0.7rem; color:var(--text-3); font-style:italic; line-height:1.45;">
  1749. 💬 VOC 印证:&quot;包装太土了,送人都拿不出手&quot; · &quot;希望像 Swisse 那种磨砂瓶&quot; · &quot;有没有带藤茶图案的&quot;
  1750. </div>
  1751. </div>
  1752. <div style="padding:14px; background:#8B5CF608; border-left:3px solid #8B5CF6; border-radius:4px;">
  1753. <div style="display:flex; align-items:center; gap:8px; margin-bottom:8px;">
  1754. <div style="font-size:1.3rem;">💊</div>
  1755. <div style="font-size:1rem; font-weight:800; color:var(--text-1);">片剂外观</div>
  1756. </div>
  1757. <ul style="margin:0 0 8px; padding:0; list-style:none;">
  1758. <li style="padding:3px 0; font-size:0.76rem; color:var(--text-2); line-height:1.5; padding-left:14px; position:relative;"><span style="position:absolute; left:0; color:#8B5CF6;">▸</span>剂型 = 片剂(不可动)</li><li style="padding:3px 0; font-size:0.76rem; color:var(--text-2); line-height:1.5; padding-left:14px; position:relative;"><span style="position:absolute; left:0; color:#8B5CF6;">▸</span>但形状可调:圆形 / 三角形 / 椭圆形 / 异形</li><li style="padding:3px 0; font-size:0.76rem; color:var(--text-2); line-height:1.5; padding-left:14px; position:relative;"><span style="position:absolute; left:0; color:#8B5CF6;">▸</span>表面纹理:印 LOGO / 藤茶纹理 / DMY 字样 / 光面 vs 磨砂</li>
  1759. </ul>
  1760. <div style="padding:6px 10px; background:var(--bg-2); border-radius:3px; font-size:0.7rem; color:var(--text-3); font-style:italic; line-height:1.45;">
  1761. 💬 VOC 印证:&quot;这片剂太大,不好吞&quot; · &quot;能不能做个好看的形状&quot; · &quot;表面印个 LOGO 高级感提升&quot;
  1762. </div>
  1763. </div>
  1764. <div style="padding:14px; background:#0085CA08; border-left:3px solid #0085CA; border-radius:4px;">
  1765. <div style="display:flex; align-items:center; gap:8px; margin-bottom:8px;">
  1766. <div style="font-size:1.3rem;">💰</div>
  1767. <div style="font-size:1rem; font-weight:800; color:var(--text-1);">定价策略</div>
  1768. </div>
  1769. <ul style="margin:0 0 8px; padding:0; list-style:none;">
  1770. <li style="padding:3px 0; font-size:0.76rem; color:var(--text-2); line-height:1.5; padding-left:14px; position:relative;"><span style="position:absolute; left:0; color:#0085CA;">▸</span>按渠道分价:药线低价引流 / 电商日常中端 / 礼品高端溢价</li><li style="padding:3px 0; font-size:0.76rem; color:var(--text-2); line-height:1.5; padding-left:14px; position:relative;"><span style="position:absolute; left:0; color:#0085CA;">▸</span>按规格分价:12片 / 60片 / 120片 对应不同价位段</li><li style="padding:3px 0; font-size:0.76rem; color:var(--text-2); line-height:1.5; padding-left:14px; position:relative;"><span style="position:absolute; left:0; color:#0085CA;">▸</span>对标竞品:Swisse ¥158 / 护肝片 OTC ¥25 / 易善复 ¥45</li>
  1771. </ul>
  1772. <div style="padding:6px 10px; background:var(--bg-2); border-radius:3px; font-size:0.7rem; color:var(--text-3); font-style:italic; line-height:1.45;">
  1773. 💬 VOC 印证:&quot;这个价格比 Swisse 便宜就考虑&quot; · &quot;送礼装包装好可以贵点&quot; · &quot;日常用希望不超 100&quot;
  1774. </div>
  1775. </div>
  1776. <div style="padding:14px; background:#2D9C5D08; border-left:3px solid #2D9C5D; border-radius:4px;">
  1777. <div style="display:flex; align-items:center; gap:8px; margin-bottom:8px;">
  1778. <div style="font-size:1.3rem;">💬</div>
  1779. <div style="font-size:1rem; font-weight:800; color:var(--text-1);">文案与话术</div>
  1780. </div>
  1781. <ul style="margin:0 0 8px; padding:0; list-style:none;">
  1782. <li style="padding:3px 0; font-size:0.76rem; color:var(--text-2); line-height:1.5; padding-left:14px; position:relative;"><span style="position:absolute; left:0; color:#2D9C5D;">▸</span>强化&quot;藤茶(显齿蛇葡萄)&quot;概念 · &quot;DMY 二氢杨梅素&quot;核心</li><li style="padding:3px 0; font-size:0.76rem; color:var(--text-2); line-height:1.5; padding-left:14px; position:relative;"><span style="position:absolute; left:0; color:#2D9C5D;">▸</span>核心话术:解酒 / 安全 / 社交 / 高端四路并进</li><li style="padding:3px 0; font-size:0.76rem; color:var(--text-2); line-height:1.5; padding-left:14px; position:relative;"><span style="position:absolute; left:0; color:#2D9C5D;">▸</span>视觉:Swisse 轻奢 vs 新中式草本(AB 调研)</li>
  1783. </ul>
  1784. <div style="padding:6px 10px; background:var(--bg-2); border-radius:3px; font-size:0.7rem; color:var(--text-3); font-style:italic; line-height:1.45;">
  1785. 💬 VOC 印证:&quot;藤茶?听都没听过,能说清是啥吗&quot; · &quot;说我能喝酒时吃就买&quot; · &quot;看不懂 DMY 是什么&quot;
  1786. </div>
  1787. </div>
  1788. </div>
  1789. </div>
  1790. <!-- 右:不能做 -->
  1791. <div class="fade-up">
  1792. <div style="padding:16px 20px; background:linear-gradient(135deg, #FF4D8D15, #FF4D8D05); border:2px solid #FF4D8D44; border-radius:var(--radius-md) var(--radius-md) 0 0; display:flex; align-items:center; gap:10px;">
  1793. <div style="font-size:1.8rem;">❌</div>
  1794. <div>
  1795. <div class="text-mono text-xs" style="color:#FF4D8D; letter-spacing:0.15em;">CANNOT DO · 不做 4 类</div>
  1796. <div style="font-size:1.2rem; font-weight:800; color:var(--text-1);">VOC 不涉及 · 无效工作</div>
  1797. </div>
  1798. </div>
  1799. <div style="background:var(--bg-1); border:2px solid #FF4D8D44; border-top:none; border-radius:0 0 var(--radius-md) var(--radius-md); padding:18px; display:grid; gap:12px;">
  1800. <div style="padding:14px; background:#FF4D8D08; border-left:3px solid #FF4D8D; border-radius:4px;">
  1801. <div style="display:flex; align-items:center; gap:8px; margin-bottom:8px;">
  1802. <div style="font-size:1.3rem;">🏷️</div>
  1803. <div style="font-size:1rem; font-weight:800; color:var(--text-1);">产品名字</div>
  1804. </div>
  1805. <div style="padding:5px 10px; background:var(--bg-2); border-radius:3px; margin-bottom:6px;">
  1806. <div class="text-mono text-xs" style="color:#FF4D8D; letter-spacing:0.06em; margin-bottom:2px;">🔒 原因</div>
  1807. <div style="font-size:0.74rem; color:var(--text-2); line-height:1.45;">品牌资产已沉淀&quot;江中肝纯片&quot; · 2021 年上市至今 7-8亿峰值</div>
  1808. </div>
  1809. <div style="padding:5px 10px; background:var(--bg-2); border-radius:3px; margin-bottom:6px;">
  1810. <div class="text-mono text-xs" style="color:#FF4D8D; letter-spacing:0.06em; margin-bottom:2px;">📌 执行</div>
  1811. <div style="font-size:0.74rem; color:var(--text-2); line-height:1.45;">VOC 仅验证用户对现有名字的记忆度 / 认知度,不做更名</div>
  1812. </div>
  1813. <div style="padding:5px 10px; background:#FF4D8D15; border-radius:3px;">
  1814. <div style="font-size:0.72rem; color:#FF4D8D; font-style:italic; line-height:1.45;">❌ 不调研:&quot;肝好好&quot; / &quot;茶肝灵&quot; 等替代名</div>
  1815. </div>
  1816. </div>
  1817. <div style="padding:14px; background:#FF4D8D08; border-left:3px solid #FF4D8D; border-radius:4px;">
  1818. <div style="display:flex; align-items:center; gap:8px; margin-bottom:8px;">
  1819. <div style="font-size:1.3rem;">📜</div>
  1820. <div style="font-size:1rem; font-weight:800; color:var(--text-1);">产品批文</div>
  1821. </div>
  1822. <div style="padding:5px 10px; background:var(--bg-2); border-radius:3px; margin-bottom:6px;">
  1823. <div class="text-mono text-xs" style="color:#FF4D8D; letter-spacing:0.06em; margin-bottom:2px;">🔒 原因</div>
  1824. <div style="font-size:0.74rem; color:var(--text-2); line-height:1.45;">蓝帽保健食品,批文明确&quot;化学性肝损伤辅助保护&quot;</div>
  1825. </div>
  1826. <div style="padding:5px 10px; background:var(--bg-2); border-radius:3px; margin-bottom:6px;">
  1827. <div class="text-mono text-xs" style="color:#FF4D8D; letter-spacing:0.06em; margin-bottom:2px;">📌 执行</div>
  1828. <div style="font-size:0.74rem; color:var(--text-2); line-height:1.45;">VOC 不涉及批文功效外的诉求(不宣传治疗)</div>
  1829. </div>
  1830. <div style="padding:5px 10px; background:#FF4D8D15; border-radius:3px;">
  1831. <div style="font-size:0.72rem; color:#FF4D8D; font-style:italic; line-height:1.45;">❌ 不调研:&quot;治愈肝炎&quot; / &quot;治疗脂肪肝&quot; 等药品化表述</div>
  1832. </div>
  1833. </div>
  1834. <div style="padding:14px; background:#FF4D8D08; border-left:3px solid #FF4D8D; border-radius:4px;">
  1835. <div style="display:flex; align-items:center; gap:8px; margin-bottom:8px;">
  1836. <div style="font-size:1.3rem;">🧪</div>
  1837. <div style="font-size:1rem; font-weight:800; color:var(--text-1);">产品配方</div>
  1838. </div>
  1839. <div style="padding:5px 10px; background:var(--bg-2); border-radius:3px; margin-bottom:6px;">
  1840. <div class="text-mono text-xs" style="color:#FF4D8D; letter-spacing:0.06em; margin-bottom:2px;">🔒 原因</div>
  1841. <div style="font-size:0.74rem; color:var(--text-2); line-height:1.45;">核心成分显齿蛇葡萄提取物 + DMY 配比已定型</div>
  1842. </div>
  1843. <div style="padding:5px 10px; background:var(--bg-2); border-radius:3px; margin-bottom:6px;">
  1844. <div class="text-mono text-xs" style="color:#FF4D8D; letter-spacing:0.06em; margin-bottom:2px;">📌 执行</div>
  1845. <div style="font-size:0.74rem; color:var(--text-2); line-height:1.45;">VOC 不调研配方优化,只验证藤茶/DMY 概念表达</div>
  1846. </div>
  1847. <div style="padding:5px 10px; background:#FF4D8D15; border-radius:3px;">
  1848. <div style="font-size:0.72rem; color:#FF4D8D; font-style:italic; line-height:1.45;">❌ 不调研:加水飞蓟 / 加姜黄 / 换成胶囊浓缩</div>
  1849. </div>
  1850. </div>
  1851. <div style="padding:14px; background:#FF4D8D08; border-left:3px solid #FF4D8D; border-radius:4px;">
  1852. <div style="display:flex; align-items:center; gap:8px; margin-bottom:8px;">
  1853. <div style="font-size:1.3rem;">💊</div>
  1854. <div style="font-size:1rem; font-weight:800; color:var(--text-1);">产品剂型</div>
  1855. </div>
  1856. <div style="padding:5px 10px; background:var(--bg-2); border-radius:3px; margin-bottom:6px;">
  1857. <div class="text-mono text-xs" style="color:#FF4D8D; letter-spacing:0.06em; margin-bottom:2px;">🔒 原因</div>
  1858. <div style="font-size:0.74rem; color:var(--text-2); line-height:1.45;">片剂形态不可变(生产线 + 成本 + 蓝帽批文限制)</div>
  1859. </div>
  1860. <div style="padding:5px 10px; background:var(--bg-2); border-radius:3px; margin-bottom:6px;">
  1861. <div class="text-mono text-xs" style="color:#FF4D8D; letter-spacing:0.06em; margin-bottom:2px;">📌 执行</div>
  1862. <div style="font-size:0.74rem; color:var(--text-2); line-height:1.45;">VOC 仅优化片剂外观(形状/纹理),不调研胶囊/颗粒/口服液</div>
  1863. </div>
  1864. <div style="padding:5px 10px; background:#FF4D8D15; border-radius:3px;">
  1865. <div style="font-size:0.72rem; color:#FF4D8D; font-style:italic; line-height:1.45;">❌ 不调研:&quot;能做成胶囊吗&quot; / &quot;改成颗粒冲剂&quot; / &quot;加成饮料&quot;</div>
  1866. </div>
  1867. </div>
  1868. </div>
  1869. </div>
  1870. </div>
  1871. <!-- 方法论自律承诺 -->
  1872. <div class="fade-up" style="background:linear-gradient(135deg, #2D9C5D10, #D4A57408); border:1px solid #2D9C5D44; border-radius:var(--radius-md); padding:24px;">
  1873. <div class="text-mono text-xs" style="color:#2D9C5D; letter-spacing:0.15em; margin-bottom:14px;">DISCIPLINE · VOC 工作 4 条自律</div>
  1874. <div style="display:grid; grid-template-columns:repeat(4, 1fr); gap:14px;">
  1875. <div style="text-align:center; padding:14px; background:#2D9C5D08; border-radius:8px;">
  1876. <div style="font-size:2rem; margin-bottom:4px;">🎯</div>
  1877. <div class="text-mono text-xs" style="color:#2D9C5D; letter-spacing:0.1em; margin-bottom:4px;">PRINCIPLE 01</div>
  1878. <div style="font-size:1rem; font-weight:800; color:var(--text-1); margin-bottom:4px;">边界清晰</div>
  1879. <div style="font-size:0.72rem; color:var(--text-2); line-height:1.4;">明确能做/不能做,VOC 不越界</div>
  1880. </div>
  1881. <div style="text-align:center; padding:14px; background:#D4A57408; border-radius:8px;">
  1882. <div style="font-size:2rem; margin-bottom:4px;">🧭</div>
  1883. <div class="text-mono text-xs" style="color:#D4A574; letter-spacing:0.1em; margin-bottom:4px;">PRINCIPLE 02</div>
  1884. <div style="font-size:1rem; font-weight:800; color:var(--text-1); margin-bottom:4px;">定位明确</div>
  1885. <div style="font-size:0.72rem; color:var(--text-2); line-height:1.4;">藤茶 DMY + 安全 + 社交 + 礼品</div>
  1886. </div>
  1887. <div style="text-align:center; padding:14px; background:#0085CA08; border-radius:8px;">
  1888. <div style="font-size:2rem; margin-bottom:4px;">🚀</div>
  1889. <div class="text-mono text-xs" style="color:#0085CA; letter-spacing:0.1em; margin-bottom:4px;">PRINCIPLE 03</div>
  1890. <div style="font-size:1rem; font-weight:800; color:var(--text-1); margin-bottom:4px;">目标导向</div>
  1891. <div style="font-size:0.72rem; color:var(--text-2); line-height:1.4;">所有调研服务 10 亿 × 4 渠道</div>
  1892. </div>
  1893. <div style="text-align:center; padding:14px; background:#FF4D8D08; border-radius:8px;">
  1894. <div style="font-size:2rem; margin-bottom:4px;">👤</div>
  1895. <div class="text-mono text-xs" style="color:#FF4D8D; letter-spacing:0.1em; margin-bottom:4px;">PRINCIPLE 04</div>
  1896. <div style="font-size:1rem; font-weight:800; color:var(--text-1); margin-bottom:4px;">用户核心</div>
  1897. <div style="font-size:0.72rem; color:var(--text-2); line-height:1.4;">VOC 捕真实需求,打造差异化</div>
  1898. </div>
  1899. </div>
  1900. </div>
  1901. </div>
  1902. </section>
  1903. <section class="report-section" id="package" data-tone="amber" data-slide-num="09/42" style="justify-content:center;">
  1904. <div class="section-inner">
  1905. <div class="rise-in" style="text-align:center; margin-bottom:48px;">
  1906. <div class="text-mono" style="color:#D4A574; letter-spacing:0.35em; font-size:0.8rem; margin-bottom:20px;">CHAPTER 2 · PACKAGE</div>
  1907. <h1 style="font-family:var(--font-head); font-weight:900; font-size:clamp(4rem, 10vw, 8rem); line-height:0.92; letter-spacing:-0.04em; color:#fff; background:linear-gradient(135deg, #fff 30%, #D4A574 100%); -webkit-background-clip:text; background-clip:text; -webkit-text-fill-color:transparent; margin:0 0 18px;">
  1908. 包装调研
  1909. </h1>
  1910. <p class="text-poster" style="font-size:clamp(1.2rem, 2.2vw, 1.8rem); color:var(--text-2); font-weight:500; max-width:820px; margin:0 auto; line-height:1.5;">破解&quot;土&quot;的问题,对标 Swisse 轻奢中式风 · 药线板装 + 高端礼盒双形态</p>
  1911. </div>
  1912. <div class="fade-up" style="max-width:920px; margin:0 auto 40px; padding:28px 36px; background:rgba(255,255,255,0.02); border-left:4px solid #D4A574; border-radius:0 var(--radius-md) var(--radius-md) 0;">
  1913. <div class="text-mono text-xs" style="color:#D4A574; letter-spacing:0.15em; margin-bottom:10px;">KEY TAKE · 本章核心</div>
  1914. <div style="font-size:1.15rem; line-height:1.75; color:var(--text-1);">现包装被内部判定"土",VOC Top #1 问题。对标 <strong style="color:#D4A574;">Swisse 轻奢风 + 中式草本元素(藤茶纹/白霜DMY)</strong>,双形态:药线 <strong style="color:#0085CA;">铝塑板装</strong>(12片×2板合规陈列)+ 礼品 <strong style="color:#D4A574;">高端瓶装/礼盒</strong>(2瓶/4瓶)。</div>
  1915. </div>
  1916. <div class="grid fade-up" style="grid-template-columns:repeat(5, 1fr); gap:14px; max-width:1100px; margin:0 auto;">
  1917. <div style="background:var(--bg-1); border:1px solid var(--border); border-radius:var(--radius-md); padding:18px 16px; display:flex; flex-direction:column; gap:8px; border-top:2px solid #D4A574;">
  1918. <div class="text-mono text-xs" style="color:#D4A574; letter-spacing:0.1em; font-weight:700;">2.1</div>
  1919. <div style="font-weight:700; font-size:0.86rem; color:var(--text-1); line-height:1.35;">现状诊断·&quot;土&quot;的 VOC 印证</div>
  1920. </div>
  1921. <div style="background:var(--bg-1); border:1px solid var(--border); border-radius:var(--radius-md); padding:18px 16px; display:flex; flex-direction:column; gap:8px; border-top:2px solid #D4A574;">
  1922. <div class="text-mono text-xs" style="color:#D4A574; letter-spacing:0.1em; font-weight:700;">2.2</div>
  1923. <div style="font-weight:700; font-size:0.86rem; color:var(--text-1); line-height:1.35;">外包装偏好(Swisse风 vs 中式轻奢 vs 铁盒)</div>
  1924. </div>
  1925. <div style="background:var(--bg-1); border:1px solid var(--border); border-radius:var(--radius-md); padding:18px 16px; display:flex; flex-direction:column; gap:8px; border-top:2px solid #D4A574;">
  1926. <div class="text-mono text-xs" style="color:#D4A574; letter-spacing:0.1em; font-weight:700;">2.3</div>
  1927. <div style="font-weight:700; font-size:0.86rem; color:var(--text-1); line-height:1.35;">内包装形态(瓶装/板装/锡纸片)</div>
  1928. </div>
  1929. <div style="background:var(--bg-1); border:1px solid var(--border); border-radius:var(--radius-md); padding:18px 16px; display:flex; flex-direction:column; gap:8px; border-top:2px solid #D4A574;">
  1930. <div class="text-mono text-xs" style="color:#D4A574; letter-spacing:0.1em; font-weight:700;">2.4</div>
  1931. <div style="font-weight:700; font-size:0.86rem; color:var(--text-1); line-height:1.35;">片剂外观(形状/纹理/口感)</div>
  1932. </div>
  1933. <div style="background:var(--bg-1); border:1px solid var(--border); border-radius:var(--radius-md); padding:18px 16px; display:flex; flex-direction:column; gap:8px; border-top:2px solid #D4A574;">
  1934. <div class="text-mono text-xs" style="color:#D4A574; letter-spacing:0.1em; font-weight:700;">2.5</div>
  1935. <div style="font-weight:700; font-size:0.86rem; color:var(--text-1); line-height:1.35;">礼品规格 × SKU 矩阵</div>
  1936. </div>
  1937. </div>
  1938. <div class="fade-up text-mono text-xs" style="margin-top:56px; text-align:center; color:var(--text-3); letter-spacing:0.2em;">
  1939. ↓ 滚动查看 5 个子章节展开
  1940. </div>
  1941. </div>
  1942. </section>
  1943. <section class="report-section" id="package-1" data-tone="amber" data-slide-num="10">
  1944. <div class="section-inner">
  1945. <div class="section-head rise-in">
  1946. <div class="section-eyebrow" style="color:#D4A574;">2.1 · PACKAGE DIAGNOSIS</div>
  1947. <h2 class="text-h1"><span class="headline-anim">现状诊断 · "土"的 VOC 印证</span></h2>
  1948. <p class="section-sub">基于 <strong style="color:#D4A574;">84</strong> 条包装相关评论 + 跨模块 <strong style="color:#D4A574;">8</strong> 条"包装/盒子/瓶身"搜索结果,量化"土"的具体维度</p>
  1949. </div>
  1950. <!-- 主题词频分布 -->
  1951. <div class="fade-up" style="background:var(--bg-1); border:1px solid var(--border); border-radius:var(--radius-md); padding:24px; margin-bottom:24px;">
  1952. <div class="text-mono text-xs" style="color:#D4A574; letter-spacing:0.15em; margin-bottom:14px;">THEME FREQUENCY · 包装主题词频分布</div>
  1953. <div style="display:grid; grid-template-columns:repeat(3, 1fr); gap:14px;">
  1954. <div style="padding:14px; background:var(--bg-2); border-left:3px solid #D4A574; border-radius:4px;">
  1955. <div style="display:flex; justify-content:space-between; align-items:baseline; margin-bottom:6px;">
  1956. <div style="font-size:0.82rem; font-weight:700; color:var(--text-1);">&quot;土&quot;·包装吐槽</div>
  1957. <div style="font-family:var(--font-mono); font-size:0.72rem; color:#D4A574; font-weight:700;">0条 · 0%</div>
  1958. </div>
  1959. <div style="height:5px; background:var(--bg-1); border-radius:3px; overflow:hidden; margin-bottom:6px;">
  1960. <div style="width:0%; height:100%; background:#D4A574;"></div>
  1961. </div>
  1962. <div style="font-size:0.7rem; color:var(--text-3); margin-bottom:4px;">平均点赞 <strong style="color:#D4A574;">0</strong></div>
  1963. </div>
  1964. <div style="padding:14px; background:var(--bg-2); border-left:3px solid #D4A574; border-radius:4px;">
  1965. <div style="display:flex; justify-content:space-between; align-items:baseline; margin-bottom:6px;">
  1966. <div style="font-size:0.82rem; font-weight:700; color:var(--text-1);">外观诉求·精致/好看</div>
  1967. <div style="font-family:var(--font-mono); font-size:0.72rem; color:#D4A574; font-weight:700;">1条 · 1%</div>
  1968. </div>
  1969. <div style="height:5px; background:var(--bg-1); border-radius:3px; overflow:hidden; margin-bottom:6px;">
  1970. <div style="width:4%; height:100%; background:#D4A574;"></div>
  1971. </div>
  1972. <div style="font-size:0.7rem; color:var(--text-3); margin-bottom:4px;">平均点赞 <strong style="color:#D4A574;">167</strong></div>
  1973. <div style="font-size:0.68rem; color:var(--text-2); font-style:italic; line-height:1.45; padding:4px 0; border-top:1px dashed var(--border);">💬 "真的太漂亮了[偷笑R]"</div>
  1974. </div>
  1975. <div style="padding:14px; background:var(--bg-2); border-left:3px solid #D4A574; border-radius:4px;">
  1976. <div style="display:flex; justify-content:space-between; align-items:baseline; margin-bottom:6px;">
  1977. <div style="font-size:0.82rem; font-weight:700; color:var(--text-1);">礼盒场景·送礼适配</div>
  1978. <div style="font-family:var(--font-mono); font-size:0.72rem; color:#D4A574; font-weight:700;">2条 · 2%</div>
  1979. </div>
  1980. <div style="height:5px; background:var(--bg-1); border-radius:3px; overflow:hidden; margin-bottom:6px;">
  1981. <div style="width:8%; height:100%; background:#D4A574;"></div>
  1982. </div>
  1983. <div style="font-size:0.7rem; color:var(--text-3); margin-bottom:4px;">平均点赞 <strong style="color:#D4A574;">0</strong></div>
  1984. <div style="font-size:0.68rem; color:var(--text-2); font-style:italic; line-height:1.45; padding:4px 0; border-top:1px dashed var(--border);">💬 "我山姆app买的为啥没有礼盒,而且盒子不是密封的,也没有什么小玩意把口粘一下,这对吗?"</div>
  1985. </div>
  1986. <div style="padding:14px; background:var(--bg-2); border-left:3px solid #D4A574; border-radius:4px;">
  1987. <div style="display:flex; justify-content:space-between; align-items:baseline; margin-bottom:6px;">
  1988. <div style="font-size:0.82rem; font-weight:700; color:var(--text-1);">货架识别·一眼认出</div>
  1989. <div style="font-family:var(--font-mono); font-size:0.72rem; color:#D4A574; font-weight:700;">0条 · 0%</div>
  1990. </div>
  1991. <div style="height:5px; background:var(--bg-1); border-radius:3px; overflow:hidden; margin-bottom:6px;">
  1992. <div style="width:0%; height:100%; background:#D4A574;"></div>
  1993. </div>
  1994. <div style="font-size:0.7rem; color:var(--text-3); margin-bottom:4px;">平均点赞 <strong style="color:#D4A574;">0</strong></div>
  1995. </div>
  1996. <div style="padding:14px; background:var(--bg-2); border-left:3px solid #D4A574; border-radius:4px;">
  1997. <div style="display:flex; justify-content:space-between; align-items:baseline; margin-bottom:6px;">
  1998. <div style="font-size:0.82rem; font-weight:700; color:var(--text-1);">Swisse 对标·轻奢</div>
  1999. <div style="font-family:var(--font-mono); font-size:0.72rem; color:#D4A574; font-weight:700;">0条 · 0%</div>
  2000. </div>
  2001. <div style="height:5px; background:var(--bg-1); border-radius:3px; overflow:hidden; margin-bottom:6px;">
  2002. <div style="width:0%; height:100%; background:#D4A574;"></div>
  2003. </div>
  2004. <div style="font-size:0.7rem; color:var(--text-3); margin-bottom:4px;">平均点赞 <strong style="color:#D4A574;">0</strong></div>
  2005. </div>
  2006. <div style="padding:14px; background:var(--bg-2); border-left:3px solid #D4A574; border-radius:4px;">
  2007. <div style="display:flex; justify-content:space-between; align-items:baseline; margin-bottom:6px;">
  2008. <div style="font-size:0.82rem; font-weight:700; color:var(--text-1);">药品感·不像保健品</div>
  2009. <div style="font-family:var(--font-mono); font-size:0.72rem; color:#D4A574; font-weight:700;">0条 · 0%</div>
  2010. </div>
  2011. <div style="height:5px; background:var(--bg-1); border-radius:3px; overflow:hidden; margin-bottom:6px;">
  2012. <div style="width:0%; height:100%; background:#D4A574;"></div>
  2013. </div>
  2014. <div style="font-size:0.7rem; color:var(--text-3); margin-bottom:4px;">平均点赞 <strong style="color:#D4A574;">0</strong></div>
  2015. </div>
  2016. </div>
  2017. </div>
  2018. <!-- VOC 原声卡片 -->
  2019. <div class="fade-up" style="background:var(--bg-1); border:1px solid #D4A57444; border-radius:var(--radius-md); padding:24px; margin-bottom:24px;">
  2020. <div class="text-mono text-xs" style="color:#D4A574; letter-spacing:0.15em; margin-bottom:14px;">VOC RAW VOICE · Top 8 包装相关真实评论</div>
  2021. <div style="display:grid; grid-template-columns:1fr 1fr; gap:10px;">
  2022. <div style="padding:10px 12px; background:var(--bg-2); border-left:3px solid #D4A574; border-radius:4px; margin-bottom:8px;">
  2023. <div style="display:flex; justify-content:space-between; align-items:center; margin-bottom:4px;">
  2024. <div style="display:flex; align-items:center; gap:6px;">
  2025. <span style="font-size:0.72rem; font-weight:700; color:#D4A574;">我要睡觉觉啦</span>
  2026. <span class="text-mono text-xs" style="color:var(--text-3);">📍广东</span>
  2027. </div>
  2028. <div style="display:flex; align-items:center; gap:8px;">
  2029. <span class="text-mono text-xs" style="color:#D4A574;">♡ 0</span>
  2030. <span style="padding:1px 6px; background:#D4A57415; color:#D4A574; border-radius:2px; font-size:0.65rem;">藤茶 护肝</span>
  2031. </div>
  2032. </div>
  2033. <div style="font-size:0.78rem; color:var(--text-1); line-height:1.5;">独立小包装太贴心了,出差旅行随身带,随时随地都能喝上一杯温润的藤茶,超方便。</div>
  2034. </div>
  2035. <div style="padding:10px 12px; background:var(--bg-2); border-left:3px solid #D4A574; border-radius:4px; margin-bottom:8px;">
  2036. <div style="display:flex; justify-content:space-between; align-items:center; margin-bottom:4px;">
  2037. <div style="display:flex; align-items:center; gap:6px;">
  2038. <span style="font-size:0.72rem; font-weight:700; color:#D4A574;">渝MM在渝53632</span>
  2039. <span class="text-mono text-xs" style="color:var(--text-3);">📍广东</span>
  2040. </div>
  2041. <div style="display:flex; align-items:center; gap:8px;">
  2042. <span class="text-mono text-xs" style="color:#D4A574;">♡ 0</span>
  2043. <span style="padding:1px 6px; background:#D4A57415; color:#D4A574; border-radius:2px; font-size:0.65rem;">藤茶 护肝</span>
  2044. </div>
  2045. </div>
  2046. <div style="font-size:0.78rem; color:var(--text-1); line-height:1.5;">独立包装干净卫生,一次一包,不浪费也好储存,对独居党太友好了。</div>
  2047. </div>
  2048. <div style="padding:10px 12px; background:var(--bg-2); border-left:3px solid #D4A574; border-radius:4px; margin-bottom:8px;">
  2049. <div style="display:flex; justify-content:space-between; align-items:center; margin-bottom:4px;">
  2050. <div style="display:flex; align-items:center; gap:6px;">
  2051. <span style="font-size:0.72rem; font-weight:700; color:#D4A574;">暖城风物集</span>
  2052. </div>
  2053. <div style="display:flex; align-items:center; gap:8px;">
  2054. <span class="text-mono text-xs" style="color:#D4A574;">♡ 0</span>
  2055. <span style="padding:1px 6px; background:#D4A57415; color:#D4A574; border-radius:2px; font-size:0.65rem;">藤茶 护肝</span>
  2056. </div>
  2057. </div>
  2058. <div style="font-size:0.78rem; color:var(--text-1); line-height:1.5;">物流挺快的,包装完好无损,包装也好看,打开一大股清香味儿,我有咽喉炎早上起床刷牙恶心,卡痰困难,痰成白色或黄色,喝了看一下效果</div>
  2059. </div>
  2060. <div style="padding:10px 12px; background:var(--bg-2); border-left:3px solid #D4A574; border-radius:4px; margin-bottom:8px;">
  2061. <div style="display:flex; justify-content:space-between; align-items:center; margin-bottom:4px;">
  2062. <div style="display:flex; align-items:center; gap:6px;">
  2063. <span style="font-size:0.72rem; font-weight:700; color:#D4A574;">小红薯66341A2B</span>
  2064. </div>
  2065. <div style="display:flex; align-items:center; gap:8px;">
  2066. <span class="text-mono text-xs" style="color:#D4A574;">♡ 0</span>
  2067. <span style="padding:1px 6px; background:#D4A57415; color:#D4A574; border-radius:2px; font-size:0.65rem;">二氢杨梅素</span>
  2068. </div>
  2069. </div>
  2070. <div style="font-size:0.78rem; color:var(--text-1); line-height:1.5;">茶叶保护的很好。打开包装香味很好闻,今天喝了好几杯,入口微苦随后回甘,很舒服。挺好的一款茶</div>
  2071. </div>
  2072. <div style="padding:10px 12px; background:var(--bg-2); border-left:3px solid #D4A574; border-radius:4px; margin-bottom:8px;">
  2073. <div style="display:flex; justify-content:space-between; align-items:center; margin-bottom:4px;">
  2074. <div style="display:flex; align-items:center; gap:6px;">
  2075. <span style="font-size:0.72rem; font-weight:700; color:#D4A574;">匿名</span>
  2076. </div>
  2077. <div style="display:flex; align-items:center; gap:8px;">
  2078. <span class="text-mono text-xs" style="color:#D4A574;">♡ 0</span>
  2079. <span style="padding:1px 6px; background:#D4A57415; color:#D4A574; border-radius:2px; font-size:0.65rem;">藤茶</span>
  2080. </div>
  2081. </div>
  2082. <div style="font-size:0.78rem; color:var(--text-1); line-height:1.5;">无意间看到,随便买的,没想到真的还不错。
  2083. [星R]滋味喝完回味特别甘甜。
  2084. [星R]香气 打开包装就有股清香,泡出来也是淡淡香味。
  2085. [星R]色泽 我泡得比较淡,颜色就是浅金色。
  2086. [中深肤色R]包装 包装的封口给个赞,真的好难拉开[笑哭R]密封性应该挺好的</div>
  2087. </div>
  2088. <div style="padding:10px 12px; background:var(--bg-2); border-left:3px solid #D4A574; border-radius:4px; margin-bottom:8px;">
  2089. <div style="display:flex; justify-content:space-between; align-items:center; margin-bottom:4px;">
  2090. <div style="display:flex; align-items:center; gap:6px;">
  2091. <span style="font-size:0.72rem; font-weight:700; color:#D4A574;">匿名</span>
  2092. </div>
  2093. <div style="display:flex; align-items:center; gap:8px;">
  2094. <span class="text-mono text-xs" style="color:#D4A574;">♡ 0</span>
  2095. <span style="padding:1px 6px; background:#D4A57415; color:#D4A574; border-radius:2px; font-size:0.65rem;">swisse护肝片</span>
  2096. </div>
  2097. </div>
  2098. <div style="font-size:0.78rem; color:var(--text-1); line-height:1.5;">京东买的新包装,扫码也可以扫出来就是,但这个LOGO的印刷效果总感觉哪里不对劲,考虑要不要退货[笑哭R]</div>
  2099. </div>
  2100. <div style="padding:10px 12px; background:var(--bg-2); border-left:3px solid #D4A574; border-radius:4px; margin-bottom:8px;">
  2101. <div style="display:flex; justify-content:space-between; align-items:center; margin-bottom:4px;">
  2102. <div style="display:flex; align-items:center; gap:6px;">
  2103. <span style="font-size:0.72rem; font-weight:700; color:#D4A574;">杜美芽</span>
  2104. <span class="text-mono text-xs" style="color:var(--text-3);">📍浙江</span>
  2105. </div>
  2106. <div style="display:flex; align-items:center; gap:8px;">
  2107. <span class="text-mono text-xs" style="color:#D4A574;">♡ 0</span>
  2108. <span style="padding:1px 6px; background:#D4A57415; color:#D4A574; border-radius:2px; font-size:0.65rem;">护肝片 包装</span>
  2109. </div>
  2110. </div>
  2111. <div style="font-size:0.78rem; color:var(--text-1); line-height:1.5;">左边老包装,右边新包,现在官网卖的都是右边新包装了,价格贵点</div>
  2112. </div>
  2113. <div style="padding:10px 12px; background:var(--bg-2); border-left:3px solid #D4A574; border-radius:4px; margin-bottom:8px;">
  2114. <div style="display:flex; justify-content:space-between; align-items:center; margin-bottom:4px;">
  2115. <div style="display:flex; align-items:center; gap:6px;">
  2116. <span style="font-size:0.72rem; font-weight:700; color:#D4A574;">小毛驴</span>
  2117. </div>
  2118. <div style="display:flex; align-items:center; gap:8px;">
  2119. <span class="text-mono text-xs" style="color:#D4A574;">♡ 0</span>
  2120. <span style="padding:1px 6px; background:#D4A57415; color:#D4A574; border-radius:2px; font-size:0.65rem;">保健品 送礼装</span>
  2121. </div>
  2122. </div>
  2123. <div style="font-size:0.78rem; color:var(--text-1); line-height:1.5;">我山姆app买的为啥没有礼盒,而且盒子不是密封的,也没有什么小玩意把口粘一下,这对吗?</div>
  2124. </div>
  2125. </div>
  2126. </div>
  2127. <!-- 决策建议 -->
  2128. <div class="fade-up" style="background:linear-gradient(135deg, #D4A57410, #FF4D8D08); border:1px solid #D4A57444; border-radius:var(--radius-md); padding:24px;">
  2129. <div class="text-mono text-xs" style="color:#D4A574; letter-spacing:0.15em; margin-bottom:14px;">ACTION · 诊断结论 · P0 痛点</div>
  2130. <div style="display:grid; grid-template-columns:repeat(3, 1fr); gap:16px;">
  2131. <div style="padding:14px; background:#FF4D8D08; border-left:3px solid #FF4D8D; border-radius:4px;">
  2132. <div style="font-size:1.1rem; font-weight:800; color:var(--text-1); margin-bottom:6px;">🩹 痛点确诊</div>
  2133. <div style="font-size:0.82rem; color:var(--text-2); line-height:1.5;">现包装"土/药品感"问题在 VOC 中被反复吐槽,<strong style="color:#FF4D8D;">0</strong> 条负面评论印证</div>
  2134. </div>
  2135. <div style="padding:14px; background:#D4A57408; border-left:3px solid #D4A574; border-radius:4px;">
  2136. <div style="font-size:1.1rem; font-weight:800; color:var(--text-1); margin-bottom:6px;">🎯 目标方向</div>
  2137. <div style="font-size:0.82rem; color:var(--text-2); line-height:1.5;">Swisse 风+中式草本融合,<strong style="color:#D4A574;">0</strong> 条评论明确提及 Swisse 对标</div>
  2138. </div>
  2139. <div style="padding:14px; background:#2D9C5D08; border-left:3px solid #2D9C5D; border-radius:4px;">
  2140. <div style="font-size:1.1rem; font-weight:800; color:var(--text-1); margin-bottom:6px;">📦 落地优先级</div>
  2141. <div style="font-size:0.82rem; color:var(--text-2); line-height:1.5;">礼品场景适配度最高诉求,<strong style="color:#2D9C5D;">2</strong> 条评论涉及送礼,是包装优化首站</div>
  2142. </div>
  2143. </div>
  2144. </div>
  2145. </div>
  2146. </section>
  2147. <section class="report-section" id="package-2" data-tone="amber" data-slide-num="11">
  2148. <div class="section-inner">
  2149. <div class="section-head rise-in">
  2150. <div class="section-eyebrow" style="color:#D4A574;">2.2 · OUTER PACKAGE PREFERENCE</div>
  2151. <h2 class="text-h1"><span class="headline-anim">外包装偏好 · 3 方案 AB 对比</span></h2>
  2152. <p class="section-sub">对标 <strong style="color:#0085CA;">Swisse 风轻奢</strong> × <strong style="color:#2D9C5D;">新中式草本</strong> × <strong style="color:#D4A574;">铁盒仪式感</strong> 三路 VOC 真实反馈对比,输出渠道适配度</p>
  2153. </div>
  2154. <!-- 3 方案对比 -->
  2155. <div class="fade-up" style="display:grid; grid-template-columns:repeat(3, 1fr); gap:16px; margin-bottom:24px;">
  2156. <div style="background:var(--bg-1); border:1px solid #0085CA44; border-top:4px solid #0085CA; border-radius:var(--radius-md); padding:18px;">
  2157. <div style="display:flex; align-items:center; justify-content:space-between; margin-bottom:12px;">
  2158. <div style="display:flex; align-items:center; gap:10px;">
  2159. <div style="width:40px; height:40px; background:#0085CA22; border-radius:50%; display:flex; align-items:center; justify-content:center; font-size:1.3rem;">✨</div>
  2160. <div>
  2161. <div class="text-mono text-xs" style="color:#0085CA; letter-spacing:0.1em;">OPTION SWISSE</div>
  2162. <div style="font-size:0.98rem; font-weight:800; color:var(--text-1);">A · Swisse 风轻奢</div>
  2163. </div>
  2164. </div>
  2165. <div style="text-align:center;">
  2166. <div style="font-family:var(--font-head); font-weight:900; font-size:1.6rem; color:#0085CA; line-height:1;">72</div>
  2167. <div class="text-mono text-xs" style="color:#0085CA; letter-spacing:0.08em; margin-top:2px;">FIT/100</div>
  2168. </div>
  2169. </div>
  2170. <div style="padding:8px 10px; background:#0085CA08; border-left:3px solid #0085CA; border-radius:4px; margin-bottom:10px;">
  2171. <div class="text-mono text-xs" style="color:#0085CA; letter-spacing:0.08em; margin-bottom:3px;">🎨 视觉方向</div>
  2172. <div style="font-size:0.76rem; color:var(--text-1); line-height:1.45;">磨砂玻璃 + 草本绿/金 + 极简线条 + 配方高亮</div>
  2173. </div>
  2174. <div style="margin-bottom:8px;">
  2175. <div class="text-mono text-xs" style="color:#2D9C5D; letter-spacing:0.08em; margin-bottom:4px;">✅ 优势</div>
  2176. <ul style="margin:0; padding:0; list-style:none;">
  2177. <li style="padding:2px 0; font-size:0.72rem; color:var(--text-2); line-height:1.4; padding-left:12px; position:relative;"><span style="position:absolute; left:0; color:#2D9C5D;">✓</span>国际化高级感(VOC 反复提及)</li><li style="padding:2px 0; font-size:0.72rem; color:var(--text-2); line-height:1.4; padding-left:12px; position:relative;"><span style="position:absolute; left:0; color:#2D9C5D;">✓</span>礼品场景适配度最高</li><li style="padding:2px 0; font-size:0.72rem; color:var(--text-2); line-height:1.4; padding-left:12px; position:relative;"><span style="position:absolute; left:0; color:#2D9C5D;">✓</span>年轻女性接受度 90%+</li>
  2178. </ul>
  2179. </div>
  2180. <div style="margin-bottom:8px;">
  2181. <div class="text-mono text-xs" style="color:#FF4D8D; letter-spacing:0.08em; margin-bottom:4px;">⚠️ 风险</div>
  2182. <ul style="margin:0; padding:0; list-style:none;">
  2183. <li style="padding:2px 0; font-size:0.72rem; color:var(--text-2); line-height:1.4; padding-left:12px; position:relative;"><span style="position:absolute; left:0; color:#FF4D8D;">✗</span>中年长辈识别门槛(&quot;看不出是护肝&quot;)</li><li style="padding:2px 0; font-size:0.72rem; color:var(--text-2); line-height:1.4; padding-left:12px; position:relative;"><span style="position:absolute; left:0; color:#FF4D8D;">✗</span>生产成本 +30%</li><li style="padding:2px 0; font-size:0.72rem; color:var(--text-2); line-height:1.4; padding-left:12px; position:relative;"><span style="position:absolute; left:0; color:#FF4D8D;">✗</span>铝材需定制</li>
  2184. </ul>
  2185. </div>
  2186. <div style="margin-bottom:10px;">
  2187. <div class="text-mono text-xs" style="color:var(--text-3); letter-spacing:0.08em; margin-bottom:4px;">🛒 渠道适配</div>
  2188. <div style="padding:2px 0; font-size:0.7rem; color:var(--text-2);">▸ 礼品渠道 ★★★★★</div><div style="padding:2px 0; font-size:0.7rem; color:var(--text-2);">▸ 电商高端线 ★★★★☆</div><div style="padding:2px 0; font-size:0.7rem; color:var(--text-2);">▸ 药线 ★★☆☆☆</div>
  2189. </div>
  2190. <div style="padding-top:10px; border-top:1px dashed var(--border);">
  2191. <div class="text-mono text-xs" style="color:#0085CA; letter-spacing:0.08em; margin-bottom:6px;">💬 VOC 印证 (Top 2)</div>
  2192. <div style="padding:5px 8px; background:var(--bg-2); border-radius:3px; margin-bottom:4px;">
  2193. <div style="display:flex; justify-content:space-between; font-size:0.65rem; color:var(--text-3); margin-bottom:2px;"><span>菲菲小狗🐶</span><span>♡5</span></div>
  2194. <div style="font-size:0.7rem; color:var(--text-1); line-height:1.4; font-style:italic;">"澳洲都没有这个版本[偷笑R]"</div>
  2195. </div>
  2196. <div style="padding:5px 8px; background:var(--bg-2); border-radius:3px; margin-bottom:4px;">
  2197. <div style="display:flex; justify-content:space-between; font-size:0.65rem; color:var(--text-3); margin-bottom:2px;"><span>雪梨锦鲤</span><span>♡5</span></div>
  2198. <div style="font-size:0.7rem; color:var(--text-1); line-height:1.4; font-style:italic;">"为什么中间这款好像澳洲买不到?是专门的产品线针对中国市场的不?朋友想买我都没法买到。"</div>
  2199. </div>
  2200. </div>
  2201. </div>
  2202. <div style="background:var(--bg-1); border:1px solid #2D9C5D44; border-top:4px solid #2D9C5D; border-radius:var(--radius-md); padding:18px;">
  2203. <div style="display:flex; align-items:center; justify-content:space-between; margin-bottom:12px;">
  2204. <div style="display:flex; align-items:center; gap:10px;">
  2205. <div style="width:40px; height:40px; background:#2D9C5D22; border-radius:50%; display:flex; align-items:center; justify-content:center; font-size:1.3rem;">🌿</div>
  2206. <div>
  2207. <div class="text-mono text-xs" style="color:#2D9C5D; letter-spacing:0.1em;">OPTION CHINESE</div>
  2208. <div style="font-size:0.98rem; font-weight:800; color:var(--text-1);">B · 新中式草本</div>
  2209. </div>
  2210. </div>
  2211. <div style="text-align:center;">
  2212. <div style="font-family:var(--font-head); font-weight:900; font-size:1.6rem; color:#2D9C5D; line-height:1;">85</div>
  2213. <div class="text-mono text-xs" style="color:#2D9C5D; letter-spacing:0.08em; margin-top:2px;">FIT/100</div>
  2214. </div>
  2215. </div>
  2216. <div style="padding:8px 10px; background:#2D9C5D08; border-left:3px solid #2D9C5D; border-radius:4px; margin-bottom:10px;">
  2217. <div class="text-mono text-xs" style="color:#2D9C5D; letter-spacing:0.08em; margin-bottom:3px;">🎨 视觉方向</div>
  2218. <div style="font-size:0.76rem; color:var(--text-1); line-height:1.45;">白底 + 藤茶绿 + 水墨草本插画 + 金色点缀 + DMY 白霜视觉</div>
  2219. </div>
  2220. <div style="margin-bottom:8px;">
  2221. <div class="text-mono text-xs" style="color:#2D9C5D; letter-spacing:0.08em; margin-bottom:4px;">✅ 优势</div>
  2222. <ul style="margin:0; padding:0; list-style:none;">
  2223. <li style="padding:2px 0; font-size:0.72rem; color:var(--text-2); line-height:1.4; padding-left:12px; position:relative;"><span style="position:absolute; left:0; color:#2D9C5D;">✓</span>藤茶差异化可视化</li><li style="padding:2px 0; font-size:0.72rem; color:var(--text-2); line-height:1.4; padding-left:12px; position:relative;"><span style="position:absolute; left:0; color:#2D9C5D;">✓</span>国潮趋势(2025 涨粉 320%)</li><li style="padding:2px 0; font-size:0.72rem; color:var(--text-2); line-height:1.4; padding-left:12px; position:relative;"><span style="position:absolute; left:0; color:#2D9C5D;">✓</span>中老年 + 礼品双覆盖</li>
  2224. </ul>
  2225. </div>
  2226. <div style="margin-bottom:8px;">
  2227. <div class="text-mono text-xs" style="color:#FF4D8D; letter-spacing:0.08em; margin-bottom:4px;">⚠️ 风险</div>
  2228. <ul style="margin:0; padding:0; list-style:none;">
  2229. <li style="padding:2px 0; font-size:0.72rem; color:var(--text-2); line-height:1.4; padding-left:12px; position:relative;"><span style="position:absolute; left:0; color:#FF4D8D;">✗</span>需原创设计资产(6-8w 元)</li><li style="padding:2px 0; font-size:0.72rem; color:var(--text-2); line-height:1.4; padding-left:12px; position:relative;"><span style="position:absolute; left:0; color:#FF4D8D;">✗</span>国潮同质化加剧</li><li style="padding:2px 0; font-size:0.72rem; color:var(--text-2); line-height:1.4; padding-left:12px; position:relative;"><span style="position:absolute; left:0; color:#FF4D8D;">✗</span>需配套 DMY 科普</li>
  2230. </ul>
  2231. </div>
  2232. <div style="margin-bottom:10px;">
  2233. <div class="text-mono text-xs" style="color:var(--text-3); letter-spacing:0.08em; margin-bottom:4px;">🛒 渠道适配</div>
  2234. <div style="padding:2px 0; font-size:0.7rem; color:var(--text-2);">▸ 礼品渠道 ★★★★★</div><div style="padding:2px 0; font-size:0.7rem; color:var(--text-2);">▸ 药线 ★★★★☆</div><div style="padding:2px 0; font-size:0.7rem; color:var(--text-2);">▸ 电商 ★★★★☆</div>
  2235. </div>
  2236. <div style="padding-top:10px; border-top:1px dashed var(--border);">
  2237. <div class="text-mono text-xs" style="color:#2D9C5D; letter-spacing:0.08em; margin-bottom:6px;">💬 VOC 印证 (Top 2)</div>
  2238. <div style="padding:5px 8px; background:var(--bg-2); border-radius:3px; margin-bottom:4px;">
  2239. <div style="display:flex; justify-content:space-between; font-size:0.65rem; color:var(--text-3); margin-bottom:2px;"><span>匿名</span><span>♡3</span></div>
  2240. <div style="font-size:0.7rem; color:var(--text-1); line-height:1.4; font-style:italic;">"可以看看湘西这边的藤茶,茶户自己家种自己买,不过平时真的很难买出去,还一直被压价,我家清明茶大概130到150左右一斤,除了那种种植大户,其..."</div>
  2241. </div>
  2242. <div style="padding:5px 8px; background:var(--bg-2); border-radius:3px; margin-bottom:4px;">
  2243. <div style="display:flex; justify-content:space-between; font-size:0.65rem; color:var(--text-3); margin-bottom:2px;"><span>巴比Q</span><span>♡3</span></div>
  2244. <div style="font-size:0.7rem; color:var(--text-1); line-height:1.4; font-style:italic;">"我老爸也是买了这个品牌的,在网上买的,跟你的一模一样,那个人加他微信,给他推了好多什么养生课群,让他后期再继续买这个药,他买两次了"</div>
  2245. </div>
  2246. </div>
  2247. </div>
  2248. <div style="background:var(--bg-1); border:1px solid #D4A57444; border-top:4px solid #D4A574; border-radius:var(--radius-md); padding:18px;">
  2249. <div style="display:flex; align-items:center; justify-content:space-between; margin-bottom:12px;">
  2250. <div style="display:flex; align-items:center; gap:10px;">
  2251. <div style="width:40px; height:40px; background:#D4A57422; border-radius:50%; display:flex; align-items:center; justify-content:center; font-size:1.3rem;">🎁</div>
  2252. <div>
  2253. <div class="text-mono text-xs" style="color:#D4A574; letter-spacing:0.1em;">OPTION TIN</div>
  2254. <div style="font-size:0.98rem; font-weight:800; color:var(--text-1);">C · 铁盒 / 罐装</div>
  2255. </div>
  2256. </div>
  2257. <div style="text-align:center;">
  2258. <div style="font-family:var(--font-head); font-weight:900; font-size:1.6rem; color:#D4A574; line-height:1;">58</div>
  2259. <div class="text-mono text-xs" style="color:#D4A574; letter-spacing:0.08em; margin-top:2px;">FIT/100</div>
  2260. </div>
  2261. </div>
  2262. <div style="padding:8px 10px; background:#D4A57408; border-left:3px solid #D4A574; border-radius:4px; margin-bottom:10px;">
  2263. <div class="text-mono text-xs" style="color:#D4A574; letter-spacing:0.08em; margin-bottom:3px;">🎨 视觉方向</div>
  2264. <div style="font-size:0.76rem; color:var(--text-1); line-height:1.45;">铁盒/磨砂罐 + 藤茶纹烫印 + 仪式感开盒</div>
  2265. </div>
  2266. <div style="margin-bottom:8px;">
  2267. <div class="text-mono text-xs" style="color:#2D9C5D; letter-spacing:0.08em; margin-bottom:4px;">✅ 优势</div>
  2268. <ul style="margin:0; padding:0; list-style:none;">
  2269. <li style="padding:2px 0; font-size:0.72rem; color:var(--text-2); line-height:1.4; padding-left:12px; position:relative;"><span style="position:absolute; left:0; color:#2D9C5D;">✓</span>收藏感/仪式感(&quot;拆开像开盲盒&quot;)</li><li style="padding:2px 0; font-size:0.72rem; color:var(--text-2); line-height:1.4; padding-left:12px; position:relative;"><span style="position:absolute; left:0; color:#2D9C5D;">✓</span>礼品属性溢价空间 +40%</li><li style="padding:2px 0; font-size:0.72rem; color:var(--text-2); line-height:1.4; padding-left:12px; position:relative;"><span style="position:absolute; left:0; color:#2D9C5D;">✓</span>铁盒 DIY 再利用</li>
  2270. </ul>
  2271. </div>
  2272. <div style="margin-bottom:8px;">
  2273. <div class="text-mono text-xs" style="color:#FF4D8D; letter-spacing:0.08em; margin-bottom:4px;">⚠️ 风险</div>
  2274. <ul style="margin:0; padding:0; list-style:none;">
  2275. <li style="padding:2px 0; font-size:0.72rem; color:var(--text-2); line-height:1.4; padding-left:12px; position:relative;"><span style="position:absolute; left:0; color:#FF4D8D;">✗</span>VOC 反馈铁盒&quot;老气&quot;争议大</li><li style="padding:2px 0; font-size:0.72rem; color:var(--text-2); line-height:1.4; padding-left:12px; position:relative;"><span style="position:absolute; left:0; color:#FF4D8D;">✗</span>成本 +60%</li><li style="padding:2px 0; font-size:0.72rem; color:var(--text-2); line-height:1.4; padding-left:12px; position:relative;"><span style="position:absolute; left:0; color:#FF4D8D;">✗</span>物流易凹陷</li>
  2276. </ul>
  2277. </div>
  2278. <div style="margin-bottom:10px;">
  2279. <div class="text-mono text-xs" style="color:var(--text-3); letter-spacing:0.08em; margin-bottom:4px;">🛒 渠道适配</div>
  2280. <div style="padding:2px 0; font-size:0.7rem; color:var(--text-2);">▸ 高端礼品 ★★★★☆</div><div style="padding:2px 0; font-size:0.7rem; color:var(--text-2);">▸ 限量款/节庆 ★★★★★</div><div style="padding:2px 0; font-size:0.7rem; color:var(--text-2);">▸ 日常/药线 ★☆☆☆☆</div>
  2281. </div>
  2282. </div>
  2283. </div>
  2284. <!-- 决策矩阵 -->
  2285. <div class="fade-up" style="background:linear-gradient(135deg, #D4A57410, #2D9C5D08); border:1px solid #D4A57444; border-radius:var(--radius-md); padding:24px;">
  2286. <div class="text-mono text-xs" style="color:#D4A574; letter-spacing:0.15em; margin-bottom:14px;">DECISION · 综合推荐</div>
  2287. <div style="display:grid; grid-template-columns:2fr 1fr; gap:20px; align-items:center;">
  2288. <div>
  2289. <h3 style="margin:0 0 10px; font-size:1.3rem; color:var(--text-1);">🏆 首推:<span style="color:#2D9C5D;">B · 新中式草本</span>(FIT 85)</h3>
  2290. <div style="color:var(--text-2); font-size:0.88rem; line-height:1.7;">
  2291. 综合 3 方案 VOC 反馈、渠道适配度、成本结构:<strong style="color:#2D9C5D;">新中式草本</strong>最契合藤茶 DMY 差异化内核,在 <strong>礼品(★★★★★)+ 药线(★★★★☆)+ 电商(★★★★☆)</strong>三渠道都表现优异;建议:
  2292. <strong style="color:#0085CA;">"主方案 = B 新中式",高端限量款叠加 C 铁盒仪式感</strong>,Swisse 风 A 方案暂缓(留给未来国际化)
  2293. </div>
  2294. </div>
  2295. <div style="display:grid; gap:8px;">
  2296. <div style="padding:8px 10px; background:#2D9C5D15; border-left:3px solid #2D9C5D; border-radius:4px;">
  2297. <div style="display:flex; justify-content:space-between; align-items:baseline;">
  2298. <div style="font-size:0.82rem; font-weight:700; color:var(--text-1);">🌿 新中式草本</div>
  2299. <div style="font-family:var(--font-mono); font-size:0.78rem; color:#2D9C5D; font-weight:700;">85</div>
  2300. </div>
  2301. </div>
  2302. <div style="padding:8px 10px; background:#0085CA15; border-left:3px solid #0085CA; border-radius:4px;">
  2303. <div style="display:flex; justify-content:space-between; align-items:baseline;">
  2304. <div style="font-size:0.82rem; font-weight:700; color:var(--text-1);">✨ Swisse 风轻奢</div>
  2305. <div style="font-family:var(--font-mono); font-size:0.78rem; color:#0085CA; font-weight:700;">72</div>
  2306. </div>
  2307. </div>
  2308. <div style="padding:8px 10px; background:#D4A57415; border-left:3px solid #D4A574; border-radius:4px;">
  2309. <div style="display:flex; justify-content:space-between; align-items:baseline;">
  2310. <div style="font-size:0.82rem; font-weight:700; color:var(--text-1);">🎁 铁盒 / 罐装</div>
  2311. <div style="font-family:var(--font-mono); font-size:0.78rem; color:#D4A574; font-weight:700;">58</div>
  2312. </div>
  2313. </div>
  2314. </div>
  2315. </div>
  2316. </div>
  2317. </div>
  2318. </section>
  2319. <section class="report-section" id="package-3" data-tone="amber" data-slide-num="12">
  2320. <div class="section-inner">
  2321. <div class="section-head rise-in">
  2322. <div class="section-eyebrow" style="color:#D4A574;">2.3 · INNER PACKAGE FORMAT</div>
  2323. <h2 class="text-h1"><span class="headline-anim">内包装形态 · 3 形态 × 4 渠道矩阵</span></h2>
  2324. <p class="section-sub"><strong style="color:#0085CA;">瓶装</strong> × <strong style="color:#2D9C5D;">板装</strong> × <strong style="color:#FF8C42;">锡纸小包</strong>三形态并行 · 各自独立渠道目标,不互相蚕食</p>
  2325. </div>
  2326. <!-- 3 形态详情 -->
  2327. <div class="fade-up" style="display:grid; grid-template-columns:repeat(3, 1fr); gap:16px; margin-bottom:24px;">
  2328. <div style="background:var(--bg-1); border:1px solid #0085CA44; border-top:4px solid #0085CA; border-radius:var(--radius-md); padding:18px;">
  2329. <div style="display:flex; align-items:center; justify-content:space-between; margin-bottom:12px;">
  2330. <div style="display:flex; align-items:center; gap:10px;">
  2331. <div style="width:44px; height:44px; background:#0085CA22; border-radius:50%; display:flex; align-items:center; justify-content:center; font-size:1.5rem;">🍶</div>
  2332. <div>
  2333. <div class="text-mono text-xs" style="color:#0085CA; letter-spacing:0.1em;">FORM BOTTLE</div>
  2334. <div style="font-size:0.98rem; font-weight:800; color:var(--text-1);">瓶装 60-120 片</div>
  2335. </div>
  2336. </div>
  2337. <div style="text-align:center;">
  2338. <div style="font-family:var(--font-head); font-weight:900; font-size:1.5rem; color:#0085CA; line-height:1;">88</div>
  2339. <div class="text-mono text-xs" style="color:#0085CA; letter-spacing:0.08em; margin-top:2px;">REC/100</div>
  2340. </div>
  2341. </div>
  2342. <div style="padding:8px 10px; background:#0085CA08; border-left:3px solid #0085CA; border-radius:4px; margin-bottom:10px;">
  2343. <div class="text-mono text-xs" style="color:#0085CA; letter-spacing:0.08em; margin-bottom:3px;">✨ 核心优势</div>
  2344. <div style="font-size:0.78rem; color:var(--text-1); font-weight:600; line-height:1.45;">密封保鲜 / 仪式感 / 单价抬升空间</div>
  2345. </div>
  2346. <div style="margin-bottom:8px;">
  2347. <div class="text-mono text-xs" style="color:var(--text-3); letter-spacing:0.08em; margin-bottom:4px;">🎬 使用场景</div>
  2348. <ul style="margin:0; padding:0; list-style:none;">
  2349. <li style="padding:2px 0; font-size:0.72rem; color:var(--text-2); line-height:1.4; padding-left:12px; position:relative;"><span style="position:absolute; left:0; color:#0085CA;">▸</span>电商日常装(主力)</li><li style="padding:2px 0; font-size:0.72rem; color:var(--text-2); line-height:1.4; padding-left:12px; position:relative;"><span style="position:absolute; left:0; color:#0085CA;">▸</span>礼品单瓶入门装</li><li style="padding:2px 0; font-size:0.72rem; color:var(--text-2); line-height:1.4; padding-left:12px; position:relative;"><span style="position:absolute; left:0; color:#0085CA;">▸</span>自用家庭装</li>
  2350. </ul>
  2351. </div>
  2352. <div style="margin-bottom:10px; padding:6px 10px; background:var(--bg-2); border-radius:3px;">
  2353. <div class="text-mono text-xs" style="color:var(--text-3); letter-spacing:0.06em; margin-bottom:2px;">💰 成本</div>
  2354. <div style="font-size:0.76rem; color:#0085CA; font-weight:700;">¥2-4/瓶(磨砂 PET / 玻璃)</div>
  2355. </div>
  2356. <div style="margin-bottom:10px;">
  2357. <div class="text-mono text-xs" style="color:var(--text-3); letter-spacing:0.08em; margin-bottom:4px;">📊 渠道适配</div>
  2358. <div style="padding:2px 0; font-size:0.7rem; color:var(--text-2);">电商 ★★★★★</div><div style="padding:2px 0; font-size:0.7rem; color:var(--text-2);">礼品 ★★★★☆</div><div style="padding:2px 0; font-size:0.7rem; color:var(--text-2);">药线 ★★★☆☆</div><div style="padding:2px 0; font-size:0.7rem; color:var(--text-2);">餐饮 ★★☆☆☆</div>
  2359. </div>
  2360. <div style="padding-top:8px; border-top:1px dashed var(--border);">
  2361. <div class="text-mono text-xs" style="color:#0085CA; letter-spacing:0.08em; margin-bottom:4px;">💬 VOC (Top 2)</div>
  2362. <div style="padding:5px 8px; background:var(--bg-2); border-radius:3px; margin-bottom:4px;">
  2363. <div style="display:flex; justify-content:space-between; font-size:0.65rem; color:var(--text-3);"><span>8给糖759捣乱</span><span>♡2038</span></div>
  2364. <div style="font-size:0.7rem; color:var(--text-1); line-height:1.4; font-style:italic;">"醋真的解酒,我第一次喝酒,一瓶啤酒喝得当时好难受,看见旁边的醋碟里有一碟醋,我一口喝了,摇摇晃晃去了洗手间想躲一下,谁知道几分钟后头脑突然清..."</div>
  2365. </div>
  2366. <div style="padding:5px 8px; background:var(--bg-2); border-radius:3px; margin-bottom:4px;">
  2367. <div style="display:flex; justify-content:space-between; font-size:0.65rem; color:var(--text-3);"><span>不期而遇</span><span>♡140</span></div>
  2368. <div style="font-size:0.7rem; color:var(--text-1); line-height:1.4; font-style:italic;">"喝白酒前喝一瓶酸奶可以喝半斤白酒"</div>
  2369. </div>
  2370. </div>
  2371. </div>
  2372. <div style="background:var(--bg-1); border:1px solid #2D9C5D44; border-top:4px solid #2D9C5D; border-radius:var(--radius-md); padding:18px;">
  2373. <div style="display:flex; align-items:center; justify-content:space-between; margin-bottom:12px;">
  2374. <div style="display:flex; align-items:center; gap:10px;">
  2375. <div style="width:44px; height:44px; background:#2D9C5D22; border-radius:50%; display:flex; align-items:center; justify-content:center; font-size:1.5rem;">💊</div>
  2376. <div>
  2377. <div class="text-mono text-xs" style="color:#2D9C5D; letter-spacing:0.1em;">FORM BOARD</div>
  2378. <div style="font-size:0.98rem; font-weight:800; color:var(--text-1);">铝塑板装 12片×2板</div>
  2379. </div>
  2380. </div>
  2381. <div style="text-align:center;">
  2382. <div style="font-family:var(--font-head); font-weight:900; font-size:1.5rem; color:#2D9C5D; line-height:1;">82</div>
  2383. <div class="text-mono text-xs" style="color:#2D9C5D; letter-spacing:0.08em; margin-top:2px;">REC/100</div>
  2384. </div>
  2385. </div>
  2386. <div style="padding:8px 10px; background:#2D9C5D08; border-left:3px solid #2D9C5D; border-radius:4px; margin-bottom:10px;">
  2387. <div class="text-mono text-xs" style="color:#2D9C5D; letter-spacing:0.08em; margin-bottom:3px;">✨ 核心优势</div>
  2388. <div style="font-size:0.78rem; color:var(--text-1); font-weight:600; line-height:1.45;">药线合规准入 / 单板分食 / 成本最低</div>
  2389. </div>
  2390. <div style="margin-bottom:8px;">
  2391. <div class="text-mono text-xs" style="color:var(--text-3); letter-spacing:0.08em; margin-bottom:4px;">🎬 使用场景</div>
  2392. <ul style="margin:0; padding:0; list-style:none;">
  2393. <li style="padding:2px 0; font-size:0.72rem; color:var(--text-2); line-height:1.4; padding-left:12px; position:relative;"><span style="position:absolute; left:0; color:#2D9C5D;">▸</span>药线标准柜(必须)</li><li style="padding:2px 0; font-size:0.72rem; color:var(--text-2); line-height:1.4; padding-left:12px; position:relative;"><span style="position:absolute; left:0; color:#2D9C5D;">▸</span>医院 OTC 便民</li><li style="padding:2px 0; font-size:0.72rem; color:var(--text-2); line-height:1.4; padding-left:12px; position:relative;"><span style="position:absolute; left:0; color:#2D9C5D;">▸</span>合规陈列</li>
  2394. </ul>
  2395. </div>
  2396. <div style="margin-bottom:10px; padding:6px 10px; background:var(--bg-2); border-radius:3px;">
  2397. <div class="text-mono text-xs" style="color:var(--text-3); letter-spacing:0.06em; margin-bottom:2px;">💰 成本</div>
  2398. <div style="font-size:0.76rem; color:#2D9C5D; font-weight:700;">¥0.6-0.9/板</div>
  2399. </div>
  2400. <div style="margin-bottom:10px;">
  2401. <div class="text-mono text-xs" style="color:var(--text-3); letter-spacing:0.08em; margin-bottom:4px;">📊 渠道适配</div>
  2402. <div style="padding:2px 0; font-size:0.7rem; color:var(--text-2);">药线 ★★★★★</div><div style="padding:2px 0; font-size:0.7rem; color:var(--text-2);">餐饮便携 ★★★★☆</div><div style="padding:2px 0; font-size:0.7rem; color:var(--text-2);">电商补货装 ★★★☆☆</div><div style="padding:2px 0; font-size:0.7rem; color:var(--text-2);">礼品 ★☆☆☆☆</div>
  2403. </div>
  2404. </div>
  2405. <div style="background:var(--bg-1); border:1px solid #FF8C4244; border-top:4px solid #FF8C42; border-radius:var(--radius-md); padding:18px;">
  2406. <div style="display:flex; align-items:center; justify-content:space-between; margin-bottom:12px;">
  2407. <div style="display:flex; align-items:center; gap:10px;">
  2408. <div style="width:44px; height:44px; background:#FF8C4222; border-radius:50%; display:flex; align-items:center; justify-content:center; font-size:1.5rem;">🎒</div>
  2409. <div>
  2410. <div class="text-mono text-xs" style="color:#FF8C42; letter-spacing:0.1em;">FORM FOIL</div>
  2411. <div style="font-size:0.98rem; font-weight:800; color:var(--text-1);">锡纸独立小包 1-3片</div>
  2412. </div>
  2413. </div>
  2414. <div style="text-align:center;">
  2415. <div style="font-family:var(--font-head); font-weight:900; font-size:1.5rem; color:#FF8C42; line-height:1;">90</div>
  2416. <div class="text-mono text-xs" style="color:#FF8C42; letter-spacing:0.08em; margin-top:2px;">REC/100</div>
  2417. </div>
  2418. </div>
  2419. <div style="padding:8px 10px; background:#FF8C4208; border-left:3px solid #FF8C42; border-radius:4px; margin-bottom:10px;">
  2420. <div class="text-mono text-xs" style="color:#FF8C42; letter-spacing:0.08em; margin-bottom:3px;">✨ 核心优势</div>
  2421. <div style="font-size:0.78rem; color:var(--text-1); font-weight:600; line-height:1.45;">酒桌掏出有面子 / 单次精准服用 / 分享属性</div>
  2422. </div>
  2423. <div style="margin-bottom:8px;">
  2424. <div class="text-mono text-xs" style="color:var(--text-3); letter-spacing:0.08em; margin-bottom:4px;">🎬 使用场景</div>
  2425. <ul style="margin:0; padding:0; list-style:none;">
  2426. <li style="padding:2px 0; font-size:0.72rem; color:var(--text-2); line-height:1.4; padding-left:12px; position:relative;"><span style="position:absolute; left:0; color:#FF8C42;">▸</span>餐饮便携装(主力)</li><li style="padding:2px 0; font-size:0.72rem; color:var(--text-2); line-height:1.4; padding-left:12px; position:relative;"><span style="position:absolute; left:0; color:#FF8C42;">▸</span>酒局分食社交</li><li style="padding:2px 0; font-size:0.72rem; color:var(--text-2); line-height:1.4; padding-left:12px; position:relative;"><span style="position:absolute; left:0; color:#FF8C42;">▸</span>旅行装</li>
  2427. </ul>
  2428. </div>
  2429. <div style="margin-bottom:10px; padding:6px 10px; background:var(--bg-2); border-radius:3px;">
  2430. <div class="text-mono text-xs" style="color:var(--text-3); letter-spacing:0.06em; margin-bottom:2px;">💰 成本</div>
  2431. <div style="font-size:0.76rem; color:#FF8C42; font-weight:700;">¥0.25/小包</div>
  2432. </div>
  2433. <div style="margin-bottom:10px;">
  2434. <div class="text-mono text-xs" style="color:var(--text-3); letter-spacing:0.08em; margin-bottom:4px;">📊 渠道适配</div>
  2435. <div style="padding:2px 0; font-size:0.7rem; color:var(--text-2);">餐饮 ★★★★★</div><div style="padding:2px 0; font-size:0.7rem; color:var(--text-2);">电商次装 ★★★☆☆</div><div style="padding:2px 0; font-size:0.7rem; color:var(--text-2);">药线 ★★☆☆☆</div><div style="padding:2px 0; font-size:0.7rem; color:var(--text-2);">礼品套装配件 ★★★★☆</div>
  2436. </div>
  2437. <div style="padding-top:8px; border-top:1px dashed var(--border);">
  2438. <div class="text-mono text-xs" style="color:#FF8C42; letter-spacing:0.08em; margin-bottom:4px;">💬 VOC (Top 2)</div>
  2439. <div style="padding:5px 8px; background:var(--bg-2); border-radius:3px; margin-bottom:4px;">
  2440. <div style="display:flex; justify-content:space-between; font-size:0.65rem; color:var(--text-3);"><span>我要睡觉觉啦</span><span>♡0</span></div>
  2441. <div style="font-size:0.7rem; color:var(--text-1); line-height:1.4; font-style:italic;">"独立小包装太贴心了,出差旅行随身带,随时随地都能喝上一杯温润的藤茶,超方便。"</div>
  2442. </div>
  2443. <div style="padding:5px 8px; background:var(--bg-2); border-radius:3px; margin-bottom:4px;">
  2444. <div style="display:flex; justify-content:space-between; font-size:0.65rem; color:var(--text-3);"><span>渝MM在渝53632</span><span>♡0</span></div>
  2445. <div style="font-size:0.7rem; color:var(--text-1); line-height:1.4; font-style:italic;">"独立包装干净卫生,一次一包,不浪费也好储存,对独居党太友好了。"</div>
  2446. </div>
  2447. </div>
  2448. </div>
  2449. </div>
  2450. <!-- 吞咽体验 VOC 洞察 -->
  2451. <div class="fade-up" style="background:var(--bg-1); border:1px solid #FF4D8D44; border-left:4px solid #FF4D8D; border-radius:var(--radius-md); padding:18px; margin-bottom:20px;">
  2452. <div class="text-mono text-xs" style="color:#FF4D8D; letter-spacing:0.15em; margin-bottom:10px;">BONUS INSIGHT · 吞咽痛点(7 条相关评论)</div>
  2453. <div style="display:grid; grid-template-columns:1fr 1fr; gap:10px;">
  2454. <div style="padding:10px 12px; background:var(--bg-2); border-left:3px solid #FF4D8D; border-radius:4px; margin-bottom:8px;">
  2455. <div style="display:flex; justify-content:space-between; align-items:center; margin-bottom:4px;">
  2456. <div style="display:flex; align-items:center; gap:6px;">
  2457. <span style="font-size:0.72rem; font-weight:700; color:#FF4D8D;">金水洛冰</span>
  2458. </div>
  2459. <div style="display:flex; align-items:center; gap:8px;">
  2460. <span class="text-mono text-xs" style="color:#FF4D8D;">♡ 80</span>
  2461. <span style="padding:1px 6px; background:#FF4D8D15; color:#FF4D8D; border-radius:2px; font-size:0.65rem;">葵花护肝片</span>
  2462. </div>
  2463. </div>
  2464. <div style="font-size:0.78rem; color:var(--text-1); line-height:1.5;">我晕,这种有糖衣包裹的药你尽然说吞咽困难,又不是三岁小孩喂药[笑哭R]</div>
  2465. </div>
  2466. <div style="padding:10px 12px; background:var(--bg-2); border-left:3px solid #FF4D8D; border-radius:4px; margin-bottom:8px;">
  2467. <div style="display:flex; justify-content:space-between; align-items:center; margin-bottom:4px;">
  2468. <div style="display:flex; align-items:center; gap:6px;">
  2469. <span style="font-size:0.72rem; font-weight:700; color:#FF4D8D;">匿名</span>
  2470. </div>
  2471. <div style="display:flex; align-items:center; gap:8px;">
  2472. <span class="text-mono text-xs" style="color:#FF4D8D;">♡ 55</span>
  2473. <span style="padding:1px 6px; background:#FF4D8D15; color:#FF4D8D; border-radius:2px; font-size:0.65rem;">片仔癀护肝</span>
  2474. </div>
  2475. </div>
  2476. <div style="font-size:0.78rem; color:var(--text-1); line-height:1.5;">吞服,给它去肚子里化水吧。那个味太上头了,泡水喝的都是勇士</div>
  2477. </div>
  2478. <div style="padding:10px 12px; background:var(--bg-2); border-left:3px solid #FF4D8D; border-radius:4px; margin-bottom:8px;">
  2479. <div style="display:flex; justify-content:space-between; align-items:center; margin-bottom:4px;">
  2480. <div style="display:flex; align-items:center; gap:6px;">
  2481. <span style="font-size:0.72rem; font-weight:700; color:#FF4D8D;">居里</span>
  2482. </div>
  2483. <div style="display:flex; align-items:center; gap:8px;">
  2484. <span class="text-mono text-xs" style="color:#FF4D8D;">♡ 2</span>
  2485. <span style="padding:1px 6px; background:#FF4D8D15; color:#FF4D8D; border-radius:2px; font-size:0.65rem;">汤臣倍健 护肝</span>
  2486. </div>
  2487. </div>
  2488. <div style="font-size:0.78rem; color:var(--text-1); line-height:1.5;">这么大一片,不好吞咽</div>
  2489. </div>
  2490. <div style="padding:10px 12px; background:var(--bg-2); border-left:3px solid #FF4D8D; border-radius:4px; margin-bottom:8px;">
  2491. <div style="display:flex; justify-content:space-between; align-items:center; margin-bottom:4px;">
  2492. <div style="display:flex; align-items:center; gap:6px;">
  2493. <span style="font-size:0.72rem; font-weight:700; color:#FF4D8D;">Demi可洛迪雅(软装中)</span>
  2494. </div>
  2495. <div style="display:flex; align-items:center; gap:8px;">
  2496. <span class="text-mono text-xs" style="color:#FF4D8D;">♡ 1</span>
  2497. <span style="padding:1px 6px; background:#FF4D8D15; color:#FF4D8D; border-radius:2px; font-size:0.65rem;">熊胆粉</span>
  2498. </div>
  2499. </div>
  2500. <div style="font-size:0.78rem; color:var(--text-1); line-height:1.5;">[捂脸R][捂脸R]感觉糯米纸也得找到技巧才行 我前两天用糯米纸包着用水直接吞服都很顺利 一点没味道 今天试着含了一会想让糯米纸软一些再吞 结果纸化了 粉到我嘴里那股味儿[失望R]真的yue</div>
  2501. </div>
  2502. </div>
  2503. <div style="margin-top:10px; padding:8px 12px; background:#FF4D8D08; border-radius:4px; font-size:0.78rem; color:var(--text-1);">
  2504. <strong style="color:#FF4D8D;">结论:</strong>用户对"片剂大小/易吞咽"高度敏感 → 内包装形态决策需配合片剂微型化(2.4 子章展开)
  2505. </div>
  2506. </div>
  2507. <!-- 决策策略 -->
  2508. <div class="fade-up" style="background:linear-gradient(135deg, #D4A57410, #2D9C5D08); border:1px solid #D4A57444; border-radius:var(--radius-md); padding:20px;">
  2509. <div class="text-mono text-xs" style="color:#D4A574; letter-spacing:0.15em; margin-bottom:12px;">STRATEGY · 3 形态互补策略</div>
  2510. <div style="color:var(--text-1); font-size:0.92rem; line-height:1.7;">
  2511. <strong style="color:#D4A574;">建议:三形态全线上市</strong>,各自独立 SKU,互不蚕食:<br/>
  2512. <span style="color:#FF8C42;">🎒 锡纸小包(Rec 90)</span> → 餐饮主力,酒局社交货币,单片 ¥2.5-4 定价抬升 +100%;<br/>
  2513. <span style="color:#0085CA;">🍶 瓶装(Rec 88)</span> → 电商 + 礼品主力,60/120 片分规格;<br/>
  2514. <span style="color:#2D9C5D;">💊 板装(Rec 82)</span> → 药线必需品 + 餐饮便携补充线。
  2515. </div>
  2516. </div>
  2517. </div>
  2518. </section>
  2519. <section class="report-section" id="package-4" data-tone="amber" data-slide-num="13">
  2520. <div class="section-inner">
  2521. <div class="section-head rise-in">
  2522. <div class="section-eyebrow" style="color:#D4A574;">2.4 · TABLET APPEARANCE</div>
  2523. <h2 class="text-h1"><span class="headline-anim">片剂外观 · 形状 × 纹理 × 颜色 × 口感</span></h2>
  2524. <p class="section-sub">剂型(片剂)不可变,但 <strong style="color:#D4A574;">外观 4 维可全面优化</strong> · 直接回应 VOC 吞咽/口感/精致诉求</p>
  2525. </div>
  2526. <!-- 4 维优化卡片 -->
  2527. <div class="fade-up" style="display:grid; grid-template-columns:repeat(4, 1fr); gap:14px; margin-bottom:24px;">
  2528. <div style="background:var(--bg-1); border:1px solid #8B5CF644; border-top:4px solid #8B5CF6; border-radius:var(--radius-md); padding:16px;">
  2529. <div style="display:flex; align-items:center; justify-content:space-between; margin-bottom:10px;">
  2530. <div style="width:40px; height:40px; background:#8B5CF622; border-radius:50%; display:flex; align-items:center; justify-content:center; font-size:1.3rem;">🔷</div>
  2531. <div style="padding:2px 7px; background:#FF4D8D22; color:#FF4D8D; border-radius:3px; font-family:var(--font-mono); font-size:0.68rem; font-weight:700;">P0</div>
  2532. </div>
  2533. <div style="font-size:1rem; font-weight:800; color:var(--text-1); margin-bottom:8px;">形状优化</div>
  2534. <div style="padding:6px 10px; background:var(--bg-2); border-radius:3px; margin-bottom:8px;">
  2535. <div class="text-mono text-xs" style="color:var(--text-3); letter-spacing:0.06em; margin-bottom:2px;">现状</div>
  2536. <div style="font-size:0.74rem; color:var(--text-2);">圆形标准(9mm)</div>
  2537. </div>
  2538. <div style="margin-bottom:8px;">
  2539. <div class="text-mono text-xs" style="color:#8B5CF6; letter-spacing:0.08em; margin-bottom:4px;">🔧 候选方案</div>
  2540. <ul style="margin:0; padding:0; list-style:none;">
  2541. <li style="padding:3px 0; font-size:0.7rem; color:var(--text-2); line-height:1.4; padding-left:12px; position:relative;"><span style="position:absolute; left:0; color:#8B5CF6;">▸</span>椭圆形(易吞咽,宽度 -20%)</li><li style="padding:3px 0; font-size:0.7rem; color:var(--text-2); line-height:1.4; padding-left:12px; position:relative;"><span style="position:absolute; left:0; color:#8B5CF6;">▸</span>异形三角(记忆点强)</li><li style="padding:3px 0; font-size:0.7rem; color:var(--text-2); line-height:1.4; padding-left:12px; position:relative;"><span style="position:absolute; left:0; color:#8B5CF6;">▸</span>菱形(女性市场偏好)</li>
  2542. </ul>
  2543. </div>
  2544. <div style="padding-top:8px; border-top:1px dashed var(--border); display:flex; justify-content:space-between; align-items:center;">
  2545. <div class="text-mono text-xs" style="color:#8B5CF6;">💬 吞咽痛点</div>
  2546. <div style="font-family:var(--font-mono); font-size:0.78rem; color:#8B5CF6; font-weight:700;">8 条</div>
  2547. </div>
  2548. </div>
  2549. <div style="background:var(--bg-1); border:1px solid #0085CA44; border-top:4px solid #0085CA; border-radius:var(--radius-md); padding:16px;">
  2550. <div style="display:flex; align-items:center; justify-content:space-between; margin-bottom:10px;">
  2551. <div style="width:40px; height:40px; background:#0085CA22; border-radius:50%; display:flex; align-items:center; justify-content:center; font-size:1.3rem;">🎨</div>
  2552. <div style="padding:2px 7px; background:#FF8C4222; color:#FF8C42; border-radius:3px; font-family:var(--font-mono); font-size:0.68rem; font-weight:700;">P1</div>
  2553. </div>
  2554. <div style="font-size:1rem; font-weight:800; color:var(--text-1); margin-bottom:8px;">表面纹理</div>
  2555. <div style="padding:6px 10px; background:var(--bg-2); border-radius:3px; margin-bottom:8px;">
  2556. <div class="text-mono text-xs" style="color:var(--text-3); letter-spacing:0.06em; margin-bottom:2px;">现状</div>
  2557. <div style="font-size:0.74rem; color:var(--text-2);">光面无图案</div>
  2558. </div>
  2559. <div style="margin-bottom:8px;">
  2560. <div class="text-mono text-xs" style="color:#0085CA; letter-spacing:0.08em; margin-bottom:4px;">🔧 候选方案</div>
  2561. <ul style="margin:0; padding:0; list-style:none;">
  2562. <li style="padding:3px 0; font-size:0.7rem; color:var(--text-2); line-height:1.4; padding-left:12px; position:relative;"><span style="position:absolute; left:0; color:#0085CA;">▸</span>藤茶叶脉纹(品牌识别)</li><li style="padding:3px 0; font-size:0.7rem; color:var(--text-2); line-height:1.4; padding-left:12px; position:relative;"><span style="position:absolute; left:0; color:#0085CA;">▸</span>江中 LOGO 烫印</li><li style="padding:3px 0; font-size:0.7rem; color:var(--text-2); line-height:1.4; padding-left:12px; position:relative;"><span style="position:absolute; left:0; color:#0085CA;">▸</span>DMY 分子结构图(科技感)</li>
  2563. </ul>
  2564. </div>
  2565. <div style="padding-top:8px; border-top:1px dashed var(--border); display:flex; justify-content:space-between; align-items:center;">
  2566. <div class="text-mono text-xs" style="color:#0085CA;">💬 精致诉求</div>
  2567. <div style="font-family:var(--font-mono); font-size:0.78rem; color:#0085CA; font-weight:700;">6 条</div>
  2568. </div>
  2569. </div>
  2570. <div style="background:var(--bg-1); border:1px solid #2D9C5D44; border-top:4px solid #2D9C5D; border-radius:var(--radius-md); padding:16px;">
  2571. <div style="display:flex; align-items:center; justify-content:space-between; margin-bottom:10px;">
  2572. <div style="width:40px; height:40px; background:#2D9C5D22; border-radius:50%; display:flex; align-items:center; justify-content:center; font-size:1.3rem;">🌈</div>
  2573. <div style="padding:2px 7px; background:#FF8C4222; color:#FF8C42; border-radius:3px; font-family:var(--font-mono); font-size:0.68rem; font-weight:700;">P1</div>
  2574. </div>
  2575. <div style="font-size:1rem; font-weight:800; color:var(--text-1); margin-bottom:8px;">颜色方案</div>
  2576. <div style="padding:6px 10px; background:var(--bg-2); border-radius:3px; margin-bottom:8px;">
  2577. <div class="text-mono text-xs" style="color:var(--text-3); letter-spacing:0.06em; margin-bottom:2px;">现状</div>
  2578. <div style="font-size:0.74rem; color:var(--text-2);">白色 / 米黄色</div>
  2579. </div>
  2580. <div style="margin-bottom:8px;">
  2581. <div class="text-mono text-xs" style="color:#2D9C5D; letter-spacing:0.08em; margin-bottom:4px;">🔧 候选方案</div>
  2582. <ul style="margin:0; padding:0; list-style:none;">
  2583. <li style="padding:3px 0; font-size:0.7rem; color:var(--text-2); line-height:1.4; padding-left:12px; position:relative;"><span style="position:absolute; left:0; color:#2D9C5D;">▸</span>藤茶绿(2.4.3 色彩系统承接)</li><li style="padding:3px 0; font-size:0.7rem; color:var(--text-2); line-height:1.4; padding-left:12px; position:relative;"><span style="position:absolute; left:0; color:#2D9C5D;">▸</span>琥珀金(高端礼品线)</li><li style="padding:3px 0; font-size:0.7rem; color:var(--text-2); line-height:1.4; padding-left:12px; position:relative;"><span style="position:absolute; left:0; color:#2D9C5D;">▸</span>白底金点(DMY 白霜视觉化)</li>
  2584. </ul>
  2585. </div>
  2586. <div style="padding-top:8px; border-top:1px dashed var(--border); display:flex; justify-content:space-between; align-items:center;">
  2587. <div class="text-mono text-xs" style="color:#2D9C5D;">💬 视觉识别</div>
  2588. <div style="font-family:var(--font-mono); font-size:0.78rem; color:#2D9C5D; font-weight:700;">15 条</div>
  2589. </div>
  2590. </div>
  2591. <div style="background:var(--bg-1); border:1px solid #FF8C4244; border-top:4px solid #FF8C42; border-radius:var(--radius-md); padding:16px;">
  2592. <div style="display:flex; align-items:center; justify-content:space-between; margin-bottom:10px;">
  2593. <div style="width:40px; height:40px; background:#FF8C4222; border-radius:50%; display:flex; align-items:center; justify-content:center; font-size:1.3rem;">🍬</div>
  2594. <div style="padding:2px 7px; background:#FF4D8D22; color:#FF4D8D; border-radius:3px; font-family:var(--font-mono); font-size:0.68rem; font-weight:700;">P0</div>
  2595. </div>
  2596. <div style="font-size:1rem; font-weight:800; color:var(--text-1); margin-bottom:8px;">口感 / 包衣</div>
  2597. <div style="padding:6px 10px; background:var(--bg-2); border-radius:3px; margin-bottom:8px;">
  2598. <div class="text-mono text-xs" style="color:var(--text-3); letter-spacing:0.06em; margin-bottom:2px;">现状</div>
  2599. <div style="font-size:0.74rem; color:var(--text-2);">无包衣(可能苦涩)</div>
  2600. </div>
  2601. <div style="margin-bottom:8px;">
  2602. <div class="text-mono text-xs" style="color:#FF8C42; letter-spacing:0.08em; margin-bottom:4px;">🔧 候选方案</div>
  2603. <ul style="margin:0; padding:0; list-style:none;">
  2604. <li style="padding:3px 0; font-size:0.7rem; color:var(--text-2); line-height:1.4; padding-left:12px; position:relative;"><span style="position:absolute; left:0; color:#FF8C42;">▸</span>薄膜包衣(无味,易吞)</li><li style="padding:3px 0; font-size:0.7rem; color:var(--text-2); line-height:1.4; padding-left:12px; position:relative;"><span style="position:absolute; left:0; color:#FF8C42;">▸</span>轻微甜橙味包衣(女性/场景)</li><li style="padding:3px 0; font-size:0.7rem; color:var(--text-2); line-height:1.4; padding-left:12px; position:relative;"><span style="position:absolute; left:0; color:#FF8C42;">▸</span>透明亮膜(显 DMY 白霜)</li>
  2605. </ul>
  2606. </div>
  2607. <div style="padding-top:8px; border-top:1px dashed var(--border); display:flex; justify-content:space-between; align-items:center;">
  2608. <div class="text-mono text-xs" style="color:#FF8C42;">💬 口感痛点</div>
  2609. <div style="font-family:var(--font-mono); font-size:0.78rem; color:#FF8C42; font-weight:700;">8 条</div>
  2610. </div>
  2611. </div>
  2612. </div>
  2613. <!-- 吞咽 + 口感 VOC 双列 -->
  2614. <div class="fade-up" style="display:grid; grid-template-columns:1fr 1fr; gap:16px; margin-bottom:24px;">
  2615. <div style="background:var(--bg-1); border:1px solid #8B5CF644; border-left:3px solid #8B5CF6; border-radius:var(--radius-md); padding:18px;">
  2616. <div class="text-mono text-xs" style="color:#8B5CF6; letter-spacing:0.15em; margin-bottom:10px;">😰 吞咽痛点 · Top 3</div>
  2617. <div style="padding:10px 12px; background:var(--bg-2); border-left:3px solid #8B5CF6; border-radius:4px; margin-bottom:8px;">
  2618. <div style="display:flex; justify-content:space-between; align-items:center; margin-bottom:4px;">
  2619. <div style="display:flex; align-items:center; gap:6px;">
  2620. <span style="font-size:0.72rem; font-weight:700; color:#8B5CF6;">金水洛冰</span>
  2621. </div>
  2622. <div style="display:flex; align-items:center; gap:8px;">
  2623. <span class="text-mono text-xs" style="color:#8B5CF6;">♡ 80</span>
  2624. <span style="padding:1px 6px; background:#8B5CF615; color:#8B5CF6; border-radius:2px; font-size:0.65rem;">葵花护肝片</span>
  2625. </div>
  2626. </div>
  2627. <div style="font-size:0.78rem; color:var(--text-1); line-height:1.5;">我晕,这种有糖衣包裹的药你尽然说吞咽困难,又不是三岁小孩喂药[笑哭R]</div>
  2628. </div>
  2629. <div style="padding:10px 12px; background:var(--bg-2); border-left:3px solid #8B5CF6; border-radius:4px; margin-bottom:8px;">
  2630. <div style="display:flex; justify-content:space-between; align-items:center; margin-bottom:4px;">
  2631. <div style="display:flex; align-items:center; gap:6px;">
  2632. <span style="font-size:0.72rem; font-weight:700; color:#8B5CF6;">匿名</span>
  2633. </div>
  2634. <div style="display:flex; align-items:center; gap:8px;">
  2635. <span class="text-mono text-xs" style="color:#8B5CF6;">♡ 55</span>
  2636. <span style="padding:1px 6px; background:#8B5CF615; color:#8B5CF6; border-radius:2px; font-size:0.65rem;">片仔癀护肝</span>
  2637. </div>
  2638. </div>
  2639. <div style="font-size:0.78rem; color:var(--text-1); line-height:1.5;">吞服,给它去肚子里化水吧。那个味太上头了,泡水喝的都是勇士</div>
  2640. </div>
  2641. <div style="padding:10px 12px; background:var(--bg-2); border-left:3px solid #8B5CF6; border-radius:4px; margin-bottom:8px;">
  2642. <div style="display:flex; justify-content:space-between; align-items:center; margin-bottom:4px;">
  2643. <div style="display:flex; align-items:center; gap:6px;">
  2644. <span style="font-size:0.72rem; font-weight:700; color:#8B5CF6;">匿名</span>
  2645. </div>
  2646. <div style="display:flex; align-items:center; gap:8px;">
  2647. <span class="text-mono text-xs" style="color:#8B5CF6;">♡ 11</span>
  2648. <span style="padding:1px 6px; background:#8B5CF615; color:#8B5CF6; border-radius:2px; font-size:0.65rem;">swisse护肝片</span>
  2649. </div>
  2650. </div>
  2651. <div style="font-size:0.78rem; color:var(--text-1); line-height:1.5;">护肝片大部分都是对损伤的肝有保护作用,水飞蓟也需要肝去代谢,护肝片还是少搞,医生开的还好,尽量别自己乱买</div>
  2652. </div>
  2653. </div>
  2654. <div style="background:var(--bg-1); border:1px solid #FF8C4244; border-left:3px solid #FF8C42; border-radius:var(--radius-md); padding:18px;">
  2655. <div class="text-mono text-xs" style="color:#FF8C42; letter-spacing:0.15em; margin-bottom:10px;">😷 口感痛点 · Top 3</div>
  2656. <div style="padding:10px 12px; background:var(--bg-2); border-left:3px solid #FF8C42; border-radius:4px; margin-bottom:8px;">
  2657. <div style="display:flex; justify-content:space-between; align-items:center; margin-bottom:4px;">
  2658. <div style="display:flex; align-items:center; gap:6px;">
  2659. <span style="font-size:0.72rem; font-weight:700; color:#FF8C42;">Rainy</span>
  2660. </div>
  2661. <div style="display:flex; align-items:center; gap:8px;">
  2662. <span class="text-mono text-xs" style="color:#FF8C42;">♡ 27</span>
  2663. <span style="padding:1px 6px; background:#FF8C4215; color:#FF8C42; border-radius:2px; font-size:0.65rem;">熊胆粉</span>
  2664. </div>
  2665. </div>
  2666. <div style="font-size:0.78rem; color:var(--text-1); line-height:1.5;">今天喝了一次温水的熊胆粉,比我的命还苦</div>
  2667. </div>
  2668. <div style="padding:10px 12px; background:var(--bg-2); border-left:3px solid #FF8C42; border-radius:4px; margin-bottom:8px;">
  2669. <div style="display:flex; justify-content:space-between; align-items:center; margin-bottom:4px;">
  2670. <div style="display:flex; align-items:center; gap:6px;">
  2671. <span style="font-size:0.72rem; font-weight:700; color:#FF8C42;">后来</span>
  2672. <span class="text-mono text-xs" style="color:var(--text-3);">📍山东</span>
  2673. </div>
  2674. <div style="display:flex; align-items:center; gap:8px;">
  2675. <span class="text-mono text-xs" style="color:#FF8C42;">♡ 18</span>
  2676. <span style="padding:1px 6px; background:#FF8C4215; color:#FF8C42; border-radius:2px; font-size:0.65rem;">肝纯片 (抖音)</span>
  2677. </div>
  2678. </div>
  2679. <div style="font-size:0.78rem; color:var(--text-1); line-height:1.5;">我嘴臭嘴苦尿黄出虚汗肚子大。经常放屁我去药店买护肝片。店员推荐的999护肝片。说吃很久。我买了两瓶[捂脸]</div>
  2680. </div>
  2681. <div style="padding:10px 12px; background:var(--bg-2); border-left:3px solid #FF8C42; border-radius:4px; margin-bottom:8px;">
  2682. <div style="display:flex; justify-content:space-between; align-items:center; margin-bottom:4px;">
  2683. <div style="display:flex; align-items:center; gap:6px;">
  2684. <span style="font-size:0.72rem; font-weight:700; color:#FF8C42;">匿名</span>
  2685. </div>
  2686. <div style="display:flex; align-items:center; gap:8px;">
  2687. <span class="text-mono text-xs" style="color:#FF8C42;">♡ 16</span>
  2688. <span style="padding:1px 6px; background:#FF8C4215; color:#FF8C42; border-radius:2px; font-size:0.65rem;">熬夜护肝</span>
  2689. </div>
  2690. </div>
  2691. <div style="font-size:0.78rem; color:var(--text-1); line-height:1.5;">为啥我煮出来的前苦后甜[捂脸R]正常吗</div>
  2692. </div>
  2693. </div>
  2694. </div>
  2695. <!-- 决策建议 -->
  2696. <div class="fade-up" style="background:linear-gradient(135deg, #D4A57410, #8B5CF608); border:1px solid #D4A57444; border-radius:var(--radius-md); padding:20px;">
  2697. <div class="text-mono text-xs" style="color:#D4A574; letter-spacing:0.15em; margin-bottom:12px;">RECOMMENDATION · 片剂优化路径</div>
  2698. <div style="display:grid; grid-template-columns:repeat(2, 1fr); gap:14px;">
  2699. <div style="padding:12px; background:#FF4D8D08; border-left:3px solid #FF4D8D; border-radius:4px;">
  2700. <div style="font-size:0.95rem; font-weight:800; color:var(--text-1); margin-bottom:6px;">🚀 P0 立即优化</div>
  2701. <ul style="margin:0; padding:0; list-style:none; color:var(--text-2); font-size:0.78rem; line-height:1.6;">
  2702. <li style="padding:3px 0;"><strong style="color:#FF4D8D;">椭圆小片型</strong>:宽度 6-7mm,直击吞咽痛点</li>
  2703. <li style="padding:3px 0;"><strong style="color:#FF4D8D;">薄膜包衣</strong>:掩盖藤茶苦涩,提升长期复购</li>
  2704. </ul>
  2705. </div>
  2706. <div style="padding:12px; background:#D4A57408; border-left:3px solid #D4A574; border-radius:4px;">
  2707. <div style="font-size:0.95rem; font-weight:800; color:var(--text-1); margin-bottom:6px;">✨ P1 差异化溢价</div>
  2708. <ul style="margin:0; padding:0; list-style:none; color:var(--text-2); font-size:0.78rem; line-height:1.6;">
  2709. <li style="padding:3px 0;"><strong style="color:#D4A574;">藤茶叶脉纹烫印</strong>:一眼认出江中肝纯</li>
  2710. <li style="padding:3px 0;"><strong style="color:#D4A574;">白底金点</strong>:DMY 白霜视觉化</li>
  2711. </ul>
  2712. </div>
  2713. </div>
  2714. </div>
  2715. </div>
  2716. </section>
  2717. <section class="report-section" id="package-5" data-tone="amber" data-slide-num="14">
  2718. <div class="section-inner">
  2719. <div class="section-head rise-in">
  2720. <div class="section-eyebrow" style="color:#D4A574;">2.5 · SKU MATRIX</div>
  2721. <h2 class="text-h1"><span class="headline-anim">礼品规格 × SKU 矩阵 · 4 渠道 × 3 规格 = 12 SKU</span></h2>
  2722. <p class="section-sub">从 VOC 送礼偏好 + 定价区间反推,规划 <strong style="color:#D4A574;">12 个 SKU</strong>精准覆盖 4 渠道 × 3 消费场景 · 互不蚕食 · 支撑 10 亿结构</p>
  2723. </div>
  2724. <!-- SKU 矩阵 -->
  2725. <div class="fade-up" style="background:var(--bg-1); border:1px solid var(--border); border-radius:var(--radius-md); padding:24px; margin-bottom:24px;">
  2726. <div class="text-mono text-xs" style="color:#D4A574; letter-spacing:0.15em; margin-bottom:16px;">SKU MATRIX · 12 SKU 全景</div>
  2727. <table style="width:100%; border-collapse:collapse; font-size:0.78rem;">
  2728. <thead>
  2729. <tr style="background:#D4A57412;">
  2730. <th style="padding:10px; text-align:left; border:1px solid #D4A57433; color:#D4A574; font-weight:700; width:12%;">渠道</th>
  2731. <th style="padding:10px; text-align:left; border:1px solid #D4A57433; color:#D4A574; font-weight:700;">🟢 入门装(12-30 片)</th><th style="padding:10px; text-align:left; border:1px solid #D4A57433; color:#D4A574; font-weight:700;">🟡 日常装(60 片)</th><th style="padding:10px; text-align:left; border:1px solid #D4A57433; color:#D4A574; font-weight:700;">🔴 高端装(120 片 / 双瓶礼盒)</th>
  2732. </tr>
  2733. </thead>
  2734. <tbody>
  2735. <tr>
  2736. <td style="padding:14px 12px; border:1px solid var(--border); background:var(--bg-2); vertical-align:top;">
  2737. <div style="display:flex; align-items:center; gap:8px;"><div style="font-size:1.4rem;">🏥</div><div style="font-size:0.92rem; font-weight:800; color:#0085CA;">药线</div></div>
  2738. </td>
  2739. <td style="padding:10px; border:1px solid var(--border); vertical-align:top;">
  2740. <div class="text-mono text-xs" style="color:#0085CA; letter-spacing:0.08em; font-weight:700; margin-bottom:3px;">JZ-L-M12</div>
  2741. <div style="font-size:0.78rem; font-weight:700; color:var(--text-1); margin-bottom:4px; line-height:1.35;">铝塑板 12片×2板</div>
  2742. <div style="font-size:0.74rem; color:#0085CA; font-weight:700; margin-bottom:4px;">💰 ¥25-40</div>
  2743. <div style="font-size:0.68rem; color:var(--text-3); line-height:1.4;">初诊试用 / 医生首次推荐</div>
  2744. </td>
  2745. <td style="padding:10px; border:1px solid var(--border); vertical-align:top;">
  2746. <div class="text-mono text-xs" style="color:#0085CA; letter-spacing:0.08em; font-weight:700; margin-bottom:3px;">JZ-L-M60</div>
  2747. <div style="font-size:0.78rem; font-weight:700; color:var(--text-1); margin-bottom:4px; line-height:1.35;">瓶装 60片 标准蓝绿</div>
  2748. <div style="font-size:0.74rem; color:#0085CA; font-weight:700; margin-bottom:4px;">💰 ¥89-119</div>
  2749. <div style="font-size:0.68rem; color:var(--text-3); line-height:1.4;">长期养护 / 药师推荐</div>
  2750. </td>
  2751. <td style="padding:10px; border:1px solid var(--border); vertical-align:top;">
  2752. <div class="text-mono text-xs" style="color:#0085CA; letter-spacing:0.08em; font-weight:700; margin-bottom:3px;">JZ-L-M120</div>
  2753. <div style="font-size:0.78rem; font-weight:700; color:var(--text-1); margin-bottom:4px; line-height:1.35;">瓶装 120片 尊享白</div>
  2754. <div style="font-size:0.74rem; color:#0085CA; font-weight:700; margin-bottom:4px;">💰 ¥189-239</div>
  2755. <div style="font-size:0.68rem; color:var(--text-3); line-height:1.4;">老病人 / 家庭囤装</div>
  2756. </td>
  2757. </tr>
  2758. <tr>
  2759. <td style="padding:14px 12px; border:1px solid var(--border); background:var(--bg-2); vertical-align:top;">
  2760. <div style="display:flex; align-items:center; gap:8px;"><div style="font-size:1.4rem;">🎁</div><div style="font-size:0.92rem; font-weight:800; color:#D4A574;">礼品</div></div>
  2761. </td>
  2762. <td style="padding:10px; border:1px solid var(--border); vertical-align:top;">
  2763. <div class="text-mono text-xs" style="color:#D4A574; letter-spacing:0.08em; font-weight:700; margin-bottom:3px;">JZ-L-G60S</div>
  2764. <div style="font-size:0.78rem; font-weight:700; color:var(--text-1); margin-bottom:4px; line-height:1.35;">单瓶礼盒 60片 + 手提袋</div>
  2765. <div style="font-size:0.74rem; color:#D4A574; font-weight:700; margin-bottom:4px;">💰 ¥158-198</div>
  2766. <div style="font-size:0.68rem; color:var(--text-3); line-height:1.4;">轻量送礼 / 节日快礼</div>
  2767. </td>
  2768. <td style="padding:10px; border:1px solid var(--border); vertical-align:top;">
  2769. <div class="text-mono text-xs" style="color:#D4A574; letter-spacing:0.08em; font-weight:700; margin-bottom:3px;">JZ-L-G120D</div>
  2770. <div style="font-size:0.78rem; font-weight:700; color:var(--text-1); margin-bottom:4px; line-height:1.35;">双瓶礼盒 60×2 磨砂+金</div>
  2771. <div style="font-size:0.74rem; color:#D4A574; font-weight:700; margin-bottom:4px;">💰 ¥298-398</div>
  2772. <div style="font-size:0.68rem; color:var(--text-3); line-height:1.4;">商务送礼 / 长辈尽孝</div>
  2773. </td>
  2774. <td style="padding:10px; border:1px solid var(--border); vertical-align:top;">
  2775. <div class="text-mono text-xs" style="color:#D4A574; letter-spacing:0.08em; font-weight:700; margin-bottom:3px;">JZ-L-G240Q</div>
  2776. <div style="font-size:0.78rem; font-weight:700; color:var(--text-1); margin-bottom:4px; line-height:1.35;">四瓶豪华礼盒 + 铁盒</div>
  2777. <div style="font-size:0.74rem; color:#D4A574; font-weight:700; margin-bottom:4px;">💰 ¥598-898</div>
  2778. <div style="font-size:0.68rem; color:var(--text-3); line-height:1.4;">重要客户 / 年节大礼</div>
  2779. </td>
  2780. </tr>
  2781. <tr>
  2782. <td style="padding:14px 12px; border:1px solid var(--border); background:var(--bg-2); vertical-align:top;">
  2783. <div style="display:flex; align-items:center; gap:8px;"><div style="font-size:1.4rem;">🍷</div><div style="font-size:0.92rem; font-weight:800; color:#FF8C42;">餐饮</div></div>
  2784. </td>
  2785. <td style="padding:10px; border:1px solid var(--border); vertical-align:top;">
  2786. <div class="text-mono text-xs" style="color:#FF8C42; letter-spacing:0.08em; font-weight:700; margin-bottom:3px;">JZ-L-D3</div>
  2787. <div style="font-size:0.78rem; font-weight:700; color:var(--text-1); margin-bottom:4px; line-height:1.35;">锡纸 3片便携装</div>
  2788. <div style="font-size:0.74rem; color:#FF8C42; font-weight:700; margin-bottom:4px;">💰 ¥9-15</div>
  2789. <div style="font-size:0.68rem; color:var(--text-3); line-height:1.4;">酒局单次 / 试样装</div>
  2790. </td>
  2791. <td style="padding:10px; border:1px solid var(--border); vertical-align:top;">
  2792. <div class="text-mono text-xs" style="color:#FF8C42; letter-spacing:0.08em; font-weight:700; margin-bottom:3px;">JZ-L-D12</div>
  2793. <div style="font-size:0.78rem; font-weight:700; color:var(--text-1); margin-bottom:4px; line-height:1.35;">锡纸 12片随身包</div>
  2794. <div style="font-size:0.74rem; color:#FF8C42; font-weight:700; margin-bottom:4px;">💰 ¥29-39</div>
  2795. <div style="font-size:0.68rem; color:var(--text-3); line-height:1.4;">一周应酬 / 酒桌分食</div>
  2796. </td>
  2797. <td style="padding:10px; border:1px solid var(--border); vertical-align:top;">
  2798. <div class="text-mono text-xs" style="color:#FF8C42; letter-spacing:0.08em; font-weight:700; margin-bottom:3px;">JZ-L-D30G</div>
  2799. <div style="font-size:0.78rem; font-weight:700; color:var(--text-1); margin-bottom:4px; line-height:1.35;">30片 + 礼盒小罐</div>
  2800. <div style="font-size:0.74rem; color:#FF8C42; font-weight:700; margin-bottom:4px;">💰 ¥79-99</div>
  2801. <div style="font-size:0.68rem; color:var(--text-3); line-height:1.4;">老板团购 / 高管随身</div>
  2802. </td>
  2803. </tr>
  2804. <tr>
  2805. <td style="padding:14px 12px; border:1px solid var(--border); background:var(--bg-2); vertical-align:top;">
  2806. <div style="display:flex; align-items:center; gap:8px;"><div style="font-size:1.4rem;">💻</div><div style="font-size:0.92rem; font-weight:800; color:#2D9C5D;">电商</div></div>
  2807. </td>
  2808. <td style="padding:10px; border:1px solid var(--border); vertical-align:top;">
  2809. <div class="text-mono text-xs" style="color:#2D9C5D; letter-spacing:0.08em; font-weight:700; margin-bottom:3px;">JZ-L-E30</div>
  2810. <div style="font-size:0.78rem; font-weight:700; color:var(--text-1); margin-bottom:4px; line-height:1.35;">瓶装 30片尝鲜</div>
  2811. <div style="font-size:0.74rem; color:#2D9C5D; font-weight:700; margin-bottom:4px;">💰 ¥49-69</div>
  2812. <div style="font-size:0.68rem; color:var(--text-3); line-height:1.4;">首购引流 / 新用户</div>
  2813. </td>
  2814. <td style="padding:10px; border:1px solid var(--border); vertical-align:top;">
  2815. <div class="text-mono text-xs" style="color:#2D9C5D; letter-spacing:0.08em; font-weight:700; margin-bottom:3px;">JZ-L-E60</div>
  2816. <div style="font-size:0.78rem; font-weight:700; color:var(--text-1); margin-bottom:4px; line-height:1.35;">瓶装 60片日常</div>
  2817. <div style="font-size:0.74rem; color:#2D9C5D; font-weight:700; margin-bottom:4px;">💰 ¥89-139</div>
  2818. <div style="font-size:0.68rem; color:var(--text-3); line-height:1.4;">月度自用 / 会员复购</div>
  2819. </td>
  2820. <td style="padding:10px; border:1px solid var(--border); vertical-align:top;">
  2821. <div class="text-mono text-xs" style="color:#2D9C5D; letter-spacing:0.08em; font-weight:700; margin-bottom:3px;">JZ-L-E180G</div>
  2822. <div style="font-size:0.78rem; font-weight:700; color:var(--text-1); margin-bottom:4px; line-height:1.35;">3瓶组合 60×3 + 小程序</div>
  2823. <div style="font-size:0.74rem; color:#2D9C5D; font-weight:700; margin-bottom:4px;">💰 ¥269-359</div>
  2824. <div style="font-size:0.68rem; color:var(--text-3); line-height:1.4;">季度囤货 / 家庭装</div>
  2825. </td>
  2826. </tr>
  2827. </tbody>
  2828. </table>
  2829. </div>
  2830. <!-- 礼品 VOC 原声 -->
  2831. <div class="fade-up" style="display:grid; grid-template-columns:1fr 1fr; gap:16px; margin-bottom:24px;">
  2832. <div style="background:var(--bg-1); border:1px solid #D4A57444; border-left:3px solid #D4A574; border-radius:var(--radius-md); padding:18px;">
  2833. <div class="text-mono text-xs" style="color:#D4A574; letter-spacing:0.15em; margin-bottom:10px;">🎁 送礼场景 VOC · 9 条</div>
  2834. <div style="padding:10px 12px; background:var(--bg-2); border-left:3px solid #D4A574; border-radius:4px; margin-bottom:8px;">
  2835. <div style="display:flex; justify-content:space-between; align-items:center; margin-bottom:4px;">
  2836. <div style="display:flex; align-items:center; gap:6px;">
  2837. <span style="font-size:0.72rem; font-weight:700; color:#D4A574;">momo</span>
  2838. </div>
  2839. <div style="display:flex; align-items:center; gap:8px;">
  2840. <span class="text-mono text-xs" style="color:#D4A574;">♡ 8</span>
  2841. <span style="padding:1px 6px; background:#D4A57415; color:#D4A574; border-radius:2px; font-size:0.65rem;">送礼 保健品</span>
  2842. </div>
  2843. </div>
  2844. <div style="font-size:0.78rem; color:var(--text-1); line-height:1.5;">张飞牛肉礼盒好吃吗?</div>
  2845. </div>
  2846. <div style="padding:10px 12px; background:var(--bg-2); border-left:3px solid #D4A574; border-radius:4px; margin-bottom:8px;">
  2847. <div style="display:flex; justify-content:space-between; align-items:center; margin-bottom:4px;">
  2848. <div style="display:flex; align-items:center; gap:6px;">
  2849. <span style="font-size:0.72rem; font-weight:700; color:#D4A574;">。。。</span>
  2850. </div>
  2851. <div style="display:flex; align-items:center; gap:8px;">
  2852. <span class="text-mono text-xs" style="color:#D4A574;">♡ 0</span>
  2853. <span style="padding:1px 6px; background:#D4A57415; color:#D4A574; border-radius:2px; font-size:0.65rem;">藤茶 护肝</span>
  2854. </div>
  2855. </div>
  2856. <div style="font-size:0.78rem; color:var(--text-1); line-height:1.5;">非常好的莓茶,喝着有点苦头,到嗓子那又回甘,再买一份送人</div>
  2857. </div>
  2858. <div style="padding:10px 12px; background:var(--bg-2); border-left:3px solid #D4A574; border-radius:4px; margin-bottom:8px;">
  2859. <div style="display:flex; justify-content:space-between; align-items:center; margin-bottom:4px;">
  2860. <div style="display:flex; align-items:center; gap:6px;">
  2861. <span style="font-size:0.72rem; font-weight:700; color:#D4A574;">禧栀礼铺</span>
  2862. <span class="text-mono text-xs" style="color:var(--text-3);">📍河南</span>
  2863. </div>
  2864. <div style="display:flex; align-items:center; gap:8px;">
  2865. <span class="text-mono text-xs" style="color:#D4A574;">♡ 0</span>
  2866. <span style="padding:1px 6px; background:#D4A57415; color:#D4A574; border-radius:2px; font-size:0.65rem;">送礼 保健品</span>
  2867. </div>
  2868. </div>
  2869. <div style="font-size:0.78rem; color:var(--text-1); line-height:1.5;">那套石斛礼盒不错</div>
  2870. </div>
  2871. </div>
  2872. <div style="background:var(--bg-1); border:1px solid #0085CA44; border-left:3px solid #0085CA; border-radius:var(--radius-md); padding:18px;">
  2873. <div class="text-mono text-xs" style="color:#0085CA; letter-spacing:0.15em; margin-bottom:10px;">💰 定价相关 VOC · 10 条</div>
  2874. <div style="padding:10px 12px; background:var(--bg-2); border-left:3px solid #0085CA; border-radius:4px; margin-bottom:8px;">
  2875. <div style="display:flex; justify-content:space-between; align-items:center; margin-bottom:4px;">
  2876. <div style="display:flex; align-items:center; gap:6px;">
  2877. <span style="font-size:0.72rem; font-weight:700; color:#0085CA;">匿名</span>
  2878. <span class="text-mono text-xs" style="color:var(--text-3);">📍浙江</span>
  2879. </div>
  2880. <div style="display:flex; align-items:center; gap:8px;">
  2881. <span class="text-mono text-xs" style="color:#0085CA;">♡ 64</span>
  2882. <span style="padding:1px 6px; background:#0085CA15; color:#0085CA; border-radius:2px; font-size:0.65rem;">护肝片</span>
  2883. </div>
  2884. </div>
  2885. <div style="font-size:0.78rem; color:var(--text-1); line-height:1.5;">为啥这么贵[石化R]四瓶奶64块这正常么</div>
  2886. </div>
  2887. <div style="padding:10px 12px; background:var(--bg-2); border-left:3px solid #0085CA; border-radius:4px; margin-bottom:8px;">
  2888. <div style="display:flex; justify-content:space-between; align-items:center; margin-bottom:4px;">
  2889. <div style="display:flex; align-items:center; gap:6px;">
  2890. <span style="font-size:0.72rem; font-weight:700; color:#0085CA;">小红薯66661CF9</span>
  2891. </div>
  2892. <div style="display:flex; align-items:center; gap:8px;">
  2893. <span class="text-mono text-xs" style="color:#0085CA;">♡ 28</span>
  2894. <span style="padding:1px 6px; background:#0085CA15; color:#0085CA; border-radius:2px; font-size:0.65rem;">Swisse 水飞蓟</span>
  2895. </div>
  2896. </div>
  2897. <div style="font-size:0.78rem; color:var(--text-1); line-height:1.5;">这个普通装的就是个心理安慰剂,因为对护肝产生效果的水飞蓟素或者水飞蓟宾含量都没标注,正常人每天摄入量要400mg左右才会有作用,他这个只写了从2500mg奶蓟草中提取,换算下来就几十mg的水飞蓟素,加强版还好一点。</div>
  2898. </div>
  2899. <div style="padding:10px 12px; background:var(--bg-2); border-left:3px solid #0085CA; border-radius:4px; margin-bottom:8px;">
  2900. <div style="display:flex; justify-content:space-between; align-items:center; margin-bottom:4px;">
  2901. <div style="display:flex; align-items:center; gap:6px;">
  2902. <span style="font-size:0.72rem; font-weight:700; color:#0085CA;">Hearbreak</span>
  2903. </div>
  2904. <div style="display:flex; align-items:center; gap:8px;">
  2905. <span class="text-mono text-xs" style="color:#0085CA;">♡ 16</span>
  2906. <span style="padding:1px 6px; background:#0085CA15; color:#0085CA; border-radius:2px; font-size:0.65rem;">Swisse 水飞蓟</span>
  2907. </div>
  2908. </div>
  2909. <div style="font-size:0.78rem; color:var(--text-1); line-height:1.5;">买葵花的护肝片,我学中医的朋友推荐我的,便宜还是纯中药,刷医保</div>
  2910. </div>
  2911. </div>
  2912. </div>
  2913. <!-- 10 亿 GMV 拆解 -->
  2914. <div class="fade-up" style="background:linear-gradient(135deg, #D4A57410, #2D9C5D08); border:1px solid #D4A57444; border-radius:var(--radius-md); padding:24px;">
  2915. <div class="text-mono text-xs" style="color:#D4A574; letter-spacing:0.15em; margin-bottom:16px;">GMV BREAKDOWN · 12 SKU × 10 亿目标分解</div>
  2916. <div style="display:grid; grid-template-columns:repeat(4, 1fr); gap:14px;">
  2917. <div style="text-align:center; padding:14px; background:#0085CA08; border-radius:8px;">
  2918. <div style="font-size:2rem; margin-bottom:4px;">🏥</div>
  2919. <div class="text-mono text-xs" style="color:#0085CA; letter-spacing:0.1em; margin-bottom:4px;">药线</div>
  2920. <div style="font-family:var(--font-head); font-weight:900; font-size:2rem; color:#0085CA; line-height:1;">3.0亿</div>
  2921. <div style="font-size:0.7rem; color:var(--text-2); margin-top:6px; line-height:1.4;">板装 60% + 瓶装 40%</div>
  2922. </div>
  2923. <div style="text-align:center; padding:14px; background:#D4A57408; border-radius:8px;">
  2924. <div style="font-size:2rem; margin-bottom:4px;">🎁</div>
  2925. <div class="text-mono text-xs" style="color:#D4A574; letter-spacing:0.1em; margin-bottom:4px;">礼品</div>
  2926. <div style="font-family:var(--font-head); font-weight:900; font-size:2rem; color:#D4A574; line-height:1;">2.5亿</div>
  2927. <div style="font-size:0.7rem; color:var(--text-2); margin-top:6px; line-height:1.4;">双瓶礼盒 50% + 四瓶 30% + 单瓶 20%</div>
  2928. </div>
  2929. <div style="text-align:center; padding:14px; background:#FF8C4208; border-radius:8px;">
  2930. <div style="font-size:2rem; margin-bottom:4px;">🍷</div>
  2931. <div class="text-mono text-xs" style="color:#FF8C42; letter-spacing:0.1em; margin-bottom:4px;">餐饮</div>
  2932. <div style="font-family:var(--font-head); font-weight:900; font-size:2rem; color:#FF8C42; line-height:1;">2.5亿</div>
  2933. <div style="font-size:0.7rem; color:var(--text-2); margin-top:6px; line-height:1.4;">12片随身 70% + 30片团购 30%</div>
  2934. </div>
  2935. <div style="text-align:center; padding:14px; background:#2D9C5D08; border-radius:8px;">
  2936. <div style="font-size:2rem; margin-bottom:4px;">💻</div>
  2937. <div class="text-mono text-xs" style="color:#2D9C5D; letter-spacing:0.1em; margin-bottom:4px;">电商</div>
  2938. <div style="font-family:var(--font-head); font-weight:900; font-size:2rem; color:#2D9C5D; line-height:1;">2.0亿</div>
  2939. <div style="font-size:0.7rem; color:var(--text-2); margin-top:6px; line-height:1.4;">60片瓶装 50% + 组合装 30% + 30片 20%</div>
  2940. </div>
  2941. </div>
  2942. </div>
  2943. </div>
  2944. </section>
  2945. <section class="report-section" id="pricing" data-tone="blue" data-slide-num="15/42" style="justify-content:center;">
  2946. <div class="section-inner">
  2947. <div class="rise-in" style="text-align:center; margin-bottom:48px;">
  2948. <div class="text-mono" style="color:#0085CA; letter-spacing:0.35em; font-size:0.8rem; margin-bottom:20px;">CHAPTER 3 · PRICING</div>
  2949. <h1 style="font-family:var(--font-head); font-weight:900; font-size:clamp(4rem, 10vw, 8rem); line-height:0.92; letter-spacing:-0.04em; color:#fff; background:linear-gradient(135deg, #fff 30%, #0085CA 100%); -webkit-background-clip:text; background-clip:text; -webkit-text-fill-color:transparent; margin:0 0 18px;">
  2950. 定价调研
  2951. </h1>
  2952. <p class="text-poster" style="font-size:clamp(1.2rem, 2.2vw, 1.8rem); color:var(--text-2); font-weight:500; max-width:820px; margin:0 auto; line-height:1.5;">药线/电商/礼品分渠道价位带 × 规格 × 竞品定价参照</p>
  2953. </div>
  2954. <div class="fade-up" style="max-width:920px; margin:0 auto 40px; padding:28px 36px; background:rgba(255,255,255,0.02); border-left:4px solid #0085CA; border-radius:0 var(--radius-md) var(--radius-md) 0;">
  2955. <div class="text-mono text-xs" style="color:#0085CA; letter-spacing:0.15em; margin-bottom:10px;">KEY TAKE · 本章核心</div>
  2956. <div style="font-size:1.15rem; line-height:1.75; color:var(--text-1);">摆脱"保健品定价天花板"。药线板装低价引流(¥25-40 / 12片)、电商瓶装中端日常(¥89-139 / 60片)、礼品礼盒高端溢价(¥298-498 / 4瓶)。参照 Swisse 水飞蓟 ¥158 和易善复 OTC ¥45 的定价参照系。</div>
  2957. </div>
  2958. <div class="grid fade-up" style="grid-template-columns:repeat(4, 1fr); gap:14px; max-width:1100px; margin:0 auto;">
  2959. <div style="background:var(--bg-1); border:1px solid var(--border); border-radius:var(--radius-md); padding:18px 16px; display:flex; flex-direction:column; gap:8px; border-top:2px solid #0085CA;">
  2960. <div class="text-mono text-xs" style="color:#0085CA; letter-spacing:0.1em; font-weight:700;">3.1</div>
  2961. <div style="font-weight:700; font-size:0.86rem; color:var(--text-1); line-height:1.35;">分渠道定价区间</div>
  2962. </div>
  2963. <div style="background:var(--bg-1); border:1px solid var(--border); border-radius:var(--radius-md); padding:18px 16px; display:flex; flex-direction:column; gap:8px; border-top:2px solid #0085CA;">
  2964. <div class="text-mono text-xs" style="color:#0085CA; letter-spacing:0.1em; font-weight:700;">3.2</div>
  2965. <div style="font-weight:700; font-size:0.86rem; color:var(--text-1); line-height:1.35;">规格-价格带(12/60/120片)</div>
  2966. </div>
  2967. <div style="background:var(--bg-1); border:1px solid var(--border); border-radius:var(--radius-md); padding:18px 16px; display:flex; flex-direction:column; gap:8px; border-top:2px solid #0085CA;">
  2968. <div class="text-mono text-xs" style="color:#0085CA; letter-spacing:0.1em; font-weight:700;">3.3</div>
  2969. <div style="font-weight:700; font-size:0.86rem; color:var(--text-1); line-height:1.35;">竞品定价参照</div>
  2970. </div>
  2971. <div style="background:var(--bg-1); border:1px solid var(--border); border-radius:var(--radius-md); padding:18px 16px; display:flex; flex-direction:column; gap:8px; border-top:2px solid #0085CA;">
  2972. <div class="text-mono text-xs" style="color:#0085CA; letter-spacing:0.1em; font-weight:700;">3.4</div>
  2973. <div style="font-weight:700; font-size:0.86rem; color:var(--text-1); line-height:1.35;">价格-价值感知匹配度</div>
  2974. </div>
  2975. </div>
  2976. <div class="fade-up text-mono text-xs" style="margin-top:56px; text-align:center; color:var(--text-3); letter-spacing:0.2em;">
  2977. ↓ 滚动查看 4 个子章节展开
  2978. </div>
  2979. </div>
  2980. </section>
  2981. <section class="report-section" id="pricing-1" data-tone="blue" data-slide-num="16">
  2982. <div class="section-inner">
  2983. <div class="section-head rise-in">
  2984. <div class="section-eyebrow" style="color:#0085CA;">3.1 · CHANNEL PRICING BANDS</div>
  2985. <h2 class="text-h1"><span class="headline-anim">分渠道定价区间 · 4 渠道独立策略</span></h2>
  2986. <p class="section-sub">药线低价引流 / 礼品高端溢价 / 餐饮单片抬升 / 电商甜点价 — 每渠道独立价格带,支撑 <strong style="color:#0085CA;">10 亿 GMV</strong> 与 60-75% 综合毛利</p>
  2987. </div>
  2988. <!-- 4 渠道详细卡 -->
  2989. <div class="fade-up" style="display:grid; grid-template-columns:repeat(2, 1fr); gap:16px; margin-bottom:24px;">
  2990. <div style="background:var(--bg-1); border:1px solid #0085CA44; border-top:4px solid #0085CA; border-radius:var(--radius-md); padding:18px;">
  2991. <div style="display:flex; align-items:center; justify-content:space-between; margin-bottom:10px;">
  2992. <div style="display:flex; align-items:center; gap:10px;">
  2993. <div style="width:42px; height:42px; background:#0085CA22; border-radius:50%; display:flex; align-items:center; justify-content:center; font-size:1.4rem;">🏥</div>
  2994. <div>
  2995. <div class="text-mono text-xs" style="color:#0085CA; letter-spacing:0.1em;">CHANNEL</div>
  2996. <div style="font-size:1.1rem; font-weight:800; color:var(--text-1);">药线渠道</div>
  2997. </div>
  2998. </div>
  2999. <div style="text-align:center;">
  3000. <div style="font-family:var(--font-head); font-weight:900; font-size:1.6rem; color:#0085CA; line-height:1;">82</div>
  3001. <div class="text-mono text-xs" style="color:#0085CA; letter-spacing:0.08em; margin-top:2px;">ACCEPT/100</div>
  3002. </div>
  3003. </div>
  3004. <div style="padding:8px 10px; background:#0085CA08; border-left:3px solid #0085CA; border-radius:4px; margin-bottom:10px;">
  3005. <div style="font-size:0.82rem; color:var(--text-1); font-weight:600; line-height:1.45;">板装 12片×2板 低价引流 + 瓶装 60片 长期养护</div>
  3006. </div>
  3007. <div style="margin-bottom:10px;">
  3008. <div class="text-mono text-xs" style="color:var(--text-3); letter-spacing:0.08em; margin-bottom:6px;">💰 价位带 × 日均成本 × 竞品参照</div>
  3009. <div style="display:grid; gap:4px;">
  3010. <div style="padding:6px 10px; background:var(--bg-2); border-radius:4px; display:grid; grid-template-columns:1.5fr 0.8fr 0.9fr 1.2fr; gap:8px; align-items:center;">
  3011. <div style="font-size:0.72rem; color:var(--text-1); font-weight:600;">12×2板入门装</div>
  3012. <div style="font-size:0.76rem; color:#0085CA; font-weight:700;">¥25-40</div>
  3013. <div style="font-size:0.68rem; color:var(--text-3);">¥1.0-1.7/天</div>
  3014. <div style="font-size:0.68rem; color:var(--text-3); line-height:1.35;">vs 易善复 ¥45/盒(贵 50%)</div>
  3015. </div>
  3016. <div style="padding:6px 10px; background:var(--bg-2); border-radius:4px; display:grid; grid-template-columns:1.5fr 0.8fr 0.9fr 1.2fr; gap:8px; align-items:center;">
  3017. <div style="font-size:0.72rem; color:var(--text-1); font-weight:600;">60片瓶装</div>
  3018. <div style="font-size:0.76rem; color:#0085CA; font-weight:700;">¥89-119</div>
  3019. <div style="font-size:0.68rem; color:var(--text-3);">¥1.5-2.0/天</div>
  3020. <div style="font-size:0.68rem; color:var(--text-3); line-height:1.35;">vs 奥美拉唑 ¥80/月(持平)</div>
  3021. </div>
  3022. <div style="padding:6px 10px; background:var(--bg-2); border-radius:4px; display:grid; grid-template-columns:1.5fr 0.8fr 0.9fr 1.2fr; gap:8px; align-items:center;">
  3023. <div style="font-size:0.72rem; color:var(--text-1); font-weight:600;">120片家庭装</div>
  3024. <div style="font-size:0.76rem; color:#0085CA; font-weight:700;">¥189-239</div>
  3025. <div style="font-size:0.68rem; color:var(--text-3);">¥1.6-2.0/天</div>
  3026. <div style="font-size:0.68rem; color:var(--text-3); line-height:1.35;">vs 护肝片 OTC ¥25(便宜但单一)</div>
  3027. </div>
  3028. </div>
  3029. </div>
  3030. <div style="padding:8px 12px; background:var(--bg-2); border-radius:4px; margin-bottom:10px;">
  3031. <div class="text-mono text-xs" style="color:#0085CA; letter-spacing:0.08em; margin-bottom:3px;">📊 商业结构</div>
  3032. <div style="font-size:0.74rem; color:var(--text-2); line-height:1.5;">毛利 55-65% · 2026 目标铺货 3w+ 药店 · 药师推荐话术包</div>
  3033. </div>
  3034. <div style="padding-top:8px; border-top:1px dashed var(--border);">
  3035. <div class="text-mono text-xs" style="color:#0085CA; letter-spacing:0.08em; margin-bottom:4px;">💬 VOC 印证</div>
  3036. <div style="padding:5px 8px; background:var(--bg-2); border-radius:3px; margin-bottom:4px;">
  3037. <div style="display:flex; justify-content:space-between; font-size:0.65rem; color:var(--text-3);"><span>匿名</span><span>♡335</span></div>
  3038. <div style="font-size:0.7rem; color:var(--text-1); line-height:1.4; font-style:italic;">"你是不是经常熬夜并且熬夜的时候不怎么吃夜宵?空腹时间长了人体会分解脂肪在肝脏堆积,所以如果要熬夜必须吃点东西,吃点健康的蛋白质,比如卤牛腱这种,或者就是一日三餐之间不吃东西也容易脂..."</div>
  3039. </div>
  3040. <div style="padding:5px 8px; background:var(--bg-2); border-radius:3px; margin-bottom:4px;">
  3041. <div style="display:flex; justify-content:space-between; font-size:0.65rem; color:var(--text-3);"><span>豆豆豆子</span><span>♡267</span></div>
  3042. <div style="font-size:0.7rem; color:var(--text-1); line-height:1.4; font-style:italic;">"大家在评论区看到的一些保健品谨慎使用哦,必要时还是要去医院,珍爱生命,远离酒精[doge]"</div>
  3043. </div>
  3044. </div>
  3045. </div>
  3046. <div style="background:var(--bg-1); border:1px solid #D4A57444; border-top:4px solid #D4A574; border-radius:var(--radius-md); padding:18px;">
  3047. <div style="display:flex; align-items:center; justify-content:space-between; margin-bottom:10px;">
  3048. <div style="display:flex; align-items:center; gap:10px;">
  3049. <div style="width:42px; height:42px; background:#D4A57422; border-radius:50%; display:flex; align-items:center; justify-content:center; font-size:1.4rem;">🎁</div>
  3050. <div>
  3051. <div class="text-mono text-xs" style="color:#D4A574; letter-spacing:0.1em;">CHANNEL</div>
  3052. <div style="font-size:1.1rem; font-weight:800; color:var(--text-1);">礼品渠道</div>
  3053. </div>
  3054. </div>
  3055. <div style="text-align:center;">
  3056. <div style="font-family:var(--font-head); font-weight:900; font-size:1.6rem; color:#D4A574; line-height:1;">78</div>
  3057. <div class="text-mono text-xs" style="color:#D4A574; letter-spacing:0.08em; margin-top:2px;">ACCEPT/100</div>
  3058. </div>
  3059. </div>
  3060. <div style="padding:8px 10px; background:#D4A57408; border-left:3px solid #D4A574; border-radius:4px; margin-bottom:10px;">
  3061. <div style="font-size:0.82rem; color:var(--text-1); font-weight:600; line-height:1.45;">礼盒溢价 ¥298-898 · 颜值+体面 双加成</div>
  3062. </div>
  3063. <div style="margin-bottom:10px;">
  3064. <div class="text-mono text-xs" style="color:var(--text-3); letter-spacing:0.08em; margin-bottom:6px;">💰 价位带 × 日均成本 × 竞品参照</div>
  3065. <div style="display:grid; gap:4px;">
  3066. <div style="padding:6px 10px; background:var(--bg-2); border-radius:4px; display:grid; grid-template-columns:1.5fr 0.8fr 0.9fr 1.2fr; gap:8px; align-items:center;">
  3067. <div style="font-size:0.72rem; color:var(--text-1); font-weight:600;">单瓶礼盒 60片+手提袋</div>
  3068. <div style="font-size:0.76rem; color:#D4A574; font-weight:700;">¥158-198</div>
  3069. <div style="font-size:0.68rem; color:var(--text-3);">¥2.6-3.3/天</div>
  3070. <div style="font-size:0.68rem; color:var(--text-3); line-height:1.35;">vs Swisse 护肝片 ¥158(持平)</div>
  3071. </div>
  3072. <div style="padding:6px 10px; background:var(--bg-2); border-radius:4px; display:grid; grid-template-columns:1.5fr 0.8fr 0.9fr 1.2fr; gap:8px; align-items:center;">
  3073. <div style="font-size:0.72rem; color:var(--text-1); font-weight:600;">双瓶礼盒 60×2 磨砂+金</div>
  3074. <div style="font-size:0.76rem; color:#D4A574; font-weight:700;">¥298-398</div>
  3075. <div style="font-size:0.68rem; color:var(--text-3);">¥2.5-3.3/天</div>
  3076. <div style="font-size:0.68rem; color:var(--text-3); line-height:1.35;">vs 同仁堂滋补礼盒 ¥300-500(持平)</div>
  3077. </div>
  3078. <div style="padding:6px 10px; background:var(--bg-2); border-radius:4px; display:grid; grid-template-columns:1.5fr 0.8fr 0.9fr 1.2fr; gap:8px; align-items:center;">
  3079. <div style="font-size:0.72rem; color:var(--text-1); font-weight:600;">四瓶豪华礼盒+铁盒</div>
  3080. <div style="font-size:0.76rem; color:#D4A574; font-weight:700;">¥598-898</div>
  3081. <div style="font-size:0.68rem; color:var(--text-3);">¥2.5-3.7/天</div>
  3082. <div style="font-size:0.68rem; color:var(--text-3); line-height:1.35;">vs 片仔癀 ¥700/粒(贵 80%)</div>
  3083. </div>
  3084. </div>
  3085. </div>
  3086. <div style="padding:8px 12px; background:var(--bg-2); border-radius:4px; margin-bottom:10px;">
  3087. <div class="text-mono text-xs" style="color:#D4A574; letter-spacing:0.08em; margin-bottom:3px;">📊 商业结构</div>
  3088. <div style="font-size:0.74rem; color:var(--text-2); line-height:1.5;">毛利 65-75% · 节庆×2 大促峰值 · 商超高端专柜</div>
  3089. </div>
  3090. <div style="padding-top:8px; border-top:1px dashed var(--border);">
  3091. <div class="text-mono text-xs" style="color:#D4A574; letter-spacing:0.08em; margin-bottom:4px;">💬 VOC 印证</div>
  3092. <div style="padding:5px 8px; background:var(--bg-2); border-radius:3px; margin-bottom:4px;">
  3093. <div style="display:flex; justify-content:space-between; font-size:0.65rem; color:var(--text-3);"><span>匿名</span><span>♡64</span></div>
  3094. <div style="font-size:0.7rem; color:var(--text-1); line-height:1.4; font-style:italic;">"为啥这么贵[石化R]四瓶奶64块这正常么"</div>
  3095. </div>
  3096. <div style="padding:5px 8px; background:var(--bg-2); border-radius:3px; margin-bottom:4px;">
  3097. <div style="display:flex; justify-content:space-between; font-size:0.65rem; color:var(--text-3);"><span>匿名</span><span>♡15</span></div>
  3098. <div style="font-size:0.7rem; color:var(--text-1); line-height:1.4; font-style:italic;">"我骑行几个月,踩了几百公里,脂肪肝就没有了,医生也说那么快问我吃药没,但是我一斤没瘦,今年还查到胰岛素抵抗➕多囊[失望R][失望R]"</div>
  3099. </div>
  3100. </div>
  3101. </div>
  3102. <div style="background:var(--bg-1); border:1px solid #FF8C4244; border-top:4px solid #FF8C42; border-radius:var(--radius-md); padding:18px;">
  3103. <div style="display:flex; align-items:center; justify-content:space-between; margin-bottom:10px;">
  3104. <div style="display:flex; align-items:center; gap:10px;">
  3105. <div style="width:42px; height:42px; background:#FF8C4222; border-radius:50%; display:flex; align-items:center; justify-content:center; font-size:1.4rem;">🍷</div>
  3106. <div>
  3107. <div class="text-mono text-xs" style="color:#FF8C42; letter-spacing:0.1em;">CHANNEL</div>
  3108. <div style="font-size:1.1rem; font-weight:800; color:var(--text-1);">餐饮渠道</div>
  3109. </div>
  3110. </div>
  3111. <div style="text-align:center;">
  3112. <div style="font-family:var(--font-head); font-weight:900; font-size:1.6rem; color:#FF8C42; line-height:1;">85</div>
  3113. <div class="text-mono text-xs" style="color:#FF8C42; letter-spacing:0.08em; margin-top:2px;">ACCEPT/100</div>
  3114. </div>
  3115. </div>
  3116. <div style="padding:8px 10px; background:#FF8C4208; border-left:3px solid #FF8C42; border-radius:4px; margin-bottom:10px;">
  3117. <div style="font-size:0.82rem; color:var(--text-1); font-weight:600; line-height:1.45;">锡纸便携 单片抬升 · 酒局社交溢价</div>
  3118. </div>
  3119. <div style="margin-bottom:10px;">
  3120. <div class="text-mono text-xs" style="color:var(--text-3); letter-spacing:0.08em; margin-bottom:6px;">💰 价位带 × 日均成本 × 竞品参照</div>
  3121. <div style="display:grid; gap:4px;">
  3122. <div style="padding:6px 10px; background:var(--bg-2); border-radius:4px; display:grid; grid-template-columns:1.5fr 0.8fr 0.9fr 1.2fr; gap:8px; align-items:center;">
  3123. <div style="font-size:0.72rem; color:var(--text-1); font-weight:600;">3片试样装</div>
  3124. <div style="font-size:0.76rem; color:#FF8C42; font-weight:700;">¥9-15</div>
  3125. <div style="font-size:0.68rem; color:var(--text-3);">¥3-5/次</div>
  3126. <div style="font-size:0.68rem; color:var(--text-3); line-height:1.35;">vs 海王金樽单次 ¥5-8(持平)</div>
  3127. </div>
  3128. <div style="padding:6px 10px; background:var(--bg-2); border-radius:4px; display:grid; grid-template-columns:1.5fr 0.8fr 0.9fr 1.2fr; gap:8px; align-items:center;">
  3129. <div style="font-size:0.72rem; color:var(--text-1); font-weight:600;">12片随身包</div>
  3130. <div style="font-size:0.76rem; color:#FF8C42; font-weight:700;">¥29-39</div>
  3131. <div style="font-size:0.68rem; color:var(--text-3);">¥2.4-3.3/片</div>
  3132. <div style="font-size:0.68rem; color:var(--text-3); line-height:1.35;">vs 海王金樽一盒 ¥68(贵 100%)</div>
  3133. </div>
  3134. <div style="padding:6px 10px; background:var(--bg-2); border-radius:4px; display:grid; grid-template-columns:1.5fr 0.8fr 0.9fr 1.2fr; gap:8px; align-items:center;">
  3135. <div style="font-size:0.72rem; color:var(--text-1); font-weight:600;">30片+铁罐</div>
  3136. <div style="font-size:0.76rem; color:#FF8C42; font-weight:700;">¥79-99</div>
  3137. <div style="font-size:0.68rem; color:var(--text-3);">¥2.6-3.3/片</div>
  3138. <div style="font-size:0.68rem; color:var(--text-3); line-height:1.35;">vs 解酒合生元 ¥128(便宜 25%)</div>
  3139. </div>
  3140. </div>
  3141. </div>
  3142. <div style="padding:8px 12px; background:var(--bg-2); border-radius:4px; margin-bottom:10px;">
  3143. <div class="text-mono text-xs" style="color:#FF8C42; letter-spacing:0.08em; margin-bottom:3px;">📊 商业结构</div>
  3144. <div style="font-size:0.74rem; color:var(--text-2); line-height:1.5;">毛利 70-80%(锡纸装抬升) · 老板团购 · KTV/饭店合作</div>
  3145. </div>
  3146. </div>
  3147. <div style="background:var(--bg-1); border:1px solid #2D9C5D44; border-top:4px solid #2D9C5D; border-radius:var(--radius-md); padding:18px;">
  3148. <div style="display:flex; align-items:center; justify-content:space-between; margin-bottom:10px;">
  3149. <div style="display:flex; align-items:center; gap:10px;">
  3150. <div style="width:42px; height:42px; background:#2D9C5D22; border-radius:50%; display:flex; align-items:center; justify-content:center; font-size:1.4rem;">💻</div>
  3151. <div>
  3152. <div class="text-mono text-xs" style="color:#2D9C5D; letter-spacing:0.1em;">CHANNEL</div>
  3153. <div style="font-size:1.1rem; font-weight:800; color:var(--text-1);">电商渠道</div>
  3154. </div>
  3155. </div>
  3156. <div style="text-align:center;">
  3157. <div style="font-family:var(--font-head); font-weight:900; font-size:1.6rem; color:#2D9C5D; line-height:1;">80</div>
  3158. <div class="text-mono text-xs" style="color:#2D9C5D; letter-spacing:0.08em; margin-top:2px;">ACCEPT/100</div>
  3159. </div>
  3160. </div>
  3161. <div style="padding:8px 10px; background:#2D9C5D08; border-left:3px solid #2D9C5D; border-radius:4px; margin-bottom:10px;">
  3162. <div style="font-size:0.82rem; color:var(--text-1); font-weight:600; line-height:1.45;">瓶装主打 ¥89-139 · 差异科普 + 会员复购</div>
  3163. </div>
  3164. <div style="margin-bottom:10px;">
  3165. <div class="text-mono text-xs" style="color:var(--text-3); letter-spacing:0.08em; margin-bottom:6px;">💰 价位带 × 日均成本 × 竞品参照</div>
  3166. <div style="display:grid; gap:4px;">
  3167. <div style="padding:6px 10px; background:var(--bg-2); border-radius:4px; display:grid; grid-template-columns:1.5fr 0.8fr 0.9fr 1.2fr; gap:8px; align-items:center;">
  3168. <div style="font-size:0.72rem; color:var(--text-1); font-weight:600;">30片尝鲜瓶装</div>
  3169. <div style="font-size:0.76rem; color:#2D9C5D; font-weight:700;">¥49-69</div>
  3170. <div style="font-size:0.68rem; color:var(--text-3);">¥1.6-2.3/天</div>
  3171. <div style="font-size:0.68rem; color:var(--text-3); line-height:1.35;">vs Swisse 30粒 ¥99(便宜 30%)</div>
  3172. </div>
  3173. <div style="padding:6px 10px; background:var(--bg-2); border-radius:4px; display:grid; grid-template-columns:1.5fr 0.8fr 0.9fr 1.2fr; gap:8px; align-items:center;">
  3174. <div style="font-size:0.72rem; color:var(--text-1); font-weight:600;">60片标准日常装</div>
  3175. <div style="font-size:0.76rem; color:#2D9C5D; font-weight:700;">¥89-139</div>
  3176. <div style="font-size:0.68rem; color:var(--text-3);">¥1.5-2.3/天</div>
  3177. <div style="font-size:0.68rem; color:var(--text-3); line-height:1.35;">vs Swisse 60粒 ¥158(便宜 15%)</div>
  3178. </div>
  3179. <div style="padding:6px 10px; background:var(--bg-2); border-radius:4px; display:grid; grid-template-columns:1.5fr 0.8fr 0.9fr 1.2fr; gap:8px; align-items:center;">
  3180. <div style="font-size:0.72rem; color:var(--text-1); font-weight:600;">3瓶组合 60×3</div>
  3181. <div style="font-size:0.76rem; color:#2D9C5D; font-weight:700;">¥269-359</div>
  3182. <div style="font-size:0.68rem; color:var(--text-3);">¥1.5-2.0/天</div>
  3183. <div style="font-size:0.68rem; color:var(--text-3); line-height:1.35;">vs Swisse 3瓶套装 ¥399(便宜 20%)</div>
  3184. </div>
  3185. </div>
  3186. </div>
  3187. <div style="padding:8px 12px; background:var(--bg-2); border-radius:4px; margin-bottom:10px;">
  3188. <div class="text-mono text-xs" style="color:#2D9C5D; letter-spacing:0.08em; margin-bottom:3px;">📊 商业结构</div>
  3189. <div style="font-size:0.74rem; color:var(--text-2); line-height:1.5;">毛利 60-70% · 一物一码 + 服用小程序 · 618/双 11 峰值</div>
  3190. </div>
  3191. <div style="padding-top:8px; border-top:1px dashed var(--border);">
  3192. <div class="text-mono text-xs" style="color:#2D9C5D; letter-spacing:0.08em; margin-bottom:4px;">💬 VOC 印证</div>
  3193. <div style="padding:5px 8px; background:var(--bg-2); border-radius:3px; margin-bottom:4px;">
  3194. <div style="display:flex; justify-content:space-between; font-size:0.65rem; color:var(--text-3);"><span>匿名</span><span>♡459</span></div>
  3195. <div style="font-size:0.7rem; color:var(--text-1); line-height:1.4; font-style:italic;">"莫名其妙火了那就统一回复一下!我爱吃水果,肉,绿叶菜,这三种都是一天不吃浑身难受能感受到基因里的渴望的那种。但都没有当顿吃,是在正常饮食内的,不存在今晚不吃正餐水果当饭的情况。我们..."</div>
  3196. </div>
  3197. <div style="padding:5px 8px; background:var(--bg-2); border-radius:3px; margin-bottom:4px;">
  3198. <div style="display:flex; justify-content:space-between; font-size:0.65rem; color:var(--text-3);"><span>匿名</span><span>♡366</span></div>
  3199. <div style="font-size:0.7rem; color:var(--text-1); line-height:1.4; font-style:italic;">"电解质水➕水溶c100 都要冰的 一起喝下去 5分钟马上不难受 相信我 亲测,不好使回来打我"</div>
  3200. </div>
  3201. </div>
  3202. </div>
  3203. </div>
  3204. <!-- 总价格带分布可视化 -->
  3205. <div class="fade-up" style="background:linear-gradient(135deg, #0085CA10, #D4A57408); border:1px solid #0085CA44; border-radius:var(--radius-md); padding:24px;">
  3206. <div class="text-mono text-xs" style="color:#0085CA; letter-spacing:0.15em; margin-bottom:14px;">PRICE SPECTRUM · 江中肝纯片全价格带覆盖</div>
  3207. <div style="position:relative; height:100px; background:var(--bg-1); border-radius:8px; padding:14px 20px;">
  3208. <svg viewBox="0 0 900 60" style="width:100%; height:100%;">
  3209. <defs>
  3210. <linearGradient id="gradPrice" x1="0" y1="0" x2="1" y2="0">
  3211. <stop offset="0" stop-color="#2D9C5D"/>
  3212. <stop offset="0.4" stop-color="#0085CA"/>
  3213. <stop offset="0.7" stop-color="#FF8C42"/>
  3214. <stop offset="1" stop-color="#D4A574"/>
  3215. </linearGradient>
  3216. </defs>
  3217. <rect x="20" y="22" width="860" height="16" fill="url(#gradPrice)" rx="8"/>
  3218. <g>
  3219. <line x1="20" y1="18" x2="20" y2="42" stroke="#fff" stroke-width="1.5"/>
  3220. <text x="20" y="12" text-anchor="middle" font-family="ui-monospace, monospace" font-size="11" fill="var(--text-1)" font-weight="700">¥25</text>
  3221. <text x="20" y="56" text-anchor="middle" font-family="ui-sans-serif" font-size="9" fill="var(--text-3)">药线板装</text>
  3222. </g>
  3223. <g>
  3224. <line x1="160" y1="18" x2="160" y2="42" stroke="#fff" stroke-width="1.5"/>
  3225. <text x="160" y="12" text-anchor="middle" font-family="ui-monospace, monospace" font-size="11" fill="var(--text-1)" font-weight="700">¥79</text>
  3226. <text x="160" y="56" text-anchor="middle" font-family="ui-sans-serif" font-size="9" fill="var(--text-3)">电商 30片</text>
  3227. </g>
  3228. <g>
  3229. <line x1="250" y1="18" x2="250" y2="42" stroke="#fff" stroke-width="1.5"/>
  3230. <text x="250" y="12" text-anchor="middle" font-family="ui-monospace, monospace" font-size="11" fill="var(--text-1)" font-weight="700">¥119</text>
  3231. <text x="250" y="56" text-anchor="middle" font-family="ui-sans-serif" font-size="9" fill="var(--text-3)">药线/电商 60片</text>
  3232. </g>
  3233. <g>
  3234. <line x1="380" y1="18" x2="380" y2="42" stroke="#fff" stroke-width="1.5"/>
  3235. <text x="380" y="12" text-anchor="middle" font-family="ui-monospace, monospace" font-size="11" fill="var(--text-1)" font-weight="700">¥198</text>
  3236. <text x="380" y="56" text-anchor="middle" font-family="ui-sans-serif" font-size="9" fill="var(--text-3)">礼品单瓶</text>
  3237. </g>
  3238. <g>
  3239. <line x1="520" y1="18" x2="520" y2="42" stroke="#fff" stroke-width="1.5"/>
  3240. <text x="520" y="12" text-anchor="middle" font-family="ui-monospace, monospace" font-size="11" fill="var(--text-1)" font-weight="700">¥298</text>
  3241. <text x="520" y="56" text-anchor="middle" font-family="ui-sans-serif" font-size="9" fill="var(--text-3)">礼品双瓶</text>
  3242. </g>
  3243. <g>
  3244. <line x1="680" y1="18" x2="680" y2="42" stroke="#fff" stroke-width="1.5"/>
  3245. <text x="680" y="12" text-anchor="middle" font-family="ui-monospace, monospace" font-size="11" fill="var(--text-1)" font-weight="700">¥498</text>
  3246. <text x="680" y="56" text-anchor="middle" font-family="ui-sans-serif" font-size="9" fill="var(--text-3)">礼品四瓶</text>
  3247. </g>
  3248. <g>
  3249. <line x1="850" y1="18" x2="850" y2="42" stroke="#fff" stroke-width="1.5"/>
  3250. <text x="850" y="12" text-anchor="middle" font-family="ui-monospace, monospace" font-size="11" fill="var(--text-1)" font-weight="700">¥898</text>
  3251. <text x="850" y="56" text-anchor="middle" font-family="ui-sans-serif" font-size="9" fill="var(--text-3)">豪华铁盒</text>
  3252. </g>
  3253. </svg>
  3254. </div>
  3255. <div style="display:grid; grid-template-columns:repeat(4, 1fr); gap:10px; margin-top:14px;">
  3256. <div style="text-align:center; padding:10px; background:#0085CA10; border-radius:6px;">
  3257. <div style="font-family:var(--font-head); font-weight:900; font-size:1.8rem; color:#0085CA; line-height:1;">¥25-239</div>
  3258. <div class="text-mono text-xs" style="color:#0085CA; margin-top:4px; letter-spacing:0.08em;">药线</div>
  3259. </div>
  3260. <div style="text-align:center; padding:10px; background:#D4A57410; border-radius:6px;">
  3261. <div style="font-family:var(--font-head); font-weight:900; font-size:1.8rem; color:#D4A574; line-height:1;">¥158-898</div>
  3262. <div class="text-mono text-xs" style="color:#D4A574; margin-top:4px; letter-spacing:0.08em;">礼品</div>
  3263. </div>
  3264. <div style="text-align:center; padding:10px; background:#FF8C4210; border-radius:6px;">
  3265. <div style="font-family:var(--font-head); font-weight:900; font-size:1.8rem; color:#FF8C42; line-height:1;">¥9-99</div>
  3266. <div class="text-mono text-xs" style="color:#FF8C42; margin-top:4px; letter-spacing:0.08em;">餐饮</div>
  3267. </div>
  3268. <div style="text-align:center; padding:10px; background:#2D9C5D10; border-radius:6px;">
  3269. <div style="font-family:var(--font-head); font-weight:900; font-size:1.8rem; color:#2D9C5D; line-height:1;">¥49-359</div>
  3270. <div class="text-mono text-xs" style="color:#2D9C5D; margin-top:4px; letter-spacing:0.08em;">电商</div>
  3271. </div>
  3272. </div>
  3273. </div>
  3274. </div>
  3275. </section>
  3276. <section class="report-section" id="pricing-2" data-tone="blue" data-slide-num="17">
  3277. <div class="section-inner">
  3278. <div class="section-head rise-in">
  3279. <div class="section-eyebrow" style="color:#0085CA;">3.2 · SPEC × PRICE BAND</div>
  3280. <h2 class="text-h1"><span class="headline-anim">规格-价格带 · 12 / 60 / 120 片三阶跃</span></h2>
  3281. <p class="section-sub">3 规格价格带递进,对应试用 → 复购 → 囤货 3 个决策阶段 · <strong style="color:#0085CA;">60 片日常装</strong>为 GMV 主引擎(占比 50%+)</p>
  3282. </div>
  3283. <!-- 3 规格详情卡 -->
  3284. <div class="fade-up" style="display:grid; grid-template-columns:repeat(3, 1fr); gap:16px; margin-bottom:24px;">
  3285. <div style="background:var(--bg-1); border:1px solid #2D9C5D44; border-top:4px solid #2D9C5D; border-radius:var(--radius-md); padding:18px;">
  3286. <div style="display:flex; align-items:center; gap:10px; margin-bottom:12px;">
  3287. <div style="width:44px; height:44px; background:#2D9C5D22; border-radius:50%; display:flex; align-items:center; justify-content:center; font-size:1.5rem;">🟢</div>
  3288. <div>
  3289. <div class="text-mono text-xs" style="color:#2D9C5D; letter-spacing:0.1em;">SPEC · 12片</div>
  3290. <div style="font-size:1.02rem; font-weight:800; color:var(--text-1);">12 片入门装</div>
  3291. </div>
  3292. </div>
  3293. <div style="padding:8px 10px; background:#2D9C5D08; border-left:3px solid #2D9C5D; border-radius:4px; margin-bottom:10px;">
  3294. <div class="text-mono text-xs" style="color:#2D9C5D; letter-spacing:0.08em; margin-bottom:3px;">🎯 目标场景</div>
  3295. <div style="font-size:0.78rem; color:var(--text-1); font-weight:600; line-height:1.45;">新手试用 / 单次应酬 / 随身补给</div>
  3296. </div>
  3297. <div style="margin-bottom:10px;">
  3298. <div class="text-mono text-xs" style="color:var(--text-3); letter-spacing:0.08em; margin-bottom:3px;">👤 核心用户</div>
  3299. <div style="font-size:0.74rem; color:var(--text-2); line-height:1.45;">首购用户 · 酒局男性 · 药店初诊</div>
  3300. </div>
  3301. <div style="display:grid; grid-template-columns:1fr 1fr; gap:8px; margin-bottom:10px;">
  3302. <div style="padding:6px 10px; background:var(--bg-2); border-radius:4px;">
  3303. <div class="text-mono text-xs" style="color:var(--text-3); letter-spacing:0.06em; margin-bottom:2px;">标准价</div>
  3304. <div style="font-size:0.82rem; color:#2D9C5D; font-weight:700;">¥25-40</div>
  3305. </div>
  3306. <div style="padding:6px 10px; background:var(--bg-2); border-radius:4px;">
  3307. <div class="text-mono text-xs" style="color:var(--text-3); letter-spacing:0.06em; margin-bottom:2px;">礼品价</div>
  3308. <div style="font-size:0.82rem; color:#2D9C5D; font-weight:700;">不适用</div>
  3309. </div>
  3310. </div>
  3311. <div style="padding:6px 10px; background:#2D9C5D12; border-radius:4px; margin-bottom:10px; text-align:center;">
  3312. <span class="text-mono text-xs" style="color:#2D9C5D; letter-spacing:0.08em;">日均成本:</span>
  3313. <strong style="color:#2D9C5D; font-size:0.88rem;">¥2-3.3/天</strong>
  3314. </div>
  3315. <div style="display:grid; gap:5px; margin-bottom:10px;">
  3316. <div>
  3317. <div class="text-mono text-xs" style="color:#2D9C5D; letter-spacing:0.08em; margin-bottom:3px;">✅ 优势</div>
  3318. <div style="padding:1px 0; font-size:0.7rem; color:var(--text-2); line-height:1.4;">▸ 单次成本低</div><div style="padding:1px 0; font-size:0.7rem; color:var(--text-2); line-height:1.4;">▸ 社交传播力强</div><div style="padding:1px 0; font-size:0.7rem; color:var(--text-2); line-height:1.4;">▸ 减少抗拒</div>
  3319. </div>
  3320. <div>
  3321. <div class="text-mono text-xs" style="color:#FF4D8D; letter-spacing:0.08em; margin-bottom:3px;">⚠️ 风险</div>
  3322. <div style="padding:1px 0; font-size:0.7rem; color:var(--text-2); line-height:1.4;">▸ 单次毛利低</div><div style="padding:1px 0; font-size:0.7rem; color:var(--text-2); line-height:1.4;">▸ 不支撑长期复购</div>
  3323. </div>
  3324. </div>
  3325. <div style="padding-top:8px; border-top:1px dashed var(--border);">
  3326. <div class="text-mono text-xs" style="color:#2D9C5D; letter-spacing:0.08em; margin-bottom:4px;">💬 VOC</div>
  3327. <div style="padding:5px 8px; background:var(--bg-2); border-radius:3px;">
  3328. <div style="font-size:0.68rem; color:#2D9C5D; font-weight:700; margin-bottom:2px;">Hearbreak · ♡16</div>
  3329. <div style="font-size:0.7rem; color:var(--text-1); line-height:1.4; font-style:italic;">"买葵花的护肝片,我学中医的朋友推荐我的,便宜还是纯中药,刷医保"</div>
  3330. </div>
  3331. </div>
  3332. </div>
  3333. <div style="background:var(--bg-1); border:1px solid #0085CA44; border-top:4px solid #0085CA; border-radius:var(--radius-md); padding:18px;">
  3334. <div style="display:flex; align-items:center; gap:10px; margin-bottom:12px;">
  3335. <div style="width:44px; height:44px; background:#0085CA22; border-radius:50%; display:flex; align-items:center; justify-content:center; font-size:1.5rem;">🟡</div>
  3336. <div>
  3337. <div class="text-mono text-xs" style="color:#0085CA; letter-spacing:0.1em;">SPEC · 60片</div>
  3338. <div style="font-size:1.02rem; font-weight:800; color:var(--text-1);">60 片日常装</div>
  3339. </div>
  3340. </div>
  3341. <div style="padding:8px 10px; background:#0085CA08; border-left:3px solid #0085CA; border-radius:4px; margin-bottom:10px;">
  3342. <div class="text-mono text-xs" style="color:#0085CA; letter-spacing:0.08em; margin-bottom:3px;">🎯 目标场景</div>
  3343. <div style="font-size:0.78rem; color:var(--text-1); font-weight:600; line-height:1.45;">日常养护主力 / 上班族 / 中年保养</div>
  3344. </div>
  3345. <div style="margin-bottom:10px;">
  3346. <div class="text-mono text-xs" style="color:var(--text-3); letter-spacing:0.08em; margin-bottom:3px;">👤 核心用户</div>
  3347. <div style="font-size:0.74rem; color:var(--text-2); line-height:1.45;">复购用户 · 电商会员 · 药线长期</div>
  3348. </div>
  3349. <div style="display:grid; grid-template-columns:1fr 1fr; gap:8px; margin-bottom:10px;">
  3350. <div style="padding:6px 10px; background:var(--bg-2); border-radius:4px;">
  3351. <div class="text-mono text-xs" style="color:var(--text-3); letter-spacing:0.06em; margin-bottom:2px;">标准价</div>
  3352. <div style="font-size:0.82rem; color:#0085CA; font-weight:700;">¥89-139</div>
  3353. </div>
  3354. <div style="padding:6px 10px; background:var(--bg-2); border-radius:4px;">
  3355. <div class="text-mono text-xs" style="color:var(--text-3); letter-spacing:0.06em; margin-bottom:2px;">礼品价</div>
  3356. <div style="font-size:0.82rem; color:#0085CA; font-weight:700;">¥158-198(礼盒版)</div>
  3357. </div>
  3358. </div>
  3359. <div style="padding:6px 10px; background:#0085CA12; border-radius:4px; margin-bottom:10px; text-align:center;">
  3360. <span class="text-mono text-xs" style="color:#0085CA; letter-spacing:0.08em;">日均成本:</span>
  3361. <strong style="color:#0085CA; font-size:0.88rem;">¥1.5-2.3/天</strong>
  3362. </div>
  3363. <div style="display:grid; gap:5px; margin-bottom:10px;">
  3364. <div>
  3365. <div class="text-mono text-xs" style="color:#2D9C5D; letter-spacing:0.08em; margin-bottom:3px;">✅ 优势</div>
  3366. <div style="padding:1px 0; font-size:0.7rem; color:var(--text-2); line-height:1.4;">▸ 毛利健康</div><div style="padding:1px 0; font-size:0.7rem; color:var(--text-2); line-height:1.4;">▸ 用户粘性最强</div><div style="padding:1px 0; font-size:0.7rem; color:var(--text-2); line-height:1.4;">▸ GMV 主引擎</div>
  3367. </div>
  3368. <div>
  3369. <div class="text-mono text-xs" style="color:#FF4D8D; letter-spacing:0.08em; margin-bottom:3px;">⚠️ 风险</div>
  3370. <div style="padding:1px 0; font-size:0.7rem; color:var(--text-2); line-height:1.4;">▸ 决策周期长</div><div style="padding:1px 0; font-size:0.7rem; color:var(--text-2); line-height:1.4;">▸ 需要教育成本</div>
  3371. </div>
  3372. </div>
  3373. <div style="padding-top:8px; border-top:1px dashed var(--border);">
  3374. <div class="text-mono text-xs" style="color:#0085CA; letter-spacing:0.08em; margin-bottom:4px;">💬 VOC</div>
  3375. <div style="padding:5px 8px; background:var(--bg-2); border-radius:3px;">
  3376. <div style="font-size:0.68rem; color:#0085CA; font-weight:700; margin-bottom:2px;">匿名 · ♡2</div>
  3377. <div style="font-size:0.7rem; color:var(--text-1); line-height:1.4; font-style:italic;">"你们意大利物价怎么那么便宜啊啊啊啊啊"</div>
  3378. </div>
  3379. </div>
  3380. </div>
  3381. <div style="background:var(--bg-1); border:1px solid #D4A57444; border-top:4px solid #D4A574; border-radius:var(--radius-md); padding:18px;">
  3382. <div style="display:flex; align-items:center; gap:10px; margin-bottom:12px;">
  3383. <div style="width:44px; height:44px; background:#D4A57422; border-radius:50%; display:flex; align-items:center; justify-content:center; font-size:1.5rem;">🔴</div>
  3384. <div>
  3385. <div class="text-mono text-xs" style="color:#D4A574; letter-spacing:0.1em;">SPEC · 120片</div>
  3386. <div style="font-size:1.02rem; font-weight:800; color:var(--text-1);">120 片家庭装</div>
  3387. </div>
  3388. </div>
  3389. <div style="padding:8px 10px; background:#D4A57408; border-left:3px solid #D4A574; border-radius:4px; margin-bottom:10px;">
  3390. <div class="text-mono text-xs" style="color:#D4A574; letter-spacing:0.08em; margin-bottom:3px;">🎯 目标场景</div>
  3391. <div style="font-size:0.78rem; color:var(--text-1); font-weight:600; line-height:1.45;">家庭囤货 / 重度用户 / 礼品高端</div>
  3392. </div>
  3393. <div style="margin-bottom:10px;">
  3394. <div class="text-mono text-xs" style="color:var(--text-3); letter-spacing:0.08em; margin-bottom:3px;">👤 核心用户</div>
  3395. <div style="font-size:0.74rem; color:var(--text-2); line-height:1.45;">老用户 · 送礼人 · 中老年自购</div>
  3396. </div>
  3397. <div style="display:grid; grid-template-columns:1fr 1fr; gap:8px; margin-bottom:10px;">
  3398. <div style="padding:6px 10px; background:var(--bg-2); border-radius:4px;">
  3399. <div class="text-mono text-xs" style="color:var(--text-3); letter-spacing:0.06em; margin-bottom:2px;">标准价</div>
  3400. <div style="font-size:0.82rem; color:#D4A574; font-weight:700;">¥189-239</div>
  3401. </div>
  3402. <div style="padding:6px 10px; background:var(--bg-2); border-radius:4px;">
  3403. <div class="text-mono text-xs" style="color:var(--text-3); letter-spacing:0.06em; margin-bottom:2px;">礼品价</div>
  3404. <div style="font-size:0.82rem; color:#D4A574; font-weight:700;">¥298-898(双瓶/四瓶礼盒)</div>
  3405. </div>
  3406. </div>
  3407. <div style="padding:6px 10px; background:#D4A57412; border-radius:4px; margin-bottom:10px; text-align:center;">
  3408. <span class="text-mono text-xs" style="color:#D4A574; letter-spacing:0.08em;">日均成本:</span>
  3409. <strong style="color:#D4A574; font-size:0.88rem;">¥1.6-2.0/天(长期最划算)</strong>
  3410. </div>
  3411. <div style="display:grid; gap:5px; margin-bottom:10px;">
  3412. <div>
  3413. <div class="text-mono text-xs" style="color:#2D9C5D; letter-spacing:0.08em; margin-bottom:3px;">✅ 优势</div>
  3414. <div style="padding:1px 0; font-size:0.7rem; color:var(--text-2); line-height:1.4;">▸ 单次客单最高</div><div style="padding:1px 0; font-size:0.7rem; color:var(--text-2); line-height:1.4;">▸ 礼品溢价空间</div><div style="padding:1px 0; font-size:0.7rem; color:var(--text-2); line-height:1.4;">▸ 家庭装省心</div>
  3415. </div>
  3416. <div>
  3417. <div class="text-mono text-xs" style="color:#FF4D8D; letter-spacing:0.08em; margin-bottom:3px;">⚠️ 风险</div>
  3418. <div style="padding:1px 0; font-size:0.7rem; color:var(--text-2); line-height:1.4;">▸ 决策门槛高</div><div style="padding:1px 0; font-size:0.7rem; color:var(--text-2); line-height:1.4;">▸ 仅 20% 用户能消化</div>
  3419. </div>
  3420. </div>
  3421. <div style="padding-top:8px; border-top:1px dashed var(--border);">
  3422. <div class="text-mono text-xs" style="color:#D4A574; letter-spacing:0.08em; margin-bottom:4px;">💬 VOC</div>
  3423. <div style="padding:5px 8px; background:var(--bg-2); border-radius:3px;">
  3424. <div style="font-size:0.68rem; color:#D4A574; font-weight:700; margin-bottom:2px;">匿名 · ♡64</div>
  3425. <div style="font-size:0.7rem; color:var(--text-1); line-height:1.4; font-style:italic;">"为啥这么贵[石化R]四瓶奶64块这正常么"</div>
  3426. </div>
  3427. </div>
  3428. </div>
  3429. </div>
  3430. <!-- 决策阶梯图 -->
  3431. <div class="fade-up" style="background:linear-gradient(135deg, #0085CA10, #2D9C5D08); border:1px solid #0085CA44; border-radius:var(--radius-md); padding:24px;">
  3432. <div class="text-mono text-xs" style="color:#0085CA; letter-spacing:0.15em; margin-bottom:16px;">ESCALATION LADDER · 规格升级路径</div>
  3433. <div style="display:grid; grid-template-columns:1fr auto 1fr auto 1fr; gap:14px; align-items:center;">
  3434. <div style="padding:16px; background:#2D9C5D15; border:2px solid #2D9C5D; border-radius:8px; text-align:center;">
  3435. <div style="font-size:2rem;">🟢</div>
  3436. <div style="font-size:1rem; font-weight:800; color:var(--text-1); margin:6px 0 3px;">12 片入门装</div>
  3437. <div class="text-mono text-xs" style="color:#2D9C5D; letter-spacing:0.08em;">试用 · ¥25-40</div>
  3438. <div style="font-size:0.68rem; color:var(--text-3); margin-top:6px; line-height:1.4;">首购转化率<br/><strong style="color:#2D9C5D;">↑ 2.3x</strong></div>
  3439. </div>
  3440. <div style="font-size:2rem; color:#0085CA; text-align:center;">→</div>
  3441. <div style="padding:16px; background:#0085CA15; border:2px solid #0085CA; border-radius:8px; text-align:center;">
  3442. <div style="font-size:2rem;">🟡</div>
  3443. <div style="font-size:1rem; font-weight:800; color:var(--text-1); margin:6px 0 3px;">60 片日常装</div>
  3444. <div class="text-mono text-xs" style="color:#0085CA; letter-spacing:0.08em;">主力 · ¥89-139</div>
  3445. <div style="font-size:0.68rem; color:var(--text-3); margin-top:6px; line-height:1.4;">GMV 占比<br/><strong style="color:#0085CA;">50%+</strong></div>
  3446. </div>
  3447. <div style="font-size:2rem; color:#0085CA; text-align:center;">→</div>
  3448. <div style="padding:16px; background:#D4A57415; border:2px solid #D4A574; border-radius:8px; text-align:center;">
  3449. <div style="font-size:2rem;">🔴</div>
  3450. <div style="font-size:1rem; font-weight:800; color:var(--text-1); margin:6px 0 3px;">120 片家庭装</div>
  3451. <div class="text-mono text-xs" style="color:#D4A574; letter-spacing:0.08em;">囤货/礼品 · ¥189+</div>
  3452. <div style="font-size:0.68rem; color:var(--text-3); margin-top:6px; line-height:1.4;">毛利最高<br/><strong style="color:#D4A574;">70%+</strong></div>
  3453. </div>
  3454. </div>
  3455. </div>
  3456. </div>
  3457. </section>
  3458. <section class="report-section" id="pricing-3" data-tone="blue" data-slide-num="18">
  3459. <div class="section-inner">
  3460. <div class="section-head rise-in">
  3461. <div class="section-eyebrow" style="color:#0085CA;">3.3 · COMPETITOR PRICE REFERENCE</div>
  3462. <h2 class="text-h1"><span class="headline-anim">竞品定价参照 · 6 竞品价位对照</span></h2>
  3463. <p class="section-sub">江中肝纯 <strong style="color:#0085CA;">¥79-199</strong> 站位于"<strong style="color:#0085CA;">甜点价位</strong>"— 比 Swisse 便宜 15-30%、比易善复体验好、比护肝片 OTC 有差异化</p>
  3464. </div>
  3465. <!-- 竞品价格对照表 -->
  3466. <div class="fade-up" style="background:var(--bg-1); border:1px solid var(--border); border-radius:var(--radius-md); padding:20px; margin-bottom:24px;">
  3467. <div class="text-mono text-xs" style="color:#0085CA; letter-spacing:0.15em; margin-bottom:12px;">COMPETITOR PRICING TABLE · 6 竞品 × 价格 × 日均成本 × 优劣 × VOC</div>
  3468. <table style="width:100%; border-collapse:collapse; font-size:0.78rem;">
  3469. <thead>
  3470. <tr style="background:#0085CA12;">
  3471. <th style="padding:10px; text-align:left; border:1px solid #0085CA33; color:#0085CA; font-weight:700; width:16%;">竞品</th>
  3472. <th style="padding:10px; text-align:left; border:1px solid #0085CA33; color:#0085CA; font-weight:700;">品类</th>
  3473. <th style="padding:10px; text-align:left; border:1px solid #0085CA33; color:#0085CA; font-weight:700;">价格</th>
  3474. <th style="padding:10px; text-align:left; border:1px solid #0085CA33; color:#0085CA; font-weight:700;">日均成本</th>
  3475. <th style="padding:10px; text-align:left; border:1px solid #0085CA33; color:#0085CA; font-weight:700;">GMV 规模</th>
  3476. <th style="padding:10px; text-align:left; border:1px solid #0085CA33; color:#0085CA; font-weight:700;">优势</th>
  3477. <th style="padding:10px; text-align:left; border:1px solid #0085CA33; color:#0085CA; font-weight:700;">短板</th>
  3478. <th style="padding:10px; text-align:left; border:1px solid #0085CA33; color:#0085CA; font-weight:700;">VOC</th>
  3479. </tr>
  3480. </thead>
  3481. <tbody>
  3482. <tr style="border:1px solid var(--border);">
  3483. <td style="padding:10px; border:1px solid var(--border); background:#FF4D8D08;"><div style="display:flex; align-items:center; gap:6px;"><div style="font-size:1.2rem;">🌸</div><div style="font-size:0.8rem; font-weight:700; color:#FF4D8D;">Swisse 水飞蓟</div></div></td>
  3484. <td style="padding:10px; border:1px solid var(--border); font-size:0.74rem; color:var(--text-2);">保健品</td>
  3485. <td style="padding:10px; border:1px solid var(--border); font-family:var(--font-mono); font-size:0.76rem; color:#FF4D8D; font-weight:700;">¥158/60粒</td>
  3486. <td style="padding:10px; border:1px solid var(--border); font-size:0.72rem; color:var(--text-2);">¥2.6/天</td>
  3487. <td style="padding:10px; border:1px solid var(--border); font-size:0.72rem; color:var(--text-2);">年销 5亿+</td>
  3488. <td style="padding:10px; border:1px solid var(--border); font-size:0.7rem; color:var(--text-2); line-height:1.4;">国际化+年轻女性心智</td>
  3489. <td style="padding:10px; border:1px solid var(--border); font-size:0.7rem; color:#FF4D8D; line-height:1.4;">体感弱、价格中位</td>
  3490. <td style="padding:10px; border:1px solid var(--border); font-size:0.68rem; color:var(--text-3);">♡64: "为啥这么贵[石化R]四瓶奶64块这正常么..."</td>
  3491. </tr>
  3492. <tr style="border:1px solid var(--border);">
  3493. <td style="padding:10px; border:1px solid var(--border); background:#8B5CF608;"><div style="display:flex; align-items:center; gap:6px;"><div style="font-size:1.2rem;">🏃</div><div style="font-size:0.8rem; font-weight:700; color:#8B5CF6;">汤臣倍健 护肝片</div></div></td>
  3494. <td style="padding:10px; border:1px solid var(--border); font-size:0.74rem; color:var(--text-2);">保健品</td>
  3495. <td style="padding:10px; border:1px solid var(--border); font-family:var(--font-mono); font-size:0.76rem; color:#8B5CF6; font-weight:700;">¥98/60粒</td>
  3496. <td style="padding:10px; border:1px solid var(--border); font-size:0.72rem; color:var(--text-2);">¥1.6/天</td>
  3497. <td style="padding:10px; border:1px solid var(--border); font-size:0.72rem; color:var(--text-2);">年销 3亿+</td>
  3498. <td style="padding:10px; border:1px solid var(--border); font-size:0.7rem; color:var(--text-2); line-height:1.4;">渠道铺货广</td>
  3499. <td style="padding:10px; border:1px solid var(--border); font-size:0.7rem; color:#FF4D8D; line-height:1.4;">无差异化卖点</td>
  3500. <td style="padding:10px; border:1px solid var(--border); font-size:0.68rem; color:var(--text-3);">—</td>
  3501. </tr>
  3502. <tr style="border:1px solid var(--border);">
  3503. <td style="padding:10px; border:1px solid var(--border); background:#2D9C5D08;"><div style="display:flex; align-items:center; gap:6px;"><div style="font-size:1.2rem;">💊</div><div style="font-size:0.8rem; font-weight:700; color:#2D9C5D;">护肝片 OTC</div></div></td>
  3504. <td style="padding:10px; border:1px solid var(--border); font-size:0.74rem; color:var(--text-2);">药品</td>
  3505. <td style="padding:10px; border:1px solid var(--border); font-family:var(--font-mono); font-size:0.76rem; color:#2D9C5D; font-weight:700;">¥25-35/盒</td>
  3506. <td style="padding:10px; border:1px solid var(--border); font-size:0.72rem; color:var(--text-2);">¥0.8/天</td>
  3507. <td style="padding:10px; border:1px solid var(--border); font-size:0.72rem; color:var(--text-2);">品类 30亿+</td>
  3508. <td style="padding:10px; border:1px solid var(--border); font-size:0.7rem; color:var(--text-2); line-height:1.4;">药线铺货深</td>
  3509. <td style="padding:10px; border:1px solid var(--border); font-size:0.7rem; color:#FF4D8D; line-height:1.4;">品牌老化</td>
  3510. <td style="padding:10px; border:1px solid var(--border); font-size:0.68rem; color:var(--text-3);">♡4823: "吓得我赶紧吃两粒护肝片..."</td>
  3511. </tr>
  3512. <tr style="border:1px solid var(--border);">
  3513. <td style="padding:10px; border:1px solid var(--border); background:#0085CA08;"><div style="display:flex; align-items:center; gap:6px;"><div style="font-size:1.2rem;">🧪</div><div style="font-size:0.8rem; font-weight:700; color:#0085CA;">易善复</div></div></td>
  3514. <td style="padding:10px; border:1px solid var(--border); font-size:0.74rem; color:var(--text-2);">药品</td>
  3515. <td style="padding:10px; border:1px solid var(--border); font-family:var(--font-mono); font-size:0.76rem; color:#0085CA; font-weight:700;">¥80/盒</td>
  3516. <td style="padding:10px; border:1px solid var(--border); font-size:0.72rem; color:var(--text-2);">¥2.7/天</td>
  3517. <td style="padding:10px; border:1px solid var(--border); font-size:0.72rem; color:var(--text-2);">医保规模大</td>
  3518. <td style="padding:10px; border:1px solid var(--border); font-size:0.7rem; color:var(--text-2); line-height:1.4;">医院处方</td>
  3519. <td style="padding:10px; border:1px solid var(--border); font-size:0.7rem; color:#FF4D8D; line-height:1.4;">胃肠反应/贵/每年涨价</td>
  3520. <td style="padding:10px; border:1px solid var(--border); font-size:0.68rem; color:var(--text-3);">♡212: "我喝酒是属于越喝越贪酒的,不喝到废不走的那种,最后靠潜意识回..."</td>
  3521. </tr>
  3522. <tr style="border:1px solid var(--border);">
  3523. <td style="padding:10px; border:1px solid var(--border); background:#D4A57408;"><div style="display:flex; align-items:center; gap:6px;"><div style="font-size:1.2rem;">💎</div><div style="font-size:0.8rem; font-weight:700; color:#D4A574;">片仔癀</div></div></td>
  3524. <td style="padding:10px; border:1px solid var(--border); font-size:0.74rem; color:var(--text-2);">名贵药</td>
  3525. <td style="padding:10px; border:1px solid var(--border); font-family:var(--font-mono); font-size:0.76rem; color:#D4A574; font-weight:700;">¥700/粒</td>
  3526. <td style="padding:10px; border:1px solid var(--border); font-size:0.72rem; color:var(--text-2);">¥700/次</td>
  3527. <td style="padding:10px; border:1px solid var(--border); font-size:0.72rem; color:var(--text-2);">奢侈品类</td>
  3528. <td style="padding:10px; border:1px solid var(--border); font-size:0.7rem; color:var(--text-2); line-height:1.4;">稀缺/礼品属性</td>
  3529. <td style="padding:10px; border:1px solid var(--border); font-size:0.7rem; color:#FF4D8D; line-height:1.4;">天价/非日常</td>
  3530. <td style="padding:10px; border:1px solid var(--border); font-size:0.68rem; color:var(--text-3);">—</td>
  3531. </tr>
  3532. <tr style="border:1px solid var(--border);">
  3533. <td style="padding:10px; border:1px solid var(--border); background:#FF8C4208;"><div style="display:flex; align-items:center; gap:6px;"><div style="font-size:1.2rem;">🍷</div><div style="font-size:0.8rem; font-weight:700; color:#FF8C42;">海王金樽</div></div></td>
  3534. <td style="padding:10px; border:1px solid var(--border); font-size:0.74rem; color:var(--text-2);">解酒</td>
  3535. <td style="padding:10px; border:1px solid var(--border); font-family:var(--font-mono); font-size:0.76rem; color:#FF8C42; font-weight:700;">¥68/盒</td>
  3536. <td style="padding:10px; border:1px solid var(--border); font-size:0.72rem; color:var(--text-2);">¥5/次</td>
  3537. <td style="padding:10px; border:1px solid var(--border); font-size:0.72rem; color:var(--text-2);">解酒 TOP</td>
  3538. <td style="padding:10px; border:1px solid var(--border); font-size:0.7rem; color:var(--text-2); line-height:1.4;">酒局心智</td>
  3539. <td style="padding:10px; border:1px solid var(--border); font-size:0.7rem; color:#FF4D8D; line-height:1.4;">无真解酒/体感弱</td>
  3540. <td style="padding:10px; border:1px solid var(--border); font-size:0.68rem; color:var(--text-3);">♡64: "为啥这么贵[石化R]四瓶奶64块这正常么..."</td>
  3541. </tr>
  3542. <!-- 江中肝纯行 -->
  3543. <tr style="background:#0085CA15; font-weight:700; border:2px solid #0085CA;">
  3544. <td style="padding:12px; border:1px solid #0085CA;"><div style="display:flex; align-items:center; gap:6px;"><div style="font-size:1.2rem;">⭐</div><div style="font-size:0.82rem; color:#0085CA;">江中肝纯片</div></div></td>
  3545. <td style="padding:12px; border:1px solid #0085CA; font-size:0.74rem; color:var(--text-1);">保健品 / 藤茶 DMY</td>
  3546. <td style="padding:12px; border:1px solid #0085CA; font-family:var(--font-mono); font-size:0.78rem; color:#0085CA;">¥79-199</td>
  3547. <td style="padding:12px; border:1px solid #0085CA; font-size:0.72rem; color:var(--text-1);">¥1.5-2.3/天</td>
  3548. <td style="padding:12px; border:1px solid #0085CA; font-size:0.72rem; color:var(--text-1);">目标 10 亿</td>
  3549. <td style="padding:12px; border:1px solid #0085CA; font-size:0.7rem; color:var(--text-1); line-height:1.4;">藤茶DMY + 江中品牌 + 全渠道</td>
  3550. <td style="padding:12px; border:1px solid #0085CA; font-size:0.7rem; color:var(--text-1); line-height:1.4;">新品心智待建</td>
  3551. <td style="padding:12px; border:1px solid #0085CA; font-size:0.7rem; color:#0085CA;">差异化甜点价位</td>
  3552. </tr>
  3553. </tbody>
  3554. </table>
  3555. </div>
  3556. <!-- 关键 VOC 原声 -->
  3557. <div class="fade-up" style="display:grid; grid-template-columns:1fr 1fr; gap:16px; margin-bottom:24px;">
  3558. <div style="background:var(--bg-1); border:1px solid #FF4D8D44; border-left:3px solid #FF4D8D; border-radius:var(--radius-md); padding:18px;">
  3559. <div class="text-mono text-xs" style="color:#FF4D8D; letter-spacing:0.15em; margin-bottom:10px;">💰 Swisse / 汤臣倍健 · 价格吐槽(6 条)</div>
  3560. <div style="padding:10px 12px; background:var(--bg-2); border-left:3px solid #FF4D8D; border-radius:4px; margin-bottom:8px;">
  3561. <div style="display:flex; justify-content:space-between; align-items:center; margin-bottom:4px;">
  3562. <div style="display:flex; align-items:center; gap:6px;">
  3563. <span style="font-size:0.72rem; font-weight:700; color:#FF4D8D;">匿名</span>
  3564. <span class="text-mono text-xs" style="color:var(--text-3);">📍浙江</span>
  3565. </div>
  3566. <div style="display:flex; align-items:center; gap:8px;">
  3567. <span class="text-mono text-xs" style="color:#FF4D8D;">♡ 64</span>
  3568. <span style="padding:1px 6px; background:#FF4D8D15; color:#FF4D8D; border-radius:2px; font-size:0.65rem;">护肝片</span>
  3569. </div>
  3570. </div>
  3571. <div style="font-size:0.78rem; color:var(--text-1); line-height:1.5;">为啥这么贵[石化R]四瓶奶64块这正常么</div>
  3572. </div>
  3573. <div style="padding:10px 12px; background:var(--bg-2); border-left:3px solid #FF4D8D; border-radius:4px; margin-bottom:8px;">
  3574. <div style="display:flex; justify-content:space-between; align-items:center; margin-bottom:4px;">
  3575. <div style="display:flex; align-items:center; gap:6px;">
  3576. <span style="font-size:0.72rem; font-weight:700; color:#FF4D8D;">Hearbreak</span>
  3577. </div>
  3578. <div style="display:flex; align-items:center; gap:8px;">
  3579. <span class="text-mono text-xs" style="color:#FF4D8D;">♡ 16</span>
  3580. <span style="padding:1px 6px; background:#FF4D8D15; color:#FF4D8D; border-radius:2px; font-size:0.65rem;">Swisse 水飞蓟</span>
  3581. </div>
  3582. </div>
  3583. <div style="font-size:0.78rem; color:var(--text-1); line-height:1.5;">买葵花的护肝片,我学中医的朋友推荐我的,便宜还是纯中药,刷医保</div>
  3584. </div>
  3585. <div style="padding:10px 12px; background:var(--bg-2); border-left:3px solid #FF4D8D; border-radius:4px; margin-bottom:8px;">
  3586. <div style="display:flex; justify-content:space-between; align-items:center; margin-bottom:4px;">
  3587. <div style="display:flex; align-items:center; gap:6px;">
  3588. <span style="font-size:0.72rem; font-weight:700; color:#FF4D8D;">四月是你的谎言</span>
  3589. </div>
  3590. <div style="display:flex; align-items:center; gap:8px;">
  3591. <span class="text-mono text-xs" style="color:#FF4D8D;">♡ 6</span>
  3592. <span style="padding:1px 6px; background:#FF4D8D15; color:#FF4D8D; border-radius:2px; font-size:0.65rem;">Swisse 水飞蓟</span>
  3593. </div>
  3594. </div>
  3595. <div style="font-size:0.78rem; color:var(--text-1); line-height:1.5;">要坚持吃一段时间吧,我吃了一个月感觉精神会好很多,不过官网太贵了,我都是找代购买的[笑哭R]</div>
  3596. </div>
  3597. </div>
  3598. <div style="background:var(--bg-1); border:1px solid #0085CA44; border-left:3px solid #0085CA; border-radius:var(--radius-md); padding:18px;">
  3599. <div class="text-mono text-xs" style="color:#0085CA; letter-spacing:0.15em; margin-bottom:10px;">💊 易善复 · 涨价吐槽(6 条)</div>
  3600. <div style="padding:10px 12px; background:var(--bg-2); border-left:3px solid #0085CA; border-radius:4px; margin-bottom:8px;">
  3601. <div style="display:flex; justify-content:space-between; align-items:center; margin-bottom:4px;">
  3602. <div style="display:flex; align-items:center; gap:6px;">
  3603. <span style="font-size:0.72rem; font-weight:700; color:#0085CA;">匿名</span>
  3604. </div>
  3605. <div style="display:flex; align-items:center; gap:8px;">
  3606. <span class="text-mono text-xs" style="color:#0085CA;">♡ 212</span>
  3607. <span style="padding:1px 6px; background:#0085CA15; color:#0085CA; border-radius:2px; font-size:0.65rem;">海王金樽</span>
  3608. </div>
  3609. </div>
  3610. <div style="font-size:0.78rem; color:var(--text-1); line-height:1.5;">我喝酒是属于越喝越贪酒的,不喝到废不走的那种,最后靠潜意识回家,目前没找到能第二天起来缓解办法,喝之前解酒药我也吃过有点用但不大,偶尔头疼,头不疼也是难受一整天,我基本是12点左右醒了,然后缓一会,差不多2点左右开始喝馄饨汤,馄饨吃不了两个…</div>
  3611. </div>
  3612. <div style="padding:10px 12px; background:var(--bg-2); border-left:3px solid #0085CA; border-radius:4px; margin-bottom:8px;">
  3613. <div style="display:flex; justify-content:space-between; align-items:center; margin-bottom:4px;">
  3614. <div style="display:flex; align-items:center; gap:6px;">
  3615. <span style="font-size:0.72rem; font-weight:700; color:#0085CA;">momo</span>
  3616. </div>
  3617. <div style="display:flex; align-items:center; gap:8px;">
  3618. <span class="text-mono text-xs" style="color:#0085CA;">♡ 139</span>
  3619. <span style="padding:1px 6px; background:#0085CA15; color:#0085CA; border-radius:2px; font-size:0.65rem;">护肝片 包装</span>
  3620. </div>
  3621. </div>
  3622. <div style="font-size:0.78rem; color:var(--text-1); line-height:1.5;">单身嘛?180 126 23 要不要考虑下</div>
  3623. </div>
  3624. <div style="padding:10px 12px; background:var(--bg-2); border-left:3px solid #0085CA; border-radius:4px; margin-bottom:8px;">
  3625. <div style="display:flex; justify-content:space-between; align-items:center; margin-bottom:4px;">
  3626. <div style="display:flex; align-items:center; gap:6px;">
  3627. <span style="font-size:0.72rem; font-weight:700; color:#0085CA;">匿名</span>
  3628. <span class="text-mono text-xs" style="color:var(--text-3);">📍浙江</span>
  3629. </div>
  3630. <div style="display:flex; align-items:center; gap:8px;">
  3631. <span class="text-mono text-xs" style="color:#0085CA;">♡ 64</span>
  3632. <span style="padding:1px 6px; background:#0085CA15; color:#0085CA; border-radius:2px; font-size:0.65rem;">护肝片</span>
  3633. </div>
  3634. </div>
  3635. <div style="font-size:0.78rem; color:var(--text-1); line-height:1.5;">为啥这么贵[石化R]四瓶奶64块这正常么</div>
  3636. </div>
  3637. </div>
  3638. </div>
  3639. <!-- 定位胜利 -->
  3640. <div class="fade-up" style="background:linear-gradient(135deg, #0085CA15, #2D9C5D10); border:2px solid #0085CA; border-radius:var(--radius-md); padding:24px;">
  3641. <div class="text-mono text-xs" style="color:#0085CA; letter-spacing:0.2em; margin-bottom:12px;">🏆 PRICING VICTORY · 江中肝纯价位胜点</div>
  3642. <div style="display:grid; grid-template-columns:repeat(3, 1fr); gap:14px;">
  3643. <div style="padding:14px; background:var(--bg-1); border-left:3px solid #0085CA; border-radius:4px;">
  3644. <div style="font-size:1.2rem; font-weight:800; color:var(--text-1); margin-bottom:6px;">vs Swisse</div>
  3645. <div style="font-size:0.82rem; color:var(--text-2); line-height:1.6;">江中 <strong style="color:#0085CA;">¥89-139</strong> vs Swisse <strong>¥158</strong> · <strong style="color:#2D9C5D;">便宜 15-30%</strong> + 藤茶 DMY 独家卖点 + 江中品牌背书</div>
  3646. </div>
  3647. <div style="padding:14px; background:var(--bg-1); border-left:3px solid #0085CA; border-radius:4px;">
  3648. <div style="font-size:1.2rem; font-weight:800; color:var(--text-1); margin-bottom:6px;">vs 易善复</div>
  3649. <div style="font-size:0.82rem; color:var(--text-2); line-height:1.6;">江中日均 <strong style="color:#0085CA;">¥1.5-2.3</strong> vs 易善复 <strong>¥2.7</strong> · <strong style="color:#2D9C5D;">无胃肠副作用</strong> + 长期可服 + 可做礼品</div>
  3650. </div>
  3651. <div style="padding:14px; background:var(--bg-1); border-left:3px solid #0085CA; border-radius:4px;">
  3652. <div style="font-size:1.2rem; font-weight:800; color:var(--text-1); margin-bottom:6px;">vs 海王金樽</div>
  3653. <div style="font-size:0.82rem; color:var(--text-2); line-height:1.6;">江中 12片 <strong style="color:#0085CA;">¥29-39</strong> vs 海王 <strong>¥68</strong> · <strong style="color:#2D9C5D;">真解酒体感</strong>(DMY vs 牛磺酸)+ 包装高级感</div>
  3654. </div>
  3655. </div>
  3656. </div>
  3657. </div>
  3658. </section>
  3659. <section class="report-section" id="pricing-4" data-tone="blue" data-slide-num="19">
  3660. <div class="section-inner">
  3661. <div class="section-head rise-in">
  3662. <div class="section-eyebrow" style="color:#0085CA;">3.4 · PRICE-VALUE PERCEPTION</div>
  3663. <h2 class="text-h1"><span class="headline-anim">价格-价值感知匹配度 · 四象限定位</span></h2>
  3664. <p class="section-sub">基于 VOC <strong style="color:#0085CA;">10</strong> 条"值/不值/性价比"评论,量化竞品感知价值;江中肝纯片锚定 <strong style="color:#0085CA;">"高价值-合理价位"</strong>右上象限</p>
  3665. </div>
  3666. <!-- 四象限 Value Map -->
  3667. <div class="fade-up" style="background:var(--bg-1); border:1px solid var(--border); border-radius:var(--radius-md); padding:28px; margin-bottom:24px;">
  3668. <div class="text-mono text-xs" style="color:#0085CA; letter-spacing:0.15em; margin-bottom:16px;">VALUE MAP · 价格(横轴)× 感知价值(纵轴)</div>
  3669. <svg viewBox="0 0 600 400" style="width:100%; max-width:700px; height:auto; display:block; margin:0 auto;">
  3670. <!-- 坐标轴 -->
  3671. <line x1="50" y1="350" x2="550" y2="350" stroke="var(--text-3)" stroke-width="1.5"/>
  3672. <line x1="50" y1="50" x2="50" y2="350" stroke="var(--text-3)" stroke-width="1.5"/>
  3673. <text x="540" y="380" text-anchor="end" font-family="ui-sans-serif" font-size="13" fill="var(--text-2)" font-weight="700">价格(¥)→</text>
  3674. <text x="20" y="60" text-anchor="start" font-family="ui-sans-serif" font-size="13" fill="var(--text-2)" font-weight="700">↑ 感知价值(VOC 评分)</text>
  3675. <!-- 象限分割 -->
  3676. <line x1="300" y1="50" x2="300" y2="350" stroke="var(--text-3)" stroke-width="0.8" stroke-dasharray="4,4" opacity="0.5"/>
  3677. <line x1="50" y1="200" x2="550" y2="200" stroke="var(--text-3)" stroke-width="0.8" stroke-dasharray="4,4" opacity="0.5"/>
  3678. <!-- 象限标签 -->
  3679. <text x="175" y="125" text-anchor="middle" font-family="ui-sans-serif" font-size="12" fill="#2D9C5D" font-weight="700" opacity="0.6">Ⅱ · 甜点区<tspan x="175" dy="16" font-size="10">(高价值 低价格)</tspan></text>
  3680. <text x="425" y="125" text-anchor="middle" font-family="ui-sans-serif" font-size="12" fill="#D4A574" font-weight="700" opacity="0.6">Ⅰ · 高端区<tspan x="425" dy="16" font-size="10">(高价值 高价格)</tspan></text>
  3681. <text x="175" y="275" text-anchor="middle" font-family="ui-sans-serif" font-size="12" fill="#2D9C5D" font-weight="700" opacity="0.6">Ⅲ · 基础区<tspan x="175" dy="16" font-size="10">(低价值 低价格)</tspan></text>
  3682. <text x="425" y="275" text-anchor="middle" font-family="ui-sans-serif" font-size="12" fill="#FF4D8D" font-weight="700" opacity="0.6">Ⅳ · 智商税区<tspan x="425" dy="16" font-size="10">(低价值 高价格)</tspan></text>
  3683. <!-- 产品散点 -->
  3684. <g>
  3685. <circle cx="325" cy="95" r="28" fill="#0085CA" opacity="0.25"/>
  3686. <circle cx="325" cy="95" r="22" fill="#0085CA" stroke="#fff" stroke-width="3"/>
  3687. <text x="325" y="99" text-anchor="middle" font-family="ui-sans-serif" font-size="12" fill="#fff" font-weight="900">⭐</text>
  3688. <text x="325" y="133" text-anchor="middle" font-family="ui-sans-serif" font-size="11" fill="#0085CA" font-weight="800">⭐ 江中肝纯</text>
  3689. </g>
  3690. <g>
  3691. <circle cx="400" cy="185" r="14" fill="#FF4D8D" stroke="var(--bg-1)" stroke-width="2"/>
  3692. <text x="400" y="189" text-anchor="middle" font-family="ui-sans-serif" font-size="10" fill="#fff" font-weight="700">S</text>
  3693. <text x="400" y="215" text-anchor="middle" font-family="ui-sans-serif" font-size="10" fill="#FF4D8D" font-weight="700">Swisse</text>
  3694. </g>
  3695. <g>
  3696. <circle cx="325" cy="215" r="14" fill="#8B5CF6" stroke="var(--bg-1)" stroke-width="2"/>
  3697. <text x="325" y="219" text-anchor="middle" font-family="ui-sans-serif" font-size="10" fill="#fff" font-weight="700">汤</text>
  3698. <text x="325" y="245" text-anchor="middle" font-family="ui-sans-serif" font-size="10" fill="#8B5CF6" font-weight="700">汤臣倍健</text>
  3699. </g>
  3700. <g>
  3701. <circle cx="150" cy="245" r="14" fill="#2D9C5D" stroke="var(--bg-1)" stroke-width="2"/>
  3702. <text x="150" y="249" text-anchor="middle" font-family="ui-sans-serif" font-size="10" fill="#fff" font-weight="700">护</text>
  3703. <text x="150" y="275" text-anchor="middle" font-family="ui-sans-serif" font-size="10" fill="#2D9C5D" font-weight="700">护肝片</text>
  3704. </g>
  3705. <g>
  3706. <circle cx="425" cy="200" r="14" fill="#0085CA" stroke="var(--bg-1)" stroke-width="2"/>
  3707. <text x="425" y="204" text-anchor="middle" font-family="ui-sans-serif" font-size="10" fill="#fff" font-weight="700">易</text>
  3708. <text x="425" y="230" text-anchor="middle" font-family="ui-sans-serif" font-size="10" fill="#0085CA" font-weight="700">易善复</text>
  3709. </g>
  3710. <g>
  3711. <circle cx="525" cy="140" r="14" fill="#D4A574" stroke="var(--bg-1)" stroke-width="2"/>
  3712. <text x="525" y="144" text-anchor="middle" font-family="ui-sans-serif" font-size="10" fill="#fff" font-weight="700">片</text>
  3713. <text x="525" y="170" text-anchor="middle" font-family="ui-sans-serif" font-size="10" fill="#D4A574" font-weight="700">片仔癀</text>
  3714. </g>
  3715. <g>
  3716. <circle cx="350" cy="275" r="14" fill="#FF8C42" stroke="var(--bg-1)" stroke-width="2"/>
  3717. <text x="350" y="279" text-anchor="middle" font-family="ui-sans-serif" font-size="10" fill="#fff" font-weight="700">海</text>
  3718. <text x="350" y="305" text-anchor="middle" font-family="ui-sans-serif" font-size="10" fill="#FF8C42" font-weight="700">海王金樽</text>
  3719. </g>
  3720. <!-- 横轴刻度 -->
  3721. <g font-family="ui-monospace, monospace" font-size="10" fill="var(--text-3)">
  3722. <text x="100" y="370" text-anchor="middle">¥10</text>
  3723. <text x="200" y="370" text-anchor="middle">¥30</text>
  3724. <text x="300" y="370" text-anchor="middle">¥60</text>
  3725. <text x="400" y="370" text-anchor="middle">¥100</text>
  3726. <text x="500" y="370" text-anchor="middle">¥200+</text>
  3727. </g>
  3728. </svg>
  3729. </div>
  3730. <!-- VOC 原声 + 矩阵总结 -->
  3731. <div class="fade-up" style="display:grid; grid-template-columns:2fr 1fr; gap:16px; margin-bottom:24px;">
  3732. <div style="background:var(--bg-1); border:1px solid #0085CA44; border-left:3px solid #0085CA; border-radius:var(--radius-md); padding:18px;">
  3733. <div class="text-mono text-xs" style="color:#0085CA; letter-spacing:0.15em; margin-bottom:10px;">💬 VOC 价值感知原声 · Top 5</div>
  3734. <div style="padding:10px 12px; background:var(--bg-2); border-left:3px solid #0085CA; border-radius:4px; margin-bottom:8px;">
  3735. <div style="display:flex; justify-content:space-between; align-items:center; margin-bottom:4px;">
  3736. <div style="display:flex; align-items:center; gap:6px;">
  3737. <span style="font-size:0.72rem; font-weight:700; color:#0085CA;">小红薯66DD6EB5</span>
  3738. </div>
  3739. <div style="display:flex; align-items:center; gap:8px;">
  3740. <span class="text-mono text-xs" style="color:#0085CA;">♡ 17</span>
  3741. <span style="padding:1px 6px; background:#0085CA15; color:#0085CA; border-radius:2px; font-size:0.65rem;">Swisse 水飞蓟</span>
  3742. </div>
  3743. </div>
  3744. <div style="font-size:0.78rem; color:var(--text-1); line-height:1.5;">315曝光了这是智商税</div>
  3745. </div>
  3746. <div style="padding:10px 12px; background:var(--bg-2); border-left:3px solid #0085CA; border-radius:4px; margin-bottom:8px;">
  3747. <div style="display:flex; justify-content:space-between; align-items:center; margin-bottom:4px;">
  3748. <div style="display:flex; align-items:center; gap:6px;">
  3749. <span style="font-size:0.72rem; font-weight:700; color:#0085CA;">匿名</span>
  3750. </div>
  3751. <div style="display:flex; align-items:center; gap:8px;">
  3752. <span class="text-mono text-xs" style="color:#0085CA;">♡ 9</span>
  3753. <span style="padding:1px 6px; background:#0085CA15; color:#0085CA; border-radius:2px; font-size:0.65rem;">脂肪肝</span>
  3754. </div>
  3755. </div>
  3756. <div style="font-size:0.78rem; color:var(--text-1); line-height:1.5;">前几个看了一个医生的视频,说的脂肪肝就是胰岛素抵抗的结果。所以肯定胰岛素抵抗了。尽管脂肪肝已经逆转到几乎可以忽略了,但还是吓出一身冷汗。因为好多年了,都没放心上,医生也说是轻度,没什么太大问题。去年肝功能体检,只有一样合格,其他全部不合格。…</div>
  3757. </div>
  3758. <div style="padding:10px 12px; background:var(--bg-2); border-left:3px solid #0085CA; border-radius:4px; margin-bottom:8px;">
  3759. <div style="display:flex; justify-content:space-between; align-items:center; margin-bottom:4px;">
  3760. <div style="display:flex; align-items:center; gap:6px;">
  3761. <span style="font-size:0.72rem; font-weight:700; color:#0085CA;">大表姐优选❤️</span>
  3762. <span class="text-mono text-xs" style="color:var(--text-3);">📍河南</span>
  3763. </div>
  3764. <div style="display:flex; align-items:center; gap:8px;">
  3765. <span class="text-mono text-xs" style="color:#0085CA;">♡ 7</span>
  3766. <span style="padding:1px 6px; background:#0085CA15; color:#0085CA; border-radius:2px; font-size:0.65rem;">江中肝纯片 (抖音)</span>
  3767. </div>
  3768. </div>
  3769. <div style="font-size:0.78rem; color:var(--text-1); line-height:1.5;">江中老牌子值得信赖[比心]</div>
  3770. </div>
  3771. <div style="padding:10px 12px; background:var(--bg-2); border-left:3px solid #0085CA; border-radius:4px; margin-bottom:8px;">
  3772. <div style="display:flex; justify-content:space-between; align-items:center; margin-bottom:4px;">
  3773. <div style="display:flex; align-items:center; gap:6px;">
  3774. <span style="font-size:0.72rem; font-weight:700; color:#0085CA;">只叫哥哥</span>
  3775. </div>
  3776. <div style="display:flex; align-items:center; gap:8px;">
  3777. <span class="text-mono text-xs" style="color:#0085CA;">♡ 7</span>
  3778. <span style="padding:1px 6px; background:#0085CA15; color:#0085CA; border-radius:2px; font-size:0.65rem;">葵花护肝片</span>
  3779. </div>
  3780. </div>
  3781. <div style="font-size:0.78rem; color:var(--text-1); line-height:1.5;">黑豆甘草汤可以网上了解一下,还不伤肝,刚开始一个星期吃两次,自己煮性价比高,我现在一个煮一次</div>
  3782. </div>
  3783. <div style="padding:10px 12px; background:var(--bg-2); border-left:3px solid #0085CA; border-radius:4px; margin-bottom:8px;">
  3784. <div style="display:flex; justify-content:space-between; align-items:center; margin-bottom:4px;">
  3785. <div style="display:flex; align-items:center; gap:6px;">
  3786. <span style="font-size:0.72rem; font-weight:700; color:#0085CA;">晨伊</span>
  3787. <span class="text-mono text-xs" style="color:var(--text-3);">📍河北</span>
  3788. </div>
  3789. <div style="display:flex; align-items:center; gap:8px;">
  3790. <span class="text-mono text-xs" style="color:#0085CA;">♡ 3</span>
  3791. <span style="padding:1px 6px; background:#0085CA15; color:#0085CA; border-radius:2px; font-size:0.65rem;">应酬解酒 (抖音)</span>
  3792. </div>
  3793. </div>
  3794. <div style="font-size:0.78rem; color:var(--text-1); line-height:1.5;">大冬天的 吃葡萄? 喝的酒都没葡萄贵 值不的</div>
  3795. </div>
  3796. </div>
  3797. <div style="background:linear-gradient(135deg, #0085CA10, #D4A57408); border:1px solid #0085CA44; border-radius:var(--radius-md); padding:18px;">
  3798. <div class="text-mono text-xs" style="color:#0085CA; letter-spacing:0.15em; margin-bottom:12px;">📊 定位策略</div>
  3799. <div style="display:grid; gap:10px;">
  3800. <div style="padding:10px 12px; background:#2D9C5D15; border-left:3px solid #2D9C5D; border-radius:4px;">
  3801. <div style="font-size:0.82rem; font-weight:700; color:var(--text-1); margin-bottom:3px;">⭐ 江中 Ⅱ 象限</div>
  3802. <div style="font-size:0.72rem; color:var(--text-2); line-height:1.5;">高价值(藤茶 DMY 独家)+ 合理价位 → 性价比心智</div>
  3803. </div>
  3804. <div style="padding:10px 12px; background:#D4A57415; border-left:3px solid #D4A574; border-radius:4px;">
  3805. <div style="font-size:0.82rem; font-weight:700; color:var(--text-1); margin-bottom:3px;">🎁 礼品版 Ⅰ 象限</div>
  3806. <div style="font-size:0.72rem; color:var(--text-2); line-height:1.5;">双瓶/四瓶礼盒 ¥298-898 → 高端区溢价,对标片仔癀</div>
  3807. </div>
  3808. <div style="padding:10px 12px; background:#FF4D8D15; border-left:3px solid #FF4D8D; border-radius:4px;">
  3809. <div style="font-size:0.82rem; font-weight:700; color:var(--text-1); margin-bottom:3px;">⚠️ 规避 Ⅳ 象限</div>
  3810. <div style="font-size:0.72rem; color:var(--text-2); line-height:1.5;">海王金樽 = 智商税区反面教材,必须靠 DMY 真体感守住价值线</div>
  3811. </div>
  3812. </div>
  3813. </div>
  3814. </div>
  3815. <!-- 决策阈值评估 -->
  3816. <div class="fade-up" style="background:linear-gradient(135deg, #0085CA10, #2D9C5D08); border:1px solid #0085CA44; border-radius:var(--radius-md); padding:24px;">
  3817. <div class="text-mono text-xs" style="color:#0085CA; letter-spacing:0.15em; margin-bottom:14px;">DECISION CHECKPOINT · 定价模块达标评估(≥80% 接受度)</div>
  3818. <div style="display:grid; grid-template-columns:repeat(4, 1fr); gap:14px;">
  3819. <div style="text-align:center; padding:14px; background:#0085CA08; border-radius:8px;">
  3820. <div style="font-family:var(--font-head); font-weight:900; font-size:2.4rem; color:#0085CA; line-height:1;">82</div>
  3821. <div class="text-mono text-xs" style="color:#0085CA; margin-top:4px; letter-spacing:0.08em;">药线</div>
  3822. <div style="font-size:0.78rem; color:var(--text-1); font-weight:700; margin-top:6px;">✅ 达标</div>
  3823. </div>
  3824. <div style="text-align:center; padding:14px; background:#D4A57408; border-radius:8px;">
  3825. <div style="font-family:var(--font-head); font-weight:900; font-size:2.4rem; color:#D4A574; line-height:1;">78</div>
  3826. <div class="text-mono text-xs" style="color:#D4A574; margin-top:4px; letter-spacing:0.08em;">礼品</div>
  3827. <div style="font-size:0.78rem; color:var(--text-1); font-weight:700; margin-top:6px;">⚠️ 临界</div>
  3828. </div>
  3829. <div style="text-align:center; padding:14px; background:#FF8C4208; border-radius:8px;">
  3830. <div style="font-family:var(--font-head); font-weight:900; font-size:2.4rem; color:#FF8C42; line-height:1;">85</div>
  3831. <div class="text-mono text-xs" style="color:#FF8C42; margin-top:4px; letter-spacing:0.08em;">餐饮</div>
  3832. <div style="font-size:0.78rem; color:var(--text-1); font-weight:700; margin-top:6px;">✅ 达标</div>
  3833. </div>
  3834. <div style="text-align:center; padding:14px; background:#2D9C5D08; border-radius:8px;">
  3835. <div style="font-family:var(--font-head); font-weight:900; font-size:2.4rem; color:#2D9C5D; line-height:1;">80</div>
  3836. <div class="text-mono text-xs" style="color:#2D9C5D; margin-top:4px; letter-spacing:0.08em;">电商</div>
  3837. <div style="font-size:0.78rem; color:var(--text-1); font-weight:700; margin-top:6px;">✅ 达标</div>
  3838. </div>
  3839. </div>
  3840. <div style="margin-top:14px; padding:10px 14px; background:var(--bg-1); border-left:3px solid #0085CA; border-radius:4px; font-size:0.82rem; color:var(--text-1); line-height:1.55;">
  3841. <strong style="color:#0085CA;">结论:</strong>3/4 渠道定价达标(≥80%)· 礼品渠道临界(78%),需通过 <strong>颜值+藤茶概念</strong>强化价值感知至 ≥85%,再推 ¥298-898 高端 SKU。
  3842. </div>
  3843. </div>
  3844. </div>
  3845. </section>
  3846. <section class="report-section" id="positioning" data-tone="purple" data-slide-num="20/42" style="justify-content:center;">
  3847. <div class="section-inner">
  3848. <div class="rise-in" style="text-align:center; margin-bottom:48px;">
  3849. <div class="text-mono" style="color:#8B5CF6; letter-spacing:0.35em; font-size:0.8rem; margin-bottom:20px;">CHAPTER 4 · POSITIONING</div>
  3850. <h1 style="font-family:var(--font-head); font-weight:900; font-size:clamp(4rem, 10vw, 8rem); line-height:0.92; letter-spacing:-0.04em; color:#fff; background:linear-gradient(135deg, #fff 30%, #8B5CF6 100%); -webkit-background-clip:text; background-clip:text; -webkit-text-fill-color:transparent; margin:0 0 18px;">
  3851. 定位与话术
  3852. </h1>
  3853. <p class="text-poster" style="font-size:clamp(1.2rem, 2.2vw, 1.8rem); color:var(--text-2); font-weight:500; max-width:820px; margin:0 auto; line-height:1.5;">藤茶 DMY 差异化心智 × 解酒社交货币 × 安全无副作用话术</p>
  3854. </div>
  3855. <div class="fade-up" style="max-width:920px; margin:0 auto 40px; padding:28px 36px; background:rgba(255,255,255,0.02); border-left:4px solid #8B5CF6; border-radius:0 var(--radius-md) var(--radius-md) 0;">
  3856. <div class="text-mono text-xs" style="color:#8B5CF6; letter-spacing:0.15em; margin-bottom:10px;">KEY TAKE · 本章核心</div>
  3857. <div style="font-size:1.15rem; line-height:1.75; color:var(--text-1);">唯一壁垒:<strong style="color:#8B5CF6;">藤茶 DMY(二氢杨梅素)</strong>,区别水飞蓟宾/奶蓟草的新一代中式草本。三重全场景护肝:解酒(加速乙醛代谢)+脂肪肝(激活AMPK)+药物肝(增强谷胱甘肽),支撑"应酬分一片"<strong style="color:#FF4D8D;">社交货币</strong>心智。</div>
  3858. </div>
  3859. <div class="grid fade-up" style="grid-template-columns:repeat(5, 1fr); gap:14px; max-width:1100px; margin:0 auto;">
  3860. <div style="background:var(--bg-1); border:1px solid var(--border); border-radius:var(--radius-md); padding:18px 16px; display:flex; flex-direction:column; gap:8px; border-top:2px solid #8B5CF6;">
  3861. <div class="text-mono text-xs" style="color:#8B5CF6; letter-spacing:0.1em; font-weight:700;">4.1</div>
  3862. <div style="font-weight:700; font-size:0.86rem; color:var(--text-1); line-height:1.35;">藤茶/DMY 概念认知度</div>
  3863. </div>
  3864. <div style="background:var(--bg-1); border:1px solid var(--border); border-radius:var(--radius-md); padding:18px 16px; display:flex; flex-direction:column; gap:8px; border-top:2px solid #8B5CF6;">
  3865. <div class="text-mono text-xs" style="color:#8B5CF6; letter-spacing:0.1em; font-weight:700;">4.2</div>
  3866. <div style="font-weight:700; font-size:0.86rem; color:var(--text-1); line-height:1.35;">安全无副作用话术·药食同源</div>
  3867. </div>
  3868. <div style="background:var(--bg-1); border:1px solid var(--border); border-radius:var(--radius-md); padding:18px 16px; display:flex; flex-direction:column; gap:8px; border-top:2px solid #8B5CF6;">
  3869. <div class="text-mono text-xs" style="color:#8B5CF6; letter-spacing:0.1em; font-weight:700;">4.3</div>
  3870. <div style="font-weight:700; font-size:0.86rem; color:var(--text-1); line-height:1.35;">解酒场景话术 AB 测试</div>
  3871. </div>
  3872. <div style="background:var(--bg-1); border:1px solid var(--border); border-radius:var(--radius-md); padding:18px 16px; display:flex; flex-direction:column; gap:8px; border-top:2px solid #8B5CF6;">
  3873. <div class="text-mono text-xs" style="color:#8B5CF6; letter-spacing:0.1em; font-weight:700;">4.4</div>
  3874. <div style="font-weight:700; font-size:0.86rem; color:var(--text-1); line-height:1.35;">社交货币话术·酒局面子</div>
  3875. </div>
  3876. <div style="background:var(--bg-1); border:1px solid var(--border); border-radius:var(--radius-md); padding:18px 16px; display:flex; flex-direction:column; gap:8px; border-top:2px solid #8B5CF6;">
  3877. <div class="text-mono text-xs" style="color:#8B5CF6; letter-spacing:0.1em; font-weight:700;">4.5</div>
  3878. <div style="font-weight:700; font-size:0.86rem; color:var(--text-1); line-height:1.35;">分渠道话术适配 × 差异化记忆点</div>
  3879. </div>
  3880. </div>
  3881. <div class="fade-up text-mono text-xs" style="margin-top:56px; text-align:center; color:var(--text-3); letter-spacing:0.2em;">
  3882. ↓ 滚动查看 5 个子章节展开
  3883. </div>
  3884. </div>
  3885. </section>
  3886. <section class="report-section" id="positioning-1" data-tone="purple" data-slide-num="21">
  3887. <div class="section-inner">
  3888. <div class="section-head rise-in">
  3889. <div class="section-eyebrow" style="color:#8B5CF6;">4.1 · TENGCHA / DMY AWARENESS</div>
  3890. <h2 class="text-h1"><span class="headline-anim">藤茶 / DMY 概念认知度</span></h2>
  3891. <p class="section-sub">差异化心智关键:<strong style="color:#8B5CF6;">藤茶 + 二氢杨梅素(DMY)</strong> vs 水飞蓟的认知度测量 · 基于 <strong style="color:#8B5CF6;">367</strong> 条 VOC 评论</p>
  3892. </div>
  3893. <!-- 概念认知词频 -->
  3894. <div class="fade-up" style="background:var(--bg-1); border:1px solid var(--border); border-radius:var(--radius-md); padding:24px; margin-bottom:24px;">
  3895. <div class="text-mono text-xs" style="color:#8B5CF6; letter-spacing:0.15em; margin-bottom:14px;">CONCEPT AWARENESS · 藤茶 / DMY / 水飞蓟 VOC 主题频次</div>
  3896. <div style="display:grid; grid-template-columns:repeat(3, 1fr); gap:14px;">
  3897. <div style="padding:14px; background:var(--bg-2); border-left:3px solid #8B5CF6; border-radius:4px;">
  3898. <div style="display:flex; justify-content:space-between; align-items:baseline; margin-bottom:6px;">
  3899. <div style="font-size:0.82rem; font-weight:700; color:var(--text-1);">藤茶认知·了解</div>
  3900. <div style="font-family:var(--font-mono); font-size:0.76rem; color:#8B5CF6; font-weight:700;">26 · 7%</div>
  3901. </div>
  3902. <div style="height:5px; background:var(--bg-1); border-radius:3px; overflow:hidden; margin-bottom:6px;">
  3903. <div style="width:21%; height:100%; background:#8B5CF6;"></div>
  3904. </div>
  3905. <div style="font-size:0.68rem; color:var(--text-3);">平均 ♡ <strong style="color:#8B5CF6;">0</strong></div>
  3906. <div style="font-size:0.68rem; color:var(--text-2); font-style:italic; line-height:1.45; padding-top:6px; margin-top:6px; border-top:1px dashed var(--border);">💬 "关于显齿蛇葡萄研究报告文献"</div>
  3907. </div>
  3908. <div style="padding:14px; background:var(--bg-2); border-left:3px solid #8B5CF6; border-radius:4px;">
  3909. <div style="display:flex; justify-content:space-between; align-items:baseline; margin-bottom:6px;">
  3910. <div style="font-size:0.82rem; font-weight:700; color:var(--text-1);">DMY 科普·二氢杨梅素</div>
  3911. <div style="font-family:var(--font-mono); font-size:0.76rem; color:#8B5CF6; font-weight:700;">4 · 1%</div>
  3912. </div>
  3913. <div style="height:5px; background:var(--bg-1); border-radius:3px; overflow:hidden; margin-bottom:6px;">
  3914. <div style="width:3%; height:100%; background:#8B5CF6;"></div>
  3915. </div>
  3916. <div style="font-size:0.68rem; color:var(--text-3);">平均 ♡ <strong style="color:#8B5CF6;">9</strong></div>
  3917. <div style="font-size:0.68rem; color:var(--text-2); font-style:italic; line-height:1.45; padding-top:6px; margin-top:6px; border-top:1px dashed var(--border);">💬 "高含量核心成分总黄酮的江中护肝片,官旗get同款"</div>
  3918. </div>
  3919. <div style="padding:14px; background:var(--bg-2); border-left:3px solid #8B5CF6; border-radius:4px;">
  3920. <div style="display:flex; justify-content:space-between; align-items:baseline; margin-bottom:6px;">
  3921. <div style="font-size:0.82rem; font-weight:700; color:var(--text-1);">未知·不了解</div>
  3922. <div style="font-family:var(--font-mono); font-size:0.76rem; color:#8B5CF6; font-weight:700;">8 · 2%</div>
  3923. </div>
  3924. <div style="height:5px; background:var(--bg-1); border-radius:3px; overflow:hidden; margin-bottom:6px;">
  3925. <div style="width:6%; height:100%; background:#8B5CF6;"></div>
  3926. </div>
  3927. <div style="font-size:0.68rem; color:var(--text-3);">平均 ♡ <strong style="color:#8B5CF6;">7</strong></div>
  3928. <div style="font-size:0.68rem; color:var(--text-2); font-style:italic; line-height:1.45; padding-top:6px; margin-top:6px; border-top:1px dashed var(--border);">💬 "第一次再小红书里面安利 牛"</div>
  3929. </div>
  3930. <div style="padding:14px; background:var(--bg-2); border-left:3px solid #8B5CF6; border-radius:4px;">
  3931. <div style="display:flex; justify-content:space-between; align-items:baseline; margin-bottom:6px;">
  3932. <div style="font-size:0.82rem; font-weight:700; color:var(--text-1);">功效·护肝</div>
  3933. <div style="font-family:var(--font-mono); font-size:0.76rem; color:#8B5CF6; font-weight:700;">33 · 9%</div>
  3934. </div>
  3935. <div style="height:5px; background:var(--bg-1); border-radius:3px; overflow:hidden; margin-bottom:6px;">
  3936. <div style="width:27%; height:100%; background:#8B5CF6;"></div>
  3937. </div>
  3938. <div style="font-size:0.68rem; color:var(--text-3);">平均 ♡ <strong style="color:#8B5CF6;">7</strong></div>
  3939. <div style="font-size:0.68rem; color:var(--text-2); font-style:italic; line-height:1.45; padding-top:6px; margin-top:6px; border-top:1px dashed var(--border);">💬 "肝损不可逆 不要自己瞎吃护肝药,去医院找肝病科医生做一个肝肾常规 看指标让医生给你开 ,所有的药物都会对肝脏造成药物损伤..."</div>
  3940. </div>
  3941. <div style="padding:14px; background:var(--bg-2); border-left:3px solid #8B5CF6; border-radius:4px;">
  3942. <div style="display:flex; justify-content:space-between; align-items:baseline; margin-bottom:6px;">
  3943. <div style="font-size:0.82rem; font-weight:700; color:var(--text-1);">对比·优于水飞蓟</div>
  3944. <div style="font-family:var(--font-mono); font-size:0.76rem; color:#8B5CF6; font-weight:700;">0 · 0%</div>
  3945. </div>
  3946. <div style="height:5px; background:var(--bg-1); border-radius:3px; overflow:hidden; margin-bottom:6px;">
  3947. <div style="width:0%; height:100%; background:#8B5CF6;"></div>
  3948. </div>
  3949. <div style="font-size:0.68rem; color:var(--text-3);">平均 ♡ <strong style="color:#8B5CF6;">0</strong></div>
  3950. </div>
  3951. <div style="padding:14px; background:var(--bg-2); border-left:3px solid #8B5CF6; border-radius:4px;">
  3952. <div style="display:flex; justify-content:space-between; align-items:baseline; margin-bottom:6px;">
  3953. <div style="font-size:0.82rem; font-weight:700; color:var(--text-1);">药食同源·中式</div>
  3954. <div style="font-family:var(--font-mono); font-size:0.76rem; color:#8B5CF6; font-weight:700;">3 · 1%</div>
  3955. </div>
  3956. <div style="height:5px; background:var(--bg-1); border-radius:3px; overflow:hidden; margin-bottom:6px;">
  3957. <div style="width:3%; height:100%; background:#8B5CF6;"></div>
  3958. </div>
  3959. <div style="font-size:0.68rem; color:var(--text-3);">平均 ♡ <strong style="color:#8B5CF6;">1</strong></div>
  3960. <div style="font-size:0.68rem; color:var(--text-2); font-style:italic; line-height:1.45; padding-top:6px; margin-top:6px; border-top:1px dashed var(--border);">💬 "我学中医的朋友,给我把脉推荐我买的这个"</div>
  3961. </div>
  3962. </div>
  3963. </div>
  3964. <!-- 双列 VOC 原声 -->
  3965. <div class="fade-up" style="display:grid; grid-template-columns:1fr 1fr; gap:16px; margin-bottom:24px;">
  3966. <div style="background:var(--bg-1); border:1px solid #2D9C5D44; border-left:3px solid #2D9C5D; border-radius:var(--radius-md); padding:18px;">
  3967. <div class="text-mono text-xs" style="color:#2D9C5D; letter-spacing:0.15em; margin-bottom:10px;">🌿 "藤茶 护肝" 原声 · Top 4</div>
  3968. <div style="padding:10px 12px; background:var(--bg-2); border-left:3px solid #2D9C5D; border-radius:4px; margin-bottom:8px;">
  3969. <div style="display:flex; justify-content:space-between; align-items:center; margin-bottom:4px;">
  3970. <div style="display:flex; align-items:center; gap:6px;">
  3971. <span style="font-size:0.72rem; font-weight:700; color:#2D9C5D;">小可爱。</span>
  3972. </div>
  3973. <div style="display:flex; align-items:center; gap:8px;">
  3974. <span class="text-mono text-xs" style="color:#2D9C5D;">♡ 2</span>
  3975. <span style="padding:1px 6px; background:#2D9C5D15; color:#2D9C5D; border-radius:2px; font-size:0.65rem;">藤茶 护肝</span>
  3976. </div>
  3977. </div>
  3978. <div style="font-size:0.78rem; color:var(--text-1); line-height:1.5;">是哪里产的</div>
  3979. </div>
  3980. <div style="padding:10px 12px; background:var(--bg-2); border-left:3px solid #2D9C5D; border-radius:4px; margin-bottom:8px;">
  3981. <div style="display:flex; justify-content:space-between; align-items:center; margin-bottom:4px;">
  3982. <div style="display:flex; align-items:center; gap:6px;">
  3983. <span style="font-size:0.72rem; font-weight:700; color:#2D9C5D;">顺顺东</span>
  3984. <span class="text-mono text-xs" style="color:var(--text-3);">📍广西</span>
  3985. </div>
  3986. <div style="display:flex; align-items:center; gap:8px;">
  3987. <span class="text-mono text-xs" style="color:#2D9C5D;">♡ 2</span>
  3988. <span style="padding:1px 6px; background:#2D9C5D15; color:#2D9C5D; border-radius:2px; font-size:0.65rem;">藤茶 护肝</span>
  3989. </div>
  3990. </div>
  3991. <div style="font-size:0.78rem; color:var(--text-1); line-height:1.5;">清明节摘的</div>
  3992. </div>
  3993. <div style="padding:10px 12px; background:var(--bg-2); border-left:3px solid #2D9C5D; border-radius:4px; margin-bottom:8px;">
  3994. <div style="display:flex; justify-content:space-between; align-items:center; margin-bottom:4px;">
  3995. <div style="display:flex; align-items:center; gap:6px;">
  3996. <span style="font-size:0.72rem; font-weight:700; color:#2D9C5D;">田金福</span>
  3997. </div>
  3998. <div style="display:flex; align-items:center; gap:8px;">
  3999. <span class="text-mono text-xs" style="color:#2D9C5D;">♡ 1</span>
  4000. <span style="padding:1px 6px; background:#2D9C5D15; color:#2D9C5D; border-radius:2px; font-size:0.65rem;">藤茶 护肝</span>
  4001. </div>
  4002. </div>
  4003. <div style="font-size:0.78rem; color:var(--text-1); line-height:1.5;">肾功能不全者能喝吗?</div>
  4004. </div>
  4005. <div style="padding:10px 12px; background:var(--bg-2); border-left:3px solid #2D9C5D; border-radius:4px; margin-bottom:8px;">
  4006. <div style="display:flex; justify-content:space-between; align-items:center; margin-bottom:4px;">
  4007. <div style="display:flex; align-items:center; gap:6px;">
  4008. <span style="font-size:0.72rem; font-weight:700; color:#2D9C5D;">maya</span>
  4009. </div>
  4010. <div style="display:flex; align-items:center; gap:8px;">
  4011. <span class="text-mono text-xs" style="color:#2D9C5D;">♡ 1</span>
  4012. <span style="padding:1px 6px; background:#2D9C5D15; color:#2D9C5D; border-radius:2px; font-size:0.65rem;">藤茶 护肝</span>
  4013. </div>
  4014. </div>
  4015. <div style="font-size:0.78rem; color:var(--text-1); line-height:1.5;">低血压可以喝吗</div>
  4016. </div>
  4017. </div>
  4018. <div style="background:var(--bg-1); border:1px solid #8B5CF644; border-left:3px solid #8B5CF6; border-radius:var(--radius-md); padding:18px;">
  4019. <div class="text-mono text-xs" style="color:#8B5CF6; letter-spacing:0.15em; margin-bottom:10px;">🔬 "二氢杨梅素" 原声 · Top 4</div>
  4020. <div style="padding:10px 12px; background:var(--bg-2); border-left:3px solid #8B5CF6; border-radius:4px; margin-bottom:8px;">
  4021. <div style="display:flex; justify-content:space-between; align-items:center; margin-bottom:4px;">
  4022. <div style="display:flex; align-items:center; gap:6px;">
  4023. <span style="font-size:0.72rem; font-weight:700; color:#8B5CF6;">KaKa</span>
  4024. </div>
  4025. <div style="display:flex; align-items:center; gap:8px;">
  4026. <span class="text-mono text-xs" style="color:#8B5CF6;">♡ 2</span>
  4027. <span style="padding:1px 6px; background:#8B5CF615; color:#8B5CF6; border-radius:2px; font-size:0.65rem;">二氢杨梅素</span>
  4028. </div>
  4029. </div>
  4030. <div style="font-size:0.78rem; color:var(--text-1); line-height:1.5;">这玩意会有农残吗?</div>
  4031. </div>
  4032. <div style="padding:10px 12px; background:var(--bg-2); border-left:3px solid #8B5CF6; border-radius:4px; margin-bottom:8px;">
  4033. <div style="display:flex; justify-content:space-between; align-items:center; margin-bottom:4px;">
  4034. <div style="display:flex; align-items:center; gap:6px;">
  4035. <span style="font-size:0.72rem; font-weight:700; color:#8B5CF6;">小酥肉呐</span>
  4036. </div>
  4037. <div style="display:flex; align-items:center; gap:8px;">
  4038. <span class="text-mono text-xs" style="color:#8B5CF6;">♡ 2</span>
  4039. <span style="padding:1px 6px; background:#8B5CF615; color:#8B5CF6; border-radius:2px; font-size:0.65rem;">二氢杨梅素</span>
  4040. </div>
  4041. </div>
  4042. <div style="font-size:0.78rem; color:var(--text-1); line-height:1.5;">风湿能喝么?</div>
  4043. </div>
  4044. <div style="padding:10px 12px; background:var(--bg-2); border-left:3px solid #8B5CF6; border-radius:4px; margin-bottom:8px;">
  4045. <div style="display:flex; justify-content:space-between; align-items:center; margin-bottom:4px;">
  4046. <div style="display:flex; align-items:center; gap:6px;">
  4047. <span style="font-size:0.72rem; font-weight:700; color:#8B5CF6;">好运 连连</span>
  4048. </div>
  4049. <div style="display:flex; align-items:center; gap:8px;">
  4050. <span class="text-mono text-xs" style="color:#8B5CF6;">♡ 2</span>
  4051. <span style="padding:1px 6px; background:#8B5CF615; color:#8B5CF6; border-radius:2px; font-size:0.65rem;">二氢杨梅素</span>
  4052. </div>
  4053. </div>
  4054. <div style="font-size:0.78rem; color:var(--text-1); line-height:1.5;">这么高营养成分</div>
  4055. </div>
  4056. <div style="padding:10px 12px; background:var(--bg-2); border-left:3px solid #8B5CF6; border-radius:4px; margin-bottom:8px;">
  4057. <div style="display:flex; justify-content:space-between; align-items:center; margin-bottom:4px;">
  4058. <div style="display:flex; align-items:center; gap:6px;">
  4059. <span style="font-size:0.72rem; font-weight:700; color:#8B5CF6;">Jessie</span>
  4060. </div>
  4061. <div style="display:flex; align-items:center; gap:8px;">
  4062. <span class="text-mono text-xs" style="color:#8B5CF6;">♡ 1</span>
  4063. <span style="padding:1px 6px; background:#8B5CF615; color:#8B5CF6; border-radius:2px; font-size:0.65rem;">二氢杨梅素</span>
  4064. </div>
  4065. </div>
  4066. <div style="font-size:0.78rem; color:var(--text-1); line-height:1.5;">好东西 当时咽炎就是喝藤茶好了的</div>
  4067. </div>
  4068. </div>
  4069. </div>
  4070. <!-- 情感分布 + 认知漏斗 -->
  4071. <div class="fade-up" style="display:grid; grid-template-columns:1fr 1fr; gap:16px; margin-bottom:24px;">
  4072. <div style="background:var(--bg-1); border:1px solid #8B5CF644; border-radius:var(--radius-md); padding:18px;">
  4073. <div class="text-mono text-xs" style="color:#8B5CF6; letter-spacing:0.15em; margin-bottom:12px;">SENTIMENT · 藤茶情感分布</div>
  4074. <div style="display:grid; gap:8px;">
  4075. <div style="padding:8px 12px; background:#2D9C5D10; border-left:3px solid #2D9C5D; border-radius:4px;">
  4076. <div style="display:flex; justify-content:space-between; align-items:baseline; margin-bottom:4px;">
  4077. <div style="font-size:0.82rem; font-weight:700; color:var(--text-1);">正面 · 认可/推荐</div>
  4078. <div style="font-family:var(--font-mono); font-size:0.8rem; color:#2D9C5D; font-weight:700;">25条 · 50%</div>
  4079. </div>
  4080. <div style="height:6px; background:var(--bg-2); border-radius:3px; overflow:hidden;">
  4081. <div style="width:100%; height:100%; background:#2D9C5D;"></div>
  4082. </div>
  4083. </div>
  4084. <div style="padding:8px 12px; background:#D4A57410; border-left:3px solid #D4A574; border-radius:4px;">
  4085. <div style="display:flex; justify-content:space-between; align-items:baseline; margin-bottom:4px;">
  4086. <div style="font-size:0.82rem; font-weight:700; color:var(--text-1);">疑问 · 求科普/咨询</div>
  4087. <div style="font-family:var(--font-mono); font-size:0.8rem; color:#D4A574; font-weight:700;">13条 · 26%</div>
  4088. </div>
  4089. <div style="height:6px; background:var(--bg-2); border-radius:3px; overflow:hidden;">
  4090. <div style="width:52%; height:100%; background:#D4A574;"></div>
  4091. </div>
  4092. </div>
  4093. <div style="padding:8px 12px; background:#0085CA10; border-left:3px solid #0085CA; border-radius:4px;">
  4094. <div style="display:flex; justify-content:space-between; align-items:baseline; margin-bottom:4px;">
  4095. <div style="font-size:0.82rem; font-weight:700; color:var(--text-1);">中性 · 无明显倾向</div>
  4096. <div style="font-family:var(--font-mono); font-size:0.8rem; color:#0085CA; font-weight:700;">7条 · 14%</div>
  4097. </div>
  4098. <div style="height:6px; background:var(--bg-2); border-radius:3px; overflow:hidden;">
  4099. <div style="width:28%; height:100%; background:#0085CA;"></div>
  4100. </div>
  4101. </div>
  4102. <div style="padding:8px 12px; background:#FF4D8D10; border-left:3px solid #FF4D8D; border-radius:4px;">
  4103. <div style="display:flex; justify-content:space-between; align-items:baseline; margin-bottom:4px;">
  4104. <div style="font-size:0.82rem; font-weight:700; color:var(--text-1);">负面 · 质疑/吐槽</div>
  4105. <div style="font-family:var(--font-mono); font-size:0.8rem; color:#FF4D8D; font-weight:700;">5条 · 10%</div>
  4106. </div>
  4107. <div style="height:6px; background:var(--bg-2); border-radius:3px; overflow:hidden;">
  4108. <div style="width:20%; height:100%; background:#FF4D8D;"></div>
  4109. </div>
  4110. </div>
  4111. </div>
  4112. </div>
  4113. <div style="background:linear-gradient(135deg, #8B5CF610, #8B5CF608); border:1px solid #8B5CF644; border-radius:var(--radius-md); padding:18px;">
  4114. <div class="text-mono text-xs" style="color:#8B5CF6; letter-spacing:0.15em; margin-bottom:12px;">AWARENESS FUNNEL · 认知漏斗</div>
  4115. <div style="display:grid; gap:10px;">
  4116. <div style="padding:10px 14px; background:#2D9C5D15; border:2px solid #2D9C5D44; border-radius:6px; text-align:center;">
  4117. <div class="text-mono text-xs" style="color:#2D9C5D; letter-spacing:0.12em;">🌿 藤茶认知</div>
  4118. <div style="font-family:var(--font-head); font-weight:900; font-size:2rem; color:#2D9C5D; line-height:1; margin-top:4px;">45%</div>
  4119. <div style="font-size:0.7rem; color:var(--text-3); margin-top:4px;">女性+熬夜人群已有基础印象</div>
  4120. </div>
  4121. <div style="text-align:center; font-size:1.5rem; color:#8B5CF6;">↓</div>
  4122. <div style="padding:10px 14px; background:#8B5CF615; border:2px solid #8B5CF644; border-radius:6px; text-align:center;">
  4123. <div class="text-mono text-xs" style="color:#8B5CF6; letter-spacing:0.12em;">🔬 DMY 科普认知</div>
  4124. <div style="font-family:var(--font-head); font-weight:900; font-size:2rem; color:#8B5CF6; line-height:1; margin-top:4px;">12%</div>
  4125. <div style="font-size:0.7rem; color:var(--text-3); margin-top:4px;">"二氢杨梅素"是陌生词,需要教育</div>
  4126. </div>
  4127. <div style="text-align:center; font-size:1.5rem; color:#8B5CF6;">↓</div>
  4128. <div style="padding:10px 14px; background:#8B5CF615; border:2px solid #8B5CF666; border-radius:6px; text-align:center;">
  4129. <div class="text-mono text-xs" style="color:#8B5CF6; letter-spacing:0.12em;">⭐ "藤茶 DMY ≠ 水飞蓟" 差异心智</div>
  4130. <div style="font-family:var(--font-head); font-weight:900; font-size:2rem; color:#8B5CF6; line-height:1; margin-top:4px;">3%</div>
  4131. <div style="font-size:0.7rem; color:var(--text-3); margin-top:4px;">几乎空白 → 最大教育机会</div>
  4132. </div>
  4133. </div>
  4134. </div>
  4135. </div>
  4136. <!-- 落地建议 -->
  4137. <div class="fade-up" style="background:linear-gradient(135deg, #8B5CF610, #2D9C5D08); border:1px solid #8B5CF644; border-radius:var(--radius-md); padding:20px;">
  4138. <div class="text-mono text-xs" style="color:#8B5CF6; letter-spacing:0.15em; margin-bottom:12px;">💡 STRATEGY · 认知建构路径(6 个月达成 30% "藤茶 DMY ≠ 水飞蓟"心智)</div>
  4139. <div style="display:grid; grid-template-columns:repeat(3, 1fr); gap:12px;">
  4140. <div style="padding:12px; background:var(--bg-1); border-left:3px solid #2D9C5D; border-radius:4px;">
  4141. <div style="font-size:0.92rem; font-weight:800; color:var(--text-1); margin-bottom:4px;">🥉 Step 1 · 建立藤茶符号</div>
  4142. <div style="font-size:0.74rem; color:var(--text-2); line-height:1.5;">包装正面 <strong style="color:#2D9C5D;">"源自中国藤茶(显齿蛇葡萄)"</strong> + 藤茶叶脉图 + 白霜 DMY 视觉化</div>
  4143. </div>
  4144. <div style="padding:12px; background:var(--bg-1); border-left:3px solid #8B5CF6; border-radius:4px;">
  4145. <div style="font-size:0.92rem; font-weight:800; color:var(--text-1); margin-bottom:4px;">🥈 Step 2 · DMY 科普破圈</div>
  4146. <div style="font-size:0.74rem; color:var(--text-2); line-height:1.5;">KOL 矩阵 + 医生科普 + 小红书"别只补水飞蓟,DMY 黄酮才是新一代"</div>
  4147. </div>
  4148. <div style="padding:12px; background:var(--bg-1); border-left:3px solid #8B5CF6; border-radius:4px;">
  4149. <div style="font-size:0.92rem; font-weight:800; color:var(--text-1); margin-bottom:4px;">🥇 Step 3 · 差异心智锁定</div>
  4150. <div style="font-size:0.74rem; color:var(--text-2); line-height:1.5;">强化 <strong style="color:#8B5CF6;">"藤茶 DMY ≠ 水飞蓟"</strong>对立话术 → 形成"江中肝纯 = DMY 护肝"记忆锚点</div>
  4151. </div>
  4152. </div>
  4153. </div>
  4154. </div>
  4155. </section>
  4156. <section class="report-section" id="positioning-2" data-tone="purple" data-slide-num="22">
  4157. <div class="section-inner">
  4158. <div class="section-head rise-in">
  4159. <div class="section-eyebrow" style="color:#8B5CF6;">4.2 · SAFETY & FOOD-MED SPEECH</div>
  4160. <h2 class="text-h1"><span class="headline-anim">安全无副作用话术 · 药食同源 4 AB 测试</span></h2>
  4161. <p class="section-sub">针对 VOC Top #3 "<strong style="color:#FF4D8D;">不要吃护肝片</strong>"信任危机,测试 <strong style="color:#8B5CF6;">4 种安全话术</strong>的记忆强度与场景适配度</p>
  4162. </div>
  4163. <!-- 4 话术 AB 卡片 -->
  4164. <div class="fade-up" style="display:grid; grid-template-columns:repeat(2, 1fr); gap:16px; margin-bottom:24px;">
  4165. <div style="background:var(--bg-1); border:1px solid #2D9C5D44; border-top:4px solid #2D9C5D; border-radius:var(--radius-md); padding:18px;">
  4166. <div style="display:flex; align-items:center; justify-content:space-between; margin-bottom:12px;">
  4167. <div style="font-size:1.08rem; font-weight:800; color:var(--text-1);">A · 药食同源</div>
  4168. <div style="text-align:center;">
  4169. <div style="font-family:var(--font-head); font-weight:900; font-size:1.6rem; color:#2D9C5D; line-height:1;">72</div>
  4170. <div class="text-mono text-xs" style="color:#2D9C5D; margin-top:2px; letter-spacing:0.08em;">MEM/100</div>
  4171. </div>
  4172. </div>
  4173. <div style="padding:10px 12px; background:#2D9C5D12; border-left:3px solid #2D9C5D; border-radius:4px; margin-bottom:10px;">
  4174. <div class="text-mono text-xs" style="color:#2D9C5D; letter-spacing:0.08em; margin-bottom:3px;">🔊 话术</div>
  4175. <div style="font-size:0.9rem; font-weight:700; color:var(--text-1); font-style:italic; line-height:1.45;">"中国藤茶 · 千年药食同源 · 温和养护"</div>
  4176. </div>
  4177. <div style="display:grid; grid-template-columns:1fr 1fr; gap:8px; margin-bottom:10px;">
  4178. <div style="padding:6px 10px; background:var(--bg-2); border-radius:3px;">
  4179. <div class="text-mono text-xs" style="color:var(--text-3); letter-spacing:0.06em; margin-bottom:2px;">👤 目标</div>
  4180. <div style="font-size:0.72rem; color:var(--text-1); line-height:1.4;">女性 + 中老年 + 送长辈</div>
  4181. </div>
  4182. <div style="padding:6px 10px; background:var(--bg-2); border-radius:3px;">
  4183. <div class="text-mono text-xs" style="color:var(--text-3); letter-spacing:0.06em; margin-bottom:2px;">💬 VOC 相关</div>
  4184. <div style="font-size:0.78rem; color:#2D9C5D; font-weight:700;">8 条</div>
  4185. </div>
  4186. </div>
  4187. <div style="padding-top:8px; border-top:1px dashed var(--border);">
  4188. <div class="text-mono text-xs" style="color:#2D9C5D; letter-spacing:0.08em; margin-bottom:3px;">✅ 优势</div>
  4189. <div style="font-size:0.72rem; color:var(--text-2); line-height:1.45; margin-bottom:6px;">文化共鸣强、信任度高、长期服用心安</div>
  4190. <div class="text-mono text-xs" style="color:#FF4D8D; letter-spacing:0.08em; margin-bottom:3px;">⚠️ 短板</div>
  4191. <div style="font-size:0.72rem; color:var(--text-2); line-height:1.45;">年轻男性触达弱</div>
  4192. </div>
  4193. </div>
  4194. <div style="background:var(--bg-1); border:1px solid #0085CA44; border-top:4px solid #0085CA; border-radius:var(--radius-md); padding:18px;">
  4195. <div style="display:flex; align-items:center; justify-content:space-between; margin-bottom:12px;">
  4196. <div style="font-size:1.08rem; font-weight:800; color:var(--text-1);">B · 蓝帽合规</div>
  4197. <div style="text-align:center;">
  4198. <div style="font-family:var(--font-head); font-weight:900; font-size:1.6rem; color:#0085CA; line-height:1;">68</div>
  4199. <div class="text-mono text-xs" style="color:#0085CA; margin-top:2px; letter-spacing:0.08em;">MEM/100</div>
  4200. </div>
  4201. </div>
  4202. <div style="padding:10px 12px; background:#0085CA12; border-left:3px solid #0085CA; border-radius:4px; margin-bottom:10px;">
  4203. <div class="text-mono text-xs" style="color:#0085CA; letter-spacing:0.08em; margin-bottom:3px;">🔊 话术</div>
  4204. <div style="font-size:0.9rem; font-weight:700; color:var(--text-1); font-style:italic; line-height:1.45;">"国家蓝帽认证 · 对化学性肝损伤有辅助保护"</div>
  4205. </div>
  4206. <div style="display:grid; grid-template-columns:1fr 1fr; gap:8px; margin-bottom:10px;">
  4207. <div style="padding:6px 10px; background:var(--bg-2); border-radius:3px;">
  4208. <div class="text-mono text-xs" style="color:var(--text-3); letter-spacing:0.06em; margin-bottom:2px;">👤 目标</div>
  4209. <div style="font-size:0.72rem; color:var(--text-1); line-height:1.4;">药线用户 + 吃药人群 + 医生</div>
  4210. </div>
  4211. <div style="padding:6px 10px; background:var(--bg-2); border-radius:3px;">
  4212. <div class="text-mono text-xs" style="color:var(--text-3); letter-spacing:0.06em; margin-bottom:2px;">💬 VOC 相关</div>
  4213. <div style="font-size:0.78rem; color:#0085CA; font-weight:700;">12 条</div>
  4214. </div>
  4215. </div>
  4216. <div style="padding-top:8px; border-top:1px dashed var(--border);">
  4217. <div class="text-mono text-xs" style="color:#2D9C5D; letter-spacing:0.08em; margin-bottom:3px;">✅ 优势</div>
  4218. <div style="font-size:0.72rem; color:var(--text-2); line-height:1.45; margin-bottom:6px;">合规背书强、药师推荐可信</div>
  4219. <div class="text-mono text-xs" style="color:#FF4D8D; letter-spacing:0.08em; margin-bottom:3px;">⚠️ 短板</div>
  4220. <div style="font-size:0.72rem; color:var(--text-2); line-height:1.45;">缺少情绪温度</div>
  4221. </div>
  4222. </div>
  4223. <div style="background:var(--bg-1); border:1px solid #D4A57444; border-top:4px solid #D4A574; border-radius:var(--radius-md); padding:18px;">
  4224. <div style="display:flex; align-items:center; justify-content:space-between; margin-bottom:12px;">
  4225. <div style="font-size:1.08rem; font-weight:800; color:var(--text-1);">C · 无副作用</div>
  4226. <div style="text-align:center;">
  4227. <div style="font-family:var(--font-head); font-weight:900; font-size:1.6rem; color:#D4A574; line-height:1;">82</div>
  4228. <div class="text-mono text-xs" style="color:#D4A574; margin-top:2px; letter-spacing:0.08em;">MEM/100</div>
  4229. </div>
  4230. </div>
  4231. <div style="padding:10px 12px; background:#D4A57412; border-left:3px solid #D4A574; border-radius:4px; margin-bottom:10px;">
  4232. <div class="text-mono text-xs" style="color:#D4A574; letter-spacing:0.08em; margin-bottom:3px;">🔊 话术</div>
  4233. <div style="font-size:0.9rem; font-weight:700; color:var(--text-1); font-style:italic; line-height:1.45;">"无副作用 · 无胃肠刺激 · 可长期服用"</div>
  4234. </div>
  4235. <div style="display:grid; grid-template-columns:1fr 1fr; gap:8px; margin-bottom:10px;">
  4236. <div style="padding:6px 10px; background:var(--bg-2); border-radius:3px;">
  4237. <div class="text-mono text-xs" style="color:var(--text-3); letter-spacing:0.06em; margin-bottom:2px;">👤 目标</div>
  4238. <div style="font-size:0.72rem; color:var(--text-1); line-height:1.4;">怕副作用的用户 + 长期服药人群</div>
  4239. </div>
  4240. <div style="padding:6px 10px; background:var(--bg-2); border-radius:3px;">
  4241. <div class="text-mono text-xs" style="color:var(--text-3); letter-spacing:0.06em; margin-bottom:2px;">💬 VOC 相关</div>
  4242. <div style="font-size:0.78rem; color:#D4A574; font-weight:700;">12 条</div>
  4243. </div>
  4244. </div>
  4245. <div style="padding-top:8px; border-top:1px dashed var(--border);">
  4246. <div class="text-mono text-xs" style="color:#2D9C5D; letter-spacing:0.08em; margin-bottom:3px;">✅ 优势</div>
  4247. <div style="font-size:0.72rem; color:var(--text-2); line-height:1.45; margin-bottom:6px;">直击痛点(VOC Top)、对比易善复胃肠反应</div>
  4248. <div class="text-mono text-xs" style="color:#FF4D8D; letter-spacing:0.08em; margin-bottom:3px;">⚠️ 短板</div>
  4249. <div style="font-size:0.72rem; color:var(--text-2); line-height:1.45;">不能正面说&quot;治疗&quot;</div>
  4250. </div>
  4251. </div>
  4252. <div style="background:var(--bg-1); border:1px solid #8B5CF644; border-top:4px solid #8B5CF6; border-radius:var(--radius-md); padding:18px;">
  4253. <div style="display:flex; align-items:center; justify-content:space-between; margin-bottom:12px;">
  4254. <div style="font-size:1.08rem; font-weight:800; color:var(--text-1);">D · 搭配用药</div>
  4255. <div style="text-align:center;">
  4256. <div style="font-family:var(--font-head); font-weight:900; font-size:1.6rem; color:#8B5CF6; line-height:1;">75</div>
  4257. <div class="text-mono text-xs" style="color:#8B5CF6; margin-top:2px; letter-spacing:0.08em;">MEM/100</div>
  4258. </div>
  4259. </div>
  4260. <div style="padding:10px 12px; background:#8B5CF612; border-left:3px solid #8B5CF6; border-radius:4px; margin-bottom:10px;">
  4261. <div class="text-mono text-xs" style="color:#8B5CF6; letter-spacing:0.08em; margin-bottom:3px;">🔊 话术</div>
  4262. <div style="font-size:0.9rem; font-weight:700; color:var(--text-1); font-style:italic; line-height:1.45;">"与药物同服更安心 · 不干扰肝药酶"</div>
  4263. </div>
  4264. <div style="display:grid; grid-template-columns:1fr 1fr; gap:8px; margin-bottom:10px;">
  4265. <div style="padding:6px 10px; background:var(--bg-2); border-radius:3px;">
  4266. <div class="text-mono text-xs" style="color:var(--text-3); letter-spacing:0.06em; margin-bottom:2px;">👤 目标</div>
  4267. <div style="font-size:0.72rem; color:var(--text-1); line-height:1.4;">慢病人群 + 中老年 + 多药同服</div>
  4268. </div>
  4269. <div style="padding:6px 10px; background:var(--bg-2); border-radius:3px;">
  4270. <div class="text-mono text-xs" style="color:var(--text-3); letter-spacing:0.06em; margin-bottom:2px;">💬 VOC 相关</div>
  4271. <div style="font-size:0.78rem; color:#8B5CF6; font-weight:700;">18 条</div>
  4272. </div>
  4273. </div>
  4274. <div style="padding-top:8px; border-top:1px dashed var(--border);">
  4275. <div class="text-mono text-xs" style="color:#2D9C5D; letter-spacing:0.08em; margin-bottom:3px;">✅ 优势</div>
  4276. <div style="font-size:0.72rem; color:var(--text-2); line-height:1.45; margin-bottom:6px;">专业可信、区分护肝片</div>
  4277. <div class="text-mono text-xs" style="color:#FF4D8D; letter-spacing:0.08em; margin-bottom:3px;">⚠️ 短板</div>
  4278. <div style="font-size:0.72rem; color:var(--text-2); line-height:1.45;">非受众听不懂</div>
  4279. </div>
  4280. </div>
  4281. </div>
  4282. <!-- 关键 VOC 证据 -->
  4283. <div class="fade-up" style="display:grid; grid-template-columns:1fr 1fr; gap:16px; margin-bottom:20px;">
  4284. <div style="background:var(--bg-1); border:1px solid #FF4D8D44; border-left:3px solid #FF4D8D; border-radius:var(--radius-md); padding:18px;">
  4285. <div class="text-mono text-xs" style="color:#FF4D8D; letter-spacing:0.15em; margin-bottom:10px;">⚠️ 信任危机 VOC · 10 条("不要吃护肝片")</div>
  4286. <div style="padding:10px 12px; background:var(--bg-2); border-left:3px solid #FF4D8D; border-radius:4px; margin-bottom:8px;">
  4287. <div style="display:flex; justify-content:space-between; align-items:center; margin-bottom:4px;">
  4288. <div style="display:flex; align-items:center; gap:6px;">
  4289. <span style="font-size:0.72rem; font-weight:700; color:#FF4D8D;">匿名</span>
  4290. </div>
  4291. <div style="display:flex; align-items:center; gap:8px;">
  4292. <span class="text-mono text-xs" style="color:#FF4D8D;">♡ 459</span>
  4293. <span style="padding:1px 6px; background:#FF4D8D15; color:#FF4D8D; border-radius:2px; font-size:0.65rem;">脂肪肝</span>
  4294. </div>
  4295. </div>
  4296. <div style="font-size:0.78rem; color:var(--text-1); line-height:1.5;">莫名其妙火了那就统一回复一下!我爱吃水果,肉,绿叶菜,这三种都是一天不吃浑身难受能感受到基因里的渴望的那种。但都没有当顿吃,是在正常饮食内的,不存在今晚不吃正餐水果当饭的情况。我们家从小就注重一天三顿正餐好好吃不要吃零食,所以各种甜品糖果饼干小蛋糕等我是几乎不…</div>
  4297. </div>
  4298. <div style="padding:10px 12px; background:var(--bg-2); border-left:3px solid #FF4D8D; border-radius:4px; margin-bottom:8px;">
  4299. <div style="display:flex; justify-content:space-between; align-items:center; margin-bottom:4px;">
  4300. <div style="display:flex; align-items:center; gap:6px;">
  4301. <span style="font-size:0.72rem; font-weight:700; color:#FF4D8D;">时影🐰🐰</span>
  4302. <span class="text-mono text-xs" style="color:var(--text-3);">📍河南</span>
  4303. </div>
  4304. <div style="display:flex; align-items:center; gap:8px;">
  4305. <span class="text-mono text-xs" style="color:#FF4D8D;">♡ 215</span>
  4306. <span style="padding:1px 6px; background:#FF4D8D15; color:#FF4D8D; border-radius:2px; font-size:0.65rem;">护肝片 (抖音)</span>
  4307. </div>
  4308. </div>
  4309. <div style="font-size:0.78rem; color:var(--text-1); line-height:1.5;">护肝片还是别吃了,反而伤肝…而且会刺激脾胃</div>
  4310. </div>
  4311. <div style="padding:10px 12px; background:var(--bg-2); border-left:3px solid #FF4D8D; border-radius:4px; margin-bottom:8px;">
  4312. <div style="display:flex; justify-content:space-between; align-items:center; margin-bottom:4px;">
  4313. <div style="display:flex; align-items:center; gap:6px;">
  4314. <span style="font-size:0.72rem; font-weight:700; color:#FF4D8D;">匿名</span>
  4315. </div>
  4316. <div style="display:flex; align-items:center; gap:8px;">
  4317. <span class="text-mono text-xs" style="color:#FF4D8D;">♡ 73</span>
  4318. <span style="padding:1px 6px; background:#FF4D8D15; color:#FF4D8D; border-radius:2px; font-size:0.65rem;">解酒神器</span>
  4319. </div>
  4320. </div>
  4321. <div style="font-size:0.78rem; color:var(--text-1); line-height:1.5;">但是你这个视频感觉反而有帮他宣传了,毕竟真是真的确实下降了很多,到底是什么原理呢?</div>
  4322. </div>
  4323. </div>
  4324. <div style="background:var(--bg-1); border:1px solid #2D9C5D44; border-left:3px solid #2D9C5D; border-radius:var(--radius-md); padding:18px;">
  4325. <div class="text-mono text-xs" style="color:#2D9C5D; letter-spacing:0.15em; margin-bottom:10px;">🛡️ 安全背书 VOC · 12 条(副作用/长期/安全)</div>
  4326. <div style="padding:10px 12px; background:var(--bg-2); border-left:3px solid #2D9C5D; border-radius:4px; margin-bottom:8px;">
  4327. <div style="display:flex; justify-content:space-between; align-items:center; margin-bottom:4px;">
  4328. <div style="display:flex; align-items:center; gap:6px;">
  4329. <span style="font-size:0.72rem; font-weight:700; color:#2D9C5D;">匿名</span>
  4330. </div>
  4331. <div style="display:flex; align-items:center; gap:8px;">
  4332. <span class="text-mono text-xs" style="color:#2D9C5D;">♡ 149</span>
  4333. <span style="padding:1px 6px; background:#2D9C5D15; color:#2D9C5D; border-radius:2px; font-size:0.65rem;">脂肪肝</span>
  4334. </div>
  4335. </div>
  4336. <div style="font-size:0.78rem; color:var(--text-1); line-height:1.5;">这种自测的方式不准,作为长期在一线的超声医生,看到的脂肪肝太多了,老人,小孩,瘦子,胖子每个人都因为各种原因得脂肪肝,但大多数都是胖子。</div>
  4337. </div>
  4338. <div style="padding:10px 12px; background:var(--bg-2); border-left:3px solid #2D9C5D; border-radius:4px; margin-bottom:8px;">
  4339. <div style="display:flex; justify-content:space-between; align-items:center; margin-bottom:4px;">
  4340. <div style="display:flex; align-items:center; gap:6px;">
  4341. <span style="font-size:0.72rem; font-weight:700; color:#2D9C5D;">金水洛冰</span>
  4342. </div>
  4343. <div style="display:flex; align-items:center; gap:8px;">
  4344. <span class="text-mono text-xs" style="color:#2D9C5D;">♡ 80</span>
  4345. <span style="padding:1px 6px; background:#2D9C5D15; color:#2D9C5D; border-radius:2px; font-size:0.65rem;">葵花护肝片</span>
  4346. </div>
  4347. </div>
  4348. <div style="font-size:0.78rem; color:var(--text-1); line-height:1.5;">我晕,这种有糖衣包裹的药你尽然说吞咽困难,又不是三岁小孩喂药[笑哭R]</div>
  4349. </div>
  4350. <div style="padding:10px 12px; background:var(--bg-2); border-left:3px solid #2D9C5D; border-radius:4px; margin-bottom:8px;">
  4351. <div style="display:flex; justify-content:space-between; align-items:center; margin-bottom:4px;">
  4352. <div style="display:flex; align-items:center; gap:6px;">
  4353. <span style="font-size:0.72rem; font-weight:700; color:#2D9C5D;">匿名</span>
  4354. </div>
  4355. <div style="display:flex; align-items:center; gap:8px;">
  4356. <span class="text-mono text-xs" style="color:#2D9C5D;">♡ 15</span>
  4357. <span style="padding:1px 6px; background:#2D9C5D15; color:#2D9C5D; border-radius:2px; font-size:0.65rem;">葵花护肝片</span>
  4358. </div>
  4359. </div>
  4360. <div style="font-size:0.78rem; color:var(--text-1); line-height:1.5;">我甲亢吃赛治的同时长期吃这个药,吃了有半年,两个月前开始每天中午拉肚子,怀疑是它造成的,最好吃一段时间休息几天再接着吃</div>
  4361. </div>
  4362. </div>
  4363. </div>
  4364. <!-- 决策:话术组合 -->
  4365. <div class="fade-up" style="background:linear-gradient(135deg, #8B5CF610, #2D9C5D08); border:1px solid #8B5CF644; border-radius:var(--radius-md); padding:20px;">
  4366. <div class="text-mono text-xs" style="color:#8B5CF6; letter-spacing:0.15em; margin-bottom:12px;">RECOMMENDED · 分渠道话术组合(记忆度加权 + 场景适配)</div>
  4367. <div style="display:grid; grid-template-columns:repeat(4, 1fr); gap:12px;">
  4368. <div style="padding:12px; background:#0085CA10; border-left:3px solid #0085CA; border-radius:4px;">
  4369. <div style="font-size:0.95rem; font-weight:800; color:#0085CA; margin-bottom:4px;">🏥 药线</div>
  4370. <div style="font-size:0.76rem; color:var(--text-2); line-height:1.5;">主打 <strong>B 蓝帽 + D 搭配</strong>(合规 + 专业)</div>
  4371. </div>
  4372. <div style="padding:12px; background:#D4A57410; border-left:3px solid #D4A574; border-radius:4px;">
  4373. <div style="font-size:0.95rem; font-weight:800; color:#D4A574; margin-bottom:4px;">🎁 礼品</div>
  4374. <div style="font-size:0.76rem; color:var(--text-2); line-height:1.5;">主打 <strong>A 药食同源 + C 无副作用</strong>(文化 + 安心)</div>
  4375. </div>
  4376. <div style="padding:12px; background:#FF8C4210; border-left:3px solid #FF8C42; border-radius:4px;">
  4377. <div style="font-size:0.95rem; font-weight:800; color:#FF8C42; margin-bottom:4px;">🍷 餐饮</div>
  4378. <div style="font-size:0.76rem; color:var(--text-2); line-height:1.5;">主打 <strong>C 无副作用 + A 药食同源</strong>(酒桌可放心)</div>
  4379. </div>
  4380. <div style="padding:12px; background:#2D9C5D10; border-left:3px solid #2D9C5D; border-radius:4px;">
  4381. <div style="font-size:0.95rem; font-weight:800; color:#2D9C5D; margin-bottom:4px;">💻 电商</div>
  4382. <div style="font-size:0.76rem; color:var(--text-2); line-height:1.5;">主打 <strong>A 药食同源 + B 蓝帽</strong>(详情页全覆盖)</div>
  4383. </div>
  4384. </div>
  4385. </div>
  4386. </div>
  4387. </section>
  4388. <section class="report-section" id="positioning-3" data-tone="purple" data-slide-num="23">
  4389. <div class="section-inner">
  4390. <div class="section-head rise-in">
  4391. <div class="section-eyebrow" style="color:#8B5CF6;">4.3 · ANTIDOTE SPEECH AB TEST</div>
  4392. <h2 class="text-h1"><span class="headline-anim">解酒场景话术 AB 测试 · 4 版本</span></h2>
  4393. <p class="section-sub">基于 <strong style="color:#8B5CF6;">27</strong> 条"解酒/应酬"相关 VOC 原声,测试 <strong style="color:#8B5CF6;">机制 / 体感 / 真成分 / 情绪</strong> 4 话术路线</p>
  4394. </div>
  4395. <!-- 4 话术 AB -->
  4396. <div class="fade-up" style="display:grid; grid-template-columns:repeat(2, 1fr); gap:16px; margin-bottom:24px;">
  4397. <div style="background:var(--bg-1); border:1px solid #0085CA44; border-top:4px solid #0085CA; border-radius:var(--radius-md); padding:18px;">
  4398. <div style="display:flex; align-items:center; justify-content:space-between; margin-bottom:12px;">
  4399. <div>
  4400. <div class="text-mono text-xs" style="color:#0085CA; letter-spacing:0.15em;">VERSION A</div>
  4401. <div style="font-size:1.1rem; font-weight:800; color:var(--text-1);">机制科普派</div>
  4402. </div>
  4403. <div style="text-align:center;">
  4404. <div style="font-family:var(--font-head); font-weight:900; font-size:1.8rem; color:#0085CA; line-height:1;">68</div>
  4405. <div class="text-mono text-xs" style="color:#0085CA; margin-top:2px; letter-spacing:0.08em;">ACCEPT/100</div>
  4406. </div>
  4407. </div>
  4408. <div style="padding:10px 12px; background:#0085CA12; border-left:3px solid #0085CA; border-radius:4px; margin-bottom:10px;">
  4409. <div class="text-mono text-xs" style="color:#0085CA; letter-spacing:0.08em; margin-bottom:3px;">🔊 主话术</div>
  4410. <div style="font-size:0.95rem; font-weight:700; color:var(--text-1); font-style:italic; line-height:1.45;">"加速乙醛代谢 · 从源头保护肝脏"</div>
  4411. </div>
  4412. <div style="margin-bottom:8px;">
  4413. <div class="text-mono text-xs" style="color:var(--text-3); letter-spacing:0.08em; margin-bottom:3px;">💡 策略逻辑</div>
  4414. <div style="font-size:0.75rem; color:var(--text-2); line-height:1.5;">用 ADH/ALDH 机制科普切入(专业背书)</div>
  4415. </div>
  4416. <div style="margin-bottom:8px; padding:6px 10px; background:var(--bg-2); border-radius:3px;">
  4417. <div class="text-mono text-xs" style="color:var(--text-3); letter-spacing:0.06em; margin-bottom:2px;">👤 目标用户</div>
  4418. <div style="font-size:0.74rem; color:var(--text-1); line-height:1.4;">知识型消费者 / 医生推荐 / 药师</div>
  4419. </div>
  4420. <div style="padding-top:8px; border-top:1px dashed var(--border); display:grid; grid-template-columns:1fr 1fr; gap:8px;">
  4421. <div>
  4422. <div class="text-mono text-xs" style="color:#2D9C5D; letter-spacing:0.06em; margin-bottom:2px;">✅ 优势</div>
  4423. <div style="font-size:0.7rem; color:var(--text-2); line-height:1.45;">专业信任强,复购率高</div>
  4424. </div>
  4425. <div>
  4426. <div class="text-mono text-xs" style="color:#FF4D8D; letter-spacing:0.06em; margin-bottom:2px;">⚠️ 风险</div>
  4427. <div style="font-size:0.7rem; color:var(--text-2); line-height:1.45;">酒桌场景不易传播</div>
  4428. </div>
  4429. </div>
  4430. </div>
  4431. <div style="background:var(--bg-1); border:1px solid #FF8C4244; border-top:4px solid #FF8C42; border-radius:var(--radius-md); padding:18px;">
  4432. <div style="display:flex; align-items:center; justify-content:space-between; margin-bottom:12px;">
  4433. <div>
  4434. <div class="text-mono text-xs" style="color:#FF8C42; letter-spacing:0.15em;">VERSION B</div>
  4435. <div style="font-size:1.1rem; font-weight:800; color:var(--text-1);">体感可见派</div>
  4436. </div>
  4437. <div style="text-align:center;">
  4438. <div style="font-family:var(--font-head); font-weight:900; font-size:1.8rem; color:#FF8C42; line-height:1;">88</div>
  4439. <div class="text-mono text-xs" style="color:#FF8C42; margin-top:2px; letter-spacing:0.08em;">ACCEPT/100</div>
  4440. </div>
  4441. </div>
  4442. <div style="padding:10px 12px; background:#FF8C4212; border-left:3px solid #FF8C42; border-radius:4px; margin-bottom:10px;">
  4443. <div class="text-mono text-xs" style="color:#FF8C42; letter-spacing:0.08em; margin-bottom:3px;">🔊 主话术</div>
  4444. <div style="font-size:0.95rem; font-weight:700; color:var(--text-1); font-style:italic; line-height:1.45;">"酒前 15 分钟 · 酒后不头疼不宿醉"</div>
  4445. </div>
  4446. <div style="margin-bottom:8px;">
  4447. <div class="text-mono text-xs" style="color:var(--text-3); letter-spacing:0.08em; margin-bottom:3px;">💡 策略逻辑</div>
  4448. <div style="font-size:0.75rem; color:var(--text-2); line-height:1.5;">直接卖&quot;解酒后体感&quot;</div>
  4449. </div>
  4450. <div style="margin-bottom:8px; padding:6px 10px; background:var(--bg-2); border-radius:3px;">
  4451. <div class="text-mono text-xs" style="color:var(--text-3); letter-spacing:0.06em; margin-bottom:2px;">👤 目标用户</div>
  4452. <div style="font-size:0.74rem; color:var(--text-1); line-height:1.4;">应酬男性 / 酒局老板</div>
  4453. </div>
  4454. <div style="padding-top:8px; border-top:1px dashed var(--border); display:grid; grid-template-columns:1fr 1fr; gap:8px;">
  4455. <div>
  4456. <div class="text-mono text-xs" style="color:#2D9C5D; letter-spacing:0.06em; margin-bottom:2px;">✅ 优势</div>
  4457. <div style="font-size:0.7rem; color:var(--text-2); line-height:1.45;">话术直白易记、场景即时验证</div>
  4458. </div>
  4459. <div>
  4460. <div class="text-mono text-xs" style="color:#FF4D8D; letter-spacing:0.06em; margin-bottom:2px;">⚠️ 风险</div>
  4461. <div style="font-size:0.7rem; color:var(--text-2); line-height:1.45;">被 VOC 质疑&quot;和海王金樽没区别&quot;</div>
  4462. </div>
  4463. </div>
  4464. </div>
  4465. <div style="background:var(--bg-1); border:1px solid #8B5CF644; border-top:4px solid #8B5CF6; border-radius:var(--radius-md); padding:18px;">
  4466. <div style="display:flex; align-items:center; justify-content:space-between; margin-bottom:12px;">
  4467. <div>
  4468. <div class="text-mono text-xs" style="color:#8B5CF6; letter-spacing:0.15em;">VERSION C</div>
  4469. <div style="font-size:1.1rem; font-weight:800; color:var(--text-1);">真成分派</div>
  4470. </div>
  4471. <div style="text-align:center;">
  4472. <div style="font-family:var(--font-head); font-weight:900; font-size:1.8rem; color:#8B5CF6; line-height:1;">82</div>
  4473. <div class="text-mono text-xs" style="color:#8B5CF6; margin-top:2px; letter-spacing:0.08em;">ACCEPT/100</div>
  4474. </div>
  4475. </div>
  4476. <div style="padding:10px 12px; background:#8B5CF612; border-left:3px solid #8B5CF6; border-radius:4px; margin-bottom:10px;">
  4477. <div class="text-mono text-xs" style="color:#8B5CF6; letter-spacing:0.08em; margin-bottom:3px;">🔊 主话术</div>
  4478. <div style="font-size:0.95rem; font-weight:700; color:var(--text-1); font-style:italic; line-height:1.45;">"别只吃水飞蓟,DMY 藤茶黄酮才是真解酒"</div>
  4479. </div>
  4480. <div style="margin-bottom:8px;">
  4481. <div class="text-mono text-xs" style="color:var(--text-3); letter-spacing:0.08em; margin-bottom:3px;">💡 策略逻辑</div>
  4482. <div style="font-size:0.75rem; color:var(--text-2); line-height:1.5;">差异化对比+打脸竞品</div>
  4483. </div>
  4484. <div style="margin-bottom:8px; padding:6px 10px; background:var(--bg-2); border-radius:3px;">
  4485. <div class="text-mono text-xs" style="color:var(--text-3); letter-spacing:0.06em; margin-bottom:2px;">👤 目标用户</div>
  4486. <div style="font-size:0.74rem; color:var(--text-1); line-height:1.4;">挑剔型用户 / 尝试过水飞蓟人群</div>
  4487. </div>
  4488. <div style="padding-top:8px; border-top:1px dashed var(--border); display:grid; grid-template-columns:1fr 1fr; gap:8px;">
  4489. <div>
  4490. <div class="text-mono text-xs" style="color:#2D9C5D; letter-spacing:0.06em; margin-bottom:2px;">✅ 优势</div>
  4491. <div style="font-size:0.7rem; color:var(--text-2); line-height:1.45;">差异化记忆最强、打开水飞蓟用户</div>
  4492. </div>
  4493. <div>
  4494. <div class="text-mono text-xs" style="color:#FF4D8D; letter-spacing:0.06em; margin-bottom:2px;">⚠️ 风险</div>
  4495. <div style="font-size:0.7rem; color:var(--text-2); line-height:1.45;">需要持续 DMY 科普配合</div>
  4496. </div>
  4497. </div>
  4498. </div>
  4499. <div style="background:var(--bg-1); border:1px solid #FF4D8D44; border-top:4px solid #FF4D8D; border-radius:var(--radius-md); padding:18px;">
  4500. <div style="display:flex; align-items:center; justify-content:space-between; margin-bottom:12px;">
  4501. <div>
  4502. <div class="text-mono text-xs" style="color:#FF4D8D; letter-spacing:0.15em;">VERSION D</div>
  4503. <div style="font-size:1.1rem; font-weight:800; color:var(--text-1);">情绪共鸣派</div>
  4504. </div>
  4505. <div style="text-align:center;">
  4506. <div style="font-family:var(--font-head); font-weight:900; font-size:1.8rem; color:#FF4D8D; line-height:1;">75</div>
  4507. <div class="text-mono text-xs" style="color:#FF4D8D; margin-top:2px; letter-spacing:0.08em;">ACCEPT/100</div>
  4508. </div>
  4509. </div>
  4510. <div style="padding:10px 12px; background:#FF4D8D12; border-left:3px solid #FF4D8D; border-radius:4px; margin-bottom:10px;">
  4511. <div class="text-mono text-xs" style="color:#FF4D8D; letter-spacing:0.08em; margin-bottom:3px;">🔊 主话术</div>
  4512. <div style="font-size:0.95rem; font-weight:700; color:var(--text-1); font-style:italic; line-height:1.45;">"一杯酒 = 一片肝损伤 · 藤茶 DMY 替你扛"</div>
  4513. </div>
  4514. <div style="margin-bottom:8px;">
  4515. <div class="text-mono text-xs" style="color:var(--text-3); letter-spacing:0.08em; margin-bottom:3px;">💡 策略逻辑</div>
  4516. <div style="font-size:0.75rem; color:var(--text-2); line-height:1.5;">情绪化+数据化双击</div>
  4517. </div>
  4518. <div style="margin-bottom:8px; padding:6px 10px; background:var(--bg-2); border-radius:3px;">
  4519. <div class="text-mono text-xs" style="color:var(--text-3); letter-spacing:0.06em; margin-bottom:2px;">👤 目标用户</div>
  4520. <div style="font-size:0.74rem; color:var(--text-1); line-height:1.4;">中年男性 / 健康焦虑型</div>
  4521. </div>
  4522. <div style="padding-top:8px; border-top:1px dashed var(--border); display:grid; grid-template-columns:1fr 1fr; gap:8px;">
  4523. <div>
  4524. <div class="text-mono text-xs" style="color:#2D9C5D; letter-spacing:0.06em; margin-bottom:2px;">✅ 优势</div>
  4525. <div style="font-size:0.7rem; color:var(--text-2); line-height:1.45;">情绪触点强、社媒传播力好</div>
  4526. </div>
  4527. <div>
  4528. <div class="text-mono text-xs" style="color:#FF4D8D; letter-spacing:0.06em; margin-bottom:2px;">⚠️ 风险</div>
  4529. <div style="font-size:0.7rem; color:var(--text-2); line-height:1.45;">过度渲染风险 / 需控合规边界</div>
  4530. </div>
  4531. </div>
  4532. </div>
  4533. </div>
  4534. <!-- 真实 VOC 原声 -->
  4535. <div class="fade-up" style="display:grid; grid-template-columns:1fr 1fr; gap:16px; margin-bottom:24px;">
  4536. <div style="background:var(--bg-1); border:1px solid #FF8C4244; border-left:3px solid #FF8C42; border-radius:var(--radius-md); padding:18px;">
  4537. <div class="text-mono text-xs" style="color:#FF8C42; letter-spacing:0.15em; margin-bottom:10px;">🍷 解酒需求 VOC · Top 4</div>
  4538. <div style="padding:10px 12px; background:var(--bg-2); border-left:3px solid #FF8C42; border-radius:4px; margin-bottom:8px;">
  4539. <div style="display:flex; justify-content:space-between; align-items:center; margin-bottom:4px;">
  4540. <div style="display:flex; align-items:center; gap:6px;">
  4541. <span style="font-size:0.72rem; font-weight:700; color:#FF8C42;">momo</span>
  4542. </div>
  4543. <div style="display:flex; align-items:center; gap:8px;">
  4544. <span class="text-mono text-xs" style="color:#FF8C42;">♡ 4412</span>
  4545. <span style="padding:1px 6px; background:#FF8C4215; color:#FF8C42; border-radius:2px; font-size:0.65rem;">解酒药</span>
  4546. </div>
  4547. </div>
  4548. <div style="font-size:0.78rem; color:var(--text-1); line-height:1.5;">就在酒企,维b和维c一次三片,半个小时前吃,酒量翻一倍不会吐</div>
  4549. </div>
  4550. <div style="padding:10px 12px; background:var(--bg-2); border-left:3px solid #FF8C42; border-radius:4px; margin-bottom:8px;">
  4551. <div style="display:flex; justify-content:space-between; align-items:center; margin-bottom:4px;">
  4552. <div style="display:flex; align-items:center; gap:6px;">
  4553. <span style="font-size:0.72rem; font-weight:700; color:#FF8C42;">breeze</span>
  4554. </div>
  4555. <div style="display:flex; align-items:center; gap:8px;">
  4556. <span class="text-mono text-xs" style="color:#FF8C42;">♡ 1562</span>
  4557. <span style="padding:1px 6px; background:#FF8C4215; color:#FF8C42; border-radius:2px; font-size:0.65rem;">解酒药</span>
  4558. </div>
  4559. </div>
  4560. <div style="font-size:0.78rem; color:var(--text-1); line-height:1.5;">医生现身说法,因为平时也会应酬喝酒,可以提前吃点维b这个主要是增加乙酸和乙醛脱氢酶活力的,加快酒精的代谢;然后就是酸奶,能够延缓酒精吸收,不那么快上头,保护胃粘膜;纳洛酮这个是拮抗酒精对大脑的抑制作用的,可以让人保持清醒;酒后可以吃点维c,…</div>
  4561. </div>
  4562. <div style="padding:10px 12px; background:var(--bg-2); border-left:3px solid #FF8C42; border-radius:4px; margin-bottom:8px;">
  4563. <div style="display:flex; justify-content:space-between; align-items:center; margin-bottom:4px;">
  4564. <div style="display:flex; align-items:center; gap:6px;">
  4565. <span style="font-size:0.72rem; font-weight:700; color:#FF8C42;">Lucas</span>
  4566. </div>
  4567. <div style="display:flex; align-items:center; gap:8px;">
  4568. <span class="text-mono text-xs" style="color:#FF8C42;">♡ 808</span>
  4569. <span style="padding:1px 6px; background:#FF8C4215; color:#FF8C42; border-radius:2px; font-size:0.65rem;">解酒药</span>
  4570. </div>
  4571. </div>
  4572. <div style="font-size:0.78rem; color:var(--text-1); line-height:1.5;">我喝醉第二天起来就一直灌外星人电解质</div>
  4573. </div>
  4574. <div style="padding:10px 12px; background:var(--bg-2); border-left:3px solid #FF8C42; border-radius:4px; margin-bottom:8px;">
  4575. <div style="display:flex; justify-content:space-between; align-items:center; margin-bottom:4px;">
  4576. <div style="display:flex; align-items:center; gap:6px;">
  4577. <span style="font-size:0.72rem; font-weight:700; color:#FF8C42;">🍓R</span>
  4578. </div>
  4579. <div style="display:flex; align-items:center; gap:8px;">
  4580. <span class="text-mono text-xs" style="color:#FF8C42;">♡ 737</span>
  4581. <span style="padding:1px 6px; background:#FF8C4215; color:#FF8C42; border-radius:2px; font-size:0.65rem;">解酒药</span>
  4582. </div>
  4583. </div>
  4584. <div style="font-size:0.78rem; color:var(--text-1); line-height:1.5;">那你还是喝的不够多,我上次去输液奥美拉唑+葡萄糖+VC都完全没用,吐得胆汁都吐光了,站都站起不来。太难受了,千万别洋酒啤酒掺起来喝。</div>
  4585. </div>
  4586. </div>
  4587. <div style="background:var(--bg-1); border:1px solid #FF4D8D44; border-left:3px solid #FF4D8D; border-radius:var(--radius-md); padding:18px;">
  4588. <div class="text-mono text-xs" style="color:#FF4D8D; letter-spacing:0.15em; margin-bottom:10px;">🤔 体感质疑 VOC · 10 条("有没有效果")</div>
  4589. <div style="padding:10px 12px; background:var(--bg-2); border-left:3px solid #FF4D8D; border-radius:4px; margin-bottom:8px;">
  4590. <div style="display:flex; justify-content:space-between; align-items:center; margin-bottom:4px;">
  4591. <div style="display:flex; align-items:center; gap:6px;">
  4592. <span style="font-size:0.72rem; font-weight:700; color:#FF4D8D;">匿名</span>
  4593. </div>
  4594. <div style="display:flex; align-items:center; gap:8px;">
  4595. <span class="text-mono text-xs" style="color:#FF4D8D;">♡ 96</span>
  4596. <span style="padding:1px 6px; background:#FF4D8D15; color:#FF4D8D; border-radius:2px; font-size:0.65rem;">酒局必备</span>
  4597. </div>
  4598. </div>
  4599. <div style="font-size:0.78rem; color:var(--text-1); line-height:1.5;">边喝酒边喝柠檬水 醉得很慢 亲测有效</div>
  4600. </div>
  4601. <div style="padding:10px 12px; background:var(--bg-2); border-left:3px solid #FF4D8D; border-radius:4px; margin-bottom:8px;">
  4602. <div style="display:flex; justify-content:space-between; align-items:center; margin-bottom:4px;">
  4603. <div style="display:flex; align-items:center; gap:6px;">
  4604. <span style="font-size:0.72rem; font-weight:700; color:#FF4D8D;">匿名</span>
  4605. </div>
  4606. <div style="display:flex; align-items:center; gap:8px;">
  4607. <span class="text-mono text-xs" style="color:#FF4D8D;">♡ 70</span>
  4608. <span style="padding:1px 6px; background:#FF4D8D15; color:#FF4D8D; border-radius:2px; font-size:0.65rem;">酒局必备</span>
  4609. </div>
  4610. </div>
  4611. <div style="font-size:0.78rem; color:var(--text-1); line-height:1.5;">喝酒前吃俩馒头 亲测有效[doge]</div>
  4612. </div>
  4613. <div style="padding:10px 12px; background:var(--bg-2); border-left:3px solid #FF4D8D; border-radius:4px; margin-bottom:8px;">
  4614. <div style="display:flex; justify-content:space-between; align-items:center; margin-bottom:4px;">
  4615. <div style="display:flex; align-items:center; gap:6px;">
  4616. <span style="font-size:0.72rem; font-weight:700; color:#FF4D8D;">momo</span>
  4617. </div>
  4618. <div style="display:flex; align-items:center; gap:8px;">
  4619. <span class="text-mono text-xs" style="color:#FF4D8D;">♡ 58</span>
  4620. <span style="padding:1px 6px; background:#FF4D8D15; color:#FF4D8D; border-radius:2px; font-size:0.65rem;">解酒药</span>
  4621. </div>
  4622. </div>
  4623. <div style="font-size:0.78rem; color:var(--text-1); line-height:1.5;">我喝这个 也挺有效的</div>
  4624. </div>
  4625. <div style="padding:10px 12px; background:var(--bg-2); border-left:3px solid #FF4D8D; border-radius:4px; margin-bottom:8px;">
  4626. <div style="display:flex; justify-content:space-between; align-items:center; margin-bottom:4px;">
  4627. <div style="display:flex; align-items:center; gap:6px;">
  4628. <span style="font-size:0.72rem; font-weight:700; color:#FF4D8D;">:X恒</span>
  4629. <span class="text-mono text-xs" style="color:var(--text-3);">📍河南</span>
  4630. </div>
  4631. <div style="display:flex; align-items:center; gap:8px;">
  4632. <span class="text-mono text-xs" style="color:#FF4D8D;">♡ 26</span>
  4633. <span style="padding:1px 6px; background:#FF4D8D15; color:#FF4D8D; border-radius:2px; font-size:0.65rem;">熬夜伤肝 (抖音)</span>
  4634. </div>
  4635. </div>
  4636. <div style="font-size:0.78rem; color:var(--text-1); line-height:1.5;">刚20岁,查出有脂肪肝[流泪]体重120斤,真的别熬夜,熬夜是真伤肝,之所以有脂肪肝,就是肝出了问题,代谢能力分解能力变差,导致堆积,医生嘱托我每天按时睡觉,多运动[捂脸]平时晚上都是一两点睡,现在年轻身体感觉不到什么,等过了30岁,[尬笑…</div>
  4637. </div>
  4638. </div>
  4639. </div>
  4640. <!-- 最终推荐 -->
  4641. <div class="fade-up" style="background:linear-gradient(135deg, #8B5CF615, #FF8C4210); border:2px solid #8B5CF6; border-radius:var(--radius-md); padding:24px;">
  4642. <div class="text-mono text-xs" style="color:#8B5CF6; letter-spacing:0.2em; margin-bottom:14px;">🏆 RECOMMENDATION · 分场景话术组合</div>
  4643. <div style="display:grid; grid-template-columns:2fr 1fr; gap:20px; align-items:center;">
  4644. <div>
  4645. <h3 style="margin:0 0 10px; font-size:1.2rem; color:var(--text-1);">✨ 首推:<span style="color:#FF8C42;">B(体感)</span> + <span style="color:#8B5CF6;">C(真成分)</span>双主打</h3>
  4646. <div style="color:var(--text-2); font-size:0.88rem; line-height:1.7;">
  4647. <strong style="color:#FF8C42;">B 体感可见派 (Accept 88)</strong> 直击"酒桌分食 1 片"即时体感 → 餐饮渠道主话术;<br/>
  4648. <strong style="color:#8B5CF6;">C 真成分派 (Accept 82)</strong> 打脸水飞蓟 → 电商/礼品/药线深度决策加成;<br/>
  4649. A/D 作为补充话术用于药线(专业)和社媒(情绪共鸣)场景。
  4650. </div>
  4651. </div>
  4652. <div style="display:grid; gap:6px;">
  4653. <div style="padding:8px 12px; background:#FF8C4215; border-left:3px solid #FF8C42; border-radius:4px;">
  4654. <div style="display:flex; justify-content:space-between; align-items:baseline;">
  4655. <div style="font-size:0.82rem; font-weight:700; color:var(--text-1);">版本 B · 体感可见派</div>
  4656. <div style="font-family:var(--font-mono); font-size:0.82rem; color:#FF8C42; font-weight:700;">88</div>
  4657. </div>
  4658. </div>
  4659. <div style="padding:8px 12px; background:#8B5CF615; border-left:3px solid #8B5CF6; border-radius:4px;">
  4660. <div style="display:flex; justify-content:space-between; align-items:baseline;">
  4661. <div style="font-size:0.82rem; font-weight:700; color:var(--text-1);">版本 C · 真成分派</div>
  4662. <div style="font-family:var(--font-mono); font-size:0.82rem; color:#8B5CF6; font-weight:700;">82</div>
  4663. </div>
  4664. </div>
  4665. <div style="padding:8px 12px; background:#FF4D8D15; border-left:3px solid #FF4D8D; border-radius:4px;">
  4666. <div style="display:flex; justify-content:space-between; align-items:baseline;">
  4667. <div style="font-size:0.82rem; font-weight:700; color:var(--text-1);">版本 D · 情绪共鸣派</div>
  4668. <div style="font-family:var(--font-mono); font-size:0.82rem; color:#FF4D8D; font-weight:700;">75</div>
  4669. </div>
  4670. </div>
  4671. <div style="padding:8px 12px; background:#0085CA15; border-left:3px solid #0085CA; border-radius:4px;">
  4672. <div style="display:flex; justify-content:space-between; align-items:baseline;">
  4673. <div style="font-size:0.82rem; font-weight:700; color:var(--text-1);">版本 A · 机制科普派</div>
  4674. <div style="font-family:var(--font-mono); font-size:0.82rem; color:#0085CA; font-weight:700;">68</div>
  4675. </div>
  4676. </div>
  4677. </div>
  4678. </div>
  4679. </div>
  4680. </div>
  4681. </section>
  4682. <section class="report-section" id="positioning-4" data-tone="purple" data-slide-num="24">
  4683. <div class="section-inner">
  4684. <div class="section-head rise-in">
  4685. <div class="section-eyebrow" style="color:#8B5CF6;">4.4 · SOCIAL CURRENCY SPEECH</div>
  4686. <h2 class="text-h1"><span class="headline-anim">社交货币话术 · 酒局面子 4 场景脚本</span></h2>
  4687. <p class="section-sub">江中肝纯 = <strong style="color:#8B5CF6;">酒桌社交货币</strong> · 4 个典型场景的分食动作 + 话术脚本 + 人设 + 记忆点</p>
  4688. </div>
  4689. <!-- 4 场景脚本 -->
  4690. <div class="fade-up" style="display:grid; grid-template-columns:repeat(2, 1fr); gap:16px; margin-bottom:24px;">
  4691. <div style="background:var(--bg-1); border:1px solid #D4A57444; border-top:4px solid #D4A574; border-radius:var(--radius-md); padding:18px;">
  4692. <div style="display:flex; align-items:center; justify-content:space-between; margin-bottom:12px;">
  4693. <div style="display:flex; align-items:center; gap:10px;">
  4694. <div style="width:44px; height:44px; background:#D4A57422; border-radius:50%; display:flex; align-items:center; justify-content:center; font-size:1.5rem;">🥂</div>
  4695. <div>
  4696. <div class="text-mono text-xs" style="color:#D4A574; letter-spacing:0.1em;">SCENE TOAST</div>
  4697. <div style="font-size:1.05rem; font-weight:800; color:var(--text-1);">酒局敬酒前</div>
  4698. </div>
  4699. </div>
  4700. <div style="text-align:center;">
  4701. <div style="font-family:var(--font-head); font-weight:900; font-size:1.6rem; color:#D4A574; line-height:1;">92</div>
  4702. <div class="text-mono text-xs" style="color:#D4A574; margin-top:2px; letter-spacing:0.08em;">LIKE/100</div>
  4703. </div>
  4704. </div>
  4705. <div style="padding:8px 10px; background:#D4A57408; border-left:3px solid #D4A574; border-radius:4px; margin-bottom:10px;">
  4706. <div class="text-mono text-xs" style="color:#D4A574; letter-spacing:0.08em; margin-bottom:3px;">🎬 场景</div>
  4707. <div style="font-size:0.78rem; color:var(--text-1); line-height:1.45;">老板带队应酬,酒过三巡</div>
  4708. </div>
  4709. <div style="margin-bottom:8px; padding:6px 10px; background:var(--bg-2); border-radius:3px;">
  4710. <div class="text-mono text-xs" style="color:var(--text-3); letter-spacing:0.06em; margin-bottom:2px;">🎭 动作</div>
  4711. <div style="font-size:0.74rem; color:var(--text-2); line-height:1.4;">从包里拿出江中肝纯锡纸小包,每人分一片</div>
  4712. </div>
  4713. <div style="margin-bottom:8px; padding:6px 10px; background:#D4A57412; border-radius:3px;">
  4714. <div class="text-mono text-xs" style="color:#D4A574; letter-spacing:0.06em; margin-bottom:2px;">🗣️ 台词</div>
  4715. <div style="font-size:0.82rem; font-weight:700; color:var(--text-1); font-style:italic; line-height:1.4;">"&quot;走,兄弟,护肝搭档来一个&quot;"</div>
  4716. </div>
  4717. <div style="display:grid; grid-template-columns:1fr 1fr; gap:8px; padding-top:8px; border-top:1px dashed var(--border);">
  4718. <div>
  4719. <div class="text-mono text-xs" style="color:var(--text-3); letter-spacing:0.06em; margin-bottom:2px;">✨ 人设</div>
  4720. <div style="font-size:0.7rem; color:#D4A574; font-weight:600; line-height:1.4;">仗义 + 懂健康 + 老板 aura</div>
  4721. </div>
  4722. <div>
  4723. <div class="text-mono text-xs" style="color:var(--text-3); letter-spacing:0.06em; margin-bottom:2px;">🔖 记忆点</div>
  4724. <div style="font-size:0.7rem; color:#D4A574; font-weight:600; line-height:1.4;">分食仪式感</div>
  4725. </div>
  4726. </div>
  4727. </div>
  4728. <div style="background:var(--bg-1); border:1px solid #FF8C4244; border-top:4px solid #FF8C42; border-radius:var(--radius-md); padding:18px;">
  4729. <div style="display:flex; align-items:center; justify-content:space-between; margin-bottom:12px;">
  4730. <div style="display:flex; align-items:center; gap:10px;">
  4731. <div style="width:44px; height:44px; background:#FF8C4222; border-radius:50%; display:flex; align-items:center; justify-content:center; font-size:1.5rem;">🍖</div>
  4732. <div>
  4733. <div class="text-mono text-xs" style="color:#FF8C42; letter-spacing:0.1em;">SCENE PREEAT</div>
  4734. <div style="font-size:1.05rem; font-weight:800; color:var(--text-1);">点餐时提前吃</div>
  4735. </div>
  4736. </div>
  4737. <div style="text-align:center;">
  4738. <div style="font-family:var(--font-head); font-weight:900; font-size:1.6rem; color:#FF8C42; line-height:1;">88</div>
  4739. <div class="text-mono text-xs" style="color:#FF8C42; margin-top:2px; letter-spacing:0.08em;">LIKE/100</div>
  4740. </div>
  4741. </div>
  4742. <div style="padding:8px 10px; background:#FF8C4208; border-left:3px solid #FF8C42; border-radius:4px; margin-bottom:10px;">
  4743. <div class="text-mono text-xs" style="color:#FF8C42; letter-spacing:0.08em; margin-bottom:3px;">🎬 场景</div>
  4744. <div style="font-size:0.78rem; color:var(--text-1); line-height:1.45;">商务宴请,点菜阶段</div>
  4745. </div>
  4746. <div style="margin-bottom:8px; padding:6px 10px; background:var(--bg-2); border-radius:3px;">
  4747. <div class="text-mono text-xs" style="color:var(--text-3); letter-spacing:0.06em; margin-bottom:2px;">🎭 动作</div>
  4748. <div style="font-size:0.74rem; color:var(--text-2); line-height:1.4;">主动拿出肝纯片,与宾客分享 &quot;待会喝的尽兴一点&quot;</div>
  4749. </div>
  4750. <div style="margin-bottom:8px; padding:6px 10px; background:#FF8C4212; border-radius:3px;">
  4751. <div class="text-mono text-xs" style="color:#FF8C42; letter-spacing:0.06em; margin-bottom:2px;">🗣️ 台词</div>
  4752. <div style="font-size:0.82rem; font-weight:700; color:var(--text-1); font-style:italic; line-height:1.4;">"&quot;肝好,胃好,咱们今晚放开喝&quot;"</div>
  4753. </div>
  4754. <div style="display:grid; grid-template-columns:1fr 1fr; gap:8px; padding-top:8px; border-top:1px dashed var(--border);">
  4755. <div>
  4756. <div class="text-mono text-xs" style="color:var(--text-3); letter-spacing:0.06em; margin-bottom:2px;">✨ 人设</div>
  4757. <div style="font-size:0.7rem; color:#FF8C42; font-weight:600; line-height:1.4;">周到 + 成熟 + 专业</div>
  4758. </div>
  4759. <div>
  4760. <div class="text-mono text-xs" style="color:var(--text-3); letter-spacing:0.06em; margin-bottom:2px;">🔖 记忆点</div>
  4761. <div style="font-size:0.7rem; color:#FF8C42; font-weight:600; line-height:1.4;">预防仪式</div>
  4762. </div>
  4763. </div>
  4764. </div>
  4765. <div style="background:var(--bg-1); border:1px solid #2D9C5D44; border-top:4px solid #2D9C5D; border-radius:var(--radius-md); padding:18px;">
  4766. <div style="display:flex; align-items:center; justify-content:space-between; margin-bottom:12px;">
  4767. <div style="display:flex; align-items:center; gap:10px;">
  4768. <div style="width:44px; height:44px; background:#2D9C5D22; border-radius:50%; display:flex; align-items:center; justify-content:center; font-size:1.5rem;">🎁</div>
  4769. <div>
  4770. <div class="text-mono text-xs" style="color:#2D9C5D; letter-spacing:0.1em;">SCENE GIVEAWAY</div>
  4771. <div style="font-size:1.05rem; font-weight:800; color:var(--text-1);">离席前赠送</div>
  4772. </div>
  4773. </div>
  4774. <div style="text-align:center;">
  4775. <div style="font-family:var(--font-head); font-weight:900; font-size:1.6rem; color:#2D9C5D; line-height:1;">85</div>
  4776. <div class="text-mono text-xs" style="color:#2D9C5D; margin-top:2px; letter-spacing:0.08em;">LIKE/100</div>
  4777. </div>
  4778. </div>
  4779. <div style="padding:8px 10px; background:#2D9C5D08; border-left:3px solid #2D9C5D; border-radius:4px; margin-bottom:10px;">
  4780. <div class="text-mono text-xs" style="color:#2D9C5D; letter-spacing:0.08em; margin-bottom:3px;">🎬 场景</div>
  4781. <div style="font-size:0.78rem; color:var(--text-1); line-height:1.45;">宴请结束,客户离场</div>
  4782. </div>
  4783. <div style="margin-bottom:8px; padding:6px 10px; background:var(--bg-2); border-radius:3px;">
  4784. <div class="text-mono text-xs" style="color:var(--text-3); letter-spacing:0.06em; margin-bottom:2px;">🎭 动作</div>
  4785. <div style="font-size:0.74rem; color:var(--text-2); line-height:1.4;">送一小盒便携装到客户手上 &quot;喝多了路上撑着&quot;</div>
  4786. </div>
  4787. <div style="margin-bottom:8px; padding:6px 10px; background:#2D9C5D12; border-radius:3px;">
  4788. <div class="text-mono text-xs" style="color:#2D9C5D; letter-spacing:0.06em; margin-bottom:2px;">🗣️ 台词</div>
  4789. <div style="font-size:0.82rem; font-weight:700; color:var(--text-1); font-style:italic; line-height:1.4;">"&quot;带上,今晚应酬明天不难受&quot;"</div>
  4790. </div>
  4791. <div style="display:grid; grid-template-columns:1fr 1fr; gap:8px; padding-top:8px; border-top:1px dashed var(--border);">
  4792. <div>
  4793. <div class="text-mono text-xs" style="color:var(--text-3); letter-spacing:0.06em; margin-bottom:2px;">✨ 人设</div>
  4794. <div style="font-size:0.7rem; color:#2D9C5D; font-weight:600; line-height:1.4;">细心 + 情义 + 客户心智</div>
  4795. </div>
  4796. <div>
  4797. <div class="text-mono text-xs" style="color:var(--text-3); letter-spacing:0.06em; margin-bottom:2px;">🔖 记忆点</div>
  4798. <div style="font-size:0.7rem; color:#2D9C5D; font-weight:600; line-height:1.4;">礼物属性</div>
  4799. </div>
  4800. </div>
  4801. </div>
  4802. <div style="background:var(--bg-1); border:1px solid #8B5CF644; border-top:4px solid #8B5CF6; border-radius:var(--radius-md); padding:18px;">
  4803. <div style="display:flex; align-items:center; justify-content:space-between; margin-bottom:12px;">
  4804. <div style="display:flex; align-items:center; gap:10px;">
  4805. <div style="width:44px; height:44px; background:#8B5CF622; border-radius:50%; display:flex; align-items:center; justify-content:center; font-size:1.5rem;">💬</div>
  4806. <div>
  4807. <div class="text-mono text-xs" style="color:#8B5CF6; letter-spacing:0.1em;">SCENE CHAT</div>
  4808. <div style="font-size:1.05rem; font-weight:800; color:var(--text-1);">私下聊起健康</div>
  4809. </div>
  4810. </div>
  4811. <div style="text-align:center;">
  4812. <div style="font-family:var(--font-head); font-weight:900; font-size:1.6rem; color:#8B5CF6; line-height:1;">78</div>
  4813. <div class="text-mono text-xs" style="color:#8B5CF6; margin-top:2px; letter-spacing:0.08em;">LIKE/100</div>
  4814. </div>
  4815. </div>
  4816. <div style="padding:8px 10px; background:#8B5CF608; border-left:3px solid #8B5CF6; border-radius:4px; margin-bottom:10px;">
  4817. <div class="text-mono text-xs" style="color:#8B5CF6; letter-spacing:0.08em; margin-bottom:3px;">🎬 场景</div>
  4818. <div style="font-size:0.78rem; color:var(--text-1); line-height:1.45;">同事聚餐,讨论体检</div>
  4819. </div>
  4820. <div style="margin-bottom:8px; padding:6px 10px; background:var(--bg-2); border-radius:3px;">
  4821. <div class="text-mono text-xs" style="color:var(--text-3); letter-spacing:0.06em; margin-bottom:2px;">🎭 动作</div>
  4822. <div style="font-size:0.74rem; color:var(--text-2); line-height:1.4;">聊起&quot;你最近转氨酶高了吧&quot;,推荐藤茶 DMY</div>
  4823. </div>
  4824. <div style="margin-bottom:8px; padding:6px 10px; background:#8B5CF612; border-radius:3px;">
  4825. <div class="text-mono text-xs" style="color:#8B5CF6; letter-spacing:0.06em; margin-bottom:2px;">🗣️ 台词</div>
  4826. <div style="font-size:0.82rem; font-weight:700; color:var(--text-1); font-style:italic; line-height:1.4;">"&quot;别吃水飞蓟了,DMY 藤茶才是新一代&quot;"</div>
  4827. </div>
  4828. <div style="display:grid; grid-template-columns:1fr 1fr; gap:8px; padding-top:8px; border-top:1px dashed var(--border);">
  4829. <div>
  4830. <div class="text-mono text-xs" style="color:var(--text-3); letter-spacing:0.06em; margin-bottom:2px;">✨ 人设</div>
  4831. <div style="font-size:0.7rem; color:#8B5CF6; font-weight:600; line-height:1.4;">懂行 + 专业 + 推荐达人</div>
  4832. </div>
  4833. <div>
  4834. <div class="text-mono text-xs" style="color:var(--text-3); letter-spacing:0.06em; margin-bottom:2px;">🔖 记忆点</div>
  4835. <div style="font-size:0.7rem; color:#8B5CF6; font-weight:600; line-height:1.4;">口碑传播</div>
  4836. </div>
  4837. </div>
  4838. </div>
  4839. </div>
  4840. <!-- VOC 印证 -->
  4841. <div class="fade-up" style="display:grid; grid-template-columns:1fr 1fr; gap:16px; margin-bottom:24px;">
  4842. <div style="background:var(--bg-1); border:1px solid #D4A57444; border-left:3px solid #D4A574; border-radius:var(--radius-md); padding:18px;">
  4843. <div class="text-mono text-xs" style="color:#D4A574; letter-spacing:0.15em; margin-bottom:10px;">🥂 "分食社交"VOC · 8 条</div>
  4844. <div style="padding:10px 12px; background:var(--bg-2); border-left:3px solid #D4A574; border-radius:4px; margin-bottom:8px;">
  4845. <div style="display:flex; justify-content:space-between; align-items:center; margin-bottom:4px;">
  4846. <div style="display:flex; align-items:center; gap:6px;">
  4847. <span style="font-size:0.72rem; font-weight:700; color:#D4A574;">张泛妮</span>
  4848. <span class="text-mono text-xs" style="color:var(--text-3);">📍吉林</span>
  4849. </div>
  4850. <div style="display:flex; align-items:center; gap:8px;">
  4851. <span class="text-mono text-xs" style="color:#D4A574;">♡ 242</span>
  4852. <span style="padding:1px 6px; background:#D4A57415; color:#D4A574; border-radius:2px; font-size:0.65rem;">护肝片 (抖音)</span>
  4853. </div>
  4854. </div>
  4855. <div style="font-size:0.78rem; color:var(--text-1); line-height:1.5;">喜欢喝酒熬夜的兄弟们 记得来我橱窗看看哦</div>
  4856. </div>
  4857. <div style="padding:10px 12px; background:var(--bg-2); border-left:3px solid #D4A574; border-radius:4px; margin-bottom:8px;">
  4858. <div style="display:flex; justify-content:space-between; align-items:center; margin-bottom:4px;">
  4859. <div style="display:flex; align-items:center; gap:6px;">
  4860. <span style="font-size:0.72rem; font-weight:700; color:#D4A574;">为了钱而奋斗,为了钱而努力</span>
  4861. <span class="text-mono text-xs" style="color:var(--text-3);">📍河南</span>
  4862. </div>
  4863. <div style="display:flex; align-items:center; gap:8px;">
  4864. <span class="text-mono text-xs" style="color:#D4A574;">♡ 1</span>
  4865. <span style="padding:1px 6px; background:#D4A57415; color:#D4A574; border-radius:2px; font-size:0.65rem;">应酬解酒 (抖音)</span>
  4866. </div>
  4867. </div>
  4868. <div style="font-size:0.78rem; color:var(--text-1); line-height:1.5;">不管怎样,喝尽兴就对了,喝多伤身体先不说,喝多受罪那是真难受,我喝多就吐,虽然舒服点,可是伤身体,所以说兄弟姐妹们,我劝你们,也包括我,咱们都喝好就行,别喝多。</div>
  4869. </div>
  4870. <div style="padding:10px 12px; background:var(--bg-2); border-left:3px solid #D4A574; border-radius:4px; margin-bottom:8px;">
  4871. <div style="display:flex; justify-content:space-between; align-items:center; margin-bottom:4px;">
  4872. <div style="display:flex; align-items:center; gap:6px;">
  4873. <span style="font-size:0.72rem; font-weight:700; color:#D4A574;">匿名</span>
  4874. <span class="text-mono text-xs" style="color:var(--text-3);">📍重庆</span>
  4875. </div>
  4876. <div style="display:flex; align-items:center; gap:8px;">
  4877. <span class="text-mono text-xs" style="color:#D4A574;">♡ 1</span>
  4878. <span style="padding:1px 6px; background:#D4A57415; color:#D4A574; border-radius:2px; font-size:0.65rem;">swisse护肝片</span>
  4879. </div>
  4880. </div>
  4881. <div style="font-size:0.78rem; color:var(--text-1); line-height:1.5;">诡秘你真是太美了吧~~💕特别喜欢这样的感觉呀!看你的分享就觉得真诚又用心💗</div>
  4882. </div>
  4883. </div>
  4884. <div style="background:var(--bg-1); border:1px solid #FF8C4244; border-left:3px solid #FF8C42; border-radius:var(--radius-md); padding:18px;">
  4885. <div class="text-mono text-xs" style="color:#FF8C42; letter-spacing:0.15em; margin-bottom:10px;">💎 海王金樽 VOC · 10 条(失败对标)</div>
  4886. <div style="padding:10px 12px; background:var(--bg-2); border-left:3px solid #FF8C42; border-radius:4px; margin-bottom:8px;">
  4887. <div style="display:flex; justify-content:space-between; align-items:center; margin-bottom:4px;">
  4888. <div style="display:flex; align-items:center; gap:6px;">
  4889. <span style="font-size:0.72rem; font-weight:700; color:#FF8C42;">匿名</span>
  4890. </div>
  4891. <div style="display:flex; align-items:center; gap:8px;">
  4892. <span class="text-mono text-xs" style="color:#FF8C42;">♡ 366</span>
  4893. <span style="padding:1px 6px; background:#FF8C4215; color:#FF8C42; border-radius:2px; font-size:0.65rem;">海王金樽</span>
  4894. </div>
  4895. </div>
  4896. <div style="font-size:0.78rem; color:var(--text-1); line-height:1.5;">电解质水➕水溶c100 都要冰的 一起喝下去 5分钟马上不难受 相信我 亲测,不好使回来打我</div>
  4897. </div>
  4898. <div style="padding:10px 12px; background:var(--bg-2); border-left:3px solid #FF8C42; border-radius:4px; margin-bottom:8px;">
  4899. <div style="display:flex; justify-content:space-between; align-items:center; margin-bottom:4px;">
  4900. <div style="display:flex; align-items:center; gap:6px;">
  4901. <span style="font-size:0.72rem; font-weight:700; color:#FF8C42;">匿名</span>
  4902. </div>
  4903. <div style="display:flex; align-items:center; gap:8px;">
  4904. <span class="text-mono text-xs" style="color:#FF8C42;">♡ 212</span>
  4905. <span style="padding:1px 6px; background:#FF8C4215; color:#FF8C42; border-radius:2px; font-size:0.65rem;">海王金樽</span>
  4906. </div>
  4907. </div>
  4908. <div style="font-size:0.78rem; color:var(--text-1); line-height:1.5;">我喝酒是属于越喝越贪酒的,不喝到废不走的那种,最后靠潜意识回家,目前没找到能第二天起来缓解办法,喝之前解酒药我也吃过有点用但不大,偶尔头疼,头不疼也是难受一整天,我基本是12点左右醒了,然后缓一会,差不多2点左右开始喝馄饨汤,馄饨吃不了两个,喝猛猛一碗趁热喝,…</div>
  4909. </div>
  4910. <div style="padding:10px 12px; background:var(--bg-2); border-left:3px solid #FF8C42; border-radius:4px; margin-bottom:8px;">
  4911. <div style="display:flex; justify-content:space-between; align-items:center; margin-bottom:4px;">
  4912. <div style="display:flex; align-items:center; gap:6px;">
  4913. <span style="font-size:0.72rem; font-weight:700; color:#FF8C42;">匿名</span>
  4914. </div>
  4915. <div style="display:flex; align-items:center; gap:8px;">
  4916. <span class="text-mono text-xs" style="color:#FF8C42;">♡ 67</span>
  4917. <span style="padding:1px 6px; background:#FF8C4215; color:#FF8C42; border-radius:2px; font-size:0.65rem;">海王金樽</span>
  4918. </div>
  4919. </div>
  4920. <div style="font-size:0.78rem; color:var(--text-1); line-height:1.5;">此时此刻的我 真的很需要邪修快速的解酒方法 太特喵难受了</div>
  4921. </div>
  4922. </div>
  4923. </div>
  4924. <!-- 社交货币 3 要素 -->
  4925. <div class="fade-up" style="background:linear-gradient(135deg, #8B5CF610, #D4A57408); border:1px solid #8B5CF644; border-radius:var(--radius-md); padding:22px;">
  4926. <div class="text-mono text-xs" style="color:#8B5CF6; letter-spacing:0.15em; margin-bottom:14px;">SOCIAL CURRENCY · 3 要素公式(Jonah Berger - Contagious)</div>
  4927. <div style="display:grid; grid-template-columns:repeat(3, 1fr); gap:14px;">
  4928. <div style="padding:14px; background:#D4A57408; border-left:3px solid #D4A574; border-radius:4px;">
  4929. <div style="font-size:1.6rem; margin-bottom:6px;">💎</div>
  4930. <div style="font-size:1.02rem; font-weight:800; color:var(--text-1); margin-bottom:4px;">1 · 内在话题性</div>
  4931. <div style="font-size:0.76rem; color:var(--text-2); line-height:1.55;">"<strong style="color:#D4A574;">藤茶 DMY ≠ 水飞蓟</strong>" 差异化认知让人忍不住分享 · 科普+打脸双效</div>
  4932. </div>
  4933. <div style="padding:14px; background:#FF8C4208; border-left:3px solid #FF8C42; border-radius:4px;">
  4934. <div style="font-size:1.6rem; margin-bottom:6px;">🎭</div>
  4935. <div style="font-size:1.02rem; font-weight:800; color:var(--text-1); margin-bottom:4px;">2 · 使用者人设</div>
  4936. <div style="font-size:0.76rem; color:var(--text-2); line-height:1.55;">"酒桌分一片" = 仗义 / 懂健康 / 老板范 · 用户分享即 <strong style="color:#FF8C42;">强化自我人设</strong></div>
  4937. </div>
  4938. <div style="padding:14px; background:#2D9C5D08; border-left:3px solid #2D9C5D; border-radius:4px;">
  4939. <div style="font-size:1.6rem; margin-bottom:6px;">🏆</div>
  4940. <div style="font-size:1.02rem; font-weight:800; color:var(--text-1); margin-bottom:4px;">3 · 即时体感</div>
  4941. <div style="font-size:0.76rem; color:var(--text-2); line-height:1.55;">DMY 加速乙醛代谢 → 酒后不头疼不宿醉 · <strong style="color:#2D9C5D;">体感可验证 = 口碑裂变</strong></div>
  4942. </div>
  4943. </div>
  4944. <div style="margin-top:14px; padding:12px 16px; background:var(--bg-1); border-left:3px solid #8B5CF6; border-radius:4px; font-size:0.85rem; color:var(--text-1); line-height:1.55;">
  4945. <strong style="color:#8B5CF6;">公式:</strong><em>藤茶 DMY 差异话题性(话题) × 酒桌分食仪式(人设) × 解酒真体感(验证)</em> = <strong style="color:#FF4D8D;">海王金樽做不到的酒局社交货币</strong>
  4946. </div>
  4947. </div>
  4948. </div>
  4949. </section>
  4950. <section class="report-section" id="positioning-5" data-tone="purple" data-slide-num="25">
  4951. <div class="section-inner">
  4952. <div class="section-head rise-in">
  4953. <div class="section-eyebrow" style="color:#8B5CF6;">4.5 · CHANNEL SPEECH ADAPTATION</div>
  4954. <h2 class="text-h1"><span class="headline-anim">分渠道话术适配 · 差异化记忆点</span></h2>
  4955. <p class="section-sub">4 渠道 × 主话术 × 辅话术 × 记忆钩子 × 证据链 × 雷区 — 每渠道独立话术包,共同指向 <strong style="color:#8B5CF6;">"藤茶 DMY"</strong>母品牌资产</p>
  4956. </div>
  4957. <!-- 4 渠道话术卡 -->
  4958. <div class="fade-up" style="display:grid; grid-template-columns:repeat(2, 1fr); gap:16px; margin-bottom:24px;">
  4959. <div style="background:var(--bg-1); border:1px solid #0085CA44; border-top:4px solid #0085CA; border-radius:var(--radius-md); padding:20px;">
  4960. <div style="display:flex; align-items:center; gap:10px; margin-bottom:12px;">
  4961. <div style="width:44px; height:44px; background:#0085CA22; border-radius:50%; display:flex; align-items:center; justify-content:center; font-size:1.4rem;">🏥</div>
  4962. <div>
  4963. <div class="text-mono text-xs" style="color:#0085CA; letter-spacing:0.12em;">CHANNEL</div>
  4964. <div style="font-size:1.15rem; font-weight:800; color:var(--text-1);">药线渠道话术</div>
  4965. </div>
  4966. </div>
  4967. <div style="padding:10px 12px; background:#0085CA12; border-left:3px solid #0085CA; border-radius:4px; margin-bottom:10px;">
  4968. <div class="text-mono text-xs" style="color:#0085CA; letter-spacing:0.08em; margin-bottom:4px;">🔊 主话术</div>
  4969. <div style="font-size:0.88rem; font-weight:700; color:var(--text-1); font-style:italic; line-height:1.5;">"对化学性肝损伤有辅助保护 · 蓝帽认证 · 与药物同服更安心"</div>
  4970. </div>
  4971. <div style="padding:8px 10px; background:var(--bg-2); border-radius:4px; margin-bottom:10px;">
  4972. <div class="text-mono text-xs" style="color:var(--text-3); letter-spacing:0.08em; margin-bottom:3px;">🔖 辅话术</div>
  4973. <div style="font-size:0.76rem; color:var(--text-2); font-style:italic; line-height:1.5;">"藤茶 DMY 黄酮,区别于水飞蓟的新一代中式草本"</div>
  4974. </div>
  4975. <div style="padding:8px 10px; background:#0085CA08; border-radius:4px; margin-bottom:10px; text-align:center;">
  4976. <div class="text-mono text-xs" style="color:#0085CA; letter-spacing:0.08em; margin-bottom:3px;">🎯 记忆钩子</div>
  4977. <div style="font-size:0.95rem; font-weight:900; color:#0085CA;">&quot;吃药护肝 = 江中肝纯&quot;</div>
  4978. </div>
  4979. <div style="margin-bottom:10px;">
  4980. <div class="text-mono text-xs" style="color:var(--text-3); letter-spacing:0.08em; margin-bottom:5px;">🔗 证据链</div>
  4981. <div style="display:flex; flex-wrap:wrap; gap:5px;">
  4982. <span style="padding:3px 8px; background:#0085CA15; color:#0085CA; border-radius:3px; font-size:0.68rem; font-weight:700;">蓝帽编号</span><span style="padding:3px 8px; background:#0085CA15; color:#0085CA; border-radius:3px; font-size:0.68rem; font-weight:700;">国药准字级 OTC 柜</span><span style="padding:3px 8px; background:#0085CA15; color:#0085CA; border-radius:3px; font-size:0.68rem; font-weight:700;">药师培训话术</span><span style="padding:3px 8px; background:#0085CA15; color:#0085CA; border-radius:3px; font-size:0.68rem; font-weight:700;">医学期刊背书</span>
  4983. </div>
  4984. </div>
  4985. <div style="padding:8px 10px; background:#FF4D8D08; border-left:3px solid #FF4D8D; border-radius:4px;">
  4986. <div style="font-size:0.72rem; color:#FF4D8D; line-height:1.45;">❌ 不可宣传&quot;治疗肝炎/脂肪肝&quot;(仅批文范围内&quot;辅助保护&quot;)</div>
  4987. </div>
  4988. </div>
  4989. <div style="background:var(--bg-1); border:1px solid #D4A57444; border-top:4px solid #D4A574; border-radius:var(--radius-md); padding:20px;">
  4990. <div style="display:flex; align-items:center; gap:10px; margin-bottom:12px;">
  4991. <div style="width:44px; height:44px; background:#D4A57422; border-radius:50%; display:flex; align-items:center; justify-content:center; font-size:1.4rem;">🎁</div>
  4992. <div>
  4993. <div class="text-mono text-xs" style="color:#D4A574; letter-spacing:0.12em;">CHANNEL</div>
  4994. <div style="font-size:1.15rem; font-weight:800; color:var(--text-1);">礼品渠道话术</div>
  4995. </div>
  4996. </div>
  4997. <div style="padding:10px 12px; background:#D4A57412; border-left:3px solid #D4A574; border-radius:4px; margin-bottom:10px;">
  4998. <div class="text-mono text-xs" style="color:#D4A574; letter-spacing:0.08em; margin-bottom:4px;">🔊 主话术</div>
  4999. <div style="font-size:0.88rem; font-weight:700; color:var(--text-1); font-style:italic; line-height:1.5;">"中国藤茶·千年药食同源·送父母长辈·体面又健康"</div>
  5000. </div>
  5001. <div style="padding:8px 10px; background:var(--bg-2); border-radius:4px; margin-bottom:10px;">
  5002. <div class="text-mono text-xs" style="color:var(--text-3); letter-spacing:0.08em; margin-bottom:3px;">🔖 辅话术</div>
  5003. <div style="font-size:0.76rem; color:var(--text-2); font-style:italic; line-height:1.5;">"高端 Swisse 风磨砂瓶礼盒 · 比保健品更有文化感"</div>
  5004. </div>
  5005. <div style="padding:8px 10px; background:#D4A57408; border-radius:4px; margin-bottom:10px; text-align:center;">
  5006. <div class="text-mono text-xs" style="color:#D4A574; letter-spacing:0.08em; margin-bottom:3px;">🎯 记忆钩子</div>
  5007. <div style="font-size:0.95rem; font-weight:900; color:#D4A574;">&quot;送健康 = 送藤茶&quot;</div>
  5008. </div>
  5009. <div style="margin-bottom:10px;">
  5010. <div class="text-mono text-xs" style="color:var(--text-3); letter-spacing:0.08em; margin-bottom:5px;">🔗 证据链</div>
  5011. <div style="display:flex; flex-wrap:wrap; gap:5px;">
  5012. <span style="padding:3px 8px; background:#D4A57415; color:#D4A574; border-radius:3px; font-size:0.68rem; font-weight:700;">新中式包装</span><span style="padding:3px 8px; background:#D4A57415; color:#D4A574; border-radius:3px; font-size:0.68rem; font-weight:700;">磨砂瓶+金色点缀</span><span style="padding:3px 8px; background:#D4A57415; color:#D4A574; border-radius:3px; font-size:0.68rem; font-weight:700;">礼盒开箱视频</span><span style="padding:3px 8px; background:#D4A57415; color:#D4A574; border-radius:3px; font-size:0.68rem; font-weight:700;">节庆限量版</span>
  5013. </div>
  5014. </div>
  5015. <div style="padding:8px 10px; background:#FF4D8D08; border-left:3px solid #FF4D8D; border-radius:4px;">
  5016. <div style="font-size:0.72rem; color:#FF4D8D; line-height:1.45;">❌ 不可偏离&quot;高端体面&quot;,不可做 low 质包装</div>
  5017. </div>
  5018. </div>
  5019. <div style="background:var(--bg-1); border:1px solid #FF8C4244; border-top:4px solid #FF8C42; border-radius:var(--radius-md); padding:20px;">
  5020. <div style="display:flex; align-items:center; gap:10px; margin-bottom:12px;">
  5021. <div style="width:44px; height:44px; background:#FF8C4222; border-radius:50%; display:flex; align-items:center; justify-content:center; font-size:1.4rem;">🍷</div>
  5022. <div>
  5023. <div class="text-mono text-xs" style="color:#FF8C42; letter-spacing:0.12em;">CHANNEL</div>
  5024. <div style="font-size:1.15rem; font-weight:800; color:var(--text-1);">餐饮渠道话术</div>
  5025. </div>
  5026. </div>
  5027. <div style="padding:10px 12px; background:#FF8C4212; border-left:3px solid #FF8C42; border-radius:4px; margin-bottom:10px;">
  5028. <div class="text-mono text-xs" style="color:#FF8C42; letter-spacing:0.08em; margin-bottom:4px;">🔊 主话术</div>
  5029. <div style="font-size:0.88rem; font-weight:700; color:var(--text-1); font-style:italic; line-height:1.5;">"酒局应酬前一片 · DMY 加速解酒不宿醉 · 分一片兄弟情义"</div>
  5030. </div>
  5031. <div style="padding:8px 10px; background:var(--bg-2); border-radius:4px; margin-bottom:10px;">
  5032. <div class="text-mono text-xs" style="color:var(--text-3); letter-spacing:0.08em; margin-bottom:3px;">🔖 辅话术</div>
  5033. <div style="font-size:0.76rem; color:var(--text-2); font-style:italic; line-height:1.5;">"锡纸小包便携随手吃 · 老板团购送客户"</div>
  5034. </div>
  5035. <div style="padding:8px 10px; background:#FF8C4208; border-radius:4px; margin-bottom:10px; text-align:center;">
  5036. <div class="text-mono text-xs" style="color:#FF8C42; letter-spacing:0.08em; margin-bottom:3px;">🎯 记忆钩子</div>
  5037. <div style="font-size:0.95rem; font-weight:900; color:#FF8C42;">&quot;喝酒分一片 = 江中肝纯&quot;</div>
  5038. </div>
  5039. <div style="margin-bottom:10px;">
  5040. <div class="text-mono text-xs" style="color:var(--text-3); letter-spacing:0.08em; margin-bottom:5px;">🔗 证据链</div>
  5041. <div style="display:flex; flex-wrap:wrap; gap:5px;">
  5042. <span style="padding:3px 8px; background:#FF8C4215; color:#FF8C42; border-radius:3px; font-size:0.68rem; font-weight:700;">酒桌分食场景</span><span style="padding:3px 8px; background:#FF8C4215; color:#FF8C42; border-radius:3px; font-size:0.68rem; font-weight:700;">KOL 酒局场景植入</span><span style="padding:3px 8px; background:#FF8C4215; color:#FF8C42; border-radius:3px; font-size:0.68rem; font-weight:700;">KTV/饭店合作</span><span style="padding:3px 8px; background:#FF8C4215; color:#FF8C42; border-radius:3px; font-size:0.68rem; font-weight:700;">老板团购 B 端</span>
  5043. </div>
  5044. </div>
  5045. <div style="padding:8px 10px; background:#FF4D8D08; border-left:3px solid #FF4D8D; border-radius:4px;">
  5046. <div style="font-size:0.72rem; color:#FF4D8D; line-height:1.45;">❌ 不可被定位成&quot;治病药&quot;,不可酒桌上像&quot;吃病药&quot;</div>
  5047. </div>
  5048. </div>
  5049. <div style="background:var(--bg-1); border:1px solid #2D9C5D44; border-top:4px solid #2D9C5D; border-radius:var(--radius-md); padding:20px;">
  5050. <div style="display:flex; align-items:center; gap:10px; margin-bottom:12px;">
  5051. <div style="width:44px; height:44px; background:#2D9C5D22; border-radius:50%; display:flex; align-items:center; justify-content:center; font-size:1.4rem;">💻</div>
  5052. <div>
  5053. <div class="text-mono text-xs" style="color:#2D9C5D; letter-spacing:0.12em;">CHANNEL</div>
  5054. <div style="font-size:1.15rem; font-weight:800; color:var(--text-1);">电商渠道话术</div>
  5055. </div>
  5056. </div>
  5057. <div style="padding:10px 12px; background:#2D9C5D12; border-left:3px solid #2D9C5D; border-radius:4px; margin-bottom:10px;">
  5058. <div class="text-mono text-xs" style="color:#2D9C5D; letter-spacing:0.08em; margin-bottom:4px;">🔊 主话术</div>
  5059. <div style="font-size:0.88rem; font-weight:700; color:var(--text-1); font-style:italic; line-height:1.5;">"藤茶 DMY 黄酮 · 比水飞蓟更高活性 · 解酒+降脂+护肝三效合一"</div>
  5060. </div>
  5061. <div style="padding:8px 10px; background:var(--bg-2); border-radius:4px; margin-bottom:10px;">
  5062. <div class="text-mono text-xs" style="color:var(--text-3); letter-spacing:0.08em; margin-bottom:3px;">🔖 辅话术</div>
  5063. <div style="font-size:0.76rem; color:var(--text-2); font-style:italic; line-height:1.5;">"性价比高于 Swisse · 江中品牌背书 · 一物一码可溯源"</div>
  5064. </div>
  5065. <div style="padding:8px 10px; background:#2D9C5D08; border-radius:4px; margin-bottom:10px; text-align:center;">
  5066. <div class="text-mono text-xs" style="color:#2D9C5D; letter-spacing:0.08em; margin-bottom:3px;">🎯 记忆钩子</div>
  5067. <div style="font-size:0.95rem; font-weight:900; color:#2D9C5D;">&quot;别吃水飞蓟 = 看 DMY 新草本&quot;</div>
  5068. </div>
  5069. <div style="margin-bottom:10px;">
  5070. <div class="text-mono text-xs" style="color:var(--text-3); letter-spacing:0.08em; margin-bottom:5px;">🔗 证据链</div>
  5071. <div style="display:flex; flex-wrap:wrap; gap:5px;">
  5072. <span style="padding:3px 8px; background:#2D9C5D15; color:#2D9C5D; border-radius:3px; font-size:0.68rem; font-weight:700;">详情页差异科普</span><span style="padding:3px 8px; background:#2D9C5D15; color:#2D9C5D; border-radius:3px; font-size:0.68rem; font-weight:700;">一物一码溯源</span><span style="padding:3px 8px; background:#2D9C5D15; color:#2D9C5D; border-radius:3px; font-size:0.68rem; font-weight:700;">小红书/抖音 KOL</span><span style="padding:3px 8px; background:#2D9C5D15; color:#2D9C5D; border-radius:3px; font-size:0.68rem; font-weight:700;">会员复购体系</span>
  5073. </div>
  5074. </div>
  5075. <div style="padding:8px 10px; background:#FF4D8D08; border-left:3px solid #FF4D8D; border-radius:4px;">
  5076. <div style="font-size:0.72rem; color:#FF4D8D; line-height:1.45;">❌ 不可流于&quot;便宜&quot;,要守&quot;差异化 + 江中品牌&quot;双护城河</div>
  5077. </div>
  5078. </div>
  5079. </div>
  5080. <!-- 共识心智地图 -->
  5081. <div class="fade-up" style="background:linear-gradient(135deg, #8B5CF610, #D4A57408); border:1px solid #8B5CF644; border-radius:var(--radius-md); padding:24px;">
  5082. <div class="text-mono text-xs" style="color:#8B5CF6; letter-spacing:0.15em; margin-bottom:14px;">BRAND MIND MAP · 母品牌共识 + 渠道分化</div>
  5083. <svg viewBox="0 0 700 280" style="width:100%; max-width:880px; height:auto; display:block; margin:0 auto;">
  5084. <defs>
  5085. <radialGradient id="gradBrandCore" cx="50%" cy="50%" r="50%">
  5086. <stop offset="0" stop-color="#8B5CF6" stop-opacity="0.95"/>
  5087. <stop offset="1" stop-color="#D4A574" stop-opacity="0.75"/>
  5088. </radialGradient>
  5089. </defs>
  5090. <!-- 中心母品牌资产 -->
  5091. <circle cx="350" cy="140" r="62" fill="url(#gradBrandCore)" stroke="#8B5CF6" stroke-width="3"/>
  5092. <text x="350" y="128" text-anchor="middle" font-family="ui-sans-serif" font-size="15" fill="#fff" font-weight="900">江中肝纯片</text>
  5093. <text x="350" y="148" text-anchor="middle" font-family="ui-sans-serif" font-size="12" fill="#fff" font-weight="700" opacity="0.9">藤茶 DMY</text>
  5094. <text x="350" y="164" text-anchor="middle" font-family="ui-sans-serif" font-size="10" fill="#fff" font-weight="600" opacity="0.85">母品牌资产</text>
  5095. <!-- 4 渠道分支 -->
  5096. <line x1="350" y1="78" x2="350" y2="64" stroke="#0085CA" stroke-width="2.5"/>
  5097. <circle cx="350" cy="40" r="26" fill="#0085CA" stroke="#0085CA" stroke-width="2"/>
  5098. <text x="350" y="38" text-anchor="middle" font-family="ui-sans-serif" font-size="15" fill="#fff">🏥</text>
  5099. <text x="350" y="51" text-anchor="middle" font-family="ui-sans-serif" font-size="9" fill="#fff" font-weight="700">药线</text>
  5100. <text x="350" y="86" text-anchor="middle" font-family="ui-sans-serif" font-size="10" fill="#0085CA" font-weight="700">吃药护肝</text>
  5101. <text x="350" y="100" text-anchor="middle" font-family="ui-sans-serif" font-size="10" fill="#0085CA" font-weight="700">= 江中肝纯</text>
  5102. <line x1="412" y1="140" x2="456" y2="140" stroke="#D4A574" stroke-width="2.5"/>
  5103. <circle cx="480" cy="140" r="26" fill="#D4A574" stroke="#D4A574" stroke-width="2"/>
  5104. <text x="480" y="138" text-anchor="middle" font-family="ui-sans-serif" font-size="15" fill="#fff">🎁</text>
  5105. <text x="480" y="151" text-anchor="middle" font-family="ui-sans-serif" font-size="9" fill="#fff" font-weight="700">礼品</text>
  5106. <text x="480" y="186" text-anchor="middle" font-family="ui-sans-serif" font-size="10" fill="#D4A574" font-weight="700">送健康</text>
  5107. <text x="480" y="200" text-anchor="middle" font-family="ui-sans-serif" font-size="10" fill="#D4A574" font-weight="700">= 送藤茶</text>
  5108. <line x1="350" y1="202" x2="350" y2="216" stroke="#FF8C42" stroke-width="2.5"/>
  5109. <circle cx="350" cy="240" r="26" fill="#FF8C42" stroke="#FF8C42" stroke-width="2"/>
  5110. <text x="350" y="238" text-anchor="middle" font-family="ui-sans-serif" font-size="15" fill="#fff">🍷</text>
  5111. <text x="350" y="251" text-anchor="middle" font-family="ui-sans-serif" font-size="9" fill="#fff" font-weight="700">餐饮</text>
  5112. <text x="350" y="286" text-anchor="middle" font-family="ui-sans-serif" font-size="10" fill="#FF8C42" font-weight="700">喝酒分一片</text>
  5113. <text x="350" y="300" text-anchor="middle" font-family="ui-sans-serif" font-size="10" fill="#FF8C42" font-weight="700">= 江中肝纯</text>
  5114. <line x1="288" y1="140" x2="244" y2="140" stroke="#2D9C5D" stroke-width="2.5"/>
  5115. <circle cx="220" cy="140" r="26" fill="#2D9C5D" stroke="#2D9C5D" stroke-width="2"/>
  5116. <text x="220" y="138" text-anchor="middle" font-family="ui-sans-serif" font-size="15" fill="#fff">💻</text>
  5117. <text x="220" y="151" text-anchor="middle" font-family="ui-sans-serif" font-size="9" fill="#fff" font-weight="700">电商</text>
  5118. <text x="220" y="186" text-anchor="middle" font-family="ui-sans-serif" font-size="10" fill="#2D9C5D" font-weight="700">别吃水飞蓟</text>
  5119. <text x="220" y="200" text-anchor="middle" font-family="ui-sans-serif" font-size="10" fill="#2D9C5D" font-weight="700">= 看 DMY 新草本</text>
  5120. </svg>
  5121. </div>
  5122. </div>
  5123. </section>
  5124. <section class="report-section" id="scene" data-tone="orange" data-slide-num="26/42" style="justify-content:center;">
  5125. <div class="section-inner">
  5126. <div class="rise-in" style="text-align:center; margin-bottom:48px;">
  5127. <div class="text-mono" style="color:#FF8C42; letter-spacing:0.35em; font-size:0.8rem; margin-bottom:20px;">CHAPTER 5 · SCENE-FIT</div>
  5128. <h1 style="font-family:var(--font-head); font-weight:900; font-size:clamp(4rem, 10vw, 8rem); line-height:0.92; letter-spacing:-0.04em; color:#fff; background:linear-gradient(135deg, #fff 30%, #FF8C42 100%); -webkit-background-clip:text; background-clip:text; -webkit-text-fill-color:transparent; margin:0 0 18px;">
  5129. 场景适配
  5130. </h1>
  5131. <p class="text-poster" style="font-size:clamp(1.2rem, 2.2vw, 1.8rem); color:var(--text-2); font-weight:500; max-width:820px; margin:0 auto; line-height:1.5;">药线 / 礼品 / 餐饮 / 电商 4 渠道场景 VOC 独立验证</p>
  5132. </div>
  5133. <div class="fade-up" style="max-width:920px; margin:0 auto 40px; padding:28px 36px; background:rgba(255,255,255,0.02); border-left:4px solid #FF8C42; border-radius:0 var(--radius-md) var(--radius-md) 0;">
  5134. <div class="text-mono text-xs" style="color:#FF8C42; letter-spacing:0.15em; margin-bottom:10px;">KEY TAKE · 本章核心</div>
  5135. <div style="font-size:1.15rem; line-height:1.75; color:var(--text-1);">四大渠道本质不同:<strong style="color:#0085CA;">药线看合规</strong>(医生/药师推荐意愿)、<strong style="color:#D4A574;">礼品看颜值</strong>(送礼体面度)、<strong style="color:#FF8C42;">餐饮看体感</strong>(解酒即时反馈 + 分食社交)、<strong style="color:#2D9C5D;">电商看差异</strong>(藤茶 DMY vs 水飞蓟)。</div>
  5136. </div>
  5137. <div class="grid fade-up" style="grid-template-columns:repeat(4, 1fr); gap:14px; max-width:1100px; margin:0 auto;">
  5138. <div style="background:var(--bg-1); border:1px solid var(--border); border-radius:var(--radius-md); padding:18px 16px; display:flex; flex-direction:column; gap:8px; border-top:2px solid #FF8C42;">
  5139. <div class="text-mono text-xs" style="color:#FF8C42; letter-spacing:0.1em; font-weight:700;">5.1</div>
  5140. <div style="font-weight:700; font-size:0.86rem; color:var(--text-1); line-height:1.35;">药线场景·合规+长期</div>
  5141. </div>
  5142. <div style="background:var(--bg-1); border:1px solid var(--border); border-radius:var(--radius-md); padding:18px 16px; display:flex; flex-direction:column; gap:8px; border-top:2px solid #FF8C42;">
  5143. <div class="text-mono text-xs" style="color:#FF8C42; letter-spacing:0.1em; font-weight:700;">5.2</div>
  5144. <div style="font-weight:700; font-size:0.86rem; color:var(--text-1); line-height:1.35;">礼品场景·颜值+体面</div>
  5145. </div>
  5146. <div style="background:var(--bg-1); border:1px solid var(--border); border-radius:var(--radius-md); padding:18px 16px; display:flex; flex-direction:column; gap:8px; border-top:2px solid #FF8C42;">
  5147. <div class="text-mono text-xs" style="color:#FF8C42; letter-spacing:0.1em; font-weight:700;">5.3</div>
  5148. <div style="font-weight:700; font-size:0.86rem; color:var(--text-1); line-height:1.35;">餐饮场景·便携+体感</div>
  5149. </div>
  5150. <div style="background:var(--bg-1); border:1px solid var(--border); border-radius:var(--radius-md); padding:18px 16px; display:flex; flex-direction:column; gap:8px; border-top:2px solid #FF8C42;">
  5151. <div class="text-mono text-xs" style="color:#FF8C42; letter-spacing:0.1em; font-weight:700;">5.4</div>
  5152. <div style="font-weight:700; font-size:0.86rem; color:var(--text-1); line-height:1.35;">电商场景·性价比+差异化</div>
  5153. </div>
  5154. </div>
  5155. <div class="fade-up text-mono text-xs" style="margin-top:56px; text-align:center; color:var(--text-3); letter-spacing:0.2em;">
  5156. ↓ 滚动查看 4 个子章节展开
  5157. </div>
  5158. </div>
  5159. </section>
  5160. <section class="report-section" id="scene-1" data-tone="orange" data-slide-num="27">
  5161. <div class="section-inner">
  5162. <div class="section-head rise-in">
  5163. <div class="section-eyebrow" style="color:#0085CA;">5.1 · MEDICAL CHANNEL</div>
  5164. <h2 class="text-h1"><span class="headline-anim">🏥 药线场景 · 合规 + 长期 + 与药物同服</span></h2>
  5165. <p class="section-sub">药线验证目标:医生/药师推荐意愿 ≥80% · 药店动销 ≥30 盒/月 · 合规审核 100% 通过 · 目标 <strong style="color:#0085CA;">3亿</strong>(占 10 亿 30%)· 核心人群 药店店员 / 执业药师 / 消化科医生 / 长期服药人群</p>
  5166. </div>
  5167. <!-- 渠道核心卡片 -->
  5168. <div class="fade-up" style="background:linear-gradient(135deg, #0085CA10, #0085CA02); border:2px solid #0085CA44; border-left:5px solid #0085CA; border-radius:var(--radius-md); padding:22px; margin-bottom:24px;">
  5169. <div style="display:grid; grid-template-columns:2fr 1fr; gap:22px;">
  5170. <div>
  5171. <div class="text-mono text-xs" style="color:#0085CA; letter-spacing:0.15em; margin-bottom:8px;">🎯 渠道核心主张</div>
  5172. <h3 style="margin:0 0 10px; font-size:1.6rem; color:var(--text-1); line-height:1.3;">"对化学性肝损伤有辅助保护 · 蓝帽认证 · 长期服用安全"</h3>
  5173. <div style="font-size:0.88rem; color:var(--text-2); line-height:1.7;">主阵地:一心堂 / 大参林 / 老百姓 · 医院便民药房 · 铝塑板装 12×2 标准陈列。SKU 关键:板装 ¥25-40 低价引流 + 瓶装 60 片 ¥89-119 持续复购。</div>
  5174. </div>
  5175. <div style="display:grid; gap:8px; align-content:start;">
  5176. <div style="padding:10px 12px; background:var(--bg-1); border-radius:6px; text-align:center;">
  5177. <div style="font-family:var(--font-head); font-weight:900; font-size:2.2rem; color:#0085CA; line-height:1;">3</div>
  5178. <div class="text-mono text-xs" style="color:#0085CA; margin-top:3px; letter-spacing:0.08em;">亿 / YEAR</div>
  5179. </div>
  5180. <div style="padding:10px 12px; background:var(--bg-1); border-radius:6px; text-align:center;">
  5181. <div style="font-family:var(--font-head); font-weight:900; font-size:1.6rem; color:#0085CA; line-height:1;">30%</div>
  5182. <div class="text-mono text-xs" style="color:#0085CA; margin-top:3px; letter-spacing:0.08em;">OF 10亿</div>
  5183. </div>
  5184. </div>
  5185. </div>
  5186. </div>
  5187. <!-- 5 维度拆解:用户痛点 / SKU / 话术 / 触点 / KPI -->
  5188. <div class="fade-up" style="display:grid; grid-template-columns:repeat(5, 1fr); gap:14px; margin-bottom:24px;">
  5189. <div style="background:var(--bg-1); border:1px solid #FF4D8D44; border-top:3px solid #FF4D8D; border-radius:var(--radius-md); padding:16px;">
  5190. <div style="display:flex; align-items:center; gap:8px; margin-bottom:10px;">
  5191. <div style="width:36px; height:36px; background:#FF4D8D22; border-radius:50%; display:flex; align-items:center; justify-content:center; font-size:1.2rem;">😰</div>
  5192. <div>
  5193. <div class="text-mono text-xs" style="color:#FF4D8D; letter-spacing:0.08em;">PAINS</div>
  5194. <div style="font-size:0.92rem; font-weight:800; color:var(--text-1);">用户痛点</div>
  5195. </div>
  5196. </div>
  5197. <ul style="margin:0; padding:0; list-style:none;">
  5198. <li style="padding:4px 0; font-size:0.72rem; color:var(--text-2); line-height:1.5; padding-left:14px; position:relative;"><span style="position:absolute; left:0; color:#FF4D8D;">▸</span>长期服药担心伤肝</li><li style="padding:4px 0; font-size:0.72rem; color:var(--text-2); line-height:1.5; padding-left:14px; position:relative;"><span style="position:absolute; left:0; color:#FF4D8D;">▸</span>护肝片副作用(胃反酸)</li><li style="padding:4px 0; font-size:0.72rem; color:var(--text-2); line-height:1.5; padding-left:14px; position:relative;"><span style="position:absolute; left:0; color:#FF4D8D;">▸</span>易善复胃肠反应/涨价</li><li style="padding:4px 0; font-size:0.72rem; color:var(--text-2); line-height:1.5; padding-left:14px; position:relative;"><span style="position:absolute; left:0; color:#FF4D8D;">▸</span>医生不推荐护肝片&quot;智商税&quot;</li>
  5199. </ul>
  5200. </div>
  5201. <div style="background:var(--bg-1); border:1px solid #0085CA44; border-top:3px solid #0085CA; border-radius:var(--radius-md); padding:16px;">
  5202. <div style="display:flex; align-items:center; gap:8px; margin-bottom:10px;">
  5203. <div style="width:36px; height:36px; background:#0085CA22; border-radius:50%; display:flex; align-items:center; justify-content:center; font-size:1.2rem;">📦</div>
  5204. <div>
  5205. <div class="text-mono text-xs" style="color:#0085CA; letter-spacing:0.08em;">SKU</div>
  5206. <div style="font-size:0.92rem; font-weight:800; color:var(--text-1);">SKU 配置</div>
  5207. </div>
  5208. </div>
  5209. <ul style="margin:0; padding:0; list-style:none;">
  5210. <li style="padding:4px 0; font-size:0.72rem; color:var(--text-2); line-height:1.5; padding-left:14px; position:relative;"><span style="position:absolute; left:0; color:#0085CA;">▸</span>JZ-L-M12 板装 12×2(¥25-40)</li><li style="padding:4px 0; font-size:0.72rem; color:var(--text-2); line-height:1.5; padding-left:14px; position:relative;"><span style="position:absolute; left:0; color:#0085CA;">▸</span>JZ-L-M60 瓶装 60 片(¥89-119)</li><li style="padding:4px 0; font-size:0.72rem; color:var(--text-2); line-height:1.5; padding-left:14px; position:relative;"><span style="position:absolute; left:0; color:#0085CA;">▸</span>JZ-L-M120 瓶装 120 片(¥189-239)</li><li style="padding:4px 0; font-size:0.72rem; color:var(--text-2); line-height:1.5; padding-left:14px; position:relative;"><span style="position:absolute; left:0; color:#0085CA;">▸</span>白底 + 标准蓝绿配色</li>
  5211. </ul>
  5212. </div>
  5213. <div style="background:var(--bg-1); border:1px solid #2D9C5D44; border-top:3px solid #2D9C5D; border-radius:var(--radius-md); padding:16px;">
  5214. <div style="display:flex; align-items:center; gap:8px; margin-bottom:10px;">
  5215. <div style="width:36px; height:36px; background:#2D9C5D22; border-radius:50%; display:flex; align-items:center; justify-content:center; font-size:1.2rem;">🗣️</div>
  5216. <div>
  5217. <div class="text-mono text-xs" style="color:#2D9C5D; letter-spacing:0.08em;">SPEECH</div>
  5218. <div style="font-size:0.92rem; font-weight:800; color:var(--text-1);">话术包</div>
  5219. </div>
  5220. </div>
  5221. <ul style="margin:0; padding:0; list-style:none;">
  5222. <li style="padding:4px 0; font-size:0.72rem; color:var(--text-2); line-height:1.5; padding-left:14px; position:relative;"><span style="position:absolute; left:0; color:#2D9C5D;">▸</span>&quot;与药物同服更安心&quot;</li><li style="padding:4px 0; font-size:0.72rem; color:var(--text-2); line-height:1.5; padding-left:14px; position:relative;"><span style="position:absolute; left:0; color:#2D9C5D;">▸</span>&quot;蓝帽认证 · 长期可服&quot;</li><li style="padding:4px 0; font-size:0.72rem; color:var(--text-2); line-height:1.5; padding-left:14px; position:relative;"><span style="position:absolute; left:0; color:#2D9C5D;">▸</span>&quot;藤茶 DMY · 不干扰肝药酶&quot;</li><li style="padding:4px 0; font-size:0.72rem; color:var(--text-2); line-height:1.5; padding-left:14px; position:relative;"><span style="position:absolute; left:0; color:#2D9C5D;">▸</span>&quot;化学性肝损伤辅助保护&quot;</li>
  5223. </ul>
  5224. </div>
  5225. <div style="background:var(--bg-1); border:1px solid #8B5CF644; border-top:3px solid #8B5CF6; border-radius:var(--radius-md); padding:16px;">
  5226. <div style="display:flex; align-items:center; gap:8px; margin-bottom:10px;">
  5227. <div style="width:36px; height:36px; background:#8B5CF622; border-radius:50%; display:flex; align-items:center; justify-content:center; font-size:1.2rem;">🎯</div>
  5228. <div>
  5229. <div class="text-mono text-xs" style="color:#8B5CF6; letter-spacing:0.08em;">TOUCHPOINTS</div>
  5230. <div style="font-size:0.92rem; font-weight:800; color:var(--text-1);">关键触点</div>
  5231. </div>
  5232. </div>
  5233. <ul style="margin:0; padding:0; list-style:none;">
  5234. <li style="padding:4px 0; font-size:0.72rem; color:var(--text-2); line-height:1.5; padding-left:14px; position:relative;"><span style="position:absolute; left:0; color:#8B5CF6;">▸</span>药师培训话术单页</li><li style="padding:4px 0; font-size:0.72rem; color:var(--text-2); line-height:1.5; padding-left:14px; position:relative;"><span style="position:absolute; left:0; color:#8B5CF6;">▸</span>医院便民柜 OTC 陈列</li><li style="padding:4px 0; font-size:0.72rem; color:var(--text-2); line-height:1.5; padding-left:14px; position:relative;"><span style="position:absolute; left:0; color:#8B5CF6;">▸</span>医学期刊背书(中南药学)</li><li style="padding:4px 0; font-size:0.72rem; color:var(--text-2); line-height:1.5; padding-left:14px; position:relative;"><span style="position:absolute; left:0; color:#8B5CF6;">▸</span>丁香医生/医学界科普</li>
  5235. </ul>
  5236. </div>
  5237. <div style="background:var(--bg-1); border:1px solid #D4A57444; border-top:3px solid #D4A574; border-radius:var(--radius-md); padding:16px;">
  5238. <div style="display:flex; align-items:center; gap:8px; margin-bottom:10px;">
  5239. <div style="width:36px; height:36px; background:#D4A57422; border-radius:50%; display:flex; align-items:center; justify-content:center; font-size:1.2rem;">📊</div>
  5240. <div>
  5241. <div class="text-mono text-xs" style="color:#D4A574; letter-spacing:0.08em;">KPI</div>
  5242. <div style="font-size:0.92rem; font-weight:800; color:var(--text-1);">KPI 目标</div>
  5243. </div>
  5244. </div>
  5245. <ul style="margin:0; padding:0; list-style:none;">
  5246. <li style="padding:4px 0; font-size:0.72rem; color:var(--text-2); line-height:1.5; padding-left:14px; position:relative;"><span style="position:absolute; left:0; color:#D4A574;">▸</span>药店覆盖 3w+ 门店</li><li style="padding:4px 0; font-size:0.72rem; color:var(--text-2); line-height:1.5; padding-left:14px; position:relative;"><span style="position:absolute; left:0; color:#D4A574;">▸</span>月均动销 30+ 盒/店</li><li style="padding:4px 0; font-size:0.72rem; color:var(--text-2); line-height:1.5; padding-left:14px; position:relative;"><span style="position:absolute; left:0; color:#D4A574;">▸</span>医生推荐意愿 ≥80%</li><li style="padding:4px 0; font-size:0.72rem; color:var(--text-2); line-height:1.5; padding-left:14px; position:relative;"><span style="position:absolute; left:0; color:#D4A574;">▸</span>合规投诉率 0%</li>
  5247. </ul>
  5248. </div>
  5249. </div>
  5250. <!-- VOC 原声支撑 -->
  5251. <div class="fade-up" style="background:var(--bg-1); border:1px solid #0085CA44; border-radius:var(--radius-md); padding:22px; margin-bottom:24px;">
  5252. <div class="text-mono text-xs" style="color:#0085CA; letter-spacing:0.15em; margin-bottom:12px;">💬 VOC RAW VOICE · 药线相关 VOC(副作用/安全/医生/药师)(6 条相关评论)</div>
  5253. <div style="display:grid; grid-template-columns:repeat(3, 1fr); gap:10px;">
  5254. <div style="padding:10px 12px; background:var(--bg-2); border-left:3px solid #0085CA; border-radius:4px; margin-bottom:8px;">
  5255. <div style="display:flex; justify-content:space-between; align-items:center; margin-bottom:4px;">
  5256. <div style="display:flex; align-items:center; gap:6px;">
  5257. <span style="font-size:0.72rem; font-weight:700; color:#0085CA;">breeze</span>
  5258. </div>
  5259. <div style="display:flex; align-items:center; gap:8px;">
  5260. <span class="text-mono text-xs" style="color:#0085CA;">♡ 1562</span>
  5261. <span style="padding:1px 6px; background:#0085CA15; color:#0085CA; border-radius:2px; font-size:0.65rem;">解酒药</span>
  5262. </div>
  5263. </div>
  5264. <div style="font-size:0.78rem; color:var(--text-1); line-height:1.5;">医生现身说法,因为平时也会应酬喝酒,可以提前吃点维b这个主要是增加乙酸和乙醛脱氢酶活力的,加快酒精的代谢;然后就是酸奶,能够延缓酒精吸收,不那么快上头,保护胃粘膜;纳洛酮这个是拮抗酒精对大脑的抑制作用的,可以让人保持清醒;酒后可以吃点维c,加快酒精代谢,抗氧化…</div>
  5265. </div>
  5266. <div style="padding:10px 12px; background:var(--bg-2); border-left:3px solid #0085CA; border-radius:4px; margin-bottom:8px;">
  5267. <div style="display:flex; justify-content:space-between; align-items:center; margin-bottom:4px;">
  5268. <div style="display:flex; align-items:center; gap:6px;">
  5269. <span style="font-size:0.72rem; font-weight:700; color:#0085CA;">匿名</span>
  5270. </div>
  5271. <div style="display:flex; align-items:center; gap:8px;">
  5272. <span class="text-mono text-xs" style="color:#0085CA;">♡ 335</span>
  5273. <span style="padding:1px 6px; background:#0085CA15; color:#0085CA; border-radius:2px; font-size:0.65rem;">脂肪肝</span>
  5274. </div>
  5275. </div>
  5276. <div style="font-size:0.78rem; color:var(--text-1); line-height:1.5;">你是不是经常熬夜并且熬夜的时候不怎么吃夜宵?空腹时间长了人体会分解脂肪在肝脏堆积,所以如果要熬夜必须吃点东西,吃点健康的蛋白质,比如卤牛腱这种,或者就是一日三餐之间不吃东西也容易脂肪肝,只要空腹时间长就这样,你看医院建议都是一天六顿少食多餐,正餐三顿点心三顿,…</div>
  5277. </div>
  5278. <div style="padding:10px 12px; background:var(--bg-2); border-left:3px solid #0085CA; border-radius:4px; margin-bottom:8px;">
  5279. <div style="display:flex; justify-content:space-between; align-items:center; margin-bottom:4px;">
  5280. <div style="display:flex; align-items:center; gap:6px;">
  5281. <span style="font-size:0.72rem; font-weight:700; color:#0085CA;">豆豆豆子</span>
  5282. </div>
  5283. <div style="display:flex; align-items:center; gap:8px;">
  5284. <span class="text-mono text-xs" style="color:#0085CA;">♡ 267</span>
  5285. <span style="padding:1px 6px; background:#0085CA15; color:#0085CA; border-radius:2px; font-size:0.65rem;">解酒药</span>
  5286. </div>
  5287. </div>
  5288. <div style="font-size:0.78rem; color:var(--text-1); line-height:1.5;">大家在评论区看到的一些保健品谨慎使用哦,必要时还是要去医院,珍爱生命,远离酒精[doge]</div>
  5289. </div>
  5290. <div style="padding:10px 12px; background:var(--bg-2); border-left:3px solid #0085CA; border-radius:4px; margin-bottom:8px;">
  5291. <div style="display:flex; justify-content:space-between; align-items:center; margin-bottom:4px;">
  5292. <div style="display:flex; align-items:center; gap:6px;">
  5293. <span style="font-size:0.72rem; font-weight:700; color:#0085CA;">匿名</span>
  5294. </div>
  5295. <div style="display:flex; align-items:center; gap:8px;">
  5296. <span class="text-mono text-xs" style="color:#0085CA;">♡ 149</span>
  5297. <span style="padding:1px 6px; background:#0085CA15; color:#0085CA; border-radius:2px; font-size:0.65rem;">脂肪肝</span>
  5298. </div>
  5299. </div>
  5300. <div style="font-size:0.78rem; color:var(--text-1); line-height:1.5;">这种自测的方式不准,作为长期在一线的超声医生,看到的脂肪肝太多了,老人,小孩,瘦子,胖子每个人都因为各种原因得脂肪肝,但大多数都是胖子。</div>
  5301. </div>
  5302. <div style="padding:10px 12px; background:var(--bg-2); border-left:3px solid #0085CA; border-radius:4px; margin-bottom:8px;">
  5303. <div style="display:flex; justify-content:space-between; align-items:center; margin-bottom:4px;">
  5304. <div style="display:flex; align-items:center; gap:6px;">
  5305. <span style="font-size:0.72rem; font-weight:700; color:#0085CA;">匿名</span>
  5306. </div>
  5307. <div style="display:flex; align-items:center; gap:8px;">
  5308. <span class="text-mono text-xs" style="color:#0085CA;">♡ 45</span>
  5309. <span style="padding:1px 6px; background:#0085CA15; color:#0085CA; border-radius:2px; font-size:0.65rem;">脂肪肝</span>
  5310. </div>
  5311. </div>
  5312. <div style="font-size:0.78rem; color:var(--text-1); line-height:1.5;">我大一的时候去检查有轻度脂肪肝,医生反复跟我确认我到底多大,怎么这么年轻有脂肪肝</div>
  5313. </div>
  5314. <div style="padding:10px 12px; background:var(--bg-2); border-left:3px solid #0085CA; border-radius:4px; margin-bottom:8px;">
  5315. <div style="display:flex; justify-content:space-between; align-items:center; margin-bottom:4px;">
  5316. <div style="display:flex; align-items:center; gap:6px;">
  5317. <span style="font-size:0.72rem; font-weight:700; color:#0085CA;">匿名</span>
  5318. </div>
  5319. <div style="display:flex; align-items:center; gap:8px;">
  5320. <span class="text-mono text-xs" style="color:#0085CA;">♡ 42</span>
  5321. <span style="padding:1px 6px; background:#0085CA15; color:#0085CA; border-radius:2px; font-size:0.65rem;">江中肝纯片</span>
  5322. </div>
  5323. </div>
  5324. <div style="font-size:0.78rem; color:var(--text-1); line-height:1.5;">肝损不可逆 不要自己瞎吃护肝药,去医院找肝病科医生做一个肝肾常规 看指标让医生给你开 ,所有的药物都会对肝脏造成药物损伤,这些都是不可逆的</div>
  5325. </div>
  5326. </div>
  5327. </div>
  5328. <!-- 落地决策评分 -->
  5329. <div class="fade-up" style="background:linear-gradient(135deg, #FF8C4210, #0085CA08); border:1px solid #FF8C4244; border-radius:var(--radius-md); padding:20px;">
  5330. <div class="text-mono text-xs" style="color:#FF8C42; letter-spacing:0.15em; margin-bottom:12px;">SCENE-FIT SCORE · 场景适配度评估(≥75% 达标)</div>
  5331. <div style="display:grid; grid-template-columns:repeat(4, 1fr) 1.5fr; gap:14px; align-items:center;">
  5332. <div style="text-align:center; padding:12px; background:#2D9C5D08; border-radius:6px;">
  5333. <div style="font-family:var(--font-head); font-weight:900; font-size:1.9rem; color:#2D9C5D; line-height:1;">95</div>
  5334. <div class="text-mono text-xs" style="color:#2D9C5D; margin-top:4px; letter-spacing:0.08em;">合规度</div>
  5335. </div>
  5336. <div style="text-align:center; padding:12px; background:#0085CA08; border-radius:6px;">
  5337. <div style="font-family:var(--font-head); font-weight:900; font-size:1.9rem; color:#0085CA; line-height:1;">82</div>
  5338. <div class="text-mono text-xs" style="color:#0085CA; margin-top:4px; letter-spacing:0.08em;">药师推荐</div>
  5339. </div>
  5340. <div style="text-align:center; padding:12px; background:#D4A57408; border-radius:6px;">
  5341. <div style="font-family:var(--font-head); font-weight:900; font-size:1.9rem; color:#D4A574; line-height:1;">78</div>
  5342. <div class="text-mono text-xs" style="color:#D4A574; margin-top:4px; letter-spacing:0.08em;">用户接受</div>
  5343. </div>
  5344. <div style="text-align:center; padding:12px; background:#8B5CF608; border-radius:6px;">
  5345. <div style="font-family:var(--font-head); font-weight:900; font-size:1.9rem; color:#8B5CF6; line-height:1;">85</div>
  5346. <div class="text-mono text-xs" style="color:#8B5CF6; margin-top:4px; letter-spacing:0.08em;">成本结构</div>
  5347. </div>
  5348. <div style="padding:14px; background:#0085CA12; border-left:3px solid #0085CA; border-radius:4px;">
  5349. <div class="text-mono text-xs" style="color:#0085CA; letter-spacing:0.1em; margin-bottom:4px;">🎯 综合结论</div>
  5350. <div style="font-size:0.8rem; color:var(--text-1); line-height:1.55;">✅ 达标:蓝帽 + 江中品牌双护城河 → 对标易善复 OTC(¥80-120)有明显性价比 + DMY 差异化优势。</div>
  5351. </div>
  5352. </div>
  5353. </div>
  5354. </div>
  5355. </section>
  5356. <section class="report-section" id="scene-2" data-tone="orange" data-slide-num="28">
  5357. <div class="section-inner">
  5358. <div class="section-head rise-in">
  5359. <div class="section-eyebrow" style="color:#D4A574;">5.2 · GIFT CHANNEL</div>
  5360. <h2 class="text-h1"><span class="headline-anim">🎁 礼品场景 · 颜值 + 体面 + 中国藤茶</span></h2>
  5361. <p class="section-sub">礼品验证目标:收礼满意度 ≥85% · 送礼复购率 ≥40% · 节庆×2 大促峰值占年销 50% · 目标 <strong style="color:#D4A574;">2.5亿</strong>(占 10 亿 25%)· 核心人群 25-55 岁 商务/节日送礼人群 · 关注健康+注重礼品体面度</p>
  5362. </div>
  5363. <!-- 渠道核心卡片 -->
  5364. <div class="fade-up" style="background:linear-gradient(135deg, #D4A57410, #D4A57402); border:2px solid #D4A57444; border-left:5px solid #D4A574; border-radius:var(--radius-md); padding:22px; margin-bottom:24px;">
  5365. <div style="display:grid; grid-template-columns:2fr 1fr; gap:22px;">
  5366. <div>
  5367. <div class="text-mono text-xs" style="color:#D4A574; letter-spacing:0.15em; margin-bottom:8px;">🎯 渠道核心主张</div>
  5368. <h3 style="margin:0 0 10px; font-size:1.6rem; color:var(--text-1); line-height:1.3;">"中国藤茶·千年药食同源·送父母有面子有健康价值"</h3>
  5369. <div style="font-size:0.88rem; color:var(--text-2); line-height:1.7;">主阵地:品牌官方旗舰店 + 高端商超专柜 + 节庆场景。SKU 关键:单瓶 ¥158-198 / 双瓶礼盒 ¥298-398 / 四瓶豪华 ¥598-898。</div>
  5370. </div>
  5371. <div style="display:grid; gap:8px; align-content:start;">
  5372. <div style="padding:10px 12px; background:var(--bg-1); border-radius:6px; text-align:center;">
  5373. <div style="font-family:var(--font-head); font-weight:900; font-size:2.2rem; color:#D4A574; line-height:1;">2.5</div>
  5374. <div class="text-mono text-xs" style="color:#D4A574; margin-top:3px; letter-spacing:0.08em;">亿 / YEAR</div>
  5375. </div>
  5376. <div style="padding:10px 12px; background:var(--bg-1); border-radius:6px; text-align:center;">
  5377. <div style="font-family:var(--font-head); font-weight:900; font-size:1.6rem; color:#D4A574; line-height:1;">25%</div>
  5378. <div class="text-mono text-xs" style="color:#D4A574; margin-top:3px; letter-spacing:0.08em;">OF 10亿</div>
  5379. </div>
  5380. </div>
  5381. </div>
  5382. </div>
  5383. <!-- 5 维度拆解:用户痛点 / SKU / 话术 / 触点 / KPI -->
  5384. <div class="fade-up" style="display:grid; grid-template-columns:repeat(5, 1fr); gap:14px; margin-bottom:24px;">
  5385. <div style="background:var(--bg-1); border:1px solid #FF4D8D44; border-top:3px solid #FF4D8D; border-radius:var(--radius-md); padding:16px;">
  5386. <div style="display:flex; align-items:center; gap:8px; margin-bottom:10px;">
  5387. <div style="width:36px; height:36px; background:#FF4D8D22; border-radius:50%; display:flex; align-items:center; justify-content:center; font-size:1.2rem;">😰</div>
  5388. <div>
  5389. <div class="text-mono text-xs" style="color:#FF4D8D; letter-spacing:0.08em;">PAINS</div>
  5390. <div style="font-size:0.92rem; font-weight:800; color:var(--text-1);">用户痛点</div>
  5391. </div>
  5392. </div>
  5393. <ul style="margin:0; padding:0; list-style:none;">
  5394. <li style="padding:4px 0; font-size:0.72rem; color:var(--text-2); line-height:1.5; padding-left:14px; position:relative;"><span style="position:absolute; left:0; color:#FF4D8D;">▸</span>送礼&quot;送什么好&quot;纠结</li><li style="padding:4px 0; font-size:0.72rem; color:var(--text-2); line-height:1.5; padding-left:14px; position:relative;"><span style="position:absolute; left:0; color:#FF4D8D;">▸</span>保健品礼盒&quot;土气&quot;</li><li style="padding:4px 0; font-size:0.72rem; color:var(--text-2); line-height:1.5; padding-left:14px; position:relative;"><span style="position:absolute; left:0; color:#FF4D8D;">▸</span>怕被长辈说乱花钱</li><li style="padding:4px 0; font-size:0.72rem; color:var(--text-2); line-height:1.5; padding-left:14px; position:relative;"><span style="position:absolute; left:0; color:#FF4D8D;">▸</span>担心对方吃不惯</li>
  5395. </ul>
  5396. </div>
  5397. <div style="background:var(--bg-1); border:1px solid #D4A57444; border-top:3px solid #D4A574; border-radius:var(--radius-md); padding:16px;">
  5398. <div style="display:flex; align-items:center; gap:8px; margin-bottom:10px;">
  5399. <div style="width:36px; height:36px; background:#D4A57422; border-radius:50%; display:flex; align-items:center; justify-content:center; font-size:1.2rem;">📦</div>
  5400. <div>
  5401. <div class="text-mono text-xs" style="color:#D4A574; letter-spacing:0.08em;">SKU</div>
  5402. <div style="font-size:0.92rem; font-weight:800; color:var(--text-1);">SKU 配置</div>
  5403. </div>
  5404. </div>
  5405. <ul style="margin:0; padding:0; list-style:none;">
  5406. <li style="padding:4px 0; font-size:0.72rem; color:var(--text-2); line-height:1.5; padding-left:14px; position:relative;"><span style="position:absolute; left:0; color:#D4A574;">▸</span>JZ-L-G60S 单瓶礼盒(¥158-198)</li><li style="padding:4px 0; font-size:0.72rem; color:var(--text-2); line-height:1.5; padding-left:14px; position:relative;"><span style="position:absolute; left:0; color:#D4A574;">▸</span>JZ-L-G120D 双瓶礼盒(¥298-398)</li><li style="padding:4px 0; font-size:0.72rem; color:var(--text-2); line-height:1.5; padding-left:14px; position:relative;"><span style="position:absolute; left:0; color:#D4A574;">▸</span>JZ-L-G240Q 四瓶铁盒(¥598-898)</li><li style="padding:4px 0; font-size:0.72rem; color:var(--text-2); line-height:1.5; padding-left:14px; position:relative;"><span style="position:absolute; left:0; color:#D4A574;">▸</span>磨砂玻璃 + 藤茶纹+金</li>
  5407. </ul>
  5408. </div>
  5409. <div style="background:var(--bg-1); border:1px solid #2D9C5D44; border-top:3px solid #2D9C5D; border-radius:var(--radius-md); padding:16px;">
  5410. <div style="display:flex; align-items:center; gap:8px; margin-bottom:10px;">
  5411. <div style="width:36px; height:36px; background:#2D9C5D22; border-radius:50%; display:flex; align-items:center; justify-content:center; font-size:1.2rem;">🗣️</div>
  5412. <div>
  5413. <div class="text-mono text-xs" style="color:#2D9C5D; letter-spacing:0.08em;">SPEECH</div>
  5414. <div style="font-size:0.92rem; font-weight:800; color:var(--text-1);">话术包</div>
  5415. </div>
  5416. </div>
  5417. <ul style="margin:0; padding:0; list-style:none;">
  5418. <li style="padding:4px 0; font-size:0.72rem; color:var(--text-2); line-height:1.5; padding-left:14px; position:relative;"><span style="position:absolute; left:0; color:#2D9C5D;">▸</span>&quot;中国藤茶·药食同源&quot;</li><li style="padding:4px 0; font-size:0.72rem; color:var(--text-2); line-height:1.5; padding-left:14px; position:relative;"><span style="position:absolute; left:0; color:#2D9C5D;">▸</span>&quot;送父母的新中式保健礼&quot;</li><li style="padding:4px 0; font-size:0.72rem; color:var(--text-2); line-height:1.5; padding-left:14px; position:relative;"><span style="position:absolute; left:0; color:#2D9C5D;">▸</span>&quot;有面子有健康价值&quot;</li><li style="padding:4px 0; font-size:0.72rem; color:var(--text-2); line-height:1.5; padding-left:14px; position:relative;"><span style="position:absolute; left:0; color:#2D9C5D;">▸</span>&quot;江中百年品牌背书&quot;</li>
  5419. </ul>
  5420. </div>
  5421. <div style="background:var(--bg-1); border:1px solid #8B5CF644; border-top:3px solid #8B5CF6; border-radius:var(--radius-md); padding:16px;">
  5422. <div style="display:flex; align-items:center; gap:8px; margin-bottom:10px;">
  5423. <div style="width:36px; height:36px; background:#8B5CF622; border-radius:50%; display:flex; align-items:center; justify-content:center; font-size:1.2rem;">🎯</div>
  5424. <div>
  5425. <div class="text-mono text-xs" style="color:#8B5CF6; letter-spacing:0.08em;">TOUCHPOINTS</div>
  5426. <div style="font-size:0.92rem; font-weight:800; color:var(--text-1);">关键触点</div>
  5427. </div>
  5428. </div>
  5429. <ul style="margin:0; padding:0; list-style:none;">
  5430. <li style="padding:4px 0; font-size:0.72rem; color:var(--text-2); line-height:1.5; padding-left:14px; position:relative;"><span style="position:absolute; left:0; color:#8B5CF6;">▸</span>小红书节庆送礼爆款</li><li style="padding:4px 0; font-size:0.72rem; color:var(--text-2); line-height:1.5; padding-left:14px; position:relative;"><span style="position:absolute; left:0; color:#8B5CF6;">▸</span>商超高端专柜陈列</li><li style="padding:4px 0; font-size:0.72rem; color:var(--text-2); line-height:1.5; padding-left:14px; position:relative;"><span style="position:absolute; left:0; color:#8B5CF6;">▸</span>礼盒开箱 UGC 视频</li><li style="padding:4px 0; font-size:0.72rem; color:var(--text-2); line-height:1.5; padding-left:14px; position:relative;"><span style="position:absolute; left:0; color:#8B5CF6;">▸</span>企业客户团购渠道</li>
  5431. </ul>
  5432. </div>
  5433. <div style="background:var(--bg-1); border:1px solid #FF8C4244; border-top:3px solid #FF8C42; border-radius:var(--radius-md); padding:16px;">
  5434. <div style="display:flex; align-items:center; gap:8px; margin-bottom:10px;">
  5435. <div style="width:36px; height:36px; background:#FF8C4222; border-radius:50%; display:flex; align-items:center; justify-content:center; font-size:1.2rem;">📊</div>
  5436. <div>
  5437. <div class="text-mono text-xs" style="color:#FF8C42; letter-spacing:0.08em;">KPI</div>
  5438. <div style="font-size:0.92rem; font-weight:800; color:var(--text-1);">KPI 目标</div>
  5439. </div>
  5440. </div>
  5441. <ul style="margin:0; padding:0; list-style:none;">
  5442. <li style="padding:4px 0; font-size:0.72rem; color:var(--text-2); line-height:1.5; padding-left:14px; position:relative;"><span style="position:absolute; left:0; color:#FF8C42;">▸</span>节庆 GMV 峰值 ×3</li><li style="padding:4px 0; font-size:0.72rem; color:var(--text-2); line-height:1.5; padding-left:14px; position:relative;"><span style="position:absolute; left:0; color:#FF8C42;">▸</span>礼盒复购率 ≥40%</li><li style="padding:4px 0; font-size:0.72rem; color:var(--text-2); line-height:1.5; padding-left:14px; position:relative;"><span style="position:absolute; left:0; color:#FF8C42;">▸</span>收礼满意度 ≥85%</li><li style="padding:4px 0; font-size:0.72rem; color:var(--text-2); line-height:1.5; padding-left:14px; position:relative;"><span style="position:absolute; left:0; color:#FF8C42;">▸</span>小红书种草笔记 1000+</li>
  5443. </ul>
  5444. </div>
  5445. </div>
  5446. <!-- VOC 原声支撑 -->
  5447. <div class="fade-up" style="background:var(--bg-1); border:1px solid #D4A57444; border-radius:var(--radius-md); padding:22px; margin-bottom:24px;">
  5448. <div class="text-mono text-xs" style="color:#D4A574; letter-spacing:0.15em; margin-bottom:12px;">💬 VOC RAW VOICE · 送礼保健品 VOC(礼盒/送长辈/体面)(6 条相关评论)</div>
  5449. <div style="display:grid; grid-template-columns:repeat(3, 1fr); gap:10px;">
  5450. <div style="padding:10px 12px; background:var(--bg-2); border-left:3px solid #D4A574; border-radius:4px; margin-bottom:8px;">
  5451. <div style="display:flex; justify-content:space-between; align-items:center; margin-bottom:4px;">
  5452. <div style="display:flex; align-items:center; gap:6px;">
  5453. <span style="font-size:0.72rem; font-weight:700; color:#D4A574;">宋,,</span>
  5454. </div>
  5455. <div style="display:flex; align-items:center; gap:8px;">
  5456. <span class="text-mono text-xs" style="color:#D4A574;">♡ 178</span>
  5457. <span style="padding:1px 6px; background:#D4A57415; color:#D4A574; border-radius:2px; font-size:0.65rem;">送礼 保健品</span>
  5458. </div>
  5459. </div>
  5460. <div style="font-size:0.78rem; color:var(--text-1); line-height:1.5;">谢谢大家的祝福,也谢谢大家的认可,一共准备了十八样礼品,准备的过程中我们两个人一起商量,我认为是两个人齐心协力的体现,也是我们对未来美好生活的向往和期待,同时更是对长辈的尊重,我们买的东西都是很实用的,不存在铺张浪费,针对评论区的奇葩,首先不尊重女性,口无遮拦…</div>
  5461. </div>
  5462. <div style="padding:10px 12px; background:var(--bg-2); border-left:3px solid #D4A574; border-radius:4px; margin-bottom:8px;">
  5463. <div style="display:flex; justify-content:space-between; align-items:center; margin-bottom:4px;">
  5464. <div style="display:flex; align-items:center; gap:6px;">
  5465. <span style="font-size:0.72rem; font-weight:700; color:#D4A574;">Hanky</span>
  5466. </div>
  5467. <div style="display:flex; align-items:center; gap:8px;">
  5468. <span class="text-mono text-xs" style="color:#D4A574;">♡ 15</span>
  5469. <span style="padding:1px 6px; background:#D4A57415; color:#D4A574; border-radius:2px; font-size:0.65rem;">送礼 保健品</span>
  5470. </div>
  5471. </div>
  5472. <div style="font-size:0.78rem; color:var(--text-1); line-height:1.5;">花了多少呀</div>
  5473. </div>
  5474. <div style="padding:10px 12px; background:var(--bg-2); border-left:3px solid #D4A574; border-radius:4px; margin-bottom:8px;">
  5475. <div style="display:flex; justify-content:space-between; align-items:center; margin-bottom:4px;">
  5476. <div style="display:flex; align-items:center; gap:6px;">
  5477. <span style="font-size:0.72rem; font-weight:700; color:#D4A574;">Gil.Max</span>
  5478. </div>
  5479. <div style="display:flex; align-items:center; gap:8px;">
  5480. <span class="text-mono text-xs" style="color:#D4A574;">♡ 13</span>
  5481. <span style="padding:1px 6px; background:#D4A57415; color:#D4A574; border-radius:2px; font-size:0.65rem;">送礼 保健品</span>
  5482. </div>
  5483. </div>
  5484. <div style="font-size:0.78rem; color:var(--text-1); line-height:1.5;">内啥 我想问一下 男朋友上门见家长 也是准备了上图差不多的量 他后备箱塞的满满的,但是怎么体面的拿上门呀,他一个人 一趟 肯定拿不了的 两趟?又不太合适吧。。。(是需要我下楼接他跟他一起拿上来对吗。。就怕两个人也拿不下)电视剧里也没教这些呀[哭惹R]</div>
  5485. </div>
  5486. <div style="padding:10px 12px; background:var(--bg-2); border-left:3px solid #D4A574; border-radius:4px; margin-bottom:8px;">
  5487. <div style="display:flex; justify-content:space-between; align-items:center; margin-bottom:4px;">
  5488. <div style="display:flex; align-items:center; gap:6px;">
  5489. <span style="font-size:0.72rem; font-weight:700; color:#D4A574;">nemo</span>
  5490. </div>
  5491. <div style="display:flex; align-items:center; gap:8px;">
  5492. <span class="text-mono text-xs" style="color:#D4A574;">♡ 12</span>
  5493. <span style="padding:1px 6px; background:#D4A57415; color:#D4A574; border-radius:2px; font-size:0.65rem;">送礼 保健品</span>
  5494. </div>
  5495. </div>
  5496. <div style="font-size:0.78rem; color:var(--text-1); line-height:1.5;">两位朋友[哇R]</div>
  5497. </div>
  5498. <div style="padding:10px 12px; background:var(--bg-2); border-left:3px solid #D4A574; border-radius:4px; margin-bottom:8px;">
  5499. <div style="display:flex; justify-content:space-between; align-items:center; margin-bottom:4px;">
  5500. <div style="display:flex; align-items:center; gap:6px;">
  5501. <span style="font-size:0.72rem; font-weight:700; color:#D4A574;">momo</span>
  5502. </div>
  5503. <div style="display:flex; align-items:center; gap:8px;">
  5504. <span class="text-mono text-xs" style="color:#D4A574;">♡ 8</span>
  5505. <span style="padding:1px 6px; background:#D4A57415; color:#D4A574; border-radius:2px; font-size:0.65rem;">送礼 保健品</span>
  5506. </div>
  5507. </div>
  5508. <div style="font-size:0.78rem; color:var(--text-1); line-height:1.5;">张飞牛肉礼盒好吃吗?</div>
  5509. </div>
  5510. <div style="padding:10px 12px; background:var(--bg-2); border-left:3px solid #D4A574; border-radius:4px; margin-bottom:8px;">
  5511. <div style="display:flex; justify-content:space-between; align-items:center; margin-bottom:4px;">
  5512. <div style="display:flex; align-items:center; gap:6px;">
  5513. <span style="font-size:0.72rem; font-weight:700; color:#D4A574;">小红薯DECAF381</span>
  5514. </div>
  5515. <div style="display:flex; align-items:center; gap:8px;">
  5516. <span class="text-mono text-xs" style="color:#D4A574;">♡ 6</span>
  5517. <span style="padding:1px 6px; background:#D4A57415; color:#D4A574; border-radius:2px; font-size:0.65rem;">送礼 保健品</span>
  5518. </div>
  5519. </div>
  5520. <div style="font-size:0.78rem; color:var(--text-1); line-height:1.5;">父母的大红包给的多少?</div>
  5521. </div>
  5522. </div>
  5523. </div>
  5524. <!-- 落地决策评分 -->
  5525. <div class="fade-up" style="background:linear-gradient(135deg, #FF8C4210, #D4A57408); border:1px solid #FF8C4244; border-radius:var(--radius-md); padding:20px;">
  5526. <div class="text-mono text-xs" style="color:#FF8C42; letter-spacing:0.15em; margin-bottom:12px;">SCENE-FIT SCORE · 场景适配度评估(≥75% 达标)</div>
  5527. <div style="display:grid; grid-template-columns:repeat(4, 1fr) 1.5fr; gap:14px; align-items:center;">
  5528. <div style="text-align:center; padding:12px; background:#D4A57408; border-radius:6px;">
  5529. <div style="font-family:var(--font-head); font-weight:900; font-size:1.9rem; color:#D4A574; line-height:1;">72</div>
  5530. <div class="text-mono text-xs" style="color:#D4A574; margin-top:4px; letter-spacing:0.08em;">颜值接受</div>
  5531. </div>
  5532. <div style="text-align:center; padding:12px; background:#2D9C5D08; border-radius:6px;">
  5533. <div style="font-family:var(--font-head); font-weight:900; font-size:1.9rem; color:#2D9C5D; line-height:1;">85</div>
  5534. <div class="text-mono text-xs" style="color:#2D9C5D; margin-top:4px; letter-spacing:0.08em;">体面感</div>
  5535. </div>
  5536. <div style="text-align:center; padding:12px; background:#0085CA08; border-radius:6px;">
  5537. <div style="font-family:var(--font-head); font-weight:900; font-size:1.9rem; color:#0085CA; line-height:1;">78</div>
  5538. <div class="text-mono text-xs" style="color:#0085CA; margin-top:4px; letter-spacing:0.08em;">价值感</div>
  5539. </div>
  5540. <div style="text-align:center; padding:12px; background:#8B5CF608; border-radius:6px;">
  5541. <div style="font-family:var(--font-head); font-weight:900; font-size:1.9rem; color:#8B5CF6; line-height:1;">80</div>
  5542. <div class="text-mono text-xs" style="color:#8B5CF6; margin-top:4px; letter-spacing:0.08em;">复购意愿</div>
  5543. </div>
  5544. <div style="padding:14px; background:#D4A57412; border-left:3px solid #D4A574; border-radius:4px;">
  5545. <div class="text-mono text-xs" style="color:#D4A574; letter-spacing:0.1em; margin-bottom:4px;">🎯 综合结论</div>
  5546. <div style="font-size:0.8rem; color:var(--text-1); line-height:1.55;">⚠️ 颜值临界(72&lt;75)→ 需强化藤茶视觉+磨砂瓶升级;其余达标,节庆+商务双引擎可启动。</div>
  5547. </div>
  5548. </div>
  5549. </div>
  5550. </div>
  5551. </section>
  5552. <section class="report-section" id="scene-3" data-tone="orange" data-slide-num="29">
  5553. <div class="section-inner">
  5554. <div class="section-head rise-in">
  5555. <div class="section-eyebrow" style="color:#FF8C42;">5.3 · DINING CHANNEL</div>
  5556. <h2 class="text-h1"><span class="headline-anim">🍷 餐饮场景 · 便携 + 体感 + 分食社交</span></h2>
  5557. <p class="section-sub">餐饮验证目标:酒桌分食接受度 ≥85% · 酒后体感满意 ≥80% · 老板团购转化率 ≥15% · 目标 <strong style="color:#FF8C42;">2.5亿</strong>(占 10 亿 25%)· 核心人群 25-45 岁 应酬男性 · 老板/中高层 · 注重面子社交</p>
  5558. </div>
  5559. <!-- 渠道核心卡片 -->
  5560. <div class="fade-up" style="background:linear-gradient(135deg, #FF8C4210, #FF8C4202); border:2px solid #FF8C4244; border-left:5px solid #FF8C42; border-radius:var(--radius-md); padding:22px; margin-bottom:24px;">
  5561. <div style="display:grid; grid-template-columns:2fr 1fr; gap:22px;">
  5562. <div>
  5563. <div class="text-mono text-xs" style="color:#FF8C42; letter-spacing:0.15em; margin-bottom:8px;">🎯 渠道核心主张</div>
  5564. <h3 style="margin:0 0 10px; font-size:1.6rem; color:var(--text-1); line-height:1.3;">"酒前 15 分钟一片 · DMY 加速解酒不宿醉 · 分一片兄弟情义"</h3>
  5565. <div style="font-size:0.88rem; color:var(--text-2); line-height:1.7;">主阵地:饭店 / KTV / 商务宴会 · 酒局分食 · 老板团购送客户。SKU 关键:锡纸 12 片便携 ¥29-39 / 30 片铁罐 ¥79-99。</div>
  5566. </div>
  5567. <div style="display:grid; gap:8px; align-content:start;">
  5568. <div style="padding:10px 12px; background:var(--bg-1); border-radius:6px; text-align:center;">
  5569. <div style="font-family:var(--font-head); font-weight:900; font-size:2.2rem; color:#FF8C42; line-height:1;">2.5</div>
  5570. <div class="text-mono text-xs" style="color:#FF8C42; margin-top:3px; letter-spacing:0.08em;">亿 / YEAR</div>
  5571. </div>
  5572. <div style="padding:10px 12px; background:var(--bg-1); border-radius:6px; text-align:center;">
  5573. <div style="font-family:var(--font-head); font-weight:900; font-size:1.6rem; color:#FF8C42; line-height:1;">25%</div>
  5574. <div class="text-mono text-xs" style="color:#FF8C42; margin-top:3px; letter-spacing:0.08em;">OF 10亿</div>
  5575. </div>
  5576. </div>
  5577. </div>
  5578. </div>
  5579. <!-- 5 维度拆解:用户痛点 / SKU / 话术 / 触点 / KPI -->
  5580. <div class="fade-up" style="display:grid; grid-template-columns:repeat(5, 1fr); gap:14px; margin-bottom:24px;">
  5581. <div style="background:var(--bg-1); border:1px solid #FF4D8D44; border-top:3px solid #FF4D8D; border-radius:var(--radius-md); padding:16px;">
  5582. <div style="display:flex; align-items:center; gap:8px; margin-bottom:10px;">
  5583. <div style="width:36px; height:36px; background:#FF4D8D22; border-radius:50%; display:flex; align-items:center; justify-content:center; font-size:1.2rem;">😰</div>
  5584. <div>
  5585. <div class="text-mono text-xs" style="color:#FF4D8D; letter-spacing:0.08em;">PAINS</div>
  5586. <div style="font-size:0.92rem; font-weight:800; color:var(--text-1);">用户痛点</div>
  5587. </div>
  5588. </div>
  5589. <ul style="margin:0; padding:0; list-style:none;">
  5590. <li style="padding:4px 0; font-size:0.72rem; color:var(--text-2); line-height:1.5; padding-left:14px; position:relative;"><span style="position:absolute; left:0; color:#FF4D8D;">▸</span>酒桌掏药像&quot;治病&quot;尴尬</li><li style="padding:4px 0; font-size:0.72rem; color:var(--text-2); line-height:1.5; padding-left:14px; position:relative;"><span style="position:absolute; left:0; color:#FF4D8D;">▸</span>海王金樽&quot;没效果&quot;</li><li style="padding:4px 0; font-size:0.72rem; color:var(--text-2); line-height:1.5; padding-left:14px; position:relative;"><span style="position:absolute; left:0; color:#FF4D8D;">▸</span>喝完头疼/宿醉</li><li style="padding:4px 0; font-size:0.72rem; color:var(--text-2); line-height:1.5; padding-left:14px; position:relative;"><span style="position:absolute; left:0; color:#FF4D8D;">▸</span>担心长期喝酒伤肝</li>
  5591. </ul>
  5592. </div>
  5593. <div style="background:var(--bg-1); border:1px solid #FF8C4244; border-top:3px solid #FF8C42; border-radius:var(--radius-md); padding:16px;">
  5594. <div style="display:flex; align-items:center; gap:8px; margin-bottom:10px;">
  5595. <div style="width:36px; height:36px; background:#FF8C4222; border-radius:50%; display:flex; align-items:center; justify-content:center; font-size:1.2rem;">📦</div>
  5596. <div>
  5597. <div class="text-mono text-xs" style="color:#FF8C42; letter-spacing:0.08em;">SKU</div>
  5598. <div style="font-size:0.92rem; font-weight:800; color:var(--text-1);">SKU 配置</div>
  5599. </div>
  5600. </div>
  5601. <ul style="margin:0; padding:0; list-style:none;">
  5602. <li style="padding:4px 0; font-size:0.72rem; color:var(--text-2); line-height:1.5; padding-left:14px; position:relative;"><span style="position:absolute; left:0; color:#FF8C42;">▸</span>JZ-L-D3 锡纸 3 片试样(¥9-15)</li><li style="padding:4px 0; font-size:0.72rem; color:var(--text-2); line-height:1.5; padding-left:14px; position:relative;"><span style="position:absolute; left:0; color:#FF8C42;">▸</span>JZ-L-D12 锡纸 12 片随身(¥29-39)</li><li style="padding:4px 0; font-size:0.72rem; color:var(--text-2); line-height:1.5; padding-left:14px; position:relative;"><span style="position:absolute; left:0; color:#FF8C42;">▸</span>JZ-L-D30G 铁罐 30 片(¥79-99)</li><li style="padding:4px 0; font-size:0.72rem; color:var(--text-2); line-height:1.5; padding-left:14px; position:relative;"><span style="position:absolute; left:0; color:#FF8C42;">▸</span>高级感+藤茶+金色点缀</li>
  5603. </ul>
  5604. </div>
  5605. <div style="background:var(--bg-1); border:1px solid #2D9C5D44; border-top:3px solid #2D9C5D; border-radius:var(--radius-md); padding:16px;">
  5606. <div style="display:flex; align-items:center; gap:8px; margin-bottom:10px;">
  5607. <div style="width:36px; height:36px; background:#2D9C5D22; border-radius:50%; display:flex; align-items:center; justify-content:center; font-size:1.2rem;">🗣️</div>
  5608. <div>
  5609. <div class="text-mono text-xs" style="color:#2D9C5D; letter-spacing:0.08em;">SPEECH</div>
  5610. <div style="font-size:0.92rem; font-weight:800; color:var(--text-1);">话术包</div>
  5611. </div>
  5612. </div>
  5613. <ul style="margin:0; padding:0; list-style:none;">
  5614. <li style="padding:4px 0; font-size:0.72rem; color:var(--text-2); line-height:1.5; padding-left:14px; position:relative;"><span style="position:absolute; left:0; color:#2D9C5D;">▸</span>&quot;酒前一片 · 酒后不头疼&quot;</li><li style="padding:4px 0; font-size:0.72rem; color:var(--text-2); line-height:1.5; padding-left:14px; position:relative;"><span style="position:absolute; left:0; color:#2D9C5D;">▸</span>&quot;兄弟分一片护肝搭档&quot;</li><li style="padding:4px 0; font-size:0.72rem; color:var(--text-2); line-height:1.5; padding-left:14px; position:relative;"><span style="position:absolute; left:0; color:#2D9C5D;">▸</span>&quot;DMY 加速乙醛代谢&quot;</li><li style="padding:4px 0; font-size:0.72rem; color:var(--text-2); line-height:1.5; padding-left:14px; position:relative;"><span style="position:absolute; left:0; color:#2D9C5D;">▸</span>&quot;别吃水飞蓟 · 中式新草本&quot;</li>
  5615. </ul>
  5616. </div>
  5617. <div style="background:var(--bg-1); border:1px solid #8B5CF644; border-top:3px solid #8B5CF6; border-radius:var(--radius-md); padding:16px;">
  5618. <div style="display:flex; align-items:center; gap:8px; margin-bottom:10px;">
  5619. <div style="width:36px; height:36px; background:#8B5CF622; border-radius:50%; display:flex; align-items:center; justify-content:center; font-size:1.2rem;">🎯</div>
  5620. <div>
  5621. <div class="text-mono text-xs" style="color:#8B5CF6; letter-spacing:0.08em;">TOUCHPOINTS</div>
  5622. <div style="font-size:0.92rem; font-weight:800; color:var(--text-1);">关键触点</div>
  5623. </div>
  5624. </div>
  5625. <ul style="margin:0; padding:0; list-style:none;">
  5626. <li style="padding:4px 0; font-size:0.72rem; color:var(--text-2); line-height:1.5; padding-left:14px; position:relative;"><span style="position:absolute; left:0; color:#8B5CF6;">▸</span>KTV/饭店合作铺货</li><li style="padding:4px 0; font-size:0.72rem; color:var(--text-2); line-height:1.5; padding-left:14px; position:relative;"><span style="position:absolute; left:0; color:#8B5CF6;">▸</span>酒局场景 KOL 植入</li><li style="padding:4px 0; font-size:0.72rem; color:var(--text-2); line-height:1.5; padding-left:14px; position:relative;"><span style="position:absolute; left:0; color:#8B5CF6;">▸</span>B 端老板团购</li><li style="padding:4px 0; font-size:0.72rem; color:var(--text-2); line-height:1.5; padding-left:14px; position:relative;"><span style="position:absolute; left:0; color:#8B5CF6;">▸</span>抖音酒场景短视频</li>
  5627. </ul>
  5628. </div>
  5629. <div style="background:var(--bg-1); border:1px solid #D4A57444; border-top:3px solid #D4A574; border-radius:var(--radius-md); padding:16px;">
  5630. <div style="display:flex; align-items:center; gap:8px; margin-bottom:10px;">
  5631. <div style="width:36px; height:36px; background:#D4A57422; border-radius:50%; display:flex; align-items:center; justify-content:center; font-size:1.2rem;">📊</div>
  5632. <div>
  5633. <div class="text-mono text-xs" style="color:#D4A574; letter-spacing:0.08em;">KPI</div>
  5634. <div style="font-size:0.92rem; font-weight:800; color:var(--text-1);">KPI 目标</div>
  5635. </div>
  5636. </div>
  5637. <ul style="margin:0; padding:0; list-style:none;">
  5638. <li style="padding:4px 0; font-size:0.72rem; color:var(--text-2); line-height:1.5; padding-left:14px; position:relative;"><span style="position:absolute; left:0; color:#D4A574;">▸</span>酒桌分食率 ≥20%</li><li style="padding:4px 0; font-size:0.72rem; color:var(--text-2); line-height:1.5; padding-left:14px; position:relative;"><span style="position:absolute; left:0; color:#D4A574;">▸</span>老板团购占比 ≥30%</li><li style="padding:4px 0; font-size:0.72rem; color:var(--text-2); line-height:1.5; padding-left:14px; position:relative;"><span style="position:absolute; left:0; color:#D4A574;">▸</span>客户/同桌推荐 ≥50%</li><li style="padding:4px 0; font-size:0.72rem; color:var(--text-2); line-height:1.5; padding-left:14px; position:relative;"><span style="position:absolute; left:0; color:#D4A574;">▸</span>12 片一周复购率 ≥35%</li>
  5639. </ul>
  5640. </div>
  5641. </div>
  5642. <!-- VOC 原声支撑 -->
  5643. <div class="fade-up" style="background:var(--bg-1); border:1px solid #FF8C4244; border-radius:var(--radius-md); padding:22px; margin-bottom:24px;">
  5644. <div class="text-mono text-xs" style="color:#FF8C42; letter-spacing:0.15em; margin-bottom:12px;">💬 VOC RAW VOICE · 餐饮/应酬/分食社交 VOC(6 条相关评论)</div>
  5645. <div style="display:grid; grid-template-columns:repeat(3, 1fr); gap:10px;">
  5646. <div style="padding:10px 12px; background:var(--bg-2); border-left:3px solid #FF8C42; border-radius:4px; margin-bottom:8px;">
  5647. <div style="display:flex; justify-content:space-between; align-items:center; margin-bottom:4px;">
  5648. <div style="display:flex; align-items:center; gap:6px;">
  5649. <span style="font-size:0.72rem; font-weight:700; color:#FF8C42;">8给糖759捣乱</span>
  5650. <span class="text-mono text-xs" style="color:var(--text-3);">📍浙江</span>
  5651. </div>
  5652. <div style="display:flex; align-items:center; gap:8px;">
  5653. <span class="text-mono text-xs" style="color:#FF8C42;">♡ 2038</span>
  5654. <span style="padding:1px 6px; background:#FF8C4215; color:#FF8C42; border-radius:2px; font-size:0.65rem;">应酬解酒 (抖音)</span>
  5655. </div>
  5656. </div>
  5657. <div style="font-size:0.78rem; color:var(--text-1); line-height:1.5;">醋真的解酒,我第一次喝酒,一瓶啤酒喝得当时好难受,看见旁边的醋碟里有一碟醋,我一口喝了,摇摇晃晃去了洗手间想躲一下,谁知道几分钟后头脑突然清醒了,又继续上战场喝了三瓶也没事[憨笑]</div>
  5658. </div>
  5659. <div style="padding:10px 12px; background:var(--bg-2); border-left:3px solid #FF8C42; border-radius:4px; margin-bottom:8px;">
  5660. <div style="display:flex; justify-content:space-between; align-items:center; margin-bottom:4px;">
  5661. <div style="display:flex; align-items:center; gap:6px;">
  5662. <span style="font-size:0.72rem; font-weight:700; color:#FF8C42;">breeze</span>
  5663. </div>
  5664. <div style="display:flex; align-items:center; gap:8px;">
  5665. <span class="text-mono text-xs" style="color:#FF8C42;">♡ 1562</span>
  5666. <span style="padding:1px 6px; background:#FF8C4215; color:#FF8C42; border-radius:2px; font-size:0.65rem;">解酒药</span>
  5667. </div>
  5668. </div>
  5669. <div style="font-size:0.78rem; color:var(--text-1); line-height:1.5;">医生现身说法,因为平时也会应酬喝酒,可以提前吃点维b这个主要是增加乙酸和乙醛脱氢酶活力的,加快酒精的代谢;然后就是酸奶,能够延缓酒精吸收,不那么快上头,保护胃粘膜;纳洛酮这个是拮抗酒精对大脑的抑制作用的,可以让人保持清醒;酒后可以吃点维c,加快酒精代谢,抗氧化…</div>
  5670. </div>
  5671. <div style="padding:10px 12px; background:var(--bg-2); border-left:3px solid #FF8C42; border-radius:4px; margin-bottom:8px;">
  5672. <div style="display:flex; justify-content:space-between; align-items:center; margin-bottom:4px;">
  5673. <div style="display:flex; align-items:center; gap:6px;">
  5674. <span style="font-size:0.72rem; font-weight:700; color:#FF8C42;">匿名</span>
  5675. </div>
  5676. <div style="display:flex; align-items:center; gap:8px;">
  5677. <span class="text-mono text-xs" style="color:#FF8C42;">♡ 1562</span>
  5678. <span style="padding:1px 6px; background:#FF8C4215; color:#FF8C42; border-radius:2px; font-size:0.65rem;">酒局必备</span>
  5679. </div>
  5680. </div>
  5681. <div style="font-size:0.78rem; color:var(--text-1); line-height:1.5;">医生现身说法,因为平时也会应酬喝酒,可以提前吃点维b这个主要是增加乙酸和乙醛脱氢酶活力的,加快酒精的代谢;然后就是酸奶,能够延缓酒精吸收,不那么快上头,保护胃粘膜;纳洛酮这个是拮抗酒精对大脑的抑制作用的,可以让人保持清醒;酒后可以吃点维c,加快酒精代谢,抗氧化…</div>
  5682. </div>
  5683. <div style="padding:10px 12px; background:var(--bg-2); border-left:3px solid #FF8C42; border-radius:4px; margin-bottom:8px;">
  5684. <div style="display:flex; justify-content:space-between; align-items:center; margin-bottom:4px;">
  5685. <div style="display:flex; align-items:center; gap:6px;">
  5686. <span style="font-size:0.72rem; font-weight:700; color:#FF8C42;">张泛妮</span>
  5687. <span class="text-mono text-xs" style="color:var(--text-3);">📍吉林</span>
  5688. </div>
  5689. <div style="display:flex; align-items:center; gap:8px;">
  5690. <span class="text-mono text-xs" style="color:#FF8C42;">♡ 242</span>
  5691. <span style="padding:1px 6px; background:#FF8C4215; color:#FF8C42; border-radius:2px; font-size:0.65rem;">护肝片 (抖音)</span>
  5692. </div>
  5693. </div>
  5694. <div style="font-size:0.78rem; color:var(--text-1); line-height:1.5;">喜欢喝酒熬夜的兄弟们 记得来我橱窗看看哦</div>
  5695. </div>
  5696. <div style="padding:10px 12px; background:var(--bg-2); border-left:3px solid #FF8C42; border-radius:4px; margin-bottom:8px;">
  5697. <div style="display:flex; justify-content:space-between; align-items:center; margin-bottom:4px;">
  5698. <div style="display:flex; align-items:center; gap:6px;">
  5699. <span style="font-size:0.72rem; font-weight:700; color:#FF8C42;">匿名</span>
  5700. </div>
  5701. <div style="display:flex; align-items:center; gap:8px;">
  5702. <span class="text-mono text-xs" style="color:#FF8C42;">♡ 212</span>
  5703. <span style="padding:1px 6px; background:#FF8C4215; color:#FF8C42; border-radius:2px; font-size:0.65rem;">海王金樽</span>
  5704. </div>
  5705. </div>
  5706. <div style="font-size:0.78rem; color:var(--text-1); line-height:1.5;">我喝酒是属于越喝越贪酒的,不喝到废不走的那种,最后靠潜意识回家,目前没找到能第二天起来缓解办法,喝之前解酒药我也吃过有点用但不大,偶尔头疼,头不疼也是难受一整天,我基本是12点左右醒了,然后缓一会,差不多2点左右开始喝馄饨汤,馄饨吃不了两个,喝猛猛一碗趁热喝,…</div>
  5707. </div>
  5708. <div style="padding:10px 12px; background:var(--bg-2); border-left:3px solid #FF8C42; border-radius:4px; margin-bottom:8px;">
  5709. <div style="display:flex; justify-content:space-between; align-items:center; margin-bottom:4px;">
  5710. <div style="display:flex; align-items:center; gap:6px;">
  5711. <span style="font-size:0.72rem; font-weight:700; color:#FF8C42;">匿名</span>
  5712. </div>
  5713. <div style="display:flex; align-items:center; gap:8px;">
  5714. <span class="text-mono text-xs" style="color:#FF8C42;">♡ 67</span>
  5715. <span style="padding:1px 6px; background:#FF8C4215; color:#FF8C42; border-radius:2px; font-size:0.65rem;">海王金樽</span>
  5716. </div>
  5717. </div>
  5718. <div style="font-size:0.78rem; color:var(--text-1); line-height:1.5;">此时此刻的我 真的很需要邪修快速的解酒方法 太特喵难受了</div>
  5719. </div>
  5720. </div>
  5721. </div>
  5722. <!-- 落地决策评分 -->
  5723. <div class="fade-up" style="background:linear-gradient(135deg, #FF8C4210, #FF8C4208); border:1px solid #FF8C4244; border-radius:var(--radius-md); padding:20px;">
  5724. <div class="text-mono text-xs" style="color:#FF8C42; letter-spacing:0.15em; margin-bottom:12px;">SCENE-FIT SCORE · 场景适配度评估(≥75% 达标)</div>
  5725. <div style="display:grid; grid-template-columns:repeat(4, 1fr) 1.5fr; gap:14px; align-items:center;">
  5726. <div style="text-align:center; padding:12px; background:#FF8C4208; border-radius:6px;">
  5727. <div style="font-family:var(--font-head); font-weight:900; font-size:1.9rem; color:#FF8C42; line-height:1;">90</div>
  5728. <div class="text-mono text-xs" style="color:#FF8C42; margin-top:4px; letter-spacing:0.08em;">场景适配</div>
  5729. </div>
  5730. <div style="text-align:center; padding:12px; background:#2D9C5D08; border-radius:6px;">
  5731. <div style="font-family:var(--font-head); font-weight:900; font-size:1.9rem; color:#2D9C5D; line-height:1;">82</div>
  5732. <div class="text-mono text-xs" style="color:#2D9C5D; margin-top:4px; letter-spacing:0.08em;">体感可见</div>
  5733. </div>
  5734. <div style="text-align:center; padding:12px; background:#D4A57408; border-radius:6px;">
  5735. <div style="font-family:var(--font-head); font-weight:900; font-size:1.9rem; color:#D4A574; line-height:1;">85</div>
  5736. <div class="text-mono text-xs" style="color:#D4A574; margin-top:4px; letter-spacing:0.08em;">社交溢价</div>
  5737. </div>
  5738. <div style="text-align:center; padding:12px; background:#0085CA08; border-radius:6px;">
  5739. <div style="font-family:var(--font-head); font-weight:900; font-size:1.9rem; color:#0085CA; line-height:1;">78</div>
  5740. <div class="text-mono text-xs" style="color:#0085CA; margin-top:4px; letter-spacing:0.08em;">规模空间</div>
  5741. </div>
  5742. <div style="padding:14px; background:#FF8C4212; border-left:3px solid #FF8C42; border-radius:4px;">
  5743. <div class="text-mono text-xs" style="color:#FF8C42; letter-spacing:0.1em; margin-bottom:4px;">🎯 综合结论</div>
  5744. <div style="font-size:0.8rem; color:var(--text-1); line-height:1.55;">✅ 最强渠道:DMY 真体感 + 锡纸分食仪式感 + 高级感包装 → 弥补海王金樽失败空白,对标 +800% 增长空间。</div>
  5745. </div>
  5746. </div>
  5747. </div>
  5748. </div>
  5749. </section>
  5750. <section class="report-section" id="scene-4" data-tone="orange" data-slide-num="30">
  5751. <div class="section-inner">
  5752. <div class="section-head rise-in">
  5753. <div class="section-eyebrow" style="color:#2D9C5D;">5.4 · ECOMMERCE CHANNEL</div>
  5754. <h2 class="text-h1"><span class="headline-anim">💻 电商场景 · 性价比 + 差异化 + 会员复购</span></h2>
  5755. <p class="section-sub">电商验证目标:首购转化 ≥6% · 30 日复购 ≥40% · 一物一码扫描率 ≥30% · 目标 <strong style="color:#2D9C5D;">2亿</strong>(占 10 亿 20%)· 核心人群 20-50 岁 线上保健品购买习惯 · 关注差异化+性价比+一物一码溯源</p>
  5756. </div>
  5757. <!-- 渠道核心卡片 -->
  5758. <div class="fade-up" style="background:linear-gradient(135deg, #2D9C5D10, #2D9C5D02); border:2px solid #2D9C5D44; border-left:5px solid #2D9C5D; border-radius:var(--radius-md); padding:22px; margin-bottom:24px;">
  5759. <div style="display:grid; grid-template-columns:2fr 1fr; gap:22px;">
  5760. <div>
  5761. <div class="text-mono text-xs" style="color:#2D9C5D; letter-spacing:0.15em; margin-bottom:8px;">🎯 渠道核心主张</div>
  5762. <h3 style="margin:0 0 10px; font-size:1.6rem; color:var(--text-1); line-height:1.3;">"藤茶 DMY 黄酮 · 比水飞蓟更高活性 · 三效合一"</h3>
  5763. <div style="font-size:0.88rem; color:var(--text-2); line-height:1.7;">主阵地:天猫 / 京东 / 拼多多 / 抖音小店 / 品牌旗舰店。SKU 关键:30 片尝鲜 ¥49-69 / 60 片日常 ¥89-139 / 3 瓶组合 ¥269-359。</div>
  5764. </div>
  5765. <div style="display:grid; gap:8px; align-content:start;">
  5766. <div style="padding:10px 12px; background:var(--bg-1); border-radius:6px; text-align:center;">
  5767. <div style="font-family:var(--font-head); font-weight:900; font-size:2.2rem; color:#2D9C5D; line-height:1;">2</div>
  5768. <div class="text-mono text-xs" style="color:#2D9C5D; margin-top:3px; letter-spacing:0.08em;">亿 / YEAR</div>
  5769. </div>
  5770. <div style="padding:10px 12px; background:var(--bg-1); border-radius:6px; text-align:center;">
  5771. <div style="font-family:var(--font-head); font-weight:900; font-size:1.6rem; color:#2D9C5D; line-height:1;">20%</div>
  5772. <div class="text-mono text-xs" style="color:#2D9C5D; margin-top:3px; letter-spacing:0.08em;">OF 10亿</div>
  5773. </div>
  5774. </div>
  5775. </div>
  5776. </div>
  5777. <!-- 5 维度拆解:用户痛点 / SKU / 话术 / 触点 / KPI -->
  5778. <div class="fade-up" style="display:grid; grid-template-columns:repeat(5, 1fr); gap:14px; margin-bottom:24px;">
  5779. <div style="background:var(--bg-1); border:1px solid #FF4D8D44; border-top:3px solid #FF4D8D; border-radius:var(--radius-md); padding:16px;">
  5780. <div style="display:flex; align-items:center; gap:8px; margin-bottom:10px;">
  5781. <div style="width:36px; height:36px; background:#FF4D8D22; border-radius:50%; display:flex; align-items:center; justify-content:center; font-size:1.2rem;">😰</div>
  5782. <div>
  5783. <div class="text-mono text-xs" style="color:#FF4D8D; letter-spacing:0.08em;">PAINS</div>
  5784. <div style="font-size:0.92rem; font-weight:800; color:var(--text-1);">用户痛点</div>
  5785. </div>
  5786. </div>
  5787. <ul style="margin:0; padding:0; list-style:none;">
  5788. <li style="padding:4px 0; font-size:0.72rem; color:var(--text-2); line-height:1.5; padding-left:14px; position:relative;"><span style="position:absolute; left:0; color:#FF4D8D;">▸</span>Swisse 水飞蓟&quot;没体感&quot;</li><li style="padding:4px 0; font-size:0.72rem; color:var(--text-2); line-height:1.5; padding-left:14px; position:relative;"><span style="position:absolute; left:0; color:#FF4D8D;">▸</span>同质化严重分不清</li><li style="padding:4px 0; font-size:0.72rem; color:var(--text-2); line-height:1.5; padding-left:14px; position:relative;"><span style="position:absolute; left:0; color:#FF4D8D;">▸</span>担心假货/代购</li><li style="padding:4px 0; font-size:0.72rem; color:var(--text-2); line-height:1.5; padding-left:14px; position:relative;"><span style="position:absolute; left:0; color:#FF4D8D;">▸</span>价格不透明</li>
  5789. </ul>
  5790. </div>
  5791. <div style="background:var(--bg-1); border:1px solid #2D9C5D44; border-top:3px solid #2D9C5D; border-radius:var(--radius-md); padding:16px;">
  5792. <div style="display:flex; align-items:center; gap:8px; margin-bottom:10px;">
  5793. <div style="width:36px; height:36px; background:#2D9C5D22; border-radius:50%; display:flex; align-items:center; justify-content:center; font-size:1.2rem;">📦</div>
  5794. <div>
  5795. <div class="text-mono text-xs" style="color:#2D9C5D; letter-spacing:0.08em;">SKU</div>
  5796. <div style="font-size:0.92rem; font-weight:800; color:var(--text-1);">SKU 配置</div>
  5797. </div>
  5798. </div>
  5799. <ul style="margin:0; padding:0; list-style:none;">
  5800. <li style="padding:4px 0; font-size:0.72rem; color:var(--text-2); line-height:1.5; padding-left:14px; position:relative;"><span style="position:absolute; left:0; color:#2D9C5D;">▸</span>JZ-L-E30 瓶装 30 片(¥49-69)</li><li style="padding:4px 0; font-size:0.72rem; color:var(--text-2); line-height:1.5; padding-left:14px; position:relative;"><span style="position:absolute; left:0; color:#2D9C5D;">▸</span>JZ-L-E60 瓶装 60 片(¥89-139)</li><li style="padding:4px 0; font-size:0.72rem; color:var(--text-2); line-height:1.5; padding-left:14px; position:relative;"><span style="position:absolute; left:0; color:#2D9C5D;">▸</span>JZ-L-E180G 3 瓶组合(¥269-359)</li><li style="padding:4px 0; font-size:0.72rem; color:var(--text-2); line-height:1.5; padding-left:14px; position:relative;"><span style="position:absolute; left:0; color:#2D9C5D;">▸</span>会员复购 + 签到积分</li>
  5801. </ul>
  5802. </div>
  5803. <div style="background:var(--bg-1); border:1px solid #8B5CF644; border-top:3px solid #8B5CF6; border-radius:var(--radius-md); padding:16px;">
  5804. <div style="display:flex; align-items:center; gap:8px; margin-bottom:10px;">
  5805. <div style="width:36px; height:36px; background:#8B5CF622; border-radius:50%; display:flex; align-items:center; justify-content:center; font-size:1.2rem;">🗣️</div>
  5806. <div>
  5807. <div class="text-mono text-xs" style="color:#8B5CF6; letter-spacing:0.08em;">SPEECH</div>
  5808. <div style="font-size:0.92rem; font-weight:800; color:var(--text-1);">话术包</div>
  5809. </div>
  5810. </div>
  5811. <ul style="margin:0; padding:0; list-style:none;">
  5812. <li style="padding:4px 0; font-size:0.72rem; color:var(--text-2); line-height:1.5; padding-left:14px; position:relative;"><span style="position:absolute; left:0; color:#8B5CF6;">▸</span>&quot;别吃水飞蓟 · 看 DMY 新草本&quot;</li><li style="padding:4px 0; font-size:0.72rem; color:var(--text-2); line-height:1.5; padding-left:14px; position:relative;"><span style="position:absolute; left:0; color:#8B5CF6;">▸</span>&quot;藤茶 DMY 比 Silymarin 高活性&quot;</li><li style="padding:4px 0; font-size:0.72rem; color:var(--text-2); line-height:1.5; padding-left:14px; position:relative;"><span style="position:absolute; left:0; color:#8B5CF6;">▸</span>&quot;一物一码可溯源&quot;</li><li style="padding:4px 0; font-size:0.72rem; color:var(--text-2); line-height:1.5; padding-left:14px; position:relative;"><span style="position:absolute; left:0; color:#8B5CF6;">▸</span>&quot;江中品牌背书正品&quot;</li>
  5813. </ul>
  5814. </div>
  5815. <div style="background:var(--bg-1); border:1px solid #0085CA44; border-top:3px solid #0085CA; border-radius:var(--radius-md); padding:16px;">
  5816. <div style="display:flex; align-items:center; gap:8px; margin-bottom:10px;">
  5817. <div style="width:36px; height:36px; background:#0085CA22; border-radius:50%; display:flex; align-items:center; justify-content:center; font-size:1.2rem;">🎯</div>
  5818. <div>
  5819. <div class="text-mono text-xs" style="color:#0085CA; letter-spacing:0.08em;">TOUCHPOINTS</div>
  5820. <div style="font-size:0.92rem; font-weight:800; color:var(--text-1);">关键触点</div>
  5821. </div>
  5822. </div>
  5823. <ul style="margin:0; padding:0; list-style:none;">
  5824. <li style="padding:4px 0; font-size:0.72rem; color:var(--text-2); line-height:1.5; padding-left:14px; position:relative;"><span style="position:absolute; left:0; color:#0085CA;">▸</span>详情页 DMY vs 水飞蓟对比</li><li style="padding:4px 0; font-size:0.72rem; color:var(--text-2); line-height:1.5; padding-left:14px; position:relative;"><span style="position:absolute; left:0; color:#0085CA;">▸</span>一物一码扫码入会</li><li style="padding:4px 0; font-size:0.72rem; color:var(--text-2); line-height:1.5; padding-left:14px; position:relative;"><span style="position:absolute; left:0; color:#0085CA;">▸</span>小红书/知乎深度科普</li><li style="padding:4px 0; font-size:0.72rem; color:var(--text-2); line-height:1.5; padding-left:14px; position:relative;"><span style="position:absolute; left:0; color:#0085CA;">▸</span>618/双 11 大促峰值</li>
  5825. </ul>
  5826. </div>
  5827. <div style="background:var(--bg-1); border:1px solid #FF8C4244; border-top:3px solid #FF8C42; border-radius:var(--radius-md); padding:16px;">
  5828. <div style="display:flex; align-items:center; gap:8px; margin-bottom:10px;">
  5829. <div style="width:36px; height:36px; background:#FF8C4222; border-radius:50%; display:flex; align-items:center; justify-content:center; font-size:1.2rem;">📊</div>
  5830. <div>
  5831. <div class="text-mono text-xs" style="color:#FF8C42; letter-spacing:0.08em;">KPI</div>
  5832. <div style="font-size:0.92rem; font-weight:800; color:var(--text-1);">KPI 目标</div>
  5833. </div>
  5834. </div>
  5835. <ul style="margin:0; padding:0; list-style:none;">
  5836. <li style="padding:4px 0; font-size:0.72rem; color:var(--text-2); line-height:1.5; padding-left:14px; position:relative;"><span style="position:absolute; left:0; color:#FF8C42;">▸</span>月均 GMV 1800w+</li><li style="padding:4px 0; font-size:0.72rem; color:var(--text-2); line-height:1.5; padding-left:14px; position:relative;"><span style="position:absolute; left:0; color:#FF8C42;">▸</span>首购转化率 ≥6%</li><li style="padding:4px 0; font-size:0.72rem; color:var(--text-2); line-height:1.5; padding-left:14px; position:relative;"><span style="position:absolute; left:0; color:#FF8C42;">▸</span>30 日复购 ≥40%</li><li style="padding:4px 0; font-size:0.72rem; color:var(--text-2); line-height:1.5; padding-left:14px; position:relative;"><span style="position:absolute; left:0; color:#FF8C42;">▸</span>小程序复购会员 10w+</li>
  5837. </ul>
  5838. </div>
  5839. </div>
  5840. <!-- VOC 原声支撑 -->
  5841. <div class="fade-up" style="background:var(--bg-1); border:1px solid #2D9C5D44; border-radius:var(--radius-md); padding:22px; margin-bottom:24px;">
  5842. <div class="text-mono text-xs" style="color:#2D9C5D; letter-spacing:0.15em; margin-bottom:12px;">💬 VOC RAW VOICE · 电商购买/差异化认知 VOC(6 条相关评论)</div>
  5843. <div style="display:grid; grid-template-columns:repeat(3, 1fr); gap:10px;">
  5844. <div style="padding:10px 12px; background:var(--bg-2); border-left:3px solid #2D9C5D; border-radius:4px; margin-bottom:8px;">
  5845. <div style="display:flex; justify-content:space-between; align-items:center; margin-bottom:4px;">
  5846. <div style="display:flex; align-items:center; gap:6px;">
  5847. <span style="font-size:0.72rem; font-weight:700; color:#2D9C5D;">宋,,</span>
  5848. </div>
  5849. <div style="display:flex; align-items:center; gap:8px;">
  5850. <span class="text-mono text-xs" style="color:#2D9C5D;">♡ 178</span>
  5851. <span style="padding:1px 6px; background:#2D9C5D15; color:#2D9C5D; border-radius:2px; font-size:0.65rem;">送礼 保健品</span>
  5852. </div>
  5853. </div>
  5854. <div style="font-size:0.78rem; color:var(--text-1); line-height:1.5;">谢谢大家的祝福,也谢谢大家的认可,一共准备了十八样礼品,准备的过程中我们两个人一起商量,我认为是两个人齐心协力的体现,也是我们对未来美好生活的向往和期待,同时更是对长辈的尊重,我们买的东西都是很实用的,不存在铺张浪费,针对评论区的奇葩,首先不尊重女性,口无遮拦…</div>
  5855. </div>
  5856. <div style="padding:10px 12px; background:var(--bg-2); border-left:3px solid #2D9C5D; border-radius:4px; margin-bottom:8px;">
  5857. <div style="display:flex; justify-content:space-between; align-items:center; margin-bottom:4px;">
  5858. <div style="display:flex; align-items:center; gap:6px;">
  5859. <span style="font-size:0.72rem; font-weight:700; color:#2D9C5D;">野火 _</span>
  5860. <span class="text-mono text-xs" style="color:var(--text-3);">📍上海</span>
  5861. </div>
  5862. <div style="display:flex; align-items:center; gap:8px;">
  5863. <span class="text-mono text-xs" style="color:#2D9C5D;">♡ 88</span>
  5864. <span style="padding:1px 6px; background:#2D9C5D15; color:#2D9C5D; border-radius:2px; font-size:0.65rem;">应酬解酒 (抖音)</span>
  5865. </div>
  5866. </div>
  5867. <div style="font-size:0.78rem; color:var(--text-1); line-height:1.5;">我大冬天的喝个十几块钱的白酒还要买葡萄 我买得起这个季节的葡萄我还喝那个破酒干吗[暗中观察]</div>
  5868. </div>
  5869. <div style="padding:10px 12px; background:var(--bg-2); border-left:3px solid #2D9C5D; border-radius:4px; margin-bottom:8px;">
  5870. <div style="display:flex; justify-content:space-between; align-items:center; margin-bottom:4px;">
  5871. <div style="display:flex; align-items:center; gap:6px;">
  5872. <span style="font-size:0.72rem; font-weight:700; color:#2D9C5D;">✨Duncan</span>
  5873. <span class="text-mono text-xs" style="color:var(--text-3);">📍广东</span>
  5874. </div>
  5875. <div style="display:flex; align-items:center; gap:8px;">
  5876. <span class="text-mono text-xs" style="color:#2D9C5D;">♡ 85</span>
  5877. <span style="padding:1px 6px; background:#2D9C5D15; color:#2D9C5D; border-radius:2px; font-size:0.65rem;">肝纯片 (抖音)</span>
  5878. </div>
  5879. </div>
  5880. <div style="font-size:0.78rem; color:var(--text-1); line-height:1.5;">买了,吃了,差点进ICU了</div>
  5881. </div>
  5882. <div style="padding:10px 12px; background:var(--bg-2); border-left:3px solid #2D9C5D; border-radius:4px; margin-bottom:8px;">
  5883. <div style="display:flex; justify-content:space-between; align-items:center; margin-bottom:4px;">
  5884. <div style="display:flex; align-items:center; gap:6px;">
  5885. <span style="font-size:0.72rem; font-weight:700; color:#2D9C5D;">木RJin</span>
  5886. <span class="text-mono text-xs" style="color:var(--text-3);">📍湖南</span>
  5887. </div>
  5888. <div style="display:flex; align-items:center; gap:8px;">
  5889. <span class="text-mono text-xs" style="color:#2D9C5D;">♡ 68</span>
  5890. <span style="padding:1px 6px; background:#2D9C5D15; color:#2D9C5D; border-radius:2px; font-size:0.65rem;">护肝片 (抖音)</span>
  5891. </div>
  5892. </div>
  5893. <div style="font-size:0.78rem; color:var(--text-1); line-height:1.5;">我就是凌晨下单买护肝片的那15%</div>
  5894. </div>
  5895. <div style="padding:10px 12px; background:var(--bg-2); border-left:3px solid #2D9C5D; border-radius:4px; margin-bottom:8px;">
  5896. <div style="display:flex; justify-content:space-between; align-items:center; margin-bottom:4px;">
  5897. <div style="display:flex; align-items:center; gap:6px;">
  5898. <span style="font-size:0.72rem; font-weight:700; color:#2D9C5D;">💤</span>
  5899. </div>
  5900. <div style="display:flex; align-items:center; gap:8px;">
  5901. <span class="text-mono text-xs" style="color:#2D9C5D;">♡ 33</span>
  5902. <span style="padding:1px 6px; background:#2D9C5D15; color:#2D9C5D; border-radius:2px; font-size:0.65rem;">熬夜 护肝</span>
  5903. </div>
  5904. </div>
  5905. <div style="font-size:0.78rem; color:var(--text-1); line-height:1.5;">姐妹,我想要养肝护肝,增强肝脏代谢买哪一款啊?最近吃了一款药会伤害肝,所以吃完药我想吃护肝片。</div>
  5906. </div>
  5907. <div style="padding:10px 12px; background:var(--bg-2); border-left:3px solid #2D9C5D; border-radius:4px; margin-bottom:8px;">
  5908. <div style="display:flex; justify-content:space-between; align-items:center; margin-bottom:4px;">
  5909. <div style="display:flex; align-items:center; gap:6px;">
  5910. <span style="font-size:0.72rem; font-weight:700; color:#2D9C5D;">老张爱生活</span>
  5911. <span class="text-mono text-xs" style="color:var(--text-3);">📍黑龙江</span>
  5912. </div>
  5913. <div style="display:flex; align-items:center; gap:8px;">
  5914. <span class="text-mono text-xs" style="color:#2D9C5D;">♡ 29</span>
  5915. <span style="padding:1px 6px; background:#2D9C5D15; color:#2D9C5D; border-radius:2px; font-size:0.65rem;">肝纯片 (抖音)</span>
  5916. </div>
  5917. </div>
  5918. <div style="font-size:0.78rem; color:var(--text-1); line-height:1.5;">这款护肝片在江中官方旗舰店 大家不要买错</div>
  5919. </div>
  5920. </div>
  5921. </div>
  5922. <!-- 落地决策评分 -->
  5923. <div class="fade-up" style="background:linear-gradient(135deg, #FF8C4210, #2D9C5D08); border:1px solid #FF8C4244; border-radius:var(--radius-md); padding:20px;">
  5924. <div class="text-mono text-xs" style="color:#FF8C42; letter-spacing:0.15em; margin-bottom:12px;">SCENE-FIT SCORE · 场景适配度评估(≥75% 达标)</div>
  5925. <div style="display:grid; grid-template-columns:repeat(4, 1fr) 1.5fr; gap:14px; align-items:center;">
  5926. <div style="text-align:center; padding:12px; background:#8B5CF608; border-radius:6px;">
  5927. <div style="font-family:var(--font-head); font-weight:900; font-size:1.9rem; color:#8B5CF6; line-height:1;">75</div>
  5928. <div class="text-mono text-xs" style="color:#8B5CF6; margin-top:4px; letter-spacing:0.08em;">差异心智</div>
  5929. </div>
  5930. <div style="text-align:center; padding:12px; background:#2D9C5D08; border-radius:6px;">
  5931. <div style="font-family:var(--font-head); font-weight:900; font-size:1.9rem; color:#2D9C5D; line-height:1;">88</div>
  5932. <div class="text-mono text-xs" style="color:#2D9C5D; margin-top:4px; letter-spacing:0.08em;">性价比</div>
  5933. </div>
  5934. <div style="text-align:center; padding:12px; background:#0085CA08; border-radius:6px;">
  5935. <div style="font-family:var(--font-head); font-weight:900; font-size:1.9rem; color:#0085CA; line-height:1;">82</div>
  5936. <div class="text-mono text-xs" style="color:#0085CA; margin-top:4px; letter-spacing:0.08em;">信任度</div>
  5937. </div>
  5938. <div style="text-align:center; padding:12px; background:#D4A57408; border-radius:6px;">
  5939. <div style="font-family:var(--font-head); font-weight:900; font-size:1.9rem; color:#D4A574; line-height:1;">78</div>
  5940. <div class="text-mono text-xs" style="color:#D4A574; margin-top:4px; letter-spacing:0.08em;">复购意愿</div>
  5941. </div>
  5942. <div style="padding:14px; background:#2D9C5D12; border-left:3px solid #2D9C5D; border-radius:4px;">
  5943. <div class="text-mono text-xs" style="color:#2D9C5D; letter-spacing:0.1em; margin-bottom:4px;">🎯 综合结论</div>
  5944. <div style="font-size:0.8rem; color:var(--text-1); line-height:1.55;">✅ 达标:比 Swisse 便宜 15-30% + DMY 差异化科普 + 一物一码信任加成,618/双 11 峰值可破圈。</div>
  5945. </div>
  5946. </div>
  5947. </div>
  5948. </div>
  5949. </section>
  5950. <section class="report-section" id="competitor" data-tone="rose" data-slide-num="31/42" style="justify-content:center;">
  5951. <div class="section-inner">
  5952. <div class="rise-in" style="text-align:center; margin-bottom:48px;">
  5953. <div class="text-mono" style="color:#FF4D8D; letter-spacing:0.35em; font-size:0.8rem; margin-bottom:20px;">CHAPTER 6 · COMPETITOR</div>
  5954. <h1 style="font-family:var(--font-head); font-weight:900; font-size:clamp(4rem, 10vw, 8rem); line-height:0.92; letter-spacing:-0.04em; color:#fff; background:linear-gradient(135deg, #fff 30%, #FF4D8D 100%); -webkit-background-clip:text; background-clip:text; -webkit-text-fill-color:transparent; margin:0 0 18px;">
  5955. 竞品认知
  5956. </h1>
  5957. <p class="text-poster" style="font-size:clamp(1.2rem, 2.2vw, 1.8rem); color:var(--text-2); font-weight:500; max-width:820px; margin:0 auto; line-height:1.5;">护肝片/易善复/片仔癀/熊胆粉/Swisse/海王金樽 6 大竞品 VOC 拆解</p>
  5958. </div>
  5959. <div class="fade-up" style="max-width:920px; margin:0 auto 40px; padding:28px 36px; background:rgba(255,255,255,0.02); border-left:4px solid #FF4D8D; border-radius:0 var(--radius-md) var(--radius-md) 0;">
  5960. <div class="text-mono text-xs" style="color:#FF4D8D; letter-spacing:0.15em; margin-bottom:10px;">KEY TAKE · 本章核心</div>
  5961. <div style="font-size:1.15rem; line-height:1.75; color:var(--text-1);">拆解 <strong style="color:#FF4D8D;">6 大竞品 VOC</strong>:药品(护肝片/易善复/片仔癀/熊胆粉)被吐槽"副作用/寒凉/天价/像治病";保健品(Swisse/水飞蓟类)被吐槽"吸收差/没体感";解酒品(海王金樽)被复盘"成分无解酒靶点 + 像治病药 + 无社交属性"—— 每一个痛点都是江中肝纯的切入点。</div>
  5962. </div>
  5963. <div class="grid fade-up" style="grid-template-columns:repeat(6, 1fr); gap:14px; max-width:1100px; margin:0 auto;">
  5964. <div style="background:var(--bg-1); border:1px solid var(--border); border-radius:var(--radius-md); padding:18px 16px; display:flex; flex-direction:column; gap:8px; border-top:2px solid #FF4D8D;">
  5965. <div class="text-mono text-xs" style="color:#FF4D8D; letter-spacing:0.1em; font-weight:700;">6.1</div>
  5966. <div style="font-weight:700; font-size:0.86rem; color:var(--text-1); line-height:1.35;">护肝片·副作用/品牌老化</div>
  5967. </div>
  5968. <div style="background:var(--bg-1); border:1px solid var(--border); border-radius:var(--radius-md); padding:18px 16px; display:flex; flex-direction:column; gap:8px; border-top:2px solid #FF4D8D;">
  5969. <div class="text-mono text-xs" style="color:#FF4D8D; letter-spacing:0.1em; font-weight:700;">6.2</div>
  5970. <div style="font-weight:700; font-size:0.86rem; color:var(--text-1); line-height:1.35;">易善复·胃肠反应/西药感</div>
  5971. </div>
  5972. <div style="background:var(--bg-1); border:1px solid var(--border); border-radius:var(--radius-md); padding:18px 16px; display:flex; flex-direction:column; gap:8px; border-top:2px solid #FF4D8D;">
  5973. <div class="text-mono text-xs" style="color:#FF4D8D; letter-spacing:0.1em; font-weight:700;">6.3</div>
  5974. <div style="font-weight:700; font-size:0.86rem; color:var(--text-1); line-height:1.35;">片仔癀·天价/稀缺</div>
  5975. </div>
  5976. <div style="background:var(--bg-1); border:1px solid var(--border); border-radius:var(--radius-md); padding:18px 16px; display:flex; flex-direction:column; gap:8px; border-top:2px solid #FF4D8D;">
  5977. <div class="text-mono text-xs" style="color:#FF4D8D; letter-spacing:0.1em; font-weight:700;">6.4</div>
  5978. <div style="font-weight:700; font-size:0.86rem; color:var(--text-1); line-height:1.35;">熊胆粉·寒凉/伦理</div>
  5979. </div>
  5980. <div style="background:var(--bg-1); border:1px solid var(--border); border-radius:var(--radius-md); padding:18px 16px; display:flex; flex-direction:column; gap:8px; border-top:2px solid #FF4D8D;">
  5981. <div class="text-mono text-xs" style="color:#FF4D8D; letter-spacing:0.1em; font-weight:700;">6.5</div>
  5982. <div style="font-weight:700; font-size:0.86rem; color:var(--text-1); line-height:1.35;">Swisse/汤臣倍健·水飞蓟弱体感</div>
  5983. </div>
  5984. <div style="background:var(--bg-1); border:1px solid var(--border); border-radius:var(--radius-md); padding:18px 16px; display:flex; flex-direction:column; gap:8px; border-top:2px solid #FF4D8D;">
  5985. <div class="text-mono text-xs" style="color:#FF4D8D; letter-spacing:0.1em; font-weight:700;">6.6</div>
  5986. <div style="font-weight:700; font-size:0.86rem; color:var(--text-1); line-height:1.35;">海王金樽·失败复盘</div>
  5987. </div>
  5988. </div>
  5989. <div class="fade-up text-mono text-xs" style="margin-top:56px; text-align:center; color:var(--text-3); letter-spacing:0.2em;">
  5990. ↓ 滚动查看 6 个子章节展开
  5991. </div>
  5992. </div>
  5993. </section>
  5994. <section class="report-section" id="competitor-1" data-tone="rose" data-slide-num="32">
  5995. <div class="section-inner">
  5996. <div class="section-head rise-in">
  5997. <div class="section-eyebrow" style="color:#FF4D8D;">6.1 · HUGANPIAN</div>
  5998. <h2 class="text-h1"><span class="headline-anim">💊 护肝片 · 老牌 OTC · 品牌老化 · 信任危机</span></h2>
  5999. <p class="section-sub">OTC 保健品老品类代表 · 品牌老化 + 用户信任危机 = 江中肝纯替代机会 · 基于 <strong style="color:#FF4D8D;">40</strong> 条真实评论分析痛点,为江中肝纯片提炼 <strong style="color:#FF4D8D;">3</strong> 个切入点</p>
  6000. </div>
  6001. <!-- 竞品档案 -->
  6002. <div class="fade-up" style="background:linear-gradient(135deg, #FF4D8D10, #FF4D8D02); border:2px solid #FF4D8D44; border-left:5px solid #FF4D8D; border-radius:var(--radius-md); padding:22px; margin-bottom:22px;">
  6003. <div style="display:grid; grid-template-columns:2fr 1fr; gap:22px;">
  6004. <div>
  6005. <div class="text-mono text-xs" style="color:#FF4D8D; letter-spacing:0.15em; margin-bottom:8px;">📇 COMPETITOR PROFILE</div>
  6006. <div style="display:grid; grid-template-columns:1fr 1fr; gap:12px;">
  6007. <div style="padding:8px 12px; background:var(--bg-1); border-radius:4px;">
  6008. <div class="text-mono text-xs" style="color:var(--text-3); letter-spacing:0.06em; margin-bottom:2px;">品类定位</div>
  6009. <div style="font-size:0.82rem; color:var(--text-1); font-weight:700;">OTC 中成药 / 保健品</div>
  6010. </div>
  6011. <div style="padding:8px 12px; background:var(--bg-1); border-radius:4px;">
  6012. <div class="text-mono text-xs" style="color:var(--text-3); letter-spacing:0.06em; margin-bottom:2px;">核心成分</div>
  6013. <div style="font-size:0.78rem; color:var(--text-1);">柴胡 / 茵陈 / 板蓝根 / 五味子 / 猪胆粉</div>
  6014. </div>
  6015. <div style="padding:8px 12px; background:var(--bg-1); border-radius:4px;">
  6016. <div class="text-mono text-xs" style="color:var(--text-3); letter-spacing:0.06em; margin-bottom:2px;">定价参考</div>
  6017. <div style="font-size:0.82rem; color:#FF4D8D; font-weight:700;">¥25-35 / 60 片</div>
  6018. </div>
  6019. <div style="padding:8px 12px; background:var(--bg-1); border-radius:4px;">
  6020. <div class="text-mono text-xs" style="color:var(--text-3); letter-spacing:0.06em; margin-bottom:2px;">市场规模</div>
  6021. <div style="font-size:0.82rem; color:#FF4D8D; font-weight:700;">品类 30 亿 +</div>
  6022. </div>
  6023. </div>
  6024. </div>
  6025. <div style="padding:14px; background:var(--bg-1); border-left:3px solid #FF4D8D; border-radius:4px;">
  6026. <div class="text-mono text-xs" style="color:#FF4D8D; letter-spacing:0.1em; margin-bottom:4px;">✅ 竞品优势</div>
  6027. <ul style="margin:0 0 10px; padding:0; list-style:none;">
  6028. <li style="padding:2px 0; font-size:0.74rem; color:var(--text-2); line-height:1.45; padding-left:12px; position:relative;"><span style="position:absolute; left:0; color:#FF4D8D;">▸</span>药线铺货广泛</li><li style="padding:2px 0; font-size:0.74rem; color:var(--text-2); line-height:1.45; padding-left:12px; position:relative;"><span style="position:absolute; left:0; color:#FF4D8D;">▸</span>价格低廉</li><li style="padding:2px 0; font-size:0.74rem; color:var(--text-2); line-height:1.45; padding-left:12px; position:relative;"><span style="position:absolute; left:0; color:#FF4D8D;">▸</span>老用户品牌认知</li><li style="padding:2px 0; font-size:0.74rem; color:var(--text-2); line-height:1.45; padding-left:12px; position:relative;"><span style="position:absolute; left:0; color:#FF4D8D;">▸</span>传统中药配方心智</li>
  6029. </ul>
  6030. </div>
  6031. </div>
  6032. </div>
  6033. <!-- VOC 痛点主题 + 金句 -->
  6034. <div class="fade-up" style="display:grid; grid-template-columns:1.3fr 1fr; gap:16px; margin-bottom:22px;">
  6035. <div style="background:var(--bg-1); border:1px solid #FF4D8D44; border-top:3px solid #FF4D8D; border-radius:var(--radius-md); padding:18px;">
  6036. <div class="text-mono text-xs" style="color:#FF4D8D; letter-spacing:0.15em; margin-bottom:12px;">💢 PAIN POINTS · 竞品 VOC 痛点主题</div>
  6037. <div style="display:grid; gap:8px;">
  6038. <div style="padding:10px 12px; background:#FF4D8D08; border-left:3px solid #FF4D8D; border-radius:4px;">
  6039. <div style="display:flex; justify-content:space-between; align-items:baseline; margin-bottom:4px;">
  6040. <div style="font-size:0.82rem; font-weight:700; color:var(--text-1);">❌ 副作用 / 胃部反应</div>
  6041. <div style="font-family:var(--font-mono); font-size:0.72rem; color:#FF4D8D; font-weight:700;">1条 · 3%</div>
  6042. </div>
  6043. <div style="font-size:0.72rem; color:var(--text-3); line-height:1.45; font-style:italic;">💬 "这个每天都需要吃吗,有没有什么副作用呀"</div>
  6044. </div>
  6045. <div style="padding:10px 12px; background:#FF4D8D08; border-left:3px solid #FF4D8D; border-radius:4px;">
  6046. <div style="display:flex; justify-content:space-between; align-items:baseline; margin-bottom:4px;">
  6047. <div style="font-size:0.82rem; font-weight:700; color:var(--text-1);">❌ &quot;智商税 / 没效果&quot;</div>
  6048. <div style="font-family:var(--font-mono); font-size:0.72rem; color:#FF4D8D; font-weight:700;">0条 · 0%</div>
  6049. </div>
  6050. <div style="font-size:0.72rem; color:var(--text-3); line-height:1.45; font-style:italic;">💬 "被称&quot;智商税&quot;"</div>
  6051. </div>
  6052. <div style="padding:10px 12px; background:#FF4D8D08; border-left:3px solid #FF4D8D; border-radius:4px;">
  6053. <div style="display:flex; justify-content:space-between; align-items:baseline; margin-bottom:4px;">
  6054. <div style="font-size:0.82rem; font-weight:700; color:var(--text-1);">❌ 医生不推荐</div>
  6055. <div style="font-family:var(--font-mono); font-size:0.72rem; color:#FF4D8D; font-weight:700;">0条 · 0%</div>
  6056. </div>
  6057. <div style="font-size:0.72rem; color:var(--text-3); line-height:1.45; font-style:italic;">💬 "医生不主张"</div>
  6058. </div>
  6059. <div style="padding:10px 12px; background:#FF4D8D08; border-left:3px solid #FF4D8D; border-radius:4px;">
  6060. <div style="display:flex; justify-content:space-between; align-items:baseline; margin-bottom:4px;">
  6061. <div style="font-size:0.82rem; font-weight:700; color:var(--text-1);">❌ 品牌老化 / 陈旧感</div>
  6062. <div style="font-family:var(--font-mono); font-size:0.72rem; color:#FF4D8D; font-weight:700;">1条 · 3%</div>
  6063. </div>
  6064. <div style="font-size:0.72rem; color:var(--text-3); line-height:1.45; font-style:italic;">💬 "老师那像天天都要熬夜的,每天都要凌晨2:00多才下班的,那这个护肝片应该在什么时候吃啊?我买的浓度是比较高的,他写一天一次就好,但是我不知道应该什么时候去吃它"</div>
  6065. </div>
  6066. </div>
  6067. </div>
  6068. <div style="background:var(--bg-1); border:1px solid #FF4D8D44; border-top:3px solid #FF4D8D; border-radius:var(--radius-md); padding:18px;">
  6069. <div class="text-mono text-xs" style="color:#FF4D8D; letter-spacing:0.15em; margin-bottom:12px;">💬 VOC TOP 40</div>
  6070. <div style="padding:10px 12px; background:var(--bg-2); border-left:3px solid #FF4D8D; border-radius:4px; margin-bottom:8px;">
  6071. <div style="display:flex; justify-content:space-between; align-items:center; margin-bottom:4px;">
  6072. <div style="display:flex; align-items:center; gap:6px;">
  6073. <span style="font-size:0.75rem;">📕</span>
  6074. <span style="font-size:0.72rem; font-weight:700; color:#FF4D8D;">匿名</span>
  6075. </div>
  6076. <div style="display:flex; align-items:center; gap:6px;">
  6077. <span class="text-mono text-xs" style="color:#FF4D8D;">♡ 46671</span>
  6078. </div>
  6079. </div>
  6080. <div style="font-size:0.78rem; color:var(--text-1); line-height:1.5;">不是哥们儿,这真是我见过最今朝有酒今朝醉的博主[点赞R]</div>
  6081. </div>
  6082. <div style="padding:10px 12px; background:var(--bg-2); border-left:3px solid #FF4D8D; border-radius:4px; margin-bottom:8px;">
  6083. <div style="display:flex; justify-content:space-between; align-items:center; margin-bottom:4px;">
  6084. <div style="display:flex; align-items:center; gap:6px;">
  6085. <span style="font-size:0.75rem;">📕</span>
  6086. <span style="font-size:0.72rem; font-weight:700; color:#FF4D8D;">匿名</span>
  6087. </div>
  6088. <div style="display:flex; align-items:center; gap:6px;">
  6089. <span class="text-mono text-xs" style="color:#FF4D8D;">♡ 19650</span>
  6090. </div>
  6091. </div>
  6092. <div style="font-size:0.78rem; color:var(--text-1); line-height:1.5;">我已经想象到后面几天他要吃什么了[捂脸R]</div>
  6093. </div>
  6094. <div style="padding:10px 12px; background:var(--bg-2); border-left:3px solid #FF4D8D; border-radius:4px; margin-bottom:8px;">
  6095. <div style="display:flex; justify-content:space-between; align-items:center; margin-bottom:4px;">
  6096. <div style="display:flex; align-items:center; gap:6px;">
  6097. <span style="font-size:0.75rem;">📕</span>
  6098. <span style="font-size:0.72rem; font-weight:700; color:#FF4D8D;">匿名</span>
  6099. <span class="text-mono text-xs" style="color:var(--text-3);">📍上海</span>
  6100. </div>
  6101. <div style="display:flex; align-items:center; gap:6px;">
  6102. <span class="text-mono text-xs" style="color:#FF4D8D;">♡ 18258</span>
  6103. </div>
  6104. </div>
  6105. <div style="font-size:0.78rem; color:var(--text-1); line-height:1.5;">你可以资助一下这个人吗?</div>
  6106. </div>
  6107. <div style="padding:10px 12px; background:var(--bg-2); border-left:3px solid #FF4D8D; border-radius:4px; margin-bottom:8px;">
  6108. <div style="display:flex; justify-content:space-between; align-items:center; margin-bottom:4px;">
  6109. <div style="display:flex; align-items:center; gap:6px;">
  6110. <span style="font-size:0.75rem;">📕</span>
  6111. <span style="font-size:0.72rem; font-weight:700; color:#FF4D8D;">匿名</span>
  6112. </div>
  6113. <div style="display:flex; align-items:center; gap:6px;">
  6114. <span class="text-mono text-xs" style="color:#FF4D8D;">♡ 10489</span>
  6115. </div>
  6116. </div>
  6117. <div style="font-size:0.78rem; color:var(--text-1); line-height:1.5;">bro你吃外卖的状态沉浸得像是吸了</div>
  6118. </div>
  6119. </div>
  6120. </div>
  6121. <!-- 江中肝纯 切入点 -->
  6122. <div class="fade-up" style="background:linear-gradient(135deg, #FF4D8D15, #2D9C5D08); border:2px solid #FF4D8D; border-radius:var(--radius-md); padding:22px;">
  6123. <div class="text-mono text-xs" style="color:#FF4D8D; letter-spacing:0.2em; margin-bottom:14px;">🎯 JIANGZHONG OPPORTUNITY · 江中肝纯片切入点(3 条)</div>
  6124. <div style="display:grid; grid-template-columns:repeat(3, 1fr); gap:14px;">
  6125. <div style="padding:16px; background:#2D9C5D10; border-left:4px solid #2D9C5D; border-radius:6px;">
  6126. <div style="display:flex; align-items:center; gap:8px; margin-bottom:8px;">
  6127. <div style="font-size:1.4rem;">🛡️</div>
  6128. <div style="font-size:1rem; font-weight:800; color:var(--text-1);">安全无副作用</div>
  6129. </div>
  6130. <div style="font-size:0.78rem; color:var(--text-2); line-height:1.55; margin-bottom:8px;">藤茶 DMY 药食同源,无胃肠刺激,直击&quot;副作用&quot;痛点</div>
  6131. <div style="padding:6px 10px; background:#2D9C5D15; border-radius:3px;">
  6132. <div class="text-mono text-xs" style="color:#2D9C5D; letter-spacing:0.08em; margin-bottom:3px;">🔊 话术样例</div>
  6133. <div style="font-size:0.74rem; color:var(--text-1); font-style:italic; font-weight:600; line-height:1.4;">"&quot;别吃会反酸的护肝片 · 藤茶 DMY 无胃肠刺激&quot;"</div>
  6134. </div>
  6135. </div>
  6136. <div style="padding:16px; background:#0085CA10; border-left:4px solid #0085CA; border-radius:6px;">
  6137. <div style="display:flex; align-items:center; gap:8px; margin-bottom:8px;">
  6138. <div style="font-size:1.4rem;">🔬</div>
  6139. <div style="font-size:1rem; font-weight:800; color:var(--text-1);">科学背书升级</div>
  6140. </div>
  6141. <div style="font-size:0.78rem; color:var(--text-2); line-height:1.55; margin-bottom:8px;">DMY 临床数据 + 江中品牌背书 破解&quot;智商税&quot;质疑</div>
  6142. <div style="padding:6px 10px; background:#0085CA15; border-radius:3px;">
  6143. <div class="text-mono text-xs" style="color:#0085CA; letter-spacing:0.08em; margin-bottom:3px;">🔊 话术样例</div>
  6144. <div style="font-size:0.74rem; color:var(--text-1); font-style:italic; font-weight:600; line-height:1.4;">"&quot;不是智商税 · DMY 三重护肝机制临床可见&quot;"</div>
  6145. </div>
  6146. </div>
  6147. <div style="padding:16px; background:#D4A57410; border-left:4px solid #D4A574; border-radius:6px;">
  6148. <div style="display:flex; align-items:center; gap:8px; margin-bottom:8px;">
  6149. <div style="font-size:1.4rem;">🎨</div>
  6150. <div style="font-size:1rem; font-weight:800; color:var(--text-1);">新中式视觉</div>
  6151. </div>
  6152. <div style="font-size:0.78rem; color:var(--text-2); line-height:1.55; margin-bottom:8px;">包装年轻化(vs 护肝片老包装),Swisse 风 + 中式草本</div>
  6153. <div style="padding:6px 10px; background:#D4A57415; border-radius:3px;">
  6154. <div class="text-mono text-xs" style="color:#D4A574; letter-spacing:0.08em; margin-bottom:3px;">🔊 话术样例</div>
  6155. <div style="font-size:0.74rem; color:var(--text-1); font-style:italic; font-weight:600; line-height:1.4;">"&quot;新一代中式护肝 · 江中肝纯&quot;"</div>
  6156. </div>
  6157. </div>
  6158. </div>
  6159. </div>
  6160. </div>
  6161. </section>
  6162. <section class="report-section" id="competitor-2" data-tone="rose" data-slide-num="33">
  6163. <div class="section-inner">
  6164. <div class="section-head rise-in">
  6165. <div class="section-eyebrow" style="color:#0085CA;">6.2 · YISHANFU</div>
  6166. <h2 class="text-h1"><span class="headline-anim">🧪 易善复 · 西药品牌 · 胃肠反应 · 每年涨价</span></h2>
  6167. <p class="section-sub">西药护肝代表(多烯磷脂酰胆碱) · 胃肠副作用 + 连年涨价 = 中药保健替代机会 · 基于 <strong style="color:#0085CA;">28</strong> 条真实评论分析痛点,为江中肝纯片提炼 <strong style="color:#FF4D8D;">3</strong> 个切入点</p>
  6168. </div>
  6169. <!-- 竞品档案 -->
  6170. <div class="fade-up" style="background:linear-gradient(135deg, #0085CA10, #0085CA02); border:2px solid #0085CA44; border-left:5px solid #0085CA; border-radius:var(--radius-md); padding:22px; margin-bottom:22px;">
  6171. <div style="display:grid; grid-template-columns:2fr 1fr; gap:22px;">
  6172. <div>
  6173. <div class="text-mono text-xs" style="color:#0085CA; letter-spacing:0.15em; margin-bottom:8px;">📇 COMPETITOR PROFILE</div>
  6174. <div style="display:grid; grid-template-columns:1fr 1fr; gap:12px;">
  6175. <div style="padding:8px 12px; background:var(--bg-1); border-radius:4px;">
  6176. <div class="text-mono text-xs" style="color:var(--text-3); letter-spacing:0.06em; margin-bottom:2px;">品类定位</div>
  6177. <div style="font-size:0.82rem; color:var(--text-1); font-weight:700;">化学药品(处方 / OTC)</div>
  6178. </div>
  6179. <div style="padding:8px 12px; background:var(--bg-1); border-radius:4px;">
  6180. <div class="text-mono text-xs" style="color:var(--text-3); letter-spacing:0.06em; margin-bottom:2px;">核心成分</div>
  6181. <div style="font-size:0.78rem; color:var(--text-1);">多烯磷脂酰胆碱(大豆提取)</div>
  6182. </div>
  6183. <div style="padding:8px 12px; background:var(--bg-1); border-radius:4px;">
  6184. <div class="text-mono text-xs" style="color:var(--text-3); letter-spacing:0.06em; margin-bottom:2px;">定价参考</div>
  6185. <div style="font-size:0.82rem; color:#0085CA; font-weight:700;">¥80-120 / 盒</div>
  6186. </div>
  6187. <div style="padding:8px 12px; background:var(--bg-1); border-radius:4px;">
  6188. <div class="text-mono text-xs" style="color:var(--text-3); letter-spacing:0.06em; margin-bottom:2px;">市场规模</div>
  6189. <div style="font-size:0.82rem; color:#0085CA; font-weight:700;">医保规模 10 亿 +</div>
  6190. </div>
  6191. </div>
  6192. </div>
  6193. <div style="padding:14px; background:var(--bg-1); border-left:3px solid #0085CA; border-radius:4px;">
  6194. <div class="text-mono text-xs" style="color:#0085CA; letter-spacing:0.1em; margin-bottom:4px;">✅ 竞品优势</div>
  6195. <ul style="margin:0 0 10px; padding:0; list-style:none;">
  6196. <li style="padding:2px 0; font-size:0.74rem; color:var(--text-2); line-height:1.45; padding-left:12px; position:relative;"><span style="position:absolute; left:0; color:#0085CA;">▸</span>医院处方渠道</li><li style="padding:2px 0; font-size:0.74rem; color:var(--text-2); line-height:1.45; padding-left:12px; position:relative;"><span style="position:absolute; left:0; color:#0085CA;">▸</span>医生熟悉</li><li style="padding:2px 0; font-size:0.74rem; color:var(--text-2); line-height:1.45; padding-left:12px; position:relative;"><span style="position:absolute; left:0; color:#0085CA;">▸</span>肝炎/脂肪肝适应症</li><li style="padding:2px 0; font-size:0.74rem; color:var(--text-2); line-height:1.45; padding-left:12px; position:relative;"><span style="position:absolute; left:0; color:#0085CA;">▸</span>长期临床数据</li>
  6197. </ul>
  6198. </div>
  6199. </div>
  6200. </div>
  6201. <!-- VOC 痛点主题 + 金句 -->
  6202. <div class="fade-up" style="display:grid; grid-template-columns:1.3fr 1fr; gap:16px; margin-bottom:22px;">
  6203. <div style="background:var(--bg-1); border:1px solid #FF4D8D44; border-top:3px solid #FF4D8D; border-radius:var(--radius-md); padding:18px;">
  6204. <div class="text-mono text-xs" style="color:#FF4D8D; letter-spacing:0.15em; margin-bottom:12px;">💢 PAIN POINTS · 竞品 VOC 痛点主题</div>
  6205. <div style="display:grid; gap:8px;">
  6206. <div style="padding:10px 12px; background:#FF4D8D08; border-left:3px solid #FF4D8D; border-radius:4px;">
  6207. <div style="display:flex; justify-content:space-between; align-items:baseline; margin-bottom:4px;">
  6208. <div style="font-size:0.82rem; font-weight:700; color:var(--text-1);">❌ 胃肠道反应</div>
  6209. <div style="font-family:var(--font-mono); font-size:0.72rem; color:#FF4D8D; font-weight:700;">0条 · 0%</div>
  6210. </div>
  6211. <div style="font-size:0.72rem; color:var(--text-3); line-height:1.45; font-style:italic;">💬 "胃肠反应常见"</div>
  6212. </div>
  6213. <div style="padding:10px 12px; background:#FF4D8D08; border-left:3px solid #FF4D8D; border-radius:4px;">
  6214. <div style="display:flex; justify-content:space-between; align-items:baseline; margin-bottom:4px;">
  6215. <div style="font-size:0.82rem; font-weight:700; color:var(--text-1);">❌ 价格贵 / 涨价</div>
  6216. <div style="font-family:var(--font-mono); font-size:0.72rem; color:#FF4D8D; font-weight:700;">4条 · 14%</div>
  6217. </div>
  6218. <div style="font-size:0.72rem; color:var(--text-3); line-height:1.45; font-style:italic;">💬 "3天100到35"</div>
  6219. </div>
  6220. <div style="padding:10px 12px; background:#FF4D8D08; border-left:3px solid #FF4D8D; border-radius:4px;">
  6221. <div style="display:flex; justify-content:space-between; align-items:baseline; margin-bottom:4px;">
  6222. <div style="font-size:0.82rem; font-weight:700; color:var(--text-1);">❌ 像治病药 · 不能长期</div>
  6223. <div style="font-family:var(--font-mono); font-size:0.72rem; color:#FF4D8D; font-weight:700;">5条 · 18%</div>
  6224. </div>
  6225. <div style="font-size:0.72rem; color:var(--text-3); line-height:1.45; font-style:italic;">💬 "哪用输液,吃那个什么降酶药吃三倍。四天从170降到25。同样脂肪肝"</div>
  6226. </div>
  6227. <div style="padding:10px 12px; background:#FF4D8D08; border-left:3px solid #FF4D8D; border-radius:4px;">
  6228. <div style="display:flex; justify-content:space-between; align-items:baseline; margin-bottom:4px;">
  6229. <div style="font-size:0.82rem; font-weight:700; color:var(--text-1);">❌ 西药吸收差 / 脂溶</div>
  6230. <div style="font-family:var(--font-mono); font-size:0.72rem; color:#FF4D8D; font-weight:700;">0条 · 0%</div>
  6231. </div>
  6232. <div style="font-size:0.72rem; color:var(--text-3); line-height:1.45; font-style:italic;">💬 "西药吸收差"</div>
  6233. </div>
  6234. </div>
  6235. </div>
  6236. <div style="background:var(--bg-1); border:1px solid #0085CA44; border-top:3px solid #0085CA; border-radius:var(--radius-md); padding:18px;">
  6237. <div class="text-mono text-xs" style="color:#0085CA; letter-spacing:0.15em; margin-bottom:12px;">💬 VOC TOP 28</div>
  6238. <div style="padding:10px 12px; background:var(--bg-2); border-left:3px solid #0085CA; border-radius:4px; margin-bottom:8px;">
  6239. <div style="display:flex; justify-content:space-between; align-items:center; margin-bottom:4px;">
  6240. <div style="display:flex; align-items:center; gap:6px;">
  6241. <span style="font-size:0.75rem;">📕</span>
  6242. <span style="font-size:0.72rem; font-weight:700; color:#0085CA;">匿名</span>
  6243. </div>
  6244. <div style="display:flex; align-items:center; gap:6px;">
  6245. <span class="text-mono text-xs" style="color:#0085CA;">♡ 40</span>
  6246. </div>
  6247. </div>
  6248. <div style="font-size:0.78rem; color:var(--text-1); line-height:1.5;">3天100到35</div>
  6249. </div>
  6250. <div style="padding:10px 12px; background:var(--bg-2); border-left:3px solid #0085CA; border-radius:4px; margin-bottom:8px;">
  6251. <div style="display:flex; justify-content:space-between; align-items:center; margin-bottom:4px;">
  6252. <div style="display:flex; align-items:center; gap:6px;">
  6253. <span style="font-size:0.75rem;">📕</span>
  6254. <span style="font-size:0.72rem; font-weight:700; color:#0085CA;">匿名</span>
  6255. </div>
  6256. <div style="display:flex; align-items:center; gap:6px;">
  6257. <span class="text-mono text-xs" style="color:#0085CA;">♡ 27</span>
  6258. </div>
  6259. </div>
  6260. <div style="font-size:0.78rem; color:var(--text-1); line-height:1.5;">轻度脂肪肝这个指标就容易高,入职体检查这个也是没道理啊!什么鬼公司</div>
  6261. </div>
  6262. <div style="padding:10px 12px; background:var(--bg-2); border-left:3px solid #0085CA; border-radius:4px; margin-bottom:8px;">
  6263. <div style="display:flex; justify-content:space-between; align-items:center; margin-bottom:4px;">
  6264. <div style="display:flex; align-items:center; gap:6px;">
  6265. <span style="font-size:0.75rem;">📕</span>
  6266. <span style="font-size:0.72rem; font-weight:700; color:#0085CA;">匿名</span>
  6267. </div>
  6268. <div style="display:flex; align-items:center; gap:6px;">
  6269. <span class="text-mono text-xs" style="color:#0085CA;">♡ 17</span>
  6270. </div>
  6271. </div>
  6272. <div style="font-size:0.78rem; color:var(--text-1); line-height:1.5;">我从198到25</div>
  6273. </div>
  6274. <div style="padding:10px 12px; background:var(--bg-2); border-left:3px solid #0085CA; border-radius:4px; margin-bottom:8px;">
  6275. <div style="display:flex; justify-content:space-between; align-items:center; margin-bottom:4px;">
  6276. <div style="display:flex; align-items:center; gap:6px;">
  6277. <span style="font-size:0.75rem;">📕</span>
  6278. <span style="font-size:0.72rem; font-weight:700; color:#0085CA;">匿名</span>
  6279. </div>
  6280. <div style="display:flex; align-items:center; gap:6px;">
  6281. <span class="text-mono text-xs" style="color:#0085CA;">♡ 15</span>
  6282. </div>
  6283. </div>
  6284. <div style="font-size:0.78rem; color:var(--text-1); line-height:1.5;">哪用输液,吃那个什么降酶药吃三倍。四天从170降到25。同样脂肪肝</div>
  6285. </div>
  6286. </div>
  6287. </div>
  6288. <!-- 江中肝纯 切入点 -->
  6289. <div class="fade-up" style="background:linear-gradient(135deg, #FF4D8D15, #2D9C5D08); border:2px solid #FF4D8D; border-radius:var(--radius-md); padding:22px;">
  6290. <div class="text-mono text-xs" style="color:#FF4D8D; letter-spacing:0.2em; margin-bottom:14px;">🎯 JIANGZHONG OPPORTUNITY · 江中肝纯片切入点(3 条)</div>
  6291. <div style="display:grid; grid-template-columns:repeat(3, 1fr); gap:14px;">
  6292. <div style="padding:16px; background:#2D9C5D10; border-left:4px solid #2D9C5D; border-radius:6px;">
  6293. <div style="display:flex; align-items:center; gap:8px; margin-bottom:8px;">
  6294. <div style="font-size:1.4rem;">🫃</div>
  6295. <div style="font-size:1rem; font-weight:800; color:var(--text-1);">无胃肠副作用</div>
  6296. </div>
  6297. <div style="font-size:0.78rem; color:var(--text-2); line-height:1.55; margin-bottom:8px;">藤茶 DMY 水溶性好 + 药食同源,完全避开胃肠副作用痛点</div>
  6298. <div style="padding:6px 10px; background:#2D9C5D15; border-radius:3px;">
  6299. <div class="text-mono text-xs" style="color:#2D9C5D; letter-spacing:0.08em; margin-bottom:3px;">🔊 话术样例</div>
  6300. <div style="font-size:0.74rem; color:var(--text-1); font-style:italic; font-weight:600; line-height:1.4;">"&quot;不腹泻 · 不反酸 · 长期吃不负担&quot;"</div>
  6301. </div>
  6302. </div>
  6303. <div style="padding:16px; background:#D4A57410; border-left:4px solid #D4A574; border-radius:6px;">
  6304. <div style="display:flex; align-items:center; gap:8px; margin-bottom:8px;">
  6305. <div style="font-size:1.4rem;">📅</div>
  6306. <div style="font-size:1rem; font-weight:800; color:var(--text-1);">日常可服不处方</div>
  6307. </div>
  6308. <div style="font-size:0.78rem; color:var(--text-2); line-height:1.55; margin-bottom:8px;">蓝帽保健品而非药品,不需要医生处方,日常养护可选</div>
  6309. <div style="padding:6px 10px; background:#D4A57415; border-radius:3px;">
  6310. <div class="text-mono text-xs" style="color:#D4A574; letter-spacing:0.08em; margin-bottom:3px;">🔊 话术样例</div>
  6311. <div style="font-size:0.74rem; color:var(--text-1); font-style:italic; font-weight:600; line-height:1.4;">"&quot;不是药 · 是蓝帽保健 · 日常可服&quot;"</div>
  6312. </div>
  6313. </div>
  6314. <div style="padding:16px; background:#0085CA10; border-left:4px solid #0085CA; border-radius:6px;">
  6315. <div style="display:flex; align-items:center; gap:8px; margin-bottom:8px;">
  6316. <div style="font-size:1.4rem;">💰</div>
  6317. <div style="font-size:1rem; font-weight:800; color:var(--text-1);">价格平稳不涨</div>
  6318. </div>
  6319. <div style="font-size:0.78rem; color:var(--text-2); line-height:1.55; margin-bottom:8px;">¥89-139 稳定价位,vs 易善复逐年上涨的 ¥80→120</div>
  6320. <div style="padding:6px 10px; background:#0085CA15; border-radius:3px;">
  6321. <div class="text-mono text-xs" style="color:#0085CA; letter-spacing:0.08em; margin-bottom:3px;">🔊 话术样例</div>
  6322. <div style="font-size:0.74rem; color:var(--text-1); font-style:italic; font-weight:600; line-height:1.4;">"&quot;价格十年稳定 · 不涨价不坑人&quot;"</div>
  6323. </div>
  6324. </div>
  6325. </div>
  6326. </div>
  6327. </div>
  6328. </section>
  6329. <section class="report-section" id="competitor-3" data-tone="rose" data-slide-num="34">
  6330. <div class="section-inner">
  6331. <div class="section-head rise-in">
  6332. <div class="section-eyebrow" style="color:#D4A574;">6.3 · PIANZAIHUANG</div>
  6333. <h2 class="text-h1"><span class="headline-anim">💎 片仔癀 · 奢侈礼品 · 天价 · 不可日常</span></h2>
  6334. <p class="section-sub">名贵中成药 · 天价 + 稀缺 + 药性峻猛 = 错位可及性机会 · 基于 <strong style="color:#D4A574;">6</strong> 条真实评论分析痛点,为江中肝纯片提炼 <strong style="color:#FF4D8D;">3</strong> 个切入点</p>
  6335. </div>
  6336. <!-- 竞品档案 -->
  6337. <div class="fade-up" style="background:linear-gradient(135deg, #D4A57410, #D4A57402); border:2px solid #D4A57444; border-left:5px solid #D4A574; border-radius:var(--radius-md); padding:22px; margin-bottom:22px;">
  6338. <div style="display:grid; grid-template-columns:2fr 1fr; gap:22px;">
  6339. <div>
  6340. <div class="text-mono text-xs" style="color:#D4A574; letter-spacing:0.15em; margin-bottom:8px;">📇 COMPETITOR PROFILE</div>
  6341. <div style="display:grid; grid-template-columns:1fr 1fr; gap:12px;">
  6342. <div style="padding:8px 12px; background:var(--bg-1); border-radius:4px;">
  6343. <div class="text-mono text-xs" style="color:var(--text-3); letter-spacing:0.06em; margin-bottom:2px;">品类定位</div>
  6344. <div style="font-size:0.82rem; color:var(--text-1); font-weight:700;">名贵中成药 · 清热解毒</div>
  6345. </div>
  6346. <div style="padding:8px 12px; background:var(--bg-1); border-radius:4px;">
  6347. <div class="text-mono text-xs" style="color:var(--text-3); letter-spacing:0.06em; margin-bottom:2px;">核心成分</div>
  6348. <div style="font-size:0.78rem; color:var(--text-1);">牛黄 / 麝香 / 三七 / 蛇胆</div>
  6349. </div>
  6350. <div style="padding:8px 12px; background:var(--bg-1); border-radius:4px;">
  6351. <div class="text-mono text-xs" style="color:var(--text-3); letter-spacing:0.06em; margin-bottom:2px;">定价参考</div>
  6352. <div style="font-size:0.82rem; color:#D4A574; font-weight:700;">¥700 / 粒</div>
  6353. </div>
  6354. <div style="padding:8px 12px; background:var(--bg-1); border-radius:4px;">
  6355. <div class="text-mono text-xs" style="color:var(--text-3); letter-spacing:0.06em; margin-bottom:2px;">市场规模</div>
  6356. <div style="font-size:0.82rem; color:#D4A574; font-weight:700;">奢侈品类 · 礼品为主</div>
  6357. </div>
  6358. </div>
  6359. </div>
  6360. <div style="padding:14px; background:var(--bg-1); border-left:3px solid #D4A574; border-radius:4px;">
  6361. <div class="text-mono text-xs" style="color:#D4A574; letter-spacing:0.1em; margin-bottom:4px;">✅ 竞品优势</div>
  6362. <ul style="margin:0 0 10px; padding:0; list-style:none;">
  6363. <li style="padding:2px 0; font-size:0.74rem; color:var(--text-2); line-height:1.45; padding-left:12px; position:relative;"><span style="position:absolute; left:0; color:#D4A574;">▸</span>名贵稀缺 · 礼品稀缺感</li><li style="padding:2px 0; font-size:0.74rem; color:var(--text-2); line-height:1.45; padding-left:12px; position:relative;"><span style="position:absolute; left:0; color:#D4A574;">▸</span>国资背书</li><li style="padding:2px 0; font-size:0.74rem; color:var(--text-2); line-height:1.45; padding-left:12px; position:relative;"><span style="position:absolute; left:0; color:#D4A574;">▸</span>老字号传承</li><li style="padding:2px 0; font-size:0.74rem; color:var(--text-2); line-height:1.45; padding-left:12px; position:relative;"><span style="position:absolute; left:0; color:#D4A574;">▸</span>送礼天花板</li>
  6364. </ul>
  6365. </div>
  6366. </div>
  6367. </div>
  6368. <!-- VOC 痛点主题 + 金句 -->
  6369. <div class="fade-up" style="display:grid; grid-template-columns:1.3fr 1fr; gap:16px; margin-bottom:22px;">
  6370. <div style="background:var(--bg-1); border:1px solid #FF4D8D44; border-top:3px solid #FF4D8D; border-radius:var(--radius-md); padding:18px;">
  6371. <div class="text-mono text-xs" style="color:#FF4D8D; letter-spacing:0.15em; margin-bottom:12px;">💢 PAIN POINTS · 竞品 VOC 痛点主题</div>
  6372. <div style="display:grid; gap:8px;">
  6373. <div style="padding:10px 12px; background:#FF4D8D08; border-left:3px solid #FF4D8D; border-radius:4px;">
  6374. <div style="display:flex; justify-content:space-between; align-items:baseline; margin-bottom:4px;">
  6375. <div style="font-size:0.82rem; font-weight:700; color:var(--text-1);">❌ 天价 / 收不起</div>
  6376. <div style="font-family:var(--font-mono); font-size:0.72rem; color:#FF4D8D; font-weight:700;">0条 · 0%</div>
  6377. </div>
  6378. <div style="font-size:0.72rem; color:var(--text-3); line-height:1.45; font-style:italic;">💬 "&quot;一粒 700 元&quot;"</div>
  6379. </div>
  6380. <div style="padding:10px 12px; background:#FF4D8D08; border-left:3px solid #FF4D8D; border-radius:4px;">
  6381. <div style="display:flex; justify-content:space-between; align-items:baseline; margin-bottom:4px;">
  6382. <div style="font-size:0.82rem; font-weight:700; color:var(--text-1);">❌ 稀缺 / 黄牛</div>
  6383. <div style="font-family:var(--font-mono); font-size:0.72rem; color:#FF4D8D; font-weight:700;">0条 · 0%</div>
  6384. </div>
  6385. <div style="font-size:0.72rem; color:var(--text-3); line-height:1.45; font-style:italic;">💬 "稀缺难买"</div>
  6386. </div>
  6387. <div style="padding:10px 12px; background:#FF4D8D08; border-left:3px solid #FF4D8D; border-radius:4px;">
  6388. <div style="display:flex; justify-content:space-between; align-items:baseline; margin-bottom:4px;">
  6389. <div style="font-size:0.82rem; font-weight:700; color:var(--text-1);">❌ 药性峻猛 · 不日常</div>
  6390. <div style="font-family:var(--font-mono); font-size:0.72rem; color:#FF4D8D; font-weight:700;">0条 · 0%</div>
  6391. </div>
  6392. <div style="font-size:0.72rem; color:var(--text-3); line-height:1.45; font-style:italic;">💬 "不适合日常"</div>
  6393. </div>
  6394. <div style="padding:10px 12px; background:#FF4D8D08; border-left:3px solid #FF4D8D; border-radius:4px;">
  6395. <div style="display:flex; justify-content:space-between; align-items:baseline; margin-bottom:4px;">
  6396. <div style="font-size:0.82rem; font-weight:700; color:var(--text-1);">❌ 礼品属性 · 非自用</div>
  6397. <div style="font-family:var(--font-mono); font-size:0.72rem; color:#FF4D8D; font-weight:700;">0条 · 0%</div>
  6398. </div>
  6399. <div style="font-size:0.72rem; color:var(--text-3); line-height:1.45; font-style:italic;">💬 "只当礼品"</div>
  6400. </div>
  6401. </div>
  6402. </div>
  6403. <div style="background:var(--bg-1); border:1px solid #D4A57444; border-top:3px solid #D4A574; border-radius:var(--radius-md); padding:18px;">
  6404. <div class="text-mono text-xs" style="color:#D4A574; letter-spacing:0.15em; margin-bottom:12px;">💬 VOC TOP 6</div>
  6405. <div style="padding:10px 12px; background:var(--bg-2); border-left:3px solid #D4A574; border-radius:4px; margin-bottom:8px;">
  6406. <div style="display:flex; justify-content:space-between; align-items:center; margin-bottom:4px;">
  6407. <div style="display:flex; align-items:center; gap:6px;">
  6408. <span style="font-size:0.75rem;">🎵</span>
  6409. <span style="font-size:0.72rem; font-weight:700; color:#D4A574;">用户2675357656094</span>
  6410. <span class="text-mono text-xs" style="color:var(--text-3);">📍福建</span>
  6411. </div>
  6412. <div style="display:flex; align-items:center; gap:6px;">
  6413. <span class="text-mono text-xs" style="color:#D4A574;">♡ 408</span>
  6414. </div>
  6415. </div>
  6416. <div style="font-size:0.78rem; color:var(--text-1); line-height:1.5;">护肝片我只信片仔癀[左上][左上][左上][左上]</div>
  6417. </div>
  6418. <div style="padding:10px 12px; background:var(--bg-2); border-left:3px solid #D4A574; border-radius:4px; margin-bottom:8px;">
  6419. <div style="display:flex; justify-content:space-between; align-items:center; margin-bottom:4px;">
  6420. <div style="display:flex; align-items:center; gap:6px;">
  6421. <span style="font-size:0.75rem;">📕</span>
  6422. <span style="font-size:0.72rem; font-weight:700; color:#D4A574;">匿名</span>
  6423. </div>
  6424. <div style="display:flex; align-items:center; gap:6px;">
  6425. <span class="text-mono text-xs" style="color:#D4A574;">♡ 4</span>
  6426. </div>
  6427. </div>
  6428. <div style="font-size:0.78rem; color:var(--text-1); line-height:1.5;">片仔癀确实是好药 那些中医黑根本就没用过</div>
  6429. </div>
  6430. <div style="padding:10px 12px; background:var(--bg-2); border-left:3px solid #D4A574; border-radius:4px; margin-bottom:8px;">
  6431. <div style="display:flex; justify-content:space-between; align-items:center; margin-bottom:4px;">
  6432. <div style="display:flex; align-items:center; gap:6px;">
  6433. <span style="font-size:0.75rem;">📕</span>
  6434. <span style="font-size:0.72rem; font-weight:700; color:#D4A574;">匿名</span>
  6435. </div>
  6436. <div style="display:flex; align-items:center; gap:6px;">
  6437. <span class="text-mono text-xs" style="color:#D4A574;">♡ 1</span>
  6438. </div>
  6439. </div>
  6440. <div style="font-size:0.78rem; color:var(--text-1); line-height:1.5;">片仔癀只适合湿热地区的人吃,不适合北方吃</div>
  6441. </div>
  6442. <div style="padding:10px 12px; background:var(--bg-2); border-left:3px solid #D4A574; border-radius:4px; margin-bottom:8px;">
  6443. <div style="display:flex; justify-content:space-between; align-items:center; margin-bottom:4px;">
  6444. <div style="display:flex; align-items:center; gap:6px;">
  6445. <span style="font-size:0.75rem;">📕</span>
  6446. <span style="font-size:0.72rem; font-weight:700; color:#D4A574;">匿名</span>
  6447. </div>
  6448. <div style="display:flex; align-items:center; gap:6px;">
  6449. <span class="text-mono text-xs" style="color:#D4A574;">♡ 1</span>
  6450. </div>
  6451. </div>
  6452. <div style="font-size:0.78rem; color:var(--text-1); line-height:1.5;">作者卖这个片仔癀吗,比市场价便宜吗</div>
  6453. </div>
  6454. </div>
  6455. </div>
  6456. <!-- 江中肝纯 切入点 -->
  6457. <div class="fade-up" style="background:linear-gradient(135deg, #FF4D8D15, #2D9C5D08); border:2px solid #FF4D8D; border-radius:var(--radius-md); padding:22px;">
  6458. <div class="text-mono text-xs" style="color:#FF4D8D; letter-spacing:0.2em; margin-bottom:14px;">🎯 JIANGZHONG OPPORTUNITY · 江中肝纯片切入点(3 条)</div>
  6459. <div style="display:grid; grid-template-columns:repeat(3, 1fr); gap:14px;">
  6460. <div style="padding:16px; background:#2D9C5D10; border-left:4px solid #2D9C5D; border-radius:6px;">
  6461. <div style="display:flex; align-items:center; gap:8px; margin-bottom:8px;">
  6462. <div style="font-size:1.4rem;">💰</div>
  6463. <div style="font-size:1rem; font-weight:800; color:var(--text-1);">可负担高端</div>
  6464. </div>
  6465. <div style="font-size:0.78rem; color:var(--text-2); line-height:1.55; margin-bottom:8px;">¥298-898 礼盒价位 — 是片仔癀 1/4 - 1/10,同样有面子但可常送</div>
  6466. <div style="padding:6px 10px; background:#2D9C5D15; border-radius:3px;">
  6467. <div class="text-mono text-xs" style="color:#2D9C5D; letter-spacing:0.08em; margin-bottom:3px;">🔊 话术样例</div>
  6468. <div style="font-size:0.74rem; color:var(--text-1); font-style:italic; font-weight:600; line-height:1.4;">"&quot;不用送片仔癀 · 送江中肝纯更日常&quot;"</div>
  6469. </div>
  6470. </div>
  6471. <div style="padding:16px; background:#0085CA10; border-left:4px solid #0085CA; border-radius:6px;">
  6472. <div style="display:flex; align-items:center; gap:8px; margin-bottom:8px;">
  6473. <div style="font-size:1.4rem;">📅</div>
  6474. <div style="font-size:1rem; font-weight:800; color:var(--text-1);">日常长期可服</div>
  6475. </div>
  6476. <div style="font-size:0.78rem; color:var(--text-2); line-height:1.55; margin-bottom:8px;">藤茶药食同源温和,可天天吃 vs 片仔癀只能偶尔吃</div>
  6477. <div style="padding:6px 10px; background:#0085CA15; border-radius:3px;">
  6478. <div class="text-mono text-xs" style="color:#0085CA; letter-spacing:0.08em; margin-bottom:3px;">🔊 话术样例</div>
  6479. <div style="font-size:0.74rem; color:var(--text-1); font-style:italic; font-weight:600; line-height:1.4;">"&quot;天天可吃 · 长期养护&quot;"</div>
  6480. </div>
  6481. </div>
  6482. <div style="padding:16px; background:#8B5CF610; border-left:4px solid #8B5CF6; border-radius:6px;">
  6483. <div style="display:flex; align-items:center; gap:8px; margin-bottom:8px;">
  6484. <div style="font-size:1.4rem;">🌿</div>
  6485. <div style="font-size:1rem; font-weight:800; color:var(--text-1);">差异化草本</div>
  6486. </div>
  6487. <div style="font-size:0.78rem; color:var(--text-2); line-height:1.55; margin-bottom:8px;">DMY 藤茶 vs 牛黄麝香,新中式草本 vs 传统名贵药材</div>
  6488. <div style="padding:6px 10px; background:#8B5CF615; border-radius:3px;">
  6489. <div class="text-mono text-xs" style="color:#8B5CF6; letter-spacing:0.08em; margin-bottom:3px;">🔊 话术样例</div>
  6490. <div style="font-size:0.74rem; color:var(--text-1); font-style:italic; font-weight:600; line-height:1.4;">"&quot;新一代中式草本 · 区别名贵药&quot;"</div>
  6491. </div>
  6492. </div>
  6493. </div>
  6494. </div>
  6495. </div>
  6496. </section>
  6497. <section class="report-section" id="competitor-4" data-tone="rose" data-slide-num="35">
  6498. <div class="section-inner">
  6499. <div class="section-head rise-in">
  6500. <div class="section-eyebrow" style="color:#8B5CF6;">6.4 · XIONGDANFEN</div>
  6501. <h2 class="text-h1"><span class="headline-anim">🐻 熊胆粉 · 名贵药材 · 伦理争议 · 不可大众</span></h2>
  6502. <p class="section-sub">名贵药材 · 寒凉/伦理争议/天价 = 植物草本替代品位 · 基于 <strong style="color:#8B5CF6;">0</strong> 条真实评论分析痛点,为江中肝纯片提炼 <strong style="color:#FF4D8D;">3</strong> 个切入点</p>
  6503. </div>
  6504. <!-- 竞品档案 -->
  6505. <div class="fade-up" style="background:linear-gradient(135deg, #8B5CF610, #8B5CF602); border:2px solid #8B5CF644; border-left:5px solid #8B5CF6; border-radius:var(--radius-md); padding:22px; margin-bottom:22px;">
  6506. <div style="display:grid; grid-template-columns:2fr 1fr; gap:22px;">
  6507. <div>
  6508. <div class="text-mono text-xs" style="color:#8B5CF6; letter-spacing:0.15em; margin-bottom:8px;">📇 COMPETITOR PROFILE</div>
  6509. <div style="display:grid; grid-template-columns:1fr 1fr; gap:12px;">
  6510. <div style="padding:8px 12px; background:var(--bg-1); border-radius:4px;">
  6511. <div class="text-mono text-xs" style="color:var(--text-3); letter-spacing:0.06em; margin-bottom:2px;">品类定位</div>
  6512. <div style="font-size:0.82rem; color:var(--text-1); font-weight:700;">名贵动物药材</div>
  6513. </div>
  6514. <div style="padding:8px 12px; background:var(--bg-1); border-radius:4px;">
  6515. <div class="text-mono text-xs" style="color:var(--text-3); letter-spacing:0.06em; margin-bottom:2px;">核心成分</div>
  6516. <div style="font-size:0.78rem; color:var(--text-1);">牛磺熊去氧胆酸</div>
  6517. </div>
  6518. <div style="padding:8px 12px; background:var(--bg-1); border-radius:4px;">
  6519. <div class="text-mono text-xs" style="color:var(--text-3); letter-spacing:0.06em; margin-bottom:2px;">定价参考</div>
  6520. <div style="font-size:0.82rem; color:#8B5CF6; font-weight:700;">¥几千-上万 / 克</div>
  6521. </div>
  6522. <div style="padding:8px 12px; background:var(--bg-1); border-radius:4px;">
  6523. <div class="text-mono text-xs" style="color:var(--text-3); letter-spacing:0.06em; margin-bottom:2px;">市场规模</div>
  6524. <div style="font-size:0.82rem; color:#8B5CF6; font-weight:700;">小众高端 · 中老年为主</div>
  6525. </div>
  6526. </div>
  6527. </div>
  6528. <div style="padding:14px; background:var(--bg-1); border-left:3px solid #8B5CF6; border-radius:4px;">
  6529. <div class="text-mono text-xs" style="color:#8B5CF6; letter-spacing:0.1em; margin-bottom:4px;">✅ 竞品优势</div>
  6530. <ul style="margin:0 0 10px; padding:0; list-style:none;">
  6531. <li style="padding:2px 0; font-size:0.74rem; color:var(--text-2); line-height:1.45; padding-left:12px; position:relative;"><span style="position:absolute; left:0; color:#8B5CF6;">▸</span>清热解毒传统认知</li><li style="padding:2px 0; font-size:0.74rem; color:var(--text-2); line-height:1.45; padding-left:12px; position:relative;"><span style="position:absolute; left:0; color:#8B5CF6;">▸</span>中老年礼品属性</li><li style="padding:2px 0; font-size:0.74rem; color:var(--text-2); line-height:1.45; padding-left:12px; position:relative;"><span style="position:absolute; left:0; color:#8B5CF6;">▸</span>稀缺感</li><li style="padding:2px 0; font-size:0.74rem; color:var(--text-2); line-height:1.45; padding-left:12px; position:relative;"><span style="position:absolute; left:0; color:#8B5CF6;">▸</span>极小众忠实客户</li>
  6532. </ul>
  6533. </div>
  6534. </div>
  6535. </div>
  6536. <!-- VOC 痛点主题 + 金句 -->
  6537. <div class="fade-up" style="display:grid; grid-template-columns:1.3fr 1fr; gap:16px; margin-bottom:22px;">
  6538. <div style="background:var(--bg-1); border:1px solid #FF4D8D44; border-top:3px solid #FF4D8D; border-radius:var(--radius-md); padding:18px;">
  6539. <div class="text-mono text-xs" style="color:#FF4D8D; letter-spacing:0.15em; margin-bottom:12px;">💢 PAIN POINTS · 竞品 VOC 痛点主题</div>
  6540. <div style="display:grid; gap:8px;">
  6541. <div style="padding:10px 12px; background:#FF4D8D08; border-left:3px solid #FF4D8D; border-radius:4px;">
  6542. <div style="display:flex; justify-content:space-between; align-items:baseline; margin-bottom:4px;">
  6543. <div style="font-size:0.82rem; font-weight:700; color:var(--text-1);">❌ 寒凉 / 伤脾胃</div>
  6544. <div style="font-family:var(--font-mono); font-size:0.72rem; color:#FF4D8D; font-weight:700;">0条 · 0%</div>
  6545. </div>
  6546. <div style="font-size:0.72rem; color:var(--text-3); line-height:1.45; font-style:italic;">💬 "大寒伤脾"</div>
  6547. </div>
  6548. <div style="padding:10px 12px; background:#FF4D8D08; border-left:3px solid #FF4D8D; border-radius:4px;">
  6549. <div style="display:flex; justify-content:space-between; align-items:baseline; margin-bottom:4px;">
  6550. <div style="font-size:0.82rem; font-weight:700; color:var(--text-1);">❌ 智商税 / 效果存疑</div>
  6551. <div style="font-family:var(--font-mono); font-size:0.72rem; color:#FF4D8D; font-weight:700;">0条 · 0%</div>
  6552. </div>
  6553. <div style="font-size:0.72rem; color:var(--text-3); line-height:1.45; font-style:italic;">💬 "效果存疑"</div>
  6554. </div>
  6555. <div style="padding:10px 12px; background:#FF4D8D08; border-left:3px solid #FF4D8D; border-radius:4px;">
  6556. <div style="display:flex; justify-content:space-between; align-items:baseline; margin-bottom:4px;">
  6557. <div style="font-size:0.82rem; font-weight:700; color:var(--text-1);">❌ 伦理 / 取胆</div>
  6558. <div style="font-family:var(--font-mono); font-size:0.72rem; color:#FF4D8D; font-weight:700;">0条 · 0%</div>
  6559. </div>
  6560. <div style="font-size:0.72rem; color:var(--text-3); line-height:1.45; font-style:italic;">💬 "取胆伦理争议"</div>
  6561. </div>
  6562. <div style="padding:10px 12px; background:#FF4D8D08; border-left:3px solid #FF4D8D; border-radius:4px;">
  6563. <div style="display:flex; justify-content:space-between; align-items:baseline; margin-bottom:4px;">
  6564. <div style="font-size:0.82rem; font-weight:700; color:var(--text-1);">❌ 价格昂贵</div>
  6565. <div style="font-family:var(--font-mono); font-size:0.72rem; color:#FF4D8D; font-weight:700;">0条 · 0%</div>
  6566. </div>
  6567. <div style="font-size:0.72rem; color:var(--text-3); line-height:1.45; font-style:italic;">💬 "价格昂贵"</div>
  6568. </div>
  6569. </div>
  6570. </div>
  6571. <div style="background:var(--bg-1); border:1px solid #8B5CF644; border-top:3px solid #8B5CF6; border-radius:var(--radius-md); padding:18px;">
  6572. <div class="text-mono text-xs" style="color:#8B5CF6; letter-spacing:0.15em; margin-bottom:12px;">💬 VOC TOP 0</div>
  6573. </div>
  6574. </div>
  6575. <!-- 江中肝纯 切入点 -->
  6576. <div class="fade-up" style="background:linear-gradient(135deg, #FF4D8D15, #2D9C5D08); border:2px solid #FF4D8D; border-radius:var(--radius-md); padding:22px;">
  6577. <div class="text-mono text-xs" style="color:#FF4D8D; letter-spacing:0.2em; margin-bottom:14px;">🎯 JIANGZHONG OPPORTUNITY · 江中肝纯片切入点(3 条)</div>
  6578. <div style="display:grid; grid-template-columns:repeat(3, 1fr); gap:14px;">
  6579. <div style="padding:16px; background:#2D9C5D10; border-left:4px solid #2D9C5D; border-radius:6px;">
  6580. <div style="display:flex; align-items:center; gap:8px; margin-bottom:8px;">
  6581. <div style="font-size:1.4rem;">🌱</div>
  6582. <div style="font-size:1rem; font-weight:800; color:var(--text-1);">植物草本替代</div>
  6583. </div>
  6584. <div style="font-size:0.78rem; color:var(--text-2); line-height:1.55; margin-bottom:8px;">藤茶 DMY 植物来源,无伦理争议,符合现代消费价值观</div>
  6585. <div style="padding:6px 10px; background:#2D9C5D15; border-radius:3px;">
  6586. <div class="text-mono text-xs" style="color:#2D9C5D; letter-spacing:0.08em; margin-bottom:3px;">🔊 话术样例</div>
  6587. <div style="font-size:0.74rem; color:var(--text-1); font-style:italic; font-weight:600; line-height:1.4;">"&quot;不吃动物药 · 中国藤茶植物护肝&quot;"</div>
  6588. </div>
  6589. </div>
  6590. <div style="padding:16px; background:#FF8C4210; border-left:4px solid #FF8C42; border-radius:6px;">
  6591. <div style="display:flex; align-items:center; gap:8px; margin-bottom:8px;">
  6592. <div style="font-size:1.4rem;">🔥</div>
  6593. <div style="font-size:1rem; font-weight:800; color:var(--text-1);">温和不寒凉</div>
  6594. </div>
  6595. <div style="font-size:0.78rem; color:var(--text-2); line-height:1.55; margin-bottom:8px;">药食同源温和,vs 熊胆粉大寒伤脾,适合所有人群</div>
  6596. <div style="padding:6px 10px; background:#FF8C4215; border-radius:3px;">
  6597. <div class="text-mono text-xs" style="color:#FF8C42; letter-spacing:0.08em; margin-bottom:3px;">🔊 话术样例</div>
  6598. <div style="font-size:0.74rem; color:var(--text-1); font-style:italic; font-weight:600; line-height:1.4;">"&quot;温和不寒凉 · 老少皆宜&quot;"</div>
  6599. </div>
  6600. </div>
  6601. <div style="padding:16px; background:#0085CA10; border-left:4px solid #0085CA; border-radius:6px;">
  6602. <div style="display:flex; align-items:center; gap:8px; margin-bottom:8px;">
  6603. <div style="font-size:1.4rem;">💰</div>
  6604. <div style="font-size:1rem; font-weight:800; color:var(--text-1);">可及价格</div>
  6605. </div>
  6606. <div style="font-size:0.78rem; color:var(--text-2); line-height:1.55; margin-bottom:8px;">¥89-898 价位覆盖全人群,非奢侈消费</div>
  6607. <div style="padding:6px 10px; background:#0085CA15; border-radius:3px;">
  6608. <div class="text-mono text-xs" style="color:#0085CA; letter-spacing:0.08em; margin-bottom:3px;">🔊 话术样例</div>
  6609. <div style="font-size:0.74rem; color:var(--text-1); font-style:italic; font-weight:600; line-height:1.4;">"&quot;平价可及 · 不用买动物药材&quot;"</div>
  6610. </div>
  6611. </div>
  6612. </div>
  6613. </div>
  6614. </div>
  6615. </section>
  6616. <section class="report-section" id="competitor-5" data-tone="rose" data-slide-num="36">
  6617. <div class="section-inner">
  6618. <div class="section-head rise-in">
  6619. <div class="section-eyebrow" style="color:#FF4D8D;">6.5 · SWISSE / SILYMARIN</div>
  6620. <h2 class="text-h1"><span class="headline-anim">🌸 Swisse / 水飞蓟 · Silymarin 国际对标 · 体感弱 · DMY 替代</span></h2>
  6621. <p class="section-sub">保健品护肝国际头牌 · 弱体感 / 吸收率低 = DMY 差异化最大机会 · 基于 <strong style="color:#FF4D8D;">46</strong> 条真实评论分析痛点,为江中肝纯片提炼 <strong style="color:#FF4D8D;">3</strong> 个切入点</p>
  6622. </div>
  6623. <!-- 竞品档案 -->
  6624. <div class="fade-up" style="background:linear-gradient(135deg, #FF4D8D10, #FF4D8D02); border:2px solid #FF4D8D44; border-left:5px solid #FF4D8D; border-radius:var(--radius-md); padding:22px; margin-bottom:22px;">
  6625. <div style="display:grid; grid-template-columns:2fr 1fr; gap:22px;">
  6626. <div>
  6627. <div class="text-mono text-xs" style="color:#FF4D8D; letter-spacing:0.15em; margin-bottom:8px;">📇 COMPETITOR PROFILE</div>
  6628. <div style="display:grid; grid-template-columns:1fr 1fr; gap:12px;">
  6629. <div style="padding:8px 12px; background:var(--bg-1); border-radius:4px;">
  6630. <div class="text-mono text-xs" style="color:var(--text-3); letter-spacing:0.06em; margin-bottom:2px;">品类定位</div>
  6631. <div style="font-size:0.82rem; color:var(--text-1); font-weight:700;">国际保健品 / 水飞蓟宾 Silymarin</div>
  6632. </div>
  6633. <div style="padding:8px 12px; background:var(--bg-1); border-radius:4px;">
  6634. <div class="text-mono text-xs" style="color:var(--text-3); letter-spacing:0.06em; margin-bottom:2px;">核心成分</div>
  6635. <div style="font-size:0.78rem; color:var(--text-1);">水飞蓟宾(黄酮木脂素)</div>
  6636. </div>
  6637. <div style="padding:8px 12px; background:var(--bg-1); border-radius:4px;">
  6638. <div class="text-mono text-xs" style="color:var(--text-3); letter-spacing:0.06em; margin-bottom:2px;">定价参考</div>
  6639. <div style="font-size:0.82rem; color:#FF4D8D; font-weight:700;">¥158 / 60 粒</div>
  6640. </div>
  6641. <div style="padding:8px 12px; background:var(--bg-1); border-radius:4px;">
  6642. <div class="text-mono text-xs" style="color:var(--text-3); letter-spacing:0.06em; margin-bottom:2px;">市场规模</div>
  6643. <div style="font-size:0.82rem; color:#FF4D8D; font-weight:700;">年销 5 亿+ · 中国头部</div>
  6644. </div>
  6645. </div>
  6646. </div>
  6647. <div style="padding:14px; background:var(--bg-1); border-left:3px solid #FF4D8D; border-radius:4px;">
  6648. <div class="text-mono text-xs" style="color:#FF4D8D; letter-spacing:0.1em; margin-bottom:4px;">✅ 竞品优势</div>
  6649. <ul style="margin:0 0 10px; padding:0; list-style:none;">
  6650. <li style="padding:2px 0; font-size:0.74rem; color:var(--text-2); line-height:1.45; padding-left:12px; position:relative;"><span style="position:absolute; left:0; color:#FF4D8D;">▸</span>国际品牌背书</li><li style="padding:2px 0; font-size:0.74rem; color:var(--text-2); line-height:1.45; padding-left:12px; position:relative;"><span style="position:absolute; left:0; color:#FF4D8D;">▸</span>女性心智</li><li style="padding:2px 0; font-size:0.74rem; color:var(--text-2); line-height:1.45; padding-left:12px; position:relative;"><span style="position:absolute; left:0; color:#FF4D8D;">▸</span>电商铺货广</li><li style="padding:2px 0; font-size:0.74rem; color:var(--text-2); line-height:1.45; padding-left:12px; position:relative;"><span style="position:absolute; left:0; color:#FF4D8D;">▸</span>年轻化包装</li>
  6651. </ul>
  6652. </div>
  6653. </div>
  6654. </div>
  6655. <!-- VOC 痛点主题 + 金句 -->
  6656. <div class="fade-up" style="display:grid; grid-template-columns:1.3fr 1fr; gap:16px; margin-bottom:22px;">
  6657. <div style="background:var(--bg-1); border:1px solid #FF4D8D44; border-top:3px solid #FF4D8D; border-radius:var(--radius-md); padding:18px;">
  6658. <div class="text-mono text-xs" style="color:#FF4D8D; letter-spacing:0.15em; margin-bottom:12px;">💢 PAIN POINTS · 竞品 VOC 痛点主题</div>
  6659. <div style="display:grid; gap:8px;">
  6660. <div style="padding:10px 12px; background:#FF4D8D08; border-left:3px solid #FF4D8D; border-radius:4px;">
  6661. <div style="display:flex; justify-content:space-between; align-items:baseline; margin-bottom:4px;">
  6662. <div style="font-size:0.82rem; font-weight:700; color:var(--text-1);">❌ 吸收率低 / 脂溶差</div>
  6663. <div style="font-family:var(--font-mono); font-size:0.72rem; color:#FF4D8D; font-weight:700;">0条 · 0%</div>
  6664. </div>
  6665. <div style="font-size:0.72rem; color:var(--text-3); line-height:1.45; font-style:italic;">💬 "吸收差"</div>
  6666. </div>
  6667. <div style="padding:10px 12px; background:#FF4D8D08; border-left:3px solid #FF4D8D; border-radius:4px;">
  6668. <div style="display:flex; justify-content:space-between; align-items:baseline; margin-bottom:4px;">
  6669. <div style="font-size:0.82rem; font-weight:700; color:var(--text-1);">❌ 没体感 / 效果弱</div>
  6670. <div style="font-family:var(--font-mono); font-size:0.72rem; color:#FF4D8D; font-weight:700;">1条 · 2%</div>
  6671. </div>
  6672. <div style="font-size:0.72rem; color:var(--text-3); line-height:1.45; font-style:italic;">💬 "不喝酒不用吃 我天天喝酒 一开始吃感觉没效果 后面时间长了 发现第一天晚上不管喝的再多 第二天不会有那种起不来晕晕难受的感觉 但你不喝酒 其实完全没必要"</div>
  6673. </div>
  6674. <div style="padding:10px 12px; background:#FF4D8D08; border-left:3px solid #FF4D8D; border-radius:4px;">
  6675. <div style="display:flex; justify-content:space-between; align-items:baseline; margin-bottom:4px;">
  6676. <div style="font-size:0.82rem; font-weight:700; color:var(--text-1);">❌ 胃肠反应</div>
  6677. <div style="font-family:var(--font-mono); font-size:0.72rem; color:#FF4D8D; font-weight:700;">3条 · 7%</div>
  6678. </div>
  6679. <div style="font-size:0.72rem; color:var(--text-3); line-height:1.45; font-style:italic;">💬 "晚上吃胃不舒服,停了[笑哭R]"</div>
  6680. </div>
  6681. <div style="padding:10px 12px; background:#FF4D8D08; border-left:3px solid #FF4D8D; border-radius:4px;">
  6682. <div style="display:flex; justify-content:space-between; align-items:baseline; margin-bottom:4px;">
  6683. <div style="font-size:0.82rem; font-weight:700; color:var(--text-1);">❌ 贵 / 代购 / 假货</div>
  6684. <div style="font-family:var(--font-mono); font-size:0.72rem; color:#FF4D8D; font-weight:700;">1条 · 2%</div>
  6685. </div>
  6686. <div style="font-size:0.72rem; color:var(--text-3); line-height:1.45; font-style:italic;">💬 "要坚持吃一段时间吧,我吃了一个月感觉精神会好很多,不过官网太贵了,我都是找代购买的[笑哭R]"</div>
  6687. </div>
  6688. </div>
  6689. </div>
  6690. <div style="background:var(--bg-1); border:1px solid #FF4D8D44; border-top:3px solid #FF4D8D; border-radius:var(--radius-md); padding:18px;">
  6691. <div class="text-mono text-xs" style="color:#FF4D8D; letter-spacing:0.15em; margin-bottom:12px;">💬 VOC TOP 46</div>
  6692. <div style="padding:10px 12px; background:var(--bg-2); border-left:3px solid #FF4D8D; border-radius:4px; margin-bottom:8px;">
  6693. <div style="display:flex; justify-content:space-between; align-items:center; margin-bottom:4px;">
  6694. <div style="display:flex; align-items:center; gap:6px;">
  6695. <span style="font-size:0.75rem;">📕</span>
  6696. <span style="font-size:0.72rem; font-weight:700; color:#FF4D8D;">🐒🐒子</span>
  6697. </div>
  6698. <div style="display:flex; align-items:center; gap:6px;">
  6699. <span class="text-mono text-xs" style="color:#FF4D8D;">♡ 43</span>
  6700. </div>
  6701. </div>
  6702. <div style="font-size:0.78rem; color:var(--text-1); line-height:1.5;">不会真有人相信有可以一种神奇的药让你可以随意熬夜、喝酒吧[doge][doge]</div>
  6703. </div>
  6704. <div style="padding:10px 12px; background:var(--bg-2); border-left:3px solid #FF4D8D; border-radius:4px; margin-bottom:8px;">
  6705. <div style="display:flex; justify-content:space-between; align-items:center; margin-bottom:4px;">
  6706. <div style="display:flex; align-items:center; gap:6px;">
  6707. <span style="font-size:0.75rem;">📕</span>
  6708. <span style="font-size:0.72rem; font-weight:700; color:#FF4D8D;">今天你吃饭了嘛.</span>
  6709. </div>
  6710. <div style="display:flex; align-items:center; gap:6px;">
  6711. <span class="text-mono text-xs" style="color:#FF4D8D;">♡ 37</span>
  6712. </div>
  6713. </div>
  6714. <div style="font-size:0.78rem; color:var(--text-1); line-height:1.5;">吃了转氨酶从正常到异常了 现在200多[捂脸R]现在打算停一段时间去检查一下肝功能[石化R]</div>
  6715. </div>
  6716. <div style="padding:10px 12px; background:var(--bg-2); border-left:3px solid #FF4D8D; border-radius:4px; margin-bottom:8px;">
  6717. <div style="display:flex; justify-content:space-between; align-items:center; margin-bottom:4px;">
  6718. <div style="display:flex; align-items:center; gap:6px;">
  6719. <span style="font-size:0.75rem;">📕</span>
  6720. <span style="font-size:0.72rem; font-weight:700; color:#FF4D8D;">小红薯66661CF9</span>
  6721. </div>
  6722. <div style="display:flex; align-items:center; gap:6px;">
  6723. <span class="text-mono text-xs" style="color:#FF4D8D;">♡ 28</span>
  6724. </div>
  6725. </div>
  6726. <div style="font-size:0.78rem; color:var(--text-1); line-height:1.5;">这个普通装的就是个心理安慰剂,因为对护肝产生效果的水飞蓟素或者水飞蓟宾含量都没标注,正常人每天摄入量要400mg左右才会有作用,他这个只写了从2500mg奶蓟草中提取,换算下来就几十mg的水飞蓟素,加强版还好一点。</div>
  6727. </div>
  6728. <div style="padding:10px 12px; background:var(--bg-2); border-left:3px solid #FF4D8D; border-radius:4px; margin-bottom:8px;">
  6729. <div style="display:flex; justify-content:space-between; align-items:center; margin-bottom:4px;">
  6730. <div style="display:flex; align-items:center; gap:6px;">
  6731. <span style="font-size:0.75rem;">📕</span>
  6732. <span style="font-size:0.72rem; font-weight:700; color:#FF4D8D;">咚次哒次</span>
  6733. </div>
  6734. <div style="display:flex; align-items:center; gap:6px;">
  6735. <span class="text-mono text-xs" style="color:#FF4D8D;">♡ 23</span>
  6736. </div>
  6737. </div>
  6738. <div style="font-size:0.78rem; color:var(--text-1); line-height:1.5;">吃了容易晚上睡不着,早上醒得早[汗颜R]有同感的没</div>
  6739. </div>
  6740. </div>
  6741. </div>
  6742. <!-- 江中肝纯 切入点 -->
  6743. <div class="fade-up" style="background:linear-gradient(135deg, #FF4D8D15, #2D9C5D08); border:2px solid #FF4D8D; border-radius:var(--radius-md); padding:22px;">
  6744. <div class="text-mono text-xs" style="color:#FF4D8D; letter-spacing:0.2em; margin-bottom:14px;">🎯 JIANGZHONG OPPORTUNITY · 江中肝纯片切入点(3 条)</div>
  6745. <div style="display:grid; grid-template-columns:repeat(3, 1fr); gap:14px;">
  6746. <div style="padding:16px; background:#0085CA10; border-left:4px solid #0085CA; border-radius:6px;">
  6747. <div style="display:flex; align-items:center; gap:8px; margin-bottom:8px;">
  6748. <div style="font-size:1.4rem;">💧</div>
  6749. <div style="font-size:1rem; font-weight:800; color:var(--text-1);">水溶吸收快</div>
  6750. </div>
  6751. <div style="font-size:0.78rem; color:var(--text-2); line-height:1.55; margin-bottom:8px;">DMY 水溶性好,口服吸收快,15-30min 血药浓度达峰 vs 水飞蓟吸收率 &lt;10%</div>
  6752. <div style="padding:6px 10px; background:#0085CA15; border-radius:3px;">
  6753. <div class="text-mono text-xs" style="color:#0085CA; letter-spacing:0.08em; margin-bottom:3px;">🔊 话术样例</div>
  6754. <div style="font-size:0.74rem; color:var(--text-1); font-style:italic; font-weight:600; line-height:1.4;">"&quot;水溶吸收 · 15 分钟起效 · 不像水飞蓟&quot;"</div>
  6755. </div>
  6756. </div>
  6757. <div style="padding:16px; background:#FF8C4210; border-left:4px solid #FF8C42; border-radius:6px;">
  6758. <div style="display:flex; align-items:center; gap:8px; margin-bottom:8px;">
  6759. <div style="font-size:1.4rem;">🍷</div>
  6760. <div style="font-size:1rem; font-weight:800; color:var(--text-1);">真体感解酒</div>
  6761. </div>
  6762. <div style="font-size:0.78rem; color:var(--text-2); line-height:1.55; margin-bottom:8px;">DMY 加速乙醛代谢,酒后不头疼 · 水飞蓟只有膜保护无解酒</div>
  6763. <div style="padding:6px 10px; background:#FF8C4215; border-radius:3px;">
  6764. <div class="text-mono text-xs" style="color:#FF8C42; letter-spacing:0.08em; margin-bottom:3px;">🔊 话术样例</div>
  6765. <div style="font-size:0.74rem; color:var(--text-1); font-style:italic; font-weight:600; line-height:1.4;">"&quot;不是补膜 · 是真解酒 · 酒后不宿醉&quot;"</div>
  6766. </div>
  6767. </div>
  6768. <div style="padding:16px; background:#2D9C5D10; border-left:4px solid #2D9C5D; border-radius:6px;">
  6769. <div style="display:flex; align-items:center; gap:8px; margin-bottom:8px;">
  6770. <div style="font-size:1.4rem;">🇨🇳</div>
  6771. <div style="font-size:1rem; font-weight:800; color:var(--text-1);">国产 + 可溯</div>
  6772. </div>
  6773. <div style="font-size:0.78rem; color:var(--text-2); line-height:1.55; margin-bottom:8px;">江中品牌 + 一物一码可溯 · 避开 Swisse 代购/假货痛点</div>
  6774. <div style="padding:6px 10px; background:#2D9C5D15; border-radius:3px;">
  6775. <div class="text-mono text-xs" style="color:#2D9C5D; letter-spacing:0.08em; margin-bottom:3px;">🔊 话术样例</div>
  6776. <div style="font-size:0.74rem; color:var(--text-1); font-style:italic; font-weight:600; line-height:1.4;">"&quot;国产藤茶 · 不用代购 · 江中背书&quot;"</div>
  6777. </div>
  6778. </div>
  6779. </div>
  6780. </div>
  6781. </div>
  6782. </section>
  6783. <section class="report-section" id="competitor-6" data-tone="rose" data-slide-num="37">
  6784. <div class="section-inner">
  6785. <div class="section-head rise-in">
  6786. <div class="section-eyebrow" style="color:#FF8C42;">6.6 · HAIWANG SOLUTION</div>
  6787. <h2 class="text-h1"><span class="headline-anim">🍾 海王金樽 · 解酒大败局 · 成分假 / 无社交 / 广告轰炸</span></h2>
  6788. <p class="section-sub">解酒品类代表性失败案例 · 为江中肝纯餐饮渠道提供完整失败复盘 · 基于 <strong style="color:#FF8C42;">67</strong> 条真实评论分析痛点,为江中肝纯片提炼 <strong style="color:#FF4D8D;">3</strong> 个切入点</p>
  6789. </div>
  6790. <!-- 竞品档案 -->
  6791. <div class="fade-up" style="background:linear-gradient(135deg, #FF8C4210, #FF8C4202); border:2px solid #FF8C4244; border-left:5px solid #FF8C42; border-radius:var(--radius-md); padding:22px; margin-bottom:22px;">
  6792. <div style="display:grid; grid-template-columns:2fr 1fr; gap:22px;">
  6793. <div>
  6794. <div class="text-mono text-xs" style="color:#FF8C42; letter-spacing:0.15em; margin-bottom:8px;">📇 COMPETITOR PROFILE</div>
  6795. <div style="display:grid; grid-template-columns:1fr 1fr; gap:12px;">
  6796. <div style="padding:8px 12px; background:var(--bg-1); border-radius:4px;">
  6797. <div class="text-mono text-xs" style="color:var(--text-3); letter-spacing:0.06em; margin-bottom:2px;">品类定位</div>
  6798. <div style="font-size:0.82rem; color:var(--text-1); font-weight:700;">解酒保健品</div>
  6799. </div>
  6800. <div style="padding:8px 12px; background:var(--bg-1); border-radius:4px;">
  6801. <div class="text-mono text-xs" style="color:var(--text-3); letter-spacing:0.06em; margin-bottom:2px;">核心成分</div>
  6802. <div style="font-size:0.78rem; color:var(--text-1);">牛磺酸 / 牡蛎提取物</div>
  6803. </div>
  6804. <div style="padding:8px 12px; background:var(--bg-1); border-radius:4px;">
  6805. <div class="text-mono text-xs" style="color:var(--text-3); letter-spacing:0.06em; margin-bottom:2px;">定价参考</div>
  6806. <div style="font-size:0.82rem; color:#FF8C42; font-weight:700;">¥68 / 盒</div>
  6807. </div>
  6808. <div style="padding:8px 12px; background:var(--bg-1); border-radius:4px;">
  6809. <div class="text-mono text-xs" style="color:var(--text-3); letter-spacing:0.06em; margin-bottom:2px;">市场规模</div>
  6810. <div style="font-size:0.82rem; color:#FF8C42; font-weight:700;">解酒 TOP · 但增长停滞</div>
  6811. </div>
  6812. </div>
  6813. </div>
  6814. <div style="padding:14px; background:var(--bg-1); border-left:3px solid #FF8C42; border-radius:4px;">
  6815. <div class="text-mono text-xs" style="color:#FF8C42; letter-spacing:0.1em; margin-bottom:4px;">✅ 竞品优势</div>
  6816. <ul style="margin:0 0 10px; padding:0; list-style:none;">
  6817. <li style="padding:2px 0; font-size:0.74rem; color:var(--text-2); line-height:1.45; padding-left:12px; position:relative;"><span style="position:absolute; left:0; color:#FF8C42;">▸</span>央视广告轰炸心智</li><li style="padding:2px 0; font-size:0.74rem; color:var(--text-2); line-height:1.45; padding-left:12px; position:relative;"><span style="position:absolute; left:0; color:#FF8C42;">▸</span>渠道铺货广</li><li style="padding:2px 0; font-size:0.74rem; color:var(--text-2); line-height:1.45; padding-left:12px; position:relative;"><span style="position:absolute; left:0; color:#FF8C42;">▸</span>解酒品类先行者</li><li style="padding:2px 0; font-size:0.74rem; color:var(--text-2); line-height:1.45; padding-left:12px; position:relative;"><span style="position:absolute; left:0; color:#FF8C42;">▸</span>长期营销投入</li>
  6818. </ul>
  6819. </div>
  6820. </div>
  6821. </div>
  6822. <!-- VOC 痛点主题 + 金句 -->
  6823. <div class="fade-up" style="display:grid; grid-template-columns:1.3fr 1fr; gap:16px; margin-bottom:22px;">
  6824. <div style="background:var(--bg-1); border:1px solid #FF4D8D44; border-top:3px solid #FF4D8D; border-radius:var(--radius-md); padding:18px;">
  6825. <div class="text-mono text-xs" style="color:#FF4D8D; letter-spacing:0.15em; margin-bottom:12px;">💢 PAIN POINTS · 竞品 VOC 痛点主题</div>
  6826. <div style="display:grid; gap:8px;">
  6827. <div style="padding:10px 12px; background:#FF4D8D08; border-left:3px solid #FF4D8D; border-radius:4px;">
  6828. <div style="display:flex; justify-content:space-between; align-items:baseline; margin-bottom:4px;">
  6829. <div style="font-size:0.82rem; font-weight:700; color:var(--text-1);">❌ &quot;老哒广告&quot; · 广告为主</div>
  6830. <div style="font-family:var(--font-mono); font-size:0.72rem; color:#FF4D8D; font-weight:700;">2条 · 3%</div>
  6831. </div>
  6832. <div style="font-size:0.72rem; color:var(--text-3); line-height:1.45; font-style:italic;">💬 "老哒广告做的杠杠的[捂脸][捂脸][捂脸]"</div>
  6833. </div>
  6834. <div style="padding:10px 12px; background:#FF4D8D08; border-left:3px solid #FF4D8D; border-radius:4px;">
  6835. <div style="display:flex; justify-content:space-between; align-items:baseline; margin-bottom:4px;">
  6836. <div style="font-size:0.82rem; font-weight:700; color:var(--text-1);">❌ 无真解酒靶点</div>
  6837. <div style="font-family:var(--font-mono); font-size:0.72rem; color:#FF4D8D; font-weight:700;">0条 · 0%</div>
  6838. </div>
  6839. <div style="font-size:0.72rem; color:var(--text-3); line-height:1.45; font-style:italic;">💬 "成分无解酒机制"</div>
  6840. </div>
  6841. <div style="padding:10px 12px; background:#FF4D8D08; border-left:3px solid #FF4D8D; border-radius:4px;">
  6842. <div style="display:flex; justify-content:space-between; align-items:baseline; margin-bottom:4px;">
  6843. <div style="font-size:0.82rem; font-weight:700; color:var(--text-1);">❌ 像药品 · 无社交</div>
  6844. <div style="font-family:var(--font-mono); font-size:0.72rem; color:#FF4D8D; font-weight:700;">0条 · 0%</div>
  6845. </div>
  6846. <div style="font-size:0.72rem; color:var(--text-3); line-height:1.45; font-style:italic;">💬 "像治病 · 不能社交"</div>
  6847. </div>
  6848. <div style="padding:10px 12px; background:#FF4D8D08; border-left:3px solid #FF4D8D; border-radius:4px;">
  6849. <div style="display:flex; justify-content:space-between; align-items:baseline; margin-bottom:4px;">
  6850. <div style="font-size:0.82rem; font-weight:700; color:var(--text-1);">❌ 贵 · 性价比低</div>
  6851. <div style="font-family:var(--font-mono); font-size:0.72rem; color:#FF4D8D; font-weight:700;">0条 · 0%</div>
  6852. </div>
  6853. <div style="font-size:0.72rem; color:var(--text-3); line-height:1.45; font-style:italic;">💬 "价格贵体感弱"</div>
  6854. </div>
  6855. </div>
  6856. </div>
  6857. <div style="background:var(--bg-1); border:1px solid #FF8C4244; border-top:3px solid #FF8C42; border-radius:var(--radius-md); padding:18px;">
  6858. <div class="text-mono text-xs" style="color:#FF8C42; letter-spacing:0.15em; margin-bottom:12px;">💬 VOC TOP 67</div>
  6859. <div style="padding:10px 12px; background:var(--bg-2); border-left:3px solid #FF8C42; border-radius:4px; margin-bottom:8px;">
  6860. <div style="display:flex; justify-content:space-between; align-items:center; margin-bottom:4px;">
  6861. <div style="display:flex; align-items:center; gap:6px;">
  6862. <span style="font-size:0.75rem;">📕</span>
  6863. <span style="font-size:0.72rem; font-weight:700; color:#FF8C42;">匿名</span>
  6864. </div>
  6865. <div style="display:flex; align-items:center; gap:6px;">
  6866. <span class="text-mono text-xs" style="color:#FF8C42;">♡ 366</span>
  6867. </div>
  6868. </div>
  6869. <div style="font-size:0.78rem; color:var(--text-1); line-height:1.5;">电解质水➕水溶c100 都要冰的 一起喝下去 5分钟马上不难受 相信我 亲测,不好使回来打我</div>
  6870. </div>
  6871. <div style="padding:10px 12px; background:var(--bg-2); border-left:3px solid #FF8C42; border-radius:4px; margin-bottom:8px;">
  6872. <div style="display:flex; justify-content:space-between; align-items:center; margin-bottom:4px;">
  6873. <div style="display:flex; align-items:center; gap:6px;">
  6874. <span style="font-size:0.75rem;">📕</span>
  6875. <span style="font-size:0.72rem; font-weight:700; color:#FF8C42;">匿名</span>
  6876. </div>
  6877. <div style="display:flex; align-items:center; gap:6px;">
  6878. <span class="text-mono text-xs" style="color:#FF8C42;">♡ 212</span>
  6879. </div>
  6880. </div>
  6881. <div style="font-size:0.78rem; color:var(--text-1); line-height:1.5;">我喝酒是属于越喝越贪酒的,不喝到废不走的那种,最后靠潜意识回家,目前没找到能第二天起来缓解办法,喝之前解酒药我也吃过有点用但不大,偶尔头疼,头不疼也是难受一整天,我基本是12点左右醒了,然后缓一会,差不多2点左右开始喝馄…</div>
  6882. </div>
  6883. <div style="padding:10px 12px; background:var(--bg-2); border-left:3px solid #FF8C42; border-radius:4px; margin-bottom:8px;">
  6884. <div style="display:flex; justify-content:space-between; align-items:center; margin-bottom:4px;">
  6885. <div style="display:flex; align-items:center; gap:6px;">
  6886. <span style="font-size:0.75rem;">📕</span>
  6887. <span style="font-size:0.72rem; font-weight:700; color:#FF8C42;">匿名</span>
  6888. </div>
  6889. <div style="display:flex; align-items:center; gap:6px;">
  6890. <span class="text-mono text-xs" style="color:#FF8C42;">♡ 67</span>
  6891. </div>
  6892. </div>
  6893. <div style="font-size:0.78rem; color:var(--text-1); line-height:1.5;">此时此刻的我 真的很需要邪修快速的解酒方法 太特喵难受了</div>
  6894. </div>
  6895. <div style="padding:10px 12px; background:var(--bg-2); border-left:3px solid #FF8C42; border-radius:4px; margin-bottom:8px;">
  6896. <div style="display:flex; justify-content:space-between; align-items:center; margin-bottom:4px;">
  6897. <div style="display:flex; align-items:center; gap:6px;">
  6898. <span style="font-size:0.75rem;">📕</span>
  6899. <span style="font-size:0.72rem; font-weight:700; color:#FF8C42;">匿名</span>
  6900. </div>
  6901. <div style="display:flex; align-items:center; gap:6px;">
  6902. <span class="text-mono text-xs" style="color:#FF8C42;">♡ 50</span>
  6903. </div>
  6904. </div>
  6905. <div style="font-size:0.78rem; color:var(--text-1); line-height:1.5;">博主是第二天早上喝的吗,喝一瓶就够了吗</div>
  6906. </div>
  6907. </div>
  6908. </div>
  6909. <!-- 江中肝纯 切入点 -->
  6910. <div class="fade-up" style="background:linear-gradient(135deg, #FF4D8D15, #2D9C5D08); border:2px solid #FF4D8D; border-radius:var(--radius-md); padding:22px;">
  6911. <div class="text-mono text-xs" style="color:#FF4D8D; letter-spacing:0.2em; margin-bottom:14px;">🎯 JIANGZHONG OPPORTUNITY · 江中肝纯片切入点(3 条)</div>
  6912. <div style="display:grid; grid-template-columns:repeat(3, 1fr); gap:14px;">
  6913. <div style="padding:16px; background:#0085CA10; border-left:4px solid #0085CA; border-radius:6px;">
  6914. <div style="display:flex; align-items:center; gap:8px; margin-bottom:8px;">
  6915. <div style="font-size:1.4rem;">🔬</div>
  6916. <div style="font-size:1rem; font-weight:800; color:var(--text-1);">DMY 真解酒机制</div>
  6917. </div>
  6918. <div style="font-size:0.78rem; color:var(--text-2); line-height:1.55; margin-bottom:8px;">藤茶 DMY 激活 ADH/ALDH,加速乙醛代谢 vs 牛磺酸无解酒靶点</div>
  6919. <div style="padding:6px 10px; background:#0085CA15; border-radius:3px;">
  6920. <div class="text-mono text-xs" style="color:#0085CA; letter-spacing:0.08em; margin-bottom:3px;">🔊 话术样例</div>
  6921. <div style="font-size:0.74rem; color:var(--text-1); font-style:italic; font-weight:600; line-height:1.4;">"&quot;真解酒 · DMY 机制 · 海王金樽做不到&quot;"</div>
  6922. </div>
  6923. </div>
  6924. <div style="padding:16px; background:#D4A57410; border-left:4px solid #D4A574; border-radius:6px;">
  6925. <div style="display:flex; align-items:center; gap:8px; margin-bottom:8px;">
  6926. <div style="font-size:1.4rem;">🥂</div>
  6927. <div style="font-size:1rem; font-weight:800; color:var(--text-1);">酒桌社交货币</div>
  6928. </div>
  6929. <div style="font-size:0.78rem; color:var(--text-2); line-height:1.55; margin-bottom:8px;">锡纸小包一人分一片 · 不像治病药 · 有仪式感有面子</div>
  6930. <div style="padding:6px 10px; background:#D4A57415; border-radius:3px;">
  6931. <div class="text-mono text-xs" style="color:#D4A574; letter-spacing:0.08em; margin-bottom:3px;">🔊 话术样例</div>
  6932. <div style="font-size:0.74rem; color:var(--text-1); font-style:italic; font-weight:600; line-height:1.4;">"&quot;分一片护肝搭档 · 不是治病药&quot;"</div>
  6933. </div>
  6934. </div>
  6935. <div style="padding:16px; background:#2D9C5D10; border-left:4px solid #2D9C5D; border-radius:6px;">
  6936. <div style="display:flex; align-items:center; gap:8px; margin-bottom:8px;">
  6937. <div style="font-size:1.4rem;">🇨🇳</div>
  6938. <div style="font-size:1rem; font-weight:800; color:var(--text-1);">江中品牌 × 藤茶</div>
  6939. </div>
  6940. <div style="font-size:0.78rem; color:var(--text-2); line-height:1.55; margin-bottom:8px;">江中中药品牌 + 藤茶药食同源 vs 海王品牌医药心智已固化</div>
  6941. <div style="padding:6px 10px; background:#2D9C5D15; border-radius:3px;">
  6942. <div class="text-mono text-xs" style="color:#2D9C5D; letter-spacing:0.08em; margin-bottom:3px;">🔊 话术样例</div>
  6943. <div style="font-size:0.74rem; color:var(--text-1); font-style:italic; font-weight:600; line-height:1.4;">"&quot;百年江中 · 中国藤茶 · 比海王更中式&quot;"</div>
  6944. </div>
  6945. </div>
  6946. </div>
  6947. </div>
  6948. </div>
  6949. </section>
  6950. <section class="report-section" id="action" data-tone="green" data-slide-num="38/42" style="justify-content:center;">
  6951. <div class="section-inner">
  6952. <div class="rise-in" style="text-align:center; margin-bottom:48px;">
  6953. <div class="text-mono" style="color:#2D9C5D; letter-spacing:0.35em; font-size:0.8rem; margin-bottom:20px;">CHAPTER 7 · ACTION</div>
  6954. <h1 style="font-family:var(--font-head); font-weight:900; font-size:clamp(4rem, 10vw, 8rem); line-height:0.92; letter-spacing:-0.04em; color:#fff; background:linear-gradient(135deg, #fff 30%, #2D9C5D 100%); -webkit-background-clip:text; background-clip:text; -webkit-text-fill-color:transparent; margin:0 0 18px;">
  6955. 落地行动
  6956. </h1>
  6957. <p class="text-poster" style="font-size:clamp(1.2rem, 2.2vw, 1.8rem); color:var(--text-2); font-weight:500; max-width:820px; margin:0 auto; line-height:1.5;">优先级矩阵 × 决策阈值达标 × 10亿 4 渠道拆解路径</p>
  6958. </div>
  6959. <div class="fade-up" style="max-width:920px; margin:0 auto 40px; padding:28px 36px; background:rgba(255,255,255,0.02); border-left:4px solid #2D9C5D; border-radius:0 var(--radius-md) var(--radius-md) 0;">
  6960. <div class="text-mono text-xs" style="color:#2D9C5D; letter-spacing:0.15em; margin-bottom:10px;">KEY TAKE · 本章核心</div>
  6961. <div style="font-size:1.15rem; line-height:1.75; color:var(--text-1);">基于 VOC 验证结果,按 <strong style="color:#2D9C5D;">决策阈值(包装偏好 70% / 定价接受 80% / 定位认可 80%)</strong>筛选方案,产出 <strong style="color:#0085CA;">4 渠道落地 PRD</strong> + <strong style="color:#D4A574;">SKU 矩阵</strong> + <strong style="color:#FF8C42;">Q1-Q4 节奏</strong>,闭环 10 亿路径。</div>
  6962. </div>
  6963. <div class="grid fade-up" style="grid-template-columns:repeat(4, 1fr); gap:14px; max-width:1100px; margin:0 auto;">
  6964. <div style="background:var(--bg-1); border:1px solid var(--border); border-radius:var(--radius-md); padding:18px 16px; display:flex; flex-direction:column; gap:8px; border-top:2px solid #2D9C5D;">
  6965. <div class="text-mono text-xs" style="color:#2D9C5D; letter-spacing:0.1em; font-weight:700;">7.1</div>
  6966. <div style="font-weight:700; font-size:0.86rem; color:var(--text-1); line-height:1.35;">优先级矩阵(P0/P1)</div>
  6967. </div>
  6968. <div style="background:var(--bg-1); border:1px solid var(--border); border-radius:var(--radius-md); padding:18px 16px; display:flex; flex-direction:column; gap:8px; border-top:2px solid #2D9C5D;">
  6969. <div class="text-mono text-xs" style="color:#2D9C5D; letter-spacing:0.1em; font-weight:700;">7.2</div>
  6970. <div style="font-weight:700; font-size:0.86rem; color:var(--text-1); line-height:1.35;">决策阈值达标表(70%/80%)</div>
  6971. </div>
  6972. <div style="background:var(--bg-1); border:1px solid var(--border); border-radius:var(--radius-md); padding:18px 16px; display:flex; flex-direction:column; gap:8px; border-top:2px solid #2D9C5D;">
  6973. <div class="text-mono text-xs" style="color:#2D9C5D; letter-spacing:0.1em; font-weight:700;">7.3</div>
  6974. <div style="font-weight:700; font-size:0.86rem; color:var(--text-1); line-height:1.35;">10亿拆解×4渠道落地</div>
  6975. </div>
  6976. <div style="background:var(--bg-1); border:1px solid var(--border); border-radius:var(--radius-md); padding:18px 16px; display:flex; flex-direction:column; gap:8px; border-top:2px solid #2D9C5D;">
  6977. <div class="text-mono text-xs" style="color:#2D9C5D; letter-spacing:0.1em; font-weight:700;">7.4</div>
  6978. <div style="font-weight:700; font-size:0.86rem; color:var(--text-1); line-height:1.35;">下阶段衔接</div>
  6979. </div>
  6980. </div>
  6981. <div class="fade-up text-mono text-xs" style="margin-top:56px; text-align:center; color:var(--text-3); letter-spacing:0.2em;">
  6982. ↓ 滚动查看 4 个子章节展开
  6983. </div>
  6984. </div>
  6985. </section>
  6986. <section class="report-section" id="action-1" data-tone="green" data-slide-num="39">
  6987. <div class="section-inner">
  6988. <div class="section-head rise-in">
  6989. <div class="section-eyebrow" style="color:#2D9C5D;">7.1 · PRIORITY MATRIX</div>
  6990. <h2 class="text-h1"><span class="headline-anim">优先级矩阵 · 10 大行动 × P0/P1/P2 分级</span></h2>
  6991. <p class="section-sub">基于 VOC 验证结果,排序 <strong style="color:#2D9C5D;">10 个行动项</strong>,锁定 <strong style="color:#FF4D8D;">5 个 P0 必做</strong> + <strong style="color:#FF8C42;">4 个 P1 次选</strong> + <strong style="color:#2D9C5D;">1 个 P2 中期</strong></p>
  6992. </div>
  6993. <!-- 行动矩阵表格 -->
  6994. <div class="fade-up" style="background:var(--bg-1); border:1px solid var(--border); border-radius:var(--radius-md); padding:22px; margin-bottom:24px;">
  6995. <div class="text-mono text-xs" style="color:#2D9C5D; letter-spacing:0.15em; margin-bottom:12px;">ACTION MATRIX · 10 项行动全景</div>
  6996. <table style="width:100%; border-collapse:collapse; font-size:0.76rem;">
  6997. <thead>
  6998. <tr style="background:#2D9C5D10;">
  6999. <th style="padding:10px; text-align:left; border:1px solid #2D9C5D33; color:#2D9C5D; font-weight:700; width:9%;">ID</th>
  7000. <th style="padding:10px; text-align:left; border:1px solid #2D9C5D33; color:#2D9C5D; font-weight:700; width:6%;">优先级</th>
  7001. <th style="padding:10px; text-align:left; border:1px solid #2D9C5D33; color:#2D9C5D; font-weight:700; width:7%;">模块</th>
  7002. <th style="padding:10px; text-align:left; border:1px solid #2D9C5D33; color:#2D9C5D; font-weight:700; width:24%;">行动项</th>
  7003. <th style="padding:10px; text-align:left; border:1px solid #2D9C5D33; color:#2D9C5D; font-weight:700; width:22%;">VOC 依据</th>
  7004. <th style="padding:10px; text-align:left; border:1px solid #2D9C5D33; color:#2D9C5D; font-weight:700; width:13%;">责任人</th>
  7005. <th style="padding:10px; text-align:left; border:1px solid #2D9C5D33; color:#2D9C5D; font-weight:700; width:8%;">排期</th>
  7006. <th style="padding:10px; text-align:left; border:1px solid #2D9C5D33; color:#2D9C5D; font-weight:700; width:11%;">预期影响</th>
  7007. </tr>
  7008. </thead>
  7009. <tbody>
  7010. <tr style="border:1px solid var(--border);">
  7011. <td style="padding:9px; border:1px solid var(--border); font-family:var(--font-mono); font-size:0.72rem; color:#FF4D8D; font-weight:700;">PKG-01</td>
  7012. <td style="padding:9px; border:1px solid var(--border); text-align:center;"><span style="padding:2px 8px; background:#FF4D8D22; color:#FF4D8D; border-radius:3px; font-family:var(--font-mono); font-size:0.72rem; font-weight:700;">P0</span></td>
  7013. <td style="padding:9px; border:1px solid var(--border); font-size:0.72rem; color:var(--text-2);">包装</td>
  7014. <td style="padding:9px; border:1px solid var(--border); font-size:0.76rem; color:var(--text-1); font-weight:700; line-height:1.4;">新中式草本包装 + 磨砂瓶 + 藤茶纹</td>
  7015. <td style="padding:9px; border:1px solid var(--border); font-size:0.7rem; color:var(--text-3); line-height:1.4;">VOC &quot;土&quot;吐槽 ≥ 80 条 + Swisse 对标诉求</td>
  7016. <td style="padding:9px; border:1px solid var(--border); font-size:0.7rem; color:var(--text-2); line-height:1.4;">品牌设计部</td>
  7017. <td style="padding:9px; border:1px solid var(--border); font-size:0.7rem; color:#FF4D8D; font-weight:700; line-height:1.4;">2026 Q1 · 8 周</td>
  7018. <td style="padding:9px; border:1px solid var(--border); font-size:0.7rem; color:var(--text-1); line-height:1.4;">解决 VOC Top #1 痛点 · 礼品渠道颜值 72→85</td>
  7019. </tr>
  7020. <tr style="border:1px solid var(--border);">
  7021. <td style="padding:9px; border:1px solid var(--border); font-family:var(--font-mono); font-size:0.72rem; color:#FF4D8D; font-weight:700;">PKG-02</td>
  7022. <td style="padding:9px; border:1px solid var(--border); text-align:center;"><span style="padding:2px 8px; background:#FF4D8D22; color:#FF4D8D; border-radius:3px; font-family:var(--font-mono); font-size:0.72rem; font-weight:700;">P0</span></td>
  7023. <td style="padding:9px; border:1px solid var(--border); font-size:0.72rem; color:var(--text-2);">包装</td>
  7024. <td style="padding:9px; border:1px solid var(--border); font-size:0.76rem; color:var(--text-1); font-weight:700; line-height:1.4;">锡纸独立小包 + 铝塑板装双形态上线</td>
  7025. <td style="padding:9px; border:1px solid var(--border); font-size:0.7rem; color:var(--text-3); line-height:1.4;">餐饮便携诉求 + 药线合规要求</td>
  7026. <td style="padding:9px; border:1px solid var(--border); font-size:0.7rem; color:var(--text-2); line-height:1.4;">包材开发部</td>
  7027. <td style="padding:9px; border:1px solid var(--border); font-size:0.7rem; color:#FF4D8D; font-weight:700; line-height:1.4;">2026 Q1 · 10 周</td>
  7028. <td style="padding:9px; border:1px solid var(--border); font-size:0.7rem; color:var(--text-1); line-height:1.4;">餐饮分食 90 分 · 药线合规 100%</td>
  7029. </tr>
  7030. <tr style="border:1px solid var(--border);">
  7031. <td style="padding:9px; border:1px solid var(--border); font-family:var(--font-mono); font-size:0.72rem; color:#FF4D8D; font-weight:700;">POS-01</td>
  7032. <td style="padding:9px; border:1px solid var(--border); text-align:center;"><span style="padding:2px 8px; background:#FF4D8D22; color:#FF4D8D; border-radius:3px; font-family:var(--font-mono); font-size:0.72rem; font-weight:700;">P0</span></td>
  7033. <td style="padding:9px; border:1px solid var(--border); font-size:0.72rem; color:var(--text-2);">定位</td>
  7034. <td style="padding:9px; border:1px solid var(--border); font-size:0.76rem; color:var(--text-1); font-weight:700; line-height:1.4;">&quot;藤茶 DMY ≠ 水飞蓟&quot;差异心智建构</td>
  7035. <td style="padding:9px; border:1px solid var(--border); font-size:0.7rem; color:var(--text-3); line-height:1.4;">VOC 认知漏斗 3% 最大教育机会</td>
  7036. <td style="padding:9px; border:1px solid var(--border); font-size:0.7rem; color:var(--text-2); line-height:1.4;">品牌传播部 + 医学事务部</td>
  7037. <td style="padding:9px; border:1px solid var(--border); font-size:0.7rem; color:#FF4D8D; font-weight:700; line-height:1.4;">2026 Q1 启动 · 6 个月教育</td>
  7038. <td style="padding:9px; border:1px solid var(--border); font-size:0.7rem; color:var(--text-1); line-height:1.4;">认知 3% → 30% · 支撑电商 + 药线</td>
  7039. </tr>
  7040. <tr style="border:1px solid var(--border);">
  7041. <td style="padding:9px; border:1px solid var(--border); font-family:var(--font-mono); font-size:0.72rem; color:#FF4D8D; font-weight:700;">POS-02</td>
  7042. <td style="padding:9px; border:1px solid var(--border); text-align:center;"><span style="padding:2px 8px; background:#FF4D8D22; color:#FF4D8D; border-radius:3px; font-family:var(--font-mono); font-size:0.72rem; font-weight:700;">P0</span></td>
  7043. <td style="padding:9px; border:1px solid var(--border); font-size:0.72rem; color:var(--text-2);">话术</td>
  7044. <td style="padding:9px; border:1px solid var(--border); font-size:0.76rem; color:var(--text-1); font-weight:700; line-height:1.4;">分渠道话术包(药线/礼品/餐饮/电商)落地</td>
  7045. <td style="padding:9px; border:1px solid var(--border); font-size:0.7rem; color:var(--text-3); line-height:1.4;">4 渠道话术 AB 测试记忆度 68-92 分</td>
  7046. <td style="padding:9px; border:1px solid var(--border); font-size:0.7rem; color:var(--text-2); line-height:1.4;">营销部</td>
  7047. <td style="padding:9px; border:1px solid var(--border); font-size:0.7rem; color:#FF4D8D; font-weight:700; line-height:1.4;">2026 Q1 · 4 周</td>
  7048. <td style="padding:9px; border:1px solid var(--border); font-size:0.7rem; color:var(--text-1); line-height:1.4;">4 渠道推广 ROI +35%</td>
  7049. </tr>
  7050. <tr style="border:1px solid var(--border);">
  7051. <td style="padding:9px; border:1px solid var(--border); font-family:var(--font-mono); font-size:0.72rem; color:#FF4D8D; font-weight:700;">PRC-01</td>
  7052. <td style="padding:9px; border:1px solid var(--border); text-align:center;"><span style="padding:2px 8px; background:#FF4D8D22; color:#FF4D8D; border-radius:3px; font-family:var(--font-mono); font-size:0.72rem; font-weight:700;">P0</span></td>
  7053. <td style="padding:9px; border:1px solid var(--border); font-size:0.72rem; color:var(--text-2);">定价</td>
  7054. <td style="padding:9px; border:1px solid var(--border); font-size:0.76rem; color:var(--text-1); font-weight:700; line-height:1.4;">12 SKU 价格带落地(¥25-898)</td>
  7055. <td style="padding:9px; border:1px solid var(--border); font-size:0.7rem; color:var(--text-3); line-height:1.4;">用户接受度药线82/礼品78/餐饮85/电商80 分</td>
  7056. <td style="padding:9px; border:1px solid var(--border); font-size:0.7rem; color:var(--text-2); line-height:1.4;">商务 + 渠道管理</td>
  7057. <td style="padding:9px; border:1px solid var(--border); font-size:0.7rem; color:#FF4D8D; font-weight:700; line-height:1.4;">2026 Q1 · 2 周</td>
  7058. <td style="padding:9px; border:1px solid var(--border); font-size:0.7rem; color:var(--text-1); line-height:1.4;">毛利 60-75% · 支撑 10 亿</td>
  7059. </tr>
  7060. <tr style="border:1px solid var(--border);">
  7061. <td style="padding:9px; border:1px solid var(--border); font-family:var(--font-mono); font-size:0.72rem; color:#FF8C42; font-weight:700;">SCN-01</td>
  7062. <td style="padding:9px; border:1px solid var(--border); text-align:center;"><span style="padding:2px 8px; background:#FF8C4222; color:#FF8C42; border-radius:3px; font-family:var(--font-mono); font-size:0.72rem; font-weight:700;">P1</span></td>
  7063. <td style="padding:9px; border:1px solid var(--border); font-size:0.72rem; color:var(--text-2);">场景</td>
  7064. <td style="padding:9px; border:1px solid var(--border); font-size:0.76rem; color:var(--text-1); font-weight:700; line-height:1.4;">餐饮 B 端酒局团购 + KTV 合作渠道</td>
  7065. <td style="padding:9px; border:1px solid var(--border); font-size:0.7rem; color:var(--text-3); line-height:1.4;">VOC 酒局分食 + 海王金樽失败空白</td>
  7066. <td style="padding:9px; border:1px solid var(--border); font-size:0.7rem; color:var(--text-2); line-height:1.4;">B 端渠道</td>
  7067. <td style="padding:9px; border:1px solid var(--border); font-size:0.7rem; color:#FF8C42; font-weight:700; line-height:1.4;">2026 Q2</td>
  7068. <td style="padding:9px; border:1px solid var(--border); font-size:0.7rem; color:var(--text-1); line-height:1.4;">餐饮 GMV 0 → 2.5 亿</td>
  7069. </tr>
  7070. <tr style="border:1px solid var(--border);">
  7071. <td style="padding:9px; border:1px solid var(--border); font-family:var(--font-mono); font-size:0.72rem; color:#FF8C42; font-weight:700;">SCN-02</td>
  7072. <td style="padding:9px; border:1px solid var(--border); text-align:center;"><span style="padding:2px 8px; background:#FF8C4222; color:#FF8C42; border-radius:3px; font-family:var(--font-mono); font-size:0.72rem; font-weight:700;">P1</span></td>
  7073. <td style="padding:9px; border:1px solid var(--border); font-size:0.72rem; color:var(--text-2);">场景</td>
  7074. <td style="padding:9px; border:1px solid var(--border); font-size:0.76rem; color:var(--text-1); font-weight:700; line-height:1.4;">药线医生/药师培训 + 医院便民柜铺货</td>
  7075. <td style="padding:9px; border:1px solid var(--border); font-size:0.7rem; color:var(--text-3); line-height:1.4;">药师推荐意愿 82% · 合规度 95%</td>
  7076. <td style="padding:9px; border:1px solid var(--border); font-size:0.7rem; color:var(--text-2); line-height:1.4;">药线事业部</td>
  7077. <td style="padding:9px; border:1px solid var(--border); font-size:0.7rem; color:#FF8C42; font-weight:700; line-height:1.4;">2026 Q2-Q3</td>
  7078. <td style="padding:9px; border:1px solid var(--border); font-size:0.7rem; color:var(--text-1); line-height:1.4;">药线 3w+ 门店覆盖</td>
  7079. </tr>
  7080. <tr style="border:1px solid var(--border);">
  7081. <td style="padding:9px; border:1px solid var(--border); font-family:var(--font-mono); font-size:0.72rem; color:#FF8C42; font-weight:700;">CMP-01</td>
  7082. <td style="padding:9px; border:1px solid var(--border); text-align:center;"><span style="padding:2px 8px; background:#FF8C4222; color:#FF8C42; border-radius:3px; font-family:var(--font-mono); font-size:0.72rem; font-weight:700;">P1</span></td>
  7083. <td style="padding:9px; border:1px solid var(--border); font-size:0.72rem; color:var(--text-2);">竞品</td>
  7084. <td style="padding:9px; border:1px solid var(--border); font-size:0.76rem; color:var(--text-1); font-weight:700; line-height:1.4;">&quot;打脸话术包&quot;:vs 6 竞品差异点</td>
  7085. <td style="padding:9px; border:1px solid var(--border); font-size:0.7rem; color:var(--text-3); line-height:1.4;">6 竞品 VOC 痛点已量化</td>
  7086. <td style="padding:9px; border:1px solid var(--border); font-size:0.7rem; color:var(--text-2); line-height:1.4;">电商 + 内容</td>
  7087. <td style="padding:9px; border:1px solid var(--border); font-size:0.7rem; color:#FF8C42; font-weight:700; line-height:1.4;">2026 Q1-Q2</td>
  7088. <td style="padding:9px; border:1px solid var(--border); font-size:0.7rem; color:var(--text-1); line-height:1.4;">电商详情页转化 +18%</td>
  7089. </tr>
  7090. <tr style="border:1px solid var(--border);">
  7091. <td style="padding:9px; border:1px solid var(--border); font-family:var(--font-mono); font-size:0.72rem; color:#FF8C42; font-weight:700;">CMP-02</td>
  7092. <td style="padding:9px; border:1px solid var(--border); text-align:center;"><span style="padding:2px 8px; background:#FF8C4222; color:#FF8C42; border-radius:3px; font-family:var(--font-mono); font-size:0.72rem; font-weight:700;">P1</span></td>
  7093. <td style="padding:9px; border:1px solid var(--border); font-size:0.72rem; color:var(--text-2);">竞品</td>
  7094. <td style="padding:9px; border:1px solid var(--border); font-size:0.76rem; color:var(--text-1); font-weight:700; line-height:1.4;">Amazon 差评洞察 → 海外市场差异化素材</td>
  7095. <td style="padding:9px; border:1px solid var(--border); font-size:0.7rem; color:var(--text-3); line-height:1.4;">Amazon 1-2 星 &gt;500 条 &quot;no effect&quot; 差评</td>
  7096. <td style="padding:9px; border:1px solid var(--border); font-size:0.7rem; color:var(--text-2); line-height:1.4;">出海筹备</td>
  7097. <td style="padding:9px; border:1px solid var(--border); font-size:0.7rem; color:#FF8C42; font-weight:700; line-height:1.4;">2026 Q3-Q4</td>
  7098. <td style="padding:9px; border:1px solid var(--border); font-size:0.7rem; color:var(--text-1); line-height:1.4;">2027 出海预备</td>
  7099. </tr>
  7100. <tr style="border:1px solid var(--border);">
  7101. <td style="padding:9px; border:1px solid var(--border); font-family:var(--font-mono); font-size:0.72rem; color:#2D9C5D; font-weight:700;">DAT-01</td>
  7102. <td style="padding:9px; border:1px solid var(--border); text-align:center;"><span style="padding:2px 8px; background:#2D9C5D22; color:#2D9C5D; border-radius:3px; font-family:var(--font-mono); font-size:0.72rem; font-weight:700;">P2</span></td>
  7103. <td style="padding:9px; border:1px solid var(--border); font-size:0.72rem; color:var(--text-2);">数据</td>
  7104. <td style="padding:9px; border:1px solid var(--border); font-size:0.76rem; color:var(--text-1); font-weight:700; line-height:1.4;">一物一码 + 服用小程序数据闭环</td>
  7105. <td style="padding:9px; border:1px solid var(--border); font-size:0.7rem; color:var(--text-3); line-height:1.4;">电商 + 会员复购 +40% 机会</td>
  7106. <td style="padding:9px; border:1px solid var(--border); font-size:0.7rem; color:var(--text-2); line-height:1.4;">数字化 + IT</td>
  7107. <td style="padding:9px; border:1px solid var(--border); font-size:0.7rem; color:#2D9C5D; font-weight:700; line-height:1.4;">2026 Q2 MVP</td>
  7108. <td style="padding:9px; border:1px solid var(--border); font-size:0.7rem; color:var(--text-1); line-height:1.4;">复购 40% · 30 日留存 62%</td>
  7109. </tr>
  7110. </tbody>
  7111. </table>
  7112. </div>
  7113. <!-- 优先级分布 -->
  7114. <div class="fade-up" style="background:linear-gradient(135deg, #2D9C5D10, #D4A57408); border:1px solid #2D9C5D44; border-radius:var(--radius-md); padding:20px;">
  7115. <div class="text-mono text-xs" style="color:#2D9C5D; letter-spacing:0.15em; margin-bottom:14px;">PRIORITY DISTRIBUTION · 优先级分布与资源</div>
  7116. <div style="display:grid; grid-template-columns:repeat(3, 1fr); gap:14px;">
  7117. <div style="padding:16px; background:#FF4D8D10; border-left:3px solid #FF4D8D; border-radius:6px;">
  7118. <div style="display:flex; justify-content:space-between; align-items:baseline; margin-bottom:8px;">
  7119. <div style="font-size:1.1rem; font-weight:800; color:var(--text-1);">🔥 P0 必做</div>
  7120. <div style="font-family:var(--font-head); font-weight:900; font-size:2rem; color:#FF4D8D; line-height:1;">5</div>
  7121. </div>
  7122. <div style="font-size:0.78rem; color:var(--text-2); line-height:1.55;">2026 Q1 必完成 · 直接支撑上市 · 资源集中投入</div>
  7123. <div style="margin-top:8px; font-size:0.7rem; color:#FF4D8D; font-weight:700;">涉及:包装 × 2 / 定位 / 话术 / 定价</div>
  7124. </div>
  7125. <div style="padding:16px; background:#FF8C4210; border-left:3px solid #FF8C42; border-radius:6px;">
  7126. <div style="display:flex; justify-content:space-between; align-items:baseline; margin-bottom:8px;">
  7127. <div style="font-size:1.1rem; font-weight:800; color:var(--text-1);">⚡ P1 次选</div>
  7128. <div style="font-family:var(--font-head); font-weight:900; font-size:2rem; color:#FF8C42; line-height:1;">4</div>
  7129. </div>
  7130. <div style="font-size:0.78rem; color:var(--text-2); line-height:1.55;">2026 Q2-Q3 · 渠道推广 + 竞品拦截 · 放量关键</div>
  7131. <div style="margin-top:8px; font-size:0.7rem; color:#FF8C42; font-weight:700;">涉及:场景 × 2 / 竞品 × 2</div>
  7132. </div>
  7133. <div style="padding:16px; background:#2D9C5D10; border-left:3px solid #2D9C5D; border-radius:6px;">
  7134. <div style="display:flex; justify-content:space-between; align-items:baseline; margin-bottom:8px;">
  7135. <div style="font-size:1.1rem; font-weight:800; color:var(--text-1);">🔮 P2 中期</div>
  7136. <div style="font-family:var(--font-head); font-weight:900; font-size:2rem; color:#2D9C5D; line-height:1;">1</div>
  7137. </div>
  7138. <div style="font-size:0.78rem; color:var(--text-2); line-height:1.55;">2026 Q2+ · 数字化底座 · 数据飞轮中长期</div>
  7139. <div style="margin-top:8px; font-size:0.7rem; color:#2D9C5D; font-weight:700;">涉及:数据闭环(一物一码)</div>
  7140. </div>
  7141. </div>
  7142. </div>
  7143. </div>
  7144. </section>
  7145. <section class="report-section" id="action-2" data-tone="green" data-slide-num="40">
  7146. <div class="section-inner">
  7147. <div class="section-head rise-in">
  7148. <div class="section-eyebrow" style="color:#2D9C5D;">7.2 · DECISION THRESHOLDS</div>
  7149. <h2 class="text-h1"><span class="headline-anim">决策阈值达标表 · 5 模块 × 20 细项</span></h2>
  7150. <p class="section-sub">对标《1.VOC方向定位.md》决策阈值:包装 ≥70% / 定价 ≥80% / 话术 ≥80% / 场景 ≥75% / 差异 ≥70% · <strong style="color:#2D9C5D;">18/20 项达标</strong></p>
  7151. </div>
  7152. <!-- 5 模块详情 -->
  7153. <div class="fade-up" style="display:grid; grid-template-columns:repeat(1, 1fr); gap:14px; margin-bottom:24px;">
  7154. <div style="background:var(--bg-1); border:1px solid #D4A57444; border-left:4px solid #D4A574; border-radius:var(--radius-md); padding:16px; display:grid; grid-template-columns:180px 1fr 160px; gap:16px; align-items:center;">
  7155. <div>
  7156. <div style="display:flex; align-items:center; gap:8px; margin-bottom:6px;">
  7157. <div style="width:40px; height:40px; background:#D4A57422; border-radius:50%; display:flex; align-items:center; justify-content:center; font-size:1.3rem;">📦</div>
  7158. <div>
  7159. <div style="font-size:1rem; font-weight:800; color:var(--text-1);">包装调研</div>
  7160. <div class="text-mono text-xs" style="color:#D4A574; letter-spacing:0.08em;">阈值: 用户偏好度 ≥ 70%</div>
  7161. </div>
  7162. </div>
  7163. </div>
  7164. <div style="display:grid; grid-template-columns:repeat(4, 1fr); gap:8px;">
  7165. <div style="padding:10px; background:#2D9C5D08; border-left:3px solid #2D9C5D; border-radius:4px;">
  7166. <div style="display:flex; justify-content:space-between; align-items:baseline; margin-bottom:3px;">
  7167. <div style="font-size:0.72rem; color:var(--text-1); font-weight:700; line-height:1.3;">外包装偏好 - 新中式</div>
  7168. <div style="font-family:var(--font-head); font-weight:900; font-size:1.2rem; color:#2D9C5D; line-height:1;">85</div>
  7169. </div>
  7170. <div style="font-size:0.64rem; color:var(--text-3); line-height:1.45;">VOC 印证 Swisse 对标 + 藤茶概念</div>
  7171. </div>
  7172. <div style="padding:10px; background:#2D9C5D08; border-left:3px solid #2D9C5D; border-radius:4px;">
  7173. <div style="display:flex; justify-content:space-between; align-items:baseline; margin-bottom:3px;">
  7174. <div style="font-size:0.72rem; color:var(--text-1); font-weight:700; line-height:1.3;">内包装 - 锡纸小包</div>
  7175. <div style="font-family:var(--font-head); font-weight:900; font-size:1.2rem; color:#2D9C5D; line-height:1;">90</div>
  7176. </div>
  7177. <div style="font-size:0.64rem; color:var(--text-3); line-height:1.45;">餐饮分食 Rec 90</div>
  7178. </div>
  7179. <div style="padding:10px; background:#2D9C5D08; border-left:3px solid #2D9C5D; border-radius:4px;">
  7180. <div style="display:flex; justify-content:space-between; align-items:baseline; margin-bottom:3px;">
  7181. <div style="font-size:0.72rem; color:var(--text-1); font-weight:700; line-height:1.3;">片剂外观 - 椭圆小片</div>
  7182. <div style="font-family:var(--font-head); font-weight:900; font-size:1.2rem; color:#2D9C5D; line-height:1;">82</div>
  7183. </div>
  7184. <div style="font-size:0.64rem; color:var(--text-3); line-height:1.45;">吞咽痛点 25+ 条 VOC</div>
  7185. </div>
  7186. <div style="padding:10px; background:#2D9C5D08; border-left:3px solid #2D9C5D; border-radius:4px;">
  7187. <div style="display:flex; justify-content:space-between; align-items:baseline; margin-bottom:3px;">
  7188. <div style="font-size:0.72rem; color:var(--text-1); font-weight:700; line-height:1.3;">礼品规格 - 双瓶礼盒</div>
  7189. <div style="font-family:var(--font-head); font-weight:900; font-size:1.2rem; color:#2D9C5D; line-height:1;">78</div>
  7190. </div>
  7191. <div style="font-size:0.64rem; color:var(--text-3); line-height:1.45;">礼品场景适配边缘通过</div>
  7192. </div>
  7193. </div>
  7194. <div style="text-align:center; padding:14px; background:#2D9C5D15; border-radius:8px;">
  7195. <div style="font-family:var(--font-head); font-weight:900; font-size:1.8rem; color:#2D9C5D; line-height:1;">4/4</div>
  7196. <div class="text-mono text-xs" style="color:#2D9C5D; margin-top:4px; letter-spacing:0.08em;">✅ 全达标</div>
  7197. </div>
  7198. </div>
  7199. <div style="background:var(--bg-1); border:1px solid #0085CA44; border-left:4px solid #0085CA; border-radius:var(--radius-md); padding:16px; display:grid; grid-template-columns:180px 1fr 160px; gap:16px; align-items:center;">
  7200. <div>
  7201. <div style="display:flex; align-items:center; gap:8px; margin-bottom:6px;">
  7202. <div style="width:40px; height:40px; background:#0085CA22; border-radius:50%; display:flex; align-items:center; justify-content:center; font-size:1.3rem;">💰</div>
  7203. <div>
  7204. <div style="font-size:1rem; font-weight:800; color:var(--text-1);">定价调研</div>
  7205. <div class="text-mono text-xs" style="color:#0085CA; letter-spacing:0.08em;">阈值: 用户接受度 ≥ 80%</div>
  7206. </div>
  7207. </div>
  7208. </div>
  7209. <div style="display:grid; grid-template-columns:repeat(4, 1fr); gap:8px;">
  7210. <div style="padding:10px; background:#2D9C5D08; border-left:3px solid #2D9C5D; border-radius:4px;">
  7211. <div style="display:flex; justify-content:space-between; align-items:baseline; margin-bottom:3px;">
  7212. <div style="font-size:0.72rem; color:var(--text-1); font-weight:700; line-height:1.3;">药线 ¥25-239</div>
  7213. <div style="font-family:var(--font-head); font-weight:900; font-size:1.2rem; color:#2D9C5D; line-height:1;">82</div>
  7214. </div>
  7215. <div style="font-size:0.64rem; color:var(--text-3); line-height:1.45;">比易善复 ¥80 便宜</div>
  7216. </div>
  7217. <div style="padding:10px; background:#2D9C5D08; border-left:3px solid #2D9C5D; border-radius:4px;">
  7218. <div style="display:flex; justify-content:space-between; align-items:baseline; margin-bottom:3px;">
  7219. <div style="font-size:0.72rem; color:var(--text-1); font-weight:700; line-height:1.3;">电商 ¥89-359</div>
  7220. <div style="font-family:var(--font-head); font-weight:900; font-size:1.2rem; color:#2D9C5D; line-height:1;">80</div>
  7221. </div>
  7222. <div style="font-size:0.64rem; color:var(--text-3); line-height:1.45;">比 Swisse 便宜 15-30%</div>
  7223. </div>
  7224. <div style="padding:10px; background:#2D9C5D08; border-left:3px solid #2D9C5D; border-radius:4px;">
  7225. <div style="display:flex; justify-content:space-between; align-items:baseline; margin-bottom:3px;">
  7226. <div style="font-size:0.72rem; color:var(--text-1); font-weight:700; line-height:1.3;">餐饮 ¥9-99</div>
  7227. <div style="font-family:var(--font-head); font-weight:900; font-size:1.2rem; color:#2D9C5D; line-height:1;">85</div>
  7228. </div>
  7229. <div style="font-size:0.64rem; color:var(--text-3); line-height:1.45;">单片 ¥2.5-4 抬升</div>
  7230. </div>
  7231. <div style="padding:10px; background:#FF4D8D08; border-left:3px solid #FF4D8D; border-radius:4px;">
  7232. <div style="display:flex; justify-content:space-between; align-items:baseline; margin-bottom:3px;">
  7233. <div style="font-size:0.72rem; color:var(--text-1); font-weight:700; line-height:1.3;">礼品 ¥158-898</div>
  7234. <div style="font-family:var(--font-head); font-weight:900; font-size:1.2rem; color:#FF4D8D; line-height:1;">78</div>
  7235. </div>
  7236. <div style="font-size:0.64rem; color:var(--text-3); line-height:1.45;">⚠️ 需颜值配合提升至 85%</div>
  7237. </div>
  7238. </div>
  7239. <div style="text-align:center; padding:14px; background:#FF8C4215; border-radius:8px;">
  7240. <div style="font-family:var(--font-head); font-weight:900; font-size:1.8rem; color:#FF8C42; line-height:1;">3/4</div>
  7241. <div class="text-mono text-xs" style="color:#FF8C42; margin-top:4px; letter-spacing:0.08em;">⚠️ 临界</div>
  7242. </div>
  7243. </div>
  7244. <div style="background:var(--bg-1); border:1px solid #8B5CF644; border-left:4px solid #8B5CF6; border-radius:var(--radius-md); padding:16px; display:grid; grid-template-columns:180px 1fr 160px; gap:16px; align-items:center;">
  7245. <div>
  7246. <div style="display:flex; align-items:center; gap:8px; margin-bottom:6px;">
  7247. <div style="width:40px; height:40px; background:#8B5CF622; border-radius:50%; display:flex; align-items:center; justify-content:center; font-size:1.3rem;">🎯</div>
  7248. <div>
  7249. <div style="font-size:1rem; font-weight:800; color:var(--text-1);">定位话术</div>
  7250. <div class="text-mono text-xs" style="color:#8B5CF6; letter-spacing:0.08em;">阈值: 记忆度 / 认可度 ≥ 80%</div>
  7251. </div>
  7252. </div>
  7253. </div>
  7254. <div style="display:grid; grid-template-columns:repeat(4, 1fr); gap:8px;">
  7255. <div style="padding:10px; background:#2D9C5D08; border-left:3px solid #2D9C5D; border-radius:4px;">
  7256. <div style="display:flex; justify-content:space-between; align-items:baseline; margin-bottom:3px;">
  7257. <div style="font-size:0.72rem; color:var(--text-1); font-weight:700; line-height:1.3;">藤茶 DMY 差异化</div>
  7258. <div style="font-family:var(--font-head); font-weight:900; font-size:1.2rem; color:#2D9C5D; line-height:1;">82</div>
  7259. </div>
  7260. <div style="font-size:0.64rem; color:var(--text-3); line-height:1.45;">C 真成分派 Accept 82</div>
  7261. </div>
  7262. <div style="padding:10px; background:#2D9C5D08; border-left:3px solid #2D9C5D; border-radius:4px;">
  7263. <div style="display:flex; justify-content:space-between; align-items:baseline; margin-bottom:3px;">
  7264. <div style="font-size:0.72rem; color:var(--text-1); font-weight:700; line-height:1.3;">解酒社交货币</div>
  7265. <div style="font-family:var(--font-head); font-weight:900; font-size:1.2rem; color:#2D9C5D; line-height:1;">92</div>
  7266. </div>
  7267. <div style="font-size:0.64rem; color:var(--text-3); line-height:1.45;">B 体感派 Accept 88-92</div>
  7268. </div>
  7269. <div style="padding:10px; background:#2D9C5D08; border-left:3px solid #2D9C5D; border-radius:4px;">
  7270. <div style="display:flex; justify-content:space-between; align-items:baseline; margin-bottom:3px;">
  7271. <div style="font-size:0.72rem; color:var(--text-1); font-weight:700; line-height:1.3;">安全无副作用</div>
  7272. <div style="font-family:var(--font-head); font-weight:900; font-size:1.2rem; color:#2D9C5D; line-height:1;">82</div>
  7273. </div>
  7274. <div style="font-size:0.64rem; color:var(--text-3); line-height:1.45;">C 无副作用派 Mem 82</div>
  7275. </div>
  7276. <div style="padding:10px; background:#FF4D8D08; border-left:3px solid #FF4D8D; border-radius:4px;">
  7277. <div style="display:flex; justify-content:space-between; align-items:baseline; margin-bottom:3px;">
  7278. <div style="font-size:0.72rem; color:var(--text-1); font-weight:700; line-height:1.3;">药食同源中式</div>
  7279. <div style="font-family:var(--font-head); font-weight:900; font-size:1.2rem; color:#FF4D8D; line-height:1;">72</div>
  7280. </div>
  7281. <div style="font-size:0.64rem; color:var(--text-3); line-height:1.45;">⚠️ 药线渠道临界</div>
  7282. </div>
  7283. </div>
  7284. <div style="text-align:center; padding:14px; background:#FF8C4215; border-radius:8px;">
  7285. <div style="font-family:var(--font-head); font-weight:900; font-size:1.8rem; color:#FF8C42; line-height:1;">3/4</div>
  7286. <div class="text-mono text-xs" style="color:#FF8C42; margin-top:4px; letter-spacing:0.08em;">⚠️ 临界</div>
  7287. </div>
  7288. </div>
  7289. <div style="background:var(--bg-1); border:1px solid #FF8C4244; border-left:4px solid #FF8C42; border-radius:var(--radius-md); padding:16px; display:grid; grid-template-columns:180px 1fr 160px; gap:16px; align-items:center;">
  7290. <div>
  7291. <div style="display:flex; align-items:center; gap:8px; margin-bottom:6px;">
  7292. <div style="width:40px; height:40px; background:#FF8C4222; border-radius:50%; display:flex; align-items:center; justify-content:center; font-size:1.3rem;">🎬</div>
  7293. <div>
  7294. <div style="font-size:1rem; font-weight:800; color:var(--text-1);">场景适配</div>
  7295. <div class="text-mono text-xs" style="color:#FF8C42; letter-spacing:0.08em;">阈值: 场景适配度 ≥ 75%</div>
  7296. </div>
  7297. </div>
  7298. </div>
  7299. <div style="display:grid; grid-template-columns:repeat(4, 1fr); gap:8px;">
  7300. <div style="padding:10px; background:#2D9C5D08; border-left:3px solid #2D9C5D; border-radius:4px;">
  7301. <div style="display:flex; justify-content:space-between; align-items:baseline; margin-bottom:3px;">
  7302. <div style="font-size:0.72rem; color:var(--text-1); font-weight:700; line-height:1.3;">药线合规度</div>
  7303. <div style="font-family:var(--font-head); font-weight:900; font-size:1.2rem; color:#2D9C5D; line-height:1;">95</div>
  7304. </div>
  7305. <div style="font-size:0.64rem; color:var(--text-3); line-height:1.45;">蓝帽 + 国药准字</div>
  7306. </div>
  7307. <div style="padding:10px; background:#2D9C5D08; border-left:3px solid #2D9C5D; border-radius:4px;">
  7308. <div style="display:flex; justify-content:space-between; align-items:baseline; margin-bottom:3px;">
  7309. <div style="font-size:0.72rem; color:var(--text-1); font-weight:700; line-height:1.3;">礼品体面感</div>
  7310. <div style="font-family:var(--font-head); font-weight:900; font-size:1.2rem; color:#2D9C5D; line-height:1;">85</div>
  7311. </div>
  7312. <div style="font-size:0.64rem; color:var(--text-3); line-height:1.45;">藤茶+金磨砂瓶达标</div>
  7313. </div>
  7314. <div style="padding:10px; background:#2D9C5D08; border-left:3px solid #2D9C5D; border-radius:4px;">
  7315. <div style="display:flex; justify-content:space-between; align-items:baseline; margin-bottom:3px;">
  7316. <div style="font-size:0.72rem; color:var(--text-1); font-weight:700; line-height:1.3;">餐饮分食仪式</div>
  7317. <div style="font-family:var(--font-head); font-weight:900; font-size:1.2rem; color:#2D9C5D; line-height:1;">90</div>
  7318. </div>
  7319. <div style="font-size:0.64rem; color:var(--text-3); line-height:1.45;">DMY 真体感 + 锡纸小包</div>
  7320. </div>
  7321. <div style="padding:10px; background:#2D9C5D08; border-left:3px solid #2D9C5D; border-radius:4px;">
  7322. <div style="display:flex; justify-content:space-between; align-items:baseline; margin-bottom:3px;">
  7323. <div style="font-size:0.72rem; color:var(--text-1); font-weight:700; line-height:1.3;">电商差异心智</div>
  7324. <div style="font-family:var(--font-head); font-weight:900; font-size:1.2rem; color:#2D9C5D; line-height:1;">75</div>
  7325. </div>
  7326. <div style="font-size:0.64rem; color:var(--text-3); line-height:1.45;">刚达标边缘,需强化</div>
  7327. </div>
  7328. </div>
  7329. <div style="text-align:center; padding:14px; background:#2D9C5D15; border-radius:8px;">
  7330. <div style="font-family:var(--font-head); font-weight:900; font-size:1.8rem; color:#2D9C5D; line-height:1;">4/4</div>
  7331. <div class="text-mono text-xs" style="color:#2D9C5D; margin-top:4px; letter-spacing:0.08em;">✅ 全达标</div>
  7332. </div>
  7333. </div>
  7334. <div style="background:var(--bg-1); border:1px solid #FF4D8D44; border-left:4px solid #FF4D8D; border-radius:var(--radius-md); padding:16px; display:grid; grid-template-columns:180px 1fr 160px; gap:16px; align-items:center;">
  7335. <div>
  7336. <div style="display:flex; align-items:center; gap:8px; margin-bottom:6px;">
  7337. <div style="width:40px; height:40px; background:#FF4D8D22; border-radius:50%; display:flex; align-items:center; justify-content:center; font-size:1.3rem;">⚔️</div>
  7338. <div>
  7339. <div style="font-size:1rem; font-weight:800; color:var(--text-1);">竞品认知</div>
  7340. <div class="text-mono text-xs" style="color:#FF4D8D; letter-spacing:0.08em;">阈值: 差异化感知 ≥ 70%</div>
  7341. </div>
  7342. </div>
  7343. </div>
  7344. <div style="display:grid; grid-template-columns:repeat(4, 1fr); gap:8px;">
  7345. <div style="padding:10px; background:#2D9C5D08; border-left:3px solid #2D9C5D; border-radius:4px;">
  7346. <div style="display:flex; justify-content:space-between; align-items:baseline; margin-bottom:3px;">
  7347. <div style="font-size:0.72rem; color:var(--text-1); font-weight:700; line-height:1.3;">vs 护肝片(副作用)</div>
  7348. <div style="font-family:var(--font-head); font-weight:900; font-size:1.2rem; color:#2D9C5D; line-height:1;">85</div>
  7349. </div>
  7350. <div style="font-size:0.64rem; color:var(--text-3); line-height:1.45;">无胃肠反应差异明显</div>
  7351. </div>
  7352. <div style="padding:10px; background:#2D9C5D08; border-left:3px solid #2D9C5D; border-radius:4px;">
  7353. <div style="display:flex; justify-content:space-between; align-items:baseline; margin-bottom:3px;">
  7354. <div style="font-size:0.72rem; color:var(--text-1); font-weight:700; line-height:1.3;">vs 易善复(胃肠)</div>
  7355. <div style="font-family:var(--font-head); font-weight:900; font-size:1.2rem; color:#2D9C5D; line-height:1;">82</div>
  7356. </div>
  7357. <div style="font-size:0.64rem; color:var(--text-3); line-height:1.45;">+ 价格 + 不处方</div>
  7358. </div>
  7359. <div style="padding:10px; background:#2D9C5D08; border-left:3px solid #2D9C5D; border-radius:4px;">
  7360. <div style="display:flex; justify-content:space-between; align-items:baseline; margin-bottom:3px;">
  7361. <div style="font-size:0.72rem; color:var(--text-1); font-weight:700; line-height:1.3;">vs Swisse(体感)</div>
  7362. <div style="font-family:var(--font-head); font-weight:900; font-size:1.2rem; color:#2D9C5D; line-height:1;">85</div>
  7363. </div>
  7364. <div style="font-size:0.64rem; color:var(--text-3); line-height:1.45;">DMY vs 水飞蓟吸收率</div>
  7365. </div>
  7366. <div style="padding:10px; background:#2D9C5D08; border-left:3px solid #2D9C5D; border-radius:4px;">
  7367. <div style="display:flex; justify-content:space-between; align-items:baseline; margin-bottom:3px;">
  7368. <div style="font-size:0.72rem; color:var(--text-1); font-weight:700; line-height:1.3;">vs 海王金樽(社交)</div>
  7369. <div style="font-family:var(--font-head); font-weight:900; font-size:1.2rem; color:#2D9C5D; line-height:1;">90</div>
  7370. </div>
  7371. <div style="font-size:0.64rem; color:var(--text-3); line-height:1.45;">真解酒 + 新中式包装</div>
  7372. </div>
  7373. </div>
  7374. <div style="text-align:center; padding:14px; background:#2D9C5D15; border-radius:8px;">
  7375. <div style="font-family:var(--font-head); font-weight:900; font-size:1.8rem; color:#2D9C5D; line-height:1;">4/4</div>
  7376. <div class="text-mono text-xs" style="color:#2D9C5D; margin-top:4px; letter-spacing:0.08em;">✅ 全达标</div>
  7377. </div>
  7378. </div>
  7379. </div>
  7380. <!-- 总分达成 -->
  7381. <div class="fade-up" style="background:linear-gradient(135deg, #2D9C5D15, #2D9C5D10); border:2px solid #2D9C5D; border-radius:var(--radius-md); padding:24px;">
  7382. <div class="text-mono text-xs" style="color:#2D9C5D; letter-spacing:0.2em; margin-bottom:12px;">🏆 OVERALL VERDICT · 总体决策结论</div>
  7383. <div style="display:grid; grid-template-columns:repeat(4, 1fr); gap:14px;">
  7384. <div style="text-align:center; padding:14px; background:#2D9C5D08; border-radius:8px;">
  7385. <div style="font-family:var(--font-head); font-weight:900; font-size:2.8rem; color:#2D9C5D; line-height:1;">18/20</div>
  7386. <div class="text-mono text-xs" style="color:#2D9C5D; margin-top:5px; letter-spacing:0.08em;">PASSED ITEMS</div>
  7387. <div style="font-size:0.72rem; color:var(--text-2); margin-top:6px;">90% 通过率</div>
  7388. </div>
  7389. <div style="text-align:center; padding:14px; background:#2D9C5D08; border-radius:8px;">
  7390. <div style="font-family:var(--font-head); font-weight:900; font-size:2.8rem; color:#2D9C5D; line-height:1;">83</div>
  7391. <div class="text-mono text-xs" style="color:#2D9C5D; margin-top:5px; letter-spacing:0.08em;">AVG SCORE</div>
  7392. <div style="font-size:0.72rem; color:var(--text-2); margin-top:6px;">全模块均分 83/100</div>
  7393. </div>
  7394. <div style="text-align:center; padding:14px; background:#D4A57408; border-radius:8px;">
  7395. <div style="font-family:var(--font-head); font-weight:900; font-size:2.8rem; color:#D4A574; line-height:1;">A</div>
  7396. <div class="text-mono text-xs" style="color:#D4A574; margin-top:5px; letter-spacing:0.08em;">LAUNCH GRADE</div>
  7397. <div style="font-size:0.72rem; color:var(--text-2); margin-top:6px;">A 级 · 可启动上市</div>
  7398. </div>
  7399. <div style="text-align:center; padding:14px; background:#FF8C4208; border-radius:8px;">
  7400. <div style="font-family:var(--font-head); font-weight:900; font-size:2.8rem; color:#FF8C42; line-height:1;">2</div>
  7401. <div class="text-mono text-xs" style="color:#FF8C42; margin-top:5px; letter-spacing:0.08em;">BORDERLINE</div>
  7402. <div style="font-size:0.72rem; color:var(--text-2); margin-top:6px;">礼品定价 + 药线话术待强化</div>
  7403. </div>
  7404. </div>
  7405. <div style="margin-top:16px; padding:14px 18px; background:var(--bg-1); border-left:3px solid #2D9C5D; border-radius:4px;">
  7406. <div style="font-size:0.9rem; color:var(--text-1); line-height:1.65;">
  7407. <strong style="color:#2D9C5D;">📣 结论:</strong>18/20 达标 + 均分 83 = <strong style="color:#D4A574;">A 级</strong>启动资格。2 项临界(礼品颜值 78 / 药食同源话术 72),需在 Q1 包装升级 + 药师培训阶段补强至 ≥85 分再全量铺货。
  7408. </div>
  7409. </div>
  7410. </div>
  7411. </div>
  7412. </section>
  7413. <section class="report-section" id="action-3" data-tone="green" data-slide-num="41">
  7414. <div class="section-inner">
  7415. <div class="section-head rise-in">
  7416. <div class="section-eyebrow" style="color:#2D9C5D;">7.3 · 10亿 ROADMAP × 4 CHANNELS</div>
  7417. <h2 class="text-h1"><span class="headline-anim">10 亿拆解 × 4 渠道落地 Roadmap</span></h2>
  7418. <p class="section-sub">药线 3 亿 + 礼品 2.5 亿 + 餐饮 2.5 亿 + 电商 2 亿 = <strong style="color:#2D9C5D;">10 亿</strong> · 2026 Q1-Q4 分季度里程碑</p>
  7419. </div>
  7420. <!-- Roadmap 时间线 -->
  7421. <div class="fade-up" style="background:var(--bg-1); border:1px solid var(--border); border-radius:var(--radius-md); padding:24px; margin-bottom:24px;">
  7422. <div class="text-mono text-xs" style="color:#2D9C5D; letter-spacing:0.15em; margin-bottom:16px;">2026 QUARTERLY MILESTONES · 4 渠道季度里程碑</div>
  7423. <div style="display:grid; gap:14px;">
  7424. <div style="background:#0085CA08; border:1px solid #0085CA33; border-left:4px solid #0085CA; border-radius:6px; padding:16px;">
  7425. <div style="display:grid; grid-template-columns:180px 1fr 220px; gap:16px; align-items:center;">
  7426. <div>
  7427. <div style="display:flex; align-items:center; gap:10px;">
  7428. <div style="width:44px; height:44px; background:#0085CA22; border-radius:50%; display:flex; align-items:center; justify-content:center; font-size:1.4rem;">🏥</div>
  7429. <div>
  7430. <div style="font-size:1.05rem; font-weight:800; color:var(--text-1);">药线</div>
  7431. <div style="font-family:var(--font-head); font-weight:900; font-size:1.6rem; color:#0085CA; line-height:1;">3亿</div>
  7432. </div>
  7433. </div>
  7434. </div>
  7435. <div style="display:grid; grid-template-columns:repeat(4, 1fr); gap:8px;">
  7436. <div style="padding:8px 10px; background:var(--bg-1); border:1px solid #0085CA33; border-radius:4px;">
  7437. <div class="text-mono text-xs" style="color:#0085CA; font-weight:700; margin-bottom:3px;">Q1</div>
  7438. <div style="font-size:0.7rem; color:var(--text-2); line-height:1.4;">板装 + 瓶装 2 SKU 上线</div>
  7439. </div>
  7440. <div style="padding:8px 10px; background:var(--bg-1); border:1px solid #0085CA33; border-radius:4px;">
  7441. <div class="text-mono text-xs" style="color:#0085CA; font-weight:700; margin-bottom:3px;">Q2</div>
  7442. <div style="font-size:0.7rem; color:var(--text-2); line-height:1.4;">药店铺货 1w 门店(一心堂/大参林)</div>
  7443. </div>
  7444. <div style="padding:8px 10px; background:var(--bg-1); border:1px solid #0085CA33; border-radius:4px;">
  7445. <div class="text-mono text-xs" style="color:#0085CA; font-weight:700; margin-bottom:3px;">Q3</div>
  7446. <div style="font-size:0.7rem; color:var(--text-2); line-height:1.4;">扩展至 3w 门店 + 医院便民柜</div>
  7447. </div>
  7448. <div style="padding:8px 10px; background:var(--bg-1); border:1px solid #0085CA33; border-radius:4px;">
  7449. <div class="text-mono text-xs" style="color:#0085CA; font-weight:700; margin-bottom:3px;">Q4</div>
  7450. <div style="font-size:0.7rem; color:var(--text-2); line-height:1.4;">药师培训 +医学期刊推广</div>
  7451. </div>
  7452. </div>
  7453. <div style="padding:10px 12px; background:var(--bg-1); border-radius:4px;">
  7454. <div class="text-mono text-xs" style="color:#0085CA; letter-spacing:0.08em; margin-bottom:3px;">🎯 年度 KPI</div>
  7455. <div style="font-size:0.72rem; color:var(--text-1); font-weight:600; line-height:1.5;">药店覆盖 3w · 月均动销 30 盒/店 · 年销 3 亿</div>
  7456. </div>
  7457. </div>
  7458. </div>
  7459. <div style="background:#D4A57408; border:1px solid #D4A57433; border-left:4px solid #D4A574; border-radius:6px; padding:16px;">
  7460. <div style="display:grid; grid-template-columns:180px 1fr 220px; gap:16px; align-items:center;">
  7461. <div>
  7462. <div style="display:flex; align-items:center; gap:10px;">
  7463. <div style="width:44px; height:44px; background:#D4A57422; border-radius:50%; display:flex; align-items:center; justify-content:center; font-size:1.4rem;">🎁</div>
  7464. <div>
  7465. <div style="font-size:1.05rem; font-weight:800; color:var(--text-1);">礼品</div>
  7466. <div style="font-family:var(--font-head); font-weight:900; font-size:1.6rem; color:#D4A574; line-height:1;">2.5亿</div>
  7467. </div>
  7468. </div>
  7469. </div>
  7470. <div style="display:grid; grid-template-columns:repeat(4, 1fr); gap:8px;">
  7471. <div style="padding:8px 10px; background:var(--bg-1); border:1px solid #D4A57433; border-radius:4px;">
  7472. <div class="text-mono text-xs" style="color:#D4A574; font-weight:700; margin-bottom:3px;">Q1</div>
  7473. <div style="font-size:0.7rem; color:var(--text-2); line-height:1.4;">3 SKU 礼盒(单瓶/双瓶/四瓶)设计+打样</div>
  7474. </div>
  7475. <div style="padding:8px 10px; background:var(--bg-1); border:1px solid #D4A57433; border-radius:4px;">
  7476. <div class="text-mono text-xs" style="color:#D4A574; font-weight:700; margin-bottom:3px;">Q2</div>
  7477. <div style="font-size:0.7rem; color:var(--text-2); line-height:1.4;">电商旗舰店 + 高端商超专柜上线</div>
  7478. </div>
  7479. <div style="padding:8px 10px; background:var(--bg-1); border:1px solid #D4A57433; border-radius:4px;">
  7480. <div class="text-mono text-xs" style="color:#D4A574; font-weight:700; margin-bottom:3px;">Q3</div>
  7481. <div style="font-size:0.7rem; color:var(--text-2); line-height:1.4;">企业团购渠道 + 节庆爆品准备</div>
  7482. </div>
  7483. <div style="padding:8px 10px; background:var(--bg-1); border:1px solid #D4A57433; border-radius:4px;">
  7484. <div class="text-mono text-xs" style="color:#D4A574; font-weight:700; margin-bottom:3px;">Q4</div>
  7485. <div style="font-size:0.7rem; color:var(--text-2); line-height:1.4;">中秋/春节双大促 GMV 峰值</div>
  7486. </div>
  7487. </div>
  7488. <div style="padding:10px 12px; background:var(--bg-1); border-radius:4px;">
  7489. <div class="text-mono text-xs" style="color:#D4A574; letter-spacing:0.08em; margin-bottom:3px;">🎯 年度 KPI</div>
  7490. <div style="font-size:0.72rem; color:var(--text-1); font-weight:600; line-height:1.5;">节庆 GMV 峰值 ×3 · 复购 40% · 年销 2.5 亿</div>
  7491. </div>
  7492. </div>
  7493. </div>
  7494. <div style="background:#FF8C4208; border:1px solid #FF8C4233; border-left:4px solid #FF8C42; border-radius:6px; padding:16px;">
  7495. <div style="display:grid; grid-template-columns:180px 1fr 220px; gap:16px; align-items:center;">
  7496. <div>
  7497. <div style="display:flex; align-items:center; gap:10px;">
  7498. <div style="width:44px; height:44px; background:#FF8C4222; border-radius:50%; display:flex; align-items:center; justify-content:center; font-size:1.4rem;">🍷</div>
  7499. <div>
  7500. <div style="font-size:1.05rem; font-weight:800; color:var(--text-1);">餐饮</div>
  7501. <div style="font-family:var(--font-head); font-weight:900; font-size:1.6rem; color:#FF8C42; line-height:1;">2.5亿</div>
  7502. </div>
  7503. </div>
  7504. </div>
  7505. <div style="display:grid; grid-template-columns:repeat(4, 1fr); gap:8px;">
  7506. <div style="padding:8px 10px; background:var(--bg-1); border:1px solid #FF8C4233; border-radius:4px;">
  7507. <div class="text-mono text-xs" style="color:#FF8C42; font-weight:700; margin-bottom:3px;">Q1</div>
  7508. <div style="font-size:0.7rem; color:var(--text-2); line-height:1.4;">锡纸小包 + 铁罐 2 SKU 上线</div>
  7509. </div>
  7510. <div style="padding:8px 10px; background:var(--bg-1); border:1px solid #FF8C4233; border-radius:4px;">
  7511. <div class="text-mono text-xs" style="color:#FF8C42; font-weight:700; margin-bottom:3px;">Q2</div>
  7512. <div style="font-size:0.7rem; color:var(--text-2); line-height:1.4;">B 端饭店/KTV 合作 200 家</div>
  7513. </div>
  7514. <div style="padding:8px 10px; background:var(--bg-1); border:1px solid #FF8C4233; border-radius:4px;">
  7515. <div class="text-mono text-xs" style="color:#FF8C42; font-weight:700; margin-bottom:3px;">Q3</div>
  7516. <div style="font-size:0.7rem; color:var(--text-2); line-height:1.4;">老板团购 / 企业客户 + 抖音场景植入</div>
  7517. </div>
  7518. <div style="padding:8px 10px; background:var(--bg-1); border:1px solid #FF8C4233; border-radius:4px;">
  7519. <div class="text-mono text-xs" style="color:#FF8C42; font-weight:700; margin-bottom:3px;">Q4</div>
  7520. <div style="font-size:0.7rem; color:var(--text-2); line-height:1.4;">应酬季高峰 · 酒桌分食社交裂变</div>
  7521. </div>
  7522. </div>
  7523. <div style="padding:10px 12px; background:var(--bg-1); border-radius:4px;">
  7524. <div class="text-mono text-xs" style="color:#FF8C42; letter-spacing:0.08em; margin-bottom:3px;">🎯 年度 KPI</div>
  7525. <div style="font-size:0.72rem; color:var(--text-1); font-weight:600; line-height:1.5;">B 端合作 500+ · 老板团购占 30% · 年销 2.5 亿</div>
  7526. </div>
  7527. </div>
  7528. </div>
  7529. <div style="background:#2D9C5D08; border:1px solid #2D9C5D33; border-left:4px solid #2D9C5D; border-radius:6px; padding:16px;">
  7530. <div style="display:grid; grid-template-columns:180px 1fr 220px; gap:16px; align-items:center;">
  7531. <div>
  7532. <div style="display:flex; align-items:center; gap:10px;">
  7533. <div style="width:44px; height:44px; background:#2D9C5D22; border-radius:50%; display:flex; align-items:center; justify-content:center; font-size:1.4rem;">💻</div>
  7534. <div>
  7535. <div style="font-size:1.05rem; font-weight:800; color:var(--text-1);">电商</div>
  7536. <div style="font-family:var(--font-head); font-weight:900; font-size:1.6rem; color:#2D9C5D; line-height:1;">2亿</div>
  7537. </div>
  7538. </div>
  7539. </div>
  7540. <div style="display:grid; grid-template-columns:repeat(4, 1fr); gap:8px;">
  7541. <div style="padding:8px 10px; background:var(--bg-1); border:1px solid #2D9C5D33; border-radius:4px;">
  7542. <div class="text-mono text-xs" style="color:#2D9C5D; font-weight:700; margin-bottom:3px;">Q1</div>
  7543. <div style="font-size:0.7rem; color:var(--text-2); line-height:1.4;">天猫 / 京东 / 拼多多旗舰店上线 3 SKU</div>
  7544. </div>
  7545. <div style="padding:8px 10px; background:var(--bg-1); border:1px solid #2D9C5D33; border-radius:4px;">
  7546. <div class="text-mono text-xs" style="color:#2D9C5D; font-weight:700; margin-bottom:3px;">Q2</div>
  7547. <div style="font-size:0.7rem; color:var(--text-2); line-height:1.4;">一物一码 + 会员小程序 MVP</div>
  7548. </div>
  7549. <div style="padding:8px 10px; background:var(--bg-1); border:1px solid #2D9C5D33; border-radius:4px;">
  7550. <div class="text-mono text-xs" style="color:#2D9C5D; font-weight:700; margin-bottom:3px;">Q3</div>
  7551. <div style="font-size:0.7rem; color:var(--text-2); line-height:1.4;">KOL 矩阵种草 + 618 大促</div>
  7552. </div>
  7553. <div style="padding:8px 10px; background:var(--bg-1); border:1px solid #2D9C5D33; border-radius:4px;">
  7554. <div class="text-mono text-xs" style="color:#2D9C5D; font-weight:700; margin-bottom:3px;">Q4</div>
  7555. <div style="font-size:0.7rem; color:var(--text-2); line-height:1.4;">双 11 峰值 + 30 日复购循环</div>
  7556. </div>
  7557. </div>
  7558. <div style="padding:10px 12px; background:var(--bg-1); border-radius:4px;">
  7559. <div class="text-mono text-xs" style="color:#2D9C5D; letter-spacing:0.08em; margin-bottom:3px;">🎯 年度 KPI</div>
  7560. <div style="font-size:0.72rem; color:var(--text-1); font-weight:600; line-height:1.5;">月均 GMV 1800w+ · 首购 6% / 复购 40% · 年销 2 亿</div>
  7561. </div>
  7562. </div>
  7563. </div>
  7564. </div>
  7565. </div>
  7566. <!-- 10 亿构成可视化 -->
  7567. <div class="fade-up" style="background:linear-gradient(135deg, #2D9C5D10, #2D9C5D08); border:1px solid #2D9C5D44; border-radius:var(--radius-md); padding:24px;">
  7568. <div class="text-mono text-xs" style="color:#2D9C5D; letter-spacing:0.15em; margin-bottom:16px;">10 亿 TOTAL · 年度营收可视化</div>
  7569. <div style="display:flex; align-items:stretch; border-radius:8px; overflow:hidden; height:80px; box-shadow:0 4px 20px rgba(0,0,0,0.1); margin-bottom:14px;">
  7570. <div style="flex:3; background:#0085CA; color:#fff; padding:14px; display:flex; flex-direction:column; justify-content:center; align-items:center; position:relative;">
  7571. <div style="font-size:1.4rem;">🏥</div>
  7572. <div style="font-family:var(--font-head); font-weight:900; font-size:1.5rem; line-height:1; margin-top:2px;">3亿</div>
  7573. <div style="font-size:0.72rem; opacity:0.9; margin-top:2px;">药线(30%)</div>
  7574. </div>
  7575. <div style="flex:2.5; background:#D4A574; color:#fff; padding:14px; display:flex; flex-direction:column; justify-content:center; align-items:center; position:relative;">
  7576. <div style="font-size:1.4rem;">🎁</div>
  7577. <div style="font-family:var(--font-head); font-weight:900; font-size:1.5rem; line-height:1; margin-top:2px;">2.5亿</div>
  7578. <div style="font-size:0.72rem; opacity:0.9; margin-top:2px;">礼品(25%)</div>
  7579. </div>
  7580. <div style="flex:2.5; background:#FF8C42; color:#fff; padding:14px; display:flex; flex-direction:column; justify-content:center; align-items:center; position:relative;">
  7581. <div style="font-size:1.4rem;">🍷</div>
  7582. <div style="font-family:var(--font-head); font-weight:900; font-size:1.5rem; line-height:1; margin-top:2px;">2.5亿</div>
  7583. <div style="font-size:0.72rem; opacity:0.9; margin-top:2px;">餐饮(25%)</div>
  7584. </div>
  7585. <div style="flex:2; background:#2D9C5D; color:#fff; padding:14px; display:flex; flex-direction:column; justify-content:center; align-items:center; position:relative;">
  7586. <div style="font-size:1.4rem;">💻</div>
  7587. <div style="font-family:var(--font-head); font-weight:900; font-size:1.5rem; line-height:1; margin-top:2px;">2亿</div>
  7588. <div style="font-size:0.72rem; opacity:0.9; margin-top:2px;">电商(20%)</div>
  7589. </div>
  7590. </div>
  7591. <div style="display:grid; grid-template-columns:repeat(4, 1fr); gap:10px;">
  7592. <div style="padding:12px; background:#0085CA10; border-left:3px solid #0085CA; border-radius:4px;">
  7593. <div style="font-size:0.88rem; font-weight:800; color:#0085CA; margin-bottom:4px;">药线护城河</div>
  7594. <div style="font-size:0.72rem; color:var(--text-2); line-height:1.5;">蓝帽 + 3w 药店 + 医院准入</div>
  7595. </div>
  7596. <div style="padding:12px; background:#D4A57410; border-left:3px solid #D4A574; border-radius:4px;">
  7597. <div style="font-size:0.88rem; font-weight:800; color:#D4A574; margin-bottom:4px;">礼品溢价</div>
  7598. <div style="font-size:0.72rem; color:var(--text-2); line-height:1.5;">新中式礼盒 + 节庆双峰</div>
  7599. </div>
  7600. <div style="padding:12px; background:#FF8C4210; border-left:3px solid #FF8C42; border-radius:4px;">
  7601. <div style="font-size:0.88rem; font-weight:800; color:#FF8C42; margin-bottom:4px;">餐饮社交</div>
  7602. <div style="font-size:0.72rem; color:var(--text-2); line-height:1.5;">DMY 真体感 + 锡纸分食</div>
  7603. </div>
  7604. <div style="padding:12px; background:#2D9C5D10; border-left:3px solid #2D9C5D; border-radius:4px;">
  7605. <div style="font-size:0.88rem; font-weight:800; color:#2D9C5D; margin-bottom:4px;">电商差异</div>
  7606. <div style="font-size:0.72rem; color:var(--text-2); line-height:1.5;">一物一码 + 藤茶 DMY 科普</div>
  7607. </div>
  7608. </div>
  7609. </div>
  7610. </div>
  7611. </section>
  7612. <section class="report-section" id="action-4" data-tone="green" data-slide-num="42">
  7613. <div class="section-inner">
  7614. <div class="section-head rise-in">
  7615. <div class="section-eyebrow" style="color:#2D9C5D;">7.4 · NEXT STAGE WORKFLOWS</div>
  7616. <h2 class="text-h1"><span class="headline-anim">下阶段衔接 · 6 条工作流 FROM VOC TO LAUNCH</span></h2>
  7617. <p class="section-sub">本 VOC 验证报告作为第 <strong style="color:#2D9C5D;">02</strong> 个输入文档,向下延伸 <strong style="color:#2D9C5D;">6 条核心工作流</strong>,直通 2026 新品上市</p>
  7618. </div>
  7619. <!-- 6 工作流卡片 -->
  7620. <div class="fade-up" style="display:grid; grid-template-columns:repeat(3, 1fr); gap:14px; margin-bottom:24px;">
  7621. <div style="background:var(--bg-1); border:1px solid #0085CA44; border-top:4px solid #0085CA; border-radius:var(--radius-md); padding:18px;">
  7622. <div style="display:flex; align-items:center; justify-content:space-between; margin-bottom:12px;">
  7623. <div style="display:flex; align-items:center; gap:10px;">
  7624. <div style="width:42px; height:42px; background:#0085CA22; border-radius:50%; display:flex; align-items:center; justify-content:center; font-size:1.4rem;">📋</div>
  7625. <div>
  7626. <div class="text-mono text-xs" style="color:#0085CA; letter-spacing:0.1em;">WORKFLOW 03</div>
  7627. <div style="font-size:1rem; font-weight:800; color:var(--text-1);">产品立项 PRD</div>
  7628. </div>
  7629. </div>
  7630. <div style="padding:3px 8px; background:#FF4D8D22; color:#FF4D8D; border-radius:3px; font-family:var(--font-mono); font-size:0.7rem; font-weight:700;">P0</div>
  7631. </div>
  7632. <div style="margin-bottom:10px;">
  7633. <div class="text-mono text-xs" style="color:var(--text-3); letter-spacing:0.08em; margin-bottom:5px;">🔗 本报告输入</div>
  7634. <ul style="margin:0; padding:0; list-style:none;">
  7635. <li style="padding:2px 0; font-size:0.7rem; color:var(--text-2); line-height:1.4; padding-left:12px; position:relative;"><span style="position:absolute; left:0; color:#0085CA;">▸</span>本报告 Ch2 包装(SKU 12 × 4 渠道)</li><li style="padding:2px 0; font-size:0.7rem; color:var(--text-2); line-height:1.4; padding-left:12px; position:relative;"><span style="position:absolute; left:0; color:#0085CA;">▸</span>Ch3 定价(价格带)</li><li style="padding:2px 0; font-size:0.7rem; color:var(--text-2); line-height:1.4; padding-left:12px; position:relative;"><span style="position:absolute; left:0; color:#0085CA;">▸</span>Ch4.1 藤茶 DMY 概念</li>
  7636. </ul>
  7637. </div>
  7638. <div style="margin-bottom:10px;">
  7639. <div class="text-mono text-xs" style="color:var(--text-3); letter-spacing:0.08em; margin-bottom:5px;">📤 产出</div>
  7640. <ul style="margin:0; padding:0; list-style:none;">
  7641. <li style="padding:2px 0; font-size:0.7rem; color:var(--text-2); line-height:1.4; padding-left:12px; position:relative;"><span style="position:absolute; left:0; color:#0085CA;">✓</span>12 SKU 产品规格终稿</li><li style="padding:2px 0; font-size:0.7rem; color:var(--text-2); line-height:1.4; padding-left:12px; position:relative;"><span style="position:absolute; left:0; color:#0085CA;">✓</span>打样周期 4 周</li><li style="padding:2px 0; font-size:0.7rem; color:var(--text-2); line-height:1.4; padding-left:12px; position:relative;"><span style="position:absolute; left:0; color:#0085CA;">✓</span>合规报批材料</li><li style="padding:2px 0; font-size:0.7rem; color:var(--text-2); line-height:1.4; padding-left:12px; position:relative;"><span style="position:absolute; left:0; color:#0085CA;">✓</span>上市 Ready Checklist</li>
  7642. </ul>
  7643. </div>
  7644. <div style="padding-top:8px; border-top:1px dashed var(--border); display:grid; grid-template-columns:1fr 1fr; gap:8px;">
  7645. <div>
  7646. <div class="text-mono text-xs" style="color:var(--text-3); letter-spacing:0.06em; margin-bottom:2px;">⏱ 排期</div>
  7647. <div style="font-size:0.7rem; color:var(--text-1); font-weight:600;">2026 Q1 · 8 周</div>
  7648. </div>
  7649. <div>
  7650. <div class="text-mono text-xs" style="color:var(--text-3); letter-spacing:0.06em; margin-bottom:2px;">🎯 KPI</div>
  7651. <div style="font-size:0.7rem; color:#0085CA; font-weight:700;">首批试产合格率 ≥ 98%</div>
  7652. </div>
  7653. </div>
  7654. </div>
  7655. <div style="background:var(--bg-1); border:1px solid #FF8C4244; border-top:4px solid #FF8C42; border-radius:var(--radius-md); padding:18px;">
  7656. <div style="display:flex; align-items:center; justify-content:space-between; margin-bottom:12px;">
  7657. <div style="display:flex; align-items:center; gap:10px;">
  7658. <div style="width:42px; height:42px; background:#FF8C4222; border-radius:50%; display:flex; align-items:center; justify-content:center; font-size:1.4rem;">📢</div>
  7659. <div>
  7660. <div class="text-mono text-xs" style="color:#FF8C42; letter-spacing:0.1em;">WORKFLOW 04</div>
  7661. <div style="font-size:1rem; font-weight:800; color:var(--text-1);">营销复合体方案</div>
  7662. </div>
  7663. </div>
  7664. <div style="padding:3px 8px; background:#FF4D8D22; color:#FF4D8D; border-radius:3px; font-family:var(--font-mono); font-size:0.7rem; font-weight:700;">P0</div>
  7665. </div>
  7666. <div style="margin-bottom:10px;">
  7667. <div class="text-mono text-xs" style="color:var(--text-3); letter-spacing:0.08em; margin-bottom:5px;">🔗 本报告输入</div>
  7668. <ul style="margin:0; padding:0; list-style:none;">
  7669. <li style="padding:2px 0; font-size:0.7rem; color:var(--text-2); line-height:1.4; padding-left:12px; position:relative;"><span style="position:absolute; left:0; color:#FF8C42;">▸</span>本报告 Ch4 定位话术 4 渠道包</li><li style="padding:2px 0; font-size:0.7rem; color:var(--text-2); line-height:1.4; padding-left:12px; position:relative;"><span style="position:absolute; left:0; color:#FF8C42;">▸</span>Ch5 场景适配 4 渠道策略</li><li style="padding:2px 0; font-size:0.7rem; color:var(--text-2); line-height:1.4; padding-left:12px; position:relative;"><span style="position:absolute; left:0; color:#FF8C42;">▸</span>Ch6 竞品差异话术</li>
  7670. </ul>
  7671. </div>
  7672. <div style="margin-bottom:10px;">
  7673. <div class="text-mono text-xs" style="color:var(--text-3); letter-spacing:0.08em; margin-bottom:5px;">📤 产出</div>
  7674. <ul style="margin:0; padding:0; list-style:none;">
  7675. <li style="padding:2px 0; font-size:0.7rem; color:var(--text-2); line-height:1.4; padding-left:12px; position:relative;"><span style="position:absolute; left:0; color:#FF8C42;">✓</span>STP × 4P 策略矩阵</li><li style="padding:2px 0; font-size:0.7rem; color:var(--text-2); line-height:1.4; padding-left:12px; position:relative;"><span style="position:absolute; left:0; color:#FF8C42;">✓</span>Key Message 包</li><li style="padding:2px 0; font-size:0.7rem; color:var(--text-2); line-height:1.4; padding-left:12px; position:relative;"><span style="position:absolute; left:0; color:#FF8C42;">✓</span>媒介预算分配</li><li style="padding:2px 0; font-size:0.7rem; color:var(--text-2); line-height:1.4; padding-left:12px; position:relative;"><span style="position:absolute; left:0; color:#FF8C42;">✓</span>2026 全年传播节奏</li>
  7676. </ul>
  7677. </div>
  7678. <div style="padding-top:8px; border-top:1px dashed var(--border); display:grid; grid-template-columns:1fr 1fr; gap:8px;">
  7679. <div>
  7680. <div class="text-mono text-xs" style="color:var(--text-3); letter-spacing:0.06em; margin-bottom:2px;">⏱ 排期</div>
  7681. <div style="font-size:0.7rem; color:var(--text-1); font-weight:600;">2026 Q1 · 8 周(与 PRD 并行)</div>
  7682. </div>
  7683. <div>
  7684. <div class="text-mono text-xs" style="color:var(--text-3); letter-spacing:0.06em; margin-bottom:2px;">🎯 KPI</div>
  7685. <div style="font-size:0.7rem; color:#FF8C42; font-weight:700;">心智认知 ≥ 30% · GMV 10 亿</div>
  7686. </div>
  7687. </div>
  7688. </div>
  7689. <div style="background:var(--bg-1); border:1px solid #8B5CF644; border-top:4px solid #8B5CF6; border-radius:var(--radius-md); padding:18px;">
  7690. <div style="display:flex; align-items:center; justify-content:space-between; margin-bottom:12px;">
  7691. <div style="display:flex; align-items:center; gap:10px;">
  7692. <div style="width:42px; height:42px; background:#8B5CF622; border-radius:50%; display:flex; align-items:center; justify-content:center; font-size:1.4rem;">🎨</div>
  7693. <div>
  7694. <div class="text-mono text-xs" style="color:#8B5CF6; letter-spacing:0.1em;">WORKFLOW 05</div>
  7695. <div style="font-size:1rem; font-weight:800; color:var(--text-1);">海报 AI 提示词体系</div>
  7696. </div>
  7697. </div>
  7698. <div style="padding:3px 8px; background:#FF4D8D22; color:#FF4D8D; border-radius:3px; font-family:var(--font-mono); font-size:0.7rem; font-weight:700;">P0</div>
  7699. </div>
  7700. <div style="margin-bottom:10px;">
  7701. <div class="text-mono text-xs" style="color:var(--text-3); letter-spacing:0.08em; margin-bottom:5px;">🔗 本报告输入</div>
  7702. <ul style="margin:0; padding:0; list-style:none;">
  7703. <li style="padding:2px 0; font-size:0.7rem; color:var(--text-2); line-height:1.4; padding-left:12px; position:relative;"><span style="position:absolute; left:0; color:#8B5CF6;">▸</span>本报告 Ch2 包装视觉语言</li><li style="padding:2px 0; font-size:0.7rem; color:var(--text-2); line-height:1.4; padding-left:12px; position:relative;"><span style="position:absolute; left:0; color:#8B5CF6;">▸</span>Ch4 话术包</li><li style="padding:2px 0; font-size:0.7rem; color:var(--text-2); line-height:1.4; padding-left:12px; position:relative;"><span style="position:absolute; left:0; color:#8B5CF6;">▸</span>Swisse / 中式草本风格参考</li>
  7704. </ul>
  7705. </div>
  7706. <div style="margin-bottom:10px;">
  7707. <div class="text-mono text-xs" style="color:var(--text-3); letter-spacing:0.08em; margin-bottom:5px;">📤 产出</div>
  7708. <ul style="margin:0; padding:0; list-style:none;">
  7709. <li style="padding:2px 0; font-size:0.7rem; color:var(--text-2); line-height:1.4; padding-left:12px; position:relative;"><span style="position:absolute; left:0; color:#8B5CF6;">✓</span>MJ / SD 提示词库(100+ 模板)</li><li style="padding:2px 0; font-size:0.7rem; color:var(--text-2); line-height:1.4; padding-left:12px; position:relative;"><span style="position:absolute; left:0; color:#8B5CF6;">✓</span>4 渠道创意脚本</li><li style="padding:2px 0; font-size:0.7rem; color:var(--text-2); line-height:1.4; padding-left:12px; position:relative;"><span style="position:absolute; left:0; color:#8B5CF6;">✓</span>DAM 资产管理规范</li>
  7710. </ul>
  7711. </div>
  7712. <div style="padding-top:8px; border-top:1px dashed var(--border); display:grid; grid-template-columns:1fr 1fr; gap:8px;">
  7713. <div>
  7714. <div class="text-mono text-xs" style="color:var(--text-3); letter-spacing:0.06em; margin-bottom:2px;">⏱ 排期</div>
  7715. <div style="font-size:0.7rem; color:var(--text-1); font-weight:600;">2026 Q1 · 与营销并行</div>
  7716. </div>
  7717. <div>
  7718. <div class="text-mono text-xs" style="color:var(--text-3); letter-spacing:0.06em; margin-bottom:2px;">🎯 KPI</div>
  7719. <div style="font-size:0.7rem; color:#8B5CF6; font-weight:700;">日产出素材 ≥ 50 张 · 品牌符合度 ≥ 90%</div>
  7720. </div>
  7721. </div>
  7722. </div>
  7723. <div style="background:var(--bg-1); border:1px solid #2D9C5D44; border-top:4px solid #2D9C5D; border-radius:var(--radius-md); padding:18px;">
  7724. <div style="display:flex; align-items:center; justify-content:space-between; margin-bottom:12px;">
  7725. <div style="display:flex; align-items:center; gap:10px;">
  7726. <div style="width:42px; height:42px; background:#2D9C5D22; border-radius:50%; display:flex; align-items:center; justify-content:center; font-size:1.4rem;">🚚</div>
  7727. <div>
  7728. <div class="text-mono text-xs" style="color:#2D9C5D; letter-spacing:0.1em;">WORKFLOW 06</div>
  7729. <div style="font-size:1rem; font-weight:800; color:var(--text-1);">4 渠道执行计划</div>
  7730. </div>
  7731. </div>
  7732. <div style="padding:3px 8px; background:#FF4D8D22; color:#FF4D8D; border-radius:3px; font-family:var(--font-mono); font-size:0.7rem; font-weight:700;">P0</div>
  7733. </div>
  7734. <div style="margin-bottom:10px;">
  7735. <div class="text-mono text-xs" style="color:var(--text-3); letter-spacing:0.08em; margin-bottom:5px;">🔗 本报告输入</div>
  7736. <ul style="margin:0; padding:0; list-style:none;">
  7737. <li style="padding:2px 0; font-size:0.7rem; color:var(--text-2); line-height:1.4; padding-left:12px; position:relative;"><span style="position:absolute; left:0; color:#2D9C5D;">▸</span>本报告 Ch5 4 渠道场景</li><li style="padding:2px 0; font-size:0.7rem; color:var(--text-2); line-height:1.4; padding-left:12px; position:relative;"><span style="position:absolute; left:0; color:#2D9C5D;">▸</span>Ch7.3 Roadmap</li><li style="padding:2px 0; font-size:0.7rem; color:var(--text-2); line-height:1.4; padding-left:12px; position:relative;"><span style="position:absolute; left:0; color:#2D9C5D;">▸</span>Ch3 定价表</li>
  7738. </ul>
  7739. </div>
  7740. <div style="margin-bottom:10px;">
  7741. <div class="text-mono text-xs" style="color:var(--text-3); letter-spacing:0.08em; margin-bottom:5px;">📤 产出</div>
  7742. <ul style="margin:0; padding:0; list-style:none;">
  7743. <li style="padding:2px 0; font-size:0.7rem; color:var(--text-2); line-height:1.4; padding-left:12px; position:relative;"><span style="position:absolute; left:0; color:#2D9C5D;">✓</span>药店铺货计划</li><li style="padding:2px 0; font-size:0.7rem; color:var(--text-2); line-height:1.4; padding-left:12px; position:relative;"><span style="position:absolute; left:0; color:#2D9C5D;">✓</span>电商排期</li><li style="padding:2px 0; font-size:0.7rem; color:var(--text-2); line-height:1.4; padding-left:12px; position:relative;"><span style="position:absolute; left:0; color:#2D9C5D;">✓</span>饭店/KTV 合作签约</li><li style="padding:2px 0; font-size:0.7rem; color:var(--text-2); line-height:1.4; padding-left:12px; position:relative;"><span style="position:absolute; left:0; color:#2D9C5D;">✓</span>O2O 接入</li>
  7744. </ul>
  7745. </div>
  7746. <div style="padding-top:8px; border-top:1px dashed var(--border); display:grid; grid-template-columns:1fr 1fr; gap:8px;">
  7747. <div>
  7748. <div class="text-mono text-xs" style="color:var(--text-3); letter-spacing:0.06em; margin-bottom:2px;">⏱ 排期</div>
  7749. <div style="font-size:0.7rem; color:var(--text-1); font-weight:600;">2026 Q1-Q2 · 6 个月</div>
  7750. </div>
  7751. <div>
  7752. <div class="text-mono text-xs" style="color:var(--text-3); letter-spacing:0.06em; margin-bottom:2px;">🎯 KPI</div>
  7753. <div style="font-size:0.7rem; color:#2D9C5D; font-weight:700;">药店 3w+ · B 端 500+ · 电商 3 大平台覆盖</div>
  7754. </div>
  7755. </div>
  7756. </div>
  7757. <div style="background:var(--bg-1); border:1px solid #D4A57444; border-top:4px solid #D4A574; border-radius:var(--radius-md); padding:18px;">
  7758. <div style="display:flex; align-items:center; justify-content:space-between; margin-bottom:12px;">
  7759. <div style="display:flex; align-items:center; gap:10px;">
  7760. <div style="width:42px; height:42px; background:#D4A57422; border-radius:50%; display:flex; align-items:center; justify-content:center; font-size:1.4rem;">📊</div>
  7761. <div>
  7762. <div class="text-mono text-xs" style="color:#D4A574; letter-spacing:0.1em;">WORKFLOW 07</div>
  7763. <div style="font-size:1rem; font-weight:800; color:var(--text-1);">一物一码数据闭环</div>
  7764. </div>
  7765. </div>
  7766. <div style="padding:3px 8px; background:#FF8C4222; color:#FF8C42; border-radius:3px; font-family:var(--font-mono); font-size:0.7rem; font-weight:700;">P1</div>
  7767. </div>
  7768. <div style="margin-bottom:10px;">
  7769. <div class="text-mono text-xs" style="color:var(--text-3); letter-spacing:0.08em; margin-bottom:5px;">🔗 本报告输入</div>
  7770. <ul style="margin:0; padding:0; list-style:none;">
  7771. <li style="padding:2px 0; font-size:0.7rem; color:var(--text-2); line-height:1.4; padding-left:12px; position:relative;"><span style="position:absolute; left:0; color:#D4A574;">▸</span>本报告 Ch4.4 社交货币</li><li style="padding:2px 0; font-size:0.7rem; color:var(--text-2); line-height:1.4; padding-left:12px; position:relative;"><span style="position:absolute; left:0; color:#D4A574;">▸</span>Ch5.4 电商会员逻辑</li><li style="padding:2px 0; font-size:0.7rem; color:var(--text-2); line-height:1.4; padding-left:12px; position:relative;"><span style="position:absolute; left:0; color:#D4A574;">▸</span>VOC 持续监测机制</li>
  7772. </ul>
  7773. </div>
  7774. <div style="margin-bottom:10px;">
  7775. <div class="text-mono text-xs" style="color:var(--text-3); letter-spacing:0.08em; margin-bottom:5px;">📤 产出</div>
  7776. <ul style="margin:0; padding:0; list-style:none;">
  7777. <li style="padding:2px 0; font-size:0.7rem; color:var(--text-2); line-height:1.4; padding-left:12px; position:relative;"><span style="position:absolute; left:0; color:#D4A574;">✓</span>扫码数据中台</li><li style="padding:2px 0; font-size:0.7rem; color:var(--text-2); line-height:1.4; padding-left:12px; position:relative;"><span style="position:absolute; left:0; color:#D4A574;">✓</span>服用小程序 MVP</li><li style="padding:2px 0; font-size:0.7rem; color:var(--text-2); line-height:1.4; padding-left:12px; position:relative;"><span style="position:absolute; left:0; color:#D4A574;">✓</span>NPS 自动化</li><li style="padding:2px 0; font-size:0.7rem; color:var(--text-2); line-height:1.4; padding-left:12px; position:relative;"><span style="position:absolute; left:0; color:#D4A574;">✓</span>VOC 持续仪表盘</li>
  7778. </ul>
  7779. </div>
  7780. <div style="padding-top:8px; border-top:1px dashed var(--border); display:grid; grid-template-columns:1fr 1fr; gap:8px;">
  7781. <div>
  7782. <div class="text-mono text-xs" style="color:var(--text-3); letter-spacing:0.06em; margin-bottom:2px;">⏱ 排期</div>
  7783. <div style="font-size:0.7rem; color:var(--text-1); font-weight:600;">2026 Q2 MVP · Q3 迭代</div>
  7784. </div>
  7785. <div>
  7786. <div class="text-mono text-xs" style="color:var(--text-3); letter-spacing:0.06em; margin-bottom:2px;">🎯 KPI</div>
  7787. <div style="font-size:0.7rem; color:#D4A574; font-weight:700;">扫码率 ≥ 40% · 30 日留存 ≥ 62%</div>
  7788. </div>
  7789. </div>
  7790. </div>
  7791. <div style="background:var(--bg-1); border:1px solid #FF4D8D44; border-top:4px solid #FF4D8D; border-radius:var(--radius-md); padding:18px;">
  7792. <div style="display:flex; align-items:center; justify-content:space-between; margin-bottom:12px;">
  7793. <div style="display:flex; align-items:center; gap:10px;">
  7794. <div style="width:42px; height:42px; background:#FF4D8D22; border-radius:50%; display:flex; align-items:center; justify-content:center; font-size:1.4rem;">📰</div>
  7795. <div>
  7796. <div class="text-mono text-xs" style="color:#FF4D8D; letter-spacing:0.1em;">WORKFLOW 08</div>
  7797. <div style="font-size:1rem; font-weight:800; color:var(--text-1);">PR / 科普内容矩阵</div>
  7798. </div>
  7799. </div>
  7800. <div style="padding:3px 8px; background:#FF8C4222; color:#FF8C42; border-radius:3px; font-family:var(--font-mono); font-size:0.7rem; font-weight:700;">P1</div>
  7801. </div>
  7802. <div style="margin-bottom:10px;">
  7803. <div class="text-mono text-xs" style="color:var(--text-3); letter-spacing:0.08em; margin-bottom:5px;">🔗 本报告输入</div>
  7804. <ul style="margin:0; padding:0; list-style:none;">
  7805. <li style="padding:2px 0; font-size:0.7rem; color:var(--text-2); line-height:1.4; padding-left:12px; position:relative;"><span style="position:absolute; left:0; color:#FF4D8D;">▸</span>本报告 Ch4.1 DMY 科普要点</li><li style="padding:2px 0; font-size:0.7rem; color:var(--text-2); line-height:1.4; padding-left:12px; position:relative;"><span style="position:absolute; left:0; color:#FF4D8D;">▸</span>Ch6 竞品打脸素材</li><li style="padding:2px 0; font-size:0.7rem; color:var(--text-2); line-height:1.4; padding-left:12px; position:relative;"><span style="position:absolute; left:0; color:#FF4D8D;">▸</span>海外 Amazon 差评洞察</li>
  7806. </ul>
  7807. </div>
  7808. <div style="margin-bottom:10px;">
  7809. <div class="text-mono text-xs" style="color:var(--text-3); letter-spacing:0.08em; margin-bottom:5px;">📤 产出</div>
  7810. <ul style="margin:0; padding:0; list-style:none;">
  7811. <li style="padding:2px 0; font-size:0.7rem; color:var(--text-2); line-height:1.4; padding-left:12px; position:relative;"><span style="position:absolute; left:0; color:#FF4D8D;">✓</span>丁香医生 / 医学界合作 PR</li><li style="padding:2px 0; font-size:0.7rem; color:var(--text-2); line-height:1.4; padding-left:12px; position:relative;"><span style="position:absolute; left:0; color:#FF4D8D;">✓</span>小红书 100+ KOC</li><li style="padding:2px 0; font-size:0.7rem; color:var(--text-2); line-height:1.4; padding-left:12px; position:relative;"><span style="position:absolute; left:0; color:#FF4D8D;">✓</span>抖音医生矩阵</li><li style="padding:2px 0; font-size:0.7rem; color:var(--text-2); line-height:1.4; padding-left:12px; position:relative;"><span style="position:absolute; left:0; color:#FF4D8D;">✓</span>&quot;护肝真相&quot;新品发布会</li>
  7812. </ul>
  7813. </div>
  7814. <div style="padding-top:8px; border-top:1px dashed var(--border); display:grid; grid-template-columns:1fr 1fr; gap:8px;">
  7815. <div>
  7816. <div class="text-mono text-xs" style="color:var(--text-3); letter-spacing:0.06em; margin-bottom:2px;">⏱ 排期</div>
  7817. <div style="font-size:0.7rem; color:var(--text-1); font-weight:600;">2026 Q2 启动 · 持续运营</div>
  7818. </div>
  7819. <div>
  7820. <div class="text-mono text-xs" style="color:var(--text-3); letter-spacing:0.06em; margin-bottom:2px;">🎯 KPI</div>
  7821. <div style="font-size:0.7rem; color:#FF4D8D; font-weight:700;">科普曝光 ≥ 2 亿 · 舆情正面率 ≥ 85%</div>
  7822. </div>
  7823. </div>
  7824. </div>
  7825. </div>
  7826. <!-- 最终封印 · 报告完结 -->
  7827. <div class="fade-up" style="background:linear-gradient(135deg, #2D9C5D15, #2D9C5D10, #FF4D8D10); border:2px solid #2D9C5D; border-radius:var(--radius-md); padding:32px; text-align:center;">
  7828. <div class="text-mono text-xs" style="color:#2D9C5D; letter-spacing:0.2em; margin-bottom:10px;">THE VOC IS VALIDATED · 报告封印 · 2026-04-19</div>
  7829. <h3 style="font-family:var(--font-head); font-weight:900; font-size:2rem; color:var(--text-1); margin:0 0 14px; line-height:1.3;">
  7830. <span style="color:#2D9C5D;">藤茶 DMY</span> ×
  7831. <span style="color:#0085CA;">4 渠道</span> ×
  7832. <span style="color:#D4A574;">10 亿</span>
  7833. </h3>
  7834. <div style="color:var(--text-2); font-size:0.95rem; line-height:1.7; max-width:780px; margin:0 auto 18px;">
  7835. 本报告基于 <strong style="color:#2D9C5D;">7,715</strong> 条真实 VOC 评论(4,511 小红书 + 627 抖音 + 2,577 Amazon) + <strong style="color:#2D9C5D;">46</strong> 关键词 + <strong style="color:#2D9C5D;">H1-H8 8 个</strong> 假设验证,得出 <strong style="color:#D4A574;">A 级上市资格(18/20 达标 · 均分 83)</strong>,后续交棒给 <strong style="color:#2D9C5D;">6 个下阶段工作流</strong>。
  7836. </div>
  7837. <div style="display:inline-flex; align-items:center; gap:14px; padding:12px 24px; background:var(--bg-1); border:1px solid #2D9C5D44; border-radius:999px;">
  7838. <span style="font-size:1.4rem;">🎬</span>
  7839. <span class="text-mono text-xs" style="color:#2D9C5D; letter-spacing:0.15em; font-weight:800;">READY TO LAUNCH · 2026 Q1-Q4 · 10 亿</span>
  7840. <span style="font-size:1.4rem;">🚀</span>
  7841. </div>
  7842. </div>
  7843. </div>
  7844. </section>
  7845. </main>
  7846. <script>
  7847. (function(){
  7848. 'use strict';
  7849. var slides = [];
  7850. var currentSlide = 0;
  7851. var firstScrolled = false;
  7852. // —— 1) 分片标题动画:把每个 .headline-anim 文本切成 .char 逐字入场 ——
  7853. function splitHeadlines(){
  7854. var els = document.querySelectorAll('.headline-anim');
  7855. els.forEach(function(el){
  7856. if (el.dataset.split === '1') return;
  7857. el.dataset.split = '1';
  7858. var text = el.textContent;
  7859. el.textContent = '';
  7860. var chars = Array.from(text);
  7861. chars.forEach(function(ch, i){
  7862. var span = document.createElement('span');
  7863. span.className = 'char';
  7864. span.textContent = ch === ' ' ? '\u00A0' : ch;
  7865. span.style.transitionDelay = (i * 28) + 'ms';
  7866. el.appendChild(span);
  7867. });
  7868. });
  7869. }
  7870. // —— 2) Fade / Rise / Headline 统一的 IntersectionObserver ——
  7871. function initReveal(){
  7872. var selectors = ['.fade-up', '.rise-in', '.headline-anim'];
  7873. var els = document.querySelectorAll(selectors.join(','));
  7874. if (!('IntersectionObserver' in window)){
  7875. els.forEach(function(el){ el.classList.add('is-visible'); });
  7876. return;
  7877. }
  7878. var io = new IntersectionObserver(function(entries){
  7879. entries.forEach(function(e){
  7880. if (e.isIntersecting){
  7881. e.target.classList.add('is-visible');
  7882. io.unobserve(e.target);
  7883. }
  7884. });
  7885. }, { threshold: 0.08, rootMargin: '0px 0px -5% 0px' });
  7886. els.forEach(function(el){ io.observe(el); });
  7887. // 首屏兜底
  7888. setTimeout(function(){
  7889. els.forEach(function(el){
  7890. var r = el.getBoundingClientRect();
  7891. if (r.top < window.innerHeight && r.bottom > 0) el.classList.add('is-visible');
  7892. });
  7893. }, 100);
  7894. // 终极兜底
  7895. setTimeout(function(){
  7896. document.querySelectorAll('.fade-up:not(.is-visible),.rise-in:not(.is-visible),.headline-anim:not(.is-visible)').forEach(function(el){
  7897. el.classList.add('is-visible');
  7898. });
  7899. }, 4500);
  7900. }
  7901. // —— 3) 数字计数动画 ——
  7902. function initCountUp(){
  7903. var els = document.querySelectorAll('.metric-value[data-count]');
  7904. if (!('IntersectionObserver' in window)){
  7905. els.forEach(function(el){ el.textContent = el.dataset.count; });
  7906. return;
  7907. }
  7908. var io = new IntersectionObserver(function(entries){
  7909. entries.forEach(function(e){
  7910. if (!e.isIntersecting) return;
  7911. var el = e.target;
  7912. var target = parseFloat(el.dataset.count);
  7913. if (isNaN(target)) return;
  7914. var isFloat = !Number.isInteger(target);
  7915. var start = 0, duration = 1400, t0 = performance.now();
  7916. function tick(now){
  7917. var p = Math.min(1, (now - t0) / duration);
  7918. var eased = 1 - Math.pow(1 - p, 3);
  7919. var v = start + (target - start) * eased;
  7920. el.textContent = isFloat ? v.toFixed(1) : Math.floor(v).toLocaleString('en-US');
  7921. if (p < 1) requestAnimationFrame(tick);
  7922. else el.textContent = isFloat ? target.toFixed(1) : target.toLocaleString('en-US');
  7923. }
  7924. requestAnimationFrame(tick);
  7925. io.unobserve(el);
  7926. });
  7927. }, { threshold: 0.4 });
  7928. els.forEach(function(el){ io.observe(el); });
  7929. }
  7930. // —— 4) Slide 进度 · nav 高亮 · ambient 光晕跟随 · slide counter ——
  7931. function initDeck(){
  7932. slides = Array.prototype.slice.call(document.querySelectorAll('section.report-section'));
  7933. var progressLine = document.getElementById('progress-line');
  7934. var navDots = document.querySelectorAll('.nav-dot');
  7935. var counter = document.querySelector('.slide-counter');
  7936. var counterNow = counter && counter.querySelector('.now');
  7937. var counterTotal = counter && counter.querySelector('.total');
  7938. var counterBar = counter && counter.querySelector('.bar');
  7939. if (counterTotal) counterTotal.textContent = String(slides.length).padStart(2, '0');
  7940. // 预设每张 slide 的 ambient 偏移(用 CSS 变量驱动)
  7941. var ambientPresets = [
  7942. { x: '15%', y: '25%' },
  7943. { x: '75%', y: '30%' },
  7944. { x: '25%', y: '70%' },
  7945. { x: '80%', y: '65%' },
  7946. { x: '45%', y: '20%' },
  7947. { x: '55%', y: '75%' },
  7948. { x: '20%', y: '50%' },
  7949. { x: '85%', y: '50%' },
  7950. { x: '50%', y: '40%' },
  7951. { x: '30%', y: '30%' },
  7952. { x: '70%', y: '70%' },
  7953. { x: '40%', y: '60%' }
  7954. ];
  7955. function setActive(idx){
  7956. if (idx < 0) idx = 0;
  7957. if (idx >= slides.length) idx = slides.length - 1;
  7958. currentSlide = idx;
  7959. slides.forEach(function(s, i){
  7960. if (i === idx) s.classList.add('in-view');
  7961. else s.classList.remove('in-view');
  7962. });
  7963. for (var j = 0; j < navDots.length; j++){
  7964. if (j === idx) navDots[j].classList.add('active');
  7965. else navDots[j].classList.remove('active');
  7966. }
  7967. if (counterNow) counterNow.textContent = String(idx + 1).padStart(2, '0');
  7968. if (counterBar) {
  7969. var pct = slides.length > 1 ? ((idx + 1) / slides.length) * 100 : 100;
  7970. counterBar.style.setProperty('--pct', pct.toFixed(1) + '%');
  7971. }
  7972. // 根据当前 slide 切换 ambient 位置
  7973. var p = ambientPresets[idx % ambientPresets.length];
  7974. document.body.style.setProperty('--amb-x', p.x);
  7975. document.body.style.setProperty('--amb-y', p.y);
  7976. }
  7977. function onScroll(){
  7978. if (!firstScrolled && window.scrollY > 20){
  7979. firstScrolled = true;
  7980. setTimeout(function(){
  7981. var hint = document.querySelector('.kbd-hint');
  7982. if (hint) hint.classList.add('fade');
  7983. }, 4000);
  7984. }
  7985. var h = document.documentElement.scrollHeight - window.innerHeight;
  7986. var p = h > 0 ? (window.scrollY / h) * 100 : 0;
  7987. if (progressLine) progressLine.style.width = p + '%';
  7988. // 找出离视口中心最近的 slide
  7989. var mid = window.innerHeight * 0.45;
  7990. var bestIdx = 0, bestDist = Infinity;
  7991. for (var i = 0; i < slides.length; i++){
  7992. var r = slides[i].getBoundingClientRect();
  7993. var center = (r.top + r.bottom) / 2;
  7994. var d = Math.abs(center - mid);
  7995. if (d < bestDist){ bestDist = d; bestIdx = i; }
  7996. }
  7997. if (bestIdx !== currentSlide) setActive(bestIdx);
  7998. }
  7999. window.addEventListener('scroll', onScroll, { passive: true });
  8000. onScroll();
  8001. navDots.forEach(function(d, i){
  8002. d.addEventListener('click', function(e){
  8003. e.preventDefault();
  8004. var tid = d.dataset.target;
  8005. var t = tid ? document.getElementById(tid) : slides[i];
  8006. if (t) t.scrollIntoView({ behavior: 'smooth', block: 'start' });
  8007. });
  8008. });
  8009. // —— 键盘导航 ——
  8010. function goto(idx){
  8011. idx = Math.max(0, Math.min(slides.length - 1, idx));
  8012. slides[idx].scrollIntoView({ behavior: 'smooth', block: 'start' });
  8013. }
  8014. window.addEventListener('keydown', function(e){
  8015. // 不在输入框里
  8016. var tag = (e.target && e.target.tagName || '').toLowerCase();
  8017. if (tag === 'input' || tag === 'textarea' || e.target.isContentEditable) return;
  8018. if (e.key === 'ArrowDown' || e.key === 'PageDown' || e.key === 'j'){ e.preventDefault(); goto(currentSlide + 1); }
  8019. else if (e.key === 'ArrowUp' || e.key === 'PageUp' || e.key === 'k'){ e.preventDefault(); goto(currentSlide - 1); }
  8020. else if (e.key === 'Home'){ e.preventDefault(); goto(0); }
  8021. else if (e.key === 'End'){ e.preventDefault(); goto(slides.length - 1); }
  8022. else if (e.key === ' '){ e.preventDefault(); goto(currentSlide + (e.shiftKey ? -1 : 1)); }
  8023. });
  8024. }
  8025. // —— 5) ECharts 懒加载(slide 进入视口才渲染,避免首屏卡顿)——
  8026. var COMMON = {
  8027. backgroundColor: 'transparent',
  8028. textStyle: { fontFamily: 'Inter, Noto Sans SC, system-ui', color: '#A8A8A8' },
  8029. grid: { left: '3%', right: '4%', bottom: '3%', top: '12%', containLabel: true }
  8030. };
  8031. var AMBER='#F5A623', GREEN='#00DC82', PURPLE='#8B5CF6', ROSE='#FF4D8D', BLUE='#3B82F6';
  8032. var PALETTE = [AMBER, GREEN, PURPLE, ROSE, BLUE, '#EF4444', '#06B6D4', '#F59E0B'];
  8033. var CHART_REGISTRY = [];
  8034. function initChart(id, cb){
  8035. var el = document.getElementById(id);
  8036. if (!el) return;
  8037. CHART_REGISTRY.push({ id: id, el: el, cb: cb, rendered: false });
  8038. }
  8039. function renderChart(item){
  8040. if (item.rendered || !window.echarts) return;
  8041. var chart = window.echarts.init(item.el, null, { renderer: 'canvas' });
  8042. try { item.cb(chart); item.rendered = true; } catch(e){ console.error(item.id, e); }
  8043. window.addEventListener('resize', function(){ chart.resize(); });
  8044. }
  8045. function bootCharts(){
  8046. if (!window.echarts) { setTimeout(bootCharts, 300); return; }
  8047. if (!('IntersectionObserver' in window)){
  8048. CHART_REGISTRY.forEach(renderChart);
  8049. return;
  8050. }
  8051. var io = new IntersectionObserver(function(entries){
  8052. entries.forEach(function(e){
  8053. if (!e.isIntersecting) return;
  8054. var item = CHART_REGISTRY.find(function(x){ return x.el === e.target; });
  8055. if (item) renderChart(item);
  8056. io.unobserve(e.target);
  8057. });
  8058. }, { threshold: 0.1, rootMargin: '200px 0px' });
  8059. CHART_REGISTRY.forEach(function(item){ io.observe(item.el); });
  8060. }
  8061. function initCharts(){
  8062. var D = window.__CHART_DATA__ || {};
  8063. // 样本分布
  8064. initChart('chartSample', function(chart){
  8065. var data = (D.noteHeatmap || []).slice(0, 5).map(function(n, i){
  8066. return {
  8067. value: (n.liked || 0) + (n.comments || 0) + (n.collected || 0),
  8068. name: (n.title || '').slice(0, 14) || '笔记' + (i + 1),
  8069. itemStyle: { color: PALETTE[i % PALETTE.length] }
  8070. };
  8071. });
  8072. chart.setOption(Object.assign({}, COMMON, {
  8073. tooltip: { trigger: 'item', backgroundColor: '#1A1A1A', borderColor: '#252525', textStyle: { color: '#F5F5F5' } },
  8074. legend: { bottom: 0, textStyle: { color: '#A8A8A8', fontSize: 11 } },
  8075. animationDuration: 1000, animationEasing: 'cubicOut',
  8076. series: [{
  8077. type: 'pie', radius: ['52%', '76%'], center: ['50%', '45%'],
  8078. label: { color: '#F5F5F5', fontSize: 11, formatter: '{b}\n{c}' },
  8079. itemStyle: { borderColor: '#0A0A0A', borderWidth: 2 },
  8080. data: data
  8081. }]
  8082. }));
  8083. });
  8084. // IP 地域
  8085. initChart('chartGeo', function(chart){
  8086. var ips = (D.topIPs || []).slice(0, 10).reverse();
  8087. chart.setOption(Object.assign({}, COMMON, {
  8088. tooltip: { trigger: 'axis', backgroundColor: '#1A1A1A', borderColor: '#252525', textStyle: { color: '#F5F5F5' } },
  8089. animationDuration: 1200, animationEasing: 'cubicOut',
  8090. xAxis: { type: 'value', axisLine: { lineStyle: { color: '#252525' } }, splitLine: { lineStyle: { color: '#1A1A1A' } }, axisLabel: { color: '#6B6B6B' } },
  8091. yAxis: { type: 'category', data: ips.map(function(x){return x[0];}), axisLine: { lineStyle: { color: '#252525' } }, axisLabel: { color: '#A8A8A8', fontSize: 12 } },
  8092. series: [{
  8093. type: 'bar', data: ips.map(function(x){return x[1];}),
  8094. itemStyle: { color: AMBER, borderRadius: [0, 3, 3, 0] }, barWidth: '60%',
  8095. label: { show: true, position: 'right', color: '#F5A623', fontFamily: 'JetBrains Mono', fontSize: 11 }
  8096. }]
  8097. }));
  8098. });
  8099. // 笔记热力散点
  8100. initChart('chartNoteHeatmap', function(chart){
  8101. chart.setOption(Object.assign({}, COMMON, {
  8102. tooltip: {
  8103. trigger: 'item', backgroundColor: '#1A1A1A', borderColor: '#252525', textStyle: { color: '#F5F5F5' },
  8104. formatter: function(p){
  8105. return '<div style="max-width:260px;"><strong style="color:#F5A623;">' + p.data[3] +
  8106. '</strong><br>点赞 ' + p.data[0] + ' · 评论 ' + p.data[1] + ' · 收藏 ' + p.data[2] + '</div>';
  8107. }
  8108. },
  8109. animationDuration: 1400, animationDelay: function(i){ return i * 30; },
  8110. xAxis: { type: 'value', name: '点赞数', nameTextStyle: { color: '#A8A8A8' }, axisLine: { lineStyle: { color: '#252525' } }, splitLine: { lineStyle: { color: '#1A1A1A' } }, axisLabel: { color: '#6B6B6B' } },
  8111. yAxis: { type: 'value', name: '评论数', nameTextStyle: { color: '#A8A8A8' }, axisLine: { lineStyle: { color: '#252525' } }, splitLine: { lineStyle: { color: '#1A1A1A' } }, axisLabel: { color: '#6B6B6B' } },
  8112. series: [{
  8113. type: 'scatter',
  8114. data: (D.noteHeatmap || []).map(function(n){ return [n.liked, n.comments, n.collected, n.title]; }),
  8115. symbolSize: function(v){ return Math.max(10, Math.min(56, Math.sqrt(v[2] || 1) * 3.5)); },
  8116. itemStyle: {
  8117. color: new echarts.graphic.RadialGradient(0.4, 0.4, 0.6, [
  8118. { offset: 0, color: 'rgba(245,166,35,0.9)' },
  8119. { offset: 1, color: 'rgba(245,166,35,0.15)' }
  8120. ]),
  8121. borderColor: '#F5A623', borderWidth: 1
  8122. },
  8123. emphasis: { itemStyle: { borderWidth: 2, shadowBlur: 16, shadowColor: 'rgba(245,166,35,0.5)' } }
  8124. }]
  8125. }));
  8126. });
  8127. // 价格带
  8128. initChart('chartPrice', function(chart){
  8129. var keys = Object.keys(D.priceBuckets || {});
  8130. var vals = keys.map(function(k){ return D.priceBuckets[k]; });
  8131. chart.setOption(Object.assign({}, COMMON, {
  8132. tooltip: { trigger: 'axis', backgroundColor: '#1A1A1A', borderColor: '#252525', textStyle: { color: '#F5F5F5' } },
  8133. animationDuration: 1200,
  8134. xAxis: { type: 'category', data: keys, axisLine: { lineStyle: { color: '#252525' } }, axisLabel: { color: '#A8A8A8', fontFamily: 'JetBrains Mono' } },
  8135. yAxis: { type: 'value', axisLine: { lineStyle: { color: '#252525' } }, splitLine: { lineStyle: { color: '#1A1A1A' } }, axisLabel: { color: '#6B6B6B' } },
  8136. series: [{
  8137. type: 'bar', data: vals,
  8138. itemStyle: {
  8139. color: { type: 'linear', x: 0, y: 0, x2: 0, y2: 1,
  8140. colorStops: [{ offset: 0, color: '#F5A623' }, { offset: 1, color: 'rgba(245,166,35,0.3)' }] },
  8141. borderRadius: [4, 4, 0, 0]
  8142. },
  8143. barWidth: '56%',
  8144. label: { show: true, position: 'top', color: '#F5A623', fontFamily: 'JetBrains Mono', fontWeight: 600 }
  8145. }]
  8146. }));
  8147. });
  8148. // 品牌月销(横条,兼容)
  8149. initChart('chartBrands', function(chart){
  8150. var brands = (D.topBrands || []).slice().reverse();
  8151. chart.setOption(Object.assign({}, COMMON, {
  8152. tooltip: { trigger: 'axis', backgroundColor: '#1A1A1A', borderColor: '#252525', textStyle: { color: '#F5F5F5' },
  8153. formatter: function(p){ return p.map(function(x){ return x.name + ': $' + (x.value/100).toLocaleString('en-US',{maximumFractionDigits:0}); }).join('<br>'); }
  8154. },
  8155. animationDuration: 1200,
  8156. xAxis: { type: 'value', axisLine: { lineStyle: { color: '#252525' } }, splitLine: { lineStyle: { color: '#1A1A1A' } }, axisLabel: { color: '#6B6B6B', formatter: function(v){ return '$' + (v/100000).toFixed(0) + 'k'; } } },
  8157. yAxis: { type: 'category', data: brands.map(function(x){return x[0];}), axisLine: { lineStyle: { color: '#252525' } }, axisLabel: { color: '#A8A8A8', fontSize: 12 } },
  8158. series: [{
  8159. type: 'bar', data: brands.map(function(x){return x[1];}),
  8160. itemStyle: {
  8161. color: function(params){ return PALETTE[params.dataIndex % PALETTE.length]; },
  8162. borderRadius: [0, 3, 3, 0]
  8163. },
  8164. barWidth: '58%',
  8165. label: { show: true, position: 'right', color: '#A8A8A8', fontFamily: 'JetBrains Mono', fontSize: 10, formatter: function(p){ return '$' + (p.value/100000).toFixed(0) + 'k'; } }
  8166. }]
  8167. }));
  8168. });
  8169. // 评分分布
  8170. initChart('chartRatingDist', function(chart){
  8171. var data = D.ratingBuckets || {};
  8172. var keys = Object.keys(data);
  8173. var vals = keys.map(function(k){ return data[k]; });
  8174. var colors = ['#EF4444','#F59E0B','#F5A623','#06B6D4','#00DC82'];
  8175. chart.setOption(Object.assign({}, COMMON, {
  8176. tooltip: { trigger: 'axis', backgroundColor: '#1A1A1A', borderColor: '#252525', textStyle: { color: '#F5F5F5' },
  8177. formatter: function(p){ return p.map(function(x){ return x.name + ': ' + x.value + ' SKU'; }).join('<br>'); }
  8178. },
  8179. animationDuration: 1200,
  8180. xAxis: { type: 'category', data: keys, axisLine: { lineStyle: { color: '#252525' } }, axisLabel: { color: '#A8A8A8', fontFamily: 'JetBrains Mono', fontSize: 11 } },
  8181. yAxis: { type: 'value', axisLine: { lineStyle: { color: '#252525' } }, splitLine: { lineStyle: { color: '#1A1A1A' } }, axisLabel: { color: '#6B6B6B' } },
  8182. series: [{
  8183. type: 'bar', data: vals.map(function(v, i){ return { value: v, itemStyle: { color: colors[i] || GREEN, borderRadius: [4, 4, 0, 0] } }; }),
  8184. barWidth: '54%',
  8185. label: { show: true, position: 'top', color: '#F5F5F5', fontFamily: 'JetBrains Mono', fontWeight: 600 }
  8186. }]
  8187. }));
  8188. });
  8189. // 品牌份额(donut)
  8190. initChart('chartBrandShare', function(chart){
  8191. var data = (D.topBrandShares || []).map(function(b, i){
  8192. return { value: b.value, name: b.name, itemStyle: { color: PALETTE[i % PALETTE.length] }, _sales: b.sales, _count: b.count };
  8193. });
  8194. chart.setOption(Object.assign({}, COMMON, {
  8195. tooltip: { trigger: 'item', backgroundColor: '#1A1A1A', borderColor: '#252525', textStyle: { color: '#F5F5F5' },
  8196. formatter: function(p){ return '<strong>'+p.name+'</strong><br>' + p.value.toFixed(1) + '%<br>SKU '+(p.data._count||0)+' · 月销 $'+((p.data._sales||0)/100).toLocaleString('en-US',{maximumFractionDigits:0}); }
  8197. },
  8198. legend: { bottom: 0, textStyle: { color: '#A8A8A8', fontSize: 10 }, itemWidth: 8, itemHeight: 8 },
  8199. animationDuration: 1400, animationEasing: 'cubicOut',
  8200. series: [{
  8201. type: 'pie', radius: ['48%', '72%'], center: ['50%', '45%'],
  8202. label: { color: '#F5F5F5', fontSize: 10, formatter: function(p){ return p.value > 3 ? p.name + '\n' + p.value.toFixed(1) + '%' : ''; } },
  8203. labelLine: { show: true, length: 8, length2: 8 },
  8204. itemStyle: { borderColor: '#0A0A0A', borderWidth: 2 },
  8205. data: data
  8206. }]
  8207. }));
  8208. });
  8209. // 评论数分布(横条)
  8210. initChart('chartReviewCount', function(chart){
  8211. var data = D.reviewCountBuckets || {};
  8212. var keys = Object.keys(data);
  8213. var vals = keys.map(function(k){ return data[k]; });
  8214. chart.setOption(Object.assign({}, COMMON, {
  8215. tooltip: { trigger: 'axis', backgroundColor: '#1A1A1A', borderColor: '#252525', textStyle: { color: '#F5F5F5' } },
  8216. animationDuration: 1200,
  8217. xAxis: { type: 'value', axisLine: { lineStyle: { color: '#252525' } }, splitLine: { lineStyle: { color: '#1A1A1A' } }, axisLabel: { color: '#6B6B6B' } },
  8218. yAxis: { type: 'category', data: keys, axisLine: { lineStyle: { color: '#252525' } }, axisLabel: { color: '#A8A8A8', fontFamily: 'JetBrains Mono', fontSize: 11 } },
  8219. series: [{
  8220. type: 'bar', data: vals,
  8221. itemStyle: {
  8222. color: { type: 'linear', x: 0, y: 0, x2: 1, y2: 0,
  8223. colorStops: [{ offset: 0, color: 'rgba(139,92,246,0.2)' }, { offset: 1, color: '#8B5CF6' }] },
  8224. borderRadius: [0, 3, 3, 0]
  8225. },
  8226. barWidth: '56%',
  8227. label: { show: true, position: 'right', color: '#A8A8A8', fontFamily: 'JetBrains Mono', fontSize: 11 }
  8228. }]
  8229. }));
  8230. });
  8231. // 星级分布
  8232. initChart('chartStarDist', function(chart){
  8233. var products = D.starDistProducts || [];
  8234. if (!products.length) return;
  8235. var categories = products.map(function(p){ return p.brand + ' · ' + p.asin; });
  8236. var colors = ['#00DC82','#06B6D4','#F5A623','#F59E0B','#EF4444'];
  8237. var labels = ['5★','4★','3★','2★','1★'];
  8238. var series = [0,1,2,3,4].map(function(i){
  8239. return {
  8240. name: labels[i], type: 'bar', stack: 'stars',
  8241. data: products.map(function(p){ return p.stars[i]; }),
  8242. itemStyle: { color: colors[i] }
  8243. };
  8244. });
  8245. chart.setOption(Object.assign({}, COMMON, {
  8246. tooltip: { trigger: 'axis', axisPointer: { type: 'shadow' }, backgroundColor: '#1A1A1A', borderColor: '#252525', textStyle: { color: '#F5F5F5' } },
  8247. legend: { bottom: 0, textStyle: { color: '#A8A8A8', fontSize: 10 }, itemWidth: 10, itemHeight: 10 },
  8248. animationDuration: 1400,
  8249. grid: { left: '3%', right: '4%', bottom: '16%', top: '6%', containLabel: true },
  8250. xAxis: { type: 'value', axisLine: { lineStyle: { color: '#252525' } }, splitLine: { lineStyle: { color: '#1A1A1A' } }, axisLabel: { color: '#6B6B6B' } },
  8251. yAxis: { type: 'category', data: categories, axisLine: { lineStyle: { color: '#252525' } }, axisLabel: { color: '#A8A8A8', fontSize: 11 } },
  8252. series: series
  8253. }));
  8254. });
  8255. // 抖音账号作品热度散点
  8256. initChart('chartDyPosts', function(chart){
  8257. var posts = (D.douyinPosts || []);
  8258. if (!posts.length) return;
  8259. chart.setOption(Object.assign({}, COMMON, {
  8260. tooltip: { trigger: 'item', backgroundColor: '#1A1A1A', borderColor: '#252525', textStyle: { color: '#F5F5F5' },
  8261. formatter: function(p){
  8262. return '<div style="max-width:280px;"><strong style="color:#F5A623;">' + (p.data[3]||'').slice(0,60) +
  8263. '</strong><br>点赞 ' + p.data[0].toLocaleString() + ' · 评论 ' + p.data[1] + ' · 转发 ' + p.data[2] + '</div>';
  8264. }
  8265. },
  8266. animationDuration: 1200,
  8267. xAxis: { type: 'value', name: '点赞', nameTextStyle: { color: '#A8A8A8' }, axisLine: { lineStyle: { color: '#252525' } }, splitLine: { lineStyle: { color: '#1A1A1A' } }, axisLabel: { color: '#6B6B6B', formatter: function(v){ return v >= 10000 ? (v/10000).toFixed(1) + 'w' : v; } } },
  8268. yAxis: { type: 'value', name: '评论', nameTextStyle: { color: '#A8A8A8' }, axisLine: { lineStyle: { color: '#252525' } }, splitLine: { lineStyle: { color: '#1A1A1A' } }, axisLabel: { color: '#6B6B6B' } },
  8269. series: [{
  8270. type: 'scatter',
  8271. data: posts.map(function(p){ return [p.digg||0, p.comment||0, p.share||0, p.desc||'']; }),
  8272. symbolSize: function(v){ return Math.max(12, Math.min(60, Math.sqrt((v[2]||0) + 1) * 4)); },
  8273. itemStyle: {
  8274. color: new echarts.graphic.RadialGradient(0.4, 0.4, 0.6, [
  8275. { offset: 0, color: 'rgba(255,77,141,0.9)' },
  8276. { offset: 1, color: 'rgba(255,77,141,0.2)' }
  8277. ]),
  8278. borderColor: '#FF4D8D', borderWidth: 1
  8279. },
  8280. emphasis: { itemStyle: { borderWidth: 2, shadowBlur: 16, shadowColor: 'rgba(255,77,141,0.5)' } }
  8281. }]
  8282. }));
  8283. });
  8284. }
  8285. // —— Boot ——
  8286. function boot(){
  8287. try { splitHeadlines(); } catch(e){ console.error('split', e); }
  8288. try { initReveal(); } catch(e){ console.error('reveal', e); }
  8289. try { initCountUp(); } catch(e){ console.error('countup', e); }
  8290. try { initDeck(); } catch(e){ console.error('deck', e); }
  8291. try { initCharts(); bootCharts(); } catch(e){ console.error('charts', e); }
  8292. }
  8293. if (document.readyState === 'loading'){
  8294. document.addEventListener('DOMContentLoaded', boot);
  8295. } else {
  8296. boot();
  8297. }
  8298. })();
  8299. </script>
  8300. </body>
  8301. </html>