
.ama-data{
  background:#fff;
  padding:90px 20px;
  font-family: Arial, sans-serif;
}

.ama-container{
  max-width:1200px;
  margin:0 auto;
  display:grid;
  grid-template-columns: repeat(4, 1fr);
  gap:30px;
  text-align:center;
}

/* 卡片 */
.ama-item{
  padding:30px 15px;
  border-radius:14px;
  background:#fff;
  border:1px solid rgba(0,0,0,0.08);
  box-shadow:0 10px 25px rgba(0,0,0,0.06);
  transition:0.3s ease;
}

.ama-item:hover{
  transform:translateY(-6px);
  box-shadow:0 18px 40px rgba(0,0,0,0.12);
}

/* icon */
.ama-icon{
  font-size:26px;
  margin-bottom:10px;
}

/* 数字（关键优化点） */
.ama-number{
  font-size:52px;
  font-weight:800;
  color:#F97316;
  letter-spacing:1px;

  /* ❗核心防换行 */
  white-space: nowrap;
}

/* 文案 */
.ama-label{
  margin-top:8px;
  font-size:14px;
  color:#666;
  line-height:1.4;
}
