.newsTab a,.btnMore, .newsQueue .newsQueueList a{ color:; } 
.newsTab a.active,.newsQueue .newsQueueList a:hover, .btnMore:hover{ color:; } 
.newsQueue .newsQueueList a:after{ background: ; } 
#LT_media{ position: absolute;top: .4rem; right: 0.6rem; z-index: 99; }

/* 版权页整体样式 */
.copyright {
    width: 100%;
    background-color: #1a1a1a; /* 深色背景，适配游戏风格 */
    padding: 30px 0;
    margin-top: 50px; /* 与上方内容拉开距离 */
    border-top: 1px solid #333; /* 顶部分割线 */
}

/* 底部内容容器 */
#foot_lt {
    width: 90%;
    max-width: 1200px; /* 限制最大宽度，适配大屏 */
    margin: 0 auto; /* 水平居中 */
    text-align: center; /* 文字居中 */
}

/* 文字区域样式 */
.regard {
    color: #999; /* 浅灰色文字，保护视力且适配深色背景 */
    font-size: 14px;
    line-height: 1.8; /* 行高，提升可读性 */
    font-family: "Microsoft Yahei", Arial, sans-serif; /* 适配中文字体 */
}

/* 版权声明第一行特殊样式（可选） */
.regard p:first-child {
    color: #ccc;
    font-size: 15px;
    margin-bottom: 10px;
    letter-spacing: 1px; /* 字间距，提升美观度 */
}

/* 响应式适配 - 移动端 */
@media (max-width: 768px) {
    .copyright {
        padding: 20px 0;
    }
    
    .regard {
        font-size: 13px;
        line-height: 1.6;
    }
    
    .regard p:first-child {
        font-size: 14px;
    }
}

/* 可选：hover 效果（如需交互） */
.regard p:hover {
    color: #fff;
    transition: color 0.3s ease;
}