:root {
    /* 统一配色方案 - 现代紫色系 */
    --primaryColor: #8b5cf6;
    --primaryColorRgb: 139, 92, 246;
    --secondaryColor: #06b6d4;
    --accentColor: #f59e0b;
    --bgDark: #1a1a1a;
    --bgDarker: #0f0f0f;
    --bgCard: rgba(30, 30, 30, 0.95);
    --bgCardSolid: rgba(30, 30, 30, 1);
    --bgCardLight: rgba(30, 30, 30, 0.9);
    --textPrimary: #ffffff;
    --textPrimaryLight: rgba(255, 255, 255, 0.95);
    --textSecondary: #b0b0b0;
    --textSecondaryLight: rgba(176, 176, 176, 0.7);
    --successColor: #10b981;
    --dangerColor: #ef4444;
    --warningColor: #f59e0b;
    --borderColor: rgba(139, 92, 246, 0.2);
    --shadowColor: rgba(139, 92, 246, 0.15);
    --hoverColor: rgba(139, 92, 246, 0.1);
    --overlayDark: rgba(0, 0, 0, 0.5);
    --overlayDarker: rgba(0, 0, 0, 0.7);
    --primaryShadowLight: rgba(139, 92, 246, 0.1);
    --primaryShadowMedium: rgba(139, 92, 246, 0.2);
    --primaryShadowStrong: rgba(139, 92, 246, 0.3);
    --primaryShadowStronger: rgba(139, 92, 246, 0.4);
    --primaryGlowLight: rgba(139, 92, 246, 0.35);
    --primaryGlowMedium: rgba(139, 92, 246, 0.55);
    --primaryGlowStrong: rgba(139, 92, 246, 0.6);
    --shadowBlackLight: rgba(0, 0, 0, 0.05);
    --shadowBlackMedium: rgba(0, 0, 0, 0.08);
    --shadowBlackStrong: rgba(0, 0, 0, 0.12);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* 移动端优先设计 */
body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Helvetica Neue', Arial, sans-serif;
    background-color: var(--bgDarker);
    color: var(--textPrimary);
    line-height: 1.6;
    overflow-x: hidden;
    font-size: 14px;
}

@media (min-width: 769px) {
    body {
        font-size: 16px;
    }
}

/* 背景样式 */
.mainBackground {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--bgDarker);
    background-image:
        linear-gradient(var(--borderColor) 1px, transparent 1px),
        linear-gradient(90deg, var(--borderColor) 1px, transparent 1px);
    background-size: 30px 30px;
    background-position: 0 0;
    z-index: -1;
    opacity: 0.3;
}

@media (min-width: 769px) {
    .mainBackground {
        background-size: 40px 40px;
    }
}

/* 导航栏 */
nav {
    background: var(--bgCard);
    backdrop-filter: blur(10px);
    padding: 0.625rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid var(--borderColor);
    box-shadow: 0 2px 10px var(--shadowColor);
}

@media (min-width: 769px) {
    nav {
        padding: 0.75rem 0;
    }
}

.headerContainer {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 0.75rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

@media (min-width: 769px) {
    .headerContainer {
        padding: 0 1rem;
    }
}

.headerLogo {
    font-size: 1rem;
    font-weight: 600;
    color: var(--primaryColor);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.headerLogo img {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: 2px solid var(--primaryColor);
}

@media (min-width: 769px) {
    .headerLogo {
        font-size: 1.25rem;
    }
    
    .headerLogo img {
        width: 36px;
        height: 36px;
    }
}

.headerMenu {
    display: flex;
    gap: 0.75rem;
    list-style: none;
    font-size: 0.875rem;
}

@media (min-width: 769px) {
    .headerMenu {
        gap: 1.5rem;
        font-size: 1rem;
    }
}

.headerMenu a {
    color: var(--textPrimary);
    text-decoration: none;
    transition: color 0.3s;
    position: relative;
    padding: 0.25rem 0;
}

.headerMenu a:hover {
    color: var(--primaryColor);
}

.headerMenu a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primaryColor);
    transition: width 0.3s;
}

.headerMenu a:hover::after {
    width: 100%;
}

/* 容器 */
.contentContainer {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 0.75rem;
}

@media (min-width: 769px) {
    .contentContainer {
        padding: 0 1rem;
    }
}

/* 主横幅区域 */
.welcomeArea {
    padding: 2rem 0 1.5rem;
    text-align: center;
    position: relative;
}

@media (min-width: 769px) {
    .welcomeArea {
        padding: 3rem 0 2rem;
    }
}

.welcomeAvatar {
    width: 100px;
    height: 100px;
    margin: 0 auto 1rem;
    border-radius: 50%;
    border: 3px solid var(--primaryColor);
    display: block;
}

@media (min-width: 769px) {
    .welcomeAvatar {
        width: 120px;
        height: 120px;
        margin-bottom: 1.5rem;
    }
}

.welcomeArea h1 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--primaryColor);
    font-weight: 700;
}

@media (min-width: 769px) {
    .welcomeArea h1 {
        font-size: 2rem;
    }
}

.welcomeArea p {
    font-size: 0.875rem;
    color: var(--textSecondary);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

@media (min-width: 769px) {
    .welcomeArea p {
        font-size: 1rem;
        margin-bottom: 2rem;
    }
}

/* 搜索输入区域 */
.searchContainer {
    max-width: 100%;
    margin: 0 auto;
    position: relative;
    padding: 0.5rem 0;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

@media (min-width: 769px) {
    .searchContainer {
        flex-direction: row;
        gap: 0;
    }
}

.searchField {
    width: 100%;
    padding: 1rem 1.25rem;
    font-size: 1rem;
    background: var(--bgCardLight);
    border: 2px solid var(--primaryColor);
    border-radius: 12px;
    color: var(--textPrimary);
    outline: none;
    transition: all 0.3s ease;
    box-shadow: 0 0 0 2px var(--primaryShadowStrong), 0 0 20px var(--primaryShadowStronger);
    font-weight: 500;
}

@media (min-width: 769px) {
    .searchField {
        padding: 1.25rem 1.5rem;
        font-size: 1.125rem;
        border-width: 3px;
        box-shadow:
            0 0 0 2px var(--primaryShadowStrong),
            0 0 20px var(--primaryShadowStronger),
            0 0 40px var(--primaryShadowMedium),
            inset 0 0 20px var(--primaryShadowLight);
    }
}

.searchField::placeholder {
    color: var(--textSecondaryLight);
    font-weight: 400;
}

.searchField:focus {
    border-color: var(--primaryColor);
    background: var(--bgCardSolid);
    box-shadow: 0 0 0 3px var(--primaryShadowStronger), 0 0 30px var(--primaryGlowStrong);
    transform: translateY(-2px);
}

@media (min-width: 769px) {
    .searchField:focus {
        box-shadow:
            0 0 0 3px var(--primaryShadowStronger),
            0 0 30px var(--primaryGlowStrong),
            0 0 60px var(--primaryShadowStrong),
            inset 0 0 30px var(--primaryShadowLight);
    }
}

.searchField:hover {
    border-color: var(--primaryColor);
    box-shadow: 0 0 0 2px var(--primaryShadowStronger), 0 0 25px var(--primaryGlowMedium);
}

@media (min-width: 769px) {
    .searchField:hover {
        box-shadow:
            0 0 0 2px var(--primaryShadowStronger),
            0 0 25px var(--primaryGlowMedium),
            0 0 50px var(--primaryShadowStrong),
            inset 0 0 25px var(--primaryShadowLight);
    }
}

.searchButton {
    width: 100%;
    padding: 0.875rem 1.5rem;
    background: var(--primaryColor);
    border: none;
    border-radius: 8px;
    color: var(--textPrimary);
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    font-size: 0.875rem;
}

@media (min-width: 769px) {
    .searchButton {
        position: absolute;
        right: 8px;
        top: 50%;
        transform: translateY(-50%);
        width: auto;
        padding: 0.75rem 1.5rem;
        font-size: 1rem;
    }
}

.searchButton:hover {
    background: var(--secondaryColor);
    transform: translateY(-1px);
}

@media (min-width: 769px) {
    .searchButton:hover {
        transform: translateY(-50%) translateY(-1px);
    }
}

/* 服务展示区域 */
.serviceArea {
    padding: 1.5rem 0;
}

@media (min-width: 769px) {
    .serviceArea {
        padding: 2rem 0;
    }
}

.serviceGrid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
    margin-top: 1.5rem;
}

@media (min-width: 769px) {
    .serviceGrid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
}

@media (min-width: 1024px) {
    .serviceGrid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.serviceCard {
    background: var(--bgCard);
    padding: 1.25rem;
    border-radius: 12px;
    border: 1px solid var(--borderColor);
    transition: all 0.3s;
    position: relative;
}

@media (min-width: 769px) {
    .serviceCard {
        padding: 1.5rem;
    }
}

.serviceCard:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px var(--shadowColor);
    border-color: var(--primaryColor);
    background: var(--bgCardSolid);
}

.serviceIcon {
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.serviceIcon svg {
    width: 36px;
    height: 36px;
    stroke: var(--primaryColor);
    fill: none;
    stroke-width: 2;
    transition: all 0.3s;
    filter: drop-shadow(0 0 10px var(--primaryGlowLight));
}

@media (min-width: 769px) {
    .serviceIcon svg {
        width: 40px;
        height: 40px;
    }
}

.serviceCard:hover .serviceIcon svg {
    stroke: var(--secondaryColor);
    transform: scale(1.05);
    filter: drop-shadow(0 0 14px var(--primaryGlowMedium));
}

.serviceIcon::after {
    content: '';
    position: absolute;
    bottom: -6px;
    left: 50%;
    transform: translateX(-50%);
    width: 54px;
    height: 3px;
    border-radius: 999px;
    background: var(--primaryColor);
    box-shadow: 0 0 12px var(--primaryGlowStrong);
    opacity: 0.9;
}

.serviceCard h3 {
    font-size: 1.125rem;
    margin-bottom: 0.75rem;
    color: var(--primaryColor);
    font-weight: 600;
}

@media (min-width: 769px) {
    .serviceCard h3 {
        font-size: 1.25rem;
    }
}

.serviceCard p {
    color: var(--textSecondary);
    font-size: 0.875rem;
    line-height: 1.6;
}

@media (min-width: 769px) {
    .serviceCard p {
        font-size: 0.9375rem;
    }
}

/* 数据统计区域 */
.dataArea {
    padding: 1.5rem 0;
    background: var(--bgDark);
}

@media (min-width: 769px) {
    .dataArea {
        padding: 2rem 0;
    }
}

.areaTitle {
    text-align: center;
    font-size: 1.5rem;
    margin-bottom: 0.75rem;
    color: var(--primaryColor);
    font-weight: 700;
}

@media (min-width: 769px) {
    .areaTitle {
        font-size: 1.75rem;
    }
}

.areaSubtitle {
    text-align: center;
    color: var(--textSecondary);
    margin-bottom: 1.25rem;
    font-size: 0.875rem;
}

@media (min-width: 769px) {
    .areaSubtitle {
        font-size: 0.9375rem;
        margin-bottom: 1.5rem;
    }
}

.dataGrid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin-top: 1.5rem;
}

@media (min-width: 769px) {
    .dataGrid {
        grid-template-columns: repeat(3, 1fr);
        gap: 1.25rem;
    }
}

@media (min-width: 1024px) {
    .dataGrid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.dataCard {
    background: var(--bgCard);
    padding: 1.25rem 0.75rem;
    border-radius: 12px;
    text-align: center;
    border: 1px solid var(--borderColor);
    transition: all 0.3s;
    position: relative;
}

@media (min-width: 769px) {
    .dataCard {
        padding: 1.5rem 1rem;
    }
}

.dataCard:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px var(--shadowColor);
    border-color: var(--primaryColor);
}

.dataNumber {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--primaryColor);
    margin-bottom: 0.5rem;
    line-height: 1;
}

@media (min-width: 769px) {
    .dataNumber {
        font-size: 2rem;
    }
}

.dataLabel {
    color: var(--textSecondary);
    font-size: 0.8125rem;
    line-height: 1.4;
    font-weight: 500;
}

@media (min-width: 769px) {
    .dataLabel {
        font-size: 0.875rem;
    }
}

.dataCard:hover .dataNumber {
    color: var(--secondaryColor);
}

.dataCard:hover .dataLabel {
    color: var(--textPrimary);
}

/* 示例展示区域 */
.exampleArea {
    padding: 1.5rem 0;
}

@media (min-width: 769px) {
    .exampleArea {
        padding: 2rem 0;
    }
}

.exampleGrid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-top: 1.5rem;
}

@media (min-width: 769px) {
    .exampleGrid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .exampleGrid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.listContainer {
    background: var(--bgCard);
    border-radius: 12px;
    padding: 1.25rem;
    border: 1px solid var(--borderColor);
    overflow: hidden;
}

@media (min-width: 769px) {
    .listContainer {
        padding: 1.5rem;
    }
}

.listHeader {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 0;
    position: relative;
    z-index: 10;
}

.listHeader thead {
    position: sticky;
    top: 0;
    z-index: 10;
}

.listBody {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.875rem;
}

@media (min-width: 769px) {
    .listBody {
        font-size: 0.9375rem;
    }
}

.listScrollContainer {
    max-height: 350px;
    overflow: hidden;
    position: relative;
    mask-image: linear-gradient(
        to bottom,
        transparent 0%,
        black 10%,
        black 90%,
        transparent 100%
    );
    -webkit-mask-image: linear-gradient(
        to bottom,
        transparent 0%,
        black 10%,
        black 90%,
        transparent 100%
    );
}

@media (min-width: 769px) {
    .listScrollContainer {
        max-height: 400px;
    }
}

.listScrollContent {
    animation: listScroll 15s linear infinite;
    will-change: transform;
}

@keyframes listScroll {
    0% {
        transform: translateY(0);
    }
    100% {
        transform: translateY(-50%);
    }
}

.listScrollContent:hover {
    animation-play-state: paused;
}

.listTitle {
    font-size: 1.125rem;
    margin-bottom: 1rem;
    color: var(--primaryColor);
    text-align: center;
    font-weight: 600;
}

@media (min-width: 769px) {
    .listTitle {
        font-size: 1.25rem;
        margin-bottom: 1.25rem;
    }
}

table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.875rem;
}

@media (min-width: 769px) {
    table {
        font-size: 0.9375rem;
    }
}

/* 确保表头和表体列宽对齐 */
.listHeader th,
.listBody td {
    width: 25%;
    padding: 0.625rem;
    text-align: left;
}

@media (min-width: 769px) {
    .listHeader th,
    .listBody td {
        padding: 0.75rem;
    }
}

th {
    background: var(--hoverColor);
    padding: 0.625rem;
    text-align: left;
    color: var(--primaryColor);
    border-bottom: 2px solid var(--primaryColor);
    font-weight: 600;
}

@media (min-width: 769px) {
    th {
        padding: 0.75rem;
    }
}

td {
    padding: 0.625rem;
    border-bottom: 1px solid var(--borderColor);
}

@media (min-width: 769px) {
    td {
        padding: 0.75rem;
    }
}

tr:hover {
    background: var(--hoverColor);
}

.listPosition {
    font-weight: 600;
    color: var(--secondaryColor);
}

.listCode {
    font-weight: 600;
    color: var(--primaryColor);
}

.listValue {
    font-weight: 600;
    color: var(--successColor);
}

/* 图库展示区域 */
.galleryArea {
    padding: 2.5rem 0;
    background: var(--bgDark);
}

@media (min-width: 769px) {
    .galleryArea {
        padding: 4rem 0;
    }
}

.galleryGrid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-top: 2.5rem;
}

@media (min-width: 769px) {
    .galleryGrid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2.5rem;
    }
}

@media (min-width: 1024px) {
    .galleryGrid {
        gap: 3rem;
    }
}

.galleryCard {
    background: var(--bgCard);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 2px 8px var(--shadowBlackMedium), 0 1px 3px var(--shadowBlackLight);
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid var(--borderColor);
    cursor: pointer;
}

@media (min-width: 769px) {
    .galleryCard {
        border-radius: 20px;
    }
}

.galleryCard:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 40px var(--shadowBlackStrong), 0 8px 16px var(--shadowBlackMedium);
    border-color: var(--primaryColor);
}

.galleryImageWrapper {
    position: relative;
    width: 100%;
    padding-top: 62.5%;
    overflow: hidden;
    background: var(--bgDarker);
}

.galleryImage {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
    will-change: transform;
}

.galleryCard:hover .galleryImage {
    transform: scale(1.08);
}

.galleryOverlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--overlayDark);
    display: flex;
    align-items: flex-end;
    padding: 1.75rem;
    opacity: 1;
    transition: background 0.3s ease;
}

@media (min-width: 769px) {
    .galleryOverlay {
        padding: 2.5rem;
    }
}

.galleryCard:hover .galleryOverlay {
    background: var(--overlayDarker);
}

.galleryContent {
    width: 100%;
    color: var(--textPrimary);
    transform: translateY(0);
    transition: transform 0.3s ease;
}

.galleryCard:hover .galleryContent {
    transform: translateY(-4px);
}

.galleryTitle {
    font-size: 1.375rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--textPrimary);
    letter-spacing: -0.03em;
    line-height: 1.2;
}

@media (min-width: 769px) {
    .galleryTitle {
        font-size: 1.75rem;
        margin-bottom: 0.75rem;
    }
}

.galleryDesc {
    font-size: 0.9375rem;
    line-height: 1.6;
    color: var(--textPrimaryLight);
    margin: 0;
    font-weight: 400;
}

@media (min-width: 769px) {
    .galleryDesc {
        font-size: 1rem;
    }
}

/* 详情模块区域 */
.detailArea {
    padding: 1.5rem 0;
}

@media (min-width: 769px) {
    .detailArea {
        padding: 2rem 0;
    }
}

.detailGrid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
    margin-top: 1.5rem;
}

@media (min-width: 769px) {
    .detailGrid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
}

@media (min-width: 1024px) {
    .detailGrid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.detailCard {
    background: var(--bgCard);
    padding: 1.25rem;
    border-radius: 12px;
    border: 1px solid var(--borderColor);
    position: relative;
    transition: all 0.3s;
}

@media (min-width: 769px) {
    .detailCard {
        padding: 1.5rem;
    }
}

.detailCard:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px var(--shadowColor);
    border-color: var(--secondaryColor);
}

.detailCard h3 {
    font-size: 1.125rem;
    margin-bottom: 0.75rem;
    color: var(--secondaryColor);
    font-weight: 600;
}

@media (min-width: 769px) {
    .detailCard h3 {
        font-size: 1.25rem;
    }
}

.detailCard p {
    color: var(--textSecondary);
    line-height: 1.6;
    font-size: 0.875rem;
}

@media (min-width: 769px) {
    .detailCard p {
        font-size: 0.9375rem;
    }
}

/* 行动号召区域 */
.actionArea {
    padding: 2rem 0;
    text-align: center;
    background: var(--bgDark);
}

@media (min-width: 769px) {
    .actionArea {
        padding: 3rem 0;
    }
}

.actionArea h2 {
    font-size: 1.5rem;
    margin-bottom: 0.75rem;
    color: var(--primaryColor);
    font-weight: 700;
}

@media (min-width: 769px) {
    .actionArea h2 {
        font-size: 1.75rem;
    }
}

.actionArea p {
    font-size: 0.875rem;
    color: var(--textSecondary);
    margin-bottom: 1.25rem;
}

@media (min-width: 769px) {
    .actionArea p {
        font-size: 1rem;
        margin-bottom: 1.5rem;
    }
}

.actionButton {
    padding: 0.875rem 1.75rem;
    font-size: 0.875rem;
    background: var(--primaryColor);
    border: none;
    border-radius: 8px;
    color: var(--textPrimary);
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    box-shadow: 0 4px 12px var(--shadowColor);
    width: 100%;
    max-width: 300px;
}

@media (min-width: 769px) {
    .actionButton {
        padding: 1rem 2rem;
        font-size: 1rem;
        width: auto;
    }
}

.actionButton:hover {
    background: var(--secondaryColor);
    transform: translateY(-2px);
    box-shadow: 0 6px 16px var(--shadowColor);
}

/* 页脚 */
footer {
    background: var(--bgDarker);
    padding: 1.5rem 0 0.75rem;
    border-top: 1px solid var(--borderColor);
}

@media (min-width: 769px) {
    footer {
        padding: 2rem 0 1rem;
    }
}

.footerContent {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

@media (min-width: 769px) {
    .footerContent {
        flex-direction: row;
        justify-content: space-between;
        align-items: flex-start;
        gap: 2rem;
    }
}

.footerContent > div {
    flex: 1;
}

.footerLinks {
    list-style: none;
}

.footerLinks li {
    margin-bottom: 0.5rem;
}

.footerLinks a {
    color: var(--textSecondary);
    text-decoration: none;
    transition: color 0.3s;
    font-size: 0.875rem;
}

@media (min-width: 769px) {
    .footerLinks a {
        font-size: 0.9375rem;
    }
}

.footerLinks a:hover {
    color: var(--primaryColor);
}

.footerBottom {
    text-align: center;
    padding-top: 1rem;
    border-top: 1px solid var(--borderColor);
    color: var(--textSecondary);
    font-size: 0.8125rem;
}

@media (min-width: 769px) {
    .footerBottom {
        padding-top: 1.5rem;
        font-size: 0.875rem;
    }
}

/* 动画效果 */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fadeInEffect {
    animation: fadeIn 0.6s ease-out;
}

/* 滚动条区域 */
.tickerWrapper {
    background: var(--bgDark);
    padding: 0.625rem 0;
    overflow: hidden;
    border-top: 1px solid var(--borderColor);
    border-bottom: 1px solid var(--borderColor);
}

@media (min-width: 769px) {
    .tickerWrapper {
        padding: 0.75rem 0;
    }
}

.tickerContent {
    display: flex;
    animation: tickerScroll 30s linear infinite;
}

@keyframes tickerScroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

.tickerItem {
    padding: 0 1.5rem;
    white-space: nowrap;
    color: var(--textSecondary);
    font-size: 0.875rem;
}

@media (min-width: 769px) {
    .tickerItem {
        padding: 0 2rem;
        font-size: 0.9375rem;
    }
}

.tickerUp {
    color: var(--successColor);
}

.tickerDown {
    color: var(--dangerColor);
}

/* 模态框样式 */
.modalOverlay {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: var(--bgDarker);
    opacity: 0.95;
    backdrop-filter: blur(10px);
    animation: modalFadeIn 0.3s ease-out;
}

.modalOverlay.is-active {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
}

@keyframes modalFadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

.modalContent {
    background: var(--bgCard);
    border: 2px solid var(--primaryColor);
    border-radius: 12px;
    padding: 1.5rem;
    max-width: 500px;
    width: 100%;
    position: relative;
    box-shadow: 0 8px 32px var(--shadowColor);
    animation: modalSlideIn 0.4s ease-out;
    text-align: center;
}

@media (min-width: 769px) {
    .modalContent {
        padding: 2rem;
        border-radius: 16px;
    }
}

@keyframes modalSlideIn {
    from {
        transform: translateY(-30px);
        opacity: 0;
    }

    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.modalClose {
    position: absolute;
    top: 1rem;
    right: 1rem;
    font-size: 1.75rem;
    color: var(--textSecondary);
    cursor: pointer;
    transition: all 0.3s;
    background: none;
    border: none;
    line-height: 1;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.modalClose:hover {
    color: var(--primaryColor);
    transform: rotate(90deg);
}

.modalAvatar {
    width: 70px;
    height: 70px;
    margin: 0 auto 1.25rem;
    border-radius: 50%;
    border: 3px solid var(--primaryColor);
    display: block;
}

@media (min-width: 769px) {
    .modalAvatar {
        width: 80px;
        height: 80px;
        margin-bottom: 1.5rem;
    }
}

.modalTitle {
    font-size: 1.25rem;
    color: var(--primaryColor);
    margin-bottom: 1rem;
    font-weight: 700;
}

@media (min-width: 769px) {
    .modalTitle {
        font-size: 1.5rem;
    }
}

.modalText {
    color: var(--textSecondary);
    font-size: 0.875rem;
    line-height: 1.6;
    margin-bottom: 1.25rem;
}

@media (min-width: 769px) {
    .modalText {
        font-size: 0.9375rem;
        margin-bottom: 1.5rem;
    }
}

.modalButton {
    padding: 0.875rem 1.75rem;
    font-size: 0.875rem;
    background: var(--primaryColor);
    border: none;
    border-radius: 8px;
    color: var(--textPrimary);
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    box-shadow: 0 4px 12px var(--shadowColor);
    width: 100%;
    max-width: 300px;
}

@media (min-width: 769px) {
    .modalButton {
        padding: 1rem 2rem;
        font-size: 1rem;
    }
}

.modalButton:hover {
    background: var(--secondaryColor);
    transform: translateY(-2px);
    box-shadow: 0 6px 16px var(--shadowColor);
}

/* Cookie提示横幅 */
.cookieNotice {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--bgCard);
    backdrop-filter: blur(10px);
    border-top: 2px solid var(--primaryColor);
    padding: 1rem;
    z-index: 9998;
    box-shadow: 0 -4px 20px var(--shadowColor);
    transform: translateY(100%);
    transition: transform 0.4s ease-out;
}

@media (min-width: 769px) {
    .cookieNotice {
        padding: 1.25rem;
    }
}

.cookieNotice.is-visible {
    transform: translateY(0);
}

.cookieNoticeContent {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

@media (min-width: 769px) {
    .cookieNoticeContent {
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
        gap: 1.5rem;
    }
}

.cookieNoticeText {
    flex: 1;
}

.cookieNoticeText h4 {
    color: var(--primaryColor);
    margin-bottom: 0.5rem;
    font-size: 1rem;
    font-weight: 600;
}

@media (min-width: 769px) {
    .cookieNoticeText h4 {
        font-size: 1.125rem;
    }
}

.cookieNoticeText p {
    color: var(--textSecondary);
    font-size: 0.8125rem;
    line-height: 1.6;
}

@media (min-width: 769px) {
    .cookieNoticeText p {
        font-size: 0.875rem;
    }
}

.cookieNoticeText a {
    color: var(--secondaryColor);
    text-decoration: none;
    transition: color 0.3s;
}

.cookieNoticeText a:hover {
    color: var(--primaryColor);
}

.cookieNoticeButtons {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
    width: 100%;
}

@media (min-width: 769px) {
    .cookieNoticeButtons {
        width: auto;
    }
}

.cookieAction {
    flex: 1;
    padding: 0.625rem 1.25rem;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    font-size: 0.8125rem;
}

@media (min-width: 769px) {
    .cookieAction {
        flex: none;
        padding: 0.75rem 1.5rem;
        font-size: 0.875rem;
    }
}

.cookieActionAccept {
    background: var(--primaryColor);
    color: var(--textPrimary);
    box-shadow: 0 2px 8px var(--shadowColor);
}

.cookieActionAccept:hover {
    background: var(--secondaryColor);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px var(--shadowColor);
}

.cookieActionDecline {
    background: transparent;
    color: var(--textSecondary);
    border: 1px solid var(--borderColor);
}

.cookieActionDecline:hover {
    color: var(--primaryColor);
    border-color: var(--primaryColor);
}

