.main{
  padding-top: 40px;
}

.crumbs a{
  font-size: 16px;
  color: #5d5d5d;
  cursor: inherit;
}
.crumbsClick:hover{
  text-decoration: underline;
  color: #000;
  cursor: pointer;
}
/* 商品 */
.shopList{
  display: flex;
  justify-content: flex-start;;
  flex-wrap: wrap;
  width: 100%;
  padding: 20px 0;
}
.shopBox{
  position: relative;
  flex-shrink: 0;
  width: 270px;
  margin: 40px 20px;
  cursor: pointer;
  overflow: hidden;
}
.shopBox:first-of-type,
.shopBox:nth-of-type(4n+1){
  margin-left: 0;
}
.shopBox:nth-of-type(4n){
  margin-right: 0;
}
.shopImg{
  width: 100%;
  height: 230px;
  overflow: hidden;
}
.shopImg img{
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all .3s;
}
.shopInfo{
  position: absolute;
  left: 0;
  bottom: -50px;
  width: 100%;
  background-color: rgba(0, 0, 0, .5);
  padding: 10px;
  text-align: center;
  box-sizing: border-box;
  transition: all .3s;
}
.shopText{
  width: 100%;
  font-size: 18px;
  font-weight: bold;
  color: #eee;
  overflow:hidden;
  text-overflow:ellipsis;
  white-space:nowrap;
}
.shopMoney{
  color: #de4a30;
}
.moneyIcon{
  font-size: 12px;
}
.money{
  font-size: 36px;
}
.shopBtn{
  position: absolute;
  top: -85px;
  left: 50%;
  width:80px;
  height: 80px;
  margin-left: -45px;
  color: #fff;
  text-align: center;
  background-color: #fcbb3f;
  border-radius: 50%;
  box-shadow: 0 0 10px #e2e2e2;
  opacity: .95;
  transition: all .3s;
}
.shopBtn span{
  display: inline-block;
  padding-top: 15px;
}
.shopBtn:hover{
  opacity: 1;
}
.shopBox:hover{
  box-shadow: 0 0 15px 2px #ddd;
}
.shopBox:hover img{
  transform: scale(1.2,1.2);
}

.shopBox:hover .shopInfo{
  bottom: 0;
}
.shopBox:hover .shopBtn{
  top: 45px;
}


.payImg{
  display: none;
}