.case-page {
  background: #f6f9fd;
}

.case-hero {
  padding: 46px 0 70px;
}

.case-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
}

.case-head h1 {
  color: var(--ink);
  font-size: 36px;
  font-weight: 700;
}

.case-head p {
  margin-top: 20px;
  color: var(--muted);
  font-size: 16px;
}

.case-filters {
  display: flex;
  gap: 16px;
}

.case-filters button {
  min-width: 76px;
  height: 36px;
  padding: 0 18px;
  border-radius: 18px;
  color: #536078;
  background: var(--white);
  font-size: 14px;
  font-weight: 500;
}

.case-filters button.active {
  color: var(--white);
  background: var(--blue);
}

.case-section {
  padding-bottom: 88px;
}

.case-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 34px;
}

.case-card {
  position: relative;
  overflow: hidden;
  min-height: 448px;
  border-radius: 16px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.case-card.hidden-by-filter {
  display: none;
}

.case-image {
  height: 256px;
  background: #e9eef7;
}

.case-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.case-tag {
  position: absolute;
  top: 16px;
  right: 16px;
  height: 24px;
  padding: 0 12px;
  border-radius: 12px;
  color: var(--white);
  background: var(--blue);
  font-size: 12px;
  line-height: 24px;
}

.case-tag.green {
  background: var(--green);
}

.case-tag.orange {
  background: #f59d32;
}

.case-card h2 {
  margin: 32px 32px 12px;
  color: var(--ink);
  font-size: 20px;
  font-weight: 700;
}

.case-card p {
  min-height: 58px;
  margin: 0px 32px 8px;
  color: var(--muted);
  font-size: 14px;
  line-height: 23px;
}

.case-card a {
  display: inline-block;
  margin: 0px 32px;
  color: var(--blue);
  font-size: 14px;
  line-height: 14px;
  font-weight: 600;
}

.case-card a span {
  display: inline-block;
  font-size: 12px;
  line-height: 14px;
  margin-left: 8px;
  transform: translateY(-1px);
}

.case-soon {
  min-height: 448px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  /* 虚线 */
  border: 2px dashed rgba(241,245,249,1);
  border-radius: 16px;
  background: rgba(248,250,252,1);
}

.soon-icon {
  position: relative;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  border: 6px solid #d7dae0;;
}

.icon-horizontal,
.icon-vertical {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 24px;
  height: 5px;
  background-color: #d7dae0;
}

.icon-vertical {
  transform: translate(-50%, -50%) rotate(90deg);
}

.case-soon p {
  margin: 18px 0 25px;
  font-size: 16px;
  font-weight: 500;
  color: #94A3B8;
}

.case-soon .soon-btn {
  display: block;
  width: 128px;
  height: 48px;
  border-radius: 12px;
  background-color: var(--blue);
  font-size: 16px;
  font-weight: 600;
  line-height: 48px;
  text-align: center;
  color: var(--white);
}
