/* 考试倒计时样式 */
.exam-countdown {
    position: fixed; /* 使用固定定位 */
    background-color: rgba(255, 255, 255, 0.9);
    border-radius: 4px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    font-family: 'HarmonyOS_Sans_Medium', Arial, sans-serif;
    z-index: 9999; /* 确保显示在最上层 */
    text-align: center;
    line-height: 1.4;
    border-left: 3px solid #4a89dc;
    /* 初始状态设为不可见 */
    opacity: 0;
    visibility: hidden;
    /* 确保尺寸计算正确 */
    box-sizing: border-box;
    /* 防止意外位移 */
    margin: 0;
    /* 确保不受其他属性影响 */
    max-width: none;
    max-height: none;
    /* 默认为桌面设备样式 */
    top: 10px;
    right: 10px;
    bottom: auto;
    left: auto;
    font-size: 14px;
    padding: 8px 15px;
}

.exam-countdown:hover {
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
}

.exam-title {
    font-weight: bold;
    color: #333;
    margin-bottom: 3px;
}

.exam-days {
    color: #4a89dc;
    font-weight: bold;
}

/* 移动设备适配 */
@media (max-width: 768px) {
    .exam-countdown {
        top: auto;
        bottom: 10px;
        right: 10px;
        font-size: 12px;
        padding: 6px 10px;
    }
}
