﻿.shop-list {
  background: #ffffff;
}

.shop-list .shop-list-inner {
  width: 1200px;
  margin: 0px auto;
}

.shop-list .shop-item {
  padding: 30px 0px;
  position: relative;
  border-bottom: 1px solid #e5e5e5;
}

.shop-list .shop-item::after {
  content: "";
  display: block;
  clear: both;
}

.shop-list .shop-item .shop-info {
  float: left;
  width: 240px;
}
.shop-list .shop-item .shop-info .shop-name{
  font-size: 15px;
  font-weight: bold;
  color: #e53737;
}
.shop-list .shop-item .shop-info .shop-logo{
  width: 100px;
  height: 100px;
  background: #333333;
  margin-bottom: 10px;
  display: block;
}
.shop-list .shop-item .shop-info .shop-logo img{
  width: 100%;
  height: 100%;
}
.shop-list .shop-item .shop-info .shop-btns{
  padding-top: 10px;
}
.shop-list .shop-item .shop-info .btn-entry{
  display: inline-block;
  border-radius: 4px;
  padding: 0px 10px;
  background: #f5f5f5;
  color: #336699;
  border: 1px solid #e5e5e5;
}
.shop-list .shop-item .product-list {
  margin-left: 240px;
  border-left: 1px dotted #e5e5e5;
}

.shop-list .shop-item .product-list:after {
  content: "";
  display: block;
  clear: both;
}

.shop-list .shop-item .product-list .product-item {
  width: 25%;
  float: left;
}

.shop-list .shop-item .product-list .product-item .item-inner {
  background: #ffffff;
  padding:0px 20px;
  display: block;
}

.shop-list .shop-item .product-list .product-item .img-box {
  display: block;
  position: relative;
  background: #dddddd;
  margin-bottom: 10px;
}

.shop-list .shop-item .product-list .product-item .img-box::before {
  content: "";
  display: block;
  padding-top: 100%;
}

.shop-list .shop-item .product-list .product-item .img-box img {
  position: absolute;
  left: 0px;
  top: 0px;
  width: 100%;
  height: 100%;
}

.shop-list .shop-item .product-list .product-item .img-des {
  display: block;
}

.shop-list .shop-item .product-list .product-item .product-name {
  min-height: 3em;
  max-height: 3em;
  text-align: left;
  color: #333333;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.shop-list .shop-item .product-list .product-item .product-price {
  display: block;
  color: #e53737;
  font-size: 14px;
  font-family: 'Roboto', sans-serif;
}

.shop-list .shop-item .product-list .product-item .price-int {
  font-size: 20px;
}