.lemei-company-data {
  padding: 2rem 0;
  background: linear-gradient(90deg, var(--color-primary), var(--color-second));
  animation: gradientAnimation 3s ease infinite;
  background-size: 200%
}
 @keyframes gradientAnimation {
    0% {
        background-position: 0% 50%; /* 起始位置 */
    }
    50% {
        background-position: 100% 50%; /* 中间位置 */
    }
    100% {
        background-position: 0% 50%; /* 结束位置 */
    }
  }
.lemei-company-data .container {
  flex-wrap: wrap;
  gap: 20px 0;
}
.lemei-company-data .witr_counter_single {
  text-align: center;
}
.lemei-company-data .witr_counter_number_inn {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
}
.lemei-company-data .witr_counter_number_inn .number-container {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.lemei-company-data .witr_counter_number_inn h3 {
  font-weight: bold;
  font-size: 48px;
  color: #FFFFFF;
  text-shadow: 0px 4px 9px rgba(0,0,0,0.19);
  text-align: center;
}
.lemei-company-data .witr_counter_number_inn span {
  font-weight: 500;
  font-size: 20px;
  color: #FFFFFF;
  line-height: 30px;
  text-shadow: 0px 1px 2px rgba(0,0,0,0.19);
  margin-left: 8px;
  font-family: var(--title-font-family);
}
.lemei-company-data .witr_counter_number_inn h4 {
  font-weight: 400;
  font-size: 15px;
  color: #FFFFFF;
  line-height: 30px;
  text-shadow: 0px 1px 2px rgba(0,0,0,0.19);
  width: 100%;
  text-align: center;
  font-family: var(--title-font-family);
}
@media only screen and (max-width: 768px) {
  .lemei-company-data .witr_counter_number_inn {
    gap: 0;
  }
  .lemei-company-data .witr_counter_number_inn h3 {
    font-size: 30px;
    text-shadow: none;
  }
  .lemei-company-data .witr_counter_number_inn span {
    font-size: 16px;
    text-shadow: none;
  }
  .lemei-company-data .witr_counter_number_inn h4 {
    font-size: 12px;
    line-height: 16px;
    text-shadow: none;
  }
  .lemei-company-data .container > div {
    padding: 0 2.5px;
  }
}
