/* 新板块样式 */
.abFeatures {
  width: 100%;
  padding: 60px 0;
  background: #f7f7f7;
}

.abFeatures_main {
  width: 1400px;
  max-width: 95%;
  margin: 0 auto;
}

.abFeatures_list {
  margin-top: 40px;
}

.abFeatures_list ul {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin: 0;
  padding: 0;
}

.abFeatures_list li {
  width: calc(25% - 20px);
  margin-bottom: 30px;
  background: #fff;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  float: none;
  display: block;
  list-style: none;
  text-align: center;
}

.abFeatures_list li:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.abFeatures_icon {
  padding: 30px 0;
  text-align: center;
  display: flex;
  justify-content: center;
}

.abFeatures_icon i {
  display: inline-block;
  width: 80px;
  height: 80px;
  line-height: 80px;
  text-align: center;
  background: #a3701d;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.abFeatures_icon i svg {
  width: 40px;
  height: 40px;
  vertical-align: middle;
}

.abFeatures_text {
  padding: 0 20px 30px;
  text-align: center;
}

.abFeatures_name {
  font-size: 18px;
  font-weight: bold;
  color: #333;
  margin-bottom: 15px;
  display: block;
}

.abFeatures_desc {
  font-size: 14px;
  color: #666;
  line-height: 1.6;
}

/* 响应式设计 */
@media screen and (max-width: 1200px) {
  .abFeatures_list li {
    width: calc(33.33% - 20px);
  }
}

@media screen and (max-width: 768px) {
  .abFeatures_list li {
    width: calc(50% - 15px);
  }
}

@media screen and (max-width: 480px) {
  .abFeatures_list li {
    width: 100%;
  }
} 