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

/* 底部整体容器 */
.cq-footer-container {
    background-color: #0f0f0f; /* 深黑背景 */
    color: #999; /* 默认文字颜色 */
    font-family: "Microsoft YaHei", "Helvetica Neue", Helvetica, Arial, sans-serif;
    padding: 40px 0 20px;
    text-align: center; /* 核心：所有子元素水平居中 */
    border-top: 3px solid #d4af37; /* 顶部金色装饰线 */
    margin-top: 50px;
    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 6px;
    padding: 4px 12px;
    background-color: #1a1a1a;
    color: #d4af37; /* 金色文字 */
    border: 1px solid #333;
    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: #161616;
    max-width: 800px;
    margin: 0 auto 20px;
    padding: 12px;
    border-radius: 4px;
    border: 1px solid #222;
    font-size: 12px;
    line-height: 1.6;
    color: #777;
}

.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: #fff;
    text-decoration: underline;
}

/* 免责声明 */
.cq-disclaimer-text {
    font-size: 12px;
    color: #444;
    font-style: italic;
    margin-top: 10px;
}
