.section-padding {
  padding: 80px 0;
}
.flex-center {
  display: flex;
  justify-content: center;
  align-items: center;
}
.company-intro {
  padding: 80px 0;
  background: #fff;
}
.company-intro .intro-content {
  margin-top: 40px;
}
.company-intro .intro-content img {
  width: 80%;
  border-radius: 8px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
  margin-left: 30px;
}
.company-intro .intro-content p {
  font-size: 16px;
  color: #666;
  line-height: 1.8;
  margin-bottom: 20px;
}
.company-intro .intro-content p:last-child {
  margin-bottom: 0;
}
.company-culture {
  padding: 80px 0;
  background: #f8f8f8;
}
.company-culture .culture-grid {
  display: flex;
  justify-content: space-between;
  margin-top: 50px;
  flex-wrap: wrap;
}
.company-culture .culture-grid .culture-item {
  flex: 1;
  min-width: 300px;
  text-align: center;
  padding: 30px;
  margin: 15px;
  background: #fff;
  border-radius: 8px;
  transition: all 0.3s ease;
}
.company-culture .culture-grid .culture-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}
.company-culture .culture-grid .culture-item .layui-icon {
  font-size: 48px;
  color: #1e9fff;
  margin-bottom: 20px;
}
.company-culture .culture-grid .culture-item h3 {
  font-size: 24px;
  color: #333;
  margin-bottom: 15px;
}
.company-culture .culture-grid .culture-item p {
  font-size: 16px;
  color: #666;
  line-height: 1.6;
}
.company-history {
  padding: 80px 0;
  background: #f8f8f8;
}
.company-history .history-timeline {
  margin-top: 50px;
  position: relative;
  padding: 20px 0;
}
.company-history .history-timeline::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(180deg, rgba(30, 159, 255, 0.3) 0%, #1e9fff 100%);
  transform: translateX(-50%);
}
.company-history .history-timeline .timeline-item {
  display: flex;
  justify-content: center;
  margin-bottom: 60px;
  position: relative;
}
.company-history .history-timeline .timeline-item:last-child {
  margin-bottom: 0;
}
.company-history .history-timeline .timeline-item::before {
  content: "";
  position: absolute;
  width: 16px;
  height: 16px;
  background: #1e9fff;
  border: 3px solid #fff;
  border-radius: 50%;
  left: 50%;
  transform: translateX(-50%);
  box-shadow: 0 0 0 4px rgba(30, 159, 255, 0.2);
  z-index: 1;
}
.company-history .history-timeline .timeline-item .timeline-card {
  width: 45%;
  background: #fff;
  padding: 25px;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
}
.company-history .history-timeline .timeline-item .timeline-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}
.company-history .history-timeline .timeline-item .timeline-card .year {
  display: inline-block;
  padding: 6px 16px;
  background: rgba(30, 159, 255, 0.1);
  color: #1e9fff;
  border-radius: 20px;
  font-weight: bold;
  font-size: 18px;
  margin-bottom: 15px;
}
.company-history .history-timeline .timeline-item .timeline-card .milestone h3 {
  font-size: 20px;
  color: #333;
  margin-bottom: 10px;
}
.company-history .history-timeline .timeline-item .timeline-card .milestone p {
  color: #666;
  line-height: 1.6;
  margin: 0;
}
.company-history .history-timeline .timeline-item:nth-child(odd) .timeline-card {
  margin-right: 55%;
}
.company-history .history-timeline .timeline-item:nth-child(even) .timeline-card {
  margin-left: 55%;
}
@media screen and (max-width: 768px) {
  .company-intro .intro-content img {
    margin-bottom: 30px;
  }
  .culture-grid .culture-item {
    min-width: 100% !important;
    margin: 15px 0 !important;
  }
  .company-history .history-timeline::before {
    left: 20px;
  }
  .company-history .history-timeline .timeline-item::before {
    left: 20px;
  }
  .company-history .history-timeline .timeline-item .timeline-card {
    width: calc(100% - 50px);
    margin-left: 50px !important;
  }
}
