* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
}

.yn_plate.ct-plate-ftl-v13-bottm {
  background-color: #ffffff; /* 保持你要的白色背景 */
  width: 100%;
  padding: 60px 80px;
  position: relative;
}

/* 标题区域：绝对定位在顶部，生成虚线 */
.yn_plate.ct-plate-ftl-v13-bottm .title-wrap {
  position: absolute;
  top: 60px;
  left: 80px;
  width: calc(100% - 160px);
}

.yn_plate.ct-plate-ftl-v13-bottm .title-wrap span {
  font-size: 23px;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  color: #666666;
  display: block;
  margin-bottom: 12px;
}

.yn_plate.ct-plate-ftl-v13-bottm .title-wrap::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background-color: #e5e5e5;
}

/* 核心：内容容器强制左右并排 */
.yn_plate.ct-plate-ftl-v13-bottm .plate-tm {
  display: flex !important; /* 确保flex生效，覆盖其他可能的冲突 */
  flex-direction: row !important; /* 强制水平排列 */
  align-items: flex-start;
  gap: 60px;
  margin-top: 80px; /* 确保在虚线下方 */
  width: 100%;
}

/* 图片容器：固定40%宽度，和效果图一致 */
.yn_plate.ct-plate-ftl-v13-bottm .plate-content.img-content {
  flex: 0 0 40% !important; /* 固定宽度，不伸缩 */
}

.yn_plate.ct-plate-ftl-v13-bottm .plate-content.img-content img {
  width: 100%;
  height: auto;
  border-radius: 8px;
  object-fit: cover;
}

/* 文字容器：占剩余宽度 */
.yn_plate.ct-plate-ftl-v13-bottm .text-content {
  flex: 1 !important;
}

.yn_plate.ct-plate-ftl-v13-bottm .text-content p {
  color: #000000;
  font-size: 20px;
  line-height: 1.6;
  letter-spacing: 0.5px;
  font-weight: 500;
  max-width: 600px;
  margin-bottom: 16px;
}

/* 响应式：仅在小屏幕才切换为垂直堆叠 */
@media (max-width: 1024px) {
  .yn_plate.ct-plate-ftl-v13-bottm .plate-tm {
    flex-direction: column;
    gap: 30px;
    margin-top: 60px;
  }

  .yn_plate.ct-plate-ftl-v13-bottm .plate-content.img-content,
  .yn_plate.ct-plate-ftl-v13-bottm .text-content {
    width: 100%;
    flex: none;
  }
}