<!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>
<style>
/* 基础样式 */
* {
margin: 0;
padding: 0;
box-sizing: border-box;
font-family: "Microsoft YaHei", Arial, sans-serif;
}

body {
background-color: #f5f5f5;
color: #333;
line-height: 1.6;
}

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

/* 头部样式 */
header {
background-color: #0066cc;
color: white;
padding: 15px 0;
box-shadow: 0 2px 10px rgba(0,0,0,0.1);
position: sticky;
top: 0;
z-index: 100;
}

.header-content {
display: flex;
justify-content: space-between;
align-items: center;
}

.logo {
font-size: 24px;
font-weight: bold;
}

.contact-info {
text-align: right;
}

/* 导航样式 */
nav {
background-color: #fff;
box-shadow: 0 2px 10px rgba(0,0,0,0.05);
margin-bottom: 30px;
position: sticky;
top: 60px;
z-index: 99;
}

.nav-content {
display: flex;
justify-content: space-between;
overflow-x: auto;
white-space: nowrap;
}

.nav-item {
padding: 15px 20px;
cursor: pointer;
position: relative;
color: #333;
text-decoration: none;
font-weight: 500;
}

.nav-item:hover, .nav-item.active {
color: #0066cc;
}

.nav-item.active::after {
content: '';
position: absolute;
bottom: 0;
left: 20px;
width: calc(100% - 40px);
height: 3px;
background-color: #0066cc;
}

/* 主要内容样式 */
main {
margin-bottom: 40px;
}

section {
background-color: white;
border-radius: 8px;
padding: 30px;
margin-bottom: 30px;
box-shadow: 0 2px 10px rgba(0,0,0,0.05);
scroll-margin-top: 80px;
}

h1, h2, h3, h4 {
color: #0066cc;
margin-bottom: 15px;
padding-bottom: 10px;
border-bottom: 2px solid #e0e0e0;
}

h1 {
font-size: 28px;
}

h2 {
font-size: 24px;
}

h3 {
font-size: 20px;
}

p {
margin-bottom: 15px;
}

/* 列表样式 */
ul, ol {
margin-left: 20px;
margin-bottom: 20px;
}

li {
margin-bottom: 10px;
}

/* 服务分类样式 */
.service-categories {
display: flex;
flex-wrap: wrap;
gap: 20px;
margin-top: 20px;
}

.service-category {
flex: 1 1 300px;
background-color: #f9f9f9;
padding: 20px;
border-radius: 8px;
border-left: 4px solid #0066cc;
}

/* 价格表样式 */
table {
width: 100%;
border-collapse: collapse;
margin: 20px 0;
}

th, td {
padding: 12px 15px;
text-align: left;
border-bottom: 1px solid #e0e0e0;
}

th {
background-color: #f0f5ff;
color: #0066cc;
font-weight: bold;
}

tr:hover {
background-color: #f9f9f9;
}

/* 服务流程样式 */
.service-process {
display: flex;
flex-wrap: wrap;
gap: 20px;
margin-top: 20px;
}

.process-step {
flex: 1 1 200px;
background-color: #f9f9f9;
padding: 20px;
border-radius: 8px;
text-align: center;
position: relative;
}

.process-step::before {
content: attr(data-step);
position: absolute;
top: -15px;
left: 50%;
transform: translateX(-50%);
width: 30px;
height: 30px;
background-color: #0066cc;
color: white;
border-radius: 50%;
display: flex;
justify-content: center;
align-items: center;
font-weight: bold;
}

/* 客户评价样式 */
.testimonials {
display: flex;
flex-wrap: wrap;
gap: 20px;
margin-top: 20px;
}

.testimonial {
flex: 1 1 300px;
background-color: #f9f9f9;
padding: 20px;
border-radius: 8px;
border-left: 4px solid #ff9900;
}

.testimonial-author {
font-weight: bold;
color: #666;
margin-top: 15px;
font-style: italic;
}

/* 合作伙伴样式 */
.partners {
display: flex;
flex-wrap: wrap;
gap: 20px;
margin-top: 20px;
justify-content: center;
}

.partner {
background-color: #f9f9f9;
padding: 10px 20px;
border-radius: 4px;
font-size: 14px;
}

/* 页脚样式 */
footer {
background-color: #333;
color: white;
padding: 30px 0;
text-align: center;
}

.footer-content {
display: flex;
flex-wrap: wrap;
justify-content: space-between;
align-items: center;
}

.footer-info {
margin-bottom: 20px;
}

@media (max-width: 768px) {
.header-content {
flex-direction: column;
text-align: center;
}

.nav-content {
justify-content: flex-start;
}

.service-categories, .service-process, .testimonials {
flex-direction: column;
}

.footer-content {
flex-direction: column;
text-align: center;
}
}
</style>
</head>
<body>
<header>
<div class="container header-content">
<div class="logo">设计帮</div>
<div class="contact-info">
<p>国内领先的在线设计服务商</p>
<p>电话:400 8877 087</p>
</div>
</div>
</header>

<!-- 导航栏 -->
<nav>
<div class="container nav-content">
<a href="#home" class="nav-item active">首页</a>
<a href="#services" class="nav-item">服务范围</a>
<a href="#advantages" class="nav-item">我们的优势</a>
<a href="#commitments" class="nav-item">服务承诺</a>
<a href="#pricing" class="nav-item">服务价格</a>
<a href="#process" class="nav-item">服务流程</a>
<a href="#guarantee" class="nav-item">服务保障</a>
<a href="#partners" class="nav-item">合作伙伴</a>
<a href="#testimonials" class="nav-item">客户评价</a>
</div>
</nav>

<div class="container">
<main>
<section id="home">
<h1>国内领先的在线设计服务商</h1>
<p>平面设计师 远程雇佣平台</p>
<p>精细化技能标签 >> 高度数据化管理 >> 严格审核能力 >> 系统化培训</p>
<p>全国260多个城市可提供驻场外包服务</p>
<p>及时响应 >> 急速匹配 >> 灵活用工 >> 高效产出</p>

<div style="display: flex; flex-wrap: wrap; gap: 20px; margin-top: 20px;">
<div style="text-align: center;">
<p style="font-size: 28px; font-weight: bold; color: #0066cc;">3000+</p>
<p>精英云设计师</p>
</div>
<div style="text-align: center;">
<p style="font-size: 28px; font-weight: bold; color: #0066cc;">260+</p>
<p>全国服务城市</p>
</div>
<div style="text-align: center;">
<p style="font-size: 28px; font-weight: bold; color: #0066cc;">50000+</p>
<p>年服务客户数</p>
</div>
<div style="text-align: center;">
<p style="font-size: 28px; font-weight: bold; color: #0066cc;">15年</p>
<p>专业品牌设计服务</p>
</div>
</div>
</section>

<section id="services">
<h2>服务范围</h2>
<div class="service-categories">
<div class="service-category">
<h3>平面设计</h3>
<ul>
<li>海报、画册、折页、展板</li>
<li>文化墙、门头设计</li>
</ul>
</div>
<div class="service-category">
<h3>品牌设计</h3>
<ul>
<li>LOGO、商标注册、VIS</li>
<li>包装、插画、吉祥物</li>
</ul>
</div>
<div class="service-category">
<h3>UI设计</h3>
<ul>
<li>网页界面、APP界面</li>
<li>交互设计、小程序界面</li>
<li>H5设计</li>
</ul>
</div>
<div class="service-category">
<h3>文案策划</h3>
<ul>
<li>宣传文案、商业软文</li>
<li>策划案、品牌故事</li>
<li>视频脚本</li>
</ul>
</div>
<div class="service-category">
<h3>网站建设</h3>
<ul>
<li>公司官网、小程序</li>
<li>应用系统、app开发</li>
</ul>
</div>
</div>
</section>

<section id="advantages">
<h2>我们的优势</h2>
<p>我们会根据您的设计需求来匹配擅长设计师服务,例:您需要做LOGO,就安排擅长做LOGO的设计师</p>
<p>设计帮旗下有3000+海量设计师,精细划分出30多项细分技能,按照擅长标签筛选匹配</p>
<p>我们把项目安排给完稿率、好评率高的设计师,确保客户获得更好的服务体验</p>
</section>

<section id="commitments">
<h2>三大服务承诺</h2>
<ol>
<li>
<strong>及时响应-快速出稿</strong>
<p>严格把控各项关键数据指标,细分到合作的每个环节</p>
<p>对设计服务全程监管,敏感行为实时预警,信息超时未回复AI一键提醒响应</p>
<p>专业售后客服极速响应,高效解决问题</p>
</li>
<li>
<strong>不满意可退款</strong>
<p>如您对设计作品不满意,我们支持无条件退款服务</p>
<p>常规项目初稿不满意退款70%,高工耗、高难度项目则以客服沟通金额为准</p>
</li>
<li>
<strong>不限修改次数</strong>
<p>我们提供不限次修改服务,设计作品不满意,一直修改到您满意为止</p>
</li>
<li>
<strong>可更换设计师</strong>
<p>订单均优先按设计师擅长技能派发订单,如果客户对当前设计师不满意,可支持免费更换一次设计师</p>
</li>
</ol>
</section>

<section id="pricing">
<h2>服务项目与价格</h2>
<h3>画册设计</h3>
<table>
<tr>
<th>设计师级别</th>
<th>出稿时间</th>
<th>价格</th>
</tr>
<tr>
<td>总监设计师</td>
<td>72小时内</td>
<td>¥150/P</td>
</tr>
<tr>
<td>资深设计师</td>
<td>48小时内</td>
<td>¥100/P</td>
</tr>
<tr>
<td>新锐设计师</td>
<td>36小时内</td>
<td>¥50/P</td>
</tr>
</table>

<h3>LOGO设计</h3>
<table>
<tr>
<th>设计师级别</th>
<th>出稿时间</th>
<th>价格</th>
</tr>
<tr>
<td>总监设计师</td>
<td>72小时内</td>
<td>¥1500/个</td>
</tr>
<tr>
<td>资深设计师</td>
<td>48小时内</td>
<td>¥800/个</td>
</tr>
<tr>
<td>新锐设计师</td>
<td>36小时内</td>
<td>¥498/个</td>
</tr>
</table>

<h3>海报设计</h3>
<table>
<tr>
<th>设计师级别</th>
<th>出稿时间</th>
<th>价格</th>
</tr>
<tr>
<td>总监设计师</td>
<td>48小时内</td>
<td>¥450/起</td>
</tr>
<tr>
<td>资深设计师</td>
<td>48小时内</td>
<td>¥268/起</td>
</tr>
<tr>
<td>新锐设计师</td>
<td>36小时内</td>
<td>¥158/起</td>
</tr>
</table>

<h3>折页设计</h3>
<table>
<tr>
<th>设计师级别</th>
<th>出稿时间</th>
<th>价格</th>
</tr>
<tr>
<td>总监设计师</td>
<td>48小时内</td>
<td>¥150/P</td>
</tr>
<tr>
<td>资深设计师</td>
<td>48小时内</td>
<td>¥98/P</td>
</tr>
<tr>
<td>新锐设计师</td>
<td>36小时内</td>
<td>¥50/P</td>
</tr>
</table>
</section>

<section id="process">
<h2>设计服务流程</h2>
<p>由我们来提供更专业高效的设计服务,全方面保障 无后顾之忧</p>
<div class="service-process">
<div class="process-step" data-step="1">
<h3>描述需求</h3>
<p>详细说明您的设计需求和期望效果</p>
</div>
<div class="process-step" data-step="2">
<h3>提供报价</h3>
<p>根据需求提供详细的报价方案</p>
</div>
<div class="process-step" data-step="3">
<h3>下单付款</h3>
<p>确认方案后下单并支付款项</p>
</div>
<div class="process-step" data-step="4">
<h3>进行设计</h3>
<p>安排专业设计师开始进行设计工作</p>
</div>
<div class="process-step" data-step="5">
<h3>交付文件</h3>
<p>完成设计并交付最终文件</p>
</div>
<div class="process-step" data-step="6">
<h3>售后追踪</h3>
<p>提供售后支持和追踪服务</p>
</div>
</div>
</section>

<section id="guarantee">
<h2>服务保障</h2>
<ul>
<li><strong>签署服务合同</strong> - 签订订单服务合同,保障双方权益</li>
<li><strong>多种付款方式</strong> - 支持支付宝对公转账、企业微信收款、银行对公转账</li>
<li><strong>可开发票</strong> - 公司具备一般纳税人资质,支持开发票</li>
<li><strong>分阶段付款</strong> - 项目较多可分阶付款,做到哪付到哪</li>
<li><strong>100%真实案例</strong> - 公司所有案例均为设计师真实案例</li>
<li><strong>设计师实名认证</strong> - 设计师实名上岗,出现问题随时可追责</li>
</ul>
</section>

<section id="partners">
<h2>优秀伙伴展示</h2>
<p>他们都在使用设计帮服务</p>
<div class="partners">
<div class="partner">中国移动</div>
<div class="partner">携程</div>
<div class="partner">青岛啤酒</div>
<div class="partner">美团</div>
<div class="partner">碧桂园</div>
<div class="partner">中红医疗</div>
<div class="partner">汤达人</div>
<div class="partner">清风</div>
<div class="partner">广汽能源</div>
<div class="partner">去哪儿旅行</div>
<div class="partner">佰草集</div>
<div class="partner">怡亚通</div>
<div class="partner">中国航油</div>
<div class="partner">钉钉</div>
<div class="partner">德国柏丽</div>
<div class="partner">智联招聘</div>
<div class="partner">中国联通</div>
<div class="partner">美的</div>
<div class="partner">斯柯达</div>
<div class="partner">迪卡侬</div>
</div>
</section>

<section id="testimonials">
<h2>客户评价</h2>
<div class="testimonials">
<div class="testimonial">
<p>"已经和设计帮合作好五六年了,对我们来说,设计帮不仅是合作方,也是老朋友。合作以来设计帮的工作人员和设计师都特别负责任,总是为站在我们角度上考虑。最让我信任的是执行力,有什么问题马上解决,有什么要求,马上落地,这是我们长期合作的重要原因。"</p>
<div class="testimonial-author">何* - 能源公司-企业CEO</div>
</div>
<div class="testimonial">
<p>"说实话我对线上设计没怎么了解过,是因为公司设计师突然离职,一直没有招到合适的,迫于无奈才决定冒次险。刚开始合作的时候胆战心惊的,总觉得作品会很差,但没想到设计师很擅长做我们这行的物料,理解能力也很好。这一年的合作下来,设计帮对我们业务的帮助很大,希望双方都能越做越好。"</p>
<div class="testimonial-author">孟* - 培训行业-运营经理</div>
</div>
<div class="testimonial">
<p>"我们公司在三线城市,找个有水平的设计师难比登天,去一线挖人成本又太高,主要我们这行平常设计需求不多,主要是装修旺季和节假日,等于空闲时间比较多。后来接触了设计帮,发现线上设计更适合我们,旺季合作几个月,淡季就单任务合作,不仅作品好,员工成本省的不少,解决了我们公司招人的头等大事。"</p>
<div class="testimonial-author">朱*杰 - 家具行业—总经理</div>
</div>
<div class="testimonial">
<p>"线上设计我最担心的就是上沟通不及时,设计师水平差。但显然是我多虑了,设计帮有几千号设计师,不管是平常海报还是包装啥的,都很快给我匹配上了擅长的设计师,平常要修改沟通都是很及时的,工作人员还一直辅助协调,特别省事。而且这几年设计帮一直提升,服务更好了,合作方式也更多类型,希望贵公司越来越好!"</p>
<div class="testimonial-author">赵* - 餐饮行业—营销经理</div>
</div>
<div class="testimonial">
<p>"我们合作过五六家线上设计公司,不是水平差,就是服务差,还些草台班子,总是不太满意。最后选择设计帮是因为专业靠谱,从前期沟通到后期落地都非常省心,每个环节都设置的很合理,我们对工作人员和设计都很满意,之后大家继续合作,携手并进!"</p>
<div class="testimonial-author">张*文 - 旅游公司-营销主管</div>
</div>
<div class="testimonial">
<p>"合作这么久了,我必须来夸下你们。你们公司的设计师审美很可以,而且很专业,经常提出一些建设性意见,帮忙修改很多次都没抱怨过,服务人员也很细致上心,总之我是各方面都很满意的,我之前招的那几个设计师不仅工资高出很多,设计水平也不如你们,继续保持合作!"</p>
<div class="testimonial-author">王*旻 - 产品经理</div>
</div>
</div>
</section>
</main>

<footer>
<div class="container footer-content">
<div class="footer-info">
<p>设计帮 - 专业的品牌形象设计公司</p>
<p>电话:400 8877 087</p>
<p>地址:长沙市岳麓区麓云路天祥水晶湾东座</p>
</div>
<div class="footer-info">
<p>服务范围:包装设计、品牌VI设计、海报设计、画册折页设计、网页UI设计</p>
<p>© 2025 设计帮 版权所有</p>
</div>
</div>
</footer>
</div>

<script>
// 导航栏交互逻辑
document.addEventListener('DOMContentLoaded', function() {
const navItems = document.querySelectorAll('.nav-item');
const sections = document.querySelectorAll('section');

// 平滑滚动效果
navItems.forEach(item => {
item.addEventListener('click', function(e) {
e.preventDefault();

// 移除所有active类
navItems.forEach(navItem => navItem.classList.remove('active'));
// 为当前点击项添加active类
this.classList.add('active');

// 获取目标ID
const targetId = this.getAttribute('href');
// 滚动到目标位置
document.querySelector(targetId).scrollIntoView({
behavior: 'smooth'
});
});
});

// 滚动时更新导航激活状态
window.addEventListener('scroll', function() {
let current = '';

sections.forEach(section => {
const sectionTop = section.offsetTop;
const sectionHeight = section.clientHeight;
if (pageYOffset >= (sectionTop - 100)) {
current = '#' + section.getAttribute('id');
}
});

navItems.forEach(item => {
item.classList.remove('active');
if (item.getAttribute('href') === current) {
item.classList.add('active');
}
});
});
});
</script>
</body>
</html>把这个网站生成出来

total_tokens
0