.articleslist {
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: 100%;
}

.articleslist-warp {
  width: 0%;
  margin: 0 auto;
  box-shadow: 0 0 10px #ccc;
  padding: 1rem;
  min-width: 970px;
}

.articleslist-title {
  font-weight: 700;
  font-style: normal;
  font-family: "微软雅黑 Bold", "微软雅黑", sans-serif;
  font-size: 16px;
  color: #666666;
}

.articleslist-cards {
  display: grid;
  grid-template-columns: 280px 280px 280px;
  gap: 2rem;
  justify-content: center;
  width: 100%;
  margin: 1rem 0;
}

.pageswitch {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2rem;
  margin: 2rem 0;
}

.pageswitch button {
  border-width: 0px;
  width: 100px;
  height: 30px;
  background-color: rgba(51, 119, 255, 1);
  border: none;
  border-radius: 5px;
  color: white;
  cursor: pointer;
  transition: .3s;
}

.pageswitch button:hover{
  background-color: rgba(51, 119, 255, 0.8);
}

.articleslist-list {
  width: 100%;
  display: flex;
  flex-direction: column;
}

.articleslist-list-item {
  display: flex;
  width: 100%;
  justify-content: space-between;
  margin: 1rem 0;
  cursor: pointer;
  font-family: "思源黑体 CN Normal", "思源黑体 CN Regular", "思源黑体 CN",
    sans-serif;
  font-weight: 350;
  font-style: normal;
  font-size: 14px;
}

.item-date {
  font-family: "Times New Roman Normal", "Times New Roman", sans-serif;
  font-weight: 400;
  font-style: normal;
  color: #878580;
}

.articleslist-list-item:hover {
  color: rgb(51, 119, 255);
}
