@charset "utf-8";
/* CSS Document */


.mj-productlist {
  width: 100%;
  margin: 30px auto 80px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -ms-align-items: stretch;
  align-items: stretch;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
.mj-productlist li {
  display: block;
  width: -webkit-calc((100% - 30px ) / 3);
  width: -o-calc((100% - 30px ) / 3);
  width: calc((100% - 30px ) / 3);
  position: relative;
  text-align: center;
  margin-bottom: 30px;
}
.mj-productlist li > a {
  display: block;
  border: 1px solid #bbb3a9;
  background-color: #fff;
  padding: 10px 20px 20px;
  box-sizing: border-box;
}
.mj-productlist li > a:hover {
  color: #4c443a;
  text-decoration: none;
  background-color: #faf8f5;
}
.mj-productlist-img {
  width: 100%;
  text-align: center;
  box-sizing: border-box;
  padding: 0;
  height: 174px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
  -ms-align-items: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: center;
}
.mj-productlist-img img {
  max-width: 100%;
  height: auto;
}
.mj-productlist .mj-productlist-name {
  display: block;
  color: #e63376;
  font-size: 22px;
  font-weight: bold;
  margin-bottom: 14px;
}
.mj-productlist .mj-productlist-txt {
  display: block;
  margin: 14px auto;
  color: #4c443a;
  font-size: 12px;
  text-align: center;
  line-height: 22px;
}

.mj-productlist .btn-box {
  text-align: center;
  margin: 0px auto;
}
.mj-productlist .btn-box span {
  color: #fff;
  display: inline-block;
	box-sizing: border-box;
  position: relative;
  font-size: 16px;
  line-height: 1em;
  padding: 12px;
  width: 100%;
  background-color: #4c443a;
  background-image: url(../shared/img/btn_ar.png);
  background-repeat: no-repeat;
  background-position: 0 50%;
  -webkit-transition: all .3s ease;
  -o-transition: all .3s ease;
  transition: all .3s ease;
}
.mj-productlist a:hover .btn-box span {
  text-decoration: none;
  color: #fff;
  background-color: #e63376;
}
.mj-productlist .btn-box span:before {
  content: "";
  position: absolute;
  width: 0;
  height: 0;
  top: -4px;
  left: -4px;
  opacity: 0;
  box-sizing: border-box;
  border-top: 2px solid #e63376;
  border-left: 2px solid #e63376;
  -webkit-transition: all .4s ease;
  -o-transition: all .4s ease;
  transition: all .4s ease;
}
.mj-productlist a:hover .btn-box span:before {
  content: "";
  opacity: 1;
  width: -webkit-calc(100% + 8px);
  width: -o-calc(100% + 8px);
  width: calc(100% + 8px);
  height: -webkit-calc(100% + 8px);
  height: -o-calc(100% + 8px);
  height: calc(100% + 8px);
}
.mj-productlist .btn-box span:after {
  content: "";
  position: absolute;
  width: 0;
  height: 0;
  bottom: -4px;
  right: -4px;
  opacity: 0;
  box-sizing: border-box;
  border-bottom: 2px solid #e63376;
  border-right: 2px solid #e63376;
  -webkit-transition: all .4s ease;
  -o-transition: all .4s ease;
  transition: all .4s ease;
}
.mj-productlist a:hover .btn-box span:after {
  content: "";
  opacity: 1;
  width: -webkit-calc(100% + 8px);
  width: -o-calc(100% + 8px);
  width: calc(100% + 8px);
  height: -webkit-calc(100% + 8px);
  height: -o-calc(100% + 8px);
  height: calc(100% + 8px);
}