@charset "UTF-8";
/* 清除浏览器默认样式 */

/* 重置所有元素的盒模型 */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* 重置根元素大小，便于使用rem单位 */
html {
  font-size: 16px;
  -webkit-text-size-adjust: 100%; /* 防止iOS横屏时自动调整字体大小 */
}

/* 设置基础的字体样式和行高 */
body {
  font-family: "Microsoft YaHei", "SimSun", sans-serif;
  font-size: 14px;
  color: #333;
  line-height: 1.5;
  height: 100%;
  -webkit-font-smoothing: antialiased; /* 平滑字体 */
  -moz-osx-font-smoothing: grayscale;
}

/* 移除列表标记 */
ul,
ol {
  list-style: none;
}

/* 重置表格样式 */
table {
  border-collapse: collapse;
  border-spacing: 0;
}

/* 重置链接样式 */
a {
  text-decoration: none;
  color: #333;
}

a:hover {
  color: #0056b3;
}

/* 表单元素样式重置 */
button,
input,
select,
textarea {
  font-family: inherit;
  font-size: 100%;
  line-height: 1.15;
  margin: 0;
}

button,
input {
  overflow: visible;
}

button,
select {
  text-transform: none;
}

button,
[type="button"],
[type="reset"],
[type="submit"] {
  -webkit-appearance: button;
  appearance: button;
}

/* 修复Firefox浏览器表单控件内间距问题 */
button::-moz-focus-inner,
[type="button"]::-moz-focus-inner,
[type="reset"]::-moz-focus-inner,
[type="submit"]::-moz-focus-inner {
  border-style: none;
  padding: 0;
}

/* 修复Safari浏览器中的奇怪下边距 */
button,
[type="button"],
[type="reset"],
[type="submit"] {
  margin: 0;
}

/* 让图片和多媒体元素更好处理 */
img,
video,
canvas,
audio,
iframe,
embed,
object {
  display: block;
  /* width: 100%; */
  /* margin: 0 auto; */
}

/* 移除图片底部间隙 */
img {
  border-style: none;
  vertical-align: middle;
}

/* 确保textarea只能垂直调整大小 */
textarea {
  resize: vertical;
}

/* 使用border-box布局 */
/* *,
*::before,
*::after {
  box-sizing: inherit;
} */

/* 消除移动端点击元素时的高亮效果 */
a,
button,
input,
select,
textarea {
  -webkit-tap-highlight-color: transparent;
}

/* 修复IE的SVG溢出问题 */
svg:not(:root) {
  overflow: hidden;
}

/* 清除浮动 */
.clearfix::after {
  content: "";
  display: table;
  clear: both;
}

/* 隐藏元素但保留可访问性 */
.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* 全局样式 */
.container {
  max-width: 1400px;
  width: 100%;
  margin: 0 auto;
  /* padding: 0 15px; */
}

/* 面包屑导航 */
.breadcrumb-nav {
  background-color: transparent;
  padding: 0;
  border-bottom: none;
  border-left: 4px solid #0667c2;
  margin: 0 0 20px 0;
}

.breadcrumb-container {
  display: flex;
  align-items: center;
  background-color: #f3f8fc;
  padding: 12px 15px;
  margin-top: 20px;
}

.breadcrumb-item {
  color: #333;
  font-size: 16px;
  text-decoration: none;
}

.breadcrumb-item:hover {
  color: #0667c2;
}

.breadcrumb-separator {
  margin: 0 10px;
  color: #666;
  font-size: 12px;
}

.breadcrumb-current {
  color: #666;
  font-weight: normal;
  font-size: 16px;
}

/* 页面顶部样式 - 站点顶部导航区域 */
.top-header {
  color: #fff;
  font-size: 12px;
  background: url(../images/header_bg.png) no-repeat center center;
  padding-bottom: 15px; /* 增加底部间距 */
}

/* 顶部容器布局 */
.top-header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  /* padding-top: 8px; */
}

/* 顶部链接样式 */
.top-links a {
  margin-left: 15px;
  color: #fff;
}

/* 顶部链接悬停效果 */
.top-links a:hover {
  color: #0056b3;
}

/* 主标题区域样式 - 网站标志和搜索框所在区域 */
.main-header {
  padding: 56px 0; /* 增加上下内边距 */
}

/* 主标题容器布局 */
.main-header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* Logo区域样式 */
.logo {
  display: flex;
  align-items: center;
}

/* Logo图片样式 */
.logo img {
  height: 95px; /* 适度增加logo尺寸 */
}

/* Logo标题样式 */
.logo h1 {
  color: white;
  font-size: 24px;
  margin-left: 10px;
}

/* 搜索框样式 */
.search-box {
  display: flex;
  background-color: white;
  border-radius: 6px;
  font-size: 16px;
  overflow: hidden;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

/* 搜索选择器样式 */
.search-select {
  position: relative;
  min-width: 90px;
  border-right: none;
}

/* 搜索下拉选择框样式 */
.search-select select {
  appearance: none; /* 移除默认下拉箭头 */
  -webkit-appearance: none;
  -moz-appearance: none;
  width: 100%;
  height: 100%;
  padding: 0 10px;
  border: none;
  background: transparent;
  cursor: pointer;
  font-size: 14px;
  color: #333;
  outline: none;
  text-align: center;
  padding-right: 20px;
}

/* 自定义下拉箭头样式 */
.select-arrow {
  position: absolute;
  right: 6px;
  top: 50%;
  transform: translateY(-50%);
  width: 0;
  height: 0;
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  border-top: 5px solid #666;
  pointer-events: none; /* 确保点击事件穿透到select元素 */
}

/* 搜索输入框样式 */
.search-box input {
  border: none;
  padding: 15px 12px;
  width: 315px;
  outline: none;
  flex: 1;
  /* border-left: 1px solid #e0e0e0; */ /* 注释掉的左边框 */
}

/* 搜索按钮样式 */
.search-box button {
  background-color: #0056b3;
  color: white;
  border: none;
  padding: 8px 25px;
  cursor: pointer;
}

/* 顶部图标样式 - 用于顶部社交媒体或功能图标 */
.search-top-icon {
  display: flex;
  justify-content: flex-end;
  margin-bottom: 15px;
}

/* 图标链接样式 */
.icon-link {
  margin-left: 15px;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: left;
  font-size: 16px;
  transition: all 0.3s ease;
}

/* 图标图片样式 */
.icon-link img {
  height: 25px;
  margin-right: 5px;
  width: auto;
}

/* 图标链接悬停效果 */
.icon-link:hover {
  transform: translateY(-3px);
  color: #fff;
}

/* 主导航样式 - 网站主菜单 */
.main-nav {
  background: linear-gradient(to right, #215fa8, #164379); /* 蓝色渐变背景 */
  position: relative;
}

/* 页面顶部 */
.top-header {
  color: #fff;
  font-size: 12px;
  padding-bottom: 0;
  background: url(../imgs/header_bg.png) no-repeat center center;
}

.top-header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.top-links a {
  margin-left: 15px;
  color: #fff;
}

.top-links a:hover {
  color: #0056b3;
}

/* 主标题区域 */
.main-header {
  /*padding: 62px 0;*/
  padding: 40px 0 70px 0;
}

.main-header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  display: flex;
  align-items: center;
}

.logo img {
  /*height: 85px;*/
}

.logo h1 {
  color: white;
  font-size: 24px;
  margin-left: 10px;
}

/* 顶部图标样式 */
.search-top-icon {
  display: flex;
  justify-content: flex-end;
  margin-bottom: 15px;
}

.icon-link {
  margin-left: 15px;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: left;
  font-size: 16px;
  transition: all 0.3s ease;
}

.icon-link img {
  height: 25px;
  margin-right: 5px;
  width: auto;
}

.icon-link:hover {
  transform: translateY(-3px);
  color: #fff;
}

/* 导航列表样式 */
.nav-list {
  display: flex;
  justify-content: space-between;
}

.nav-list li {
  position: relative;
}

.nav-list li a {
  color: white;
  display: block;
  padding: 17px 15px;
  font-size: 18px;
  transition: all 0.3s ease;
}

.nav-list li a:hover,
.nav-list li a.active {
  background-color: #1c4a81;
}

/* 下拉菜单样式 */
.dropdown-menu {
  position: absolute;
  overflow: hidden;
  top: 100%;
  left: 0;
  min-width: 120px;
  width: max-content;
  margin-top: 5px;
  background-color: #184982;
  border-radius: 4px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.15);
  z-index: 100;
  text-align: center;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s;
}

.dropdown-menu a {
  display: block;
  padding: 8px 12px !important;
  color: #fff;
  text-decoration: none;
  transition: all 0.3s ease;
  font-size: 17px !important;
}

.dropdown-menu a:hover {
  color: #f37021;
  font-weight: bold;
  padding-left: 20px;
}

.sitemap-title {
  font-size: 18px;
  color: #215ea6;
  margin-bottom: 15px;
  padding-left: 10px;
  border-bottom: 2px solid #e0e0e0;
  padding-bottom: 10px;
}

/* 下拉菜单显示状态 */
.nav-list li:hover > a,
.nav-list li a.active {
  background-color: #184982;
}

.nav-list li:hover .dropdown-menu,
.nav-list li a.active + .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.nav-list li:hover .dropdown-menu a,
.nav-list li a.active + .dropdown-menu a {
  transform: translateX(0);
  opacity: 1;
}

/* 为最后一个导航项的下拉菜单特殊处理 */
.nav-list li:last-child .dropdown-menu {
  left: auto;
  right: 0;
}

/* 页脚链接区域和二级菜单 */
.footer-links {
  background-color: #17467d;
  padding: 10px 0;
  margin-bottom: 0;
  border-bottom: none;
  position: relative;
  z-index: 100;
}

.links-wrapper {
  display: flex;
  justify-content: center;
  position: relative;
}

.footer-link-item {
  position: relative;
  margin: 0 10px;
}

.footer-link {
  color: rgba(255, 255, 255, 0.9);
  padding: 15px 25px;
  background: #1e5da8;
  font-size: 15px;
  display: block;
  transition: all 0.3s ease;
  position: relative;
  z-index: 10;
}

.footer-link:hover {
  color: #fff;
  background: #f37021;
}
.link-no:hover::after {
  border-color: #f37021 !important;
}
.link-no::after {
  border-color: #1e5da8 !important;
}

/* 页脚 */
.footer {
  background-color: #1e5da8;
  color: white;
  padding: 0 0 30px;
  margin-top: 0; /* 移除默认的顶部外边距 */
}

.footer-info {
  display: flex;
  justify-content: space-between;
  align-items: center;
  text-align: center;
  line-height: 2;
  color: rgba(255, 255, 255, 0.7);
  padding-top: 30px;
}

.footer a:hover {
  color: #fff;
  text-decoration: underline;
}

.footer-info p {
  margin: 0;
  font-size: 13px;
  color:#fff;
}
.footer-info a {
  color: #fff;
}

/* 左侧菜单 */
.sidebar-menu {
  width: 300px;
  flex-shrink: 0;
  margin-right: 20px;
}

.sidebar-menu-item {
  display: block;
  padding: 20px;
  color: #333;
  font-size: 18px;
  margin-bottom: 1px;
  text-decoration: none;
  transition: all 0.3s ease;
  margin-bottom: 5px;
  position: relative;
  overflow: hidden;
  z-index: 1;
  border-radius: 2px;
}

.sidebar-menu-item:not(:first-child)::before {
  content: "";
  position: absolute;
  left: -100%;
  top: 0;
  width: 4px;
  height: 100%;
  background-color: #1266c4;
  transition: all 0.3s ease;
  z-index: 2;
}

.sidebar-menu-item:not(:first-child)::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    to right,
    rgba(230, 238, 246, 0.7),
    rgba(230, 238, 246, 0)
  );
  opacity: 0;
  z-index: -1;
  transition: opacity 0.3s ease;
}

.sidebar-menu-item:not(:first-child):hover::before {
  left: 0;
}

.sidebar-menu-item:not(:first-child):hover::after {
  opacity: 1;
}

.sidebar-menu-item:first-child {
  background-color: #e6eef6;
  color: #1266c4;
  font-size: 20px;
  font-weight: bold;
  padding-left: 16px;
  position: relative;
  letter-spacing: 0.5px;
}

.sidebar-menu-item:first-child:hover {
  background-color: #d9e5f5;
}

.sidebar-menu-item:hover {
  background-color: #f4f8fc;
  color: #1266c4;
  padding-left: 25px;
  box-shadow: 0 2px 5px rgba(18, 102, 196, 0.1);
  transform: translateX(3px);
  letter-spacing: 0.5px;
}

.sidebar-menu-item.active {
  background-color: #215ea6;
  color: white;
  font-weight: bold;
  padding-left: 25px;
  box-shadow: 0 2px 8px rgba(18, 102, 196, 0.3);
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

.sidebar-menu-item.active:hover {
  background-color: #0a5cb9;
  transform: translateX(3px);
  box-shadow: 0 3px 10px rgba(10, 92, 185, 0.4);
}

/* 内容布局 */
.content-layout {
  display: flex;
  gap: 0;
}

/* 右侧内容区域 */
.main-content-area {
  flex: 1;
}

.date-info,
.top-links,
.top-links:hover {
  font-size: 16px;
  color: #fff;
}

/* 隐藏内容的通用类 */
.hide-content {
  display: none !important;
}

/* 响应式规则已移至index.css文件中集中管理 */

/* 响应式样式 - 顶部和底部区域的媒体查询 */
@media (max-width: 1200px) {
  .container {
    max-width: 960px;
  }
}

@media (max-width: 992px) {
  .container {
    max-width: 720px;
  }

  /* 顶部链接和图标 */
  .top-links,
  .search-top-icon {
    display: none;
  }
  .search-box input{
    width:100%;
  }

}

@media (max-width: 768px) {
  /* 顶部导航和菜单 */
  .top-links,
  .search-top-icon,
  .main-nav {
    display: none;
  }

  .mobile-menu-btn {
    display: block !important;
  }

  /* 头部布局 */
  .main-header {
    padding: 20px 0;
    background: url(../imgs/header_bg.png) no-repeat center center;
    background-size: cover;
  }

  .main-header .container {
    flex-direction: column;
    align-items: center;
  }

  .logo {
    margin-bottom: 10px;
  }

  .logo img {
    /* height: 50px;
    display: block; */
    height: 60px;
    margin-bottom: 20px;
  }

  /* 搜索区域 */
  .search-box {
    width: 100%;
    max-width: 300px;
  }

  .search-box input {
    width: 170px;
  }

  .search-box button {
    padding: 8px 15px;
  }

  /* 页脚区域 */
  .footer-links {
    padding: 10px 0;
  }

  .links-wrapper {
    flex-wrap: wrap;
    align-items: center;
  }

  .footer-link-item {
    margin: 5px;
    width: calc(90% - 10px);
  }

  .footer-link {
    width: 100%;
    padding-top: 10px;
    padding-bottom: 10px;
    text-align: center;
  }

  /* 小屏幕上的二级菜单样式 */
  .footer-submenu {
    position: static;
    width: 100%;
    box-shadow: none;
    border-radius: 0;
    visibility: hidden;
    opacity: 0;
    height: 0;
    overflow: hidden;
    padding-bottom: 0;
    padding-top: 0;
  }

  /* 小屏幕上二级菜单的显示状态 */
  .footer-link-item:hover .footer-submenu,
  .footer-submenu.submenu-active {
    visibility: visible;
    opacity: 1;
    height: auto;
    transform: none;
  }
}

@media (max-width: 576px) {
  /* 顶部区域 */
  .top-header .container {
    flex-direction: column;
    align-items: center;
    padding: 70px 0 40px 0;
  }

  .top-header > .container {
    display: none;
  }

  .date-info,
  .top-links {
    text-align: center;
    margin: 5px 0;
  }

  /* 头部布局 */
  .main-header {
    padding: 15px 0;
  }

  .logo img {
    height: 60px;
    margin-bottom: 20px;
  }

  .icon-link img {
    height: 20px;
  }

  /* 搜索区域 */
  .search-box {
    max-width: 100%;
  }

  .search-box input {
    width: 170px;
  }

  .search-select {
    min-width: 70px;
  }

  /* 调整小屏幕上的菜单按钮位置 */
  .mobile-menu-btn {
    top: 15px;
    right: 15px;
    width: 40px;
    height: 40px;
  }

  .mobile-menu-btn span {
    width: 22px;
    left: 9px;
  }

  .mobile-menu-btn span:nth-child(1) {
    top: 11px;
  }

  .mobile-menu-btn span:nth-child(2) {
    top: 18px;
  }

  .mobile-menu-btn span:nth-child(3) {
    top: 25px;
  }

  .mobile-menu-btn.active span:nth-child(1),
  .mobile-menu-btn.active span:nth-child(3) {
    top: 18px;
  }
}
/* 页脚样式 - 网站底部版权信息区域 */
.footer {
  background-color: #1e5da8;
  color: white;
  padding: 0 0 30px;
  margin-top: 0; /* 移除默认的顶部外边距 */
}

/* 页脚信息样式 */
.footer-info {
  display: flex;
  justify-content: space-between;
  align-items: center;
  text-align: center;
  line-height: 2;
  color: rgba(255, 255, 255, 0.7);
  padding-top: 30px;
}

/* 页脚段落样式 */
.footer-info p {
  margin: 0;
  font-size: 13px;
}

/* 页脚链接区域和二级菜单 */
.footer-links {
  background-color: #17467d;
  padding: 10px 0;
  margin-bottom: 0;
  border-bottom: none;
  position: relative;
  z-index: 100;
}

.links-wrapper {
  display: flex;
  justify-content: center;
  position: relative;
}

.footer-link-item {
  display: flex;
  flex-direction: column;
  gap: 10px;
  position: relative;
  margin: 0 10px;
}

.footer-link {
  color: rgba(255, 255, 255, 0.9);
  padding: 5px 70px;
  background: #1e5da8;
  font-size: 15px;
  display: block;
  transition: all 0.3s ease;
  position: relative;
}

.footer-link:hover {
  color: #fff;
  background: #f37021;
}

/* 二级菜单样式 */
.footer-link::after {
  content: "";
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 4px 4px 0 4px;
  border-color: rgba(255, 255, 255, 0.7) transparent transparent transparent;
  transition: all 0.3s ease;
}

.footer-link:hover::after {
  transform: translateY(-50%) rotate(180deg);
  border-color: #fff transparent transparent transparent;
}

.footer-submenu {
  display: flex;
  flex-wrap: wrap;
  justify-content: left;
  position: absolute;
  bottom: 120%;
  left: -100%;
  background: #1e5da8;
  padding: 10px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all 0.3s ease;
  z-index: 200;
  border-radius: 4px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  width: 300%;
}

.footer-link-item:hover .footer-submenu,
.footer-submenu.submenu-active {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.footer-submenu a {
  display: block;
  padding: 12px 20px;
  text-align: center;
  color: rgba(255, 255, 255, 0.9);
  font-size: 14px;
  transition: all 0.3s ease;
  text-align: center;
  
}

.footer-submenu a:last-child {
  border-bottom: none;
}

.footer-submenu a:hover {
  background: #f37021;
  color: #fff;
  padding-left: 25px;
}

/* 公告滚动区域 */
.announcement-container {
  flex: 1;
  height: 44px;
  overflow: hidden;
  position: relative;
  margin-right: 15px;
  border-radius: 4px;
}

.announcement-wrapper {
  position: absolute;
  width: 100%;
  transition: transform 0.5s ease;
  left: 0;
  top: 0;
}

.announcement-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 15px;
  height: 44px;
  box-sizing: border-box;
  width: 100%;
}

.announcement-text {
  flex: 1;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  color: #333;
  font-size: 14px;
  padding-right: 15px;
  max-width: calc(100% - 90px);
}

.announcement-item .date {
  flex: 0 0 80px;
  text-align: right;
  color: #999;
  font-size: 14px;
  margin-left: auto;
  white-space: nowrap;
}
/* 移动端菜单按钮样式 */
.mobile-menu-btn {
  display: none;
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 1001;
  width: 45px;
  height: 45px;
  background: #0056b3;
  border-radius: 4px;
  cursor: pointer;
  box-shadow: 0 3px 8px rgba(0, 0, 0, 0.3);
  border: 2px solid rgba(255, 255, 255, 0.8);
  transition: all 0.3s ease;
}

.mobile-menu-btn span {
  display: block;
  position: absolute;
  height: 3px;
  width: 26px;
  background: #fff;
  left: 9px;
  transition: all 0.3s ease;
}

.mobile-menu-btn span:nth-child(1) {
  top: 12px;
}

.mobile-menu-btn span:nth-child(2) {
  top: 20px;
}

.mobile-menu-btn span:nth-child(3) {
  top: 28px;
}

.mobile-menu-btn.active span:nth-child(1) {
  transform: rotate(45deg);
  top: 20px;
}

.mobile-menu-btn.active span:nth-child(2) {
  opacity: 0;
}

.mobile-menu-btn.active span:nth-child(3) {
  transform: rotate(-45deg);
  top: 20px;
}

.mobile-nav {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.95);
  z-index: 999;
  padding-top: 70px;
  overflow-y: auto;
  transition: all 0.3s ease;
}

.mobile-nav-list {
  padding: 0;
  margin: 0;
}

.mobile-nav-list li {
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.mobile-nav-list li a {
  display: block;
  padding: 15px 20px;
  color: #fff;
  font-size: 16px;
  text-align: center;
  transition: all 0.3s ease;
}

.mobile-nav-list li a:hover {
  background: rgba(255, 255, 255, 0.1);
  color: #f37021;
}
/* 响应式样式 */
@media (max-width: 768px) {
  .links-wrapper {
    flex-wrap: wrap;
  }

  .section-header {
    background: #fff !important;
  }

  .footer-link-item {
    margin: 5px;
    width: calc(50% - 10px);
  }

  .footer-link {
    width: 100%;
    text-align: center;
  }

  .footer-submenu {
    display: none;
    position: static;
    width: 100%;
    margin-top: 5px;
    box-shadow: none;
    border-radius: 0;
    /* visibility: hidden; */
    opacity: 0;
    height: 0;
    overflow: hidden;
  }

  .footer-link-item:hover .footer-submenu,
  .footer-submenu.submenu-active {
    /* visibility: visible; */
    display: block;
    opacity: 1;
    height: auto;
    transform: none;
  }

  /* 公告区域移动端优化 */
  .announcement-container {
    margin-right: 0;
    border-radius: 4px;
  }

  .announcement-item {
    padding: 0 15px;
    background: #fafcff;
    border-bottom: none;
  }

  .announcement-text {
    font-size: 14px;
    line-height: 44px;
    padding-right: 10px;
    max-width: calc(100% - 90px);
  }

  .announcement-item .date {
    font-size: 14px;
    line-height: 44px;
    opacity: 1;
    position: relative;
    z-index: 1;
    background: #fafcff;
    padding-left: 10px;
  }
  .footer img{
   display:none;
  }
  .footer{
    padding:0 10px
  }
}
