* {
  font-size: 16px;
  --primaryColor: #009688;
}

body {
  width: 100%;
  min-height: 100%;
  overflow: hidden;
  background-color: #fff;
  color: #fff;
  margin: 0;
  overflow: scroll;
  scrollbar-width: none;
}

::-webkit-scrollbar {
  display: none;
}

#homePage {
  margin-top: 4rem;
  height: calc(500 / 16 * 1rem);
  width: 100%;
  /* background-color: #d3dfd8; */
  background-image: url("../img/pexels-steve-29506613.jpg");
  background-repeat: no-repeat; /* 防止图片重复 */
  background-size: contain; /* 保持原始比例，图片将被缩放到适合容器的大小 */
  background-position: center; /* 图片居中显示 */
  background-size: 100% 100%;
}

.banner {
  display: flex;
  flex-direction: column;
  height: 100%;
  padding: 5.5rem 0 5.5rem 4.5rem;
  box-sizing: border-box;
}

.banner .banner-title {
  font-size: 1.9rem;
  margin-bottom: 1rem;
}

.banner .banner-description {
  font-size: 1rem;
}

.banner .banner-extra {
  margin-top: auto;
}

.banner .banner-extra button {
  width: 9rem;
  height: 2.5rem;
  border: none;
  color: #fff;
  font-size: 0.9rem;
}

#serviceMode {
  background-color: #fff;
  padding: 2rem 0;
  box-sizing: border-box;
}

.serviceMode-title {
  font-size: 1.6rem;
  color: #000;
  text-align: center;
  font-weight: bold;
  margin-bottom: 0.8rem;
}

.serviceMode-content {
  display: flex;
  justify-content: center;
}

.serviceMode-content .serviceMode-content-img {
  width: 37rem;
  /* height: 20rem; */
  background-color: #fff;
}

.serviceMode-content .serviceMode-content-text {
  margin-left: 2rem;
  color: #000;
  width: 30rem;
}

.serviceMode-content-text-p1 {
  margin-top: 2rem;
}

.serviceMode-content-text-p2 {
  margin-top: 5rem;
  font-size: 1.3rem;
  color: var(--primaryColor);
}

#solution {
  /* background-color: #dce9e2; */
  background: linear-gradient(135deg, #89C0A1 0%, #ffffff 100%);
  padding: 2rem 0;
}

.solution-title {
  font-size: 1.6rem;
  color: #000;
  text-align: center;
  font-weight: bold;
  margin-bottom: 0.8rem;
}

.solution-description {
  text-align: center;
  color: #2d7a4e;
  margin-bottom: 0.6rem;
}

.solution-img {
  margin: 0 auto;
  width: 50rem;
}

#jobInfo {
  padding: 2rem 0;
  background-color: #fff;
}

.jobInfo-title {
  font-size: 1.6rem;
  color: #000;
  text-align: center;
  font-weight: bold;
  margin-bottom: 0.8rem;
}

.scroll {
  height: 31rem;
  overflow: hidden;
}

.jobInfo-box {
}

.jobInfo-item {
  color: #000;
  margin-bottom: 1rem;
}

.jobInfo-item .jobInfo-item-area {
  display: flex;
  justify-content: center;
  margin-bottom: 1rem;
}

.jobInfo-item .jobInfo-item-area .jobInfo-item-area-detail {
  display: inline-block;
  font-size: 1.6rem;
  padding: 0.5rem;
  border: 6px solid var(--primaryColor);
  box-shadow: 0.5rem 0.5rem 5px var(--primaryColor);
  font-weight: bold;
}

.jobInfo-item .jobInfo-item-requirement {
  margin: 0 auto;
  padding: 0.5rem 0;
  width: 50rem;
  border: 3px solid var(--primaryColor);
}

.btn {
}

.btn:hover {
  cursor: pointer;
  opacity: 0.8;
}

.learnMornBtn {
  background-color: #757b77;
}
