* {
box-sizing: border-box;
}
html,
body {
margin: 0;
min-height: 100%;
overflow-x: hidden;
overflow-y: auto;
}
body {
font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", Arial, sans-serif;
background-color: #EEF4FF;
background-image: radial-gradient(circle at 10% 8%, rgba(138,124,255,0.16), transparent 28%), radial-gradient(circle at 90% 14%, rgba(167,194,255,0.22), transparent 26%), linear-gradient(180deg, rgba(255,255,255,0.76), rgba(238,244,255,0.9)), url("bg.webp");
background-size: auto, auto, auto, cover;
background-attachment: fixed;
color: #35405A;
padding-top: 72px;
line-height: 1.75;
}
a {
color: inherit;
}
img {
display: block;
}
.site-header {
position: fixed;
top: 0;
left: 0;
width: 100%;
z-index: 99999;
background: rgba(255,255,255,0.94);
backdrop-filter: blur(12px);
box-shadow: 0 8px 24px rgba(126,140,255,0.16);
}
.header-inner {
max-width: 1280px;
margin: 0 auto;
min-height: 72px;
display: flex;
align-items: center;
justify-content: space-between;
gap: 18px;
overflow: visible;
padding: 0 20px;
}
.brand-logo,
.drawer-logo,
.footer-logo {
display: inline-flex;
align-items: center;
text-decoration: none;
flex-shrink: 0;
}
.brand-logo img {
height: 42px;
width: auto;
max-width: 172px;
object-fit: contain;
}
.nav-core {
display: flex;
align-items: center;
gap: 12px;
flex-wrap: nowrap;
min-width: 0;
}
.nav-core a {
white-space: nowrap;
color: #35405A;
text-decoration: none;
font-size: 15px;
font-weight: 650;
padding: 8px 9px;
border-radius: 999px;
transition: color .2s ease, background .2s ease;
}
.nav-core a:hover,
.nav-core a.active {
color: #8A7CFF;
background: rgba(138,124,255,0.09);
}
.header-actions {
display: flex;
align-items: center;
gap: 12px;
flex-shrink: 0;
}
.more-menu {
position: relative;
flex-shrink: 0;
}
.more-toggle,
.mobile-menu-btn,
.drawer-close,
.slider-arrow,
.slider-dot {
border: 0;
font: inherit;
cursor: pointer;
}
.more-toggle {
white-space: nowrap;
background: #F4F8FF;
color: #35405A;
border: 1px solid rgba(126,140,255,0.18);
padding: 9px 14px;
border-radius: 999px;
font-weight: 650;
}
.more-dropdown {
position: absolute;
right: 0;
top: calc(100% + 12px);
min-width: 220px;
background: #FFFFFF;
border: 1px solid rgba(126,140,255,0.18);
box-shadow: 0 18px 42px rgba(126,140,255,0.18);
z-index: 100000;
border-radius: 18px;
padding: 10px;
display: none;
grid-template-columns: 1fr;
gap: 2px;
}
.more-menu:hover .more-dropdown,
.more-menu.show .more-dropdown {
display: grid;
}
.more-dropdown a {
text-decoration: none;
color: #35405A;
font-size: 14px;
font-weight: 600;
padding: 9px 12px;
border-radius: 12px;
white-space: nowrap;
}
.more-dropdown a:hover,
.more-dropdown a.active {
background: #F2F0FF;
color: #8A7CFF;
}
.main-btn {
display: inline-flex;
align-items: center;
justify-content: center;
background: linear-gradient(135deg, #A7C2FF 0%, #9D91FF 55%, #8B7BFF 100%);
color: #FFFFFF;
text-decoration: none;
border-radius: 999px;
padding: 10px 22px;
font-weight: 800;
box-shadow: 0 12px 28px rgba(126,140,255,0.28);
transition: transform .2s ease, box-shadow .2s ease;
white-space: nowrap;
}
.main-btn:hover {
transform: translateY(-2px);
box-shadow: 0 16px 34px rgba(126,140,255,0.34);
}
.header-btn {
padding: 9px 20px;
}
.mobile-menu-btn {
display: none;
width: 42px;
height: 42px;
border-radius: 999px;
background: #F4F8FF;
border: 1px solid rgba(126,140,255,0.18);
flex-shrink: 0;
}
.mobile-menu-btn span {
display: block;
width: 18px;
height: 2px;
background: #8A7CFF;
margin: 4px auto;
border-radius: 4px;
}
.drawer-mask {
position: fixed;
inset: 0;
background: rgba(39,48,74,0.36);
z-index: 100000;
}
.mobile-drawer {
position: fixed;
top: 0;
left: 0;
width: min(84vw, 340px);
height: 100vh;
background: #FFFFFF;
z-index: 100000;
transform: translateX(-105%);
transition: transform .25s ease;
box-shadow: 18px 0 44px rgba(39,48,74,0.2);
padding: 18px;
overflow-y: auto;
}
.mobile-drawer.open {
transform: translateX(0);
}
.drawer-head {
display: flex;
align-items: center;
justify-content: space-between;
gap: 12px;
padding-bottom: 14px;
border-bottom: 1px solid rgba(126,140,255,0.14);
}
.drawer-logo img {
height: 42px;
width: auto;
max-width: 170px;
object-fit: contain;
}
.drawer-close {
width: 38px;
height: 38px;
border-radius: 999px;
background: #F2F0FF;
color: #8A7CFF;
font-size: 25px;
line-height: 1;
}
.drawer-nav {
display: grid;
gap: 8px;
padding: 16px 0 34px;
}
.drawer-nav a {
text-decoration: none;
font-weight: 700;
color: #35405A;
background: #F4F8FF;
border: 1px solid rgba(126,140,255,0.12);
border-radius: 14px;
padding: 11px 14px;
}
.drawer-nav a.active,
.drawer-nav a:hover {
color: #8A7CFF;
background: #F2F0FF;
}
.mobile-quick {
display: none;
}
main {
position: relative;
z-index: 1;
}
.container,
.page-shell {
max-width: 1280px;
margin: 0 auto;
padding: 0 20px;
}
.banner-slider {
max-width: 1280px;
margin: 24px auto 30px;
border-radius: 18px;
background: #FFFFFF;
box-shadow: 0 14px 36px rgba(126,140,255,0.16);
overflow: hidden;
position: relative;
z-index: 1;
}
.slides {
position: relative;
width: 100%;
aspect-ratio: 16 / 6.25;
background: #EEF4FF;
}
.slide {
position: absolute;
inset: 0;
opacity: 0;
pointer-events: none;
transition: opacity .45s ease;
}
.slide.active {
opacity: 1;
pointer-events: auto;
}
.banner-slider img {
width: 100%;
height: 100%;
object-fit: contain;
background: #EEF4FF;
}
.slider-arrow {
position: absolute;
top: 50%;
transform: translateY(-50%);
width: 42px;
height: 42px;
border-radius: 50%;
background: rgba(255,255,255,0.86);
color: #8A7CFF;
font-size: 26px;
box-shadow: 0 8px 22px rgba(126,140,255,0.18);
z-index: 2;
}
.slider-prev { left: 14px; }
.slider-next { right: 14px; }
.slider-dots {
position: absolute;
left: 0;
right: 0;
bottom: 13px;
display: flex;
justify-content: center;
gap: 9px;
z-index: 2;
}
.slider-dot {
width: 10px;
height: 10px;
border-radius: 50%;
background: rgba(255,255,255,0.75);
box-shadow: 0 2px 8px rgba(53,64,90,0.16);
padding: 0;
}
.slider-dot.active {
width: 24px;
border-radius: 999px;
background: #8A7CFF;
}
.notice-strip,
.card,
.zone-card,
.info-card,
.review-card,
.faq-card,
.page-hero,
.rich-card {
background: rgba(255,255,255,0.92);
border: 1px solid rgba(126,140,255,0.18);
box-shadow: 0 14px 36px rgba(126,140,255,0.16);
border-radius: 22px;
}
.notice-strip {
display: flex;
align-items: center;
justify-content: space-between;
gap: 18px;
padding: 16px 20px;
margin: 0 auto 26px;
}
.notice-strip p {
margin: 0;
color: #68728A;
font-size: 15px;
}
.section {
margin: 26px 0;
}
.section-head {
display: flex;
align-items: flex-end;
justify-content: space-between;
gap: 18px;
margin-bottom: 16px;
}
h1,
h2,
h3,
.section-title {
color: #7E8CFF;
line-height: 1.28;
margin: 0 0 12px;
}
h1 {
font-size: clamp(30px, 5vw, 52px);
}
h2,
.section-title {
font-size: clamp(24px, 3vw, 36px);
}
h3 {
font-size: 20px;
}
p {
margin: 0 0 12px;
color: #68728A;
}
.eyebrow {
display: inline-flex;
align-items: center;
gap: 6px;
color: #8A7CFF;
background: #F2F0FF;
border: 1px solid rgba(126,140,255,0.16);
padding: 5px 11px;
border-radius: 999px;
font-weight: 800;
font-size: 13px;
margin-bottom: 12px;
}
.text-link {
color: #8A7CFF;
font-weight: 800;
text-decoration: none;
}
.text-link:hover {
text-decoration: underline;
}
.split {
display: grid;
grid-template-columns: minmax(0,1.04fr) minmax(320px,.86fr);
gap: 22px;
align-items: center;
}
.card,
.rich-card,
.info-card,
.zone-card,
.review-card,
.faq-card {
padding: 24px;
}
.content-img,
.zone-card img,
.app-section img {
max-width: 100%;
height: auto;
}
.image-frame {
background: linear-gradient(145deg, #F4F8FF, #F2F0FF);
border-radius: 20px;
padding: 12px;
border: 1px solid rgba(126,140,255,0.14);
}
.image-frame img,
.page-hero img,
.zone-card img,
.feature-img {
width: 100%;
max-height: 360px;
object-fit: contain;
border-radius: 16px;
background: #F4F8FF;
}
.channel-grid {
display: grid;
grid-template-columns: repeat(4, minmax(0, 1fr));
gap: 16px;
}
.channel-card {
min-height: 198px;
display: flex;
flex-direction: column;
justify-content: space-between;
}
.two-grid {
display: grid;
grid-template-columns: repeat(2, minmax(0, 1fr));
gap: 18px;
}
.three-grid {
display: grid;
grid-template-columns: repeat(3, minmax(0, 1fr));
gap: 18px;
}
.info-list {
display: grid;
gap: 12px;
margin: 16px 0 0;
padding: 0;
list-style: none;
}
.info-list li {
background: #F4F8FF;
border: 1px solid rgba(126,140,255,0.12);
border-radius: 14px;
padding: 12px 14px;
color: #68728A;
}
.review-grid {
display: grid;
grid-template-columns: repeat(3, minmax(0, 1fr));
gap: 16px;
}
.review-card strong {
display: block;
color: #8A7CFF;
margin-bottom: 8px;
}
.faq-list {
display: grid;
gap: 14px;
}
.faq-card h3 {
margin-bottom: 8px;
}
.page-hero {
display: grid;
grid-template-columns: minmax(0,1fr) minmax(280px,.75fr);
gap: 24px;
align-items: center;
padding: 34px;
margin: 28px 0;
}
.page-hero .main-btn {
margin-top: 10px;
}
.content-grid {
display: grid;
grid-template-columns: minmax(0,1fr) minmax(300px,.44fr);
gap: 18px;
align-items: start;
margin-bottom: 24px;
}
.prose-card p {
font-size: 16px;
}
.side-stack {
display: grid;
gap: 18px;
}
.tag-list {
display: flex;
flex-wrap: wrap;
gap: 10px;
margin-top: 14px;
}
.tag-list span {
background: #F2F0FF;
color: #8A7CFF;
border: 1px solid rgba(126,140,255,0.16);
border-radius: 999px;
padding: 6px 11px;
font-weight: 750;
font-size: 13px;
}
.site-footer {
background: #27304A;
color: #EEF4FF;
margin-top: 44px;
padding: 42px 20px 28px;
}
.footer-inner {
max-width: 1280px;
margin: 0 auto;
display: grid;
grid-template-columns: minmax(0,.9fr) minmax(0,1.4fr);
gap: 34px;
}
.footer-brand p,
.footer-note {
color: #DDE6FF;
}
.footer-logo img {
height: 46px;
width: auto;
max-width: 190px;
object-fit: contain;
margin-bottom: 12px;
}
.footer-links {
display: grid;
grid-template-columns: repeat(3, minmax(0, 1fr));
gap: 18px;
}
.footer-links h3 {
color: #EEF4FF;
font-size: 17px;
}
.footer-links a {
display: block;
color: #DDE6FF;
text-decoration: none;
margin: 7px 0;
}
.footer-links a:hover {
color: #FFFFFF;
}
.footer-note {
max-width: 1280px;
margin: 28px auto 0;
padding-top: 18px;
border-top: 1px solid rgba(238,244,255,0.16);
font-size: 14px;
}
.drawer-open {
overflow: hidden;
}
@media (max-width: 1180px) {
.nav-core {
gap: 6px;
}
.nav-core a {
font-size: 14px;
padding: 8px 7px;
}
.channel-grid {
grid-template-columns: repeat(3, minmax(0, 1fr));
}
}
@media (max-width: 1024px) {
.nav-core {
display: none;
}
.mobile-menu-btn {
display: inline-block;
}
.header-inner {
justify-content: space-between;
}
.brand-logo {
position: absolute;
left: 50%;
transform: translateX(-50%);
}
.more-menu {
display: none;
}
.channel-grid,
.review-grid {
grid-template-columns: repeat(2, minmax(0, 1fr));
}
.split,
.page-hero,
.content-grid {
grid-template-columns: 1fr;
}
.footer-inner {
grid-template-columns: 1fr;
}
}
@media (max-width: 768px) {
body {
padding-top: 64px;
padding-bottom: 72px;
background-attachment: scroll;
}
.site-header {
position: fixed;
top: 0;
left: 0;
width: 100%;
z-index: 99999;
}
.header-inner {
min-height: 64px;
padding: 0 12px;
gap: 8px;
}
.mobile-drawer,
.drawer-mask {
z-index: 100000;
}
.brand-logo img {
height: 36px;
max-width: 142px;
}
.header-btn {
padding: 8px 14px;
font-size: 14px;
}
.banner-slider {
margin: 14px 12px 20px;
border-radius: 16px;
}
.slides {
aspect-ratio: 16 / 8.5;
}
.slider-arrow {
width: 34px;
height: 34px;
font-size: 22px;
}
.slider-prev { left: 8px; }
.slider-next { right: 8px; }
.container,
.page-shell {
padding: 0 12px;
}
.notice-strip,
.section-head {
flex-direction: column;
align-items: flex-start;
}
.channel-grid,
.two-grid,
.three-grid,
.review-grid,
.footer-links {
grid-template-columns: 1fr;
}
.card,
.rich-card,
.info-card,
.zone-card,
.review-card,
.faq-card,
.page-hero {
padding: 18px;
border-radius: 18px;
}
.mobile-quick {
position: fixed;
left: 12px;
right: 12px;
bottom: 10px;
display: grid;
grid-template-columns: repeat(4,1fr);
gap: 8px;
background: rgba(255,255,255,0.96);
border: 1px solid rgba(126,140,255,0.18);
box-shadow: 0 12px 32px rgba(126,140,255,0.18);
border-radius: 18px;
padding: 8px;
z-index: 99998;
}
.mobile-quick a {
text-align: center;
text-decoration: none;
font-size: 13px;
font-weight: 800;
color: #35405A;
border-radius: 12px;
padding: 8px 4px;
background: #F4F8FF;
}
.mobile-quick a.active,
.mobile-quick a:hover {
color: #8A7CFF;
background: #F2F0FF;
}
}
@media (max-width: 380px) {
.brand-logo img {
height: 32px;
max-width: 120px;
}
.header-btn {
padding: 7px 11px;
}
.mobile-menu-btn {
width: 38px;
height: 38px;
}
}
