.footer-head h1 {
    font-size: 5em; /* 调整字体大小，2em 通常等于当前字体大小的两倍 */
    line-height: 1.5; /* 调整行高，1.5 是一个常用的值，使得行间距看起来更舒适 */
    letter-spacing: 0.3em; /* 调整字间距，0.1em 增加了字符之间的空间 */
    text-shadow: 2px 2px 4px #000000; /* 水平偏移, 垂直偏移, 模糊半径, 颜色 */
}

.footer-flex {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    width: 100vw;
}

.footer .container {
    height: 750px; /* 你可以根据需要调整这个值 */
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-gap: 20px;
    padding: 20px;
}

.footer-info {
    color: white;
}

.footer-text {
    width: 50%;
    margin-left: auto; /* 将元素推向右侧 */
    margin-bottom: 108px;
    padding: 20px; /* 如果需要填充，请在所有方向上添加 */
    padding-top: 180px;
    text-align: left; /* 如果需要的话，可以调整文本对齐方式 */
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    gap: 20px;
}

.footer-text img {
    width: 200px; /* 图片宽度 */
    height: 200px; /* 图片高度 */
}

/*link*/
.footer-links {
    display: flex;
    position: relative;
    width: 200px; /* 根据中心图片大小调整 */
    height: 200px; /* 根据中心图片大小调整 */
    margin: auto;
    left: -250px;
    top: 400px;
}

.center-link {
    position: absolute; /* 改为绝对定位 */
    top: 20%;
    left: 30%;
    transform: translate(-50%, -50%); /* 居中对齐 */
    z-index: 1; /* 确保在最上层 */
}

.center-link img {
    width: 200px; /* 图片宽度 */
    height: 200px; /* 图片高度 */
}

.surrounding-links {
    position: relative;
    width: 100%;
    height: 100%;
}

.link {
    position: absolute; /* 改为绝对定位 */
    width: 100px; /* 图片宽度 */
    height: 100px; /* 图片高度 */
}

.link img {
    width: 100%; /* 适应容器 */
    height: 100%; /* 适应容器 */
}

.link:nth-child(1) { transform: rotate(0deg) translate(200px) rotate(0deg); }
.link:nth-child(2) { transform: rotate(45deg) translate(200px) rotate(-45deg); }
.link:nth-child(3) { transform: rotate(90deg) translate(200px) rotate(-90deg); }
.link:nth-child(4) { transform: rotate(135deg) translate(200px) rotate(-135deg); }
.link:nth-child(5) { transform: rotate(180deg) translate(200px) rotate(-180deg); }
.link:nth-child(6) { transform: rotate(225deg) translate(200px) rotate(-225deg); }
.link:nth-child(7) { transform: rotate(270deg) translate(200px) rotate(-270deg); }
.link:nth-child(8) { transform: rotate(315deg) translate(200px) rotate(-315deg); }



