聊天框架
This commit is contained in:
parent
bbf17a37ba
commit
41275f623e
@ -1,13 +1,17 @@
|
||||
:root {
|
||||
--gold: #d4af37;
|
||||
--gold-light: #b8860b;
|
||||
--light-pink: #fff0f6; /* 浅粉色背景 */
|
||||
--light-pink: #fff0f6;
|
||||
--accent-pink: #ffd6e7;
|
||||
--card-bg: rgba(255, 255, 255, 0.8);
|
||||
--card-bg: rgba(255, 255, 255, 0.85);
|
||||
--text-main: #2c3e50;
|
||||
--text-muted: #7f8c8d;
|
||||
--glass-border: rgba(212, 175, 55, 0.3);
|
||||
--glass-border: rgba(212, 175, 55, 0.2);
|
||||
--sidebar-bg: #fff;
|
||||
--success-bg: rgba(46, 204, 113, 0.05);
|
||||
--success-border: #2ecc71;
|
||||
--error-bg: rgba(231, 76, 60, 0.05);
|
||||
--error-border: #e74c3c;
|
||||
}
|
||||
|
||||
* {
|
||||
@ -25,7 +29,7 @@ body {
|
||||
overflow-x: hidden;
|
||||
}
|
||||
|
||||
/* Watermark Grid */
|
||||
/* Watermark */
|
||||
.watermark-grid {
|
||||
position: fixed;
|
||||
top: 0;
|
||||
@ -34,12 +38,12 @@ body {
|
||||
height: 200%;
|
||||
pointer-events: none;
|
||||
z-index: 9999;
|
||||
opacity: 0.1;
|
||||
background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='200' height='100' viewBox='0 0 200 100'%3E%3Ctext x='10' y='50' font-family='Noto Sans SC' font-size='20' fill='%23d4af37' transform='rotate(-30, 100, 50)'%3E财神组%3C/text%3E%3C/svg%3E");
|
||||
transform: rotate(-30deg) translate(-25%, -25%);
|
||||
opacity: 0.08;
|
||||
background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='250' height='150' viewBox='0 0 250 150'%3E%3Ctext x='10' y='50' font-family='Ma Shan Zheng' font-size='24' fill='%23d4af37' transform='rotate(-30, 125, 75)'%3E财神组%3C/text%3E%3C/svg%3E");
|
||||
transform: translate(-25%, -25%);
|
||||
}
|
||||
|
||||
/* Background Orbs */
|
||||
/* Decoration */
|
||||
.bg-decoration {
|
||||
position: fixed;
|
||||
top: 0;
|
||||
@ -53,41 +57,41 @@ body {
|
||||
.orb {
|
||||
position: absolute;
|
||||
border-radius: 50%;
|
||||
filter: blur(80px);
|
||||
opacity: 0.4;
|
||||
animation: move 20s infinite alternate;
|
||||
filter: blur(100px);
|
||||
opacity: 0.5;
|
||||
animation: floating 25s infinite alternate;
|
||||
}
|
||||
|
||||
.orb-gold {
|
||||
width: 400px;
|
||||
height: 400px;
|
||||
width: 500px;
|
||||
height: 500px;
|
||||
background: radial-gradient(circle, var(--accent-pink), transparent);
|
||||
top: -100px;
|
||||
right: -100px;
|
||||
top: -10%;
|
||||
right: -10%;
|
||||
}
|
||||
|
||||
.orb-black {
|
||||
width: 600px;
|
||||
height: 600px;
|
||||
width: 700px;
|
||||
height: 700px;
|
||||
background: radial-gradient(circle, #ffe3ec, transparent);
|
||||
bottom: -200px;
|
||||
left: -200px;
|
||||
animation-delay: -5s;
|
||||
bottom: -15%;
|
||||
left: -15%;
|
||||
animation-delay: -7s;
|
||||
}
|
||||
|
||||
@keyframes move {
|
||||
0% { transform: translate(0, 0); }
|
||||
100% { transform: translate(100px, 50px); }
|
||||
@keyframes floating {
|
||||
0% { transform: translate(0, 0) scale(1); }
|
||||
100% { transform: translate(150px, 100px) scale(1.1); }
|
||||
}
|
||||
|
||||
/* Main Layout */
|
||||
/* Layout */
|
||||
.main-content {
|
||||
margin-left: 280px;
|
||||
padding: 40px;
|
||||
max-width: 1200px;
|
||||
padding: 60px 40px;
|
||||
max-width: 1300px;
|
||||
}
|
||||
|
||||
/* Sidebar Nav (Desktop) */
|
||||
/* Sidebar */
|
||||
.sidebar-nav {
|
||||
position: fixed;
|
||||
left: 0;
|
||||
@ -96,33 +100,35 @@ body {
|
||||
width: 280px;
|
||||
background: var(--sidebar-bg);
|
||||
border-right: 1px solid var(--glass-border);
|
||||
padding: 40px 20px;
|
||||
padding: 40px 15px;
|
||||
z-index: 100;
|
||||
box-shadow: 2px 0 10px rgba(0,0,0,0.05);
|
||||
box-shadow: 4px 0 20px rgba(0,0,0,0.03);
|
||||
overflow-y: auto;
|
||||
}
|
||||
|
||||
.sidebar-logo {
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
align-items: center;
|
||||
gap: 12px;
|
||||
margin-bottom: 60px;
|
||||
gap: 15px;
|
||||
margin-bottom: 40px;
|
||||
}
|
||||
|
||||
.sidebar-logo img {
|
||||
max-width: 120px;
|
||||
max-height: 120px;
|
||||
width: 140px;
|
||||
height: 140px;
|
||||
object-fit: contain;
|
||||
border: 2px solid var(--gold);
|
||||
padding: 5px;
|
||||
background: #fff;
|
||||
border-radius: 12px; /* 圆角矩形通常比圆形对 Logo 更友好 */
|
||||
border-radius: 20px;
|
||||
padding: 10px;
|
||||
box-shadow: 0 8px 25px rgba(0,0,0,0.08);
|
||||
}
|
||||
|
||||
.sidebar-logo span {
|
||||
font-family: 'Ma Shan Zheng', cursive;
|
||||
font-size: 24px;
|
||||
font-size: 28px;
|
||||
color: var(--gold);
|
||||
letter-spacing: 2px;
|
||||
}
|
||||
|
||||
.nav-menu {
|
||||
@ -130,30 +136,32 @@ body {
|
||||
}
|
||||
|
||||
.nav-menu li {
|
||||
margin-bottom: 15px;
|
||||
margin-bottom: 8px;
|
||||
}
|
||||
|
||||
.nav-menu a {
|
||||
color: var(--text-muted);
|
||||
text-decoration: none;
|
||||
font-size: 16px;
|
||||
font-size: 15px;
|
||||
display: flex;
|
||||
align-items: center;
|
||||
gap: 15px;
|
||||
transition: 0.3s;
|
||||
padding: 12px 15px;
|
||||
gap: 12px;
|
||||
transition: all 0.3s;
|
||||
padding: 10px 15px;
|
||||
border-radius: 12px;
|
||||
}
|
||||
|
||||
.nav-menu a:hover, .nav-menu a.active {
|
||||
color: var(--gold);
|
||||
background: rgba(212, 175, 55, 0.1);
|
||||
font-weight: bold;
|
||||
background: rgba(212, 175, 55, 0.08);
|
||||
font-weight: 700;
|
||||
transform: translateX(5px);
|
||||
}
|
||||
|
||||
.nav-num {
|
||||
font-size: 12px;
|
||||
opacity: 0.6;
|
||||
font-size: 11px;
|
||||
opacity: 0.5;
|
||||
font-family: monospace;
|
||||
}
|
||||
|
||||
/* Mobile Nav */
|
||||
@ -163,102 +171,96 @@ body {
|
||||
top: 0;
|
||||
left: 0;
|
||||
width: 100%;
|
||||
background: rgba(255, 240, 246, 0.95);
|
||||
background: rgba(255, 240, 246, 0.9);
|
||||
z-index: 1000;
|
||||
border-bottom: 1px solid var(--glass-border);
|
||||
backdrop-filter: blur(10px);
|
||||
backdrop-filter: blur(15px);
|
||||
}
|
||||
|
||||
.nav-container {
|
||||
display: flex;
|
||||
justify-content: space-between;
|
||||
align-items: center;
|
||||
padding: 10px 20px;
|
||||
padding: 12px 20px;
|
||||
}
|
||||
|
||||
.nav-brand {
|
||||
display: flex;
|
||||
align-items: center;
|
||||
gap: 8px;
|
||||
gap: 10px;
|
||||
font-family: 'Ma Shan Zheng', cursive;
|
||||
color: var(--gold);
|
||||
font-size: 20px;
|
||||
}
|
||||
|
||||
.nav-brand img {
|
||||
width: 32px;
|
||||
height: 32px;
|
||||
border-radius: 4px;
|
||||
width: 36px;
|
||||
height: 36px;
|
||||
border-radius: 8px;
|
||||
background: #fff;
|
||||
}
|
||||
|
||||
.nav-links a {
|
||||
color: var(--text-main);
|
||||
color: var(--gold-light);
|
||||
text-decoration: none;
|
||||
margin-left: 15px;
|
||||
font-size: 14px;
|
||||
font-weight: bold;
|
||||
font-weight: 900;
|
||||
}
|
||||
|
||||
/* Hero Section */
|
||||
.luxury-hero {
|
||||
height: 70vh;
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
justify-content: center;
|
||||
align-items: flex-start;
|
||||
padding: 0 40px;
|
||||
margin-bottom: 100px;
|
||||
text-align: left;
|
||||
}
|
||||
|
||||
.badge {
|
||||
background: var(--gold);
|
||||
display: inline-block;
|
||||
background: linear-gradient(135deg, var(--gold), var(--gold-light));
|
||||
color: #fff;
|
||||
padding: 5px 15px;
|
||||
font-size: 13px;
|
||||
padding: 6px 18px;
|
||||
font-size: 14px;
|
||||
font-weight: 700;
|
||||
border-radius: 50px;
|
||||
margin-bottom: 20px;
|
||||
box-shadow: 0 4px 10px rgba(212, 175, 55, 0.3);
|
||||
margin-bottom: 25px;
|
||||
box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
|
||||
}
|
||||
|
||||
.main-title {
|
||||
font-family: 'Noto Serif SC', serif;
|
||||
font-size: clamp(2.5rem, 8vw, 4.5rem);
|
||||
font-size: clamp(2.5rem, 7vw, 4rem);
|
||||
font-weight: 900;
|
||||
color: var(--text-main);
|
||||
line-height: 1.2;
|
||||
margin-bottom: 15px;
|
||||
margin-bottom: 20px;
|
||||
}
|
||||
|
||||
.sub-title {
|
||||
font-size: 1.4rem;
|
||||
font-size: 1.5rem;
|
||||
color: var(--text-muted);
|
||||
font-weight: 400;
|
||||
margin-bottom: 40px;
|
||||
}
|
||||
|
||||
.hero-stats {
|
||||
display: flex;
|
||||
gap: 30px;
|
||||
gap: 25px;
|
||||
}
|
||||
|
||||
.stat-item {
|
||||
display: flex;
|
||||
align-items: center;
|
||||
gap: 8px;
|
||||
font-size: 15px;
|
||||
color: var(--gold-light);
|
||||
background: #fff;
|
||||
padding: 10px 20px;
|
||||
padding: 12px 24px;
|
||||
border-radius: 50px;
|
||||
box-shadow: 0 5px 15px rgba(0,0,0,0.05);
|
||||
font-size: 15px;
|
||||
font-weight: 600;
|
||||
color: var(--gold-light);
|
||||
box-shadow: 0 8px 20px rgba(0,0,0,0.04);
|
||||
}
|
||||
|
||||
/* Section Styling */
|
||||
/* Sections */
|
||||
.step-section {
|
||||
padding: 80px 0;
|
||||
padding: 100px 0;
|
||||
opacity: 0;
|
||||
transform: translateY(30px);
|
||||
transition: 0.8s ease-out;
|
||||
transform: translateY(40px);
|
||||
transition: 1s cubic-bezier(0.22, 1, 0.36, 1);
|
||||
}
|
||||
|
||||
.step-section.animate-in {
|
||||
@ -267,261 +269,176 @@ body {
|
||||
}
|
||||
|
||||
.section-header {
|
||||
margin-bottom: 40px;
|
||||
margin-bottom: 50px;
|
||||
}
|
||||
|
||||
.step-num {
|
||||
color: var(--gold);
|
||||
font-size: 16px;
|
||||
font-weight: 800;
|
||||
letter-spacing: 2px;
|
||||
font-size: 18px;
|
||||
font-weight: 900;
|
||||
letter-spacing: 3px;
|
||||
margin-bottom: 10px;
|
||||
}
|
||||
|
||||
.step-title {
|
||||
font-size: 2.2rem;
|
||||
font-family: 'Noto Serif SC', serif;
|
||||
margin-bottom: 8px;
|
||||
color: var(--text-main);
|
||||
font-size: 2.5rem;
|
||||
margin-bottom: 10px;
|
||||
}
|
||||
|
||||
.step-goal {
|
||||
font-size: 1.1rem;
|
||||
color: var(--text-muted);
|
||||
font-weight: 500;
|
||||
}
|
||||
|
||||
/* Glass Card */
|
||||
.glass-card {
|
||||
/* Cards */
|
||||
.logic-card {
|
||||
background: var(--card-bg);
|
||||
backdrop-filter: blur(15px);
|
||||
border: 1px solid rgba(255, 255, 255, 0.5);
|
||||
border-radius: 24px;
|
||||
padding: 40px;
|
||||
display: flex;
|
||||
gap: 30px;
|
||||
border-radius: 30px;
|
||||
margin-bottom: 30px;
|
||||
transition: 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
|
||||
box-shadow: 0 10px 30px rgba(0,0,0,0.03);
|
||||
border: 1px solid rgba(255, 255, 255, 0.6);
|
||||
box-shadow: 0 15px 40px rgba(0,0,0,0.03);
|
||||
}
|
||||
|
||||
.glass-card:hover {
|
||||
transform: translateY(-5px);
|
||||
box-shadow: 0 20px 40px rgba(212, 175, 55, 0.1);
|
||||
border-color: var(--gold);
|
||||
}
|
||||
|
||||
.card-icon {
|
||||
font-size: 44px;
|
||||
color: var(--gold);
|
||||
}
|
||||
|
||||
.card-content h4 {
|
||||
.logic-item h5 {
|
||||
font-size: 1.3rem;
|
||||
margin-bottom: 20px;
|
||||
color: var(--gold-light);
|
||||
margin-bottom: 15px;
|
||||
font-size: 1.2rem;
|
||||
}
|
||||
|
||||
.warning-text {
|
||||
background: rgba(255, 68, 68, 0.05);
|
||||
padding: 18px;
|
||||
border-left: 5px solid #ff4444;
|
||||
border-radius: 8px;
|
||||
margin-top: 25px;
|
||||
font-size: 0.95rem;
|
||||
color: #c0392b;
|
||||
.logic-item ul {
|
||||
list-style: none;
|
||||
padding-left: 5px;
|
||||
}
|
||||
|
||||
/* Tactic Cards */
|
||||
.logic-item li {
|
||||
position: relative;
|
||||
padding-left: 25px;
|
||||
margin-bottom: 12px;
|
||||
}
|
||||
|
||||
.logic-item li::before {
|
||||
content: "•";
|
||||
position: absolute;
|
||||
left: 0;
|
||||
color: var(--gold);
|
||||
font-weight: 900;
|
||||
font-size: 1.5rem;
|
||||
line-height: 1;
|
||||
}
|
||||
|
||||
/* Tactic Grid */
|
||||
.tactic-grid {
|
||||
display: grid;
|
||||
grid-template-columns: 1fr 1fr;
|
||||
gap: 25px;
|
||||
margin-bottom: 30px;
|
||||
gap: 30px;
|
||||
}
|
||||
|
||||
.tactic-card {
|
||||
background: #fff;
|
||||
border: 1px solid rgba(0,0,0,0.05);
|
||||
padding: 30px;
|
||||
border-radius: 20px;
|
||||
box-shadow: 0 5px 15px rgba(0,0,0,0.02);
|
||||
transition: 0.3s;
|
||||
padding: 40px;
|
||||
border-radius: 24px;
|
||||
border-top: 6px solid #ddd;
|
||||
box-shadow: 0 10px 30px rgba(0,0,0,0.02);
|
||||
}
|
||||
|
||||
.tactic-card:hover {
|
||||
border-color: var(--gold);
|
||||
}
|
||||
.tactic-card.success { border-color: var(--success-border); background: var(--success-bg); }
|
||||
.tactic-card.error { border-color: var(--error-border); background: var(--error-bg); }
|
||||
|
||||
.tactic-card h5 {
|
||||
color: var(--text-main);
|
||||
margin-bottom: 12px;
|
||||
font-size: 1.2rem;
|
||||
margin-bottom: 20px;
|
||||
display: flex;
|
||||
align-items: center;
|
||||
gap: 12px;
|
||||
font-size: 1.1rem;
|
||||
}
|
||||
|
||||
.tactic-card h5 i {
|
||||
color: var(--gold);
|
||||
}
|
||||
.tactic-card.success h5 { color: var(--success-border); }
|
||||
.tactic-card.error h5 { color: var(--error-border); }
|
||||
|
||||
/* Example Box */
|
||||
.example-box {
|
||||
background: #fff;
|
||||
border: 2px dashed var(--gold);
|
||||
padding: 35px;
|
||||
border-radius: 20px;
|
||||
position: relative;
|
||||
box-shadow: 0 10px 25px rgba(212, 175, 55, 0.05);
|
||||
}
|
||||
|
||||
.example-box h5 {
|
||||
position: absolute;
|
||||
top: -15px;
|
||||
left: 25px;
|
||||
background: var(--light-pink);
|
||||
padding: 0 15px;
|
||||
color: var(--gold-light);
|
||||
font-weight: 900;
|
||||
}
|
||||
|
||||
.script {
|
||||
font-style: italic;
|
||||
color: #444;
|
||||
font-size: 1.1rem;
|
||||
line-height: 1.8;
|
||||
}
|
||||
|
||||
/* Misc Boxes */
|
||||
.story-box, .method-box, .action-box, .strategy-card, .method-card {
|
||||
background: #fff;
|
||||
padding: 35px;
|
||||
border-radius: 24px;
|
||||
margin-bottom: 25px;
|
||||
box-shadow: 0 5px 20px rgba(0,0,0,0.03);
|
||||
}
|
||||
|
||||
.story-box h5, .method-box h5, .action-box h5, .strategy-card h5, .method-card h5 {
|
||||
color: var(--gold-light);
|
||||
margin-bottom: 18px;
|
||||
font-size: 1.2rem;
|
||||
}
|
||||
|
||||
.scenario {
|
||||
margin-top: 20px;
|
||||
padding: 20px;
|
||||
background: var(--light-pink);
|
||||
border-radius: 12px;
|
||||
border-left: 4px solid var(--gold);
|
||||
font-size: 0.95rem;
|
||||
}
|
||||
|
||||
.highlight {
|
||||
display: block;
|
||||
margin-top: 15px;
|
||||
color: var(--gold-light);
|
||||
font-weight: 800;
|
||||
}
|
||||
|
||||
.info-grid {
|
||||
display: grid;
|
||||
grid-template-columns: 1fr 1fr;
|
||||
gap: 25px;
|
||||
}
|
||||
|
||||
.info-item {
|
||||
background: #fff;
|
||||
padding: 25px;
|
||||
border-radius: 15px;
|
||||
display: flex;
|
||||
align-items: center;
|
||||
gap: 18px;
|
||||
box-shadow: 0 5px 15px rgba(0,0,0,0.02);
|
||||
}
|
||||
|
||||
.info-item i {
|
||||
color: var(--gold);
|
||||
font-size: 1.5rem;
|
||||
}
|
||||
|
||||
.final-summary {
|
||||
text-align: center;
|
||||
padding: 80px 40px;
|
||||
background: white;
|
||||
border-radius: 30px;
|
||||
box-shadow: 0 15px 40px rgba(0,0,0,0.05);
|
||||
margin-top: 40px;
|
||||
}
|
||||
|
||||
.force-text {
|
||||
font-size: 1.4rem;
|
||||
font-weight: 900;
|
||||
color: var(--gold-light);
|
||||
margin-top: 25px;
|
||||
letter-spacing: 8px;
|
||||
padding: 20px;
|
||||
background: #fff;
|
||||
border-radius: 12px;
|
||||
border-left: 4px solid #ddd;
|
||||
}
|
||||
|
||||
.tactic-card.success .example-box { border-color: var(--success-border); }
|
||||
.tactic-card.error .example-box { border-color: var(--error-border); }
|
||||
|
||||
.example-box strong {
|
||||
display: block;
|
||||
margin-bottom: 10px;
|
||||
font-size: 0.9rem;
|
||||
text-transform: uppercase;
|
||||
}
|
||||
|
||||
.example-box.error-example {
|
||||
margin-top: 15px;
|
||||
background: var(--error-bg);
|
||||
border-color: var(--error-border);
|
||||
}
|
||||
|
||||
/* Final Steps */
|
||||
.final-notice {
|
||||
text-align: center;
|
||||
padding: 60px;
|
||||
background: #fff;
|
||||
border-radius: 30px;
|
||||
border: 2px dashed var(--gold);
|
||||
}
|
||||
|
||||
.final-notice i {
|
||||
font-size: 3rem;
|
||||
color: var(--gold);
|
||||
margin-bottom: 20px;
|
||||
}
|
||||
|
||||
.final-notice h5 {
|
||||
font-size: 1.8rem;
|
||||
color: var(--text-main);
|
||||
margin-bottom: 15px;
|
||||
}
|
||||
|
||||
/* Footer */
|
||||
.luxury-footer {
|
||||
padding: 80px 40px;
|
||||
padding: 100px 40px;
|
||||
text-align: center;
|
||||
border-top: 1px solid rgba(0,0,0,0.05);
|
||||
}
|
||||
|
||||
.footer-logo {
|
||||
font-family: 'Ma Shan Zheng', cursive;
|
||||
font-size: 44px;
|
||||
font-size: 48px;
|
||||
color: var(--gold);
|
||||
margin-bottom: 20px;
|
||||
}
|
||||
|
||||
.disclaimer {
|
||||
color: var(--text-muted);
|
||||
font-size: 13px;
|
||||
margin-top: 15px;
|
||||
letter-spacing: 1px;
|
||||
font-size: 12px;
|
||||
margin-top: 20px;
|
||||
opacity: 0.6;
|
||||
}
|
||||
|
||||
/* Mobile Responsive */
|
||||
@media (max-width: 992px) {
|
||||
.sidebar-nav {
|
||||
display: none;
|
||||
}
|
||||
.mobile-nav {
|
||||
display: block;
|
||||
}
|
||||
.main-content {
|
||||
margin-left: 0;
|
||||
padding: 100px 20px 40px;
|
||||
}
|
||||
.luxury-hero {
|
||||
padding: 0;
|
||||
height: auto;
|
||||
min-height: 50vh;
|
||||
margin-bottom: 40px;
|
||||
}
|
||||
.tactic-grid, .info-grid {
|
||||
grid-template-columns: 1fr;
|
||||
}
|
||||
.glass-card {
|
||||
flex-direction: column;
|
||||
padding: 30px;
|
||||
gap: 20px;
|
||||
}
|
||||
.main-title {
|
||||
font-size: 2.8rem;
|
||||
}
|
||||
/* Responsive */
|
||||
@media (max-width: 1100px) {
|
||||
.main-content { margin-left: 0; padding: 120px 20px 60px; }
|
||||
.sidebar-nav { display: none; }
|
||||
.mobile-nav { display: block; }
|
||||
.tactic-grid { grid-template-columns: 1fr; }
|
||||
.main-title { font-size: 3rem; }
|
||||
}
|
||||
|
||||
/* Cursor Effect */
|
||||
/* Cursor */
|
||||
.cursor-follower {
|
||||
position: fixed;
|
||||
width: 30px;
|
||||
height: 30px;
|
||||
background: rgba(212, 175, 55, 0.2);
|
||||
width: 25px;
|
||||
height: 25px;
|
||||
background: rgba(212, 175, 55, 0.15);
|
||||
border-radius: 50%;
|
||||
pointer-events: none;
|
||||
z-index: 10000;
|
||||
transition: transform 0.1s ease;
|
||||
transition: transform 0.1s ease-out;
|
||||
}
|
||||
BIN
assets/pasted-20260127-143518-74ec1600.png
Normal file
BIN
assets/pasted-20260127-143518-74ec1600.png
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 40 KiB |
BIN
assets/pasted-20260127-144559-aacaf1f6.png
Normal file
BIN
assets/pasted-20260127-144559-aacaf1f6.png
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 173 KiB |
474
index.php
474
index.php
@ -6,7 +6,7 @@ require_once __DIR__ . '/db/config.php';
|
||||
<head>
|
||||
<meta charset="UTF-8">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no">
|
||||
<title>财神组 · 7日精细化运营全流程实战手册</title>
|
||||
<title>财神组 · 全域运营实战框架</title>
|
||||
<!-- Fonts -->
|
||||
<link rel="preconnect" href="https://fonts.googleapis.com">
|
||||
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
|
||||
@ -34,11 +34,8 @@ require_once __DIR__ . '/db/config.php';
|
||||
<span>财神组</span>
|
||||
</div>
|
||||
<div class="nav-links">
|
||||
<a href="#day1">D1</a>
|
||||
<a href="#day2">D2</a>
|
||||
<a href="#day3">D3-4</a>
|
||||
<a href="#day5">D5</a>
|
||||
<a href="#day6">D6-7</a>
|
||||
<a href="#day1">7日法</a>
|
||||
<a href="#chat-strategy">10步法</a>
|
||||
</div>
|
||||
</div>
|
||||
</nav>
|
||||
@ -50,11 +47,20 @@ require_once __DIR__ . '/db/config.php';
|
||||
<span>财神组</span>
|
||||
</div>
|
||||
<ul class="nav-menu">
|
||||
<li><a href="#day1" class="active"><span class="nav-num">01</span> 第一阶段</a></li>
|
||||
<li><a href="#day2"><span class="nav-num">02</span> 情感共鸣</a></li>
|
||||
<li><a href="#day3"><span class="nav-num">03</span> 价值升华</a></li>
|
||||
<li><a href="#day5"><span class="nav-num">05</span> 邀约切客</a></li>
|
||||
<li><a href="#day6"><span class="nav-num">06</span> 品牌塑造</a></li>
|
||||
<li class="menu-label" style="padding: 10px 15px; font-size: 12px; color: var(--gold); font-weight: 700;">1-7天运营计划</li>
|
||||
<li><a href="#day1" class="active"><span class="nav-num">D1</span> 信息获取</a></li>
|
||||
<li><a href="#day2"><span class="nav-num">D2</span> 寻找共鸣</a></li>
|
||||
<li><a href="#day3"><span class="nav-num">D3</span> 感情经历</a></li>
|
||||
<li><a href="#day5"><span class="nav-num">D5</span> 邀约切客</a></li>
|
||||
<li><a href="#day6"><span class="nav-num">D6</span> 塑造爱心</a></li>
|
||||
|
||||
<li class="menu-label" style="padding: 20px 15px 10px; font-size: 12px; color: var(--gold); font-weight: 700;">10步聊天实战</li>
|
||||
<li><a href="#step1"><span class="nav-num">01</span> 自我介绍</a></li>
|
||||
<li><a href="#step2"><span class="nav-num">02</span> 下诱饵</a></li>
|
||||
<li><a href="#step3"><span class="nav-num">03</span> 倾听技巧</a></li>
|
||||
<li><a href="#step4"><span class="nav-num">04</span> 建立共鸣</a></li>
|
||||
<li><a href="#step5"><span class="nav-num">05</span> 个人故事</a></li>
|
||||
<li><a href="#step10"><span class="nav-num">10</span> 客户判断</a></li>
|
||||
</ul>
|
||||
</aside>
|
||||
|
||||
@ -62,18 +68,20 @@ require_once __DIR__ . '/db/config.php';
|
||||
<!-- Hero Section -->
|
||||
<header class="luxury-hero animate__animated animate__fadeIn">
|
||||
<div class="badge">内部资料 · 严禁外传</div>
|
||||
<h1 class="main-title">财神组聊天框架</h1>
|
||||
<h2 class="sub-title">1–7 天精细化运营计划 · 绝密实战手册</h2>
|
||||
<h1 class="main-title">财神组全域运营框架</h1>
|
||||
<h2 class="sub-title">1–7 天精细运营 + 10 步实战聊天 · 绝密手册</h2>
|
||||
<div class="hero-stats">
|
||||
<div class="stat-item"><i class="fa-solid fa-brain"></i> 心理博弈</div>
|
||||
<div class="stat-item"><i class="fa-solid fa-gem"></i> 价值锚定</div>
|
||||
<div class="stat-item"><i class="fa-solid fa-shield-halved"></i> 信任构建</div>
|
||||
</div>
|
||||
<div class="scroll-down" style="margin-top: 50px; color: var(--gold); cursor: pointer;" onclick="document.getElementById('day1').scrollIntoView();">
|
||||
<i class="fa-solid fa-chevron-down animate__animated animate__bounce animate__infinite"></i>
|
||||
</div>
|
||||
</header>
|
||||
|
||||
<!-- PART 1: 7-Day Plan -->
|
||||
<div class="part-divider" style="border-bottom: 2px solid var(--gold); margin-bottom: 50px; padding-bottom: 10px;">
|
||||
<h4 style="color: var(--gold); font-family: 'Noto Serif SC', serif;">第一部分:1-7天精细化运营计划</h4>
|
||||
</div>
|
||||
|
||||
<!-- Day 1 -->
|
||||
<section id="day1" class="step-section">
|
||||
<div class="section-header">
|
||||
@ -82,17 +90,15 @@ require_once __DIR__ . '/db/config.php';
|
||||
<p class="step-goal">核心目标:建立第一印象,不被察觉地进行背景渗透</p>
|
||||
</div>
|
||||
<div class="step-body">
|
||||
<div class="glass-card">
|
||||
<div class="card-icon"><i class="fa-solid fa-address-card"></i></div>
|
||||
<div class="card-content">
|
||||
<div class="logic-card">
|
||||
<div class="logic-item">
|
||||
<h4>【基本信息获取流程】</h4>
|
||||
<p>跟客户聊天,互换消息,了解客户的<strong>职业、年龄、兴趣爱好</strong>等。慢慢去完善客户画像,但不要太明显目的。</p>
|
||||
<p class="warning-text">
|
||||
<p class="warning-text" style="color: #e67e22; margin-top: 15px;">
|
||||
<i class="fa-solid fa-circle-exclamation"></i> <strong>特别讲解:</strong>女人是隐私感很强的人,当你问他这些东西的时候,需要先介绍自己的,这就叫互换信息。或者用其他的聊天话题侧面去了解。这样不容易让客户反感。
|
||||
</p>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div class="tactic-grid">
|
||||
<div class="tactic-card">
|
||||
<h5><i class="fa-solid fa-wand-sparkles"></i> 插入小铺垫</h5>
|
||||
@ -103,7 +109,6 @@ require_once __DIR__ . '/db/config.php';
|
||||
<p>就算客户问起,也不需要立即告诉他USDT短线交易的重要信息。不要让客户觉得我们的目的性太明显。客户问,可以含糊其辞或点到为止,这就是<strong>欲擒故纵</strong>。</p>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div class="example-box">
|
||||
<h5><i class="fa-solid fa-quote-left"></i> 话术示例</h5>
|
||||
<div class="script">
|
||||
@ -121,32 +126,22 @@ require_once __DIR__ . '/db/config.php';
|
||||
<p class="step-goal">核心目标:拉升热度与黏度,确立“同频”关系</p>
|
||||
</div>
|
||||
<div class="step-body">
|
||||
<div class="glass-card">
|
||||
<div class="card-icon"><i class="fa-solid fa-heart"></i></div>
|
||||
<div class="card-content">
|
||||
<div class="logic-card">
|
||||
<div class="logic-item">
|
||||
<h4>【流程详解】</h4>
|
||||
<p>这时候就是要开始拉热度,拉黏度。试探客户喜欢的话题:旅游、事业、投资、慈善、国家经济等。只要是客户感兴趣的,让客户感觉我们跟他一样的想法,找到共鸣那么客户就算聊热了。</p>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div class="story-box">
|
||||
<div class="tactic-card" style="margin-bottom: 30px;">
|
||||
<h5><i class="fa-solid fa-user-tie"></i> 职业与背景铺垫</h5>
|
||||
<p><strong>台马两头跑的事业女性:</strong>大马的餐馆是兴趣(喜欢美食+妈妈是大马人),在台湾有自己的公司。基本上一个月或两个月回台湾。这种双栖背景为后续“无法见面”和“有钱”做了完美背书。</p>
|
||||
</div>
|
||||
|
||||
<div class="method-box">
|
||||
<div class="logic-card">
|
||||
<h5><i class="fa-solid fa-scissors"></i> 核心战术:话题拆分法</h5>
|
||||
<p>发素材图或视频打开话题。例如:客户发海边游泳照片。</p>
|
||||
<div class="scenario">
|
||||
<strong>拆分1:</strong>【海边】夸张这个位置,点评在哪个地方游泳风景好,适合夏天去潜水。<br>
|
||||
<strong>拆分2:</strong>【游泳】聊这是一项很好的运动,可以促进全身运动,对身体健康有什么好处。<br>
|
||||
<span class="highlight">最终目的:聊到双方产生兴趣,聊到看着屏幕傻笑。</span>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div class="action-box">
|
||||
<h5><i class="fa-solid fa-chart-line"></i> 继续轻点项目</h5>
|
||||
<p>如果客户问我们在干嘛,发K线图或交易图:“刚做完搬砖,在查看盈利和K线走势。” 客户问就适当讲几句,没问就继续聊别的。</p>
|
||||
<p><strong>拆分1:</strong>【海边】夸张这个位置,点评在哪个地方游泳风景好,适合夏天去潜水。</p>
|
||||
<p><strong>拆分2:</strong>【游泳】聊这是一项很好的运动,可以促进全身运动,对身体健康有什么好处。</p>
|
||||
<p style="color: var(--gold); font-weight: 700; margin-top: 10px;">最终目的:聊到双方产生兴趣,聊到看着屏幕傻笑。</p>
|
||||
</div>
|
||||
</div>
|
||||
</section>
|
||||
@ -159,29 +154,16 @@ require_once __DIR__ . '/db/config.php';
|
||||
<p class="step-goal">核心目标:升华信任,建立情感依赖</p>
|
||||
</div>
|
||||
<div class="step-body">
|
||||
<div class="glass-card">
|
||||
<div class="card-icon"><i class="fa-solid fa-book-open"></i></div>
|
||||
<div class="card-content">
|
||||
<div class="logic-card">
|
||||
<div class="logic-item">
|
||||
<h4>【流程讲解】</h4>
|
||||
<p>分享人设的感情经历。一定要是正能量的结果(即便分开了)。体现“弱势女群体”的属性,激发男人的<strong>保护欲</strong>。这是升华感情和信任度的必经之路。</p>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div class="strategy-card">
|
||||
<div class="tactic-card">
|
||||
<h5><i class="fa-solid fa-hand-fist"></i> 掌握主动权</h5>
|
||||
<p>之前是了解客户,现在要主动找话题,引导客户。铺垫自己是如何加入产品市场的:为什么做这个赚钱?通过对比失败和成功(比如之前被套牢过,亏过很多钱,最后通过小叔带路翻身)。</p>
|
||||
</div>
|
||||
|
||||
<div class="info-grid">
|
||||
<div class="info-item">
|
||||
<i class="fa-solid fa-user-friends"></i>
|
||||
<span>建立多重关系:朋友、情侣、知己</span>
|
||||
</div>
|
||||
<div class="info-item">
|
||||
<i class="fa-solid fa-shuffle"></i>
|
||||
<span>只要聊到经济,直接切换到产品话题</span>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</section>
|
||||
|
||||
@ -193,15 +175,13 @@ require_once __DIR__ . '/db/config.php';
|
||||
<p class="step-goal">核心目标:发起邀约,正式转化</p>
|
||||
</div>
|
||||
<div class="step-body">
|
||||
<div class="glass-card">
|
||||
<div class="card-icon"><i class="fa-solid fa-coins"></i></div>
|
||||
<div class="card-content">
|
||||
<div class="logic-card">
|
||||
<div class="logic-item">
|
||||
<h4>【流程讲解】</h4>
|
||||
<p>邀请客户一起做交易。<strong>关键动作:</strong>必须先铺垫要飞回台湾处理事情。这样当带入平台客户想见面时,可以有合理理由拒绝,避免怀疑。</p>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div class="method-card">
|
||||
<div class="tactic-card">
|
||||
<h5><i class="fa-solid fa-bullseye"></i> 主动切入技巧</h5>
|
||||
<p>说自己要去忙看走势、做节点,随后发盈利图。主动展示你的投资收益,让客户产生强烈的好奇感来问你。</p>
|
||||
</div>
|
||||
@ -216,18 +196,376 @@ require_once __DIR__ . '/db/config.php';
|
||||
<p class="step-goal">核心目标:塑造完美人格魅力</p>
|
||||
</div>
|
||||
<div class="step-body">
|
||||
<div class="glass-card">
|
||||
<div class="card-icon"><i class="fa-solid fa-hand-holding-heart"></i></div>
|
||||
<div class="card-content">
|
||||
<div class="logic-card">
|
||||
<div class="logic-item">
|
||||
<h4>【流程讲解】</h4>
|
||||
<p>塑造孝心、爱心、慈善、责任心。编造具体的小故事,情节要详细,要有画面感和真实感。让客户觉得你不仅是一个事业成功的女性,更是一个善良、有爱心的伴侣。</p>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div class="final-summary">
|
||||
<div class="final-summary" style="text-align: center; margin-top: 50px;">
|
||||
<i class="fa-solid fa-award" style="font-size: 3rem; color: var(--gold); margin-bottom: 20px;"></i>
|
||||
<p>聊客户其实很简单,只要按照周期和逻辑去走,就能精准吸引。</p>
|
||||
<p class="force-text">以上流程,一个字不可缺少。</p>
|
||||
</div>
|
||||
</div>
|
||||
</section>
|
||||
|
||||
<!-- PART 2: 10-Step Chat strategy -->
|
||||
<div id="chat-strategy" class="part-divider" style="border-bottom: 2px solid var(--gold); margin-top: 100px; margin-bottom: 50px; padding-bottom: 10px;">
|
||||
<h4 style="color: var(--gold); font-family: 'Noto Serif SC', serif;">第二部分:十步聊天实战手册</h4>
|
||||
</div>
|
||||
|
||||
<!-- Step 1 -->
|
||||
<section id="step1" class="step-section">
|
||||
<div class="section-header">
|
||||
<div class="step-num">STEP 01</div>
|
||||
<h3 class="step-title">第一步:自我介绍(建立安全感)</h3>
|
||||
<p class="step-goal">在聊天最初,让客户对你这个人“放下防备”</p>
|
||||
</div>
|
||||
<div class="step-body">
|
||||
<div class="logic-card">
|
||||
<div class="logic-item">
|
||||
<h5><i class="fa-solid fa-lightbulb"></i> 正确逻辑</h5>
|
||||
<ul>
|
||||
<li>陌生人聊天,客户第一反应是防备</li>
|
||||
<li>主动、简短、自我介绍 = 告诉对方你是正常人,不是来套话的</li>
|
||||
<li>安全感是信任的第一层</li>
|
||||
</ul>
|
||||
</div>
|
||||
</div>
|
||||
<div class="tactic-grid">
|
||||
<div class="tactic-card success">
|
||||
<h5><i class="fa-solid fa-circle-check"></i> 为什么正确</h5>
|
||||
<p>主动介绍=你掌控聊天节奏;短介绍=不占用客户精力;带一点背景=真实感。</p>
|
||||
<div class="example-box">
|
||||
<strong>正确示例:</strong>
|
||||
<p>“我叫安娜,老家在XX,从小家里比较严格,所以比较早独立,现在主要做客户维护。”</p>
|
||||
</div>
|
||||
</div>
|
||||
<div class="tactic-card error">
|
||||
<h5><i class="fa-solid fa-circle-xmark"></i> 为什么错误</h5>
|
||||
<p>不介绍自己,客户会默认你“不重要”或“不可信”;长篇介绍,会被当成推销前摇。</p>
|
||||
<div class="example-box">
|
||||
<strong>错误示例:</strong>
|
||||
<p>“我们公司成立很多年,业务范围包括……”</p>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</section>
|
||||
|
||||
<!-- Step 2 -->
|
||||
<section id="step2" class="step-section">
|
||||
<div class="section-header">
|
||||
<div class="step-num">STEP 02</div>
|
||||
<h3 class="step-title">第二步:下诱饵(让聊天继续)</h3>
|
||||
<p class="step-goal">主动抛出一个客户愿意接的话题</p>
|
||||
</div>
|
||||
<div class="step-body">
|
||||
<div class="logic-card">
|
||||
<div class="logic-item">
|
||||
<h5><i class="fa-solid fa-fish"></i> 为什么要这样做</h5>
|
||||
<ul>
|
||||
<li>陌生人不会主动找话题</li>
|
||||
<li>不下诱饵,聊天一定断</li>
|
||||
</ul>
|
||||
</div>
|
||||
</div>
|
||||
<div class="tactic-grid">
|
||||
<div class="tactic-card success">
|
||||
<h5><i class="fa-solid fa-circle-check"></i> 正确做法</h5>
|
||||
<p>从客户身上找话题=以客户为中心;一个话题聊深,比十个话题聊浅强。</p>
|
||||
<div class="example-box">
|
||||
<strong>正确示例:</strong>
|
||||
<p>“看你头像是在海边拍的,你是很喜欢旅行吗?”</p>
|
||||
</div>
|
||||
</div>
|
||||
<div class="tactic-card error">
|
||||
<h5><i class="fa-solid fa-circle-xmark"></i> 错误做法</h5>
|
||||
<p>连续抛问题=审问;多话题并行=客户不知道回哪个。</p>
|
||||
<div class="example-box">
|
||||
<strong>错误示例:</strong>
|
||||
<p>“你做什么工作的?多大?结婚了吗?”</p>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</section>
|
||||
|
||||
<!-- Step 3 -->
|
||||
<section id="step3" class="step-section">
|
||||
<div class="section-header">
|
||||
<div class="step-num">STEP 03</div>
|
||||
<h3 class="step-title">第三步:倾听(让客户愿意留下)</h3>
|
||||
<p class="step-goal">认真接住客户说的话,而不是急着表达自己</p>
|
||||
</div>
|
||||
<div class="step-body">
|
||||
<div class="logic-card">
|
||||
<div class="logic-item">
|
||||
<h5><i class="fa-solid fa-ear-listen"></i> 为什么要这样做</h5>
|
||||
<ul>
|
||||
<li>客户只会对“被理解”的人产生好感</li>
|
||||
<li>倾听是信任的核心动作</li>
|
||||
</ul>
|
||||
</div>
|
||||
</div>
|
||||
<div class="tactic-grid">
|
||||
<div class="tactic-card success">
|
||||
<h5><i class="fa-solid fa-circle-check"></i> 正确做法</h5>
|
||||
<p>抓一个点延伸=你在听;顺着情绪问=情感连接。</p>
|
||||
<div class="example-box">
|
||||
<strong>正确示例:</strong>
|
||||
<p>客户:“最近工作挺累。”<br>你:“听起来压力不小,是事情多,还是人比较难配合?”</p>
|
||||
</div>
|
||||
</div>
|
||||
<div class="tactic-card error">
|
||||
<h5><i class="fa-solid fa-circle-xmark"></i> 错误做法</h5>
|
||||
<p>抢话题=否定客户;立刻讲自己=客户失去表达欲。</p>
|
||||
<div class="example-box">
|
||||
<strong>错误示例:</strong>
|
||||
<p>“我也累,我之前比你还惨。”</p>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</section>
|
||||
|
||||
<!-- Step 4 -->
|
||||
<section id="step4" class="step-section">
|
||||
<div class="section-header">
|
||||
<div class="step-num">STEP 04</div>
|
||||
<h3 class="step-title">第四步:建立共鸣(关系升级)</h3>
|
||||
<p class="step-goal">让客户感觉你们是“同一类人”</p>
|
||||
</div>
|
||||
<div class="step-body">
|
||||
<div class="logic-card">
|
||||
<div class="logic-item">
|
||||
<h5><i class="fa-solid fa-people-arrows"></i> 核心价值</h5>
|
||||
<ul>
|
||||
<li>人只会信任和自己相似的人</li>
|
||||
<li>共鸣比讨好更高级</li>
|
||||
</ul>
|
||||
</div>
|
||||
</div>
|
||||
<div class="tactic-grid">
|
||||
<div class="tactic-card success">
|
||||
<h5><i class="fa-solid fa-circle-check"></i> 正确做法</h5>
|
||||
<p>先认同客户,再轻分享自己;共鸣=拉近心理距离。</p>
|
||||
<div class="example-box">
|
||||
<strong>正确示例:</strong>
|
||||
<p>“你说的我懂,我之前也经历过类似阶段。”</p>
|
||||
</div>
|
||||
</div>
|
||||
<div class="tactic-card error">
|
||||
<h5><i class="fa-solid fa-circle-xmark"></i> 错误做法</h5>
|
||||
<p>比惨=抢情绪;只讲自己=自我中心。</p>
|
||||
<div class="example-box">
|
||||
<strong>错误示例:</strong>
|
||||
<p>“你这算什么,我当年更难。”</p>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</section>
|
||||
|
||||
<!-- Step 5 -->
|
||||
<section id="step5" class="step-section">
|
||||
<div class="section-header">
|
||||
<div class="step-num">STEP 05</div>
|
||||
<h3 class="step-title">第五步:分享个人故事(塑造真实人设)</h3>
|
||||
<p class="step-goal">通过小故事,让客户觉得你真实、立体</p>
|
||||
</div>
|
||||
<div class="step-body">
|
||||
<div class="logic-card">
|
||||
<div class="logic-item">
|
||||
<h5><i class="fa-solid fa-book"></i> 为什么要这样做</h5>
|
||||
<ul>
|
||||
<li>信任来自真实,而不是完美</li>
|
||||
<li>故事比观点更容易被记住</li>
|
||||
</ul>
|
||||
</div>
|
||||
</div>
|
||||
<div class="tactic-grid">
|
||||
<div class="tactic-card success">
|
||||
<h5><i class="fa-solid fa-circle-check"></i> 正确做法</h5>
|
||||
<p>小、真、日常;留空间,不一次讲完。</p>
|
||||
<div class="example-box">
|
||||
<strong>正确示例:</strong>
|
||||
<p>“今天看到一个小孩,让我想到小时候家里对我要求特别严格。”</p>
|
||||
</div>
|
||||
</div>
|
||||
<div class="tactic-card error">
|
||||
<h5><i class="fa-solid fa-circle-xmark"></i> 错误做法</h5>
|
||||
<p>编故事=早晚穿帮;一次性讲完=失去后续聊天点。</p>
|
||||
<div class="example-box">
|
||||
<strong>错误示例:</strong>
|
||||
<p>“我人生经历特别丰富,我从头给你讲。”</p>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</section>
|
||||
|
||||
<!-- Step 6 -->
|
||||
<section id="step6" class="step-section">
|
||||
<div class="section-header">
|
||||
<div class="step-num">STEP 06</div>
|
||||
<h3 class="step-title">第六步:幽默与轻松(提升依赖感)</h3>
|
||||
<p class="step-goal">让客户和你聊天是“舒服的”</p>
|
||||
</div>
|
||||
<div class="step-body">
|
||||
<div class="logic-card">
|
||||
<div class="logic-item">
|
||||
<h5><i class="fa-solid fa-face-smile"></i> 核心价值</h5>
|
||||
<ul>
|
||||
<li>人会对让自己开心的人产生依赖</li>
|
||||
<li>轻幽默=拉近距离;自嘲安全、不冒犯</li>
|
||||
</ul>
|
||||
</div>
|
||||
</div>
|
||||
<div class="tactic-grid">
|
||||
<div class="tactic-card success">
|
||||
<h5><i class="fa-solid fa-circle-check"></i> 正确做法</h5>
|
||||
<div class="example-box">
|
||||
<strong>正确示例:</strong>
|
||||
<p>“我这个人慢热,但熟了就话多。”</p>
|
||||
</div>
|
||||
</div>
|
||||
<div class="tactic-card error">
|
||||
<h5><i class="fa-solid fa-circle-xmark"></i> 错误做法</h5>
|
||||
<p>强行玩笑=尴尬;调侃客户=踩雷。</p>
|
||||
<div class="example-box">
|
||||
<strong>错误示例:</strong>
|
||||
<p>“你怎么这么慢才回?”</p>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</section>
|
||||
|
||||
<!-- Step 7 -->
|
||||
<section id="step7" class="step-section">
|
||||
<div class="section-header">
|
||||
<div class="step-num">STEP 07</div>
|
||||
<h3 class="step-title">第七步:尊重隐私(防止信任崩塌)</h3>
|
||||
<p class="step-goal">避免过早触碰金钱、资产敏感点</p>
|
||||
</div>
|
||||
<div class="step-body">
|
||||
<div class="logic-card">
|
||||
<div class="logic-item">
|
||||
<h5><i class="fa-solid fa-user-shield"></i> 为什么要这样做</h5>
|
||||
<ul>
|
||||
<li>钱是成年人最高级隐私</li>
|
||||
<li>过早触碰=动机暴露</li>
|
||||
</ul>
|
||||
</div>
|
||||
</div>
|
||||
<div class="tactic-grid">
|
||||
<div class="tactic-card success">
|
||||
<h5><i class="fa-solid fa-circle-check"></i> 正确做法</h5>
|
||||
<p>先表达观点,再问看法;点到为止。</p>
|
||||
<div class="example-box">
|
||||
<strong>正确示例:</strong>
|
||||
<p>“我之前有关注房地产,你怎么看现在这个方向?”</p>
|
||||
</div>
|
||||
</div>
|
||||
<div class="tactic-card error">
|
||||
<h5><i class="fa-solid fa-circle-xmark"></i> 错误做法</h5>
|
||||
<p>追问金额=目的性太强。</p>
|
||||
<div class="example-box">
|
||||
<strong>错误示例:</strong>
|
||||
<p>“你投了多少钱?现在赚了吗?”</p>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</section>
|
||||
|
||||
<!-- Step 8 -->
|
||||
<section id="step8" class="step-section">
|
||||
<div class="section-header">
|
||||
<div class="step-num">STEP 08</div>
|
||||
<h3 class="step-title">第八步:提彩(身份铺垫)</h3>
|
||||
<p class="step-goal">让客户知道你是做什么的,但不成交</p>
|
||||
</div>
|
||||
<div class="step-body">
|
||||
<div class="logic-card">
|
||||
<div class="logic-item">
|
||||
<h5><i class="fa-solid fa-gem"></i> 为什么要这样做</h5>
|
||||
<ul>
|
||||
<li>完全不提=后期反而显得刻意</li>
|
||||
<li>提太多=像推销</li>
|
||||
</ul>
|
||||
</div>
|
||||
</div>
|
||||
<div class="tactic-grid">
|
||||
<div class="tactic-card success">
|
||||
<h5><i class="fa-solid fa-circle-check"></i> 正确做法</h5>
|
||||
<p>轻描淡写=自然。</p>
|
||||
<div class="example-box">
|
||||
<strong>正确示例:</strong>
|
||||
<p>“我现在主要做客户维护和资源对接。”</p>
|
||||
</div>
|
||||
</div>
|
||||
<div class="tactic-card error">
|
||||
<h5><i class="fa-solid fa-circle-xmark"></i> 错误做法</h5>
|
||||
<p>讲收益=破坏信任。</p>
|
||||
<div class="example-box">
|
||||
<strong>错误示例:</strong>
|
||||
<p>“我们这个项目回报很高。”</p>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</section>
|
||||
|
||||
<!-- Step 9 -->
|
||||
<section id="step9" class="step-section">
|
||||
<div class="section-header">
|
||||
<div class="step-num">STEP 09</div>
|
||||
<h3 class="step-title">第九步:诚实透明(长期信任)</h3>
|
||||
<p class="step-goal">通过真实态度,让客户长期认可你</p>
|
||||
</div>
|
||||
<div class="step-body">
|
||||
<div class="logic-card">
|
||||
<div class="logic-item">
|
||||
<h5><i class="fa-solid fa-handshake"></i> 核心逻辑</h5>
|
||||
<p>客户信的是人,不是产品。</p>
|
||||
<div class="example-box">
|
||||
<strong>正确示例:</strong>
|
||||
<p>“我之前也被套路过,所以现在做事会谨慎。”</p>
|
||||
</div>
|
||||
<div class="example-box error-example">
|
||||
<strong>错误示例:</strong>
|
||||
<p>“我从来没失误过。”</p>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</section>
|
||||
|
||||
<!-- Step 10 -->
|
||||
<section id="step10" class="step-section">
|
||||
<div class="section-header">
|
||||
<div class="step-num">STEP 10</div>
|
||||
<h3 class="step-title">第十步:判断客户是否值得继续</h3>
|
||||
<p class="step-goal">筛选对的人,不浪费无效精力</p>
|
||||
</div>
|
||||
<div class="step-body">
|
||||
<div class="logic-card">
|
||||
<div class="logic-item">
|
||||
<h5><i class="fa-solid fa-magnifying-glass-chart"></i> 判断逻辑</h5>
|
||||
<ul>
|
||||
<li><strong>回复积极</strong>=可跟进</li>
|
||||
<li><strong>敷衍应付</strong>=及时止损</li>
|
||||
</ul>
|
||||
</div>
|
||||
</div>
|
||||
<div class="final-notice" style="text-align: center; background: linear-gradient(135deg, rgba(212,175,55,0.1), rgba(255,255,255,0.5)); border: 1px solid var(--gold); padding: 30px; border-radius: 20px;">
|
||||
<i class="fa-solid fa-rocket" style="font-size: 2.5rem; color: var(--gold); margin-bottom: 15px;"></i>
|
||||
<p style="font-size: 1.2rem; color: var(--gold-dark); font-weight: 700; font-family: 'Noto Serif SC', serif;">
|
||||
每一份努力都将成为通往成功的基石,让我们共同攀登财富之巅!
|
||||
</p>
|
||||
<p style="color: #666; font-size: 0.9rem; margin-top: 10px;">持之以恒,终见彩虹。加油,财神组的每一位伙伴!</p>
|
||||
</div>
|
||||
</div>
|
||||
</section>
|
||||
@ -244,9 +582,9 @@ require_once __DIR__ . '/db/config.php';
|
||||
|
||||
<script src="assets/js/main.js"></script>
|
||||
<script>
|
||||
// AOS-like Simple Implementation
|
||||
// Intersection Observer for Active Menu
|
||||
document.addEventListener('DOMContentLoaded', () => {
|
||||
const observerOptions = { threshold: 0.2 };
|
||||
const observerOptions = { threshold: 0.3 };
|
||||
const observer = new IntersectionObserver((entries) => {
|
||||
entries.forEach(entry => {
|
||||
if (entry.isIntersecting) {
|
||||
|
||||
BIN
project.zip
Normal file
BIN
project.zip
Normal file
Binary file not shown.
Loading…
x
Reference in New Issue
Block a user