.hr-framework {
  position: relative;
  width: 100%;
  height: calc(140vh - 120px);
}

.hr-framework .blue {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.7;
}

.hr-framework::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.1);
  z-index: 1;
}
.hr-header {
    padding: 20px;
    text-align: center;
    position: relative;
    font-size: 36px;
}
.hr-header::after {
    content: '';
    display: block;
    width: 6%;
    height: 2px;
    background-color: #003366;
    position: absolute;
    left: 47%;
}
.hr-container {
    z-index:5;
    position: relative;
    display: flex;
    align-items: center;
    max-width: 80%;
    padding: 60px;
    margin-left: auto;
    margin-right: auto;
}
.hr-image {
    text-align:center;

}
.hr-image img {
    width: 100%;
    border-radius: 8px;
}
.hr-text {
    position: absolute;
    width: 30%;
    height:40%;
    right:10%;
    padding: 20px;
    background-color: rgba(249, 249, 249, 1);
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.hr-text-left {
    position: absolute;
    height:40%;
    width: 30%;
    left: 10%;
    padding: 20px;
    background-color: rgba(249, 249, 249, 1);
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}
.hr-text h2 {
    margin-top: 0;
    font-family: SourceHanSansSC-Bold;
    font-size: clamp(0.1rem, 1.4vw, 2.0rem);
}
.hr-text p {
    font-size: clamp(0.1rem, 1.4vw, 2.0rem);
    line-height: 1.6;
}
.hr-text-left h2 {
    margin-top: 0;
    font-family: SourceHanSansSC-Bold;
    font-size: clamp(0.1rem, 1.4vw, 2.0rem);
}
.hr-text-left p {
    font-size: clamp(0.1rem, 1.4vw, 2.0rem);
    line-height: 1.6;
}

.card {
    text-align: center;
    background-color: white;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    width: 95%;
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }
  
.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 10px rgba(0, 0, 0, 0.15);
}

/* 图片样式 */
.card-image {
  width: 100%;
  height: 350px;
  object-fit: cover;
}

/* 内容区域 */
.card-container {
  margin-top:50px;
  margin-bottom:30px;
  display: grid;
  grid-template-columns: repeat(2, 1fr); /* 创建两列 */
  place-items: center;
  gap: 20px;              /* 设置两个元素之间的间距 */
}

.card-title {
  margin: 0 0 10px;
  font-size: 18px;
  color: #333;
}

.card-description {
  margin: 0;
  font-size: 14px;
  color: #666;
  line-height: 1.5;
}

/* 底部区域 */
.card-footer {
  padding: 15px;
  text-align: center;
}

.card-button {
  padding: 10px 20px;
  font-size: 14px;
  background-color: #007BFF;
  color: white;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.card-button:hover {
  background-color: #0056b3;
}

.hr-title {
  position: absolute;
  font-family: "source-bold";
  font-size: 3.0vw;
  color: white;
  top: 45%;
  left: 45%;
}
.hr-title:hover {
  color: #003366;
}