/* 基础样式重置 */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
/* 页面整体样式 */
body {
    padding-bottom: 60px; /* 预留底部菜单高度 */
    min-height: 100vh;
    background-color: #f8f9fa;
    font-family: -apple-system, BlinkMacSystemFont, sans-serif;
}
/* 模块容器样式 */
.module {
    background-color: #fff;
    margin: 10px;
    padding: 15px;
    border-radius: 10px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}
.module-title {
    font-size: 16px;
    color: #333;
    margin-bottom: 15px;
    padding-bottom: 8px;
    border-bottom: 1px solid #eee;
}
/* 时间模块样式 */
.time-container {
    text-align: center;
}
.date-info {
    font-size: 16px;
    color: #555;
    margin-bottom: 10px;
}
.clock {
    font-size: 28px;
    font-weight: bold;
    color: #333;
    margin: 10px 0;
}
.weekday {
    display: inline-block;
    padding: 3px 10px;
    background-color: #e8f4fd;
    color: #1976d2;
    border-radius: 12px;
    font-size: 14px;
}
/* 倒计时模块样式 */
.countdown-container {
    text-align: center;
}
.countdown-title {
    font-size: 15px;
    color: #666;
    margin-bottom: 15px;
}
.countdown-box {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin: 10px 0;
}
.countdown-item {
    width: 60px;
    height: 60px;
    background-color: #ff5722;
    color: white;
    border-radius: 8px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
.countdown-number {
    font-size: 20px;
    font-weight: bold;
}
.countdown-label {
    font-size: 10px;
}
/* 底部菜单样式 */
.bottom-menu {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 60px;
    background-color: #fff;
    display: flex;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.1);
}
.menu-item {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #666;
    text-decoration: none;
    font-size: 12px;
}
.menu-item:active {
    background-color: #f5f5f5;
}
.menu-item .icon {
    font-size: 20px;
    margin-bottom: 4px;
}