/* 页脚区域 */
footer {
    background-color: #333;
    color: white;
    padding: 30px 0 0;
}

.footer-content ul{
    display: flex;
    list-style: none;
}

.footer-content ul li {
    margin-bottom: 10px;
}

.footer-content ul li a {
    text-decoration: none; /* 去掉链接下划线 */
    transition: none; /* 移除过渡效果 */
}

.footer-content ul li a:hover {
    text-decoration: none; /* 确保悬停时也没有下划线 */
}

.footer-content ul li a:visited {
    color: white; /* 确保访问过的链接也保持白色 */
    text-decoration: none; /* 确保访问过的链接也没有下划线 */
}

.footer-content ul li a:active {
    color: white; /* 确保激活状态的链接也保持白色 */
    text-decoration: none; /* 确保激活状态的链接也没有下划线 */
}

.qrcode {
    display: flex;
    justify-content:flex-start;
    gap: 30px;
    padding: 0 0 20px;
}

.qrcode-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px; /* 控制图片和文字之间的间距 */
}

.qrcode-item img {
    width: 80px; /* 统一二维码图片大小 */
    height: 80px;
    object-fit: contain;
}

.qrcode-item p {
    margin: 0; /* 去除段落默认边距 */
    text-align: center;
    font-size: 14px;
}

.friend-links {
    margin: 10px 0; /* 上下间距 */
    text-align: left;
}

.friend-links p {
    display: inline-block;
    margin-right: 10px;
    font-weight: bold;
}

.friend-links a {
    margin: 0 8px;
    text-decoration: none;
    color: white;
}

.copyright {
    text-align: center;
    padding: 15px 0;
    background: #000;
}