/* 页脚 - 改为蓝色 */
.footer {
    background-color: #1a56a8;
    color: white;
    padding: 10px 10% 5px;
    margin-top: -30px;
}

.footer-container {
    max-width: 1200px; /* 与网站主体内容宽度一致 */
    margin: 0 auto; /* 水平居中 */
    padding: 5px 5px -20px 5px; /* 左右留白 */
    width: 100%;
}

.footer-content {
    display: flex;
    justify-content: space-between;
}

/* 在原有的CSS中添加以下样式 */
.footer .contact-info p {
    font-size: 13px; /* 设置电话、地址、版权文字为12px */
    margin: 5px 0; /* 适当调整间距 */
}

.footer .contact-info a {
    font-size: 13px;
    font-weight: bold; /* 联系我们和阳光信访字体加粗 */
    position: relative; /* 为竖线定位做准备 */
}

.footer .contact-info a:first-child::after {
    content: "|"; /* 添加竖线分隔符 */
    margin: 0 10px; /* 竖线两侧间距 */
    color: white; /* 竖线颜色 */
    font-weight: normal; /* 竖线不加粗 */
}

.contact-info {
    flex: 2;
}

.qr-code {
    flex: 1;
    text-align: center;
}

.qr-code-img {
    width: 100px;
    height: 100px;
    background-color: #fff;
    margin: 0 auto 10px;
}

.core-values {
    text-align: right;
    margin-top: 20px;
    font-size: 14px;
}