a:link {
    color: #000000;
    text-decoration: none;
}
a:visited {
    text-decoration: none;
    color: #000000;
}
a:hover {
    text-decoration: none;
    color: #00F733;
}
a:active {
    text-decoration: none;
    color: #0AFF00;
}
/*返回列*/
.fhsjdiv{
  display: flex;
  justify-content: center; /* 水平居中 */
  align-items: center; /* 垂直居中 */
  height: 30px; /* 容器高度 */
}

/*底部浮动*/
 .footer {
    position: fixed;
    left: 0;
    bottom: 0;
    width: 100%;
    background-color: #FFFFFF;
    color: #000000;
    text-align: center;
    padding: 10px 0;
  }

/*标题栏*/
.biaotilan{
  display: flex;
  justify-content: center; /* 水平居中 */
  align-items: center; /* 垂直居中 */
  height: 30px; /* 容器高度 */
}
/*首页列表*/
.liebiao {
  position: relative;
  height: 40px; /* 设置容器高度 */
  border-top: none; /* 移除顶部边框 */
  border-right: none; /* 移除右侧边框 */
  border-left: none; /* 移除左侧边框 */
  border-bottom: 1px solid #6E6E6E; /* 设置底部边框 */
   /*border: 1px solid #6E6E6E; /* 设置边框 */
  background-image: url("Image/jt.png");
  background-position: right; /* 背景图片靠左 */
  background-repeat: no-repeat; /* 不平铺背景图片 */
  margin-top: 3px; /* 设置上间距 */
}
 
.liebiao_neinong {
  position: absolute; 
  padding: 0 15px; /* 文字前后间隔 */
  top: 50%;
  transform: translateY(-50%); /* 使内容垂直居中 */
}

/*类页排列*/
.container {
  display: flex; /* 使用Flexbox布局 */
  justify-content: center; /* 水平居中 */
}
 
.box {
  /* background: #;*/
  display: flex; /* 使用Flexbox布局 */
  /*justify-content: center; /* 水平居中 */
  width: 200px; /* 设置盒子宽度 */
  height: 260px; /* 设置盒子高度 */
  margin: 2px; /* 设置盒子间距 */
}
 
/* 横向排列 */
.box-horizontal {
 /* background-color: blue;  设置背景颜色 */
  margin-top: 3px; /* 设置上间距 */
}
 
/* 纵向排列 */
.box-vertical {
  background-color: red; /* 设置背景颜色 */
  flex-direction: column; /* 设置子元素纵向排列 */
}


