.index-container {
  padding: 15px;
    max-width: 1280px;
    margin: 0 auto;
}
.index-container .index-title {
  text-align: center;
  padding: 10px 0 0;
  font-size:34px;
  font-weight: 600;
}
.index-container .index-sub-title {
  text-align: center;
  color: #666666;
  font-size: 16px;
  padding: 0 0 5px;
}
.index-container .index-goods-item {
  padding: 15px;
}

.index-container .index-goods-item .index-goods {
  display: block;
  overflow: hidden;
  position: relative;
}
.index-container .index-goods-item .goods-image {
  display: block;
  position: relative;
  height: 0;
  padding-bottom: 125%;
  background: #ffffff;
  border: 2px dashed #e5e5e5;
  transition: all .8s ease;
}

.index-container .index-goods-item .goods-image img {
  position: absolute;
  z-index: 98;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all .8s ease;
}
.index-container .index-goods:hover .goods-image {
  border-style: solid;
  border-color: #ff2e2e;
}
.index-container .index-goods:hover .goods-image img {
  height: calc(80% + 3px);
}
.index-container .index-goods-item .discount {
  position: absolute;
  top: 30px;
  left: -43px;
  font-size: 14px;
  background:rgb(255, 44, 24);
  color: #fff;
  padding: 0 10px;
  z-index: 99;
  line-height: 20px;
  height: 20px;
  font-weight: 500;
  border-radius: 0;
  width: 170px;
  text-align: center;
  transform: skew(45deg, -45deg);
}
.index-container .index-goods-item .index-goods-info{
  position: absolute;
  bottom: -3px;
  left: -2px;
  background: rgb(117 111 111 / 56%);
  width: calc(100% + 4px);
  z-index: 99;
  padding: 10px 15px;
  backdrop-filter: blur(6px);
  color: #ffffff;
  transition: background 0.8s ease;
}
.index-container .index-goods:hover .index-goods-info{
  background: rgb(255 44 24 / 36%);
}
.index-container .index-goods-item .goods-title {
  display: -webkit-box;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  text-overflow: ellipsis;
  font-size: 18px;
  line-height: 1;
  height: 52px;
  line-height: 1.4;
}

.index-container .index-goods-item .price-box{
  line-height: 1;
  display: flex;
  align-items: baseline;
  padding-top: 10px;
}
.index-container .index-goods-item .price-sale {
  color: #ffffff;
  font-size: 21px;
}
.index-container .index-goods-item .price-original {
  color: #f6f6f6;
  font-size: 16px;
  text-decoration: line-through;
  padding-left: 10px;
  opacity: 0.65;
}


.index-services-container {
  text-align: center;
  background: #f7f7f7;
  border-radius: 20px;
  padding: 30px 0;
  margin: 30px 0;
}
.index-service-item{
  padding: 8px 0;
}
.index-service-icon .icon{
  width: 60px;
  height: 60px;
}

.index-service-title {
    font-size: 20px;
    font-weight: bold;
    padding: 15px 0;
}

.index-service-sub-title {
    color: #999;
    line-height: 1.25;
    font-size: 14px;
    padding: 0 5px;
}



@media all and (max-width: 768px) {
  .index-list {
    padding: 0 7.5px;
  }

  .index-list .index-goods-item {
    padding: 7.5px;
  }
  .index-list .index-goods-item .goods-title {
    font-size: 16px;
    line-height: 1.45;
    height: 45px;
  }
  .index-container .index-goods-item .goods-img-box img{
    padding: 10px;
  }

}

.index-secction .blog-item {
  padding: 15px;
}
.index-secction .blog-item .blog-inner {
  background: #f5f5f5;
  display: block;
  border: 1px solid #f5f5f5;
}

.index-secction .blog-img {
  width: 100%;
  padding-bottom: 40%;
  height: 0;
  position: relative;
  overflow: hidden;
}
.index-secction .blog-img img {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s ease;
}
.index-secction .blog-item .blog-inner:hover .blog-img img {
  transform: scale(1.1);
}
.index-secction .blog-tag {
  padding: 15px 0 5px;
}
.index-secction .blog-tag a {
  background: #d2ef9a;
  border-radius: 20px;
  padding: 3px 15px;
  font-size: 14px;
}
.index-secction .blog-info{
  padding: 0 15px 15px;
}
.index-secction .blog-title {
  padding-top: 15px;
  font-size: 19px;
  font-weight: bold;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}
.index-secction .blog-desc {
  color: #666;
  font-size: 16px;
}
.viewall{
  font-size: 14px;
  font-weight: normal;
  text-decoration: underline;
}