/* 内容区域样式 */
.content {
  /* padding: 40px 0px 40px 7.5%; */
  margin-top: 10rem;
}

/* 板块样式 */
.section {
  margin-bottom: 60px;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  /* justify-content: flex-end; */
}
.section:nth-child(even) {
  padding: 40px 7.5% 40px 0;
  flex-direction: row-reverse;
}
.section:nth-child(odd) {
  padding: 40px 0px 40px 7.5%;
}

.section:nth-child(odd) .section-text {
  width: 30%;
  padding: 0 4rem 0px 0px;
  text-align: left;
}
.section:nth-child(even) .section-text {
  width: 30%;
  padding: 0 0rem 0px 4rem;
  text-align: right;
}

.section-title {
  font-size: 34px;
   /* font-weight: 700; */
  color: var(--secondary-color);
  text-transform: uppercase;
  /* letter-spacing: 0.5px; */
  margin-bottom: 20px;
     /* font-family: 'Inter-Light';
        font-weight: 300;  */
}

.section-paragraph {
  color: #000;
  font-size: 1rem;
  margin-bottom: 20px;
  letter-spacing: 0.5px; 
  line-height: 1.5;
 font-family: 'EnLight';
}

/* 图片链接样式 */
.section-image-link {
  display: inline-block;
  width: 70%;
  text-decoration: none;
}

.section-image {
  width: 100%;
  height: auto;
  display: block;
  transition: filter 0.3s ease;
}

/* 图片上的文字使用thin字重 */
.section-image-link,
.section-image {
  font-weight: 100; /* thin字重 */
}

/* 图片变暗效果 */
.section-image-link:hover .section-image , .section-image-link:hover .arrow{
  filter: brightness(0.7);
}

/* 响应式调整 */
@media (max-width: 1024px) {
  .content {
    padding: 40px 50px;
  }

  .section-title {
    font-size: 1.8rem;
  }

  .section {
    margin-bottom: 80px;
  }
}

@media (max-width: 768px) {
  .content {
    padding: 30px 20px;
  }

  .section,
  .section:nth-child(even) {
    flex-direction: column;
  }

  .section-text {
    width: 35%;
    padding: 30px 0 0;
  }

  .section-title {
    font-size: 2.2rem;
     /* font-weight: 700; */
    color: var(--secondary-color);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 15px;
  }
  .section-title::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 60px;
    height: 2px;
    background-color: var(--gold-color);
  }
}


/* 指示箭头样式 */
.arrow-container {
  position: absolute;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* 箭头样式 */
.arrow {
  width:25px;
  height: 25px;
  background-image: url('https://www.chillshinegroup.com/photosPage/next.png');
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  cursor: pointer;
  transition: transform 0.3s ease;
}



/* 第一个板块：ARCHITECTURE - 左边垂直水平居中 */
.section-image-link {
  position: relative;
}

#architecture-section .arrow-container {
  left: 30px;
  top: 50%;
  transform: translateY(-50%);
}

/* 第二个板块：REALESTATE - 右边水平垂直居中 */
#REALESTATE-section {
  position: relative;
}

#REALESTATE-section .arrow-container {
  right:30px;
  top: 50%;
  transform: translateY(-50%);
}

/* 第三个板块：PUBLIC SPACE - 左边水平垂直居中 */
#public-construction-section {
  position: relative;
}

#public-construction-section .arrow-container {
  left: 30px;
  top: 50%;
  transform: translateY(-50%);
}

/* 响应式调整 */
@media (max-width: 768px) {
  .arrow-container {
    display: none; /* 在移动设备上隐藏箭头 */
  }
}

