/* 整体容器 */
section[data-cattype="410"] {
  padding: 0 0 60px 0;
}

/* 标题 */
section[data-cattype="410"] .section-title {
  text-align: center;
  font-size: 38px;
  font-weight: bold;
  margin: 30px 0;
  color: #0D0E23;
}

/* Flex 布局：左图 + 右卡片 */
section[data-cattype="410"] .market-app-wrapper {
  display: flex;
  gap: 40px;
  max-width: 1280px;
  margin: 0 auto;
  align-items: flex-start;
  flex-wrap: nowrap;
}

/* 左图宽度 */
section[data-cattype="410"] .leftbig {
  flex: 0 0 300px;
  max-width: 300px;
}
section[data-cattype="410"] .imgbig {
  width: 100%;
  margin-top: 54px;
  object-fit: contain;
}

/* 右侧卡片区 */
section[data-cattype="410"] .card-area {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  flex: 1;
}

/* 单个卡片 */
section[data-cattype="410"] .card-area .col-md-3 {
  flex: 0 0 calc((100% - 60px) / 3);
  box-sizing: border-box;
}

/* 卡片内容外框 */
section[data-cattype="410"] .row.mb-3.text-center {
  background-color: #F5F8FA;
  border-radius: 15px;
  padding: 20px;
  height: 180px;
  box-shadow: 4px 4px 8px rgba(0, 0, 0, 0.3);
  transition: background-color 0.3s ease;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}

/* hover 效果 */
section[data-cattype="410"] .row.mb-3.text-center:hover {
  background-color: #CC0B14;
}
section[data-cattype="410"] .col-12:hover h5,
section[data-cattype="410"] .col-12:hover p {
  color: #fff;
}

/* 卡片内容文字 */
section[data-cattype="410"] h5 {
  font-size: 25px;
  color: #0D0E23;
  margin: 0;
}
section[data-cattype="410"] p {
  font-size: 14px;
  color: #0D0E23;
  margin: 10px 0;
}

/* 卡片图片 */
section[data-cattype="410"] .img-fluid.mt-2 {
  width: 100%;
  height: 60px;
  object-fit: contain;
  border-radius: 8px;
  background: #fff;
}

/* 响应式 */
@media screen and (max-width: 767px) {
  section[data-cattype="410"] .market-app-wrapper {
    flex-direction: column;
    align-items: center;
  }

  section[data-cattype="410"] .card-area {
    flex-direction: column;
    align-items: center;
  }

  section[data-cattype="410"] .card-area .col-md-3 {
    width: 100%;
  }

  section[data-cattype="410"] .row.mb-3.text-center {
    height: auto;
	margin: 0 20px;
  }

  section[data-cattype="410"] .imgbig {
    margin-top: 0;
  }
  [data-cattype="410"] h2{
	font-size: 28px;
  }
}
