.second-card-body {
  margin-top: 20px;
  text-align: center;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-gap: 20px 25px;
}

.second-card-body-news {
  width: 100%;
  /* height: 480px; */
  /* border-radius: 62px 0 62px 0; */
  overflow: hidden;
  /* background-color: #fff; */
  cursor: pointer;
  margin-bottom: 20px;
}
.second-card-body-news a {
  display: block;
  height: 100%;
  text-decoration: none;
}
.second-card-body-news:hover .news-title {
  color: var(--main-color) !important;
}
.second-card-body-news .news-img img {
  width: 100%;
  /* height: 160px; */
  display: block;
  margin: 0 auto 0;
  object-fit: cover;
}

.second-card-body-news .news-img {
  transition: transform 1s ease;
}

.second-card-body-news .news-img:hover {
  transform: translate(0, -10px);
  transform: scale(1.2);
  transition: transform 1s ease;
}

.second-card-body-news .news-title {
  line-height: 20px;
  font-size: 19px;
  margin-top: 25px;
  color: #262626;
}

.second-card-body-news .news-divide {
  width: 52px;
  height: 2px;
  display: inline-block;
  /* background-color: var(--main-color); */
  margin: 2px 0;
}

.second-card-body-news .news-soto {
  line-height: 22px;
  font-size: 12px;
  color: #ffa780;
  margin-bottom: 44px;
}
.list-pages {
  width: 100%;
  height: 60px;
  margin-top: 40px;
  margin-bottom: 30px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.list-page {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 28px;
  height: 28px;
  border-radius: 100%;
  margin: 0 6px;
  cursor: pointer;
}
.list-page.prev {
  background-color: #e9e9e9;
}
.list-page.active,
.list-page:hover {
  background-color: #f86238;
  color: #eee;
}

@media (max-width: 1200px) {
  .second-card-body {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 768px) {
  .second-card-body {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 576px) {
  .second-card-body {
    grid-template-columns: repeat(1, 1fr);
    grid-gap: 20px 25px;
  }
}

.my-page {
  font-size: 14px;
  overflow: hidden;
  margin: 0 auto;
  text-align: center;
  color: #333333;
  display: inline-block;
}

.my-page .my-page-prev,
.my-page .my-page-next {
  float: left;
  width: 30px;
  height: 30px;
  line-height: 30px;
  text-align: center;
  cursor: pointer;
  border-radius: 1000px;
}

.my-page .my-page-prev.my-page-forbid,
.my-page .my-page-next.my-page-forbid {
  pointer-events: none;
  background-color: rgba(0, 0, 0, 0.1);
  color: rgba(0, 0, 0, 0.2);
}

.my-page .my-page-group {
  float: left;
  margin: 0 5px;
  padding: 0;
  overflow: hidden;
}

.my-page .my-page-group li {
  float: left;
  list-style: none;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  min-width: 30px;
  padding: 0 8px;
  height: 30px;
  line-height: 30px;
  text-align: center;
  margin: 0 5px;
  cursor: pointer;
}

.my-page .my-page-group .my-page-cell {
  border-radius: 1000px;
}

.my-page .my-page-group .my-page-checked {
  background-color: var(--main-color);
  color: #eee;
}

.my-page .my-page-group .my-page-omit {
  pointer-events: none;
}
@media (min-width: 992px) {
  .nav-left .item:hover {
    background-color: var(--main-color);
    color: #eee;
  }
  .my-page .my-page-group .my-page-cell:hover {
    background-color: var(--main-color);
    color: #eee;
  }
}
