.banner-wrapper {
 text-align: center;
 margin-top: 20px;
}

.banner-image {
 width: 100%;
 max-height: 400px;
 object-fit: cover;
 border-radius: 12px;
}

.banner-info {
 width: 100%;
 display: flex;
 justify-content: space-between;
 align-items: center;
 font-size: 14px;
 color: #666;
 margin-top: 5px;
 padding: 0 5px;
 box-sizing: border-box;
}

.breadcrumb {
 text-align: left;
 font-size: 14px;
}

.art-credit {
 text-align: right;
 font-size: 14px;
}

.gray-box {
 background-color: #f0f0f0; /* 浅灰色背景 */
 padding: 40px;
 margin: 40px auto 0 auto;
 width: 100%;
 border-radius: 2px;
 box-sizing: border-box;
}

.image-text-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 12px;
}


/* 图片：强制正方形，适配比例 */
.square-image {
  width: 90%;
  max-width: 280px;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: 8px;
  display: block;
  margin-left: 10px;
}

/* 链接样式：蓝色、有下划线 */
.acolor {
  color: #22a2c3;
  text-decoration: none;
  border-bottom: 1px solid #22a2c3;
}

/* 避免图片被 .acolor 影响样式 */
.acolor img {
  border: none !important;
  outline: none !important;
}

/* 文本块样式 */
.text-block {
  text-align: left;
  max-width: 400px;
  padding-top: 4px; /* 与 h2 稍微拉开 */
}

.text-block h2 {
  margin: 0;
  font-size: 26px;
}

.text-block .acolor {
  display: inline-block;
  font-size: 20px;
  margin-top: 6px; /* 与 h2 拉开 */
}

.desc-text {
  margin-top: 6px;
  font-size: 16px;
  color: #555;
}

.bannerDownborder{
 margin-top: 25px;
  border-bottom: 1px solid #aaa;
  width: 100%
}
@media (min-width: 768px) {
  .image-text-wrapper {
    flex-direction: row;
    justify-content: center;       /* 改成居中 */
    align-items: center;
    text-align: left;
    gap: 40px;                     /* 控制图和文字之间的间隔 */
    padding: 0 20px;               /* 两边留点白 */
  }

  .text-block {
    max-width: 400px;
  }

  .square-image {
    width: 280px;
    height: 280px;
  }
}

@media (min-width: 768px) {
.breadcrumb {
 font-size: 23px;
}
.art-credit {
 font-size: 23px;
}
}
