first commit
This commit is contained in:
commit
17cb1efcd0
3
.gitignore
vendored
Normal file
3
.gitignore
vendored
Normal file
@ -0,0 +1,3 @@
|
||||
node_modules
|
||||
dist
|
||||
docs
|
||||
13
index.html
Normal file
13
index.html
Normal file
@ -0,0 +1,13 @@
|
||||
<!doctype html>
|
||||
<html lang="zh-CN">
|
||||
<head>
|
||||
<meta charset="UTF-8" />
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
||||
<meta name="description" content="柚康 - 医疗行业患者全周期管理服务数智化升级服务" />
|
||||
<title>柚康|患者精细化管理服务平台</title>
|
||||
</head>
|
||||
<body>
|
||||
<div id="app"></div>
|
||||
<script type="module" src="/src/main.js"></script>
|
||||
</body>
|
||||
</html>
|
||||
1087
package-lock.json
generated
Normal file
1087
package-lock.json
generated
Normal file
File diff suppressed because it is too large
Load Diff
17
package.json
Normal file
17
package.json
Normal file
@ -0,0 +1,17 @@
|
||||
{
|
||||
"name": "youcan-homepage",
|
||||
"version": "1.0.0",
|
||||
"private": true,
|
||||
"type": "module",
|
||||
"scripts": {
|
||||
"dev": "vite --host 0.0.0.0",
|
||||
"build": "vite build",
|
||||
"preview": "vite preview --host 0.0.0.0"
|
||||
},
|
||||
"dependencies": {
|
||||
"@vitejs/plugin-vue": "latest",
|
||||
"vite": "latest",
|
||||
"vue": "latest"
|
||||
},
|
||||
"devDependencies": {}
|
||||
}
|
||||
BIN
public/assets/logo.png
Normal file
BIN
public/assets/logo.png
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 305 KiB |
BIN
public/assets/medical.png
Normal file
BIN
public/assets/medical.png
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 1.3 MiB |
23
src/App.vue
Normal file
23
src/App.vue
Normal file
@ -0,0 +1,23 @@
|
||||
<script setup>
|
||||
import HeaderNav from './components/HeaderNav.vue'
|
||||
import HeroSection from './components/HeroSection.vue'
|
||||
import PlatformSection from './components/PlatformSection.vue'
|
||||
import SolutionSection from './components/SolutionSection.vue'
|
||||
import CaseSection from './components/CaseSection.vue'
|
||||
import ContactSection from './components/ContactSection.vue'
|
||||
import FooterBar from './components/FooterBar.vue'
|
||||
</script>
|
||||
|
||||
<template>
|
||||
<div class="site-shell">
|
||||
<HeaderNav />
|
||||
<main>
|
||||
<HeroSection />
|
||||
<PlatformSection />
|
||||
<SolutionSection />
|
||||
<CaseSection />
|
||||
<ContactSection />
|
||||
</main>
|
||||
<FooterBar />
|
||||
</div>
|
||||
</template>
|
||||
70
src/components/CaseSection.vue
Normal file
70
src/components/CaseSection.vue
Normal file
@ -0,0 +1,70 @@
|
||||
<script setup>
|
||||
import { computed, ref } from 'vue'
|
||||
import { caseCategories, cases } from '../data/homepage'
|
||||
import SectionTitle from './SectionTitle.vue'
|
||||
|
||||
const active = ref(caseCategories[0])
|
||||
const filteredCases = computed(() => cases.filter(item => item.category === active.value))
|
||||
|
||||
const selectCategory = (category) => {
|
||||
active.value = category
|
||||
}
|
||||
|
||||
const handleCategoryKeydown = (event, index) => {
|
||||
const keyMap = {
|
||||
ArrowRight: 1,
|
||||
ArrowDown: 1,
|
||||
ArrowLeft: -1,
|
||||
ArrowUp: -1
|
||||
}
|
||||
|
||||
if (event.key === 'Home' || event.key === 'End' || keyMap[event.key]) {
|
||||
event.preventDefault()
|
||||
} else {
|
||||
return
|
||||
}
|
||||
|
||||
const nextIndex =
|
||||
event.key === 'Home'
|
||||
? 0
|
||||
: event.key === 'End'
|
||||
? caseCategories.length - 1
|
||||
: (index + keyMap[event.key] + caseCategories.length) % caseCategories.length
|
||||
|
||||
selectCategory(caseCategories[nextIndex])
|
||||
document.getElementById(`case-filter-${nextIndex}`)?.focus()
|
||||
}
|
||||
</script>
|
||||
|
||||
<template>
|
||||
<section id="cases" class="case-section page-section page-section--compact">
|
||||
<div class="container">
|
||||
<SectionTitle title="客户案例" />
|
||||
<div class="case-layout">
|
||||
<aside class="case-filter" role="tablist" aria-label="客户案例分类">
|
||||
<button
|
||||
v-for="(category, index) in caseCategories"
|
||||
:key="category"
|
||||
:id="`case-filter-${index}`"
|
||||
type="button"
|
||||
:class="['case-filter-btn', { active: category === active }]"
|
||||
role="tab"
|
||||
:aria-selected="category === active"
|
||||
:aria-controls="'case-panel'"
|
||||
:tabindex="category === active ? 0 : -1"
|
||||
@click="selectCategory(category)"
|
||||
@keydown="handleCategoryKeydown($event, index)"
|
||||
>
|
||||
{{ category }}
|
||||
</button>
|
||||
</aside>
|
||||
<div id="case-panel" class="case-grid" role="tabpanel" :aria-label="active">
|
||||
<article v-for="item in filteredCases" :key="`${active}-${item.name}`" class="case-card">
|
||||
<div :class="['case-logo', `case-logo--${item.tone}`]">{{ item.short }}</div>
|
||||
<p>{{ item.name }}</p>
|
||||
</article>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</section>
|
||||
</template>
|
||||
41
src/components/ContactSection.vue
Normal file
41
src/components/ContactSection.vue
Normal file
@ -0,0 +1,41 @@
|
||||
<script setup>
|
||||
import QrPlaceholder from './QrPlaceholder.vue'
|
||||
import SectionTitle from './SectionTitle.vue'
|
||||
</script>
|
||||
|
||||
<template>
|
||||
<section id="contact" class="contact-section page-section page-section--compact">
|
||||
<div class="container">
|
||||
<SectionTitle title="联系我们" />
|
||||
<div class="contact-card">
|
||||
<a
|
||||
class="address-row"
|
||||
href="https://uri.amap.com/search?keyword=%E6%9D%AD%E5%B7%9E%E5%B8%82%E8%A5%BF%E6%B9%96%E5%8C%BA%E7%BF%A0%E8%8B%91%E8%A1%97%E9%81%93%E5%A1%98%E8%8B%97%E8%B7%AF1%E5%8F%B74%E5%8F%B7%E6%A5%BC2%E6%A5%BC"
|
||||
target="_blank"
|
||||
rel="noopener noreferrer"
|
||||
aria-label="在地图中打开办公地址"
|
||||
>
|
||||
<span class="address-icon">📍</span>
|
||||
<strong>办公地址:</strong>
|
||||
<span>杭州市西湖区翠苑街道塘苗路1号4号楼2楼</span>
|
||||
</a>
|
||||
<div class="contact-manager-grid">
|
||||
<article class="manager-card">
|
||||
<div class="manager-copy">
|
||||
<span class="manager-icon">👤</span>
|
||||
<p><strong>客户成功经理:王经理</strong><br /></p>
|
||||
</div>
|
||||
<QrPlaceholder label="王经理个人码" small />
|
||||
</article>
|
||||
<article class="manager-card">
|
||||
<div class="manager-copy">
|
||||
<span class="manager-icon">👤</span>
|
||||
<p><strong>客户成功经理:罗经理</strong><br /></p>
|
||||
</div>
|
||||
<QrPlaceholder label="罗经理个人码" small />
|
||||
</article>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</section>
|
||||
</template>
|
||||
14
src/components/FooterBar.vue
Normal file
14
src/components/FooterBar.vue
Normal file
@ -0,0 +1,14 @@
|
||||
<template>
|
||||
<footer class="site-footer">
|
||||
<div class="container footer-inner">
|
||||
<div class="footer-brand">
|
||||
<img src="/assets/logo.png" alt="柚康 logo" />
|
||||
<span>
|
||||
<strong>柚康</strong>
|
||||
<em>企业微信服务商标识</em>
|
||||
</span>
|
||||
</div>
|
||||
<p>© 2026 杭州柚康科技有限公司 版权所有</p>
|
||||
</div>
|
||||
</footer>
|
||||
</template>
|
||||
124
src/components/HeaderNav.vue
Normal file
124
src/components/HeaderNav.vue
Normal file
@ -0,0 +1,124 @@
|
||||
<script setup>
|
||||
import { nextTick, onBeforeUnmount, onMounted, ref } from 'vue'
|
||||
import { navItems } from '../data/homepage'
|
||||
|
||||
const activeTarget = ref(navItems[0]?.target ?? '')
|
||||
const isMenuOpen = ref(false)
|
||||
let observer
|
||||
|
||||
const getHeaderOffset = () => {
|
||||
const header = document.querySelector('.site-header')
|
||||
if (!header) return 0
|
||||
|
||||
const position = window.getComputedStyle(header).position
|
||||
return position === 'sticky' || position === 'fixed' ? header.offsetHeight : 0
|
||||
}
|
||||
|
||||
const toggleMenu = () => {
|
||||
isMenuOpen.value = !isMenuOpen.value
|
||||
}
|
||||
|
||||
const closeMenu = () => {
|
||||
isMenuOpen.value = false
|
||||
}
|
||||
|
||||
const scrollToTarget = async (target) => {
|
||||
const element = document.getElementById(target)
|
||||
if (!element) return
|
||||
|
||||
closeMenu()
|
||||
activeTarget.value = target
|
||||
const top = element.getBoundingClientRect().top + window.scrollY - getHeaderOffset() - 12
|
||||
window.scrollTo({ top: Math.max(0, top), behavior: 'smooth' })
|
||||
history.replaceState(null, '', `#${target}`)
|
||||
await nextTick()
|
||||
document.querySelector(`.nav-link[href="#${target}"]`)?.scrollIntoView({
|
||||
behavior: 'smooth',
|
||||
inline: 'center',
|
||||
block: 'nearest'
|
||||
})
|
||||
}
|
||||
|
||||
const handleWindowKeydown = (event) => {
|
||||
if (event.key === 'Escape') closeMenu()
|
||||
}
|
||||
|
||||
onMounted(() => {
|
||||
window.addEventListener('keydown', handleWindowKeydown)
|
||||
|
||||
if (window.location.hash) {
|
||||
const target = window.location.hash.slice(1)
|
||||
if (navItems.some(item => item.target === target)) {
|
||||
requestAnimationFrame(() => scrollToTarget(target))
|
||||
}
|
||||
}
|
||||
|
||||
observer = new IntersectionObserver(
|
||||
(entries) => {
|
||||
const visibleEntry = entries
|
||||
.filter(entry => entry.isIntersecting)
|
||||
.sort((a, b) => b.intersectionRatio - a.intersectionRatio)[0]
|
||||
|
||||
if (visibleEntry?.target.id) {
|
||||
activeTarget.value = visibleEntry.target.id
|
||||
}
|
||||
},
|
||||
{
|
||||
rootMargin: '-32% 0px -54% 0px',
|
||||
threshold: [0.12, 0.28, 0.5]
|
||||
}
|
||||
)
|
||||
|
||||
navItems.forEach((item) => {
|
||||
const element = document.getElementById(item.target)
|
||||
if (element) observer.observe(element)
|
||||
})
|
||||
})
|
||||
|
||||
onBeforeUnmount(() => {
|
||||
observer?.disconnect()
|
||||
window.removeEventListener('keydown', handleWindowKeydown)
|
||||
})
|
||||
</script>
|
||||
|
||||
<template>
|
||||
<header class="site-header">
|
||||
<div class="container header-inner">
|
||||
<a class="brand" href="#home" aria-label="柚康首页" @click.prevent="scrollToTarget('home')">
|
||||
<img src="/assets/logo.png" alt="柚康 logo" class="brand-logo" />
|
||||
<span class="brand-copy">
|
||||
<strong>柚康</strong>
|
||||
<em>企业微信服务商标识</em>
|
||||
</span>
|
||||
</a>
|
||||
<button
|
||||
class="nav-toggle"
|
||||
type="button"
|
||||
:aria-expanded="isMenuOpen"
|
||||
aria-controls="main-navigation"
|
||||
:aria-label="isMenuOpen ? '收起主导航' : '展开主导航'"
|
||||
@click="toggleMenu"
|
||||
>
|
||||
<span></span>
|
||||
<span></span>
|
||||
<span></span>
|
||||
</button>
|
||||
<nav
|
||||
id="main-navigation"
|
||||
:class="['nav-links', { open: isMenuOpen }]"
|
||||
aria-label="主导航"
|
||||
>
|
||||
<a
|
||||
v-for="item in navItems"
|
||||
:key="item.target"
|
||||
:href="`#${item.target}`"
|
||||
:class="['nav-link', { active: item.target === activeTarget }]"
|
||||
:aria-current="item.target === activeTarget ? 'page' : undefined"
|
||||
@click.prevent="scrollToTarget(item.target)"
|
||||
>
|
||||
{{ item.label }}
|
||||
</a>
|
||||
</nav>
|
||||
</div>
|
||||
</header>
|
||||
</template>
|
||||
25
src/components/HeroSection.vue
Normal file
25
src/components/HeroSection.vue
Normal file
@ -0,0 +1,25 @@
|
||||
<template>
|
||||
<section id="home" class="hero-section section-anchor">
|
||||
<div class="hero-bg-orb hero-bg-orb--left"></div>
|
||||
<div class="hero-bg-orb hero-bg-orb--right"></div>
|
||||
<div class="container hero-grid">
|
||||
<div class="hero-copy">
|
||||
<p class="eyebrow">医疗服务数智化升级服务商</p>
|
||||
<h1>医疗行业患者全周期<br />管理服务数智化升级服务</h1>
|
||||
<div class="hero-badge">专注于医疗服务提质提效增收</div>
|
||||
<article id="company" class="intro-card glass-card">
|
||||
<p>
|
||||
杭州柚康科技有限公司,致力成为医疗机构的长期数据服务商及智能化升级服务商。
|
||||
公司聚焦应用医疗大数据技术、医疗大模型及智能体技术、互联网技术,打造院前 + 院中 + 院后全周期、精细化的患者管理服务模式,
|
||||
不断提高患者服务体验、提高服务效率、提升服务专业性,增强医患信任,增加医院收入。
|
||||
</p>
|
||||
</article>
|
||||
</div>
|
||||
|
||||
<div class="hero-visual" aria-label="医疗服务场景图片占位">
|
||||
<img src="/assets/medical.png" alt="医生与患者沟通场景占位图" />
|
||||
|
||||
</div>
|
||||
</div>
|
||||
</section>
|
||||
</template>
|
||||
32
src/components/IconMark.vue
Normal file
32
src/components/IconMark.vue
Normal file
@ -0,0 +1,32 @@
|
||||
<script setup>
|
||||
defineProps({
|
||||
name: { type: String, default: 'chart' },
|
||||
size: { type: Number, default: 44 }
|
||||
})
|
||||
</script>
|
||||
|
||||
<template>
|
||||
<svg class="icon-mark" :width="size" :height="size" viewBox="0 0 48 48" fill="none" aria-hidden="true">
|
||||
<template v-if="name === 'user-flow'">
|
||||
<circle cx="24" cy="16" r="7" stroke="currentColor" stroke-width="3" />
|
||||
<path d="M12 37c2.4-8.2 7-12 12-12s9.6 3.8 12 12" stroke="currentColor" stroke-width="3" stroke-linecap="round" />
|
||||
<path d="M9 24h5m20 0h5" stroke="currentColor" stroke-width="3" stroke-linecap="round" />
|
||||
</template>
|
||||
<template v-else-if="name === 'clipboard'">
|
||||
<rect x="12" y="10" width="24" height="30" rx="5" stroke="currentColor" stroke-width="3" />
|
||||
<path d="M18 8h12l2 5H16l2-5Z" fill="currentColor" />
|
||||
<path d="M18 23h12M18 31h8" stroke="currentColor" stroke-width="3" stroke-linecap="round" />
|
||||
</template>
|
||||
<template v-else-if="name === 'chart'">
|
||||
<path d="M12 38h26" stroke="currentColor" stroke-width="3" stroke-linecap="round" />
|
||||
<rect x="15" y="25" width="5" height="10" rx="2" fill="currentColor" />
|
||||
<rect x="24" y="17" width="5" height="18" rx="2" fill="currentColor" opacity="0.76" />
|
||||
<rect x="33" y="10" width="5" height="25" rx="2" fill="currentColor" opacity="0.52" />
|
||||
</template>
|
||||
<template v-else>
|
||||
<path d="M15 32c-4-3-6-8-4-13 2-7 8-11 15-10 8 1 13 7 13 15 0 6-3 11-8 14" stroke="currentColor" stroke-width="3" stroke-linecap="round" />
|
||||
<path d="M19 25h4l3-8 3 16 3-8h4" stroke="currentColor" stroke-width="3" stroke-linecap="round" stroke-linejoin="round" />
|
||||
<path d="M18 39h13" stroke="currentColor" stroke-width="3" stroke-linecap="round" />
|
||||
</template>
|
||||
</svg>
|
||||
</template>
|
||||
29
src/components/PlatformSection.vue
Normal file
29
src/components/PlatformSection.vue
Normal file
@ -0,0 +1,29 @@
|
||||
<script setup>
|
||||
import { features } from '../data/homepage'
|
||||
import IconMark from './IconMark.vue'
|
||||
import SectionTitle from './SectionTitle.vue'
|
||||
</script>
|
||||
|
||||
<template>
|
||||
<section id="platform" class="platform-section page-section">
|
||||
<div class="container">
|
||||
<SectionTitle title="患者精细化管理服务平台" />
|
||||
<div class="feature-grid">
|
||||
<article v-for="feature in features" :key="feature.title" class="feature-card">
|
||||
<div class="feature-head">
|
||||
<div class="feature-icon">
|
||||
<IconMark :name="feature.icon" :size="44" />
|
||||
</div>
|
||||
<h3>{{ feature.title }}</h3>
|
||||
</div>
|
||||
<ul class="feature-list">
|
||||
<li v-for="item in feature.items" :key="item">
|
||||
<span class="check-dot">✓</span>
|
||||
{{ item }}
|
||||
</li>
|
||||
</ul>
|
||||
</article>
|
||||
</div>
|
||||
</div>
|
||||
</section>
|
||||
</template>
|
||||
17
src/components/QrPlaceholder.vue
Normal file
17
src/components/QrPlaceholder.vue
Normal file
@ -0,0 +1,17 @@
|
||||
<script setup>
|
||||
const props = defineProps({
|
||||
label: { type: String, default: '二维码占位' },
|
||||
small: { type: Boolean, default: false }
|
||||
})
|
||||
</script>
|
||||
|
||||
<template>
|
||||
<div class="qr-wrap" :class="{ 'qr-wrap--small': small }" role="img" :aria-label="props.label">
|
||||
<div class="qr-fake">
|
||||
<span class="qr-corner tl"></span>
|
||||
<span class="qr-corner tr"></span>
|
||||
<span class="qr-corner bl"></span>
|
||||
</div>
|
||||
<p v-if="label" class="qr-label">{{ label }}</p>
|
||||
</div>
|
||||
</template>
|
||||
15
src/components/SectionTitle.vue
Normal file
15
src/components/SectionTitle.vue
Normal file
@ -0,0 +1,15 @@
|
||||
<script setup>
|
||||
defineProps({
|
||||
title: { type: String, required: true },
|
||||
subtitle: { type: String, default: '' }
|
||||
})
|
||||
</script>
|
||||
|
||||
<template>
|
||||
<div class="section-title">
|
||||
<span class="title-dots" aria-hidden="true"><i></i><i></i></span>
|
||||
<h2>{{ title }}</h2>
|
||||
<span class="title-dots" aria-hidden="true"><i></i><i></i></span>
|
||||
<p v-if="subtitle">{{ subtitle }}</p>
|
||||
</div>
|
||||
</template>
|
||||
87
src/components/SolutionSection.vue
Normal file
87
src/components/SolutionSection.vue
Normal file
@ -0,0 +1,87 @@
|
||||
<script setup>
|
||||
import { computed, ref } from 'vue'
|
||||
import { solutions } from '../data/homepage'
|
||||
import QrPlaceholder from './QrPlaceholder.vue'
|
||||
|
||||
const activeKey = ref(solutions[0].key)
|
||||
const activeIndex = computed(() => solutions.findIndex(item => item.key === activeKey.value))
|
||||
const activeSolution = computed(() => solutions[activeIndex.value] ?? solutions[0])
|
||||
|
||||
const selectSolution = (index) => {
|
||||
activeKey.value = solutions[index]?.key ?? solutions[0].key
|
||||
}
|
||||
|
||||
const handleTabKeydown = (event, index) => {
|
||||
const keyMap = {
|
||||
ArrowRight: 1,
|
||||
ArrowDown: 1,
|
||||
ArrowLeft: -1,
|
||||
ArrowUp: -1
|
||||
}
|
||||
|
||||
if (event.key === 'Home' || event.key === 'End' || keyMap[event.key]) {
|
||||
event.preventDefault()
|
||||
} else {
|
||||
return
|
||||
}
|
||||
|
||||
const nextIndex =
|
||||
event.key === 'Home'
|
||||
? 0
|
||||
: event.key === 'End'
|
||||
? solutions.length - 1
|
||||
: (index + keyMap[event.key] + solutions.length) % solutions.length
|
||||
|
||||
selectSolution(nextIndex)
|
||||
document.getElementById(`solution-tab-${solutions[nextIndex].key}`)?.focus()
|
||||
}
|
||||
</script>
|
||||
|
||||
<template>
|
||||
<section class="solution-section page-section page-section--compact">
|
||||
<div class="container">
|
||||
<div class="solution-tabs" role="tablist" aria-label="版本切换">
|
||||
<button
|
||||
v-for="(solution, index) in solutions"
|
||||
:key="solution.key"
|
||||
:id="`solution-tab-${solution.key}`"
|
||||
type="button"
|
||||
:class="['solution-tab', { active: solution.key === activeKey }]"
|
||||
role="tab"
|
||||
:aria-selected="solution.key === activeKey"
|
||||
aria-controls="solution-panel"
|
||||
:tabindex="solution.key === activeKey ? 0 : -1"
|
||||
@click="selectSolution(index)"
|
||||
@keydown="handleTabKeydown($event, index)"
|
||||
>
|
||||
{{ solution.tab }}
|
||||
</button>
|
||||
<span class="tab-indicator" :style="{ transform: `translateX(${activeIndex * 100}%)` }"></span>
|
||||
</div>
|
||||
|
||||
<div class="solution-grid">
|
||||
<article
|
||||
id="solution-panel"
|
||||
:key="activeSolution.key"
|
||||
class="solution-card active"
|
||||
role="tabpanel"
|
||||
:aria-labelledby="`solution-tab-${activeSolution.key}`"
|
||||
tabindex="0"
|
||||
>
|
||||
<div class="solution-card-top">
|
||||
<span class="solution-kicker">{{ activeSolution.tab }}</span>
|
||||
<h3>{{ activeSolution.title }}</h3>
|
||||
</div>
|
||||
<ol v-if="activeSolution.key !== 'personal'" class="solution-points">
|
||||
<li v-for="point in activeSolution.points" :key="point">{{ point }}</li>
|
||||
</ol>
|
||||
<p v-else class="solution-personal-text">{{ activeSolution.points[0] }}</p>
|
||||
<div class="solution-qr-row">
|
||||
<span>具体咨询:</span>
|
||||
<QrPlaceholder :label="activeSolution.qrLabel" :title="`${activeSolution.tab}咨询二维码`" />
|
||||
</div>
|
||||
</article>
|
||||
</div>
|
||||
</div>
|
||||
</section>
|
||||
</template>
|
||||
69
src/data/homepage.js
Normal file
69
src/data/homepage.js
Normal file
@ -0,0 +1,69 @@
|
||||
export const navItems = [
|
||||
{ label: '首页', target: 'home' },
|
||||
{ label: '公司介绍', target: 'company' },
|
||||
{ label: '患者精细化管理服务平台', target: 'platform' },
|
||||
{ label: '客户案例', target: 'cases' },
|
||||
{ label: '联系我们', target: 'contact' }
|
||||
]
|
||||
|
||||
export const features = [
|
||||
{
|
||||
icon: 'user-flow',
|
||||
title: '前端运营获客',
|
||||
items: ['公众号/视频号互动引流', '个人号承接', '团队微信池', '活动裂变', '企业微信能力融合']
|
||||
},
|
||||
{
|
||||
icon: 'clipboard',
|
||||
title: '中端服务承接',
|
||||
items: ['患者建档、管理画像', '管理服务流程', '日诊断评估', '日访持续执行', '宣教、随访、复诊']
|
||||
},
|
||||
{
|
||||
icon: 'chart',
|
||||
title: '后端跟进管理',
|
||||
items: ['复诊/随访流程分组', 'SOP任务引擎', '管理协作闭环', '任务分配下达', '运营管理支撑']
|
||||
},
|
||||
{
|
||||
icon: 'ai',
|
||||
title: '全端数智赋能',
|
||||
items: ['体效营销体系及引擎', '话术智能客服训练', 'Youcan AI大模型', 'AI客服助手-小柚', '精细化客服多图层']
|
||||
}
|
||||
]
|
||||
|
||||
export const solutions = [
|
||||
{
|
||||
key: 'cloud',
|
||||
tab: '机构云服务版',
|
||||
title: '版本优势',
|
||||
points: ['快速开通、快速培训、快速上线', '按年付费、费用低', '享受平台功能持续升级服务', '支持管理患者档案数据的导出'],
|
||||
qrLabel: '柚康企业微信客服二维码'
|
||||
},
|
||||
{
|
||||
key: 'local',
|
||||
tab: '机构本地部署版',
|
||||
title: '版本优势',
|
||||
points: ['支持本地服务器部署及内部业务系统对接', '数据本地化管理', '大规模长期使用,性价比高'],
|
||||
qrLabel: '柚康企业微信客服二维码'
|
||||
},
|
||||
{
|
||||
key: 'personal',
|
||||
tab: '个人云服务版',
|
||||
title: '医生/护士/助理免费开通',
|
||||
points: ['如果您是医生、护士、医生助理,现在即可免费开通使用:'],
|
||||
qrLabel: '柚助二维码'
|
||||
}
|
||||
]
|
||||
|
||||
export const caseCategories = ['国家医学中心', '公立医院', '妇幼保健宫', '医疗集团客户']
|
||||
|
||||
export const cases = [
|
||||
{ short: '骨', name: '国家骨科医学中心\n上海市第六人民医院', tone: 'blue', category: '国家医学中心' },
|
||||
{ short: '呼', name: '国家呼吸医学中心\n广州医科大学附属第一医院', tone: 'orange', category: '国家医学中心' },
|
||||
{ short: '广', name: '广医口腔', tone: 'blue', category: '公立医院' },
|
||||
{ short: '广', name: '广医口腔', tone: 'blue', category: '公立医院' },
|
||||
{ short: '丹', name: '丹红互联网医院', tone: 'red', category: '公立医院' },
|
||||
{ short: '十', name: '圣德', tone: 'green', category: '妇幼保健宫' },
|
||||
{ short: '中', name: '中信医疗', tone: 'red', category: '医疗集团客户' },
|
||||
{ short: 'Z', name: '浙江震元', tone: 'cyan', category: '医疗集团客户' },
|
||||
{ short: '合', name: '合禾', tone: 'green', category: '医疗集团客户' },
|
||||
{ short: '…', name: '更多案例\n……', tone: 'gray', category: '医疗集团客户' }
|
||||
]
|
||||
5
src/main.js
Normal file
5
src/main.js
Normal file
@ -0,0 +1,5 @@
|
||||
import { createApp } from 'vue'
|
||||
import App from './App.vue'
|
||||
import './styles/theme.css'
|
||||
|
||||
createApp(App).mount('#app')
|
||||
977
src/styles/theme.css
Normal file
977
src/styles/theme.css
Normal file
@ -0,0 +1,977 @@
|
||||
:root {
|
||||
--brand: #ff8a00;
|
||||
--brand-dark: #ea7600;
|
||||
--brand-soft: #fff2df;
|
||||
--brand-soft-2: #ffe4bf;
|
||||
--text: #202530;
|
||||
--muted: #687080;
|
||||
--line: rgba(255, 138, 0, 0.16);
|
||||
--card: #ffffff;
|
||||
--bg: #fffdf9;
|
||||
--warm: #fff7ec;
|
||||
--shadow: 0 18px 50px rgba(218, 112, 0, 0.12);
|
||||
--shadow-sm: 0 10px 28px rgba(31, 35, 44, 0.08);
|
||||
--radius-xl: 30px;
|
||||
--radius-lg: 22px;
|
||||
--radius-md: 16px;
|
||||
--container: 1180px;
|
||||
font-family: "Inter", "PingFang SC", "Microsoft YaHei", "Helvetica Neue", Arial, sans-serif;
|
||||
color: var(--text);
|
||||
background: var(--bg);
|
||||
}
|
||||
|
||||
* {
|
||||
box-sizing: border-box;
|
||||
}
|
||||
|
||||
html {
|
||||
scroll-behavior: smooth;
|
||||
}
|
||||
|
||||
body {
|
||||
margin: 0;
|
||||
background:
|
||||
radial-gradient(circle at 14% 8%, rgba(255, 138, 0, 0.10), transparent 28%),
|
||||
radial-gradient(circle at 88% 20%, rgba(255, 196, 102, 0.16), transparent 32%),
|
||||
linear-gradient(180deg, #fffaf2 0%, #ffffff 38%, #fffdf9 100%);
|
||||
color: var(--text);
|
||||
}
|
||||
|
||||
a {
|
||||
color: inherit;
|
||||
text-decoration: none;
|
||||
}
|
||||
|
||||
button {
|
||||
font: inherit;
|
||||
}
|
||||
|
||||
.container {
|
||||
width: min(var(--container), calc(100% - 48px));
|
||||
margin: 0 auto;
|
||||
}
|
||||
|
||||
.site-shell {
|
||||
min-height: 100vh;
|
||||
overflow: hidden;
|
||||
}
|
||||
|
||||
.site-header {
|
||||
position: sticky;
|
||||
top: 0;
|
||||
z-index: 50;
|
||||
background: rgba(255, 255, 255, 0.88);
|
||||
backdrop-filter: blur(18px);
|
||||
border-bottom: 1px solid rgba(255, 138, 0, 0.08);
|
||||
}
|
||||
|
||||
.header-inner {
|
||||
height: 86px;
|
||||
display: flex;
|
||||
align-items: center;
|
||||
justify-content: space-between;
|
||||
gap: 36px;
|
||||
}
|
||||
|
||||
.brand {
|
||||
display: inline-flex;
|
||||
align-items: center;
|
||||
gap: 12px;
|
||||
min-width: 210px;
|
||||
}
|
||||
|
||||
.brand-logo {
|
||||
width: 52px;
|
||||
height: 52px;
|
||||
border-radius: 14px;
|
||||
object-fit: contain;
|
||||
box-shadow: 0 10px 22px rgba(255, 138, 0, 0.16);
|
||||
}
|
||||
|
||||
.brand-copy,
|
||||
.footer-brand span {
|
||||
display: grid;
|
||||
line-height: 1.1;
|
||||
}
|
||||
|
||||
.brand-copy strong,
|
||||
.footer-brand strong {
|
||||
font-size: 25px;
|
||||
letter-spacing: 0.04em;
|
||||
}
|
||||
|
||||
.brand-copy em,
|
||||
.footer-brand em {
|
||||
margin-top: 7px;
|
||||
color: var(--muted);
|
||||
font-style: normal;
|
||||
font-size: 12px;
|
||||
}
|
||||
|
||||
.nav-links {
|
||||
display: flex;
|
||||
align-items: center;
|
||||
gap: clamp(22px, 3.4vw, 58px);
|
||||
font-size: 16px;
|
||||
color: #252a35;
|
||||
}
|
||||
|
||||
.nav-toggle {
|
||||
display: none;
|
||||
flex-direction: column;
|
||||
align-items: center;
|
||||
justify-content: center;
|
||||
gap: 5px;
|
||||
width: 44px;
|
||||
height: 44px;
|
||||
border: 1px solid rgba(255, 138, 0, 0.18);
|
||||
border-radius: 12px;
|
||||
background: #fff;
|
||||
cursor: pointer;
|
||||
}
|
||||
|
||||
.nav-toggle span {
|
||||
display: block;
|
||||
width: 20px;
|
||||
height: 2px;
|
||||
border-radius: 999px;
|
||||
background: var(--brand);
|
||||
}
|
||||
|
||||
.nav-link {
|
||||
position: relative;
|
||||
padding: 31px 0 28px;
|
||||
white-space: nowrap;
|
||||
transition: color 0.2s ease;
|
||||
}
|
||||
|
||||
.nav-link:hover,
|
||||
.nav-link.active {
|
||||
color: var(--brand);
|
||||
}
|
||||
|
||||
.nav-link.active::after {
|
||||
content: "";
|
||||
position: absolute;
|
||||
left: 50%;
|
||||
bottom: 16px;
|
||||
width: 32px;
|
||||
height: 4px;
|
||||
border-radius: 999px;
|
||||
background: linear-gradient(90deg, var(--brand), #ffb154);
|
||||
transform: translateX(-50%);
|
||||
}
|
||||
|
||||
.hero-section {
|
||||
position: relative;
|
||||
padding: 64px 0 84px;
|
||||
background:
|
||||
linear-gradient(105deg, rgba(255, 255, 255, 0.96), rgba(255, 237, 210, 0.78) 52%, rgba(255, 255, 255, 0.94)),
|
||||
radial-gradient(circle at 68% 40%, rgba(255, 138, 0, 0.16), transparent 28%);
|
||||
overflow: hidden;
|
||||
}
|
||||
|
||||
.hero-section::after {
|
||||
content: "";
|
||||
position: absolute;
|
||||
right: -180px;
|
||||
bottom: -190px;
|
||||
width: 650px;
|
||||
height: 360px;
|
||||
border-radius: 50%;
|
||||
border: 24px solid rgba(255, 138, 0, 0.26);
|
||||
transform: rotate(-12deg);
|
||||
}
|
||||
|
||||
.hero-bg-orb {
|
||||
position: absolute;
|
||||
border-radius: 999px;
|
||||
background: linear-gradient(135deg, rgba(255, 138, 0, 0.28), rgba(255, 255, 255, 0.1));
|
||||
filter: blur(2px);
|
||||
}
|
||||
|
||||
.hero-bg-orb--left {
|
||||
width: 110px;
|
||||
height: 110px;
|
||||
left: 48%;
|
||||
top: 35%;
|
||||
}
|
||||
|
||||
.hero-bg-orb--right {
|
||||
width: 180px;
|
||||
height: 180px;
|
||||
right: 8%;
|
||||
top: 16%;
|
||||
opacity: 0.32;
|
||||
}
|
||||
|
||||
.hero-grid {
|
||||
position: relative;
|
||||
z-index: 2;
|
||||
display: grid;
|
||||
grid-template-columns: 1.02fr 0.98fr;
|
||||
align-items: center;
|
||||
gap: 52px;
|
||||
}
|
||||
|
||||
.hero-copy {
|
||||
max-width: 620px;
|
||||
}
|
||||
|
||||
.eyebrow {
|
||||
display: inline-flex;
|
||||
align-items: center;
|
||||
gap: 8px;
|
||||
margin: 0 0 14px;
|
||||
color: var(--brand-dark);
|
||||
font-weight: 700;
|
||||
letter-spacing: 0.08em;
|
||||
}
|
||||
|
||||
.eyebrow::before {
|
||||
content: "";
|
||||
width: 22px;
|
||||
height: 3px;
|
||||
border-radius: 999px;
|
||||
background: var(--brand);
|
||||
}
|
||||
|
||||
.hero-copy h1 {
|
||||
margin: 0;
|
||||
font-size: clamp(38px, 4.5vw, 58px);
|
||||
line-height: 1.22;
|
||||
letter-spacing: -0.04em;
|
||||
color: #171b23;
|
||||
}
|
||||
|
||||
.hero-badge {
|
||||
display: inline-flex;
|
||||
align-items: center;
|
||||
margin-top: 24px;
|
||||
padding: 13px 34px;
|
||||
border-radius: 999px;
|
||||
background: linear-gradient(90deg, var(--brand), #ffad39);
|
||||
color: #fff;
|
||||
font-size: 24px;
|
||||
font-weight: 800;
|
||||
box-shadow: 0 16px 34px rgba(255, 138, 0, 0.24);
|
||||
}
|
||||
|
||||
.glass-card {
|
||||
background: rgba(255, 255, 255, 0.76);
|
||||
border: 1px solid rgba(255, 255, 255, 0.82);
|
||||
box-shadow: var(--shadow);
|
||||
backdrop-filter: blur(18px);
|
||||
}
|
||||
|
||||
.intro-card {
|
||||
margin-top: 32px;
|
||||
padding: 26px 30px;
|
||||
border-radius: 20px;
|
||||
}
|
||||
|
||||
.intro-card p {
|
||||
margin: 0;
|
||||
color: #424956;
|
||||
font-size: 17px;
|
||||
line-height: 2.05;
|
||||
}
|
||||
|
||||
.hero-visual {
|
||||
position: relative;
|
||||
min-height: 458px;
|
||||
display: grid;
|
||||
place-items: center;
|
||||
}
|
||||
|
||||
.hero-visual img {
|
||||
width: min(100%, 620px);
|
||||
height: auto;
|
||||
display: block;
|
||||
border-radius: 42px;
|
||||
filter: drop-shadow(0 28px 56px rgba(255, 138, 0, 0.14));
|
||||
}
|
||||
|
||||
.float-card {
|
||||
position: absolute;
|
||||
display: grid;
|
||||
gap: 4px;
|
||||
padding: 14px 18px;
|
||||
border-radius: 18px;
|
||||
background: rgba(255, 255, 255, 0.74);
|
||||
border: 1px solid rgba(255, 255, 255, 0.88);
|
||||
box-shadow: var(--shadow-sm);
|
||||
backdrop-filter: blur(16px);
|
||||
}
|
||||
|
||||
.float-card span {
|
||||
color: var(--muted);
|
||||
font-size: 12px;
|
||||
}
|
||||
|
||||
.float-card strong {
|
||||
color: var(--brand);
|
||||
font-size: 20px;
|
||||
}
|
||||
|
||||
.float-card--heart {
|
||||
top: 62px;
|
||||
left: 34px;
|
||||
}
|
||||
|
||||
.float-card--data {
|
||||
right: 28px;
|
||||
bottom: 68px;
|
||||
}
|
||||
|
||||
.page-section {
|
||||
padding: 70px 0;
|
||||
background: #fff;
|
||||
}
|
||||
|
||||
.page-section--compact {
|
||||
padding-top: 44px;
|
||||
}
|
||||
|
||||
.section-title {
|
||||
display: flex;
|
||||
align-items: center;
|
||||
justify-content: center;
|
||||
gap: 20px;
|
||||
flex-wrap: wrap;
|
||||
margin-bottom: 42px;
|
||||
text-align: center;
|
||||
}
|
||||
|
||||
.section-title h2 {
|
||||
margin: 0;
|
||||
font-size: clamp(28px, 3vw, 40px);
|
||||
letter-spacing: -0.03em;
|
||||
}
|
||||
|
||||
.section-title p {
|
||||
flex-basis: 100%;
|
||||
margin: 0;
|
||||
color: var(--muted);
|
||||
}
|
||||
|
||||
.title-dots {
|
||||
display: inline-flex;
|
||||
gap: 8px;
|
||||
}
|
||||
|
||||
.title-dots i {
|
||||
display: block;
|
||||
width: 9px;
|
||||
height: 9px;
|
||||
border-radius: 999px;
|
||||
background: var(--brand);
|
||||
box-shadow: 16px 0 0 rgba(255, 138, 0, 0.42);
|
||||
}
|
||||
|
||||
.feature-grid {
|
||||
display: grid;
|
||||
grid-template-columns: repeat(4, 1fr);
|
||||
gap: 28px;
|
||||
}
|
||||
|
||||
.feature-card {
|
||||
overflow: hidden;
|
||||
border-radius: 18px;
|
||||
background: #fff;
|
||||
box-shadow: var(--shadow-sm);
|
||||
border: 1px solid rgba(255, 138, 0, 0.10);
|
||||
transition: transform 0.2s ease, box-shadow 0.2s ease;
|
||||
}
|
||||
|
||||
.feature-card:hover,
|
||||
.solution-card:hover,
|
||||
.case-card:hover {
|
||||
transform: translateY(-4px);
|
||||
box-shadow: 0 20px 46px rgba(31, 35, 44, 0.10);
|
||||
}
|
||||
|
||||
.feature-head {
|
||||
position: relative;
|
||||
display: grid;
|
||||
place-items: center;
|
||||
gap: 12px;
|
||||
padding: 28px 20px 24px;
|
||||
color: #fff;
|
||||
background: linear-gradient(180deg, var(--brand), #ff7900);
|
||||
}
|
||||
|
||||
.feature-head::after {
|
||||
content: "";
|
||||
position: absolute;
|
||||
inset: auto -18px -22px -18px;
|
||||
height: 48px;
|
||||
border-radius: 50% 50% 0 0;
|
||||
background: #fff;
|
||||
opacity: 0.12;
|
||||
}
|
||||
|
||||
.feature-icon {
|
||||
position: relative;
|
||||
z-index: 1;
|
||||
width: 72px;
|
||||
height: 72px;
|
||||
border-radius: 999px;
|
||||
display: grid;
|
||||
place-items: center;
|
||||
color: var(--brand);
|
||||
background: #fff;
|
||||
}
|
||||
|
||||
.feature-head h3 {
|
||||
position: relative;
|
||||
z-index: 1;
|
||||
margin: 0;
|
||||
font-size: 21px;
|
||||
}
|
||||
|
||||
.feature-list {
|
||||
list-style: none;
|
||||
display: grid;
|
||||
gap: 12px;
|
||||
margin: 0;
|
||||
padding: 22px 18px 24px;
|
||||
background: linear-gradient(180deg, #fff, #fffaf5);
|
||||
}
|
||||
|
||||
.feature-list li {
|
||||
display: flex;
|
||||
align-items: center;
|
||||
gap: 9px;
|
||||
min-height: 36px;
|
||||
padding: 8px 13px;
|
||||
border-radius: 10px;
|
||||
background: linear-gradient(180deg, #fff, #fff5ec);
|
||||
color: #535b68;
|
||||
font-size: 14px;
|
||||
box-shadow: inset 0 0 0 1px rgba(255, 138, 0, 0.10);
|
||||
}
|
||||
|
||||
.check-dot {
|
||||
display: inline-grid;
|
||||
place-items: center;
|
||||
flex: 0 0 auto;
|
||||
width: 16px;
|
||||
height: 16px;
|
||||
border-radius: 50%;
|
||||
color: #fff;
|
||||
background: var(--brand);
|
||||
font-size: 10px;
|
||||
font-weight: 800;
|
||||
}
|
||||
|
||||
.solution-section {
|
||||
background: linear-gradient(180deg, #fff, #fffaf4 42%, #fff);
|
||||
}
|
||||
|
||||
.solution-tabs {
|
||||
position: relative;
|
||||
display: grid;
|
||||
grid-template-columns: repeat(3, 1fr);
|
||||
width: min(760px, 100%);
|
||||
min-height: 58px;
|
||||
margin: 0 auto 28px;
|
||||
padding: 6px;
|
||||
border-radius: 15px;
|
||||
background: #fff;
|
||||
box-shadow: var(--shadow-sm);
|
||||
border: 1px solid rgba(255, 138, 0, 0.12);
|
||||
}
|
||||
|
||||
.solution-tab {
|
||||
position: relative;
|
||||
z-index: 2;
|
||||
border: 0;
|
||||
background: transparent;
|
||||
color: #4e5664;
|
||||
font-weight: 800;
|
||||
cursor: pointer;
|
||||
border-radius: 12px;
|
||||
transition: color 0.2s ease;
|
||||
}
|
||||
|
||||
.solution-tab.active {
|
||||
color: #fff;
|
||||
}
|
||||
|
||||
.tab-indicator {
|
||||
position: absolute;
|
||||
z-index: 1;
|
||||
left: 6px;
|
||||
top: 6px;
|
||||
width: calc((100% - 12px) / 3);
|
||||
height: calc(100% - 12px);
|
||||
border-radius: 12px;
|
||||
background: linear-gradient(90deg, var(--brand), #ff9d22);
|
||||
box-shadow: 0 12px 24px rgba(255, 138, 0, 0.24);
|
||||
transition: transform 0.26s ease;
|
||||
}
|
||||
|
||||
.solution-grid {
|
||||
display: grid;
|
||||
grid-template-columns: 1fr;
|
||||
width: min(760px, 100%);
|
||||
margin: 0 auto;
|
||||
}
|
||||
|
||||
.solution-card {
|
||||
min-height: 286px;
|
||||
padding: 27px 24px 22px;
|
||||
border-radius: 20px;
|
||||
background: rgba(255, 255, 255, 0.9);
|
||||
border: 1px solid rgba(255, 138, 0, 0.11);
|
||||
box-shadow: var(--shadow-sm);
|
||||
transition: all 0.22s ease;
|
||||
}
|
||||
|
||||
.solution-card.active {
|
||||
border-color: rgba(255, 138, 0, 0.32);
|
||||
box-shadow: 0 22px 58px rgba(255, 138, 0, 0.16);
|
||||
}
|
||||
|
||||
.solution-kicker {
|
||||
display: inline-flex;
|
||||
margin-bottom: 10px;
|
||||
color: var(--brand);
|
||||
font-size: 13px;
|
||||
font-weight: 800;
|
||||
}
|
||||
|
||||
.solution-card h3 {
|
||||
margin: 0 0 14px;
|
||||
font-size: 21px;
|
||||
}
|
||||
|
||||
.solution-points {
|
||||
margin: 0;
|
||||
padding-left: 20px;
|
||||
color: #424956;
|
||||
line-height: 1.9;
|
||||
}
|
||||
|
||||
.solution-personal-text {
|
||||
margin: 0 0 40px;
|
||||
color: #424956;
|
||||
line-height: 1.9;
|
||||
}
|
||||
|
||||
.solution-qr-row {
|
||||
margin-top: 18px;
|
||||
display: flex;
|
||||
align-items: end;
|
||||
justify-content: space-between;
|
||||
gap: 20px;
|
||||
color: #4e5664;
|
||||
font-size: 14px;
|
||||
}
|
||||
|
||||
.qr-wrap {
|
||||
display: grid;
|
||||
justify-items: center;
|
||||
gap: 8px;
|
||||
}
|
||||
|
||||
.qr-fake {
|
||||
position: relative;
|
||||
width: 94px;
|
||||
height: 94px;
|
||||
border: 7px solid #fff;
|
||||
background:
|
||||
linear-gradient(90deg, #111 10px, transparent 10px 16px, #111 16px 22px, transparent 22px 31px, #111 31px 38px, transparent 38px 47px, #111 47px 54px, transparent 54px 64px, #111 64px 72px, transparent 72px),
|
||||
linear-gradient(0deg, transparent 8px, #111 8px 14px, transparent 14px 23px, #111 23px 30px, transparent 30px 39px, #111 39px 45px, transparent 45px 59px, #111 59px 66px, transparent 66px),
|
||||
#fff;
|
||||
background-blend-mode: multiply;
|
||||
box-shadow: inset 0 0 0 1px #111, 0 6px 14px rgba(0,0,0,.08);
|
||||
}
|
||||
|
||||
.qr-corner {
|
||||
position: absolute;
|
||||
width: 26px;
|
||||
height: 26px;
|
||||
border: 5px solid #111;
|
||||
background: #fff;
|
||||
}
|
||||
|
||||
.qr-corner::after {
|
||||
content: "";
|
||||
position: absolute;
|
||||
inset: 5px;
|
||||
background: #111;
|
||||
}
|
||||
|
||||
.qr-corner.tl { left: 6px; top: 6px; }
|
||||
.qr-corner.tr { right: 6px; top: 6px; }
|
||||
.qr-corner.bl { left: 6px; bottom: 6px; }
|
||||
|
||||
.qr-label {
|
||||
max-width: 118px;
|
||||
margin: 0;
|
||||
color: #66707d;
|
||||
font-size: 12px;
|
||||
line-height: 1.3;
|
||||
text-align: center;
|
||||
}
|
||||
|
||||
.qr-wrap--small .qr-fake {
|
||||
width: 78px;
|
||||
height: 78px;
|
||||
border-width: 6px;
|
||||
}
|
||||
|
||||
.qr-wrap--small .qr-label {
|
||||
display: none;
|
||||
}
|
||||
|
||||
.case-section {
|
||||
background: #fff;
|
||||
}
|
||||
|
||||
.case-layout {
|
||||
display: grid;
|
||||
grid-template-columns: 170px 1fr;
|
||||
gap: 46px;
|
||||
align-items: start;
|
||||
}
|
||||
|
||||
.case-filter {
|
||||
display: grid;
|
||||
gap: 15px;
|
||||
}
|
||||
|
||||
.case-filter-btn {
|
||||
min-height: 54px;
|
||||
padding: 0 18px;
|
||||
border-radius: 12px;
|
||||
border: 1px solid rgba(255, 138, 0, 0.18);
|
||||
background: #fff;
|
||||
color: #313843;
|
||||
font-size: 16px;
|
||||
font-weight: 800;
|
||||
cursor: pointer;
|
||||
transition: all 0.2s ease;
|
||||
}
|
||||
|
||||
.case-filter-btn.active,
|
||||
.case-filter-btn:hover {
|
||||
border-color: transparent;
|
||||
background: linear-gradient(90deg, var(--brand), #ff9d22);
|
||||
color: #fff;
|
||||
box-shadow: 0 12px 24px rgba(255, 138, 0, 0.22);
|
||||
}
|
||||
|
||||
.case-grid {
|
||||
display: grid;
|
||||
grid-template-columns: repeat(4, minmax(0, 1fr));
|
||||
gap: 16px;
|
||||
}
|
||||
|
||||
.case-card {
|
||||
min-height: 86px;
|
||||
display: flex;
|
||||
align-items: center;
|
||||
gap: 14px;
|
||||
padding: 16px 18px;
|
||||
border: 1px solid rgba(31, 35, 44, 0.07);
|
||||
border-radius: 14px;
|
||||
background: #fff;
|
||||
box-shadow: 0 8px 26px rgba(31, 35, 44, 0.05);
|
||||
transition: all 0.2s ease;
|
||||
}
|
||||
|
||||
.case-logo {
|
||||
flex: 0 0 auto;
|
||||
width: 48px;
|
||||
height: 48px;
|
||||
display: grid;
|
||||
place-items: center;
|
||||
border-radius: 14px;
|
||||
color: #fff;
|
||||
font-weight: 900;
|
||||
font-size: 18px;
|
||||
}
|
||||
|
||||
.case-logo--blue { background: linear-gradient(135deg, #2e6bd4, #153d93); }
|
||||
.case-logo--orange { background: linear-gradient(135deg, var(--brand), #ffb24b); }
|
||||
.case-logo--red { background: linear-gradient(135deg, #e63e31, #bd1f18); }
|
||||
.case-logo--cyan { background: linear-gradient(135deg, #26a4e8, #0874b8); }
|
||||
.case-logo--green { background: linear-gradient(135deg, #10a774, #087d56); }
|
||||
.case-logo--gray { background: linear-gradient(135deg, #b6bdc7, #88919f); }
|
||||
|
||||
.case-card p {
|
||||
margin: 0;
|
||||
color: #2f3540;
|
||||
line-height: 1.45;
|
||||
white-space: pre-line;
|
||||
font-size: 14px;
|
||||
}
|
||||
|
||||
.contact-section {
|
||||
background: linear-gradient(180deg, #fff, #fff7ec);
|
||||
}
|
||||
|
||||
.contact-card {
|
||||
width: min(960px, 100%);
|
||||
margin: 0 auto;
|
||||
padding: 34px 40px;
|
||||
border-radius: 24px;
|
||||
background: rgba(255, 255, 255, 0.86);
|
||||
border: 1px solid rgba(255, 138, 0, 0.15);
|
||||
box-shadow: var(--shadow);
|
||||
}
|
||||
|
||||
.address-row {
|
||||
display: flex;
|
||||
align-items: center;
|
||||
justify-content: center;
|
||||
flex-wrap: wrap;
|
||||
gap: 8px;
|
||||
font-size: 20px;
|
||||
margin-bottom: 28px;
|
||||
}
|
||||
|
||||
.address-icon {
|
||||
display: inline-grid;
|
||||
place-items: center;
|
||||
width: 40px;
|
||||
height: 40px;
|
||||
border-radius: 50%;
|
||||
background: var(--brand);
|
||||
color: #fff;
|
||||
}
|
||||
|
||||
.contact-manager-grid {
|
||||
display: grid;
|
||||
grid-template-columns: repeat(2, 1fr);
|
||||
gap: 24px;
|
||||
}
|
||||
|
||||
.manager-card {
|
||||
display: flex;
|
||||
align-items: center;
|
||||
justify-content: space-between;
|
||||
gap: 24px;
|
||||
padding: 22px 26px;
|
||||
border-radius: 18px;
|
||||
background: #fff;
|
||||
box-shadow: var(--shadow-sm);
|
||||
}
|
||||
|
||||
.manager-copy {
|
||||
display: flex;
|
||||
align-items: center;
|
||||
gap: 14px;
|
||||
}
|
||||
|
||||
.manager-copy p {
|
||||
margin: 0;
|
||||
color: #3d4552;
|
||||
line-height: 1.7;
|
||||
}
|
||||
|
||||
.manager-icon {
|
||||
display: grid;
|
||||
place-items: center;
|
||||
width: 42px;
|
||||
height: 42px;
|
||||
border-radius: 50%;
|
||||
background: var(--brand-soft);
|
||||
color: var(--brand);
|
||||
font-size: 20px;
|
||||
}
|
||||
|
||||
.site-footer {
|
||||
background: #f6f7f9;
|
||||
border-top: 1px solid rgba(31, 35, 44, 0.06);
|
||||
}
|
||||
|
||||
.footer-inner {
|
||||
min-height: 92px;
|
||||
display: flex;
|
||||
align-items: center;
|
||||
justify-content: space-between;
|
||||
gap: 20px;
|
||||
color: #8a929f;
|
||||
font-size: 14px;
|
||||
}
|
||||
|
||||
.footer-brand {
|
||||
display: inline-flex;
|
||||
align-items: center;
|
||||
gap: 10px;
|
||||
color: var(--text);
|
||||
}
|
||||
|
||||
.footer-brand img {
|
||||
width: 44px;
|
||||
height: 44px;
|
||||
border-radius: 12px;
|
||||
}
|
||||
|
||||
.footer-brand strong {
|
||||
font-size: 18px;
|
||||
}
|
||||
|
||||
@media (max-width: 1100px) {
|
||||
.nav-links {
|
||||
gap: 20px;
|
||||
font-size: 14px;
|
||||
}
|
||||
.hero-grid {
|
||||
grid-template-columns: 1fr;
|
||||
}
|
||||
.hero-copy {
|
||||
max-width: none;
|
||||
}
|
||||
.feature-grid {
|
||||
grid-template-columns: repeat(2, 1fr);
|
||||
}
|
||||
.case-grid {
|
||||
grid-template-columns: repeat(2, minmax(0, 1fr));
|
||||
}
|
||||
}
|
||||
|
||||
@media (max-width: 860px) {
|
||||
.container {
|
||||
width: min(100% - 28px, var(--container));
|
||||
}
|
||||
.site-header {
|
||||
position: static;
|
||||
}
|
||||
.header-inner {
|
||||
height: auto;
|
||||
padding: 16px 0;
|
||||
flex-wrap: wrap;
|
||||
gap: 12px;
|
||||
}
|
||||
.brand {
|
||||
min-width: 0;
|
||||
}
|
||||
.nav-toggle {
|
||||
display: inline-flex;
|
||||
margin-left: auto;
|
||||
}
|
||||
.nav-links {
|
||||
width: 100%;
|
||||
display: none;
|
||||
padding: 6px;
|
||||
border-radius: 15px;
|
||||
background: #fff;
|
||||
border: 1px solid rgba(255, 138, 0, 0.12);
|
||||
box-shadow: var(--shadow-sm);
|
||||
}
|
||||
.nav-links.open {
|
||||
display: grid;
|
||||
gap: 2px;
|
||||
}
|
||||
.nav-link {
|
||||
padding: 12px 14px;
|
||||
border-radius: 10px;
|
||||
}
|
||||
.nav-link.active::after {
|
||||
left: 14px;
|
||||
bottom: 8px;
|
||||
width: 22px;
|
||||
transform: none;
|
||||
}
|
||||
.hero-section {
|
||||
padding: 44px 0 60px;
|
||||
}
|
||||
.hero-badge {
|
||||
font-size: 18px;
|
||||
padding: 11px 22px;
|
||||
}
|
||||
.intro-card {
|
||||
padding: 20px;
|
||||
}
|
||||
.intro-card p {
|
||||
font-size: 15px;
|
||||
}
|
||||
.hero-visual {
|
||||
min-height: auto;
|
||||
}
|
||||
.float-card {
|
||||
display: none;
|
||||
}
|
||||
.feature-grid,
|
||||
.contact-manager-grid {
|
||||
grid-template-columns: 1fr;
|
||||
}
|
||||
.solution-tabs {
|
||||
grid-template-columns: repeat(3, 1fr);
|
||||
min-height: 50px;
|
||||
padding: 5px;
|
||||
}
|
||||
.solution-tab {
|
||||
min-height: 40px;
|
||||
padding: 0 6px;
|
||||
font-size: 13px;
|
||||
line-height: 1.25;
|
||||
}
|
||||
.tab-indicator {
|
||||
left: 5px;
|
||||
top: 5px;
|
||||
width: calc((100% - 10px) / 3);
|
||||
height: calc(100% - 10px);
|
||||
}
|
||||
.case-layout {
|
||||
grid-template-columns: 1fr;
|
||||
gap: 22px;
|
||||
}
|
||||
.case-filter {
|
||||
display: flex;
|
||||
overflow-x: auto;
|
||||
padding-bottom: 4px;
|
||||
}
|
||||
.case-filter-btn {
|
||||
white-space: nowrap;
|
||||
min-width: 136px;
|
||||
}
|
||||
.contact-card {
|
||||
padding: 24px 18px;
|
||||
}
|
||||
.manager-card {
|
||||
align-items: flex-start;
|
||||
}
|
||||
.footer-inner {
|
||||
flex-direction: column;
|
||||
align-items: flex-start;
|
||||
padding: 24px 0;
|
||||
}
|
||||
}
|
||||
|
||||
@media (max-width: 540px) {
|
||||
.brand-copy strong {
|
||||
font-size: 22px;
|
||||
}
|
||||
.brand-logo {
|
||||
width: 46px;
|
||||
height: 46px;
|
||||
}
|
||||
.hero-copy h1 {
|
||||
font-size: 31px;
|
||||
}
|
||||
.section-title {
|
||||
gap: 12px;
|
||||
margin-bottom: 28px;
|
||||
}
|
||||
.title-dots {
|
||||
display: none;
|
||||
}
|
||||
.case-grid {
|
||||
grid-template-columns: 1fr;
|
||||
}
|
||||
.solution-qr-row,
|
||||
.manager-card {
|
||||
flex-direction: column;
|
||||
align-items: flex-start;
|
||||
}
|
||||
.address-row {
|
||||
justify-content: flex-start;
|
||||
font-size: 17px;
|
||||
}
|
||||
}
|
||||
10
vite.config.js
Normal file
10
vite.config.js
Normal file
@ -0,0 +1,10 @@
|
||||
import { defineConfig } from 'vite'
|
||||
import vue from '@vitejs/plugin-vue'
|
||||
|
||||
export default defineConfig({
|
||||
plugins: [vue()],
|
||||
server: {
|
||||
port: 5173,
|
||||
host: '0.0.0.0'
|
||||
}
|
||||
})
|
||||
Loading…
x
Reference in New Issue
Block a user