/* banner */
.banner {
  overflow: hidden;
  position: relative;
  width: 100%;
}

.banner .swiper,
.banner .swiper img {
  width: 100%;
}

.goods h3 {
  position: relative;
  color: #fff;
  font-size: 24px;
  text-align: center;
  padding-top: 30px;
  margin: 20px 0 48px;
}

.goods h3::after {
  position: absolute;
  top: 72px;
  left: 50%;
  width: 46px;
  height: 2px;
  transform: translateX(-50%);
  background-image: -webkit-gradient(linear, left top, right top, from(#00e3a0), to(#1a5ab0));
  background-image: linear-gradient(90deg, #00e3a0, #1a5ab0);
  opacity: .5;
  content: "";
}

.goods .list {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  margin-top: 20px;
}

.goods .list .item {
  width: 23%;
  margin-right: 2%;
  margin-bottom: 40px;
  border-radius: 10px;
  background-color: rgba(14, 4, 27, .16);
  box-shadow: 1px 1px 4px rgb(0 0 0 / 30%);
}

.goods .list .item:nth-child(4n) {
  margin-right: 0;
}

.goods .list .item .title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 18px 20px;
  box-sizing: border-box;
  border-bottom: 1px solid hsla(0, 0%, 90.2%, .1);
}

.goods .list .item .title span {
  color: #bbafca;
  font-size: 20px;
  font-weight: 700;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.goods .list .item .title a,
.goods .list .item .title .p {
  display: block;
  color: transparent;
  font-size: 20px;
  -webkit-background-clip: text;
  background-image: linear-gradient(90deg, #00e3a0, #1a5ab0);
}

.goods .list .item .nr {
  width: 100%;
  padding: 20px 28px;
  box-sizing: border-box;
}

.goods .list .item .nr .xing {
  width: 100%;
  margin-bottom: 10px;
}

.goods .list .item .nr .img {
  position: relative;
  display: block;
  overflow: hidden;
  border-radius: 10px;
}

.goods .list .item .nr .img span {
  position: absolute;
  bottom: 0;
  right: 0;
  color: #fff;
  font-size: 14px;
  padding: 5px 10px;
  background-color: #E6224D;
}

.goods .list .item .nr .img img {
  width: 100%;
  object-fit: cover;
  transition: all .3s;
}

.goods .list .item .nr .img img:hover {
  transform: scale(1.05);
}

.goods .list .item .nr p {
  color: #bbafca;
  font-size: 20px;
  text-align: center;
  margin-top: 10px;
}

/* 联系我们 */
.contact {
  width: 100%;
  padding: 80px 0;
  box-sizing: border-box;
}

.contact h3 {
  color: #fff;
  font-size: 28px;
  text-align: center;
  margin-bottom: 52px;
}

.contact .content {
  width: 60%;
  margin: 0 auto;
}

.contact .content .right {
  width: 100%;
}

.contact .content .left {
  color: #fff;
}

.contact .content .left p {
  color: #fff;
  font-size: 16px;
  line-height: 2;
  text-align: right;
}

.contact .content .left i {
  color: #30739f;
}

.contact .content .right p {
  color: #fff;
  font-size: 16px;
  margin-bottom: 5px;
}

.contact .content .right input {
  width: 100%;
  height: 46px;
  color: #606266;
  padding: 0 15px;
  border-radius: 4px;
  margin-bottom: 22px;
  box-sizing: border-box;
  background-color: rgba(14, 4, 27, .24);
  border: 1px solid hsla(0, 0%, 90.2%, .24);
}

.contact .content .right textarea {
  width: 100%;
  height: 160px;
  color: #606266;
  padding: 10px 15px;
  border-radius: 4px;
  margin-bottom: 22px;
  box-sizing: border-box;
  background-color: rgba(14, 4, 27, .24);
  border: 1px solid hsla(0, 0%, 90.2%, .24);
}

.contact .content .right button {
  width: 160px;
  height: 55px;
  color: #fff;
  font-size: 18px;
  border-radius: 25px;
  background: linear-gradient(90deg, rgba(0, 227, 160, .8), rgba(26, 90, 176, .8));
  cursor: pointer;
}

.contact .content .right .tip {
  color: #fff;
  font-size: 16px;
  line-height: 2;
  margin-top: 20px;
}

/* 提示框 */
.tip2 {
  display: none;
  position: fixed;
  top: 20%;
  left: 50%;
  transform: translateX(-50%);
  padding: 15px;
  border-radius: 8px;
  box-sizing: border-box;
  background-color: #fff;
  box-shadow: 1px 2px 12px rgba(0, 0, 0, .4);
  z-index: 15;
}

@media screen and (max-width: 992px) {
  .goods .list {
    flex-wrap: wrap;
    justify-content: space-between;
  }

  .goods .list .item {
    width: 48%;
    margin-right: 0;
    margin-bottom: 20px;
  }

  .goods .list .item .title span {
    font-size: 12px;
  }

  .goods .list .item .title a,
  .goods .list .item .title .p {
    font-size: 12px;
  }

  .goods .list .item .nr {
    padding: 15px;
  }

  .goods .list .item .nr p {
    font-size: 14px;
  }

  .contact .content {
    width: 100%;
  }
}