.ws_product .ws_product_item {
  cursor: pointer;
  width: 24%;
  position: relative;
  overflow: hidden;
}
.ws_product .ws_product_item img {
  width: 100%;
  border-radius: 5px;
}
.ws_product .ws_product_item .product_words {
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 4px;
  top: 0;
  background: linear-gradient(180deg, rgba(42, 130, 228, 0.1) 35.17%, #003c80 100%);
  text-align: left;
  color: #fff;
}
.ws_product .ws_product_item .product_words .product_words_title {
  font-weight: 700;
}
.ws_product .ws_product_item .product_words .product_words_text {
  padding: 4% 0;
}
.ws_product .ws_product_item .product_words .product_row {
  width: 60px;
  height: 2px;
  opacity: 1;
  background: #d43030;
}
.ws_product .ws_product_item .product_gray {
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 4px;
  top: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.1) 0%, #000000 100%);
  color: #fff;
  animation: 2s ease;
  transform: translateY(100%);
}
.ws_product .ws_product_item .product_gray .product_gray_text {
  font-weight: 400;
  letter-spacing: 0px;
  line-height: 22px;
  color: #ffffff;
  text-align: center;
  vertical-align: top;
}
.ws_product .ws_product_item .product_gray .product_gray_text_fot {
  position: absolute;
  bottom: 5%;
  left: 0;
  right: 0;
  text-align: center;
}
.ws_product .ws_product_item:hover .product_gray {
  transform: translateY(0%);
  transition: all 1s;
  display: block;
}
.ws_product .ws_product_item:hover .product_words {
  display: none;
}
