/* --- 整体背景与基础 --- */
.footer-top {
    background-color: #f2f2f2; /* 更接近截图的浅灰色 */
    padding-top: 60px !important;
    padding-bottom: 60px !important;
    border-top: none;
}

/* --- Logo 样式 (左图右字) --- */
.footer-logo-container {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.footer-logo-img{
    width: 80%;
}

/* 那个红色的 S 图标 */
.footer-logo-icon {
    font-size: 40px;
    font-weight: 900;
    color: #c42021; /* 深红色 */
    font-family: "Times New Roman", Times, serif;
    line-height: 1;
    font-style: italic;
}

.footer-logo-main {
    font-size: 24px;
    font-weight: 700;
    letter-spacing: 1px;
    color: #333;
    font-family: "Times New Roman", Times, serif;
    line-height: 1;
}

.footer-logo-sub {
    font-size: 13px;
    font-style: italic;
    color: #666;
    font-family: "Times New Roman", Times, serif;
    margin-top: 2px;
}

.footer-description {
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 7;
    overflow: hidden;
    color: #000;
}

/* --- 标题样式 --- */
.footer-heading {
    font-size: 20px;
    font-weight: 500;
    color: #000;
    margin-bottom: 30px;
}

/* --- 联系方式 & 链接 --- */
.footer-contact-item, .footer-link {
    font-size: 15px;
    color: #333 !important;
    margin-bottom: 15px;
}

.footer-contact-item i {
    color: #000; /* 截图中的图标是黑色的 */
    font-size: 18px;
    margin-right: 12px;
}

.footer-links li {
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid transparent; /* 保持高度一致 */
}

/* 截图中的右侧小箭头 */
.footer-links i.bi-chevron-right {
    font-size: 12px;
    color: #ccc;
    margin-left: auto;
}

/* --- 社交媒体 (重点调整) --- */
.footer-social {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-social-link {
    color: #000 !important;
    font-weight: 500;
    display: flex;
    align-items: center;
}

.footer-social-icon {
    width: 45px;
    height: 45px;
    background-color: #e0e0e0; /* 圆形背景色 */
    border-radius: 50%;
    margin-right: 15px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.footer-social-icon svg {
    width: 22px;
    height: 22px;
}

/* --- 底部黑条 --- */
.footer-bottom {
    background-color: #000 !important;
    padding: 15px 0;
    color: #fff;
}

.footer-bottom a {
    font-size: 13px;
    font-weight: 400;
}

/* --- 响应式微调 --- */
@media (max-width: 991px) {
    .footer-section {
        margin-bottom: 40px;
    }
}