
.auto-container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 15px;
}
.feature-block-five {
  position: relative;
  overflow: visible;     
  padding: 60px 0;     
}
.features-section-five h2{
font-size:36px;
font-weight: 600;
}
.auto-container h2{
font-size:36px;
font-weight: 600;
}
.auto-container p{
 font-size: 18px;
}
.inner-box {
  position: relative;
  height: 300px;
  border-radius: 12px;
  overflow: hidden;
  width: 100%;
  background-size: cover;
  background-position: center;
  transition: transform 0.3s ease;
  text-align: center;
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 20px;
}

/* 背景图容器隐藏但作为背景使用 */
.inner-box figure.bg-image {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.inner-box figure.bg-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* 黑色遮罩 */
.inner-box::before {
  content: "";
  position: absolute;
  inset: 0;
  background-color: #000000cf;
  opacity: 1;
  transition: opacity 0.4s ease;
  z-index: 1;
}

/* 渐变遮罩 */
.inner-box::after {
  content: "";
  position: absolute;
  top: -100%;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to right, rgba(75, 0, 150, 0.8), rgba(0, 150, 75, 0.8));
  transition: all 300ms ease;
  z-index: 2;
}

.inner-box:hover::before {
  opacity: 0;
}

.inner-box:hover::after {
  top: 0;
}

/* 文本内容样式 */
.inner-box .title {
  position: relative;
  z-index: 3;
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 15px;
}

.inner-box .title a {
  color: white;
  text-decoration: none;
}

.inner-box .text {
  position: relative;
  z-index: 3;
  font-size: 18px;
  line-height: 1.6;
  color: white;
}
.count {
  position: absolute;
  bottom: 0px;
  left: 50%;
  transform: translateX(-50%);
  background-color: #21c87a;
  color: #000;
  font-weight: bold;
  width: 100px;
  height: 100px;
  border-radius: 50%;
  border: 15px solid #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  z-index: 5;
}


/* 响应式适配：小屏关闭渐变 */
@media (max-width: 986px) {
  .inner-box::after {
    display: none !important;
  }
}
.support-strip-box {
  margin-top: 60px;
  background: repeating-linear-gradient(
    135deg,
    #fafafa,
    #fafafa 20px,
    #f0f0f0 20px,
    #f0f0f0 40px
  );
  padding: 40px 20px;
  border-radius: 14px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.04);
}

.support-strip-box p {
  font-size: 18px;
  margin-bottom: 20px;
  color: #222;
}

.cta-button {
  background: #21c87a;
  color: #fff;
  font-weight: 600;
  padding: 12px 26px;
  border-radius: 40px;
  text-decoration: none;
  transition: background-color 0.3s;
}

.cta-button:hover {
  background-color: #1aa866;
}

