﻿.section_list_item {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.section_list_item_l {
  width: calc(33.333% - 20px);
  background: #FFFFFF;
  box-shadow: 0px 2px 2px 0px rgba(0, 0, 0, 0.1);
  border-radius: 10px;
  padding: 15px;
  cursor: pointer;
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;

  &:hover {
    transform: translateY(-10px);
    /* 向上移动10px */
    box-shadow: 0px 2px 10px 0px rgba(1, 77, 161, 0.29);
  }
}

.section_list_item_l_tit {
  width: 100%;
  font-family: Source Han Sans SC, Source Han Sans SC;
  font-weight: bold;
  font-size: 18px;
  color: #333333;
  text-align: left;
  font-style: normal;
  text-transform: none;
  margin-bottom: 15px;
}

.section_list_item_l_con {
  width: 100%;
  font-family: Source Han Sans SC, Source Han Sans SC;
  font-weight: 400;
  font-size: 14px;
  color: #666666;
  text-align: left;
  font-style: normal;
  text-transform: none;
  margin-bottom: 20px;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  overflow: hidden;
  text-overflow: ellipsis;
  line-height: 1.5;
  max-height: 4.5em;
  color: #333;
  font-size: 14px;
}

.section_list_item_l_foot {
  width: 100%;
  display: flex;
  justify-content: space-between;
  font-family: Source Han Sans SC, Source Han Sans SC;
  font-weight: 400;
  font-size: 12px;
  color: #999999;
  text-align: right;
  font-style: normal;
  text-transform: none;
}

.section_list_text {
  display: flex;
  align-items: center;
}

.text_m {
  margin-left: 4px;
}

.pagination {
  width: 100%;
  display: flex;
  justify-content: flex-end;
  margin-top: 40px;
}