@import url('common.css');

/* 通用容器样式 */
.container {
  width: 100%;
  max-width: 100rem;
  margin: 0 auto;
  padding: 0 10rem;
  box-sizing: border-box;
}
.container-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.breadcrumb {
  margin-left: -0.5rem;
  font-size: 1.125rem;
  color: rgba(255, 255, 255, 0.6);
  font-family: 'Microsoft YaHei';
}

.breadcrumb a {
  color: rgba(255, 255, 255, 0.6);
  text-decoration: none;
  transition: color 0.3s ease;
}

.breadcrumb a:hover {
  color: #fff;
}

.breadcrumb span {
  margin: 0 0.5rem;
}
/* 区块间距 */
.section-padding {
  padding: 6rem 5rem;
  overflow: hidden;
}

/* 区块标题 */
.section-header {
  text-align: center;
  margin-bottom: 3rem;
  width: 100%;
  max-width: 100rem;
  margin-left: auto;
  margin-right: auto;
  padding: 0 5rem;
  box-sizing: border-box;
  position: relative;
  z-index: 1;
}

.section-header h2 {
  font-family: 'Microsoft YaHei Bold';
  font-weight: 700;
  font-size: 3rem;
  line-height: 4rem;
  text-align: center;
  color: #333;
  margin: 0;
  margin-bottom: 0.625rem;
}

.section-header .subtitle {
  line-height: 1.8rem;
  font-weight: 400;
  font-size: 1.2rem;
  text-align: center;
  color: #333;
  opacity: 0.5;
}

/* 查看更多按钮 */
.look-more {
  text-align: center;
  width: 100%;
  padding: 0 1rem;
  box-sizing: border-box;
}

.look-more-btn {
  font-family: 'Microsoft YaHei';
  font-weight: 400;
  font-size: 1.25rem;
  line-height: 1.625rem;
  color: #000;
  opacity: 0.5;
  display: inline-flex;
  align-items: center;
  text-decoration: none;
}

.look-more-btn .fa-arrow-right {
  margin-left: 1.125rem;
  transition: transform 0.3s ease;
}

.look-more-btn:hover .fa-arrow-right {
  transform: translateX(0.5rem);
}

/* 头部区域 */
.header {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  height: 40rem;
  position: relative;
  display: flex;
  align-items: flex-end;
  width: 100%;
  overflow: hidden;
}

.header-content {
  width: 100%;
  width: 120rem;
  margin: 0 auto;
  margin-bottom: 6.25rem;
  box-sizing: border-box;
}

.page-info {
  color: #fff;
  padding: 0 10rem;
  max-width: 60rem;
}

.page-info h2 {
  font-size: 3.2rem;
  font-weight: bold;
  margin-bottom: 0.2rem;
  font-family: 'Microsoft YaHei';
  color: #fff;
  line-height: 5rem;
}

.page-info p {
  margin-bottom: 4.375rem;
  font-weight: 400;
  font-size: 1.4rem;
  line-height: 2.5rem;
  text-align: left;
  color: #fff;
  opacity: 0.6;
}

/* 响应式样式 */
#history {
  background: #fdfdfd;
  /* background: #f7f8f8; */
}
@media screen and (max-width: 1440px) {
  /* 区块间距 */
  .section-padding {
    padding: 4rem 5rem;
    overflow: hidden;
  }
  .section-header h2 {
    font-size: 2.5rem;
    line-height: 3.2rem;
  }
}

@media screen and (max-width: 1200px) {
  /* 区块间距 */
  .section-padding {
    padding: 3rem 3rem;
    overflow: hidden;
  }
  .container {
    max-width: 100%;
    padding: 0 2rem;
  }

  .header-content {
    width: 100%;
    margin-bottom: 4rem;
  }

  .page-info {
    padding: 0 2rem;
  }
}

@media screen and (max-width: 768px) {
  .section-padding {
    padding: 3rem 2rem;
  }

  .section-header {
    margin-bottom: 1.5rem;
  }

  .section-header h2 {
    font-size: 2rem;
    line-height: 2.7rem;
  }

  .section-header .subtitle {
    font-size: 1.2rem;
  }

  .header {
    height: 20rem;
  }
  .page-info {
    padding: 0 1.5rem;
  }
  .page-info h2 {
    font-size: 2rem;
    line-height: 2.7rem;
  }

  .page-info p {
    font-size: 1.2rem;
    line-height: 2rem;
    margin-bottom: 2rem;
  }
}
