﻿.pro-list {
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 20px;
}
.pro-item {
    width: calc(33.33% - 20px);
    margin: 0 30px 30px 0;
}
.pro-item:nth-child(3n){
    margin-right:0;
}
.pro-item:last-child {
  margin-right: 0;
}
.pro-item a {
  display: block;
  background: #fff;
  text-decoration: none;
  color: #666666;
  transition: all 0.5s;
}
.pro-item a:hover {
  opacity: 0.7;
}
.pro-itm-img {
  margin: 0;
  overflow: hidden;
}
.pro-itm-img img {
  width: 100%;
  transition: all 0.7s;
}
.pro-item a:hover .pro-itm-img img {
  transform: scale(1.1, 1.1);
}
.pro-itm-main {
  padding: 15px 20px;
  border: 1px solid #dedede;
  border-top: none;
}
.pro-itm-ttl {
  font-size: 15px;
  color: #7c6669;
  text-transform: uppercase;
  line-height: 1.5em;
}
.pro-itm-info, .pro-itm-main ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.pro-itm-info li, .pro-itm-main ul li {
  font-size: 14px;
  line-height: 1.5em;
  position: relative;
  padding-left: 15px;
  margin-top: 5px;
}
.pro-itm-info li:before, .pro-itm-main ul li:before {
  content: '';
  position: absolute;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #666;
  left: 0;
  top: 9px;
}
.pro-itm-info li > span, .pro-itm-main ul li > span {
  font-size: 15px;
  font-weight: bold;
}
.pro-itm-info li span.pro-itm-price-num {
  color: #009a4e;
  font-weight: normal;
}
.pro-itm-price-num span {
  font-size: 24px;
  font-weight: bold;
}
.pro-itm-info li.pro-itm-price:before {
  top: 13px;
}
.pro-itm-info li.pro-itm-price {
  width: 100%;
}
@media screen and (max-width: 768px) {
.pro-list{justify-content:space-between;}
 .pro-item {
    width: calc(50% - 15px);margin-right:0;
}
 .pro-item:nth-child(2n) {
    margin-right: 0;
}
}
@media screen and (max-width: 480px) {
.pro-list{justify-content:space-between}
.pro-item {
    width: 100%;
    margin: 0 0 30px;
}
.pro-itm-ttl{
    height: 48px;
    overflow: hidden;
}
}