
/* 要闻动态页面样式 */
.news-page {
  /* padding: 20px; */
}
.icon_position {
  width: 16px;
  height: 16px;
  margin-right: 8px;
  margin-left: 20px;
}
/* 当前位置导航 */
.current-position {
  padding: 10px 0;
  border-bottom: 1px solid #eee;
  margin-bottom: 20px;
  font-size: 14px;
  color: #666;
  background-color: #f5f5f5;
  align-items: center;
}
.current-position a {
  color: #0066cc;
  text-decoration: none;
}
.current-position a:hover {
  text-decoration: underline;
}
/* 左右布局 */
.news-container1 {
  display: flex;
  margin-bottom: 20px;
  align-items: stretch;
}
.clear_padding {
  padding: 0 !important;
}
/* 左侧子菜单 */
.news-sidebar {
  width: 300px;
  background-color: #f6f6f6;
  /* padding-right: 40px; */
  margin-right: 40px;
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
}
.news-sidebar ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.news-sidebar li {
  /* padding-top: 35px;
dding-bottom: 35px; */
  cursor: pointer;
  border-left: 3px solid transparent;
  overflow: hidden;
  /* transition: all 0.3s; */
  /* 字体 */
  font-family: "HarmonyOS Sans SC";
  font-weight: 500;
  font-size: 18px;
  color: #666666;
  line-height: 88px;
  vertical-align: middle;
}
.news-sidebar li a{
    text-decoration: none;
    color: #666666;
}
.sidebar_title {
  padding-top: 35px;
  padding-bottom: 35px;
  text-align: center;
  background: url("../images/icon_bg.png") no-repeat;
  background-size: 100% 100%;
  background-color: #f0f7ff;
  /* 字体 */
  font-family: "Source Han Serif CN";
  letter-spacing: 2px;
  font-weight: 600;
  font-size: 20px;
  line-height: 20px;
  vertical-align: middle;
  color: #222222;
}
.sidebar-normal {
  letter-spacing: 0px;
  position: relative;
  padding-left: 69px;
  text-align: left;
}
.sidebar-normal::after {
  position: absolute;
  content: "";
  left: 36px;
  top: 50%;
  transform: translateY(-50%);
  width: 20px;
  height: 20px;
  background: url("../images/icon_line.png") no-repeat;
  background-size: 100% 100%;
}
.sidebar-active {
  letter-spacing: 0px;
  position: relative;
  padding-left: 69px;
  text-align: left;
  color: #1d6312 !important;
}
.sidebar-active a{
    color: #1d6312 !important;
}
.sidebar-active::after {
  transition: all 0.3s;
  position: absolute;
  content: "";
  left: 36px;
  top: 50%;
  transform: translateY(-50%);
  width: 20px;
  height: 20px;
  background: url("../images/icon_arrows.png") no-repeat;
  background-size: 100% 100%;
}
/* 右侧内容列表 */
.news-content {
  flex: 1;
}
.link-list {
  list-style: none;
}
.link-list li {
  padding: 10px;
  border-bottom: 1px solid #00000008;
}
.link-list li:hover {
  background-color: #1d631208;
}
.link-list li:last-child {
  border-bottom: none;
}
.link-list a {
  color: #333;
  text-decoration: none;
  display: flex;
  align-items: center;
}
.link-list a .date-box {
  display: flex;
  align-items: center;
  flex-direction: column;
}
.link-list a .date {
  font-size: 24px;
  font-weight: 500;
  color: #222;
}
.link-list a .month {
  font-size: 14px;
  color: #999;
}
.link-list a .line {
  background: #d9d9d9;
  width: 2px;
  height: 48px;
  margin: 0 10px;
}
.link-list a span {
  font-size: 16px;
  font-weight: 500;
  color: #222;
  flex: 1;
}
.link-list a:hover .date {
  color: #1d6312;
}
.link-list a:hover .month {
  color: #1d6312;
}
.link-list a:hover .line {
  background-color: #1d6312;
}
.link-list a:hover span {
  color: #1d6312;
}
/* 分页 */
/*.pagination_prev {
  width: 32px;
  height: 32px;
}
.pagination_next {
  width: 32px;
  height: 32px;
}
.pagination {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 36px;
  margin-bottom: 36px;
}
.pagination a {
  display: inline-block;
  width: 32px;
  height: 32px;
  border-radius: 3px;
  margin: 0 8px;
  color: rgba(0, 0, 0, 0.9);
  text-decoration: none;
  border: 1px solid rgba(220, 220, 220, 1);*/
  /* 字体 */
  /*font-weight: 400;
  font-size: 14px;
  line-height: 32px;
  text-align: center;
}
.pagination a.active {
  background-color: rgba(29, 99, 18, 1);
  color: white;
  border-color: rgba(29, 99, 18, 1);
}
.pagination a:hover:not(.active) {
  background-color: #f5f5f5;
}*/
.goto {
  padding: 2px 8px;
  display: flex;
  align-items: center;
  background-color: #f3f3f3;
  border-radius: 3px;
  /* 字体 */
  font-weight: 400;
  font-size: 14px;
  line-height: 22px;
  text-align: center;
}
.goto input {
  width: 57px;
  height: 28px;
  border: 1px solid rgba(220, 220, 220, 1);
  margin: 0 8px;
  text-align: center;
  outline: none;
  border-radius: 3px;
  padding: 0 8px;
}
@media (max-width: 768px) {
  /* 上下布局 */
  .news-container1 {
    flex-direction: column;
  }
  .news-sidebar li {
    padding-top: 20px;
    padding-bottom: 20px;
    font-size: 15px;
  }
  /* 左侧子菜单 */
  .news-sidebar {
    width: 100%;
  }
  .news-sidebar ul {
    display: flex;
  }
  .li-text {
    margin-left: 35px;
  }
  .news-sidebar li {
    flex: 1;
    box-sizing: border-box;
  }
  .sidebar-normal {
    padding-left: 0;
  }
  .sidebar-normal::after {
    left: 10px;
  }
  .sidebar-active {
    padding-left: 0;
  }
  .sidebar-active::after {
    left: 10px;
  }
  .news-item1 {
    padding: 5px;
  }
  .item-text {
    /* 字体 */
    margin-left: 5px;
  }
  .news-date {
    width: auto;
    margin-right: 5px;
  }
}