.sgui-radius-flex {
    -webkit-box-align: center;
    -webkit-align-items: center;
    align-items: center;
}
.sgui-big-radius-flex, .sgui-img-flex, .sgui-radius-flex {
    display: -webkit-box;
    display: -webkit-flex;
    display: flex;
    color: #222;
}
.sgui-radius-flex .sgui-img-layout .sgui-img-height {
    border-radius: 100%;
    background: #f5f5f5 url(../images/zuozhebeijing.png) 50% no-repeat;
    background-size: contain;
}
.sgui-img-layout {
    position: relative;
    z-index: 1;
    margin-right: 8px;
    width: 41px;
    -webkit-flex-shrink: 0;
    flex-shrink: 0;
}

.sgui-img-layout .sgui-img-height {
    position: relative;
    z-index: 1;
    display: block;
    width: 100%;
    height: 0;
    padding-bottom: 100%;
    font-style: normal;
    overflow: hidden;
}
.sgui-img-layout img {
    display: block;
    width: 100%;
    position: absolute;
    z-index: 2;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    object-fit: cover;
    object-position: center;
    background: #f5f5f5;
}
.sgui-img-layout .sgui-img-height {
    position: relative;
    z-index: 1;
    display: block;
    width: 100%;
    height: 0;
    padding-bottom: 100%;
    font-style: normal;
    overflow: hidden;
}
.img-circle {
    max-width: 100%;
  }
.sgui-text-layout {
    -webkit-box-flex: 1;
    -webkit-flex: 1;
    flex: 1;
    overflow: hidden;
    color: #999;
}
.sgui-samll-title {
    line-height: 24px;
}

.sgui-samll-title span:first-child {
    font-size: 16px;
    color: #222;
    font-weight: 700;
}
.sgui-samll-title span {
    margin-right: 8px;
    color: #222;
}
.sgui-samll-title {
    line-height: 24px;
}

.sgui-samll-title img {
    vertical-align: middle;
}
.sgui-sub-info {
    color: #222;
    line-height: 22px;
}
.sgui-sub-info span {
    margin-right: 8px;
}

.link-wrapper {
    display: flex;
    align-items: center; /* 垂直居中对齐 */
    width: 100%; /* 容器宽度为100% */
    max-width: 100%; /* 最大宽度不超过100% */
    margin: 0 auto; /* 水平居中 */
    background-color: #f8f8f8; /* 整体背景颜色 */
    padding: 10px 5px; /* 整体内边距 */
    box-sizing: border-box; /* 边框和内边距包含在宽度内 */
    border: 2px solid #000000; /* 添加2px的黑色外边框 */
    overflow: hidden; /* 防止内容溢出 */
  }
  
  .link-cover_wrapper {
    flex: 0 0 50px; /* 图片宽度固定为50px，不伸缩 */
    margin-right: 20px; /* 图片和文本之间的间距 */
    display: flex; /* 添加flex布局 */
    align-items: center; /* 垂直居中图片 */
    justify-content: center; /* 水平居中图片 */
  }
  
  .link-cover {
    width: 50px; /* 图片宽度固定为50px */
    height: 50px; /* 图片高度固定为50px */
    object-fit: cover; /* 保持图片比例 */
  }
  
  .file-info {
    background-color: #eef2f7; /* 右侧文字和链接的背景颜色 */
    padding: 5px 0 0 5px; /* 文字和链接的内边距 */
    border-radius: 5px; /* 圆角边框 */
    flex-grow: 1; /* 让文本容器占据剩余空间 */
    max-width: calc(100% - 70px); /* 设置最大宽度，减去图片宽度和间距 */
    overflow: hidden; /* 防止内容溢出 */
  }
  
  .title {
    margin: 0 0 5px 0; /* 标题的外边距 */
    color: #333; /* 标题颜色 */
    white-space: nowrap; /* 防止标题换行 */
    overflow: hidden; /* 防止标题溢出 */
    text-overflow: ellipsis; /* 标题溢出时显示省略号 */
  }
  
  .desc {
    text-decoration: none; /* 去除链接下划线 */
    color: #0077cc; /* 链接颜色 */
    font-size: 14px; /* 链接字体大小 */
    white-space: nowrap; /* 防止链接换行 */
    overflow: hidden; /* 防止链接溢出 */
    text-overflow: ellipsis; /* 链接溢出时显示省略号 */
  }
  
  .dynamic-con {
    white-space: nowrap; /* 防止动态内容换行 */
    overflow: hidden; /* 防止动态内容溢出 */
    text-overflow: ellipsis; /* 动态内容溢出时显示省略号 */
  }
  
  
  
  
  
  
  
  
  
  
  
  
  
  
  
.index-topNav {
  display: flex;
  flex-wrap: wrap; /* 允许换行 */
  align-items: center;
  justify-content: flex-start; /* 从行的开始对齐 */
  margin-top: 0.26667em;
  box-sizing: border-box;
  padding: 0 0.26667em;
  width: 100%; /* 确保容器宽度为100% */
  background-color: #8ac027; /* 背景颜色 */
}

.index-topNav li {
  border: 2px solid #0067b2;
  flex: 1; /* 允许flex项目伸缩 */
  min-width: calc(20% - 0.53334em); /* 每个li元素最小占据20%的宽度减去间距 */
  margin: 0.26667em; /* 为每个li元素添加左右间距，上下间距为0 */
  text-align: center; /* 文本居中 */
  white-space: nowrap; /* 防止文本换行 */
  overflow: hidden; /* 超出部分隐藏 */
}

.index-topNav li a {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-decoration: none;
  color: inherit;
  padding: 0.5em; /* 增加一些内边距 */
}

.index-topNav li img {
  display: block;
  height: 0.76em;
  margin: 0 auto;
}

.index-topNav li p {
  font-size: 0.8em;
  line-height: 1;
  color: #333;
  margin-top: 0.16em;
}

/* 针对a标签的样式调整 */
.index-topNav a {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center; /* 垂直居中 */
  height: 100%; /* 使a标签填满li的高度 */
}

.index-topNav a img {
  display: block;
  width: 0.92em;
  height: 0.92em;
  margin: 0 auto;
}

.index-topNav a p {
  font-size: 0.8em;
  font-weight: bold;
  color: #0067b2;
  line-height: 1;
  text-align: center;
  margin-top: 0.2em;
}

/* 媒体查询，适应不同屏幕尺寸 */
@media (max-width: 768px) {
  .index-topNav li {
    min-width: calc(25% - 0.53334em); /* 在较小屏幕上，每个li元素占据25%的宽度 */
  }
}

@media (max-width: 480px) {
  .index-topNav li {
    min-width: calc(33.33% - 0.53334em); /* 在更小屏幕上，每个li元素占据33.33%的宽度 */
  }

  .index-topNav li p {
    font-size: 0.8em; /* 减小字体大小以适应更小的屏幕 */
  }
}

@media (max-width: 320px) {
  .index-topNav li {
    min-width: calc(50% - 0.53334em); /* 在非常小的屏幕上，每个li元素占据50%的宽度 */
  }
}
  
.index-topNav li a:hover {
  background-color: #9df5ff; /* 鼠标悬停时的背景颜色 */
  color: #ffffff; /* 鼠标悬停时的文字颜色 */
  transform: scale(1.05); /* 文字和图标放大5% */
  transition: background-color 0.3s ease, color 0.3s ease, transform 0.3s ease; /* 平滑过渡效果 */
}
  
  
  
  
  
  
  
  
  
  
  
  
  
  
  
  
  
  
  
  
  