.breadcrumbs {
  display: flex;
  align-items: center;
  margin-top: 19px;
  margin-bottom: 19px;
  font-size: 12px;
  color: #999999;
  white-space: pre;
  z-index: 1;
}
.breadcrumbs > div {
  display: flex;
  align-items: center;
}
.breadcrumbs > div a {
  transition: all 0.2s;
  color: #444;
}
.breadcrumbs > div span:not(:last-child)::after {
  content: ' > ';
}
.download-list-tabs {
  display: flex;
  flex-direction: column;
  margin-bottom: 25px;
}
.section-title {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 19px;
  padding-bottom: 17px;
  border-bottom: 1px solid #eeeeee;
}
.section-title > div:nth-child(1) {
  display: flex;
  align-items: center;
  gap: 5px;
  flex: 1;
}
.section-title > div:nth-child(1)::before {
  content: '';
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  background-size: 100% 100%;
  background-image: url(../images/news_icon_1.png);
}
.section-title > div:nth-child(1) span {
  font-size: 18px;
  font-weight: bold;
  color: #333333;
  flex-shrink: 0;
}

.download-list-tabs .list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.download-list-tabs .list a {
  display: flex;
  align-items: center;
  padding: 0 20px;
  height: 42px;
  border-radius: 4px;
  background-color: #f7f7f7;
  font-size: 16px;
  color: #333333;
  line-height: 1;
  transition: all 0.2s;
  position: relative;
}
.download-list-tabs .list a:hover,
.download-list-tabs .list a.active {
  color: white;
  background: linear-gradient(129deg, #FE7342 0%, #F35627 100%);
}
.download-list-tabs .list a.active::after {
  /*content: '';*/
  /*width: 20px;*/
  /*height: 20px;*/
  /*position: absolute;*/
  /*top: -17px;*/
  /*right: -12px;*/
  /*background: url(../images/topic_icon.png) no-repeat;*/
  /*background-size: contain;*/
}
.download-list {
  display: flex;
  flex-direction: column;
}
.download-list .list {
  display: grid;
  grid-template-columns: repeat(5, 222px);
  grid-auto-rows: 258px;
  justify-content: space-between;
  row-gap: 29px;
}
.download-list .list .item {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 22px 25px 0 25px;
  width: 100%;
  min-width: 0;
  height: 100%;
  border: 1px solid #f4f6f7;
  transition: all 0.2s;
  position: relative;
  z-index: 1;
}
.download-list .list .item::before {
  content: '';
  position: absolute;
  top: -6px;
  z-index: -1;
  width: 238px;
  height: 161px;
  background-size: 100% 100%;
  background-image: url(../images/download_list_item_background.png);
  transition: all 0.2s;
}
.download-list .list .item .title {
  width: 100%;
  text-align: center;
  font-size: 16px;
  font-weight: bold;
  color: #333333;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  transition: all 0.2s;
}
.download-list .list .item .description {
  margin-top: 12px;
  width: 100%;
  text-align: center;
  font-size: 14px;
  color: #999999;
  white-space: pre;
  overflow: hidden;
  text-overflow: ellipsis;
  transition: all 0.2s;
}
.download-list .list .item .icon {
  margin-top: 24px;
  width: 80px;
  height: 80px;
  border-radius: 15px;
  overflow: hidden;
  flex-shrink: 0;
}
.download-list .list .item .icon img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.download-list .list .item .download-button {
  margin-top: 20px;
  display: flex;
  align-items: center;
  padding: 0 31px;
  height: 32px;
  border-radius: 6px;
  background-color: #fff3ea;
  font-size: 14px;
  color: #F35627;
  line-height: 1;
  transition: all 0.2s;
}
.download-list .list .item:hover {
  border: 1px solid #F35627;
}
.download-list .list .item:hover::before {
  background-image: url(../images/download_list_item_background_active.png);
}
.download-list .list .item:hover .title {
  color: white;
}
.download-list .list .item:hover .description {
  color: white;
}
.download-list .list .item:hover .download-button {
  background: linear-gradient(129deg, #FE7342 0%, #F35627 100%);
  color: white;
}
.pagination .page-item a {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 28px;
  border: 1px solid #d2d2d2;
  background-color: #fff;
  font-size: 14px;
  color: #999999;
  line-height: 1;
  transition: all 0.2s;
  padding: 0 8px;
}
.pagination .page-item .page-link {
  display: flex;
  align-items: center;
  height: 100%;
  padding: 0 10px;
  color: #444;
}
.pagination .page-item a:hover, .pagination .page-item.active a{
  color: white;
  border-color: transparent;
  background-color: #F35627;
}
@media screen and (max-width: 750px) {
  .main-container {
    padding: 0 10px;
  }
  .download-list .list {
    grid-template-columns: repeat(2, 48%);
  }
  .download-list .list .item::before {
    width: 104%;
  }
  .pagination .m_page_hide {
    display: none;
  }
}
