/* 页脚样式 */
.footer {
    background: #333;
    text-align: center;
    color: #6A6A6A;
}

.footer p {
    font-size: 14px;
}

.footer-inner {
    width: 75%;
    display: flex;
    gap: 100px;
    margin: 0 auto;
    padding: 30px 0;
    font-size: 14px;
}


.footer-inner-left {
    flex: 1;
    float: left;
    min-height: 300px;
    color: #6A6A6A;
    text-align: left;
}

.footer-inner-right {
    flex: 1;
    float: left;
    padding: 2px;
    min-height: 300px;
}

.right-contain {
    text-align: left;
    display: grid; /* 使用 Grid 布局 */
    grid-template-columns: repeat(2, 1fr); /* 默认 2 列（大屏幕） */
    gap: 20px; /* 区域之间的间距 */
    max-width: 1200px; /* 最大宽度限制 */
}

/* 单个区域的样式 */
.section {
    padding: 20px;
}

/* 区域标题 */
.section-title {
    margin-bottom: 6px;
    font-size: 1.2rem;
    padding-bottom: 2px;
}

.footer-container {
    text-align: left;
    display: flex; /* 启用Flex布局 */
    height: 400px; /* 给容器一个高度 */
    gap: 10px; /* 设置子元素之间的间隙 */
}
.left-column {
    display: flex;
    flex-direction: column; /* 左侧元素垂直排列 */
    flex: 2; /* 占据剩余空间的一部分 */
    gap: 10px;
}
.right-column {
    display: flex;
    flex-direction: column; /* 右侧元素垂直排列 */
    flex: 2; /* 右侧宽度大约是左侧的两倍 */
    gap: 6px;
}
.list-item {
    border-radius: 4px;
    padding: 10px;
    box-sizing: border-box;
}
/* 左侧两个项目等高各占一半 */
.left-column .list-item {
    flex: 1;
}
/* 右侧第一个和第三个项目有固定高度，中间项目自适应 */
.right-column .list-item:nth-child(1) {
    flex: 1; /* 右侧中间自适应填充剩余高度 */
}
.right-column .list-item:nth-child(2) {
    flex: 1; /* 右侧中间自适应填充剩余高度 */
}
.right-column .list-item:nth-child(3) {
    flex: 1; /* 右侧中间自适应填充剩余高度 */
}



/* 列表样式 */
.list {
    list-style: none; /* 去掉默认列表符号 */
}

.list li {
    padding: 2px 0;
}

.list li:last-child {
    border-bottom: none; /* 最后一项无分隔线 */
}


.a-footer {
    color: #6A6A6A;
    text-decoration: none;
}

.a-footer:hover {
    color: white;
    text-decoration: none;
}


.thin-hr {
    border: 0;
    height: 1px; /* 细线条 */
    margin: 3px 0; /* 上下边距 */
    background-color: #6A6A6A; /* 紫色线条 */
}

.footer-bottom {
    width: 75%;
    margin: 0 auto;
    padding: 0 0;
    display: flex;
    flex-direction: column;
}

.footer-bottom-left {
    font-size: 13px;
    text-align: left;
    align-self: flex-start; /* 单独覆盖：左侧元素顶部对齐 */
}

.footer-bottom-right {
    text-align: right;
}

.footer-div{
    display: none;
}

/* 响应式设 */
@media (max-width: 768px) {
    .footer-inner {
       display: none;
    }

    .footer-div{
        display: block;
    }

    .footer-bottom{
        width: 90%;
    }
}

