/* 页脚 */
.site-footer {
    text-align: center; /*  整个 footer 文字居中  */
    margin-top: 30vh;
  }
  

.footer-title {
    margin-bottom: 1rem;
    font-family: Arial;
    font-size: 1.3rem;
    font-weight: 400; /* Normal */
    color: black; /* 使用全局文本颜色 */   
}

.team-list {
    list-style: none;
    margin: 0;
    padding: 0;
    line-height: 1.3rem;
    opacity: 0.85;
}

.team-member {
    font-family: Arial;
    font-size: 0.9rem;
    font-weight: 330; /* Light */
    color: var(--e-global-color-text); /* 使用全局文本颜色 */
    margin-bottom: 10px;
}
.footer-image-container {
    display: flex;
    margin: 0.4rem 1.2rem;
    align-items: center;
    justify-content: center;
}

.logo-img {
    width: 50px;
    height: 50px;
    margin: 0 10px; /* 调整两个图片之间的间距 */
}

.beian {
    margin-top: 1rem;
    display: inline-flex; /*  结合 inline-block 和 flex 属性 */
    align-items: center;
    font-size: 14px;
    justify-content: center;
    color: black;
    text-decoration: none;
    opacity: 0.7;
    transition: opacity 0.3s, color 0.3s; /* 添加过渡效果 */
  }
  
.beian:hover {
    color: #007BFF;
    opacity: 1;
}