/* 内页 banner 样式 */
/* 产品中心样式 */
.product {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  position: relative;
  overflow: hidden;
  padding: 84px 0 100px;
  background-color: #f7f8fb;
  background-image: linear-gradient(rgba(57, 49, 132, 0.06) 1px, transparent 1px), linear-gradient(90deg, rgba(57, 49, 132, 0.06) 1px, transparent 1px);
  background-size: 40px 40px;
}

.product .inner {
  display: flex;
  flex-wrap: wrap;
  position: relative;
  z-index: 1;
}

.product .section1 {
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  align-items: center;
  width: 100%;
  text-align: center;
  margin-bottom: 54px;
}

.product .section1 .tag {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin-bottom: 10px;
}

.product .section1 .tag .line {
  display: flex;
  width: 32px;
  height: 2px;
  background: linear-gradient(90deg, rgba(0, 0, 0, 0) 0%, rgba(251, 144, 59, 1) 100%);
}
.product .section1 .tag .line:last-child {
  display: flex;
  width: 32px;
  height: 2px;
  background: linear-gradient(270deg, rgba(0, 0, 0, 0) 0%, rgba(251, 144, 59, 1) 100%);
}
.product .section1 .tag p {
  display: flex;
  color: rgba(251, 144, 59, 1);
  font-family: "Source Han Sans SC";
  font-weight: 700;
  font-size: 14px;
  line-height: 20px;
  text-transform: uppercase;
}

.product .section1 .title {
  display: flex;
  justify-content: center;
  margin-bottom: 34px;
}

.product .section1 .title p {
  display: flex;
  color: rgba(57, 49, 132, 1);
  font-family: "Source Han Sans SC";
  font-weight: 700;
  font-size: 35px;
  line-height: 48px;
}

.product .section1 .desc {
  display: flex;
  justify-content: center;
  width: 72%;
}

.product .section1 .desc p {
  display: flex;
  justify-content: center;
  font-size: 18px;
  line-height: 32px;
  font-weight: 600;
  color: #33384d;
  text-align: center;
}

.product .section2 {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  width: 100%;
  gap: 38px;
}

.product .section2-left {
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  width: 20%;
  gap: 20px;
}

.product .section2-left .item {
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  width: 100%;
  position: relative;
  cursor: pointer;
}

.product .section2-left .item .img {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  position: relative;
  overflow: hidden;
  border: 4px solid transparent;
  border-radius: 7px;
  transition: border-color 0.5s ease;
  aspect-ratio: 255 / 140;
  background: rgba(255, 255, 255, 1);
}

.product .section2-left .item .img img {
  display: block;
  width: 100%;
  object-fit: cover;
  object-position: center center;
  filter: grayscale(0);
  opacity: 0.78;
  transition: filter 0.5s ease, opacity 0.5s ease, transform 0.5s ease;
}

.product .section2-left .item:hover .img img {
  filter: grayscale(0);
  opacity: 1;
  transform: scale(1.05);
}

.product .section2-left .item .img .title {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  position: absolute;
  inset: 0;
  padding: 16px;
  z-index: 2;
}

.product .section2-left .item .img .title p {
  display: flex;
  justify-content: center;
  color: rgba(255, 255, 255, 1);
  font-family: "Source Han Sans SC";
  font-weight: 700;
  font-size: 14px;
  line-height: 20px;
  text-align: center;
}

.product .section2-left .item-active .img {
  border-color: #f59a14;
}

.product .section2-left .item-active .img img {
  filter: grayscale(0);
  opacity: 1;
}

.product .section2-left .item-active .img .title p {
  color: #f59a14;
}


.product .section2-right {
  display: flex;
  flex: 1;
  flex-wrap: wrap;
  flex-direction: column;
}

.product .section2-right-top {
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
  width: 100%;
  column-gap: 30px;
  row-gap: 72px;
}

.product .section2-right-top .item {
  display: flex;
  flex-wrap: wrap;
  width: 30.8%;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(57, 49, 132, 0.12);
  border-radius: 14px;
  background: #ffffff;
  box-shadow: 0 6px 18px rgba(24, 24, 24, 0.08);
  transition: transform 0.5s ease, box-shadow 0.5s ease;
  border-radius: 16px;
  border: 2px solid rgba(124, 124, 124, 0.1);
  box-sizing: border-box;
  background: rgba(250, 250, 250, 1);
  box-shadow: 0px 1px 2px -1px rgba(0, 0, 0, 0.1), 0px 1px 3px rgba(0, 0, 0, 0.1);
}

.product .section2-right-top .item:hover {
  transform: translateY(-6px);
  box-shadow: 0 14px 28px rgba(24, 24, 24, 0.14);
}

.product .section2-right-top .item > img {
  display: block;
  width: 100%;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 0;
}

.product .section2-right-top .item .content {
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  position: relative;
  z-index: 1;
  padding: 28px 28px 32px;
}

.product .section2-right-top .item .content .img {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  overflow: hidden;
  margin-bottom: 28px;
  aspect-ratio: 260 / 220;
  border-radius: 12px;
border: 0.6px solid rgba(244, 244, 245, 1);
box-sizing: border-box;
background: rgba(255, 255, 255, 0.54);
}

.product .section2-right-top .item .content .img img {
  display: block;
  width: 70%;
  object-fit: contain;
  object-position: center center;
  transition: transform 0.5s ease;
  transform: scale(1);
}

.product .section2-right-top .item:hover .content .img img {
  transform: scale(1.05);
}

.product .section2-right-top .item .content p {
  display: flex;
  justify-content: center;
  text-align: center;
  color: rgba(30, 26, 77, 1);
  font-family: "Source Han Sans SC";
  font-weight: 700;
  font-size: 18px;
  line-height: 29px;
}


.product .section2-right-top .no-data {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 280px;
  border-radius: 16px;
  border: 2px solid rgba(124, 124, 124, 0.1);
  background: rgba(250, 250, 250, 1);
  box-shadow: 0px 1px 2px -1px rgba(0, 0, 0, 0.1), 0px 1px 3px rgba(0, 0, 0, 0.1);
  color: rgba(74, 85, 101, 1);
  font-family: Inter, "Source Han Sans SC", sans-serif;
  font-weight: 500;
  font-size: 18px;
  line-height: 28px;
}

.product .page {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  width: 100%;
  gap: 24px;
  margin-top: 76px;
}

.product .pre-pageBtn,
.product .next-pageBtn {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  border-radius: 50%;
  background: rgba(251, 144, 59, 0.48);
  cursor: pointer;
  transition: background 0.5s ease, transform 0.5s ease;
  width: 58px;
  max-width: 58px;
  min-width: 58px;
  height: 58px;
  border-radius: 83px;
  border: 0.6px solid rgba(229, 231, 235, 1);
  box-sizing: border-box;
  background: rgba(251, 144, 59, 1);
}

.product .pages {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 18px;
}

.product .pages .num {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px 20px;
  border: 0;
  border-radius: 50%;
  background: #ffffff;
  color: #656b7b;
  font-size: 18px;
  line-height: 24px;
  font-weight: 700;
  cursor: pointer;
  box-shadow: 0 4px 14px rgba(24, 24, 24, 0.08);
  transition: background 0.5s ease, color 0.5s ease, transform 0.5s ease;

  color: rgba(74, 85, 101, 1);
  font-family: "Noto Sans SC";
  font-weight: 700;
  font-size: 24px;
  line-height: 24px;
  width: 58px;
  max-width: 58px;
  min-width: 58px;
  height: 58px;
  border-radius: 114px;
  border: 0.6px solid rgba(229, 231, 235, 1);
  box-sizing: border-box;
  background: rgba(255, 255, 255, 1);
}

.product .pages .num-active {
  background: rgba(57, 49, 132, 1);
  box-shadow: 0px 2px 4px -2px rgba(0, 0, 0, 0.1), 0px 4px 6px -1px rgba(0, 0, 0, 0.1);
  color: rgba(255, 255, 255, 1);
}

.product .pages .ellipsis {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px 8px;
  color: #9a9baa;
  font-size: 18px;
  line-height: 24px;
  font-weight: 700;
}

/* 产品中心响应式样�?*/
@media only screen and (max-width: 1280px) {
  .product {
    padding: 25px 0;
  }

  .product .section1 {
    margin-bottom: 25px;
  }

  .product .section1 .title {
    margin-bottom: 20px;
  }

  .product .section1 .title p {
    font-size: 30px;
    line-height: 42px;
  }

  .product .section1 .desc {
    width: 78%;
  }

  .product .section1 .desc p {
    font-size: 16px;
    line-height: 25px;
  }

  .product .section2 {
    gap: 25px;
  }

  .product .section2-left {
    gap: 18px;
  }

  .product .section2-left .item .img .title {
    padding: 16px;
  }

  .product .section2-left .item .img .title p {
    font-size: 14px;
    line-height: 20px;
  }

  .product .section2-right-top {
    column-gap: 24px;
    row-gap: 25px;
  }

  .product .section2-right-top .item .content {
    padding: 25px;
  }

  .product .section2-right-top .item .content .img {
    margin-bottom: 25px;
  }

  .product .section2-right-top .item .content p {
    font-size: 16px;
    line-height: 25px;
  }

  .product .page {
    gap: 22px;
    margin-top: 25px;
  }

  .product .pages {
    gap: 16px;
  }

  .product .pages .ellipsis {
    font-size: 16px;
    line-height: 24px;
  }
}

@media only screen and (max-width: 1024px) {
  .product .section1 .title p {
    font-size: 26px;
    line-height: 36px;
  }

  .product .section1 .desc {
    width: 86%;
  }

  .product .section1 .desc p {
    font-size: 15px;
    line-height: 24px;
  }

  .product .section2-left {
    width: 100%;
    flex-direction: row;
    gap: 16px;
  }

  .product .section2-left .item {
    width: 31%;
    flex: none;
  }

  .product .section2-right {
    width: 100%;
    flex: none;
  }

  .product .section2-right-top {
    column-gap: 20px;
    row-gap: 25px;
  }

  .product .section2-right-top .item {
    width: 31%;
  }

  .product .section2-right-top .item .content {
    padding: 22px;
  }

  .product .section2-right-top .item .content p {
    font-size: 15px;
    line-height: 23px;
  }
}

@media only screen and (max-width: 820px) {
  .product .section1 .tag {
    display: none;
  }

  .product .section1 .title p {
    font-size: 20px;
    line-height: 28px;
  }

  .product .section1 .desc {
    width: 100%;
  }

  .product .section1 .desc p {
    font-size: 14px;
    line-height: 22px;
  }

  .product .section2 {
    gap: 20px;
  }

  .product .section2-left {
    gap: 14px;
  }

  .product .section2-left .item {
    width: 31%;
  }

  .product .section2-left .item .img .title {
    padding: 12px;
  }

  .product .section2-left .item .img .title p {
    font-size: 13px;
    line-height: 19px;
  }

  .product .section2-right-top {
    column-gap: 16px;
    row-gap: 20px;
  }

  .product .section2-right-top .item {
    width: 48%;
  }

  .product .section2-right-top .item .content {
    padding: 18px;
  }

  .product .section2-right-top .item .content .img {
    margin-bottom: 18px;
  }

  .product .section2-right-top .item .content p {
    font-size: 14px;
    line-height: 21px;
  }

  .product .page {
    gap: 16px;
  }

  .product .pages {
    gap: 12px;
  }

  .product .pages .ellipsis {
    font-size: 14px;
    line-height: 21px;
    padding: 12px 6px;
  }
}

@media only screen and (max-width: 768px) {
  .product .section1 {
    margin-bottom: 22px;
  }

  .product .section1 .title {
    margin-bottom: 16px;
  }

  .product .section1 .title p {
    font-size: 20px;
    line-height: 28px;
  }

  .product .section1 .desc p {
    font-size: 14px;
    line-height: 21px;
  }

  .product .section2-left .item {
    width: 48%;
  }

  .product .section2-right-top .item .content {
    padding: 16px;
  }
}

@media only screen and (max-width: 640px) {
  .product {
    padding: 22px 0;
  }

  .product .section1 .title p {
    font-size: 20px;
    line-height: 27px;
  }

  .product .section1 .desc p {
    font-size: 13px;
    line-height: 20px;
  }

  .product .section2-right-top .item {
    width: 48%;
  }

  .product .section2-right-top .item .content {
    padding: 14px;
  }

  .product .section2-right-top .item .content .img {
    margin-bottom: 14px;
  }

  .product .section2-right-top .item .content p {
    font-size: 13px;
    line-height: 20px;
  }

  .product .page {
    gap: 12px;
    margin-top: 22px;
  }

  .product .pages {
    gap: 10px;
  }
}

@media only screen and (max-width: 414px) {
  .product {
    padding: 20px 0;
  }

  .product .section1 {
    margin-bottom: 18px;
  }

  .product .section1 .title {
    margin-bottom: 12px;
  }

  .product .section1 .title p {
    font-size: 20px;
    line-height: 26px;
  }

  .product .section2 {
    gap: 16px;
  }

  .product .section2-left {
    gap: 12px;
  }

  .product .section2-left .item .img .title {
    padding: 10px;
  }

  .product .section2-left .item .img .title p {
    font-size: 13px;
    line-height: 18px;
  }

  .product .section2-right-top {
    column-gap: 12px;
    row-gap: 16px;
  }

  .product .page {
    gap: 10px;
    margin-top: 18px;
  }

  .product .pages {
    gap: 8px;
  }

  .product .pages .ellipsis {
    font-size: 13px;
    line-height: 20px;
    padding: 10px 5px;
  }
      .product .section2-right-top .item {
        width: 100%;
    }
}

/* product category and pagination responsive fixes */
@media only screen and (max-width: 820px) {
  .product .section2-left {
    gap: 12px;
  }

  .product .section2-left .item {
    width: 31%;
    flex: none;
  }

  .product .section2-left .item .img {
    height: 50px;
    aspect-ratio: auto;
  }

  .product .section2-left .item .img img {
    object-fit: cover;
  }

  .product .section2-left .item .img .title {
    padding: 8px 4px;
  }

  .product .section2-left .item .img .title p {
    font-size: 13px;
    line-height: 18px;
  }

  .product .pre-pageBtn,
  .product .next-pageBtn,
  .product .pages .num {
    width: 40px;
    max-width: 40px;
    min-width: 40px;
    height: 40px;
    padding: 0;
  }

  .product .pre-pageBtn svg,
  .product .next-pageBtn svg {
    width: 8px;
    height: 14px;
  }

  .product .pages .num {
    font-size: 16px;
    line-height: 20px;
  }
}

@media only screen and (max-width: 640px) {
  .product .section2-left .item {
    width: 48%;
  }
}

/* product category proi-like responsive refinement */
@media only screen and (max-width: 820px) {
  .product .section2-left {
    flex-direction: row;
    align-items: stretch;
  }

  .product .section2-left .item {
    height: 80px;
  }
      .product .section2-left .item .img {
        height: 80px;
        aspect-ratio: auto;
    }
}


/* product pagination visibility fix */
.product .page {
  display: flex;
  visibility: visible !important;
  opacity: 1 !important;
}
