.section {
  padding: 156px 0 100px;
  background: #F4F5F5;
}
.section .wrap {
  width: 1200px;
  margin: 0 auto;
}
.section .wrap .title {
  color: #333;
  text-align: center;
  font-size: 40px;
  font-weight: 600;
  margin-bottom: 10px;
}
.section .wrap .des {
  color: #5D6970;
  text-align: center;
  font-size: 18px;
  font-weight: 400;
  margin-bottom: 24px;
}
.section .wrap .links {
  display: flex;
  gap: 10px;
  margin-bottom: 40px;
}
.section .wrap .links a {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 22px;
  height: 48px;
  border-radius: 8px;
  background: #FFF;
  transition: 0.6s;
}
.section .wrap .links a h2 {
  color: #333;
  font-size: 14px;
  font-weight: 400;
  transition: 0.6s;
}
.section .wrap .links a:hover, .section .wrap .links a.on {
  background: var(--color);
}
.section .wrap .links a:hover h2, .section .wrap .links a.on h2 {
  color: #FFFFFF;
}
.section .wrap .list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 60px 40px;
  margin-bottom: 83px;
}
.section .wrap .list .item {
  display: block;
  min-width: 0;
}
.section .wrap .list .item .img {
  width: 100%;
  height: 320px;
  border-radius: 8px;
  overflow: hidden;
  margin-bottom: 20px;
}
.section .wrap .list .item .img img {
  display: block;
  width: 100%;
  height: 100%;
  transition: 3s;
}
.section .wrap .list .item .date {
  color: #333;
  font-size: 16px;
  font-weight: 400;
  margin-bottom: 18px;
}
.section .wrap .list .item .item_title {
  color: #333;
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 20px;
  transition: 0.6s;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  min-width: 0;
}
.section .wrap .list .item .item_Des {
  color: #5D6970;
  font-size: 16px;
  font-weight: 400;
  padding: 0 41px 0 0;
  -webkit-line-clamp: 2;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
  min-width: 0;
}

.page {
  display: flex;
  justify-content: center;
  gap: 10px;
}
.page a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  background: #FFFFFF;
  color: #555;
  font-size: 16px;
  font-weight: 400;
  border-radius: 50%;
  transition: 0.6s;
}
.page a svg path {
  transition: 0.6s;
}
.page a.sp {
  background: unset !important;
  width: unset;
}
.page a.sp:hover {
  color: var(--color) !important;
}
.page a:hover, .page a.on {
  background: var(--color);
  color: #FFFFFF;
}
.page a:hover svg, .page a.on svg {
  display: block;
  width: 16px;
  height: 16px;
}
.page a:hover svg path, .page a.on svg path {
  fill: #FFFFFF;
}
