* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  list-style: none;
  text-decoration: none;
  outline: none;
  border: none;
}

.content {
  width: 100%;
  padding: 17px min(9.375vw, 140px) 0;
}

.news-container {
  display: flex;
}
.list-group-item {
  font-family: NotoSansHans;
  font-weight: 500 !important;
  font-size: 20px !important;
  color: #4a4a4a !important;
  line-height: 80px !important;
  height: 80px !important;
  padding-left: 34px ;
  position: relative;
  padding-left: 53px !important;
}
.list-group-item:hover {
  background: #dae7fa !important;
}

.list-group-item .icon{
  position: absolute;
  right: 20px;
  top: 0%;
  width: 20px;
  height: 20px;
  z-index: 1;

}


.list-group-item .icon-ggg {
    display: inline-block;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 6px 0 6px 8px;
    border-color: transparent transparent transparent #666;
    transition: transform 0.3s;
    margin-right: 5px;
}

.list-group-item.expanded .icon-ggg {
    transform: rotate(90deg);
}

.list-group-item .icon-ggg::before {
    display: none;
}

.news-container-right {
  width: 100%;
  display: flex;
  align-items: center;
  flex-direction: column;
}

.news-list {
  width: 100%;
  display: flex;
  align-items: center;
  flex-direction: column;
  gap: 10px;
  overflow: hidden;
  height: 100%;
  background: #ffffff;
  border: 1px solid #e5e5e5;
}

.news-list-item {
  width: 100%;
  display: flex;
  align-items: center;
  height: 54px;
  background: #fff;
  padding-left: 24px;
  padding-right: 28px;
}
.news-list-item a {
  font-family: NotoSansHans;
  font-weight: 400;
  font-size: 16px;
  color: #212329;
  line-height: 30px;
}
.news-list-item .iconfont {
  width: 14px;
  height: 14px;
  font-size: 14px;
  color: #8a8a8a;
  margin-right: 10px;
  margin-bottom: 4px;
}
.news-list-item .news-list-item-right-time {
  font-family: NotoSansHans;
  font-weight: 400;
  font-size: 14px;
  color: #626262;
  margin-left: auto;
}

/* 单数变成灰色 */
.news-list-item:nth-child(odd) {
  background: #f7f9fa;
}
/* 鼠标hover */
.news-list-item:hover {
  background: #dae7fa;
}
.news-list-item:hover a {
  color: #1c62c2;
}
.news-list-item:hover .iconfont {
  color: #1c62c2;
}
.news-list-item:hover .news-list-item-right-time {
  color: #1c62c2;
}

.news-title {
  width: 100%;
  height: 74px;
  background: #ffffff;
  border: 1px solid #e5e5e5;
  font-family: NotoSansHans;
  font-weight: bold;
  font-size: 20px;
  color: #4a4a4a;
  padding-left: 24px;
  line-height: 74px;
  margin-bottom: 14px;
}

