/* 优化特征卡片样式 */
.feature-card {
  background: #f8f9fa;
  border: 1px solid #e9ecef;
  border-radius: 8px;
  padding: 1.25rem;
  margin-bottom: 1rem;
  transition: all 0.3s ease;
  box-shadow: 0 2px 4px rgba(0,0,0,0.05);
}

.feature-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
  border-color: #dee2e6;
}

.feature-title {
  font-size: 1.1rem;
  font-weight: 600;
  color: #2c3e50;
  margin-bottom: 0.75rem;
  position: relative;
  padding-left: 20px;
}

.feature-title::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 6px;
  height: 6px;
  background-color: #3498db;
  border-radius: 50%;
}

.feature-desc {
  color: #6c757d;
  line-height: 1.5;
  font-size: 0.95rem;
}

.company_main .company_inner img {
  width: 120px;
  height: 60px;
  object-fit: contain;
  margin: 0 auto;
  display: block;
}

/* 响应式调整 */
@media (max-width: 768px) {
  .company_main .company_inner img {
    width: 100px;
    height: 50px;
  }
}