@import url("page.css");

/* 下载 */

/* 下载 */

.down-list-title {
  font-size: 18px;
  padding: 20px;
  position: relative;
}

.down-list-title::after {
  content: '';
  display: block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  border: 3px solid #34cd8b;
  position: absolute;
  left: 3px;
  top: 50%;
  transform: translateY(-50%);
}

.downloadBody {
  display: flex;
  width: 100%;
  flex-wrap: wrap;
  gap: 20px;
}

.down-list .downloadBody {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 20px;
}

.down-list .downCardBox {
  flex: 0 0 calc(25% - 15px);
  min-width: 240px;
  -moz-box-orient: unset;
  -moz-box-direction: unset;
  -ms-flex-line-pack: unset;
  -webkit-box-align: unset;
  box-sizing: border-box;
  background: #fff;
  border-radius: 8px;
  display: flex;
  flex-direction: column;
  position: relative;
  align-items: flex-start;
  padding: 30px;
  border: 1px solid #dde2e9;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: pointer;
}

.down-list .downCardBox:hover {
  color: #00b173;
  transform: translateY(-5px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
}

.down-list .downCardTop {
  display: flex;
  margin-bottom: 16px;
}

.down-list .downCardTopLeftIcon {
  width: 50px;
  height: 50px;
  background-color: #333;
  margin-right: 10px;
  border-radius: 10px;
}

.down-list .downCardTopRight h2 {
  display: flex;
  margin-bottom: 8px;
  align-items: center;
  line-height: 24px;
  font-size: 18px;
  color: #191919;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.down-list .downCardTopRightTab span {
  display: inline-block;
  padding: 2px 8px;
  font-size: 12px;
  color: #606266;
  border-radius: 2px;
  background-color: #f2f2f2;
}

/* 下载搜索框 */
.download-search-box .layui-input {
  height: 48px;
  line-height: 48px;
  border-radius: 6px;
}

.download-search-box .button {
  background: #1677ff;
  width: 88px;
  height: 46px;
  border-radius: 4px;
  text-align: center;
  line-height: 46px;
  cursor: pointer;
  font-family: PingFangSC-Regular;
  font-size: 16px;
  color: #fff;
  transition: all .3s;
}

/* 下载分类 */
.download-class {
  background-color: #FFF;
  -webkit-box-align: unset;
  box-sizing: border-box;
  border-radius: 8px;
  display: flex;
  flex-direction: column;
  position: relative;
  align-items: flex-start;
  padding: 20px;
  border: 1px solid #dde2e9;
}

.download-class li {
  padding: 0 10px;
  color: #555;
  display: inline-block;
  padding: 8px 12px;
  margin-right: 8px;
  line-height: 16px;
  font-size: 14px;
  color: #333;
  font-weight: 400;
  border-radius: 4px;
  cursor: pointer;
}

.download-class .download-class-title {
  font-weight: 700;
  color: #777;
}

.download-class li.nav-this {
  color: #d71820;
  background-color: #fff6f6;
}

.download-class li.nav-this span {
  color: #d71820;
}