/* 确保 .menu-container 使用 Flex 布局，并且项目均匀分布 */
.menu-container .el-menu.el-menu--horizontal {
    display: flex !important;
    justify-content: space-around !important; /* 使用 space-around 让每个菜单项周围都有等量的空间 */
    align-items: center;
    background-color: #edeeef !important;
    width: 100%;
    border-bottom: none !important;
}

/* 保证 .el-menu-item 的样式 */
.menu-container .el-menu-item,
.menu-container .el-sub-menu__title {
    text-align: center !important; /* 文本居中 */
    color: #333 !important; /* 默认颜色 */
    font-size: large !important; /* 字体大小 */
}
/* 文章主体样式 */
.article-container {
  background-color: #f9f9f9; /* 可选背景颜色 */
  padding: 20px;
  margin-top: 20px;
  margin-left: 20px;
  margin-right: 20px;
}

/* 标题样式 */
.article-title {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
}

.article-title .title-left {
  display: inline-block;
  padding-left: 10px;
  border-left: 4px solid red;
  font-size: 20px;
  font-weight: bold;
  color: red;
}

.article-title .title-right {
  margin-left: 10px;
  font-size: 16px;
  color: #ccc;
}
.carousel-container {

    margin-right: 10px; 
}
/* 文章内容样式 */
.article-content {
  line-height: 1.6;
  font-size: 16px;
  color: #333;
}

.article-content p {
  margin-bottom: 20px;
}

.headb {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px;
    background-color: white; 
}

.head-right {
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

.lists-container {
    display: flex;
    justify-content: space-between;
    margin-top: 20px;
}

.list-container {
    flex: 80%;
    margin-right: 20px;
}

.list-container:first-child {
    margin-left: 100px; /* 第一个列表不需要右侧间距 */
}
.list-container:last-child {
    margin-right: 100px; /* 最后一个列表不需要右侧间距 */
}

.list-container h2 {
    margin-bottom: 10px; 
    font-size: 1.5em;
    color: rgb(163, 0, 0);
    display: inline;
}

.list-container ul {
    list-style-type: none;
    padding: 0;
    margin: 0; 
}

.list-container li {
    background-color: white;
    border-bottom: 1px dashed #ccc;
    color: #686767;
    font-size: small;
    padding: 8px; 
}

.list-container li:hover {
    background-color: #f9f9f9; /* 鼠标悬停时的背景颜色 */
    cursor: pointer; /* 鼠标悬停时显示手型 */
    color: black;
}

.list-container li:first-child {  
    border-top: 1.5px solid #ccc; /* 增加第一个列表项的上边框 */
}

.list-container li:last-child {  
    border-bottom: 1.5px solid #ccc; /* 增加第一个列表项的上边框 */
}

.list-container span{
    color: rgb(163, 0, 0);
    float: right;
}



.table-container {
    display: flex;
    justify-content: space-around;
    padding-bottom: 20px;
    padding-top: 20px;
    margin: 0 80px;
    background-color: white;
}

.tab1, .tab2, .tab3 {
    width: 30%;
    background-color: white;
    border: 1px solid #ddd;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.tabbox {
    padding: 15px;
}

.tabtit {
    font-size: 20px;
    font-weight: bold;
    margin-bottom: 10px;
}

.tabtit a {
    color: #337ab7;
    text-decoration: none;
}

.tabtit a span {
    margin-left: 5px;
    color: #999;
}

.tabmore {
    margin-top: 15px;
    text-align: right;
}

.tabmore a {
    color: #337ab7;
    text-decoration: none;
}

.comp {
    min-height: 80px;
    margin-bottom: 15px;
}



/* 底边栏整体样式 */
.footer {
  background-color: #f8f8f8;
  padding: 20px 0;
  font-size: 14px;
  text-align: center;
}

/* 友情链接部分 */
.footer-links {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 20px;
  border-top: 1px dashed #ccc;
  border-bottom: 1px dashed #ccc;
}

/* 友情链接左边 */
.footer-links-left {
  background-color: #d90404;
  color: #fff;
  padding: 10px 20px;
  height: 60px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

/* 友情链接标题 */
.footer-links-title {
  font-size: 20px;
  font-weight: bold;
}

/* 友情链接右边 */
.footer-links-right {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

/* 友情链接中的每个链接 */
.footer-links-right a {
  color: #333;
  text-decoration: none;
  padding: 5px 10px;
  transition: color 0.3s ease;
}

/* 友情链接鼠标悬停效果 */
.footer-links-right a:hover {
  color: #d90404;
}

/* 底部导航 */
.footer-nav {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-bottom: 20px;
}

/* 底部导航中的每个链接 */
.footer-nav a {
  color: #333;
  text-decoration: none;
  transition: color 0.3s ease;
}

/* 底部导航鼠标悬停效果 */
.footer-nav a:hover {
  color: #d90404;
}

/* 底部导航中的分隔符 */
.footer-nav span {
  color: #333;
}

/* 版权信息 */
.footer-copyright {
  text-align: center;
  line-height: 1.8;
}

/* 版权信息中的链接 */
.footer-copyright a {
  color: #333;
  text-decoration: none;
}

/* 版权信息鼠标悬停效果 */
.footer-copyright a:hover {
  color: #d90404;
}
.search-icon {
    width: 18px;
    height: 18px;
    vertical-align: middle;
}
/* 白底小圆角按钮，紧贴全局风格 */
.btn-back-home {
    display: inline-block;
    padding: 6px 14px;
    font-size: 14px;
    color: #333;
    background: #fff;
    border: 1px solid #ccc;
    border-radius: 4px;
    text-decoration: none;
    transition: all .2s;
}
.btn-back-home:hover {
    color: #d90404;
    border-color: #d90404;
}