
/* 底部容器整体样式 */
.foot-container {
    width: 100%;
    background-color: #000000;
    padding: 60px 0 30px;
    box-sizing: border-box;
}

.foot-content {
    max-width: 1420px;
    height: 500px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    padding: 0 20px;
    box-sizing: border-box;
}

/* 每个区块的通用样式 */
.foot-section {
    color: #ffffff;
}

.foot-title {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 20px;
    color: #ffffff;
}

/* 关于 SHIMEI 部分 */
.about-section .foot-description {
    font-size: 14px;
    line-height: 1.8;
    margin-bottom: 25px;
    color: #cccccc;
    text-align: justify;
}

.about-section .foot-logo {
    max-width: 200px;
    height: auto;
    margin-top: 15px;
}

/* 菜单部分 */
.menu-section .foot-menu {
    list-style: none;
    padding: 0;
    margin: 0;
}

.menu-section .foot-menu li {
    margin-bottom: 12px;
    padding-bottom: 12px;
    border-bottom: 1px solid #666666;
}

.menu-section .foot-menu li:last-child {
    border-bottom: none;
}

.menu-section .foot-menu a {
    color: #ffffff;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

.menu-section .foot-menu a:hover {
    color: #d71f24;
}

/* 联系我们部分 */
.contact-section .contact-info p {
    font-size: 14px;
    line-height: 1.6;
    color: #cccccc;
    margin-bottom: 8px;
    white-space: pre-wrap;
    word-wrap: break-word;
}

/* 地图导航部分 */
.map-section .map-wrapper {
    margin-bottom: 20px;
}

.map-section .map-image {
    width: 100%;
    height: 180px;
    object-fit: cover;
    border-radius: 4px;
}

.social-icons {
    display: flex;
    gap: 15px;
    justify-content: flex-start;
}

.social-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    /*background-color: #ffffff;*/
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease;
}

.social-icon:hover {
    transform: scale(1.1);
}

.social-icon img {
    width: 50px;
    height: 50px;
    object-fit: contain;
}

/* 底部版权信息 */
.foot-bottom {
    grid-column: 1 / -1;
    /*margin-top: 40px;*/
    padding-top: 30px;
    border-top: 1px solid #333333;
}

.foot-bottom p {
    color: #cccccc;
    font-size: 14px;
    text-align: center;
}

.foot-bottom .divider {
    margin: 0 10px;
    color: #666666;
}

.foot-bottom a {
    color: #cccccc;
    text-decoration: none;
    transition: color 0.3s ease;
}

.foot-bottom a:hover {
    color: #d71f24;
}

/* 响应式设计 */
@media (max-width: 1200px) {
    .foot-content {
        grid-template-columns: repeat(2, 1fr);
        height: auto;
    }

    .foot-bottom {
        grid-column: 1 / -1;
    }
}

@media (max-width: 768px) {
    .foot-content {
        grid-template-columns: 1fr;
        padding: 0 15px;
    }

    .foot-container {
        padding: 40px 0 20px;
    }

    .foot-bottom {
        margin-top: 30px;
        padding-top: 20px;
    }

    .foot-bottom p {
        text-align: left;
    }
}
