<!DOCTYPE html>
<htm

By 15197559006, 23 June, 2025
角色
user
content

<!DOCTYPE html>
<html lang="zh-CN">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>客服手册 - 广告店专供包月服务</title>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/css/all.min.c…;
<style>
* {
margin: 0;
padding: 0;
box-sizing: border-box;
font-family: 'Segoe UI', 'Microsoft YaHei', sans-serif;
}

:root {
--primary: #2c3e50;
--primary-light: #34495e;
--secondary: #3498db;
--accent: #1abc9c;
--light: #f8f9fa;
--dark: #2c3e50;
--text: #34495e;
--text-light: #7f8c8d;
--border: #e0e7ee;
--success: #2ecc71;
--warning: #f39c12;
--danger: #e74c3c;
--shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
}

body {
background-color: #f5f7fa;
color: var(--text);
line-height: 1.6;
padding-bottom: 40px;
}

.container {
max-width: 1200px;
margin: 0 auto;
padding: 0 20px;
}

header {
background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
color: white;
padding: 30px 0 20px;
text-align: center;
margin-bottom: 30px;
box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.header-content {
max-width: 900px;
margin: 0 auto;
padding: 0 20px;
}

h1 {
font-size: 2.2rem;
margin-bottom: 10px;
font-weight: 600;
}

.subtitle {
font-size: 1.1rem;
max-width: 700px;
margin: 0 auto 20px;
opacity: 0.9;
font-weight: 400;
}

.info-bar {
display: flex;
justify-content: center;
flex-wrap: wrap;
gap: 30px;
margin-top: 20px;
background: rgba(255,255,255,0.1);
padding: 15px;
border-radius: 8px;
}

.info-item {
display: flex;
align-items: center;
gap: 8px;
font-size: 0.95rem;
}

.info-item i {
color: var(--accent);
}

section {
background: white;
border-radius: 10px;
padding: 30px;
margin-bottom: 30px;
box-shadow: var(--shadow);
border: 1px solid var(--border);
}

h2 {
color: var(--primary);
font-size: 1.6rem;
margin-bottom: 25px;
padding-bottom: 15px;
border-bottom: 2px solid var(--border);
display: flex;
align-items: center;
font-weight: 600;
}

h2 i {
margin-right: 12px;
color: var(--secondary);
background: rgba(52, 152, 219, 0.1);
width: 40px;
height: 40px;
border-radius: 50%;
display: inline-flex;
align-items: center;
justify-content: center;
font-size: 1.2rem;
}

h3 {
color: var(--primary);
font-size: 1.3rem;
margin: 20px 0 15px;
font-weight: 600;
}

/* 对比表格样式 */
.comparison-table {
width: 100%;
border-collapse: collapse;
margin: 20px 0;
border-radius: 8px;
overflow: hidden;
box-shadow: var(--shadow);
}

.comparison-table th,
.comparison-table td {
padding: 16px 20px;
text-align: left;
border-bottom: 1px solid var(--border);
}

.comparison-table th {
background-color: var(--primary);
color: white;
font-weight: 600;
}

.comparison-table tr:nth-child(even) {
background-color: #f8fafc;
}

.comparison-table tr:last-child td {
border-bottom: none;
}

.feature-highlight {
background-color: rgba(26, 188, 156, 0.08) !important;
font-weight: 600;
color: var(--primary);
}

.check-icon {
color: var(--success);
font-size: 1.1rem;
}

.x-icon {
color: var(--danger);
font-size: 1.1rem;
}

/* 服务范围卡片 */
.service-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
gap: 20px;
margin-top: 25px;
}

.service-card {
background: white;
border-radius: 8px;
padding: 25px;
box-shadow: var(--shadow);
border-left: 3px solid var(--accent);
transition: transform 0.2s ease;
}

.service-card:hover {
transform: translateY(-3px);
box-shadow: 0 5px 15px rgba(0,0,0,0.08);
}

.service-card h4 {
color: var(--primary);
margin-bottom: 15px;
font-size: 1.2rem;
display: flex;
align-items: center;
}

.service-card h4 i {
margin-right: 10px;
color: var(--accent);
}

.service-card ul {
padding-left: 20px;
}

.service-card li {
margin-bottom: 8px;
color: var(--text-light);
}

/* 设计师要求 */
.requirements {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
gap: 20px;
margin-top: 25px;
}

.requirement-card {
background: white;
border-radius: 8px;
padding: 20px;
box-shadow: var(--shadow);
display: flex;
align-items: flex-start;
border: 1px solid var(--border);
}

.requirement-card .number {
background: var(--accent);
color: white;
width: 30px;
height: 30px;
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
font-weight: bold;
margin-right: 15px;
flex-shrink: 0;
font-size: 0.9rem;
}

/* 权益部分 */
.benefits-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
gap: 20px;
margin-top: 25px;
}

.benefit-card {
display: flex;
align-items: flex-start;
padding: 20px;
background: white;
border-radius: 8px;
box-shadow: var(--shadow);
border: 1px solid var(--border);
}

.benefit-card i {
color: var(--secondary);
font-size: 1.5rem;
margin-right: 15px;
flex-shrink: 0;
}

.benefit-content h4 {
color: var(--primary);
margin-bottom: 8px;
font-weight: 600;
}

.benefit-content p {
color: var(--text-light);
font-size: 0.95rem;
}

/* 注意事项 */
.notes-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
gap: 20px;
margin-top: 25px;
}
/* 客户痛点部分 CSS */
.pain-points-section {
background: #ffffff;
border-radius: 12px;
padding: 30px;
margin-bottom: 30px;
box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
border: 1px solid #eaeef5;
}

.pain-points-section h2 {
color: #2c3e50;
font-size: 1.7rem;
margin-bottom: 15px;
padding-bottom: 15px;
border-bottom: 2px solid #f0f4f9;
display: flex;
align-items: center;
font-weight: 600;
}

.pain-points-section h2 i {
margin-right: 12px;
color: #3498db;
background: rgba(52, 152, 219, 0.1);
width: 42px;
height: 42px;
border-radius: 50%;
display: inline-flex;
align-items: center;
justify-content: center;
font-size: 1.2rem;
}

.section-subtitle {
color: #7f8c8d;
font-size: 1.05rem;
margin-bottom: 25px;
max-width: 800px;
line-height: 1.5;
}

.pain-points-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
gap: 25px;
}

.pain-point-card {
background: #f9fbfd;
border-radius: 10px;
padding: 25px;
transition: all 0.3s ease;
border-left: 4px solid #3498db;
height: 100%;
box-shadow: 0 3px 10px rgba(0, 0, 0, 0.03);
position: relative;
overflow: hidden;
}

.pain-point-card:before {
content: "";
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
background: linear-gradient(135deg, rgba(52, 152, 219, 0.03) 0%, rgba(26, 188, 156, 0.03) 100%);
z-index: 0;
}

.pain-point-card:hover {
transform: translateY(-5px);
box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
border-left-color: #1abc9c;
}

.pain-point-header {
display: flex;
align-items: center;
margin-bottom: 18px;
position: relative;
z-index: 1;
}

.pain-point-header i {
font-size: 1.8rem;
color: #3498db;
margin-right: 15px;
width: 50px;
height: 50px;
background: rgba(52, 152, 219, 0.1);
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
transition: all 0.3s ease;
}

.pain-point-card:hover .pain-point-header i {
background: rgba(26, 188, 156, 0.15);
color: #1abc9c;
transform: scale(1.1);
}

.pain-point-header h3 {
color: #2c3e50;
font-size: 1.25rem;
font-weight: 600;
margin: 0;
}

.pain-point-card p {
color: #566573;
font-size: 1rem;
line-height: 1.6;
position: relative;
z-index: 1;
margin: 0;
padding-left: 65px;
}

/* 响应式调整 */
@media (max-width: 768px) {
.pain-points-section {
padding: 25px 20px;
}

.pain-points-grid {
gap: 18px;
}

.pain-point-card {
padding: 20px;
}

.pain-point-header h3 {
font-size: 1.2rem;
}

.pain-point-card p {
padding-left: 0;
margin-top: 10px;
}
}

.note-card {
background: #f8f9fa;
border-radius: 8px;
padding: 20px;
border-left: 3px solid var(--warning);
}

.note-card h4 {
color: var(--primary);
margin-bottom: 10px;
display: flex;
align-items: center;
}

.note-card h4 i {
margin-right: 10px;
color: var(--warning);
}

/* 页脚 */
footer {
background: var(--primary);
color: white;
text-align: center;
padding: 30px 20px;
margin-top: 40px;
border-radius: 10px 10px 0 0;
}

.contact-info {
display: flex;
justify-content: center;
gap: 30px;
margin: 20px 0;
flex-wrap: wrap;
}

.contact-item {
display: flex;
align-items: center;
gap: 10px;
padding: 10px 20px;
background: rgba(255,255,255,0.1);
border-radius: 50px;
font-size: 0.95rem;
}

.copyright {
margin-top: 20px;
opacity: 0.7;
font-size: 0.9rem;
}
/* 产品概述部分 CSS */
.product-overview {
background: #ffffff;
border-radius: 12px;
padding: 35px 30px;
margin-bottom: 30px;
box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
border: 1px solid #eaeff5;
position: relative;
overflow: hidden;
}

.product-overview:before {
content: "";
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 4px;
background: linear-gradient(90deg, #3498db, #2ecc71);
}

.overview-header {
text-align: center;
margin-bottom: 35px;
position: relative;
padding-bottom: 20px;
}

.overview-header:after {
content: "";
position: absolute;
bottom: 0;
left: 50%;
transform: translateX(-50%);
width: 80px;
height: 4px;
background: linear-gradient(90deg, #3498db, #2ecc71);
border-radius: 2px;
}

.overview-header h2 {
color: #2c3e50;
font-size: 1.8rem;
margin-bottom: 12px;
font-weight: 700;
display: flex;
align-items: center;
justify-content: center;
}

.overview-header h2 i {
margin-right: 15px;
color: #3498db;
font-size: 1.4rem;
}

.section-subtitle {
color: #7f8c8d;
font-size: 1.1rem;
max-width: 700px;
margin: 0 auto;
line-height: 1.6;
}

.overview-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
gap: 30px;
margin-bottom: 30px;
}

.overview-card {
background: #f9fbfd;
border-radius: 12px;
padding: 25px;
box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
transition: all 0.4s ease;
border: 1px solid #eef2f7;
height: 100%;
position: relative;
overflow: hidden;
}

.overview-card:hover {
transform: translateY(-8px);
box-shadow: 0 12px 25px rgba(0, 0, 0, 0.1);
}

.card-header {
display: flex;
align-items: center;
margin-bottom: 22px;
padding-bottom: 18px;
border-bottom: 1px solid #eef2f7;
}

.card-header i {
font-size: 2rem;
width: 60px;
height: 60px;
background: rgba(52, 152, 219, 0.1);
border-radius: 12px;
display: flex;
align-items: center;
justify-content: center;
margin-right: 18px;
color: #3498db;
transition: all 0.3s ease;
}

.overview-card:hover .card-header i {
background: rgba(46, 204, 113, 0.15);
color: #2ecc71;
transform: scale(1.1);
}

.card-header h3 {
color: #2c3e50;
font-size: 1.4rem;
margin: 0;
font-weight: 600;
}

/* 市场分析卡片 */
.market-analysis .card-header i {
background: rgba(155, 89, 182, 0.1);
color: #9b59b6;
}

.market-analysis:hover .card-header i {
background: rgba(155, 89, 182, 0.15);
color: #8e44ad;
}

.stat-highlight {
background: linear-gradient(135deg, #9b59b6, #8e44ad);
color: white;
padding: 15px;
border-radius: 10px;
text-align: center;
margin-bottom: 20px;
}

.stat-number {
font-size: 2.5rem;
font-weight: 700;
display: block;
line-height: 1;
}

.stat-label {
font-size: 1.05rem;
opacity: 0.9;
}

.market-insights {
padding-left: 25px;
}

.market-insights li {
margin-bottom: 12px;
color: #34495e;
position: relative;
}

.market-insights li i {
color: #2ecc71;
margin-right: 10px;
position: absolute;
left: -25px;
top: 5px;
}

/* 目标客户卡片 */
.target-audience .card-header i {
background: rgba(52, 152, 219, 0.1);
color: #3498db;
}

.target-audience:hover .card-header i {
background: rgba(52, 152, 219, 0.15);
color: #2980b9;
}

.customer-types {
display: flex;
justify-content: space-between;
margin-bottom: 25px;
gap: 15px;
}

.customer-type {
text-align: center;
flex: 1;
padding: 15px 10px;
background: rgba(52, 152, 219, 0.08);
border-radius: 8px;
transition: all 0.3s ease;
}

.customer-type:hover {
background: rgba(52, 152, 219, 0.15);
transform: translateY(-5px);
}

.customer-type i {
font-size: 1.8rem;
color: #3498db;
margin-bottom: 10px;
display: block;
}

.customer-type span {
display: block;
font-weight: 600;
color: #2c3e50;
margin-bottom: 5px;
}

.type-desc {
font-size: 0.9rem;
color: #7f8c8d;
}

.customer-needs h4 {
color: #2c3e50;
font-size: 1.15rem;
margin-bottom: 12px;
padding-bottom: 8px;
border-bottom: 1px dashed #e0e7f1;
}

.customer-needs ul {
display: grid;
grid-template-columns: repeat(2, 1fr);
gap: 10px;
padding-left: 0;
list-style: none;
}

.customer-needs li {
padding: 10px 15px;
background: #f1f8ff;
border-radius: 6px;
font-size: 0.95rem;
color: #3498db;
font-weight: 500;
position: relative;
padding-left: 35px;
}

.customer-needs li:before {
content: "•";
position: absolute;
left: 15px;
top: 50%;
transform: translateY(-50%);
font-size: 1.5rem;
color: #3498db;
}

/* 响应式调整 */
@media (max-width: 768px) {
.comparison-table {
display: block;
overflow-x: auto;
}

h1 {
font-size: 1.8rem;
}

.subtitle {
font-size: 1rem;
}

section {
padding: 25px 20px;
}

.info-bar {
gap: 15px;
justify-content: flex-start;
}
}
</style>
</head>
<body>
<header>
<div class="header-content">
<h1><i class="fas fa-headset"></i> 广告店专供包月服务 - 客服手册</h1>
<p class="subtitle">客服人员专用参考文档,包含服务规则、差异对比及常见问题解答</p>

<div class="info-bar">
<div class="info-item">
<i class="fas fa-sync-alt"></i>
<span>最后更新:2025年06月23日</span>
</div>
</div>
</div>
</header>

<div class="container">

<!-- 产品概述部分 HTML -->
<section class="product-overview">
<div class="overview-header">
<h2><i class="fas fa-cube"></i> 产品概述</h2>
<p class="section-subtitle">广告店专供包月服务的核心价值与市场定位</p>
</div>

<div class="overview-grid">
<div class="overview-card market-analysis">
<div class="card-header">
<i class="fas fa-chart-pie"></i>
<h3>市场分析</h3>
</div>
<div class="card-content">
<div class="stat-highlight">
<span class="stat-number">70%+</span>
<span class="stat-label">公司包月业务占比</span>
</div>

<ul class="market-insights">
<li><i class="fas fa-check-circle"></i> 广告店包月服务占据公司整体包月业务的绝对主导地位,说明包月产品能够真正的解决广告店主们的实际需求</li>
<li><i class="fas fa-check-circle"></i> 为提高续费率,需要规范广告店包月的服务流程 </li>
<li><i class="fas fa-check-circle"></i> 为提高下单率,需要针对这一群体点对点的营销推广,继续扩大市场</li>
<li><i class="fas fa-check-circle"></i> 为提高留存率,吸纳更多广告店客户可以开发更多单项订单</li>
</ul>
</div>
</div>
</div>
<div class="overview-grid">
<div class="overview-card target-audience">
<div class="card-header">
<i class="fas fa-user-tag"></i>
<h3>目标客户</h3>
</div>
<div class="card-content">
<div class="customer-types">
<div class="customer-type">
<i class="fas fa-store"></i>
<span>小型广告店</span>
<div class="type-desc">(1-5人团队)</div>
</div>
<div class="customer-type">
<i class="fas fa-industry"></i>
<span>印刷厂</span>
<div class="type-desc">(配套设计服务)</div>
</div>
</div>
</div>
</div>

</div>

</section>

<!-- 客户痛点部分 HTML -->
<section class="pain-points-section">
<h2><i class="fas fa-exclamation-circle"></i> 广告店客户痛点分析</h2>
<p class="section-subtitle">深入了解客户面临的挑战,提供精准解决方案</p>

<div class="pain-points-grid">
<div class="pain-point-card">
<div class="pain-point-header">
<i class="fas fa-users"></i>
<h3>人力成本问题</h3>
</div>
<p>淡季养人成本高,旺季人手不足,难以平衡人力资源配置</p>
</div>

<div class="pain-point-card">
<div class="pain-point-header">
<i class="fas fa-paint-brush"></i>
<h3>设计经验局限</h3>
</div>
<p>线下人员设计类目经验单一,难以满足多样化客户需求</p>
</div>

<div class="pain-point-card">
<div class="pain-point-header">
<i class="fas fa-calendar-times"></i>
<h3>工作时间限制</h3>
</div>
<p>节假日周末无法加班,错失商机</p>
</div>

<div class="pain-point-card">
<div class="pain-point-header">
<i class="fas fa-user-cog"></i>
<h3>管理成本高</h3>
</div>
<p>人员管理占用大量时间,影响业务拓展</p>
</div>

<div class="pain-point-card">
<div class="pain-point-header">
<i class="fas fa-user-secret"></i>
<h3>客户流失风险</h3>
</div>
<p>员工可能撬走客户,造成大量业务损失</p>
</div>

<div class="pain-point-card">
<div class="pain-point-header">
<i class="fas fa-money-bill-wave"></i>
<h3>综合薪资成本</h3>
</div>
<p>薪资总成本高,包含社保、福利、年终奖等支出</p>
</div>

<div class="pain-point-card">
<div class="pain-point-header">
<i class="fas fa-user-slash"></i>
<h3>突发离职</h3>
</div>
<p>员工突然离职影响订单完成和客户满意度</p>
</div>

<div class="pain-point-card">
<div class="pain-point-header">
<i class="fas fa-search"></i>
<h3>招聘困难</h3>
</div>
<p>招人花费时间长,难以验证真实经验和技术水平</p>
</div>
<div class="pain-point-card">
<div class="pain-point-header">
<i class="fas fa-search"></i>
<h3>人员流动高</h3>
</div>
<p>员工学会经验后离职风险高,想自己开店</p>
</div>

</div>
</section>

<section>
<h2><i class="fas fa-balance-scale"></i> 专供包月 vs 普通包月</h2>
<p>广告店包月与普通包月的不同点与相同点:</p>

<table class="comparison-table">
<thead>
<tr>
<th>服务项目</th>
<th>广告店专供包月</th>
<th>普通包月</th>
</tr>
</thead>
<tbody>
<tr>
<td>服务时效</td>
<td class="feature-highlight"><i class="fas fa-check-circle check-icon"></i>2-5小时</td>
<td>1-4个工作日</td>
</tr>
<tr>
<td>服务范围</td>
<td class="feature-highlight">广告店高频需求</td>
<td>通用设计需求</td>
</tr>
<tr>
<td>设计师等级</td>
<td class="feature-highlight">仅新锐设计师</td>
<td>新锐、资深、总监</td>
</tr>
<tr>
<td>退款政策</td>
<td class="feature-highlight">当天可申请</td>
<td>提前7天申请退款</td>
</tr>
<tr>
<td>加班抵扣</td>
<td class="feature-highlight"><i class="fas fa-check-circle check-icon"></i>1.5工时</td>
<td>1-1.5工时,根据客服情况浮动</td>
</tr>
<tr>
<td>服务流程</td>
<td class="feature-highlight">
<p><i class="fas fa-check-circle check-icon"></i>初稿截图必带尺寸</p>
<p><i class="fas fa-check-circle check-icon"></i>发源文件后,文字发送源文件内容</p>
<p><i class="fas fa-check-circle check-icon"></i>引导客户按照需求模板发生需求</p>
<p>通用流程</p>
</td>

<td>通用流程</td>
</tr>
<tr>
<td>暂停服务</td>
<td class="feature-highlight"><p><i class="fas fa-check-circle check-icon"></i> 包季1次,7天/次</p>
<p><i class="fas fa-check-circle check-icon"></i> 包半年3次,7天/次</p>
<p><i class="fas fa-times-circle x-icon"></i> 包月不支持</p>
<p> 当天提出,次日即暂停</p></td>

<td><i class="fas fa-times-circle x-icon"></i>不支持</td>
</tr>

<tr>
<td>套餐升级</td>
<td>7天内可升级包季</td>
<td>7天内可升级包季</td>
</tr>

<tr>
<td>信用卡</td>
<td ><i class="fas fa-check-circle check-icon"></i> 支持 </td>
<td ><i class="fas fa-check-circle check-icon"></i> 支持 </td>
</tr>
</tbody>
</table>
</section>

<section>
<h2><i class="fas fa-user-tie"></i> 设计师要求</h2>
<p>广告店专供包月设计师已满足以下严格标准:</p>

<div class="requirements">
<div class="requirement-card">
<div class="number">1</div>
<div>拥有2年及以上广告店工作经验</div>
</div>
<div class="requirement-card">
<div class="number">2</div>
<div>硬性规定10分钟内必响应</div>
</div>
<div class="requirement-card">
<div class="number">3</div>
<div>一天确认可完成3-5张设计图</div>
</div>
<div class="requirement-card">
<div class="number">4</div>
<div>专人筛选稿件,确保符合广告店要求</div>
</div>
<div class="requirement-card">
<div class="number">5</div>
<div>有耐心,经过3轮60分钟筛选仍坚持</div>
</div>
<div class="requirement-card">
<div class="number">6</div>
<div>熟悉订单流程,必模拟包月订单操作</div>
</div>
</div>

<h3>质量监督机制</h3>
<ul style="padding-left: 25px; color: var(--text-light);">
<li>新设计师上传作品由派单专员和售后团队共4人共同评价</li>
<li>新人设计师接单后,前5天专人值班监督</li>
<li>每月底检查设计师群内聊天记录</li>
<li>日常敏感词监管</li>
<li>屡教不改者取消包月资格</li>
</ul>
</section>

</div>

<footer>
<div class="container">
<h3>广告店专供包月服务 - 客服支持</h3>
<p>内部使用文档 | 最后更新 2025.06.23</p>

<p class="copyright">© 2025 设计帮 | 内部资料,严禁外传</p>
</div>
</footer>
</body>
</html> 把这个页面代码放进去

total_tokens
0