* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
body {
font-family: -apple-system, BlinkMacSystemFont, system-ui, "PingFang SC", "Microsoft YaHei", sans-serif;
color: #111827;
background-color: #f3f4f6;
line-height: 1.6;
scroll-behavior: smooth;
}
a {
color: inherit;
text-decoration: none;
}
.container {
max-width: 1120px;
margin: 0 auto;
padding: 0 16px;
}
.site-header {
position: sticky;
top: 0;
z-index: 10;
background-color: rgba(255, 255, 255, 0.96);
backdrop-filter: blur(12px);
border-bottom: 1px solid rgba(229, 231, 235, 0.8);
box-shadow: 0 10px 25px rgba(15, 23, 42, 0.18);
}
.header-inner {
display: flex;
align-items: center;
justify-content: space-between;
height: 64px;
}
.logo-block {
display: flex;
flex-direction: column;
}
.logo-text-main {
font-size: 16px;
font-weight: 600;
color: #111827;
}
.logo-text-sub {
font-size: 12px;
color: #6b7280;
}
.nav-toggle {
width: auto;
height: 30px;
margin-left: auto;
padding: 0 10px;
border-radius: 999px;
border: 1px solid #e5e7eb;
background: #ffffff;
display: none;
align-items: center;
justify-content: center;
cursor: pointer;
font-size: 13px;
color: #111827;
}
.main-nav {
display: flex;
gap: 20px;
font-size: 14px;
align-items: center;
}
.main-nav a {
padding: 4px 0;
border-bottom: 2px solid transparent;
position: relative;
transition: border-color 0.25s ease, color 0.25s ease;
}
.main-nav a:hover {
color: #2563eb;
border-color: transparent;
}
.main-nav a::after {
content: "";
position: absolute;
left: 0;
bottom: -2px;
width: 0;
height: 2px;
border-radius: 999px;
background: linear-gradient(90deg, #38bdf8, #6366f1, #ec4899);
transition: width 0.25s ease;
}
.main-nav a:hover::after {
width: 100%;
}
.hero {
padding: 72px 0 56px;
background: radial-gradient(circle at top left, #eff6ff, #f3f4f6);
color: #111827;
}
.hero-inner {
display: grid;
grid-template-columns: minmax(0, 2.2fr) minmax(0, 1.3fr);
gap: 40px;
align-items: center;
}
.hero-text h1 {
font-size: 32px;
line-height: 1.35;
margin-bottom: 20px;
background-image: linear-gradient(90deg, #38bdf8, #a855f7, #f97316);
-webkit-background-clip: text;
background-clip: text;
color: transparent;
}
.hero-text p {
font-size: 15px;
color: #4b5563;
margin-bottom: 12px;
}
.hero-meta {
margin-top: 16px;
display: flex;
flex-wrap: wrap;
gap: 8px;
}
.hero-tag {
display: inline-flex;
align-items: center;
padding: 4px 10px;
border-radius: 999px;
background: linear-gradient(120deg, rgba(56, 189, 248, 0.16), rgba(129, 140, 248, 0.24));
color: #03346f;
font-size: 12px;
border: 1px solid rgba(129, 140, 248, 0.7);
}
.hero-side {
border-radius: 16px;
background-color: #111827;
color: #f9fafb;
padding: 24px 22px;
display: flex;
flex-direction: column;
gap: 8px;
box-shadow: 0 18px 40px rgba(15, 23, 42, 0.35);
}
.hero-domain {
font-size: 13px;
color: #9ca3af;
}
.hero-domain-main {
font-size: 22px;
font-weight: 600;
letter-spacing: 0.03em;
}
.hero-hint {
font-size: 13px;
color: #e5e7eb;
margin-top: 8px;
}
.section {
padding: 56px 0;
background-color: #f9fafb;
}
.section-alt {
background-color: #ffffff;
}
.section h2 {
font-size: 24px;
margin: 30px 0 16px;
display: inline-block;
background-image: linear-gradient(90deg, #2563eb, #7c3aed);
-webkit-background-clip: text;
background-clip: text;
color: transparent;
position: relative;
}
.section h2::after {
content: "";
display: block;
margin-top: 6px;
width: 64px;
height: 3px;
border-radius: 999px;
background-image: linear-gradient(90deg, #38bdf8, #a855f7, #f97316);
}
.section p {
font-size: 15px;
color: #4b5563;
margin-bottom: 10px;
}
.project-grid {
display: grid;
grid-template-columns: repeat(3, minmax(0, 1fr));
gap: 18px;
margin-top: 12px;
}
.project-card {
background-color: #ffffff;
border-radius: 12px;
padding: 18px 16px;
border: 1px solid #e5e7eb;
box-shadow: 0 8px 18px rgba(15, 23, 42, 0.04);
position: relative;
overflow: hidden;
transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}
.project-card::before {
content: "";
position: absolute;
inset: -1px;
border-radius: inherit;
background: linear-gradient(135deg, rgba(56, 189, 248, 0.7), rgba(129, 140, 248, 0.7));
opacity: 0;
transition: opacity 0.22s ease;
z-index: 0;
}
.project-card > * {
position: relative;
z-index: 1;
}
.project-card:hover {
transform: translateY(-4px);
box-shadow: 0 14px 30px rgba(15, 23, 42, 0.14);
border-color: transparent;
}
.project-card:hover::before {
opacity: 1;
}
.project-card h3 {
font-size: 16px;
margin-bottom: 6px;
}
.project-card p {
font-size: 14px;
color: #4b5563;
}
.service-grid {
display: grid;
grid-template-columns: repeat(2, minmax(0, 1fr));
gap: 18px;
margin-top: 12px;
}
.service-item {
background-color: #f9fafb;
border-radius: 12px;
padding: 18px 16px;
border: 1px solid #e5e7eb;
transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease, background-color 0.22s ease;
}
.service-item h3 {
font-size: 16px;
margin-bottom: 6px;
}
.service-item p {
font-size: 14px;
color: #4b5563;
}
.service-item:hover {
transform: translateY(-3px);
box-shadow: 0 12px 26px rgba(15, 23, 42, 0.12);
border-color: rgba(129, 140, 248, 0.8);
background-color: #ffffff;
}
.ecosystem-grid {
display: grid;
grid-template-columns: repeat(2, minmax(0, 1fr));
gap: 18px;
margin-top: 12px;
}
.platform-grid {
display: grid;
grid-template-columns: repeat(3, minmax(0, 1fr));
gap: 18px;
margin-top: 12px;
}
.ecosystem-item {
background-color: #ffffff;
border-radius: 12px;
padding: 18px 16px;
border: 1px solid #e5e7eb;
transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}
.ecosystem-item h3 {
font-size: 16px;
margin-bottom: 6px;
}
.ecosystem-item p {
font-size: 14px;
color: #4b5563;
}
.ecosystem-item:hover {
transform: translateY(-3px);
box-shadow: 0 12px 26px rgba(15, 23, 42, 0.12);
border-color: rgba(56, 189, 248, 0.8);
}
.site-footer {
background-color: #111827;
color: #e5e7eb;
padding: 24px 0;
}
.footer-inner {
display: flex;
flex-direction: column;
gap: 4px;
font-size: 13px;
text-align: center;
}
.footer-copy {
margin-top: 4px;
color: #9ca3af;
}
@media (max-width: 900px) {
.header-inner {
flex-direction: column;
align-items: flex-start;
height: auto;
padding: 10px 0;
margin:0 30px;
gap: 8px;
}
.main-nav {
display: none;
width: 100%;
margin-top: 6px;
flex-direction: column;
align-items: flex-start;
gap: 8px;
padding: 8px 4px 10px;
border-radius: 10px;
background-color: #ffffff;
box-shadow: 0 10px 25px rgba(15, 23, 42, 0.1);
}
.main-nav a {
padding: 4px 2px;
}
.hero-inner {
grid-template-columns: minmax(0, 1fr);
}
.project-grid {
grid-template-columns: repeat(2, minmax(0, 1fr));
}
.ecosystem-grid {
grid-template-columns: repeat(2, minmax(0, 1fr));
}
.platform-grid {
grid-template-columns: repeat(2, minmax(0, 1fr));
}
.nav-toggle {
display: inline-flex;
}
body.nav-open .main-nav {
display: flex;
}
}
@media (max-width: 640px) {
.hero {
padding-top: 56px;
}
.hero-text h1 {
font-size: 24px;
}
.project-grid {
grid-template-columns: minmax(0, 1fr);
}
.service-grid {
grid-template-columns: minmax(0, 1fr);
}
.ecosystem-grid {
grid-template-columns: minmax(0, 1fr);
}
.platform-grid {
grid-template-columns: minmax(0, 1fr);
}
}
