/* ===============================
     应用页 · 顶部介绍
  ================================ */
.application-content {
  padding-top: 6.25rem; /* 100px */
}

.application-content-top-t {
  text-align: center;
  padding: 0 20%;
}

.top-t-t {
  margin-bottom: 0.75rem; /* 12px */
  font-size: 1.5rem; /* 24px */
  line-height: 1.3;
  color: #191919;
}

.top-t-b {
  font-size: 4rem; /* 64px */
  line-height: 5.25rem; /* 84px */
  color: #191919;
}

.top-t-dec {
  padding-top: 1rem; /* 16px */
  font-size: 1rem; /* 16px */
  line-height: 1.6;
  color: #666;
}

/* ===============================
     应用场景区域
  ================================ */
.application-content-scenarios-box {
  padding: 3.75rem 0 5rem; /* 60px 0 80px */
}

.scenarios-list {
  display: flex;
  padding: 0 11%;
  margin-bottom: 1.25rem; /* 20px */
  gap: 1.25rem;
}

/* ===============================
     场景卡片（桌面 4 栏）
  ================================ */
  .application-item {
    display: flex;
    align-items: stretch;
    background: #f5f6f8;
    /* border-radius: 8px; */
    overflow: hidden;
    width: 50%;

    /* flex: 1; */
    aspect-ratio: 2 / 1;
    /* margin-right: 1.25rem; */
    /* background: var(--img) center / cover no-repeat; */
    border-radius: 0.375rem;
    /* display: flex;
    flex-direction: column;
    justify-content: flex-end; */
    padding: 1.5rem 1.5rem;
    /* position: relative; */
    /* overflow: hidden; */
  }
  
  /* 左侧文字 */
  .application-info {
    flex: 1;
    padding: 2rem 1rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
  
  .application-title {
    font-size: 1.2rem;
    font-weight: 600;
    color: #1e3a5f;
    margin-bottom: 0.5rem;
  }
  
  .application-list {
    font-size: 0.875rem;
    line-height: 1.9;
    color: #333;
  }
  
  .application-list strong {
    color: #1e3a5f;
    font-weight: 600;
  }
  
  /* 右侧图片 */
  .application-image {
    min-width: 50%;
  }
  
  .application-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
/* .scenarios-item {
  flex: 1;
  aspect-ratio: 3 / 4;
  margin-right: 1.25rem;
  background: var(--img) center / cover no-repeat;
  border-radius: 0.375rem;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1.5rem 1.5rem;
  position: relative;
  overflow: hidden;
}

.scenarios-item:last-child {
  margin-right: 0;
}

.scenarios-item::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(0, 0, 0, 0.65),
    rgba(0, 0, 0, 0.15),
    transparent
  );
  z-index: 0;
}

.scenarios-item > * {
  position: relative;
  z-index: 1;
}

.scene-card-table-item-title {
  margin-bottom: 0.375rem;
  font-size: 1.25rem;
  line-height: 2rem;
  color: #fff;
}

.scene-card-table-item-caption {
  font-size: 0.875rem;
  line-height: 1.375rem;
  color: #d0d0d0;
} */

/* ===============================
     平板端（≤1024px：2 栏）
  ================================ */
@media (max-width: 1024px) {
  .application-content-top-t {
    padding: 0 10%;
  }

  .scenarios-list {
    flex-wrap: wrap;
    padding: 0 6%;
  }

  .scenarios-item {
    flex: 0 0 calc(50% - 0.75rem);
    margin-right: 1.5rem;
    margin-bottom: 1.5rem;
    aspect-ratio: 8 / 9;
  }
  .application-item{
    width: 100%;
    display: block;
    /* height: 39.5rem; */
    aspect-ratio: auto;
  }
  .application-image{
    height: 16.875rem;
  }

  .scenarios-item:nth-child(2n) {
    margin-right: 0;
  }
}

/* ===============================
     手机端（≤576px：1 栏）
  ================================ */
@media (max-width: 576px) {
  .application-content {
    padding-top: 5rem;
  }

  .application-content-top-t {
    padding: 0 1.25rem;
  }

  .top-t-t {
    font-size: 1.25rem;
  }

  .top-t-b {
    font-size: 2.2rem;
    line-height: 3rem;
  }

  .top-t-dec {
    font-size: 0.9375rem;
  }

  .scenarios-list {
    padding: 0 1rem;
  }

  .scenarios-item {
    flex: 0 0 100%;
    margin-right: 0;
    margin-bottom: 1.25rem;
    padding: 1.25rem;
    aspect-ratio: 16 / 10;
  }

  .scene-card-table-item-title {
    font-size: 1.125rem;
  }

  .scene-card-table-item-caption {
    font-size: 0.8125rem;
    line-height: 1.3rem;
  }
}
