/* 愿景使命模块样式 */
.vision-section {
  padding: 30px 0;
  height: 574px;
  position: relative;
  overflow: hidden;
  box-sizing: border-box;
}

.vision-bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
}

.vision-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.vision-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #fff;
  pointer-events: none;
}

.vision-section::after {
  content: '';
  position: absolute;
  top: 20%;
  left: 10%;
  width: 200px;
  height: 100px;
  background-size: contain;
  opacity: 0.3;
  pointer-events: none;
}

.vision-header {
  text-align: center;
  margin-bottom: 120px;
  position: relative;
  z-index: 3;
}

.vision-title {
  font-size: 32px;
  font-weight: normal;
  color: #000;
  margin: 0;
  position: relative;
  display: inline-block;
}

.vision-title::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 200px;
  height: 3px;
  background: linear-gradient(90deg, transparent, #2196f3, transparent);
  border-radius: 2px;
}

.vision-cards {
  display: flex;
  max-width: 1260px;
  margin: 0 auto;
  padding: 0 20px;
  position: relative;
  z-index: 3;
  justify-content: center;
  gap: 77px;
}

.vision-card {
  width: 280px;
  min-height: 210px;
  background: white;
  border-radius: 20px;
  padding: 40px 34px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  box-sizing: border-box;

}

.vision-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #2196f3, #1976d2, #2196f3);
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.vision-card:hover::before {
  transform: scaleX(1);
}

.vision-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(33, 150, 243, 0.2);
}

.vision-icon {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, #e3f2fd, #bbdefb);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 10px;
  position: relative;
  transition: all 0.3s ease;
}

.vision-icon img {
  width: 50px;
  height: 50px;
  object-fit: contain;
  border-radius: 50%;
}

.vision-card:hover .vision-icon {
  transform: scale(1.1);
  background: linear-gradient(135deg, #2196f3, #1976d2);
}

.vision-icon .icon-paper-plane,
.vision-icon .icon-fist,
.vision-icon .icon-heart {
  font-size: 32px;
  color: #2196f3;
  transition: all 0.3s ease;
}

.vision-card:hover .vision-icon .icon-paper-plane,
.vision-card:hover .vision-icon .icon-fist,
.vision-card:hover .vision-icon .icon-heart {
  color: white;
  transform: scale(1.1);
}

.vision-card-title {
  font-size: 24px;
  color: #000;
  margin: 0 0 10px 0;
  position: relative;
  font-weight: 400;
}

.vision-card-text {
  font-size: 16px;
  line-height: 1.6;
  color: #727272;
  margin: 0;
  text-align: center;
  font-weight: 400;
}

/* 愿景使命响应式样式 */
@media (max-width: 1024px) {
  .vision-section {
    height: 600px;
  }
  
  .vision-cards {
    gap: 30px;
    padding: 0 15px;
  }
  
  .vision-card {
    width: 320px;
    height: 350px;
    padding: 30px 20px;
  }
  
  .vision-icon {
    width: 100px;
    height: 100px;
    margin-bottom: 25px;
  }
  
  .vision-icon img {
    width: 100px;
    height: 100px;
  }
  
  .vision-icon .icon-paper-plane,
  .vision-icon .icon-fist,
  .vision-icon .icon-heart {
    font-size: 28px;
  }
  
  .vision-card-title {
    font-size: 24px;
  }
  
  .vision-card-text {
    font-size: 16px;
  }
}

@media (max-width: 768px) {
  .vision-section {
    padding: 60px 0;
    height: auto;
    min-height: 500px;
  }
  
  .vision-title {
    font-size: 36px;
  }
  
  .vision-title::after {
    width: 150px;
  }
  
  .vision-cards {
    flex-direction: column;
    gap: 30px;
    padding: 0 20px;
  }
  
  .vision-card {
    width: 280px;
    height: 320px;
    padding: 30px 25px;
  }
  
  .vision-icon {
    width: 80px;
    height: 80px;
    margin-bottom: 20px;
  }
  
  .vision-icon img {
    width: 80px;
    height: 80px;
  }
  
  .vision-icon .icon-paper-plane,
  .vision-icon .icon-fist,
  .vision-icon .icon-heart {
    font-size: 24px;
  }
  
  .vision-card-title {
    font-size: 20px;
    margin-bottom: 15px;
  }
  
  .vision-card-text {
    font-size: 14px;
  }
}

@media (max-width: 480px) {
  .vision-section {
    padding: 40px 0;
    height: auto;
    min-height: 400px;
  }
  
  .vision-title {
    font-size: 28px;
  }
  
  .vision-title::after {
    width: 120px;
  }
  
  .vision-cards {
    gap: 20px;
    padding: 0 15px;
  }
  
  .vision-card {
    width: 250px;
    height: 280px;
    padding: 25px 20px;
  }
  
  .vision-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 15px;
  }
  
  .vision-icon img {
    width: 60px;
    height: 60px;
  }
  
  .vision-icon .icon-paper-plane,
  .vision-icon .icon-fist,
  .vision-icon .icon-heart {
    font-size: 20px;
  }
  
  .vision-card-title {
    font-size: 18px;
    margin-bottom: 12px;
  }
  
  .vision-card-text {
    font-size: 12px;
  }
}
