/* Hero 区域 */
.zhaopin-hero {
  background-color: #000;
  position: relative;
  overflow: hidden;
}

.zhaopin-hero-background {
  background-image: url('../assets/zhaopin/zhaopin-bg1.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  width: 100%;
  min-height: 10.8rem;
  /* display: flex; */
  /* justify-content: center; */
  /* align-items: center; */
  position: relative;
  overflow: hidden;
}

.zhaopin-hero-background::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 80% 50%,
      rgba(0, 150, 255, 0.2) 0%,
      rgba(255, 100, 0, 0.15) 30%,
      transparent 60%);
  pointer-events: none;
}

.zhaopin-hero-title {
  position: absolute;
  font-size: 0.48rem;
  font-weight: 400;
  color: #fff;
  text-align: center;
  margin: 0;
  letter-spacing: 0.1rem;
  text-shadow: 0 0 30px rgba(255, 255, 255, 0.3);
  left: 4rem;
  top: 1.8rem;
}

.zhaopin-hero-title1 {
  position: absolute;
  font-size: 0.48rem;
  font-weight: 400;
  color: #fff;
  text-align: center;
  margin: 0;
  letter-spacing: 0.1rem;
  text-shadow: 0 0 30px rgba(255, 255, 255, 0.3);
  left: 5rem;
  top: 3.2rem;
}

.zhaopin-shadow-box {
  position: absolute;
  width: 100%;
  height: 3rem;
  background: linear-gradient(to bottom, rgb(19 18 18 / 17%), rgb(0 0 0 / 98%));
  /* box-shadow: 0 10px 10px rgb(0 0 0); */
  bottom: -0.39rem;
}

/* 价值观部分 */
.zhaopin-values {
  background-color: #000;
  padding: 3rem 0;
}

.zhaopin-values-content {
  display: flex;
  justify-self: center;
  gap: 0.8rem;
  /* align-items: flex-start;
  gap: 2rem;
  max-width: 18rem;
  margin: 0 auto; */
}

.zhaopin-values-text {
  /* flex: 1; */
  color: #fff;
  width: 5.29rem;
}

.zhaopin-values-title {
  font-size: 1rem;
  font-weight: 400;
  color: #a6dee2;
  /* margin: 0 0 0.4rem 0; */
  text-align: left;
}

.zhaopin-values-subtitle {
  font-size: 0.24rem;
  color: #fff;
  font-weight: 500;
  margin-bottom: 0.4rem;
}

.zhaopin-values-description {
  font-size: 0.2rem;
  color: #fff;
  line-height: 1.8;
  font-weight: 300;
}

.zhaopin-values-description p {
  /* margin: 0 0 0.8rem 0; */
}

.zhaopin-values-description p:last-child {
  margin-bottom: 0;
}

.zhaopin-values-image {
  /* flex: 1; */
  width: 5.8rem;
  height: 6.1rem;
  overflow: hidden;
  /* border-radius: 0.12rem; */
  background-color: rgba(255, 255, 255, 0.05);
}

.zhaopin-values-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* 光子, 欢迎你部分 */
.zhaopin-welcome {
  background-color: #000;
  padding-top: 2rem;
}

.zhaopin-welcome-title {
  font-size: 0.48rem;
  font-weight: 700;
  color: #fff;
  text-align: center;
  margin-bottom: 0.5rem;
  letter-spacing: 0.05rem;
}

.zhaopin-features-grid {
  width: 100%;
  display: flex;
  justify-content: center;
  gap: 0.24rem;
  flex-wrap: wrap;
  justify-content: center;
  padding-left: calc(50% - 6rem);
  padding-right: calc(50% - 6rem);
}

.zhaopin-feature-card {
  background-color: rgba(196, 245, 249, 0.23);
  backdrop-filter: blur(10px);
  border-radius: 0.16rem;
  padding: 0.5rem;
  color: #fff;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  width: 3.84rem;
  height: 4.08rem;
  height: 4.08rem;
  display: flex;
  flex-direction: column;
  align-items: center;
}



.zhaopin-feature-icon {
  width: 1rem;
  height: 1rem;
  margin-bottom: 0.2rem;
}

.zhaopin-feature-title {

  font-size: 0.26rem;
  font-weight: 700;
  color: #fff;
  margin: 0 0 0.1rem 0;
  text-align: center;
}

.zhaopin-feature-desc {
  font-size: 0.2rem;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.6;
  margin: 0;
  text-align: center;
}

/* 页脚部分 */
.zhaopin-footer {
  background-color: #000;
  position: relative;
}

.zhaopin-footer-banner {
  background-image: url('../assets/zhaopin/zhaopin-bg2.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  width: 100%;
  min-height: 8rem;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 3rem 0;
  position: relative;
  overflow: hidden;
}

.zhaopin-footer-banner::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background:
    linear-gradient(135deg, rgba(0, 255, 0, 0.15) 0%, transparent 30%),
    linear-gradient(225deg, rgba(255, 0, 0, 0.15) 0%, transparent 30%),
    linear-gradient(45deg, rgba(255, 100, 0, 0.1) 0%, transparent 40%);
  pointer-events: none;
  animation: pulse 3s ease-in-out infinite;
}

@keyframes pulse {

  0%,
  100% {
    opacity: 0.6;
  }

  50% {
    opacity: 1;
  }
}

.zhaopin-footer-title {
  font-size: 0.6rem;
  font-weight: 700;
  color: #fff;
  text-align: center;
  margin: 0;
  position: relative;
  z-index: 1;
  letter-spacing: 0.1rem;
  text-shadow: 0 0 20px rgba(255, 255, 255, 0.3);
}

.zhaopin-footer-bottom {
  background-color: #000;
  padding: 1.5rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.zhaopin-footer-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 18rem;
  margin: 0 auto;
}

.zhaopin-footer-logo {
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.zhaopin-logo-square {
  width: 0.4rem;
  height: 0.4rem;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0.6));
  border-radius: 0.04rem;
  box-shadow: 0 0 10px rgba(255, 255, 255, 0.3);
}

.zhaopin-logo-text {
  font-size: 0.28rem;
  color: #fff;
  font-weight: 500;
}

.zhaopin-footer-social {
  display: flex;
  gap: 0.6rem;
  align-items: center;
}

.zhaopin-social-icon {
  width: 0.4rem;
  height: 0.4rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 0.24rem;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  border-radius: 0.04rem;
  background-color: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.zhaopin-social-icon:hover {
  color: rgba(255, 255, 255, 0.9);
  background-color: rgba(255, 255, 255, 0.1);
  transform: scale(1.1);
  box-shadow: 0 0 10px rgba(255, 255, 255, 0.2);
}

/* ==================== 移动端响应式样式 ==================== */
@media (max-width: 768px) {

  /* Hero区域移动端 */
  .zhaopin-hero-background {
    min-height: 6rem;
  }

  .zhaopin-hero-title {
    font-size: 0.4rem;
    left: 36%;
    transform: translateX(-50%);
    top: 1.2rem;
    text-align: center;
  }

  .zhaopin-hero-title1 {
    font-size: 0.4rem;
    left: 36%;
    /* transform: translateX(-50%); */
    top: 2rem;
    text-align: center;
  }

  /* 价值观部分移动端 - 横向改为纵向 */
  .zhaopin-values {
    padding: 1.5rem 0;
  }

  .zhaopin-values-content {
    flex-direction: column !important;
    gap: 0.6rem !important;
    align-items: center;
  }

  .zhaopin-values-text {
    width: 100% !important;
    padding: 0 0.4rem;
  }

  .zhaopin-values-title {
    font-size: 0.6rem;
    text-align: center;
  }

  .zhaopin-values-subtitle {
    font-size: 0.2rem;
    text-align: center;
  }

  .zhaopin-values-description {
    font-size: 0.16rem;
  }

  .zhaopin-values-image {
    width: 100% !important;
    height: auto !important;
    min-height: 4rem;
    order: -1;
    /* 图片放在文字前面 */
  }

  /* 特性网格移动端 - 横向改为纵向 */
  .zhaopin-features-grid {
    flex-direction: column !important;
    gap: 0.4rem !important;
    padding-left: 0.4rem !important;
    padding-right: 0.4rem !important;
    align-items: center;
  }

  .zhaopin-feature-card {
    width: 100% !important;
    max-width: 5rem;
    height: auto !important;
    min-height: 3.5rem;
    padding: 0.4rem;
  }

  .zhaopin-feature-icon {
    width: 0.6rem;
    height: 0.6rem;
    margin-bottom: 0.15rem;
  }

  .zhaopin-feature-title {
    font-size: 0.22rem;
    margin-bottom: 0.08rem;
  }

  .zhaopin-feature-desc {
    font-size: 0.16rem;
    line-height: 1.5;
  }

  /* 页脚部分移动端 */
  .zhaopin-footer-banner {
    min-height: 5rem;
    padding: 1.5rem 0;
  }

  .zhaopin-footer-title {
    font-size: 0.36rem;
  }

  .zhaopin-footer-content {
    flex-direction: column;
    gap: 0.4rem;
    padding: 0 0.4rem;
  }
}