/* =====================================================
   VEPO 资源下载中心页面样式
   适用：/downloads
   风格：与 /faq 等公司页统一的 cp-* 结构（引用 company.css）
   ===================================================== */

/* ===== 1. 下载列表区 ===== */
.dl-section { padding: 70px 0 90px; }
.dl-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 34px;
  flex-wrap: wrap;
}
.dl-head h2 {
  font-size: 26px;
  font-weight: 700;
  color: var(--cp-primary);
  margin: 0 0 8px;
}
.dl-head p {
  margin: 0;
  font-size: 14px;
  color: #888;
  line-height: 1.8;
}
.dl-count {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  color: var(--cp-primary);
  background: #eef3fb;
  border-radius: 20px;
  padding: 7px 16px;
}
.dl-count b { color: var(--cp-gold); font-size: 16px; }

.dl-list {
  display: grid;
  gap: 16px;
}
.dl-item {
  display: flex;
  align-items: center;
  gap: 20px;
  background: #fff;
  border: 1px solid #edf0f6;
  border-radius: 14px;
  padding: 20px 24px;
  box-shadow: 0 6px 18px rgba(23, 65, 135, .05);
  transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
}
.dl-item:hover {
  transform: translateY(-3px);
  border-color: #d6e0f0;
  box-shadow: 0 12px 30px rgba(23, 65, 135, .1);
}
.dl-icon {
  flex-shrink: 0;
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  font-size: 26px;
  background: linear-gradient(135deg, #174187, #2a57a8);
  color: #fff;
  position: relative;
}
.dl-icon .dl-ext {
  position: absolute;
  right: -6px;
  bottom: -6px;
  background: var(--cp-gold);
  color: #fff;
  font-size: 9px;
  font-weight: 700;
  line-height: 1;
  padding: 4px 6px;
  border-radius: 6px;
  text-transform: uppercase;
  letter-spacing: .5px;
}
.dl-body {
  flex: 1;
  min-width: 0;
}
.dl-name {
  font-size: 16px;
  font-weight: 600;
  color: var(--cp-primary);
  margin: 0 0 5px;
}
.dl-desc {
  margin: 0;
  font-size: 13.5px;
  color: #888;
  line-height: 1.7;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.dl-meta {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 9px;
  font-size: 12px;
  color: #aab3c2;
  flex-wrap: wrap;
}
.dl-meta span {
  display: inline-flex;
  align-items: center;
  gap: 5px;
}
.dl-meta i { font-size: 13px; }

.dl-btn {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 600;
  color: #fff;
  background: linear-gradient(135deg, #174187, #2a57a8);
  border-radius: 26px;
  padding: 10px 24px;
  text-decoration: none;
  box-shadow: 0 6px 16px rgba(23, 65, 135, .22);
  transition: all .25s ease;
}
.dl-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 22px rgba(23, 65, 135, .32);
  color: #fff;
}
.dl-btn i { font-size: 15px; }

/* ===== 2. 空状态 ===== */
.dl-empty {
  text-align: center;
  background: #fff;
  border: 1px dashed #dfe5ef;
  border-radius: 14px;
  padding: 70px 20px;
}
.dl-empty-icon {
  width: 74px;
  height: 74px;
  margin: 0 auto 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: #f1f5fb;
  color: var(--cp-gold);
  font-size: 32px;
}
.dl-empty h3 {
  font-size: 18px;
  color: var(--cp-primary);
  margin: 0 0 8px;
}
.dl-empty p {
  margin: 0;
  font-size: 14px;
  color: #999;
}

/* ===== 3. 响应式 ===== */
@media (max-width: 767px) {
  .dl-item { flex-wrap: wrap; padding: 18px; }
  .dl-btn { width: 100%; justify-content: center; }
}
