
/* 样式部分保持不变，如需调整颜色、间距、字体大小等，可在此修改 */
.full-width-designer-section {
  width: 100%;
  margin: 0 auto 60px;
  padding: 0 30px;
  box-sizing: border-box;
}

.content-wrapper {
  max-width: 1920px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
}

.item {
  flex: 1;
  min-width: 300px;
  max-width: 950px;
  display: flex;
  flex-direction: column;
}

.image-box {
  width: 100%;
  height: 540px;
  overflow: hidden;
}

.image-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.text-box {
  background-color: #f5f5f5;
  padding: 28px 30px;
  text-align: center;
  flex-grow: 1;
}

.text-box h3 {
  margin: 0 0 12px 0;
  font-size: 28px;
  font-weight: 600;
  color: #222;
  line-height: 1.3;
}

.text-box p {
  margin: 0 0 24px 0;
  font-size: 16px;
  color: #555;
  line-height: 1.5;
}

.btn {
  display: inline-block;
  min-width: 160px;
  height: 48px;
  line-height: 46px;
  padding: 0 28px;
  background-color: #222;
  color: white;
  text-decoration: none;
  font-size: 15px;
  font-weight: 500;
  border: 2px solid #222;
  border-radius: 4px;
  transition: all 0.3s;
}

.btn:hover {
  background-color: transparent;
  color: #222;
}

/* 响应式部分（一般不需要改动） */
@media screen and (max-width: 1100px) {
  .full-width-designer-section { padding: 0 25px; }
  .content-wrapper { gap: 30px; }
}

@media screen and (max-width: 850px) {
  .full-width-designer-section { padding: 0 20px; }
  .image-box { height: 48vw; min-height: 320px; max-height: 480px; }
  .text-box { padding: 24px 20px; }
  .text-box h3 { font-size: 24px; }
}

@media screen and (max-width: 640px) {
  .content-wrapper { flex-direction: column; gap: 45px; }
  .image-box { height: 60vw; max-height: 420px; }
}
