body {
  background-color: #F7F7F7;
}
body .header .header-wrapper {
  padding-top: var(--header-height);
}
body .header .header-wrapper .header-content {
  background-color: rgba(0, 0, 0, 0.4);
}
body .header .header-wrapper .header-content .header-nav .nav-list .nav-item {
  padding: 0 24px;
}
.product-list-wrapper .crumbs-list {
  display: flex;
  align-items: center;
  gap: 12px 0;
  flex-wrap: wrap;
}
.product-list-wrapper .crumbs-list .crumbs-item {
  color: #666;
  display: flex;
  align-items: center;
  flex-shrink: 0;
}
.product-list-wrapper .crumbs-list .crumbs-item .line {
  padding: 0 8px;
}
.product-list-wrapper .crumbs-list .crumbs-item:hover a,
.product-list-wrapper .crumbs-list .crumbs-item.active a {
  color: var(--primary-color);
}
.product-list-wrapper .crumbs-list .crumbs-item:last-child .line {
  display: none;
}
.product-list-wrapper .img-link-icon {
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0);
  z-index: 2;
  color: #fff;
  transition: all 0.5s ease 0.2s;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: var(--primary-color);
  display: flex;
  justify-content: center;
  align-items: center;
}
.product-list-wrapper .img-link-icon .iconfont {
  font-size: 26px;
}
.product-list-wrapper .product-list-header-left:hover .img-link-icon,
.product-list-wrapper .product-image:hover .img-link-icon {
  transform: translate(-50%, -50%) scale(1);
}
.product-list-wrapper .product-list-header {
  display: flex;
  overflow: hidden;
}
.product-list-wrapper .product-list-header .product-list-header-left {
  width: 400px;
  height: 400px;
  background-color: #FFFFFF;
  position: relative;
}
.product-list-wrapper .product-list-header .product-list-header-left::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: var(--primary-color);
  z-index: 1px;
}
.product-list-wrapper .product-list-header .product-list-header-left img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.product-list-wrapper .product-list-header .product-list-header-right {
  width: calc(100% - 400px);
  padding-left: 7%;
}
.product-list-wrapper .product-list-header .product-list-header-right .title,
.product-list-wrapper .product-list-header .product-list-header-right .title-2 {
  font-family: 'OPPOSans-B';
}
.product-list-wrapper .product-list-header .product-list-header-right .title-wrapper {
  display: flex;
  align-items: center;
}
.product-list-wrapper .product-list-header .product-list-header-right .title-wrapper .tag {
  margin-left: 16px;
  height: 28px;
  line-height: 28px;
  padding: 0 12px;
  background-color: var(--primary-color);
  color: #fff;
}
.product-list-wrapper .product-list-header .product-list-header-right .hint {
  color: var(--primary-color);
  display: flex;
  align-items: center;
  gap: 30px;
}
.product-list-wrapper .product-list-header .product-list-header-right .parameter-wrapper {
  background-color: #fff;
  padding: 30px 8%;
  height: var(--parameter-wrapper-height);
  display: flex;
}
.product-list-wrapper .product-list-header .product-list-header-right .parameter-wrapper .parameter-list {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 20px 0;
  width: 50%;
}
.product-list-wrapper .product-list-header .product-list-header-right .parameter-wrapper .parameter-list .parameter-item {
  display: flex;
  align-items: center;
}
.product-list-wrapper .product-list-header .product-list-header-right .parameter-wrapper .parameter-list .parameter-item .label {
  width: 100px;
  color: #BDBDBD;
}
.product-list-wrapper .product-list-header .product-list-header-right .parameter-wrapper .parameter-list .parameter-item .value-wrapper {
  display: flex;
  align-items: center;
}
.product-list-wrapper .product-list-header .product-list-header-right .parameter-wrapper .parameter-list .parameter-item .value-wrapper .value {
  width: 50px;
}
.product-list-wrapper .product-list-header .product-list-header-right .parameter-wrapper .parameter-list .parameter-item .value-wrapper .dianliu {
  width: 30px;
}
.product-list-wrapper .product-list-header .product-list-header-right .parameter-wrapper .parameter-list .parameter-item .value-wrapper .jianju {
  width: 60px;
}
.product-list-wrapper .product-list-header .product-list-header-right.en .parameter-wrapper {
  padding: 24px;
}
.product-list-wrapper .product-list-header .product-list-header-right.en .parameter-wrapper .parameter-list {
  gap: 0;
}
.product-list-wrapper .product-list-header .product-list-header-right.en .parameter-wrapper .parameter-list .parameter-item .label {
  width: 120px;
}
.product-list-wrapper .product-list-header .product-list-header-right.en .parameter-wrapper .parameter-list .parameter-item .label span {
  display: none;
}
.product-list-wrapper .product-list-nav-wrapper .product-list-nav-list {
  background-color: #FFFFFF;
  display: flex;
  position: relative;
  --list-nav-size: 6;
}
.product-list-wrapper .product-list-nav-wrapper .product-list-nav-list::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: calc(100% / var(--list-nav-size));
  height: 2px;
  background-color: var(--primary-color);
}
.product-list-wrapper .product-list-nav-wrapper .product-list-nav-list .product-list-nav-item {
  width: calc(100% / var(--list-nav-size));
  border-right: 1px solid rgba(47, 50, 50, 0.1);
  color: rgba(51, 51, 51, 0.5);
  position: relative;
}
.product-list-wrapper .product-list-nav-wrapper .product-list-nav-list .product-list-nav-item a {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 120px;
}
.product-list-wrapper .product-list-nav-wrapper .product-list-nav-list .product-list-nav-item.active,
.product-list-wrapper .product-list-nav-wrapper .product-list-nav-list .product-list-nav-item:hover {
  font-family: 'OPPOSans-B';
  color: #333333;
}
.product-list-wrapper .product-wrapper {
  display: flex;
  flex-direction: column;
  gap: 40px 0;
}
.product-list-wrapper .product-wrapper .product-list-wrapper {
  border-top: 4px solid var(--primary-color);
  background-color: #fff;
}
.product-list-wrapper .product-wrapper .product-list-wrapper .title-wrapper {
  padding-left: 6%;
  height: 100px;
  display: flex;
  align-items: center;
}
.product-list-wrapper .product-wrapper .product-list-wrapper .title-wrapper .title {
  font-family: 'OPPOSans-B';
}
.product-list-wrapper .product-wrapper .product-list-wrapper .product-header {
  border-top: 1px solid var(--primary-color);
  height: 80px;
  line-height: 80px;
  display: flex;
}
.product-list-wrapper .product-wrapper .product-list-wrapper .product-header .label {
  width: 220px;
  text-align: center;
  border-left: 1px solid transparent;
  border-right: 1px solid #E6E6E6;
}
.product-list-wrapper .product-wrapper .product-list-wrapper .product-header .desc {
  padding-left: 6%;
}
.product-list-wrapper .product-wrapper .product-list-wrapper .product-list .product-item {
  display: flex;
  border: 1px solid #E6E6E6;
  border-bottom: none;
}
.product-list-wrapper .product-wrapper .product-list-wrapper .product-list .product-item .product-item-link {
  display: flex;
  min-height: 220px;
  padding: 24px 0;
}
.product-list-wrapper .product-wrapper .product-list-wrapper .product-list .product-item .product-image {
  width: 220px;
  flex-shrink: 0;
  border-right: 1px solid #E6E6E6;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.product-list-wrapper .product-wrapper .product-list-wrapper .product-list .product-item .product-image img {
  width: 177px;
  height: 177px;
  object-fit: cover;
}
.product-list-wrapper .product-wrapper .product-list-wrapper .product-list .product-item .product-image .image-wrapper {
  position: absolute;
  left: 100%;
  top: 50%;
  transform: translateY(-50%) scale(0);
  width: 250px;
  height: 250px;
  transition: all 0.3s ease;
  transform-origin: left center;
  z-index: 9;
}
.product-list-wrapper .product-wrapper .product-list-wrapper .product-list .product-item .product-image .image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.product-list-wrapper .product-wrapper .product-list-wrapper .product-list .product-item .product-image:hover .image-wrapper {
  transform: translateY(-50%) scale(1);
}
.product-list-wrapper .product-wrapper .product-list-wrapper .product-list .product-item .product-info {
  padding-left: 6%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.product-list-wrapper .product-wrapper .product-list-wrapper .product-list .product-item .product-info .product-title {
  font-family: 'OPPOSans-M';
}
.product-list-wrapper .product-wrapper .product-list-wrapper .product-list .product-item .product-info .product-parameter-list {
  display: flex;
  flex-wrap: wrap;
  gap: 18px 36px;
  color: #A2A2A2;
}
.product-list-wrapper .product-wrapper .product-list-wrapper .product-list .product-item .product-info .product-parameter-list .product-parameter-item .label {
  margin-right: 8px;
}
.product-list-wrapper .product-wrapper .product-list-wrapper .product-list .product-item:hover .product-info {
  color: var(--primary-color);
}
.product-list-wrapper .product-wrapper .product-list-wrapper .product-list .product-item:hover .product-info .product-parameter-list {
  color: var(--primary-color);
}
@media screen and (max-width: 1500px) {
  .product-list-wrapper .product-list-header .product-list-header-left {
    width: 340px;
    height: 340px;
  }
  .product-list-wrapper .product-list-header .product-list-header-right {
    width: calc(100% - 340px);
    padding-left: 40px;
  }
  .product-list-wrapper .product-list-header .product-list-header-right .parameter-wrapper {
    padding: 24px;
  }
  .product-list-wrapper .product-list-header .product-list-header-right .parameter-wrapper .parameter-list {
    gap: 12px;
  }
  .product-list-wrapper .product-list-header .product-list-header-right .parameter-wrapper .parameter-list .parameter-item .label {
    width: 80px;
  }
}
@media screen and (max-width: 992px) {
  .product-list-wrapper .product-list-header {
    flex-direction: column;
  }
  .product-list-wrapper .product-list-header .product-list-header-left {
    width: 100%;
    height: initial;
    aspect-ratio: 1 / 1;
    margin-bottom: 30px;
  }
  .product-list-wrapper .product-list-header .product-list-header-right {
    width: 100%;
    padding-left: 0;
  }
  .product-list-wrapper .product-list-header .product-list-header-right .parameter-wrapper {
    margin-top: 12px;
    padding: 24px 24px 0;
    flex-direction: column;
    height: auto;
    gap: 12px 0;
  }
  .product-list-wrapper .product-list-header .product-list-header-right .parameter-wrapper .parameter-list {
    width: 100%;
    gap: 12px 0;
  }
  .product-list-wrapper .product-list-header .product-list-header-right .parameter-wrapper .parameter-list .parameter-item .label {
    width: 80px;
  }
  .product-list-wrapper .product-list-nav-wrapper .product-list-nav-list {
    flex-wrap: wrap;
  }
  .product-list-wrapper .product-list-nav-wrapper .product-list-nav-list .product-list-nav-item a {
    height: 80px;
  }
  .product-list-wrapper .product-wrapper .product-list-wrapper .title-wrapper {
    padding-left: 4%;
    height: 80px;
  }
  .product-list-wrapper .product-wrapper .product-list-wrapper .product-header {
    height: 60px;
    line-height: 60px;
  }
  .product-list-wrapper .product-wrapper .product-list-wrapper .product-header .label,
  .product-list-wrapper .product-wrapper .product-list-wrapper .product-header .desc {
    text-align: center;
    width: 50%;
  }
  .product-list-wrapper .product-wrapper .product-list-wrapper .product-list .product-item .product-item-link {
    flex-direction: column;
    min-height: initial;
    padding: 12px 0;
  }
  .product-list-wrapper .product-wrapper .product-list-wrapper .product-list .product-item .product-image {
    width: 100%;
    border-right: none;
    border-bottom: 1px solid #E6E6E6;
    padding: 24px;
  }
  .product-list-wrapper .product-wrapper .product-list-wrapper .product-list .product-item .product-image img {
    width: 100%;
    height: initial;
    aspect-ratio: 1 / 1;
  }
  .product-list-wrapper .product-wrapper .product-list-wrapper .product-list .product-item .product-image .image-wrapper {
    display: none;
  }
  .product-list-wrapper .product-wrapper .product-list-wrapper .product-list .product-item .product-info {
    padding: 24px;
  }
  .product-list-wrapper .product-wrapper .product-list-wrapper .product-list .product-item .product-info .product-parameter-list {
    gap: 12px 24px;
  }
}
