.elementor-125 .elementor-element.elementor-element-5d8c1df{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;}.elementor-widget-image .widget-image-caption{color:var( --e-global-color-text );font-family:var( --e-global-typography-text-font-family ), Sans-serif;font-weight:var( --e-global-typography-text-font-weight );}.elementor-125 .elementor-element.elementor-element-f72208c{width:100%;max-width:100%;}.elementor-125 .elementor-element.elementor-element-f72208c img{width:100%;max-width:100%;}.elementor-125 .elementor-element.elementor-element-8bf4986{--display:flex;}:root{--page-title-display:none;}@media(min-width:768px){.elementor-125 .elementor-element.elementor-element-5d8c1df{--content-width:1600px;}.elementor-125 .elementor-element.elementor-element-8bf4986{--content-width:1600px;}}/* Start custom CSS for html, class: .elementor-element-4f9e254 *//* 4列网格布局 */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin: 40px 0;
}

/* 卡片框 + 内容居中 */
.feature-item {
  background: #ffffff;
  border: 1px solid #dddddd;
  padding: 30px 20px;
  text-align: center;
  border-radius: 8px; /* 圆角，更好看，不想要可以删掉 */
  box-shadow: 0 2px 10px rgba(0,0,0,0.05); /* 轻微阴影 */
}

/* 图片 绝对居中 */
.feature-item img {
  display: block;
  margin: 0 auto 20px auto;
  max-width: 60px;
  height: auto;
}

/* 标题样式 */
.feature-item h3 {
  color: #007bff;
  font-size: 22px;
  margin: 0 0 10px 0;
  line-height: 1.3;
}

/* 描述文字 */
.feature-item p {
  font-size: 15px;
  line-height: 1.6;
  color: #333;
  margin: 0;
}

/* 手机端自动变 1 列 */
@media (max-width: 768px) {
  .feature-grid {
    grid-template-columns: 1fr;
  }
}/* End custom CSS */