

.content-layout {
    width: 100%;
    background: #E7E7E7;
    margin-top: 112px;
    margin-bottom: 246px;
    display: flex;
    justify-content: center;
    align-items: center;

}

.content-container {
    max-width: 1400px;
    height: 547px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: row;
}

.content-container .text-content {
    flex: 1;
    padding:0 70px;
    display: flex;
    flex-direction: column;
    gap: 30px;
    font-family: DM Sans, DM Sans;
    font-weight: 400;
}

.section-title {
    font-size: 35px;
    color: #282828;
}

.section-divider {
    width: 148px;
    height: 9px;
    background: #8F0F2C;
}

.content-text {
    font-family: DM Sans, DM Sans;
    font-weight: 400;
    font-size: 19px;
    line-height: 1.8;
    color: #000000;
    text-align: justify;
    text-indent: 2em;
}

.image-container {
  width: 487px;
  height: 530px;
  flex: 0 1 487px;
  position: relative;
  overflow: visible;   /* 允许整体右移后探出 */
  margin-top: 69px;    /* 已有下移 */
  transform: translateX(41px); /* 整体右移 50px */
}

.image-container::after {
  content: '';
  position: absolute;
  z-index: 1;
  width: 476px;
  height: 574px;
  background-color: #9B2742;
  left: 30px;  /* 在“已右移 50px”基础上再右 20px */
  top: 20px;   /* 下错位 20px 不变 */
}

.image-container img {
  width: 100%;
  height: 100%;
  display: block;
  position: relative;
  z-index: 2;
}