.product-layout {
  min-height: 790px;
  min-height: calc(100vh - 70px - 70px);
  position: relative;
}

.bg-image {
  position: absolute;
  z-index: -1000;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: 470px;
  object-fit: cover;
}

.product-cont {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  padding-bottom: 100px;
}

.title-cont {
  color: #fff;
  font-size: 30px;
  text-align: center;
  padding: 70px 0;
}

.title-cont p {
  padding: 15px 0;
}

.product-list {
  width: 100%;
  display: flex;
  /* align-items: stretch; */
  /* justify-content: space-between; */
}
.product-left, .product-right{
  width: 3%;
  display: flex;
  justify-content: space-around;
  align-items: center;
  cursor: pointer;
}
.product-left i, .product-right i{
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: inline-block;
  background-color: #999;
  position: relative;
}
.product-left i::after, .product-right i::after{
  position: absolute;
  content: ' ';
  top: 50%;
  left: 50%;
  transform: translateX(-50%) translateY(-50%);
  width: 14px;
  height: 14px;
  border-bottom: 2px solid #fff;
  border-right: 2px solid #fff;
}
.product-left i{

  transform: translateY(-50%) rotate(135deg);
}
.product-right i {

  transform: translateY(-50%) rotate(315deg);
}

.product-left i:hover, .product-right i:hover{
  background-color: #589afb
}
.product-slide{
  position: relative;
  width: 94%;
  overflow-x: hidden;
}
.product-container{
  width:200%;
  display: flex;
  transition: all ease-in-out 600ms;
  /* margin-left: -278px; */
}

.product-item {
  background-color: #fff;
  padding: 20px;
  margin-right:22px;
  margin-top:10px;
  margin-bottom: 10px;
  box-shadow: 0px 0px 10px #e8e8e8;
  text-align: center;
  width: 218px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  transition: box-shadow 0.15s linear;
}
.product-item:first-child{
  margin-left: 18px;
}

.product-item:hover {
  box-shadow: 0px 0px 20px rgba(140, 176, 253, 0.35);
}

.product-item .title {
  font-size: 20px;
  padding: 20px 0 30px;
}

.product-item .detail {
  font-size: 14px;
  color: #666;
  line-height: 24px;
}

.btn-wrap {
  margin-top: 40px;
  width: 60%;
}

.btn {
  user-select: none;
  display: block;
  border: 1px solid #3182f9;
  background-color: #fff;
  color: #3182f9;
  font-size: 14px;
  height: 30px;
  line-height: 30px;
}

.btn + .btn {
  margin-top: 15px;
}

.btn:active, .btn:hover {
  background-color: #3182f9;
  color: #fff;
}

.btn-disabled {
  border: 1px solid #999;
  color: #999;
  cursor: pointer;
  pointer-events: none;
}