.example-card {
  background-color: #fff;
  border: 2px solid #f4f4f4;
  padding: 0.1rem;
  min-height: 2rem;
  display: flex;
  align-items: center;
  box-shadow: 0 0.02rem 0.1rem rgba(0, 0, 0, 0.05);
  transition: all 0.4s;
}

.example-card:hover {
  border-color: #1b3b98;
}

.example-card:hover .card-image img {
    transform: scale(1.05);
}

.example-card .card-image {
  width: 2.2rem;
  height: 1.85rem;
  margin-right: 0.2rem;
  overflow: hidden;
}

.example-card .card-image img {
  height: 100%;
  width:100%;
  transition: .4s;
  object-fit: cover;
}

.example-card .card-content {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.example-card .card-title {
  transition: all 0.4s;
  padding-top: 0.1rem;
  font-size: 0.18rem;
  color: #000000;
  margin-bottom: 0.1rem;
}

.example-card .card-meta {
  font-size: 0.14rem;
  color: #666;
  margin-bottom: 0.1rem;
  display: flex;
  gap: 0.1rem;
  border-bottom: 1px solid #e0e0e0;
  padding-bottom: 0.1rem;
  transition: all 0.4s;
}

.example-card .card-meta span {
  display: inline-flex;
  align-items: center;
}

.example-card .card-meta img {
  width: 0.14rem;
  height: 0.14rem;
  margin-right: 0.05rem;
}


.example-card .card-tags .tag {
  display: inline-block;
  background-color: #e0e7f1;
  transition: all 0.4s;
  color: #0052d9;
  padding: 0.03rem 0.08rem;
  border-radius: 0.04rem;
  font-size: 0.14rem;
  margin-right: 0.05rem;
  margin-bottom: 0.05rem;
}

.example-card .card-description {
  font-size: 0.14rem;
  text-indent: 2em;
  color: #555;
  flex-grow: 1;
  transition: all 0.4s;
}

.example-card .card-details-link {
  color: #0f39a8;
  transition: all 0.4s;
}

.product-page-container {
    margin-top: 0!important;
}

.example-tabs {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.2rem;
}

.example-tab {
  padding: 0.2rem 0.5rem;
  color: #000000;
  font-size: 0.22rem;
  position: relative;
  transition: .3s;
}

.example-tab.active {
  color: #142891;
}

.example-tab:hover {
  color: #142891;
}

.example-tab.active::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0.1rem;
  transform: translateX(-50%);
  height: 2px;
  width: 0.34rem;
  background-color: #142891;
}

@media (max-width: 767.98px) {
  .example-tab {
    padding: 0.1rem 0.2rem;
  }
  
  .example-card .card-meta {
      font-size: 0.18rem;
  }
  
  .example-card .card-meta img {
      width: 0.18rem;
      height: 0.18rem;
  }
  
  .example-card .card-title {
      font-size: 0.24rem;
  }
  
  .example-card {
      padding: 0.2rem;
  }
  
  .example-card .card-description {
      font-size: 0.18rem;
      text-indent: 0em;
  }
  
  .example-tab.active::after {
    bottom: 0rem;
  }
  
  .example-card {
    flex-direction: column;
  }

  .example-card .card-image {
    width: 100%;
    margin-right: 0;
    margin-bottom: 10px;
    max-height: 300px;
  }

  .example-card .card-image img {
    width: 100%;
  }
}