#app {
  width: 100%;
  background: #f8fafc;
}
.product {
  width: 100%;
  position: relative;
  top: -85px;
  z-index: 2;
}
.product .back {
  width: 100%;
  height: 85px;
  border-radius: 64px 64px 0px 0px;
  background: #f8fafc;
}
.product .inner {
  display: flex;
  justify-content: space-between;
}
.product .inner .section1 {
  width: 30%;
  display: flex;
  flex-direction: column;
  gap: 27px;
}
.product .inner .section1 .section1-top {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 27px;
}
.product .inner .section1 .section1-top .item {
  width: 100%;
  height: 50px !important;
  border-radius: 15px;
  overflow: hidden;
  position: relative;
  transition: 0.5s;
}
.product .inner .section1 .section1-top .item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.product .inner .section1 .section1-top .item .content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 20px;
  transition: 0.5s;
}
.product .inner .section1 .section1-top .item .content p {
  color: #ffffff;
  font-family: "Alibaba PuHuiTi";
  font-weight: 700;
  font-size: 16px;
  line-height: 24px;
  transition: 0.5s;
}
.product .inner .section1 .section1-top .item .content .icon {
  width: 32px;
  min-width: 32px;
  max-width: 32px;
  height: 32px;
  border-radius: 50%;
  background: #eb6e21;
  display: flex;
  align-items: center;
  justify-content: center;
  display: none;
  transition: 0.5s;
}
.product .inner .section1 .section1-top .item-active {
  height: 350px !important;
}
.product .inner .section1 .section1-top .item-active .content {
  align-items: flex-end;
  padding: 35px 20px;
}
.product .inner .section1 .section1-top .item-active .content p {
  color: #ffffff;
  font-family: "Alibaba PuHuiTi";
  font-weight: 700;
  font-size: 24px;
  line-height: 32px;
}
.product .inner .section1 .section1-top .item-active .content .icon {
  display: flex;
}
.product .inner .section1 .section1-bottom {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 27px;
}
.product .inner .section1 .section1-bottom .prev,
.product .inner .section1 .section1-bottom .next {
  cursor: pointer;
}
.product .inner .section1 .section1-bottom .prev svg {
  transform: rotate(180deg);
}
.product .inner .section2 {
  width: 68%;
  display: flex;
  flex-direction: column;
  gap: 45px;
}
.product .inner .section2 .section2-top {
  width: 100%;
  border-radius: 7px;
  overflow: hidden;
  background: rgba(230, 230, 230, 0.56);
  display: flex;
  justify-content: space-between;
  padding: 12px 16px;
}
.product .inner .section2 .section2-top input {
  width: calc(100% - 40px);
  border: none;
  outline: none;
  background: transparent;
}
.product .inner .section2 .section2-top input::placeholder {
  color: rgba(105, 105, 105, 0.7);
  font-family: "Alibaba PuHuiTi";
  font-weight: 400;
  font-size: 19px;
  line-height: 22px;
}
.product .inner .section2 .section2-top svg {
  cursor: pointer;
}
.product .inner .section2 .section2-middle {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  column-gap: 20px;
  row-gap: 40px;
}
.product .inner .section2 .section2-middle .item {
  width: 100%;
  border-radius: 16px;
  border: 1px solid #f5f5f5;
  background: #ffffff;
  box-shadow: 0px 0px 4px rgba(0, 0, 0, 0.12);
  display: flex;
  flex-direction: column;
  padding: 25px 25px 35px 25px;
  position: relative;
  overflow: hidden;
}
.product .inner .section2 .section2-middle .item .img {
  width: 100%;
  overflow: hidden;
  margin-bottom: 25px;
  border-radius: 14px;
  background: #fafafa;
}
.product .inner .section2 .section2-middle .item .img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transform: scale(1);
  transition: 0.5s;
}
.product .inner .section2 .section2-middle .item .img img:hover {
  transform: scale(1.05);
}
.product .inner .section2 .section2-middle .item .text1 {
  color: #171717;
  font-family: Inter;
  font-weight: 700;
  font-size: 18px;
  line-height: 28px;
  margin-bottom: 8px;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  transition: 0.5s;
}
.product .inner .section2 .section2-middle .item .text2 {
  color: #62748e;
  font-family: "Alibaba PuHuiTi";
  font-weight: 400;
  font-size: 14px;
  line-height: 20px;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  transition: 0.5s;
}
.product .inner .section2 .section2-middle .item .content {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(235, 110, 33, 0.9);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  padding: 40px 0;
  opacity: 0;
  transition: 0.5s;
  pointer-events: none;
}
.product .inner .section2 .section2-middle .item .content .text3 {
  color: #ffffff;
  font-family: "Alibaba PuHuiTi";
  font-weight: 700;
  font-size: 24px;
  line-height: 28px;
  margin-bottom: 80px;
}
.product .inner .section2 .section2-middle .item .content .text4 {
  color: #ffffff;
  font-family: "Alibaba PuHuiTi";
  font-weight: 700;
  font-size: 18px;
  line-height: 28px;
  text-decoration-line: underline;
  text-underline-offset: 45%;
  text-underline-position: from-font;
  text-decoration-skip-ink: auto;
  margin-bottom: 100px;
}
.product .inner .section2 .section2-middle .item .content .more {
  display: flex;
  align-items: center;
}
.product .inner .section2 .section2-middle .item .content .more p {
  color: #ffffff;
  font-family: "Alibaba PuHuiTi";
  font-weight: 400;
  font-size: 15px;
  line-height: 28px;
}
.product .inner .section2 .section2-middle .item:hover .content {
  opacity: 1;
}
.product .inner .section2 .section2-bottom {
  width: 100%;
}
.product .inner .section2 .section2-bottom .page {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 50px;
  padding: 50px 0;
}
.product .inner .section2 .section2-bottom .page .pre-pageBtn,
.product .inner .section2 .section2-bottom .page .next-pageBtn {
  cursor: pointer;
}
.product .inner .section2 .section2-bottom .page .pre-pageBtn.disabled,
.product .inner .section2 .section2-bottom .page .next-pageBtn.disabled {
  opacity: 0.5;
  cursor: not-allowed;
  pointer-events: none;
}
.product .inner .section2 .section2-bottom .page .next-pageBtn {
  width: 41px;
  max-width: 41px;
  min-width: 41px;
  height: 41px;
  border-radius: 50%;
  background: #ff6900;
  display: flex;
  align-items: center;
  justify-content: center;
}
.product .inner .section2 .section2-bottom .page .pages {
  display: flex;
  align-items: center;
  gap: 50px;
}
.product .inner .section2 .section2-bottom .page .pages .num {
  padding: 5px 10px;
  border-radius: 4px;
  background: transparent;
  color: #000000;
  font-family: "Alibaba PuHuiTi";
  font-weight: 400;
  font-size: 30px;
  line-height: 41px;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: 0.5s;
  cursor: pointer;
}
.product .inner .section2 .section2-bottom .page .pages .num:hover {
  color: #ff6900;
}
.product .inner .section2 .section2-bottom .page .pages .num-active {
  color: #ff6900;
}
@media screen and (max-width: 1280px) {
  .product .inner .section1 .section1-top .item-active {
    height: 300px !important;
  }
  .product .inner .section2 .section2-middle {
    grid-template-columns: repeat(2, 1fr);
    row-gap: 30px;
  }
  .product .inner .section2 .section2-middle .item {
    padding: 22px 22px 30px 22px;
  }
  .product .inner .section2 .section2-middle .item .content {
    padding: 32px 0;
  }
  .product .inner .section2 .section2-middle .item .content .text3 {
    margin-bottom: 45px;
  }
  .product .inner .section2 .section2-middle .item .content .text4 {
    margin-bottom: 55px;
  }
}
@media screen and (max-width: 1024px) {
  .product {
    top: -60px;
  }
  .product .back {
    height: 60px;
    border-radius: 40px 40px 0 0;
  }
  .product .inner {
    gap: 28px;
  }
  .product .inner .section1 {
    width: 32%;
    gap: 20px;
  }
  .product .inner .section1 .section1-top {
    gap: 18px;
  }
  .product .inner .section1 .section1-top .item-active {
    height: 240px !important;
  }
  .product .inner .section1 .section1-top .item-active .content p {
    font-size: 20px;
    line-height: 28px;
  }
  .product .inner .section2 {
    width: 65%;
    gap: 32px;
  }
  .product .inner .section2 .section2-middle {
    column-gap: 16px;
    row-gap: 24px;
  }
  .product .inner .section2 .section2-middle .item {
    padding: 18px 18px 26px 18px;
  }
  .product .inner .section2 .section2-middle .item .img {
    margin-bottom: 18px;
  }
  .product .inner .section2 .section2-middle .item .text1 {
    font-size: 16px;
    line-height: 24px;
  }
  .product .inner .section2 .section2-middle .item .content .text3 {
    font-size: 20px;
    line-height: 26px;
    margin-bottom: 30px;
  }
  .product .inner .section2 .section2-middle .item .content .text4 {
    font-size: 16px;
    line-height: 24px;
    margin-bottom: 35px;
  }
}
@media screen and (max-width: 834px) {
  .product {
    top: 0;
    padding: 35px 0 10px;
  }
  .product .back {
    display: none;
  }
  .product .inner {
    flex-direction: column;
    gap: 28px;
  }
  .product .inner .section1,
  .product .inner .section2 {
    width: 100%;
  }
  .product .inner .section1 {
    gap: 16px;
  }
  .product .inner .section1 .section1-top {
    flex-direction: row;
    gap: 12px;
    overflow-x: auto;
    padding-bottom: 6px;
  }
  .product .inner .section1 .section1-top .item,
  .product .inner .section1 .section1-top .item-active {
    width: 220px;
    min-width: 220px;
    height: 90px !important;
  }
  .product .inner .section1 .section1-top .item .content,
  .product .inner .section1 .section1-top .item-active .content {
    align-items: center;
    padding: 16px;
  }
  .product .inner .section1 .section1-top .item .content p,
  .product .inner .section1 .section1-top .item-active .content p {
    font-size: 16px;
    line-height: 22px;
  }
  .product .inner .section1 .section1-top .item-active .content .icon {
    width: 28px;
    min-width: 28px;
    max-width: 28px;
    height: 28px;
  }
  .product .inner .section1 .section1-bottom {
    gap: 18px;
  }
  .product .inner .section1 .section1-bottom .prev svg,
  .product .inner .section1 .section1-bottom .next svg {
    width: 42px;
    height: 42px;
  }
  .product .inner .section2 {
    gap: 24px;
  }
  .product .inner .section2 .section2-top {
    padding: 10px 14px;
  }
  .product .inner .section2 .section2-top input::placeholder {
    font-size: 16px;
  }
  .product .inner .section2 .section2-top svg {
    width: 28px;
    height: 28px;
  }
  .product .inner .section2 .section2-middle {
    grid-template-columns: repeat(2, 1fr);
    column-gap: 14px;
    row-gap: 20px;
  }
  .product .inner .section2 .section2-middle .item {
    padding: 16px 16px 22px 16px;
  }
  .product .inner .section2 .section2-middle .item .content {
    display: none;
  }
  .product .inner .section2 .section2-bottom .page {
    gap: 24px;
    padding: 30px 0;
  }
  .product .inner .section2 .section2-bottom .page .pages {
    gap: 20px;
    flex-wrap: wrap;
    justify-content: center;
  }
  .product .inner .section2 .section2-bottom .page .pages .num {
    font-size: 24px;
    line-height: 34px;
  }
}
@media screen and (max-width: 480px) {
  .product {
    padding: 25px 0 0;
  }
  .product .inner {
    gap: 22px;
  }
  .product .inner .section1 .section1-top .item,
  .product .inner .section1 .section1-top .item-active {
    width: 175px;
    min-width: 175px;
    height: 72px !important;
    border-radius: 12px;
  }
  .product .inner .section1 .section1-top .item .content,
  .product .inner .section1 .section1-top .item-active .content {
    padding: 12px;
  }
  .product .inner .section1 .section1-top .item .content p,
  .product .inner .section1 .section1-top .item-active .content p {
    font-size: 14px;
    line-height: 20px;
  }
  .product .inner .section1 .section1-top .item-active .content .icon {
    width: 24px;
    min-width: 24px;
    max-width: 24px;
    height: 24px;
  }
  .product .inner .section1 .section1-top .item-active .content .icon svg {
    width: 16px;
    height: 16px;
  }
  .product .inner .section2 .section2-middle {
    grid-template-columns: 1fr;
    row-gap: 18px;
  }
  .product .inner .section2 .section2-middle .item {
    border-radius: 14px;
    padding: 14px 14px 20px 14px;
  }
  .product .inner .section2 .section2-middle .item .img {
    margin-bottom: 14px;
  }
  .product .inner .section2 .section2-middle .item .text1 {
    font-size: 16px;
    line-height: 24px;
  }
  .product .inner .section2 .section2-bottom .page {
    gap: 14px;
    padding: 24px 0;
  }
  .product .inner .section2 .section2-bottom .page .pre-pageBtn svg {
    width: 34px;
    height: 34px;
  }
  .product .inner .section2 .section2-bottom .page .next-pageBtn {
    width: 34px;
    min-width: 34px;
    max-width: 34px;
    height: 34px;
  }
  .product .inner .section2 .section2-bottom .page .pages {
    gap: 10px;
  }
  .product .inner .section2 .section2-bottom .page .pages .num {
    padding: 2px 7px;
    font-size: 20px;
    line-height: 30px;
  }
}
