/* 
 * 文件名: css/footer-style.css
 * 说明: 圣元冰雪站点专用底部样式，无JS依赖，文本居中，背景透明
 */

/* 底部整体容器 */
.cq-footer-container {
    background-color: transparent; /* 修改：背景透明 */
    color: #666;                   /* 修改：文字颜色加深，确保在透明背景下可见 */
    font-family: "Microsoft YaHei", "Helvetica Neue", Helvetica, Arial, sans-serif;
    padding: 40px 0 20px;
    text-align: center;            /* 核心：所有子元素水平居中 */
    border-top: none;              /* 修改：移除顶部边框，适应透明背景 */
    margin-top: 120px;              /* 修改：上间距改为 30px */
    width: 100%;
    box-sizing: border-box;
}

/* 内部内容限制宽度，防止在大屏上过于分散 */
.cq-footer-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

/* 标签区域 */
.cq-tags-wrapper {
    margin-bottom: 20px;
}

.cq-tag {
    display: inline-block;
    margin: 0 16px;
    padding: 4px 12px;
    background-color: rgba(26, 26, 26, 0.8); /* 修改：标签背景稍带透明，更有层次感 */
    color: #d4af37;              /* 金色文字 */
    border: 1px solid #d4af37;   /* 修改：边框改为金色，更醒目 */
    border-radius: 4px;
    font-size: 12px;
    font-weight: bold;
    transition: all 0.3s ease;
}

.cq-tag:hover {
    background-color: #d4af37;
    color: #000;
    border-color: #d4af37;
}

/* 公告区域 */
.cq-notice-area {
    background-color: rgba(22, 22, 22, 0.9); /* 修改：公告背景稍带透明 */
    max-width: 800px;
    margin: 0 auto 20px;
    padding: 12px;
    border-radius: 4px;
    border: 1px solid #333;
    font-size: 12px;
    line-height: 1.6;
    color: #999;                 /* 修改：公告文字颜色调亮 */
}

.cq-notice-area strong {
    color: #ff9800;              /* 橙色强调 */
    margin-right: 5px;
}

/* 链接与版权区域 */
.cq-links-area {
    margin-bottom: 15px;
    font-size: 13px;
    line-height: 1.8;
}

.cq-links-area a {
    color: #d4af37;
    text-decoration: none;
    margin: 0 8px;
    transition: color 0.2s;
}

.cq-links-area a:hover {
    color: #b8860b;              /* 悬停颜色稍暗，避免在浅色背景刺眼 */
    text-decoration: underline;
}

/* 免责声明 */
.cq-disclaimer-text {
    font-size: 12px;
    color: #888;                 /* 修改：免责声明颜色调亮 */
    font-style: italic;
    margin-top: 10px;
}
