/* 动画关键帧 */
@keyframes contact-card-slideup {
    from {
        opacity: 0;
        transform: translateY(80px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* 动画父级容器 */
.contact-animate-group {
    position: relative;
}

/* 卡片通用样式 */
.contact-animate-card {
    opacity: 0;
    animation: contact-card-slideup 0.5s cubic-bezier(0.23, 1, 0.32, 1) forwards;
}

/* 通过CSS选择器实现顺序延迟 */
.contact-animate-card:nth-child(1) { animation-delay: 0.1s; }
.contact-animate-card:nth-child(2) { animation-delay: 0.2s; }
.contact-animate-card:nth-child(3) { animation-delay: 0.3s; }
.contact-animate-card:nth-child(4) { animation-delay: 0.4s; }
.contact-animate-card:nth-child(n+5) { animation-delay: 0.5s; }

@media (max-width: 767px) {
  @keyframes contact-card-slideup {
    from { transform: translateY(40px); }
  }
  
  /* 覆盖动画和初始状态 */
  .contact-animate-card {
    animation: none !important;
    opacity: 1 !important;
    transform: translateY(0) !important;
  }
  
  /* 保持其他移动端样式 */
  .contact-animate-group {
    gap: 15px;
  }
}


.bemet-contact-info-wrap {
  background-size: cover;
  background-position: center;
  padding: 50px 0 90px;
}
@media (max-width: 767px) {
  .bemet-contact-info-wrap {
    padding: 20px 0 30px 0;
  }
}
.bemet-contact-info-wrap .contact-info {
  justify-content: stretch;
}
.bemet-contact-info-wrap .contact-info-item {
  background: #f5f5f5;
  border-radius: 6px;
  text-align: center;
  padding: 40px;
  margin-bottom: 30px;
  width: 100%;
  height: 250px;
}
@media (max-width: 1199px) {
  .bemet-contact-info-wrap .contact-info-item {
    padding: 30px 25px;
  }
}event
@media (max-width: 767px) {
  .bemet-contact-info-wrap .contact-info-item {
    margin-bottom: 20px;
  }
}

.bemet-contact-info-wrap .row > div:nth-child(even) .contact-info-item {
  background: #f5f5f5;
}

.bemet-contact-info-wrap .contact-info-item .icon {
  width:75px;
  height: 75px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  background: #fff;
  border-radius: 50%;
  font-size: 40px;
  line-height: 0;
  color: var(--color-primary);
  margin-bottom: 25px;
}
.bemet-contact-info-wrap .contact-info-item .icon .iconfont {
  font-size: 32px;
}
.bemet-contact-info-wrap .contact-info-item .content .title {
  margin-bottom: 10px;
  font-size: 18px;
  color: #000;
  line-height: 1.2;
}
@media (max-width: 1119px) {
  .bemet-contact-info-wrap .contact-info-item .content .title {
    font-size: 22px;
  }
}
.bemet-contact-info-wrap .contact-info-item .content span {
  display: block;
  line-height: 1.4;
  font-size: 16px;
  font-weight: 400;
  color: #000;
  display: -webkit-box;
  word-break: break-all;
  text-overflow: ellipsis;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}
@media (max-width: 1119px) {
  .bemet-contact-info-wrap .contact-info-item .content span {
    font-size: 15px;
  }
}

