:root {
  --text-color: #1f5ca1; /* 假设的文本颜色，您可以根据需要调整 */
}

.company-goal {
  width: 100%;
  background-color: #f7f7f7;
  padding: 75px 0;
  height: 650px;
}

.company-goal .title {
  font-size: 42px;
  font-weight: bold;
  text-align: center;
}

.company-goal .list {
  width: 100%;
  display: flex;
  justify-content: space-between;
}

.company-goal .list .item {
  width: 24%;
  height: 400px;
}

.company-goal .list .item .content {
  width: 100%;
  height: 300px;
  background-color: white;
  position: relative;
  margin-top: 100px;
  border-radius: 15px;
  transition: all 0.4s ease-in-out;
}

.company-goal .list .item .content .img-icon {
  position: absolute;
  width: 120px;
  height: 120px;
  background-color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  top: -60px;
  left: 50%;
  margin-left: -60px;
}

.company-goal .list .item .content .img-icon img {
  width: 110px;
  height: 110px;
  transition: background 0.1s ease; /* 添加过渡效果 */
}

.company-goal .list .item .content .title {
  font-size: 20px;
  font-weight: bold;
  padding-top: 80px;
}

.company-goal .list .bottom {
  width: 80%;
  height: 10px;
  background: radial-gradient(ellipse at center, rgba(0, 0, 0, 0.25) 0%, rgba(0, 0, 0, 0) 80%);
  transition-duration: 0.3s;
  border-radius: 100%;
  margin: auto;
  display: none;
}

.company-goal .list .content:hover {
  transform: translateY(-5px);
}

.company-goal .list .item:hover .img-icon {
  background: radial-gradient(circle, #1f5ca1 50%, #1f5ca1 100%);
}

.company-goal .list .item:hover .bottom {
  display: block;
}

.company-goal .list p {
  width: 80%;
  margin: auto;
  line-height: 30px;
  margin-top: 10px;
}

@media (max-width: 1024px) {
  .company-goal {
    height: auto !important;
  }

  .company-goal .title {
    font-size: 40px !important;
  }

  .company-goal .list {
    display: inline-block !important;
  }

  .company-goal .list .item {
    width: 100% !important;
    height: 252px !important;
  }

  .company-goal .list .item .content {
    height: 252px !important;
    margin-top: 80px !important;
  }

  .company-goal .list .item .title {
    font-size: 20px !important;
  }

  .company-goal .list .item p {
    font-size: 15px !important;
  }
}
