/* --- 页脚主容器 --- */
.site-footer {
    background-color: #1F52AD;
    /* 提取的深蓝色 */
    color: #fff;
    width: 100%;
    padding: 40px 0;
    font-size: 14px;
}
.site-footer2{
    background-color: #174698;
    /* 提取的深蓝色 */
    color: #fff;
    width: 100%;
    padding: 30px 0;
    font-size: 14px;
}

/* --- 内容居中容器 --- */
.footer-content {
    width: 1440px;
    margin: 0 auto;
    /* 防止小屏幕溢出，可根据需要调整 */
    max-width: 95%;
    display: flex;
    flex-direction: row-reverse;
    justify-content: flex-end;
}

/* --- 第一部分：相关链接 --- */
.footer-links {
    padding-bottom: 20px;
    display: flex;
    align-items: flex-start;
    gap: 10px;
    flex-direction: column;
}

.link-label {
    font-weight: bold;
    margin-right: 20px;
    margin-bottom: 10px;
    font-size: 16px;
}

.footer-links a {
    color: #fff;
    font-size: 13px;
    text-decoration: none;
    margin-right: 30px;
    opacity: 1;
    transition: opacity 0.3s;
}

.footer-links a:hover {
    opacity: 1;
    text-decoration: underline;
     color: #fff;
}

/* --- 分割线 --- */
.footer-divider {
    width: 100%;
    height: 1px;
    /*background-color: rgba(255, 255, 255, 0.2);*/
    /* 半透明白线 */
    margin-bottom: 25px;
}

/* --- 第二部分：图片区域 (Logo 和 口号) --- */
.footer-content2 {
    width: 1440px;
    margin: 0 auto;
    /* 防止小屏幕溢出，可根据需要调整 */
    max-width: 95%;
    display: flex;
    flex-direction: column;
}

.footer-images {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    /* height: 80px; */
    /* 根据实际图片高度调整 */
    /*margin: 25px 0;*/
}

/* 左侧 Logo 图片样式 */
.footer-logo-img {
    object-fit: contain;
    margin-right: 150px;
    width: 500px;
}

/* 右侧 口号/书法字 图片样式 */
.footer-slogan-img {
    height: 35px;
    margin: 25px 86px;
    /* 书法字通常比Logo稍微矮一点，显得精致 */
    object-fit: contain;
}

/* --- 第三部分：底部文字信息 --- */
.footer-info {
    text-align: center;
    font-size: 13px;
    line-height: 1.8;
    opacity: 1;
    /* 让文字稍微暗一点，更有层次感 */
}

.info-row span {
    margin: 0 10px;
}