/* Footer 容器样式 */
#footer {
    background-color: #333;
    color: #fff;
    padding: 2rem 1rem;
    font-family: 'Arial', sans-serif;
}
/* 内容容器 */
.page6-centent {
    max-width: 75rem;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 2rem;
}
/* 每个文本区块 */
.page6-centent-text {
    flex: 1;
    min-width: 15.625rem;
    margin: 1rem 0;
}
/* 标题样式 */
.page6-centent-text-title {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 0.125rem solid #666;
}
/* 文本链接样式 */
.page6-centent-text-text {
    display: block;
    color: #ddd;
    text-decoration: none;
    margin: 0.5rem 0;
    line-height: 1.6;
    transition: color 0.3s ease;
}
.page6-centent-text-text:hover {
    color: #007bff;
}
/* 图片容器 */
.page6-centent-img {
    display: flex;
    gap: 1.25rem;
    margin-top: 1rem;
    width: 12.5rem;
    height: 12.5rem;
    margin-left: 1.25rem;
}
/* 图片样式 */
.page6-centent-img img {
    width: 6.25rem;
    height: 6.25rem;
    object-fit: cover;
    border-radius: 0.5rem;
    transition: transform 0.3s ease;
}
.page6-centent-img img:hover {
    transform: scale(1.05);
}
/* 响应式设计 */
@media (max-width: 768px) {
    .page6-centent {
        flex-direction: column;
        padding: 0 1rem;
    }
    .page6-centent-text {
        min-width: 100%;
    }
    .page6-centent-img img {
        width: 5rem;
        height: 5rem;
    }
}
@media (max-width: 480px) {
    #footer {
        padding: 1rem;
    }
    .page6-centent-text-title {
        font-size: 1.1rem;
    }
    .page6-centent-text-text {
        font-size: 0.9rem;
    }
}

.footer-bottom {
  background: #1a1a1a;
  padding: 1.25rem 0;
  text-align: center;
}

.footer-divider {
  border-top: 0.0625rem solid #444;
  margin: 1.25rem auto;
  max-width: 75rem;
}

.beian {
  color: #999;
  font-size: 0.75rem;
}

.beian a {
  color: #999;
  text-decoration: none;
}

.beian a:hover {
  color: #fff;
}

.beian-icon {
  width: 1rem;
  vertical-align: middle;
  margin-right: 0.1875rem;
}

/* 手机端 */
@media (max-width: 576px) {
  .box { width: 100%; }
}

/* 平板 */
@media (min-width: 577px) and (max-width: 992px) {
  .box { width: 50%; }
}

/* 桌面端 */
@media (min-width: 993px) {
  .box { width: 25%; }
}