/* ------------------------------- */
/* Goods */
.sec-goods-all{
  padding-top:40px;
  margin-bottom:100px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}

.sec-goods-all .blk-goods{
  display: block;
  width: 30%;
  height: 260px;
  margin: 1.5%;
  border: 1px solid;
  background-color: rgb(26, 26, 26);
  position: relative;
  overflow: hidden;
  min-width: 300px;
}

.sec-goods-all .blk-goods .blk-img{
  text-align: center;
  margin-top: 20px;
}
.sec-goods-all .blk-goods .blk-img img{
  width: 200px;
  height: 200px;
  object-fit: contain;
}
.sec-goods-all .blk-goods h2{font-size: 18px; color: #fff; text-align: center; font-weight: bold; margin-top: 10px; padding: 0 20px;}
.sec-goods-all .blk-goods.goods-item h2 {
  color: #d65050;
}
.sec-goods-all .blk-goods p{font-size: 14px; color: #fff; margin: 20px 0px; padding: 0 20px;}

@media screen and (max-width:440px){
  .sec-goods-all .blk-goods{
    width: 100%;
    margin: 10px;
  }
  .sec-goods-all .blk-goods .blk-img{
    margin-left: 0%;
  }
  .sec-goods-all .blk-goods .blk-img img{
    width: 100%;
    object-fit: contain;
  }
}

.sec-goods-all .blk-goods .jump {
  width: 100%;
  height: 260px;
  box-sizing: border-box !important;
  position: absolute;
  top: 0;
  margin: 0;
  color: #fff;
  background: rgb(26, 26, 26,0.8);
  transition: opacity .6s, transform .6s cubic-bezier(0.215, 0.61, 0.355, 1);
  display: flex;
  justify-content: center;
  align-items: center;
}
.sec-goods-all .blk-goods .jump .jump-label{
  font-size: 28px;
  font-weight: bold;
  text-align: center;
  border-top: solid 2px #fff;
  border-bottom: solid 2px #fff;
  padding: 20px 0px;
  width: 45%;
}
.sec-goods-all .blk-goods:not(:hover) .jump {
	opacity: 0;
	transform: translateY(100%);
}

@media screen and (max-width:440px){
  #goods-models {
    margin-top: 32px;
  }
}

.sec-goods-all .goods-heading {
  width: 100%;
  font-size: 16px;
  text-align: center;
  color: lightgrey;
}

.goods-listing-anchor {
  padding: 2px;
  margin: 16px auto;
  width: 100%;
  text-align: center;
}

.goods-listing-anchor a {
  font-size: 18pt;
  border: 1px solid #999;
  padding: 2px 10px;
}
.goods-listing-anchor a:visited, .goods-listing-anchor a:active {
  color: #d65050;
}

.goods-heading {
  background: #222;
  padding: 10px;
}

#goods-models {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  scroll-margin-top: 70px;
}

#goods-models .blk-goods .test {
  box-sizing: border-box !important;
  position: absolute;
  top: 0;
  margin: 0;
  color: #fff;
  width: 100%;
  background: rgb(26, 26, 26,0.8);
}

#goods-models .blk-goods .test .test2{
  font-size: 28px;
  font-weight: bold;
  text-align: center;

  margin-left: 30%;
  border-top: solid 2px #fff;
  border-bottom: solid 2px #fff;
  padding: 20px 0px;

  width: 45%;
}

#goods-models .blk-goods .test {
	transition: opacity .6s, transform .6s cubic-bezier(0.215, 0.61, 0.355, 1);
}
#goods-models .blk-goods:not(:hover) .test {
	opacity: 0;
	transform: translateY(100%);
}

.goods-item {
  border: 1px solid;
  padding: 1px;
}
