﻿.productlist .box {
  padding: 15px;
  border: 1px solid rgb(238, 238, 238);
  text-align: center;
}
.productlist .box:hover {
  border-color: #006db5;
}
.productlist .box img {
  width: 100%;
  height: 100%;
  transition: all 0.3s;
  margin-top: 1rem;
}
.productlist .box:hover img {
  transform: scale(1.05);
}
.productlist .box p {
  margin: 1rem 0;
  color: #5a5a5a;
}

.productlist .pic {
  height: 200px;
  overflow: hidden;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.productlist .pic img {
  opacity: 0;
}
.productlist table {
  text-align: center;
}
.productlist table td {
  vertical-align: middle;
}
.productlist table td .ico {
  width: 200px;
}

.product h3 {
  color: #124185;
  font-size: 16px;
  font-weight: bolder;
}
.product span {
  color: #5a5a5a;
  font-size: 12px;
  display: block;
}
.product .intro {
  padding: 5px;
  line-height: 1.7em;
  color: #868686;
  background-color: #F5F5F5;
  border: #E5E5E5 1px solid;
  margin-bottom: 10px;
  text-indent: 24px;
  font-size: 12px;
}
.product .infos p {
  margin-bottom: 1rem;
}