0908
321
office-site/assets/css/style.css
Normal file
@@ -0,0 +1,321 @@
|
||||
/* 小米风格企业官网 - 全局样式 */
|
||||
:root {
|
||||
--mi-orange: #ff6900;
|
||||
--mi-orange-dark: #e65c00;
|
||||
--mi-orange-light: #fff3ea;
|
||||
--text: #333333;
|
||||
--text-sub: #757575;
|
||||
--text-light: #9e9e9e;
|
||||
--bg: #f5f5f5;
|
||||
--bg-soft: #fafafa;
|
||||
--border: #e6e6e6;
|
||||
--radius: 12px;
|
||||
--shadow: 0 4px 16px rgba(0, 0, 0, .06);
|
||||
--shadow-hover: 0 12px 28px rgba(0, 0, 0, .12);
|
||||
--header-h: 72px;
|
||||
}
|
||||
|
||||
* { margin: 0; padding: 0; box-sizing: border-box; }
|
||||
|
||||
body {
|
||||
font-family: "PingFang SC", "Microsoft YaHei", "Helvetica Neue", Helvetica, Arial, sans-serif;
|
||||
color: var(--text);
|
||||
background: #fff;
|
||||
line-height: 1.7;
|
||||
-webkit-font-smoothing: antialiased;
|
||||
}
|
||||
|
||||
a { color: inherit; text-decoration: none; }
|
||||
img { display: block; max-width: 100%; }
|
||||
ul { list-style: none; }
|
||||
|
||||
.container { width: 1226px; max-width: 100%; margin: 0 auto; padding: 0 16px; }
|
||||
|
||||
/* ============ 顶部导航 ============ */
|
||||
.header {
|
||||
position: sticky;
|
||||
top: 0;
|
||||
z-index: 100;
|
||||
background: rgba(255, 255, 255, .96);
|
||||
backdrop-filter: saturate(180%) blur(8px);
|
||||
border-bottom: 1px solid var(--border);
|
||||
}
|
||||
.header-inner {
|
||||
height: var(--header-h);
|
||||
display: flex;
|
||||
align-items: center;
|
||||
gap: 40px;
|
||||
}
|
||||
.logo { display: flex; align-items: center; gap: 10px; flex: none; }
|
||||
.logo img { width: 36px; height: 36px; }
|
||||
.logo span { font-size: 20px; font-weight: 700; letter-spacing: 1px; }
|
||||
|
||||
.nav { display: flex; gap: 36px; flex: 1; }
|
||||
.nav a {
|
||||
font-size: 15px;
|
||||
color: var(--text);
|
||||
padding: 6px 0;
|
||||
position: relative;
|
||||
transition: color .2s;
|
||||
}
|
||||
.nav a:hover { color: var(--mi-orange); }
|
||||
.nav a.active { color: var(--mi-orange); font-weight: 600; }
|
||||
.nav a.active::after {
|
||||
content: "";
|
||||
position: absolute;
|
||||
left: 50%;
|
||||
transform: translateX(-50%);
|
||||
bottom: -2px;
|
||||
width: 24px;
|
||||
height: 3px;
|
||||
border-radius: 2px;
|
||||
background: var(--mi-orange);
|
||||
}
|
||||
|
||||
.header-actions { display: flex; align-items: center; gap: 12px; flex: none; }
|
||||
|
||||
/* 按钮 */
|
||||
.btn {
|
||||
display: inline-flex;
|
||||
align-items: center;
|
||||
justify-content: center;
|
||||
gap: 8px;
|
||||
height: 44px;
|
||||
padding: 0 26px;
|
||||
border-radius: 22px;
|
||||
font-size: 15px;
|
||||
border: 1px solid transparent;
|
||||
cursor: pointer;
|
||||
transition: all .2s;
|
||||
font-family: inherit;
|
||||
}
|
||||
.btn-primary { background: var(--mi-orange); color: #fff; }
|
||||
.btn-primary:hover { background: var(--mi-orange-dark); transform: translateY(-1px); box-shadow: 0 6px 16px rgba(255, 105, 0, .3); }
|
||||
.btn-outline { border-color: var(--border); color: var(--text); background: #fff; }
|
||||
.btn-outline:hover { border-color: var(--mi-orange); color: var(--mi-orange); }
|
||||
.btn-sm { height: 36px; padding: 0 18px; font-size: 14px; border-radius: 18px; }
|
||||
.btn-block { width: 100%; }
|
||||
|
||||
/* ============ Hero ============ */
|
||||
.hero {
|
||||
background: linear-gradient(135deg, #fff7f1 0%, #f7f8fa 55%, #eef1f5 100%);
|
||||
padding: 72px 0 80px;
|
||||
overflow: hidden;
|
||||
}
|
||||
.hero-inner {
|
||||
display: grid;
|
||||
grid-template-columns: 1fr 1fr;
|
||||
gap: 48px;
|
||||
align-items: center;
|
||||
}
|
||||
.hero-tag {
|
||||
display: inline-block;
|
||||
background: var(--mi-orange-light);
|
||||
color: var(--mi-orange);
|
||||
font-size: 13px;
|
||||
padding: 6px 14px;
|
||||
border-radius: 14px;
|
||||
margin-bottom: 22px;
|
||||
}
|
||||
.hero h1 { font-size: 48px; line-height: 1.25; font-weight: 800; letter-spacing: 1px; }
|
||||
.hero h1 em { font-style: normal; color: var(--mi-orange); }
|
||||
.hero p { margin-top: 20px; font-size: 17px; color: var(--text-sub); max-width: 460px; }
|
||||
.hero-actions { margin-top: 34px; display: flex; gap: 14px; flex-wrap: wrap; }
|
||||
.hero-img { display: flex; justify-content: center; }
|
||||
.hero-img img { width: 100%; max-width: 460px; }
|
||||
|
||||
/* ============ 通用区块 ============ */
|
||||
.section { padding: 72px 0; }
|
||||
.section-soft { background: var(--bg); }
|
||||
.section-head { text-align: center; margin-bottom: 44px; }
|
||||
.section-head h2 { font-size: 32px; font-weight: 700; }
|
||||
.section-head p { margin-top: 10px; color: var(--text-sub); font-size: 15px; }
|
||||
|
||||
/* 卡片 */
|
||||
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
|
||||
.card {
|
||||
background: #fff;
|
||||
border-radius: var(--radius);
|
||||
padding: 34px 30px;
|
||||
box-shadow: var(--shadow);
|
||||
transition: all .25s ease;
|
||||
border: 1px solid transparent;
|
||||
}
|
||||
.card:hover { transform: translateY(-6px); box-shadow: var(--shadow-hover); border-color: #ffe0cc; }
|
||||
.card .icon {
|
||||
width: 96px;
|
||||
height: 96px;
|
||||
margin-bottom: 20px;
|
||||
}
|
||||
.card h3 { font-size: 20px; margin-bottom: 10px; }
|
||||
.card p { color: var(--text-sub); font-size: 14px; min-height: 48px; }
|
||||
.card .more {
|
||||
display: inline-flex;
|
||||
align-items: center;
|
||||
gap: 6px;
|
||||
margin-top: 18px;
|
||||
color: var(--mi-orange);
|
||||
font-size: 14px;
|
||||
font-weight: 600;
|
||||
}
|
||||
.card .more::after { content: "→"; transition: transform .2s; }
|
||||
.card:hover .more::after { transform: translateX(4px); }
|
||||
|
||||
/* 数据条 */
|
||||
.stats {
|
||||
display: grid;
|
||||
grid-template-columns: repeat(4, 1fr);
|
||||
background: #fff;
|
||||
border-radius: var(--radius);
|
||||
box-shadow: var(--shadow);
|
||||
overflow: hidden;
|
||||
}
|
||||
.stats .item { padding: 34px 20px; text-align: center; border-right: 1px solid var(--border); }
|
||||
.stats .item:last-child { border-right: none; }
|
||||
.stats .num { font-size: 32px; font-weight: 800; color: var(--mi-orange); }
|
||||
.stats .label { font-size: 14px; color: var(--text-sub); margin-top: 4px; }
|
||||
|
||||
/* ============ 内页 ============ */
|
||||
.page-banner {
|
||||
background: linear-gradient(135deg, #2b2b2b 0%, #1f1f1f 100%);
|
||||
color: #fff;
|
||||
padding: 56px 0;
|
||||
}
|
||||
.page-banner h1 { font-size: 36px; font-weight: 700; }
|
||||
.page-banner p { margin-top: 10px; color: rgba(255, 255, 255, .7); font-size: 15px; }
|
||||
|
||||
.panel {
|
||||
background: #fff;
|
||||
border-radius: var(--radius);
|
||||
box-shadow: var(--shadow);
|
||||
padding: 36px;
|
||||
}
|
||||
.panel + .panel { margin-top: 24px; }
|
||||
.panel h2 { font-size: 22px; margin-bottom: 8px; }
|
||||
.panel .desc { color: var(--text-sub); font-size: 14px; margin-bottom: 24px; }
|
||||
|
||||
/* 占位区块 */
|
||||
.placeholder {
|
||||
border: 1px dashed #d5d5d5;
|
||||
border-radius: 10px;
|
||||
background: repeating-linear-gradient(45deg, #fcfcfc, #fcfcfc 10px, #f7f7f7 10px, #f7f7f7 20px);
|
||||
color: var(--text-light);
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
align-items: center;
|
||||
justify-content: center;
|
||||
gap: 8px;
|
||||
text-align: center;
|
||||
padding: 40px 20px;
|
||||
font-size: 14px;
|
||||
}
|
||||
.placeholder .ph-title { font-size: 16px; color: var(--text-sub); font-weight: 600; }
|
||||
.placeholder.tall { min-height: 260px; }
|
||||
.placeholder.short { min-height: 120px; }
|
||||
|
||||
/* 目录 / 章节骨架 */
|
||||
.chapter-list { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }
|
||||
.chapter {
|
||||
background: #fff;
|
||||
border: 1px solid var(--border);
|
||||
border-radius: 10px;
|
||||
padding: 24px;
|
||||
transition: all .2s;
|
||||
}
|
||||
.chapter:hover { border-color: var(--mi-orange); }
|
||||
.chapter h4 { font-size: 16px; margin-bottom: 6px; }
|
||||
.chapter p { font-size: 13px; color: var(--text-light); }
|
||||
|
||||
/* 表单 */
|
||||
.form-row { display: flex; gap: 12px; flex-wrap: wrap; }
|
||||
.input {
|
||||
flex: 1;
|
||||
min-width: 240px;
|
||||
height: 48px;
|
||||
padding: 0 18px;
|
||||
border: 1px solid var(--border);
|
||||
border-radius: 8px;
|
||||
font-size: 15px;
|
||||
font-family: inherit;
|
||||
outline: none;
|
||||
transition: border-color .2s;
|
||||
}
|
||||
.input:focus { border-color: var(--mi-orange); }
|
||||
.form-tip { margin-top: 12px; font-size: 13px; color: var(--text-light); }
|
||||
|
||||
.result-box {
|
||||
margin-top: 24px;
|
||||
border-top: 1px solid var(--border);
|
||||
padding-top: 24px;
|
||||
}
|
||||
.result-empty { text-align: center; padding: 40px 0; color: var(--text-light); }
|
||||
.result-empty .big { font-size: 40px; margin-bottom: 10px; opacity: .35; }
|
||||
|
||||
table.result-table { width: 100%; border-collapse: collapse; font-size: 14px; }
|
||||
table.result-table th,
|
||||
table.result-table td { padding: 12px 14px; border-bottom: 1px solid var(--border); text-align: left; }
|
||||
table.result-table th { background: var(--bg-soft); color: var(--text-sub); font-weight: 600; }
|
||||
.pass { color: #52c41a; font-weight: 600; }
|
||||
|
||||
/* 客服 */
|
||||
.chat-layout { display: grid; grid-template-columns: 280px 1fr; gap: 24px; align-items: start; }
|
||||
.chat-window {
|
||||
background: var(--bg-soft);
|
||||
border: 1px solid var(--border);
|
||||
border-radius: 10px;
|
||||
overflow: hidden;
|
||||
}
|
||||
.chat-body { height: 380px; overflow-y: auto; padding: 20px; background: #fff; }
|
||||
.bubble { max-width: 78%; padding: 12px 16px; border-radius: 14px; font-size: 14px; margin-bottom: 14px; line-height: 1.6; }
|
||||
.bubble.bot { background: var(--bg-soft); border-top-left-radius: 4px; }
|
||||
.bubble.me { background: var(--mi-orange); color: #fff; margin-left: auto; border-top-right-radius: 4px; }
|
||||
.chat-foot { display: flex; gap: 10px; padding: 14px; border-top: 1px solid var(--border); background: #fff; }
|
||||
|
||||
.quick-list { display: flex; flex-direction: column; gap: 10px; }
|
||||
.quick-item {
|
||||
background: #fff;
|
||||
border: 1px solid var(--border);
|
||||
border-radius: 8px;
|
||||
padding: 12px 14px;
|
||||
font-size: 14px;
|
||||
cursor: pointer;
|
||||
transition: all .2s;
|
||||
}
|
||||
.quick-item:hover { border-color: var(--mi-orange); color: var(--mi-orange); }
|
||||
|
||||
/* ============ 页脚 ============ */
|
||||
.footer { background: #fff; border-top: 1px solid var(--border); padding: 48px 0 28px; margin-top: 40px; }
|
||||
.footer-cols { display: grid; grid-template-columns: 1.4fr repeat(3, 1fr); gap: 32px; }
|
||||
.footer h5 { font-size: 15px; margin-bottom: 14px; }
|
||||
.footer li { font-size: 13px; color: var(--text-sub); padding: 5px 0; }
|
||||
.footer li:hover { color: var(--mi-orange); }
|
||||
.footer .brand p { font-size: 13px; color: var(--text-sub); margin-top: 12px; }
|
||||
.footer-bottom {
|
||||
margin-top: 32px;
|
||||
padding-top: 20px;
|
||||
border-top: 1px solid var(--border);
|
||||
text-align: center;
|
||||
font-size: 12px;
|
||||
color: var(--text-light);
|
||||
}
|
||||
.footer-bottom a { color: var(--text-light); transition: color .2s; }
|
||||
.footer-bottom a:hover { color: var(--mi-orange); }
|
||||
|
||||
/* ============ 响应式 ============ */
|
||||
@media (max-width: 1080px) {
|
||||
.container { width: 100%; }
|
||||
.hero-inner { grid-template-columns: 1fr; text-align: center; }
|
||||
.hero p { margin-left: auto; margin-right: auto; }
|
||||
.hero-actions { justify-content: center; }
|
||||
.grid-3 { grid-template-columns: repeat(2, 1fr); }
|
||||
.stats { grid-template-columns: repeat(2, 1fr); }
|
||||
.stats .item:nth-child(2) { border-right: none; }
|
||||
.chat-layout { grid-template-columns: 1fr; }
|
||||
.footer-cols { grid-template-columns: repeat(2, 1fr); }
|
||||
}
|
||||
@media (max-width: 720px) {
|
||||
.nav { gap: 18px; overflow-x: auto; }
|
||||
.hero h1 { font-size: 34px; }
|
||||
.grid-3, .chapter-list { grid-template-columns: 1fr; }
|
||||
.section { padding: 48px 0; }
|
||||
}
|
||||
77
office-site/assets/img/hero-nas.svg
Normal file
@@ -0,0 +1,77 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 480 420" width="480" height="420">
|
||||
<defs>
|
||||
<linearGradient id="body" x1="0" y1="0" x2="1" y2="1">
|
||||
<stop offset="0" stop-color="#f4f6f8"/>
|
||||
<stop offset="1" stop-color="#dfe4ea"/>
|
||||
</linearGradient>
|
||||
<linearGradient id="bay" x1="0" y1="0" x2="0" y2="1">
|
||||
<stop offset="0" stop-color="#ffffff"/>
|
||||
<stop offset="1" stop-color="#e9edf2"/>
|
||||
</linearGradient>
|
||||
<linearGradient id="acc" x1="0" y1="0" x2="1" y2="1">
|
||||
<stop offset="0" stop-color="#ff8a3d"/>
|
||||
<stop offset="1" stop-color="#ff6900"/>
|
||||
</linearGradient>
|
||||
</defs>
|
||||
|
||||
<ellipse cx="240" cy="392" rx="140" ry="16" fill="#000" opacity=".07"/>
|
||||
|
||||
<!-- 机箱 -->
|
||||
<rect x="140" y="26" width="200" height="336" rx="18" fill="url(#body)" stroke="#c7ced6" stroke-width="2"/>
|
||||
<rect x="140" y="26" width="200" height="336" rx="18" fill="none" stroke="#ffffff" stroke-width="1" opacity=".6"/>
|
||||
|
||||
<!-- 顶部散热格栅 -->
|
||||
<g stroke="#c2c9d1" stroke-width="3" stroke-linecap="round">
|
||||
<line x1="172" y1="48" x2="308" y2="48"/>
|
||||
<line x1="172" y1="58" x2="308" y2="58"/>
|
||||
</g>
|
||||
|
||||
<!-- 四盘位 -->
|
||||
<g>
|
||||
<rect x="158" y="78" width="164" height="52" rx="7" fill="url(#bay)" stroke="#ccd3da"/>
|
||||
<rect x="168" y="90" width="46" height="28" rx="4" fill="#c8d0d8"/>
|
||||
<rect x="222" y="96" width="88" height="6" rx="3" fill="#dfe4ea"/>
|
||||
<rect x="222" y="108" width="60" height="6" rx="3" fill="#dfe4ea"/>
|
||||
<circle cx="300" cy="99" r="4" fill="#52c41a"/>
|
||||
|
||||
<rect x="158" y="138" width="164" height="52" rx="7" fill="url(#bay)" stroke="#ccd3da"/>
|
||||
<rect x="168" y="150" width="46" height="28" rx="4" fill="#c8d0d8"/>
|
||||
<rect x="222" y="156" width="88" height="6" rx="3" fill="#dfe4ea"/>
|
||||
<rect x="222" y="168" width="60" height="6" rx="3" fill="#dfe4ea"/>
|
||||
<circle cx="300" cy="159" r="4" fill="#52c41a"/>
|
||||
|
||||
<rect x="158" y="198" width="164" height="52" rx="7" fill="url(#bay)" stroke="#ccd3da"/>
|
||||
<rect x="168" y="210" width="46" height="28" rx="4" fill="#c8d0d8"/>
|
||||
<rect x="222" y="216" width="88" height="6" rx="3" fill="#dfe4ea"/>
|
||||
<rect x="222" y="228" width="60" height="6" rx="3" fill="#dfe4ea"/>
|
||||
<circle cx="300" cy="219" r="4" fill="#52c41a"/>
|
||||
|
||||
<rect x="158" y="258" width="164" height="52" rx="7" fill="url(#bay)" stroke="#ccd3da"/>
|
||||
<rect x="168" y="270" width="46" height="28" rx="4" fill="#c8d0d8"/>
|
||||
<rect x="222" y="276" width="88" height="6" rx="3" fill="#dfe4ea"/>
|
||||
<rect x="222" y="288" width="60" height="6" rx="3" fill="#dfe4ea"/>
|
||||
<circle cx="300" cy="279" r="4" fill="#52c41a"/>
|
||||
</g>
|
||||
|
||||
<!-- 底部品牌条与指示灯 -->
|
||||
<rect x="158" y="324" width="164" height="22" rx="11" fill="#2f3540"/>
|
||||
<circle cx="176" cy="335" r="5" fill="url(#acc)"/>
|
||||
<rect x="192" y="332" width="70" height="6" rx="3" fill="#5a626e"/>
|
||||
|
||||
<!-- 底座 -->
|
||||
<rect x="176" y="362" width="30" height="10" rx="4" fill="#b9c1c9"/>
|
||||
<rect x="274" y="362" width="30" height="10" rx="4" fill="#b9c1c9"/>
|
||||
|
||||
<!-- 装饰:网络/云 -->
|
||||
<g opacity=".9">
|
||||
<path d="M92 120a26 26 0 0 1 25-19 30 30 0 0 1 56 8 22 22 0 0 1-3 43h-56a26 26 0 0 1-22-32z" fill="#ffffff" stroke="#ff6900" stroke-width="2" opacity=".85"/>
|
||||
<path d="M112 152v26M132 152v18M152 152v26" stroke="#ff6900" stroke-width="2" stroke-linecap="round" opacity=".7"/>
|
||||
</g>
|
||||
<g opacity=".9">
|
||||
<rect x="368" y="96" width="72" height="52" rx="8" fill="#ffffff" stroke="#c7ced6" stroke-width="2"/>
|
||||
<rect x="380" y="112" width="48" height="6" rx="3" fill="#ff6900" opacity=".8"/>
|
||||
<rect x="380" y="124" width="34" height="6" rx="3" fill="#dfe4ea"/>
|
||||
<circle cx="404" cy="168" r="16" fill="#fff" stroke="#ff6900" stroke-width="2"/>
|
||||
<path d="M398 168l5 5 9-10" stroke="#ff6900" stroke-width="3" fill="none" stroke-linecap="round" stroke-linejoin="round"/>
|
||||
</g>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 3.8 KiB |
15
office-site/assets/img/icon-guide.svg
Normal file
@@ -0,0 +1,15 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 160 160" width="160" height="160">
|
||||
<rect x="18" y="18" width="104" height="124" rx="12" fill="#fff7f1" stroke="#ffd0ad" stroke-width="3"/>
|
||||
<path d="M104 18h6a12 12 0 0 1 12 12v18h-18z" fill="#ffe3cf" stroke="#ffd0ad" stroke-width="3"/>
|
||||
<g fill="#ff6900" opacity=".85">
|
||||
<rect x="38" y="46" width="64" height="7" rx="3.5"/>
|
||||
<rect x="38" y="64" width="48" height="7" rx="3.5"/>
|
||||
</g>
|
||||
<g fill="#d8dee6">
|
||||
<rect x="38" y="88" width="72" height="6" rx="3"/>
|
||||
<rect x="38" y="102" width="72" height="6" rx="3"/>
|
||||
<rect x="38" y="116" width="44" height="6" rx="3"/>
|
||||
</g>
|
||||
<circle cx="118" cy="118" r="26" fill="#fff" stroke="#ff6900" stroke-width="3"/>
|
||||
<path d="M110 118l6 6 12-13" stroke="#ff6900" stroke-width="4" fill="none" stroke-linecap="round" stroke-linejoin="round"/>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 860 B |
12
office-site/assets/img/icon-report.svg
Normal file
@@ -0,0 +1,12 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 160 160" width="160" height="160">
|
||||
<rect x="30" y="20" width="100" height="120" rx="12" fill="#fff7f1" stroke="#ffd0ad" stroke-width="3"/>
|
||||
<rect x="62" y="10" width="36" height="22" rx="6" fill="#fff" stroke="#ff6900" stroke-width="3"/>
|
||||
<g fill="#d8dee6">
|
||||
<rect x="50" y="58" width="60" height="6" rx="3"/>
|
||||
<rect x="50" y="74" width="60" height="6" rx="3"/>
|
||||
<rect x="50" y="90" width="38" height="6" rx="3"/>
|
||||
</g>
|
||||
<circle cx="112" cy="104" r="28" fill="#fff" stroke="#ff6900" stroke-width="3"/>
|
||||
<path d="M100 104l8 9 18-20" stroke="#ff6900" stroke-width="5" fill="none" stroke-linecap="round" stroke-linejoin="round"/>
|
||||
<rect x="50" y="118" width="30" height="6" rx="3" fill="#ff6900" opacity=".7"/>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 785 B |
13
office-site/assets/img/icon-support.svg
Normal file
@@ -0,0 +1,13 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 160 160" width="160" height="160">
|
||||
<path d="M28 92a52 52 0 0 1 104 0" fill="none" stroke="#ff6900" stroke-width="6" stroke-linecap="round"/>
|
||||
<rect x="14" y="84" width="22" height="34" rx="10" fill="#ff6900"/>
|
||||
<rect x="124" y="84" width="22" height="34" rx="10" fill="#ff6900"/>
|
||||
<path d="M28 112v6a12 12 0 0 0 12 12h24" fill="none" stroke="#ff6900" stroke-width="6" stroke-linecap="round"/>
|
||||
<circle cx="76" cy="134" r="10" fill="#fff" stroke="#ff6900" stroke-width="4"/>
|
||||
<g fill="#d8dee6">
|
||||
<rect x="52" y="34" width="56" height="6" rx="3"/>
|
||||
<rect x="60" y="48" width="40" height="6" rx="3"/>
|
||||
</g>
|
||||
<circle cx="118" cy="46" r="16" fill="#fff7f1" stroke="#ffd0ad" stroke-width="3"/>
|
||||
<path d="M112 46l5 5 9-10" stroke="#ff6900" stroke-width="4" fill="none" stroke-linecap="round" stroke-linejoin="round"/>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 887 B |
12
office-site/assets/img/logo.svg
Normal file
@@ -0,0 +1,12 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 64 64" width="64" height="64">
|
||||
<defs>
|
||||
<linearGradient id="lg" x1="0" y1="0" x2="1" y2="1">
|
||||
<stop offset="0" stop-color="#ff8a3d"/>
|
||||
<stop offset="1" stop-color="#ff6900"/>
|
||||
</linearGradient>
|
||||
</defs>
|
||||
<rect x="2" y="2" width="60" height="60" rx="16" fill="url(#lg)"/>
|
||||
<rect x="14" y="16" width="36" height="10" rx="5" fill="#fff"/>
|
||||
<rect x="14" y="30" width="36" height="10" rx="5" fill="#fff" opacity=".85"/>
|
||||
<rect x="14" y="44" width="20" height="6" rx="3" fill="#fff" opacity=".7"/>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 574 B |
66
office-site/assets/js/main.js
Normal file
@@ -0,0 +1,66 @@
|
||||
// 站点交互(占位实现,接入后端后替换为真实接口)
|
||||
(function () {
|
||||
'use strict';
|
||||
|
||||
/* ---------- 报告查询 ---------- */
|
||||
var form = document.getElementById('reportForm');
|
||||
if (form) {
|
||||
var sn = document.getElementById('sn');
|
||||
var empty = document.getElementById('resultEmpty');
|
||||
var detail = document.getElementById('resultDetail');
|
||||
|
||||
form.addEventListener('submit', function (e) {
|
||||
e.preventDefault();
|
||||
var val = (sn.value || '').trim();
|
||||
if (!val) {
|
||||
alert('请输入机身编号 / SN');
|
||||
sn.focus();
|
||||
return;
|
||||
}
|
||||
// TODO 接口:GET /api/reports?sn=xxx → 渲染真实报告数据
|
||||
empty.style.display = 'none';
|
||||
detail.style.display = 'block';
|
||||
detail.scrollIntoView({ behavior: 'smooth', block: 'nearest' });
|
||||
});
|
||||
}
|
||||
|
||||
/* ---------- 智能客服 ---------- */
|
||||
var chatForm = document.getElementById('chatForm');
|
||||
if (chatForm) {
|
||||
var input = document.getElementById('chatInput');
|
||||
var body = document.getElementById('chatBody');
|
||||
|
||||
function addBubble(text, who) {
|
||||
var el = document.createElement('div');
|
||||
el.className = 'bubble ' + who;
|
||||
el.textContent = text;
|
||||
body.appendChild(el);
|
||||
body.scrollTop = body.scrollHeight;
|
||||
}
|
||||
|
||||
chatForm.addEventListener('submit', function (e) {
|
||||
e.preventDefault();
|
||||
var text = (input.value || '').trim();
|
||||
if (!text) return;
|
||||
addBubble(text, 'me');
|
||||
input.value = '';
|
||||
|
||||
// TODO 接口:POST /api/chat → 返回真实回复
|
||||
setTimeout(function () {
|
||||
addBubble('已收到你的问题:' + '「' + text + '」。智能客服接口尚未接入,这里将展示真实回复。', 'bot');
|
||||
}, 400);
|
||||
});
|
||||
}
|
||||
|
||||
/* ---------- 常见问题快捷提问 ---------- */
|
||||
var quickList = document.getElementById('quickList');
|
||||
if (quickList) {
|
||||
var chatInput = document.getElementById('chatInput');
|
||||
quickList.addEventListener('click', function (e) {
|
||||
var item = e.target.closest('.quick-item');
|
||||
if (!item || !chatInput) return;
|
||||
chatInput.value = item.textContent.trim();
|
||||
chatInput.focus();
|
||||
});
|
||||
}
|
||||
})();
|
||||
143
office-site/guide.html
Normal file
@@ -0,0 +1,143 @@
|
||||
<!DOCTYPE html>
|
||||
<html lang="zh-CN">
|
||||
<head>
|
||||
<meta charset="UTF-8">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1">
|
||||
<title>使用说明 · 泽枢云启</title>
|
||||
<link rel="icon" href="assets/img/logo.svg">
|
||||
<link rel="stylesheet" href="assets/css/style.css">
|
||||
</head>
|
||||
<body>
|
||||
|
||||
<header class="header">
|
||||
<div class="container header-inner">
|
||||
<a href="index.html" class="logo">
|
||||
<img src="assets/img/logo.svg" alt="logo">
|
||||
<span>泽枢云启</span>
|
||||
</a>
|
||||
<nav class="nav">
|
||||
<a href="index.html">首页</a>
|
||||
<a href="guide.html" class="active">使用说明</a>
|
||||
<a href="report.html">报告查询</a>
|
||||
<a href="support.html">智能客服</a>
|
||||
</nav>
|
||||
<div class="header-actions">
|
||||
<a class="btn btn-primary btn-sm" href="report.html">查询报告</a>
|
||||
</div>
|
||||
</div>
|
||||
</header>
|
||||
|
||||
<section class="page-banner">
|
||||
<div class="container">
|
||||
<h1>使用说明</h1>
|
||||
<p>开箱、装机、系统配置与常见问题指引</p>
|
||||
</div>
|
||||
</section>
|
||||
|
||||
<section class="section">
|
||||
<div class="container">
|
||||
|
||||
<div class="panel">
|
||||
<h2>快速上手</h2>
|
||||
<p class="desc">建议按以下顺序阅读,遇到任何问题可随时转接智能客服。</p>
|
||||
<div class="chapter-list">
|
||||
<div class="chapter">
|
||||
<h4>1. 开箱与配件检查</h4>
|
||||
<p>内容待补充</p>
|
||||
</div>
|
||||
<div class="chapter">
|
||||
<h4>2. 硬盘安装</h4>
|
||||
<p>内容待补充</p>
|
||||
</div>
|
||||
<div class="chapter">
|
||||
<h4>3. 联网与开机</h4>
|
||||
<p>内容待补充</p>
|
||||
</div>
|
||||
<div class="chapter">
|
||||
<h4>4. 系统初始化</h4>
|
||||
<p>内容待补充</p>
|
||||
</div>
|
||||
<div class="chapter">
|
||||
<h4>5. 存储池与共享文件夹</h4>
|
||||
<p>内容待补充</p>
|
||||
</div>
|
||||
<div class="chapter">
|
||||
<h4>6. 外网访问与备份</h4>
|
||||
<p>内容待补充</p>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div class="panel">
|
||||
<h2>图文教程</h2>
|
||||
<p class="desc">该区域用于放置图文并茂的操作教程,内容后续填充。</p>
|
||||
<div class="placeholder tall">
|
||||
<span class="ph-title">教程内容位</span>
|
||||
<span>建议:每章节一张配图 + 步骤说明,图片尺寸 1200 × 675</span>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div class="panel">
|
||||
<h2>视频教程</h2>
|
||||
<p class="desc">该区域用于放置操作视频,内容后续填充。</p>
|
||||
<div class="placeholder tall">
|
||||
<span class="ph-title">视频位</span>
|
||||
<span>建议:16:9 视频封面,尺寸 1280 × 720</span>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div class="panel">
|
||||
<h2>常见问题</h2>
|
||||
<p class="desc">高频问题解答,内容后续填充。</p>
|
||||
<div class="placeholder short">
|
||||
<span class="ph-title">FAQ 内容位</span>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
</div>
|
||||
</section>
|
||||
|
||||
<footer class="footer">
|
||||
<div class="container">
|
||||
<div class="footer-cols">
|
||||
<div class="brand">
|
||||
<a href="index.html" class="logo">
|
||||
<img src="assets/img/logo.svg" alt="logo">
|
||||
<span>泽枢云启</span>
|
||||
</a>
|
||||
<p>专注个人与家庭数据存储设备,提供稳定可靠的 NAS 整机与全流程服务支持。</p>
|
||||
</div>
|
||||
<div>
|
||||
<h5>服务支持</h5>
|
||||
<ul>
|
||||
<li><a href="guide.html">使用说明</a></li>
|
||||
<li><a href="report.html">报告查询</a></li>
|
||||
<li><a href="support.html">智能客服</a></li>
|
||||
</ul>
|
||||
</div>
|
||||
<div>
|
||||
<h5>产品</h5>
|
||||
<ul>
|
||||
<li>云启系列</li>
|
||||
<li>云优系列</li>
|
||||
<li>云卓系列</li>
|
||||
</ul>
|
||||
</div>
|
||||
<div>
|
||||
<h5>关于</h5>
|
||||
<ul>
|
||||
<li>公司简介</li>
|
||||
<li>联系我们</li>
|
||||
<li>加入我们</li>
|
||||
</ul>
|
||||
</div>
|
||||
</div>
|
||||
<div class="footer-bottom">
|
||||
© 2026 泽枢云启 保留所有权利 · <a href="https://beian.miit.gov.cn/" target="_blank" rel="noopener">粤ICP备2026130534号-1</a>
|
||||
</div>
|
||||
</div>
|
||||
</footer>
|
||||
|
||||
<script src="assets/js/main.js"></script>
|
||||
</body>
|
||||
</html>
|
||||
175
office-site/index.html
Normal file
@@ -0,0 +1,175 @@
|
||||
<!DOCTYPE html>
|
||||
<html lang="zh-CN">
|
||||
<head>
|
||||
<meta charset="UTF-8">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1">
|
||||
<title>泽枢云启 · 官方网站</title>
|
||||
<link rel="icon" href="assets/img/logo.svg">
|
||||
<link rel="stylesheet" href="assets/css/style.css">
|
||||
</head>
|
||||
<body>
|
||||
|
||||
<!-- ========== 顶部导航 ========== -->
|
||||
<header class="header">
|
||||
<div class="container header-inner">
|
||||
<!-- TODO 待替换:LOGO 与品牌名 -->
|
||||
<a href="index.html" class="logo">
|
||||
<img src="assets/img/logo.svg" alt="logo">
|
||||
<span>泽枢云启</span>
|
||||
</a>
|
||||
<nav class="nav">
|
||||
<a href="index.html" class="active">首页</a>
|
||||
<a href="guide.html">使用说明</a>
|
||||
<a href="report.html">报告查询</a>
|
||||
<a href="support.html">智能客服</a>
|
||||
</nav>
|
||||
<div class="header-actions">
|
||||
<a class="btn btn-primary btn-sm" href="report.html">查询报告</a>
|
||||
</div>
|
||||
</div>
|
||||
</header>
|
||||
|
||||
<!-- ========== Hero ========== -->
|
||||
<section class="hero">
|
||||
<div class="container hero-inner">
|
||||
<div>
|
||||
<span class="hero-tag">个人与家庭数据存储</span>
|
||||
<h1>把数据放回<em>自己手里</em></h1>
|
||||
<!-- TODO 待替换:首页主文案 -->
|
||||
<p>稳定可靠的 NAS 整机方案,从入门尝鲜到长期生产使用,一机一测,报告官网可查。</p>
|
||||
<div class="hero-actions">
|
||||
<a class="btn btn-primary" href="guide.html">使用说明</a>
|
||||
<a class="btn btn-outline" href="support.html">智能客服</a>
|
||||
</div>
|
||||
</div>
|
||||
<div class="hero-img">
|
||||
<img src="assets/img/hero-nas.svg" alt="NAS 主机">
|
||||
</div>
|
||||
</div>
|
||||
</section>
|
||||
|
||||
<!-- ========== 三个栏目 ========== -->
|
||||
<section class="section">
|
||||
<div class="container">
|
||||
<div class="section-head">
|
||||
<h2>服务与支持</h2>
|
||||
<p>遇到问题,从这里开始</p>
|
||||
</div>
|
||||
<div class="grid-3">
|
||||
<a class="card" href="guide.html">
|
||||
<img class="icon" src="assets/img/icon-guide.svg" alt="使用说明">
|
||||
<h3>使用说明</h3>
|
||||
<p>开箱、装机、系统配置与常见问题指引,快速上手你的 NAS。</p>
|
||||
<span class="more">查看详情</span>
|
||||
</a>
|
||||
<a class="card" href="report.html">
|
||||
<img class="icon" src="assets/img/icon-report.svg" alt="报告查询">
|
||||
<h3>报告查询</h3>
|
||||
<p>输入机身编号,查询本机出厂稳定性测试报告,一机一测可核验。</p>
|
||||
<span class="more">立即查询</span>
|
||||
</a>
|
||||
<a class="card" href="support.html">
|
||||
<img class="icon" src="assets/img/icon-support.svg" alt="智能客服">
|
||||
<h3>智能客服</h3>
|
||||
<p>7×24 在线答疑,选型建议、故障排查、售后咨询即时响应。</p>
|
||||
<span class="more">开始咨询</span>
|
||||
</a>
|
||||
</div>
|
||||
</div>
|
||||
</section>
|
||||
|
||||
<!-- ========== 数据条 ========== -->
|
||||
<section class="section section-soft">
|
||||
<div class="container">
|
||||
<!-- TODO 待替换:真实运营数据 -->
|
||||
<div class="stats">
|
||||
<div class="item"><div class="num">3</div><div class="label">产品系列</div></div>
|
||||
<div class="item"><div class="num">100%</div><div class="label">出厂一机一测</div></div>
|
||||
<div class="item"><div class="num">7×24</div><div class="label">在线客服支持</div></div>
|
||||
<div class="item"><div class="num">1 年</div><div class="label">整机质保</div></div>
|
||||
</div>
|
||||
</div>
|
||||
</section>
|
||||
|
||||
<!-- ========== 产品系列占位 ========== -->
|
||||
<section class="section">
|
||||
<div class="container">
|
||||
<div class="section-head">
|
||||
<h2>产品系列</h2>
|
||||
<p>从尝鲜到生产,总有一款适合你</p>
|
||||
</div>
|
||||
<div class="grid-3">
|
||||
<div class="card">
|
||||
<h3>云启</h3>
|
||||
<p>入门尝鲜 · 偶尔使用</p>
|
||||
<div class="placeholder short" style="margin-top:16px">
|
||||
<span class="ph-title">产品图位</span>
|
||||
<span>建议尺寸 800 × 600</span>
|
||||
</div>
|
||||
</div>
|
||||
<div class="card">
|
||||
<h3>云优</h3>
|
||||
<p>稳定耐用 · 兴趣研究</p>
|
||||
<div class="placeholder short" style="margin-top:16px">
|
||||
<span class="ph-title">产品图位</span>
|
||||
<span>建议尺寸 800 × 600</span>
|
||||
</div>
|
||||
</div>
|
||||
<div class="card">
|
||||
<h3>云卓</h3>
|
||||
<p>高性能 · 生产 / 发烧</p>
|
||||
<div class="placeholder short" style="margin-top:16px">
|
||||
<span class="ph-title">产品图位</span>
|
||||
<span>建议尺寸 800 × 600</span>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</section>
|
||||
|
||||
<!-- ========== 页脚 ========== -->
|
||||
<footer class="footer">
|
||||
<div class="container">
|
||||
<div class="footer-cols">
|
||||
<div class="brand">
|
||||
<a href="index.html" class="logo">
|
||||
<img src="assets/img/logo.svg" alt="logo">
|
||||
<span>泽枢云启</span>
|
||||
</a>
|
||||
<!-- TODO 待替换:公司简介 -->
|
||||
<p>专注个人与家庭数据存储设备,提供稳定可靠的 NAS 整机与全流程服务支持。</p>
|
||||
</div>
|
||||
<div>
|
||||
<h5>服务支持</h5>
|
||||
<ul>
|
||||
<li><a href="guide.html">使用说明</a></li>
|
||||
<li><a href="report.html">报告查询</a></li>
|
||||
<li><a href="support.html">智能客服</a></li>
|
||||
</ul>
|
||||
</div>
|
||||
<div>
|
||||
<h5>产品</h5>
|
||||
<ul>
|
||||
<li>云启系列</li>
|
||||
<li>云优系列</li>
|
||||
<li>云卓系列</li>
|
||||
</ul>
|
||||
</div>
|
||||
<div>
|
||||
<h5>关于</h5>
|
||||
<ul>
|
||||
<li>公司简介</li>
|
||||
<li>联系我们</li>
|
||||
<li>加入我们</li>
|
||||
</ul>
|
||||
</div>
|
||||
</div>
|
||||
<div class="footer-bottom">
|
||||
© 2026 泽枢云启 保留所有权利 · <a href="https://beian.miit.gov.cn/" target="_blank" rel="noopener">粤ICP备2026130534号-1</a>
|
||||
</div>
|
||||
</div>
|
||||
</footer>
|
||||
|
||||
<script src="assets/js/main.js"></script>
|
||||
</body>
|
||||
</html>
|
||||
136
office-site/report.html
Normal file
@@ -0,0 +1,136 @@
|
||||
<!DOCTYPE html>
|
||||
<html lang="zh-CN">
|
||||
<head>
|
||||
<meta charset="UTF-8">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1">
|
||||
<title>报告查询 · 泽枢云启</title>
|
||||
<link rel="icon" href="assets/img/logo.svg">
|
||||
<link rel="stylesheet" href="assets/css/style.css">
|
||||
</head>
|
||||
<body>
|
||||
|
||||
<header class="header">
|
||||
<div class="container header-inner">
|
||||
<a href="index.html" class="logo">
|
||||
<img src="assets/img/logo.svg" alt="logo">
|
||||
<span>泽枢云启</span>
|
||||
</a>
|
||||
<nav class="nav">
|
||||
<a href="index.html">首页</a>
|
||||
<a href="guide.html">使用说明</a>
|
||||
<a href="report.html" class="active">报告查询</a>
|
||||
<a href="support.html">智能客服</a>
|
||||
</nav>
|
||||
<div class="header-actions">
|
||||
<a class="btn btn-primary btn-sm" href="support.html">智能客服</a>
|
||||
</div>
|
||||
</div>
|
||||
</header>
|
||||
|
||||
<section class="page-banner">
|
||||
<div class="container">
|
||||
<h1>报告查询</h1>
|
||||
<p>一机一测,输入机身编号即可查询本机出厂稳定性测试报告</p>
|
||||
</div>
|
||||
</section>
|
||||
|
||||
<section class="section">
|
||||
<div class="container">
|
||||
|
||||
<div class="panel">
|
||||
<h2>稳定性测试报告查询</h2>
|
||||
<p class="desc">云优、云卓系列每台机器出厂前单独测试,报告可在官网查询;云启系列不提供此报告。</p>
|
||||
|
||||
<form class="form-row" id="reportForm">
|
||||
<input class="input" id="sn" type="text" placeholder="请输入机身编号 / SN(例如:YY-3.5-J3160-0001)" autocomplete="off">
|
||||
<button class="btn btn-primary" type="submit">查询报告</button>
|
||||
</form>
|
||||
<p class="form-tip">机身编号位于机器底部铭牌或包装箱侧面标签,如无法识别可联系智能客服协助查询。</p>
|
||||
|
||||
<div class="result-box">
|
||||
<div class="result-empty" id="resultEmpty">
|
||||
<div class="big">📄</div>
|
||||
<div>请输入机身编号查询测试报告</div>
|
||||
</div>
|
||||
<div id="resultDetail" style="display:none">
|
||||
<table class="result-table">
|
||||
<thead>
|
||||
<tr><th>测试项目</th><th>结果</th><th>说明</th></tr>
|
||||
</thead>
|
||||
<tbody>
|
||||
<tr><td>整机老化测试</td><td class="pass">通过</td><td>内容待补充</td></tr>
|
||||
<tr><td>硬盘读写校验</td><td class="pass">通过</td><td>内容待补充</td></tr>
|
||||
<tr><td>内存压力测试</td><td class="pass">通过</td><td>内容待补充</td></tr>
|
||||
<tr><td>网络与接口测试</td><td class="pass">通过</td><td>内容待补充</td></tr>
|
||||
<tr><td>温度与风扇</td><td class="pass">通过</td><td>内容待补充</td></tr>
|
||||
</tbody>
|
||||
</table>
|
||||
<p class="form-tip">以上为示例结构,实际数据在接入查询接口后展示。</p>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div class="panel">
|
||||
<h2>报告样例</h2>
|
||||
<p class="desc">该区域用于展示报告样例图,内容后续填充。</p>
|
||||
<div class="placeholder tall">
|
||||
<span class="ph-title">报告样例图位</span>
|
||||
<span>建议尺寸 1000 × 1400(A4 比例)</span>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div class="panel">
|
||||
<h2>查询说明</h2>
|
||||
<p class="desc">查询规则与常见问题说明,内容后续填充。</p>
|
||||
<div class="placeholder short">
|
||||
<span class="ph-title">说明内容位</span>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
</div>
|
||||
</section>
|
||||
|
||||
<footer class="footer">
|
||||
<div class="container">
|
||||
<div class="footer-cols">
|
||||
<div class="brand">
|
||||
<a href="index.html" class="logo">
|
||||
<img src="assets/img/logo.svg" alt="logo">
|
||||
<span>泽枢云启</span>
|
||||
</a>
|
||||
<p>专注个人与家庭数据存储设备,提供稳定可靠的 NAS 整机与全流程服务支持。</p>
|
||||
</div>
|
||||
<div>
|
||||
<h5>服务支持</h5>
|
||||
<ul>
|
||||
<li><a href="guide.html">使用说明</a></li>
|
||||
<li><a href="report.html">报告查询</a></li>
|
||||
<li><a href="support.html">智能客服</a></li>
|
||||
</ul>
|
||||
</div>
|
||||
<div>
|
||||
<h5>产品</h5>
|
||||
<ul>
|
||||
<li>云启系列</li>
|
||||
<li>云优系列</li>
|
||||
<li>云卓系列</li>
|
||||
</ul>
|
||||
</div>
|
||||
<div>
|
||||
<h5>关于</h5>
|
||||
<ul>
|
||||
<li>公司简介</li>
|
||||
<li>联系我们</li>
|
||||
<li>加入我们</li>
|
||||
</ul>
|
||||
</div>
|
||||
</div>
|
||||
<div class="footer-bottom">
|
||||
© 2026 泽枢云启 保留所有权利 · <a href="https://beian.miit.gov.cn/" target="_blank" rel="noopener">粤ICP备2026130534号-1</a>
|
||||
</div>
|
||||
</div>
|
||||
</footer>
|
||||
|
||||
<script src="assets/js/main.js"></script>
|
||||
</body>
|
||||
</html>
|
||||
130
office-site/support.html
Normal file
@@ -0,0 +1,130 @@
|
||||
<!DOCTYPE html>
|
||||
<html lang="zh-CN">
|
||||
<head>
|
||||
<meta charset="UTF-8">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1">
|
||||
<title>智能客服 · 泽枢云启</title>
|
||||
<link rel="icon" href="assets/img/logo.svg">
|
||||
<link rel="stylesheet" href="assets/css/style.css">
|
||||
</head>
|
||||
<body>
|
||||
|
||||
<header class="header">
|
||||
<div class="container header-inner">
|
||||
<a href="index.html" class="logo">
|
||||
<img src="assets/img/logo.svg" alt="logo">
|
||||
<span>泽枢云启</span>
|
||||
</a>
|
||||
<nav class="nav">
|
||||
<a href="index.html">首页</a>
|
||||
<a href="guide.html">使用说明</a>
|
||||
<a href="report.html">报告查询</a>
|
||||
<a href="support.html" class="active">智能客服</a>
|
||||
</nav>
|
||||
<div class="header-actions">
|
||||
<a class="btn btn-primary btn-sm" href="report.html">查询报告</a>
|
||||
</div>
|
||||
</div>
|
||||
</header>
|
||||
|
||||
<section class="page-banner">
|
||||
<div class="container">
|
||||
<h1>智能客服</h1>
|
||||
<p>7×24 在线,选型建议、故障排查、售后咨询即时响应</p>
|
||||
</div>
|
||||
</section>
|
||||
|
||||
<section class="section">
|
||||
<div class="container">
|
||||
|
||||
<div class="chat-layout">
|
||||
<div>
|
||||
<div class="panel" style="padding:24px">
|
||||
<h2 style="font-size:18px;margin-bottom:14px">常见问题</h2>
|
||||
<div class="quick-list" id="quickList">
|
||||
<div class="quick-item">如何选择合适的系列?</div>
|
||||
<div class="quick-item">机器无法开机怎么办?</div>
|
||||
<div class="quick-item">硬盘如何扩容?</div>
|
||||
<div class="quick-item">怎么查询稳定性测试报告?</div>
|
||||
<div class="quick-item">质保与售后流程?</div>
|
||||
</div>
|
||||
</div>
|
||||
<div class="panel" style="padding:24px">
|
||||
<h2 style="font-size:18px;margin-bottom:10px">人工客服</h2>
|
||||
<p class="desc" style="margin-bottom:14px">服务时间 09:00 - 21:00</p>
|
||||
<div class="placeholder short">
|
||||
<span class="ph-title">联系方式位</span>
|
||||
<span>电话 / 微信 / 二维码</span>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div class="panel">
|
||||
<h2>在线对话</h2>
|
||||
<p class="desc">描述你的问题,智能客服会即时给出建议(示例对话,接口接入后生效)。</p>
|
||||
|
||||
<div class="chat-window">
|
||||
<div class="chat-body" id="chatBody">
|
||||
<div class="bubble bot">你好,我是泽枢云启 智能客服。请问有什么可以帮你?</div>
|
||||
<div class="bubble bot">可以问我:选型建议、装机步骤、故障排查、报告查询、质保售后。</div>
|
||||
</div>
|
||||
<form class="chat-foot" id="chatForm">
|
||||
<input class="input" id="chatInput" type="text" placeholder="输入你的问题…" autocomplete="off">
|
||||
<button class="btn btn-primary btn-sm" type="submit">发送</button>
|
||||
</form>
|
||||
</div>
|
||||
|
||||
<div class="placeholder short" style="margin-top:20px">
|
||||
<span class="ph-title">知识库 / 推荐内容位</span>
|
||||
<span>后续可接入产品文档、教程卡片</span>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
</div>
|
||||
</section>
|
||||
|
||||
<footer class="footer">
|
||||
<div class="container">
|
||||
<div class="footer-cols">
|
||||
<div class="brand">
|
||||
<a href="index.html" class="logo">
|
||||
<img src="assets/img/logo.svg" alt="logo">
|
||||
<span>泽枢云启</span>
|
||||
</a>
|
||||
<p>专注个人与家庭数据存储设备,提供稳定可靠的 NAS 整机与全流程服务支持。</p>
|
||||
</div>
|
||||
<div>
|
||||
<h5>服务支持</h5>
|
||||
<ul>
|
||||
<li><a href="guide.html">使用说明</a></li>
|
||||
<li><a href="report.html">报告查询</a></li>
|
||||
<li><a href="support.html">智能客服</a></li>
|
||||
</ul>
|
||||
</div>
|
||||
<div>
|
||||
<h5>产品</h5>
|
||||
<ul>
|
||||
<li>云启系列</li>
|
||||
<li>云优系列</li>
|
||||
<li>云卓系列</li>
|
||||
</ul>
|
||||
</div>
|
||||
<div>
|
||||
<h5>关于</h5>
|
||||
<ul>
|
||||
<li>公司简介</li>
|
||||
<li>联系我们</li>
|
||||
<li>加入我们</li>
|
||||
</ul>
|
||||
</div>
|
||||
</div>
|
||||
<div class="footer-bottom">
|
||||
© 2026 泽枢云启 保留所有权利 · <a href="https://beian.miit.gov.cn/" target="_blank" rel="noopener">粤ICP备2026130534号-1</a>
|
||||
</div>
|
||||
</div>
|
||||
</footer>
|
||||
|
||||
<script src="assets/js/main.js"></script>
|
||||
</body>
|
||||
</html>
|
||||
5
office-site/建设说明.md
Normal file
@@ -0,0 +1,5 @@
|
||||
1. 这是一个企业的官方网站
|
||||
2. 希望仿照小米官网的设计和配色风格,后续有类似需求可以参考小米官网
|
||||
3. 目前设置使用说明,报告查询,智能客服 三个栏目
|
||||
4. 栏目内容先留空 ,后续根据需要填充
|
||||
5. 暂时需要填充的图片 ,可以帮我查找或者生成NAS,相关的图片,来填充,以便我后续替换
|
||||
@@ -128,6 +128,8 @@
|
||||
}
|
||||
td.hl { color: #c2410c; font-weight: 700; }
|
||||
tbody td b { display: block; font-size: 29px; color: #0f2f5c; margin-bottom: 8px; }
|
||||
.card .row .v .yes { color: #c2410c; font-weight: 800; }
|
||||
.card .row .v .no { color: #94a3b8; }
|
||||
|
||||
/* 场景速选 */
|
||||
.pick { margin: 46px 60px 0; display: flex; gap: 22px; }
|
||||
@@ -178,7 +180,7 @@
|
||||
<div class="body">
|
||||
<div class="row"><div class="k">适合</div><div class="v">新手、偶尔使用者</div></div>
|
||||
<div class="row"><div class="k">使用强度</div><div class="v">偶尔开机、轻度负载</div></div>
|
||||
<div class="row"><div class="k">关键差异</div><div class="v">普通 DC 电源<br>二线 / 三线内存与硬盘</div></div>
|
||||
<div class="row"><div class="k">关键差异</div><div class="v">普通 DC 电源<br>二线 / 三线内存与硬盘<br><span class="no">无稳定性测试报告</span></div></div>
|
||||
<div class="row"><div class="k">关键词</div><div class="v">先用起来</div></div>
|
||||
</div>
|
||||
</div>
|
||||
@@ -190,7 +192,7 @@
|
||||
<div class="body">
|
||||
<div class="row"><div class="k">适合</div><div class="v">兴趣研究、轻度至稳定使用</div></div>
|
||||
<div class="row"><div class="k">使用强度</div><div class="v">经常开机、中等负载</div></div>
|
||||
<div class="row"><div class="k">关键差异</div><div class="v">3C 认证安全稳定电源<br>一线品牌内存与硬盘</div></div>
|
||||
<div class="row"><div class="k">关键差异</div><div class="v">3C 认证安全稳定电源<br>一线品牌内存与硬盘<br><span class="yes">一机一测 · 官网可查</span></div></div>
|
||||
<div class="row"><div class="k">关键词</div><div class="v">用得久</div></div>
|
||||
</div>
|
||||
</div>
|
||||
@@ -202,7 +204,7 @@
|
||||
<div class="body">
|
||||
<div class="row"><div class="k">适合</div><div class="v">生产工作用户、发烧友</div></div>
|
||||
<div class="row"><div class="k">使用强度</div><div class="v">长期 7×24 开机、中高负载</div></div>
|
||||
<div class="row"><div class="k">关键差异</div><div class="v">3C 认证大功率电源<br>一线品牌 + 部分 DDR4</div></div>
|
||||
<div class="row"><div class="k">关键差异</div><div class="v">3C 认证大功率电源<br>一线品牌 + 部分 DDR4<br><span class="yes">一机一测 · 官网可查</span></div></div>
|
||||
<div class="row"><div class="k">关键词</div><div class="v">玩得深</div></div>
|
||||
</div>
|
||||
</div>
|
||||
@@ -253,6 +255,12 @@
|
||||
<td class="hl">佰维、江波龙等一线品牌</td>
|
||||
<td class="hl">佰维、江波龙等一线品牌</td>
|
||||
</tr>
|
||||
<tr class="key">
|
||||
<td class="dim">稳定性测试报告<span class="tag">重点</span></td>
|
||||
<td>无</td>
|
||||
<td class="hl">有:一机一测<br>官网可查</td>
|
||||
<td class="hl">有:一机一测<br>官网可查</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="dim">长时间开机</td>
|
||||
<td>不建议长期满载</td>
|
||||
@@ -280,7 +288,7 @@
|
||||
</div>
|
||||
|
||||
<div class="footer">
|
||||
供电决定稳不稳,内存硬盘品牌决定数据放不放得心,CPU 与盘位决定能玩到什么程度。<br>
|
||||
供电决定稳不稳,内存硬盘品牌决定数据放不放得心,稳定性报告决定买得放不放心,CPU 与盘位决定能玩到什么程度。<br>
|
||||
具体型号与报价以各系列《价格表》为准;选型时按「用途 + 是否长期开机 + 预算」三句话描述需求即可快速匹配。
|
||||
</div>
|
||||
|
||||
|
||||
|
Before Width: | Height: | Size: 792 KiB After Width: | Height: | Size: 825 KiB |
@@ -31,6 +31,7 @@
|
||||
| **供电方案** | 普通 DC 电源 | 3C 认证的安全稳定 DC 电源 / 1U 内置电源 | 3C 认证的大功率 DC 电源 / 1U 内置电源 |
|
||||
| **内存(品牌 / 规格)** | 二线 / 三线品牌,DDR3 | 三星、美光、金士顿、海力士等一线品牌,DDR3 | 三星、美光、金士顿、海力士等一线品牌,DDR3,**部分型号 DDR4**(更高带宽、更低功耗) |
|
||||
| **硬盘品牌** | 二线 / 三线品牌 | 佰维、江波龙等一线品牌 | 佰维、江波龙等一线品牌 |
|
||||
| **稳定性测试报告** | **无** | **有:一机一测,官网可查** | **有:一机一测,官网可查** |
|
||||
| **长时间开机表现** | 不建议长期满载 | 可长期开机 | 为长期在线而设计 |
|
||||
| **性价比关键词** | 「先用起来」 | 「用得久」 | 「玩得深」 |
|
||||
|
||||
@@ -45,7 +46,7 @@
|
||||
- **适合**:第一次接触 NAS;只想备份照片、存电影、偶尔挂下载;预算敏感。
|
||||
- **典型配置**:普通 DC 电源;2.5 寸单盘位 / 3.5 寸单双盘位,CPU 覆盖 AMD-A4、1037U、J1800、J1900、J3160 到 i3/i5,内存 4G/8G,系统盘 32G/64G/128G。
|
||||
- **价格现实**:78 款在售型号,售价 ¥185 – ¥600,绝大多数落在 ¥200 – ¥420 区间。
|
||||
- **你要接受的**:整机由二手配件组装(CPU / 内存 / mSATA 系统盘均为二手),外壳以实用为主,电源为普通 DC 电源,**内存与硬盘采用二线 / 三线品牌**(云优 / 云卓才升级为一线品牌:内存三星、美光、金士顿、海力士;硬盘佰维、江波龙)。**它解决的是「从无到有」,不是「一劳永逸」。**
|
||||
- **你要接受的**:整机由二手配件组装(CPU / 内存 / mSATA 系统盘均为二手),外壳以实用为主,电源为普通 DC 电源,**内存与硬盘采用二线 / 三线品牌**(云优 / 云卓才升级为一线品牌:内存三星、美光、金士顿、海力士;硬盘佰维、江波龙),**不提供稳定性测试报告**(云优 / 云卓为一机一测、官网可查)。**它解决的是「从无到有」,不是「一劳永逸」。**
|
||||
- **不适合**:打算常年不关机、放重要工作资料、对故障零容忍的人。
|
||||
|
||||
### 2)云优 —— 个人兴趣研究 · 轻度使用
|
||||
@@ -58,8 +59,9 @@
|
||||
- **一线品牌内存**(三星 / 美光 / 金士顿 / 海力士):兼容性、稳定性、寿命都更有保障(云启为二线 / 三线品牌);
|
||||
- **一线品牌硬盘**(佰维 / 江波龙):颗粒与主控来源可靠,长期读写更放心(云启为二线 / 三线品牌);
|
||||
- **更高质量双 SATA 转换器**(¥50,云启 ¥28):数据通路更可靠;
|
||||
- **一机一测稳定性报告**:每台机器出厂前单独跑稳定性测试,报告**官网可查**(云启无此项);
|
||||
- CPU 起步更高,不再使用最低端型号;机箱可选一拖三等多盘方案。
|
||||
- **收益**:长时间开机更安心,反复重装、折腾系统也不易出问题。
|
||||
- **收益**:长时间开机更安心,反复重装、折腾系统也不易出问题;**有没有报告,是云优与云启最直观的区别**。
|
||||
- **不适合**:要跑多个虚拟机、做重度转码、多盘阵列的生产级需求。
|
||||
|
||||
### 3)云卓 —— 长期稳定 · 生产工作 / 发烧友
|
||||
@@ -69,7 +71,7 @@
|
||||
- **适合两类人**:
|
||||
1. **工作 / 生产用户**:多人共享、长期 7×24 在线、数据不能出岔子;
|
||||
2. **发烧友**:对性能和功能有较高要求——多盘 RAID、Docker 重度使用、虚拟机、软路由、影音转码、更高内网带宽。
|
||||
- **硬件取向**:3C 认证的大功率 DC 电源或 1U 内置电源,为多盘位、高负载与长期在线提供充足供电余量;**一线品牌内存**(三星 / 美光 / 金士顿 / 海力士)与**一线品牌硬盘**(佰维 / 江波龙)保障数据可靠性;**部分型号采用 DDR4 内存**(其余为 DDR3),带宽更高、功耗更低,跑虚拟机和多容器更从容;同时优先更高端 CPU(i5 / i7 / 5005U 等级)、更大内存、更大系统盘、更多盘位,并优先考虑后续扩展(加内存、加网卡、加盘)。
|
||||
- **硬件取向**:3C 认证的大功率 DC 电源或 1U 内置电源,为多盘位、高负载与长期在线提供充足供电余量;**一机一测稳定性报告**,每台出厂前单独测试、报告**官网可查**,交付即可核验;**一线品牌内存**(三星 / 美光 / 金士顿 / 海力士)与**一线品牌硬盘**(佰维 / 江波龙)保障数据可靠性;**部分型号采用 DDR4 内存**(其余为 DDR3),带宽更高、功耗更低,跑虚拟机和多容器更从容;同时优先更高端 CPU(i5 / i7 / 5005U 等级)、更大内存、更大系统盘、更多盘位,并优先考虑后续扩展(加内存、加网卡、加盘)。
|
||||
- **收益**:既能长期稳定承载工作负载,又有足够的余量让你往上玩。
|
||||
- **说明**:云卓为高性能系列,型号与价格以《云卓价格表》为准,陆续上架。
|
||||
|
||||
@@ -94,10 +96,19 @@ NAS 是要长期通电的设备,**电源是整机稳定性与安全性的第
|
||||
|
||||
内存决定系统会不会莫名出错、能不能长时间稳住;硬盘直接决定**你的数据在不在**。一线品牌的颗粒来源、一致性、寿命和质保都更可控——**存重要资料,品牌这一档值得加钱。**
|
||||
|
||||
### 3. 其他配件等级 → 决定「耐不耐造」
|
||||
### 3. 稳定性测试报告 → 决定「买得放不放心」
|
||||
| 系列 | 稳定性测试 | 说明 |
|
||||
|:---:|---|---|
|
||||
| 云启 | **无** | 到手即用,不做单独稳定性测试,成本低 |
|
||||
| 云优 | **一机一测,官网可查** | 每台机器出厂前单独跑测试,结果可在官网查询 |
|
||||
| 云卓 | **一机一测,官网可查** | 同上,按生产级标准执行 |
|
||||
|
||||
二手配件最让人不放心的就是「这台到底稳不稳」。**一机一测等于把「抽检」变成「全检」**——不是同一批次抽几台,而是你手里这一台有对应报告,可以自己去官网查。对要长期开机、放重要数据的用户,这一项的价值不亚于硬件升级。
|
||||
|
||||
### 4. 其他配件等级 → 决定「耐不耐造」
|
||||
在供电与内存硬盘之外,云优、云卓还会在**双 SATA 转换器、机箱与盘位方案**这些「看不见但很关键」的地方逐级加强。数据链路的稳定,远比跑分重要。
|
||||
|
||||
### 4. CPU / 内存 → 决定「能干多少活」
|
||||
### 5. CPU / 内存 → 决定「能干多少活」
|
||||
| 需求强度 | 典型场景 | 建议系列 |
|
||||
|---|---|:---:|
|
||||
| 基础读写、存文件、备份照片 | 手机相册备份、电影存储 | 云启 |
|
||||
@@ -108,7 +119,7 @@ NAS 是要长期通电的设备,**电源是整机稳定性与安全性的第
|
||||
>
|
||||
> **内存代际**:云启、云优均为 DDR3;**云卓部分型号采用 DDR4**,带宽更高、功耗更低,适合虚拟机、多容器、高并发读写等场景。选购时以具体型号标注为准(DDR3 与 DDR4 不可混用,需整机平台匹配)。
|
||||
|
||||
### 5. 盘位 → 决定「能存多少、能不能做冗余」
|
||||
### 6. 盘位 → 决定「能存多少、能不能做冗余」
|
||||
| 盘位 | 能做什么 | 常见系列 |
|
||||
|:---:|---|---|
|
||||
| 单盘位 | 一个盘放所有数据,容量优先 | 云启 |
|
||||
@@ -117,12 +128,12 @@ NAS 是要长期通电的设备,**电源是整机稳定性与安全性的第
|
||||
|
||||
> 注意:单 SATA 口机型(如 J1900、J3160、5005U、AMD-A4)需通过**双 SATA 转换器**才能扩展盘位;双 SATA 口 CPU(1037U、i3/i5/i7)扩展更直接。
|
||||
|
||||
### 6. 开机时长 → 决定「该选哪一档」
|
||||
### 7. 开机时长 → 决定「该选哪一档」
|
||||
- 偶尔开机 / 用的时候才开 → **云启够用**;
|
||||
- 经常开机、希望随用随有 → **云优**;
|
||||
- 全年不关机、作为家庭或工作基础设施 → **云卓**。
|
||||
|
||||
### 7. 价格 → 决定「值不值」
|
||||
### 8. 价格 → 决定「值不值」
|
||||
云启 ¥185 起、¥600 封顶,覆盖了从「2.5 寸单盘位小机器」到「3.5 寸四盘位 i7」的全部跨度。往上每加一档预算,换来的是更稳定的配件(云优)和更强的性能与扩展(云卓)。**加价的本质是买「稳定」和「余量」,不是买「能开机」。**
|
||||
|
||||
---
|
||||
@@ -164,7 +175,7 @@ NAS 是要长期通电的设备,**电源是整机稳定性与安全性的第
|
||||
## 七、常见疑问
|
||||
|
||||
**Q:二手配件组装,稳定吗?**
|
||||
A:CPU / 内存 / 系统盘为二手件,这是能把价格做到两百多的原因,也是三个系列分级的出发点——云优、云卓通过更好的电源、转换器和品牌内存逐级提升稳定性。**越重要的用途,越应该往上选。**
|
||||
A:CPU / 内存 / 系统盘为二手件,这是能把价格做到两百多的原因,也是三个系列分级的出发点——云优、云卓通过更好的电源、一线品牌内存硬盘,以及**一机一测的稳定性报告(官网可查)**逐级消除这种不确定性。**越重要的用途,越应该往上选。**
|
||||
|
||||
**Q:三个系列的电源到底差在哪?**
|
||||
A:**云启**用普通 DC 电源,满足正常使用;**云优**用 3C 认证的安全稳定 DC 电源或 1U 内置电源,适合长期通电;**云卓**用 3C 认证的大功率 DC 电源或 1U 内置电源,多盘位、高负载、7×24 在线都有充足余量。打算全年不关机,电源这一档不建议省。
|
||||
@@ -172,6 +183,9 @@ A:**云启**用普通 DC 电源,满足正常使用;**云优**用 3C 认证
|
||||
**Q:内存和硬盘的品牌,对实际使用影响大吗?**
|
||||
A:**云启用的二线 / 三线品牌,云优、云卓用的一线品牌**——内存是三星、美光、金士顿、海力士,硬盘是佰维、江波龙。一线品牌的颗粒来源、一致性和寿命更可控,出问题的概率更低。存的是可以再下载的东西,云启没问题;存的是照片、工作资料这类丢了就找不回的,建议云优起步。
|
||||
|
||||
**Q:什么是「一机一测稳定性报告」?**
|
||||
A:**云优、云卓每一台机器出厂前都会单独跑一次稳定性测试,并生成报告,报告可在官网查询**(云启没有这项)。也就是你收到的那台机器,有属于它自己的测试记录,而不是只做批次抽检。要长期开机、放重要资料的,建议选有报告的云优 / 云卓。
|
||||
|
||||
**Q:4G 内存够用吗?**
|
||||
A:纯存储、备份、下载够用;要跑 Docker、相册 AI 识别、虚拟机,建议 8G 起步。
|
||||
|
||||
|
||||