@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+SC:wght@400;500;700&display=swap');

/* 全局字体 */
body {
    font-family: 'Noto Sans SC', sans-serif;
}

/* 通用：模态基础（当前首页未使用，保留以便后续扩展） */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 1000;
}
.modal.active {
    display: flex;
    align-items: center;
    justify-content: center;
}

/* 倒计时（当前首页未使用，保留） */
.countdown {
    display: none;
}
.countdown.active {
    display: inline-block;
}

/* 特色卡片悬浮 */
.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

/* Banner 容器的适度过渡（可选增强） */
#bannerSlider img {
    transition: transform .3s ease, opacity .3s ease;
}

