/* 设置根字体大小(rem基准) */
html {
  font-size: 18px;
}
@media screen and (max-width: 1714.28571429px) {
  html {
    font-size: calc(100vw * 10 / 1200px * 0.7);
  }
}
.center {
  width: 65%;
  max-width: 1200px;
  min-width: 780px;
  margin: 0 auto;
  box-sizing: border-box;
  /* 响应式处理 */
  transition: width 0.3s ease-in-out;
}
@media screen and (max-width: 1200px) {
  .center {
    width: 80%;
    min-width: unset;
  }
}
@media (max-width: 880px) {
  html,
  body {
    min-width: 880px;
    overflow-x: auto;
  }
}
/* 可选：添加CSS层面的限制（与JavaScript中的min/max对应） */
html {
  font-size: clamp(8px, 1.6vw, 20px);
  /* 作为备用方案 */
}
.body {
  width: 100%;
  background-color: #fff;
}
.crumbs-box {
  width: 100%;
  background-color: #d9d9d9;
}
.crumbs {
  height: 2.22222222rem;
  color: #333333;
  font-size: 0.77777778rem;
  line-height: 2.22222222rem;
}
.crumbs i {
  color: #a1a1a1;
  margin-left: 0.55555556rem;
  margin-right: 0.55555556rem;
}
.crumbs a:hover {
  color: #c3272b;
}
.product {
  position: relative;
  display: flex;
  justify-content: space-between;
  margin-top: 1.38888889rem;
}
.product .prophoto {
  width: 41%;
}
.product .bigphoto {
  width: 100%;
  height: 18.88888889rem;
  border-radius: 0.38888889rem;
  text-align: center;
  line-height: 18.88888889rem;
}
.product .bigphoto img {
  width: 100%;
  height: 100%;
  border-radius: 0.38888889rem;
}
.product .small-box {
  display: flex;
  justify-content: space-between;
  width: 100%;
  height: 4.16666667rem;
  margin-top: 0.72222222rem;
  align-items: center;
}
.product .small-box .arrow {
  font-size: 0.77777778rem;
  color: #666666;
  width: 1.77777778rem;
  height: 100%;
  line-height: 5.27777778rem;
  cursor: pointer;
}
.product .small-box .arrow .fa {
  line-height: 4.16666667rem;
}
.product .small-box .left {
  padding-left: 0.44444444rem;
}
.product .small-box .right {
  text-align: right;
  padding-right: 0.44444444rem;
}
.product .small-photo {
  display: flex;
  justify-content: flex-start;
  width: 24.22222222rem;
  height: 100%;
  box-sizing: border-box;
}
.product .small-photo .sphoto {
  width: 24%;
  margin-right: 1.3%;
  height: 90%;
  background-color: #f8f8f8;
  border: 1px solid #f8f8f8;
  border-radius: 0.22222222rem;
  cursor: pointer;
}
.product .small-photo .sphoto img {
  width: 100%;
  height: 100%;
  border-radius: 0.22222222rem;
}
.product .small-photo .sphoto:last-of-type {
  margin-right: 0;
}
.product .small-photo .on {
  border-color: #c3272b;
}
.product .content {
  position: relative;
  width: 55%;
}
.product .content .describe {
  line-height: 1.94444444rem;
  font-size: 1.11111111rem;
  margin-bottom: 1.11111111rem;
  color: #666666;
  font-weight: bold;
}
.product .content .des-content {
  width: 100%;
  color: #666666;
  font-size: 0.88888889rem;
  line-height: 2.22222222rem;
  height: 17.22222222rem;
  padding-right: 2.22222222rem;
  box-sizing: border-box;
  overflow: hidden;
}
.product .content .consult {
  position: absolute;
  left: 5%;
  bottom: 0;
  display: flex;
  justify-content: flex-end;
  align-items: center;
}
.product .content .consult .con-item {
  position: relative;
  padding-top: 0rem;
  padding-right: 2.22222222rem;
  padding-bottom: 0rem;
  padding-left: 2.22222222rem;
  line-height: 3.33333333rem;
  font-size: 1rem;
  cursor: pointer;
}
.product .content .consult .con-item a {
  color: #999999;
}
.product .content .consult .con-item:first-of-type {
  padding-left: 0;
}
.product .content .consult .con-item:hover a {
  color: #c3272b;
}
.product .content .consult .con-item:hover .w-code {
  display: block;
}
.product .content .consult .line {
  width: 0.05555556rem;
  height: 0.77777778rem;
  background-color: #999999;
}
.product .content .consult .on1 a {
  color: #c3272b;
}
.product .content .consult .w-code {
  display: none;
  position: absolute;
  left: 50%;
  bottom: 110%;
  transform: translate(-60%, 0);
  padding-top: 0.55555556rem;
  padding-right: 0.55555556rem;
  padding-bottom: 0.55555556rem;
  padding-left: 0.55555556rem;
  z-index: 1000;
  background-color: #fff;
  box-shadow: 0 0 14px rgba(64, 62, 62, 0.5);
  border-radius: 0.44444444rem;
  text-align: center;
}
.product .content .consult .w-code img {
  width: 7.22222222rem;
  height: 7.22222222rem;
}
@media screen and (max-width: 1100px) {
  .des-content p {
    font-size: 0.88888889rem;
    transform: scale(0.9);
    /* 强制缩放，绕过最小字体限制 */
    transform-origin: left;
    /* 防止文字偏移 */
  }
  .sideright {
    font-size: 1.11111111rem;
    transform: scale(0.9);
    transform-origin: left;
  }
}
@media screen and (max-width: 1000px) {
  .des-content p {
    font-size: 0.88888889rem;
    transform: scale(0.85);
    /* 强制缩放，绕过最小字体限制 */
    transform-origin: left;
    /* 防止文字偏移 */
  }
  .sideright {
    font-size: 1.11111111rem;
    transform: scale(0.7);
    transform-origin: left;
  }
}
.cate-params {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  padding-top: 1.55555556rem;
  padding-bottom: 1.55555556rem;
  border-bottom: 1px solid #dbdbdb;
}
.cate-params .option {
  display: flex;
  justify-content: space-between;
  width: 49%;
  height: 2.44444444rem;
  line-height: 2.44444444rem;
  background-color: #fff;
  font-size: 0.88888889rem;
}
.cate-params .option:nth-of-type(4n+1) .par-name,
.cate-params .option:nth-of-type(4n+2) .par-name {
  background-color: #e6e6e6;
}
.cate-params .option:nth-of-type(4n+1) .par-val,
.cate-params .option:nth-of-type(4n+2) .par-val {
  background-color: #e6e6e6;
}
.cate-params .option:nth-of-type(4n+3) .par-name,
.cate-params .option:nth-of-type(4n+4) .par-name {
  background-color: #f0f0f0;
}
.cate-params .option:nth-of-type(4n+3) .par-val,
.cate-params .option:nth-of-type(4n+4) .par-val {
  background-color: #f0f0f0;
}
.cate-params .par-name {
  box-sizing: border-box;
  width: 33%;
  padding-left: 0.66666667rem;
}
.cate-params .par-val {
  box-sizing: border-box;
  width: 66%;
  padding-left: 0.66666667rem;
}
.no-data {
  height: 4.44444444rem;
  line-height: 4.44444444rem;
  text-align: center;
  background-color: #979797;
  font-weight: bold;
  font-size: 1.11111111rem;
  color: #fff;
}
.head-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 4.44444444rem;
}
.head-nav .nav-box {
  display: flex;
  justify-content: flex-start;
  align-items: center;
}
.head-nav .nav-item {
  line-height: 2.22222222rem;
  padding-top: 0rem;
  padding-right: 1.55555556rem;
  padding-bottom: 0rem;
  padding-left: 1.55555556rem;
  color: #666666;
  cursor: pointer;
  border-radius: 0.44444444rem;
  font-size: 1.11111111rem;
}
.head-nav .on2 {
  background-color: #c3272b;
  color: #fff;
}
.head-nav .export {
  margin-right: 1.22222222rem;
  color: #cb4246;
  font-size: 1.11111111rem;
  cursor: pointer;
}
.container-cate-box {
  width: 100%;
}
.contain {
  display: none;
  padding-bottom: 1.11111111rem;
}
.contain:first-of-type {
  display: block;
  width: 100%;
  background-color: #f8f8f8;
}
.filter-box {
  padding-top: 1px;
}
.filter {
  display: flex;
  justify-content: flex-start;
  margin-bottom: 1.27777778rem;
  margin-top: 0.27777778rem;
}
.fil-left {
  display: flex;
  justify-content: flex-start;
  margin-right: 0.55555556rem;
}
.fil-item {
  font-size: 0.88888889rem;
  color: #666666;
  margin-right: 0.66666667rem;
}
.fil-item .par-name {
  display: block;
  line-height: 2.55555556rem;
  color: #232323;
  font-size: 0.77777778rem;
  font-weight: 550;
}
.fil-item .sel {
  position: relative;
  color: #727272;
  height: 1.66666667rem;
  width: 13.33333333rem;
  border: 1px solid #d3d3d3;
  padding-left: 0.55555556rem;
  padding-right: 1.11111111rem;
  box-sizing: border-box;
  font-size: 0.83333333rem;
  line-height: 1.66666667rem;
  background-image: linear-gradient(to bottom, #fff, #fbfbfb);
  background-image: -o-linear-gradient(to bottom, #fff, #fbfbfb);
  background-image: -moz-linear-gradient(to bottom, #fff, #fbfbfb);
  background-image: -webkit-linear-gradient(to bottom, #fff, #fbfbfb);
}
.fil-item .sel .no-sel {
  width: 100%;
  height: 100%;
  white-space: pre-wrap;
  overflow: hidden;
  padding-right: 1.11111111rem;
  box-sizing: border-box;
}
.fil-item .sel .clear-option {
  display: none;
  position: absolute;
  right: 0.27777778rem;
  font-size: 0.88888889rem;
  top: 50%;
  transform: translateY(-50%);
  cursor: pointer;
  color: #c3272b;
}
.fil-item .sel .options {
  overflow: hidden;
  height: 0;
  transition: height 0.7s;
  width: 100%;
  position: absolute;
  left: 0;
  top: 1.66666667rem;
  z-index: 1000;
  background: #fff;
  padding-left: 0.55555556rem;
  padding-right: 0.55555556rem;
  border: none;
  box-shadow: 0 0 2px 1px #eceaea;
  box-sizing: border-box;
  cursor: pointer;
  font-size: 0.66666667rem;
}
.fil-item .sel .options .option {
  height: 1.33333333rem;
  display: flex;
  align-items: center;
  /* 隐藏默认的复选框 */
  /* 选中时的样式 */
}
.fil-item .sel .options .option input[type="checkbox"] {
  appearance: none;
  -webkit-appearance: none;
  width: 15px;
  height: 15px;
  border: 1px solid #dddddd;
  border-radius: 3px;
  outline: none;
  cursor: pointer;
  position: relative;
  margin-right: 0.44444444rem;
  box-sizing: border-box;
}
.fil-item .sel .options .option input[type="checkbox"]:checked::after {
  content: "√";
  color: #c3272b;
  text-align: center;
  font-size: 0.77777778rem;
}
.fil-item .sel .options .option input:hover {
  border-color: "";
}
.fil-item .sel .options .option:hover {
  color: #a31618;
}
.fil-item .sel .options .option:first-of-type {
  margin-top: 0.55555556rem;
}
.fil-right {
  width: 4.55555556rem;
  height: 1.66666667rem;
  line-height: 1.66666667rem;
  border-radius: 0.16666667rem;
  text-align: center;
  color: #fff;
  background-color: #c3272b;
  cursor: pointer;
  font-size: 0.77777778rem;
  margin-top: 2.55555556rem;
}
.goods {
  background-color: #e9e9e9;
  font-size: 0.88888889rem;
}
.go-body {
  width: 100%;
  border-collapse: collapse;
}
.go-head {
  height: 3.66666667rem;
  line-height: 3.66666667rem;
}
.go-head .ite {
  font-size: 0.88888889rem !important;
}
.go-item {
  position: relative;
  line-height: 2.77777778rem;
  text-align: center;
  box-sizing: border-box;
  border-bottom: 1px solid #b8b8b8;
  width: 100%;
  height: 2.77777778rem;
  font-size: 0.83333333rem;
  transform: translateZ(0);
}
.go-item .ite {
  word-break: break-word;
  box-sizing: border-box;
}
.go-item .goods_price {
  color: #a31618;
}
.go-item .goods_price a {
  color: #a31618;
}
.go-item .ite:first-of-type {
  font-size: 0.77777778rem;
}
.go-item .ite:first-of-type a {
  display: inline;
}
.go-item .ite:nth-of-type(2) {
  font-size: 0.77777778rem;
}
.go-item .ite:nth-of-type(1) a {
  color: #408be2;
}
.go-item .ite:nth-of-type(2) a {
  color: #4878E0;
}
.go-item .ite a {
  text-decoration: underline !important;
  display: block;
}
.go-item .buy {
  display: flex;
  justify-content: center;
  height: 1.66666667rem;
  line-height: 1.66666667rem;
  margin-top: 0.61111111rem;
  border-radius: 0.38888889rem;
}
.go-item .buy .num-box {
  display: flex;
  width: 3.83333333rem;
  height: 1.55555556rem;
  border: solid #d9d9d9;
  border-width: 0.05555556rem;
  border-right: none;
  font-size: 0.66666667rem;
  border-top-left-radius: 0.38888889rem;
  border-bottom-left-radius: 0.38888889rem;
  background-color: #fff;
}
.go-item .buy .num-box div {
  width: 1.11111111rem;
  cursor: pointer;
  font-size: 0.77777778rem;
  user-select: none;
  /* 标准属性 */
  -webkit-user-select: none;
  /* Safari */
  -moz-user-select: none;
  /* Firefox */
  -ms-user-select: none;
  /* IE/Edge */
}
.go-item .buy .num-box .buy_number {
  border: none;
  text-align: center;
  width: 1.61111111rem;
}
.go-item .buy .ite-cart {
  width: 2.66666667rem;
  cursor: pointer;
  height: 100%;
  border-top-right-radius: 0.38888889rem;
  border-bottom-right-radius: 0.38888889rem;
  background-color: #c3272b;
  color: #fff;
  text-align: center;
}
.go-item .buy .ite-cart i {
  line-height: 1.66666667rem;
}
.go-item:nth-of-type(2n) {
  background-color: #e9e9e9;
}
.go-item:nth-of-type(2n+1) {
  background-color: #d2d2d2;
}
.lists {
  position: absolute;
  left: 2.8%;
  right: 2.8%;
  top: 2.77777778rem;
  display: none;
  margin-bottom: 0.83333333rem;
  border-radius: 0.38888889rem;
  background-color: #fff;
}
.list {
  position: relative;
  width: 97%;
  margin: 0 1.5%;
  overflow: hidden;
}
.list .title {
  text-align: left;
  color: #4878E0;
  font-size: 1.11111111rem;
  line-height: 3.88888889rem;
  margin-top: 1.38888889rem;
}
.list .content {
  display: flex;
  justify-content: space-between;
  width: 100%;
  flex-wrap: wrap;
  background-color: #ffffff;
  margin-bottom: 2.22222222rem;
}
.list .content .con-opt {
  display: flex;
  justify-content: space-between;
  width: 49%;
  height: 2.44444444rem;
  text-align: left;
}
.list .content .opt-name {
  width: 33.5%;
  padding-left: 1.94444444rem;
  box-sizing: border-box;
}
.list .content .opt-val {
  width: 66%;
  padding-left: 1.94444444rem;
  box-sizing: border-box;
}
.list .con-opt:nth-of-type(4n+1) .opt-name,
.list .con-opt:nth-of-type(4n+2) .opt-name {
  background-color: #e6e6e6;
}
.list .con-opt:nth-of-type(4n+1) .opt-val,
.list .con-opt:nth-of-type(4n+2) .opt-val {
  background-color: #e6e6e6;
}
.list .con-opt:nth-of-type(4n+3) .opt-name,
.list .con-opt:nth-of-type(4n+4) .opt-name {
  background-color: #f0f0f0;
}
.list .con-opt:nth-of-type(4n+3) .opt-val,
.list .con-opt:nth-of-type(4n+4) .opt-val {
  background-color: #f0f0f0;
}
.list .loads {
  display: flex;
  justify-content: space-between;
  width: 100%;
  height: 2.22222222rem;
  margin-bottom: 2.22222222rem;
  line-height: 2.22222222rem;
  color: #999999;
  font-size: 0.88888889rem;
}
.list .load {
  width: 19.9%;
  background-color: #f8f8f8;
  cursor: pointer;
}
.list .load i {
  margin-right: 0.27777778rem;
}
.wares {
  display: flex;
  justify-content: space-between;
  width: 100%;
  height: 23.61111111rem;
}
.ware {
  width: 13.33333333rem;
  height: 100%;
}
.ware .wa-img {
  width: 13.44444444rem;
  height: 8.22222222rem;
  background-color: #666666;
  border-radius: 0.44444444rem;
}
.ware .wa-name {
  line-height: 1.55555556rem;
  margin-top: 0.83333333rem;
  text-align: left;
  color: #666666;
  font-size: 1.11111111rem;
}
.ware .jiage {
  position: relative;
  line-height: 2.88888889rem;
  margin-top: 1.55555556rem;
  color: #c3272b;
  font-size: 0.88888889rem;
  /* 当复选框被选中时 */
}
.ware .jiage .jia {
  float: left;
}
.ware .jiage input[type="checkbox"] {
  position: absolute;
  opacity: 0;
  z-index: 100;
  top: 0.83333333rem;
  right: 0rem;
}
.ware .jiage input[type="checkbox"] ~ .check1::before {
  content: "";
  position: absolute;
  top: 0.83333333rem;
  right: 0rem;
  display: inline-block;
  width: 0.88888889rem;
  /* 边框宽度 */
  height: 0.88888889rem;
  /* 边框高度 */
  border: solid #ca4245;
  /* 边框颜色 */
  border-width: 0.11111111rem;
  background-color: #fff;
  /* 背景颜色 */
  cursor: pointer;
}
.ware .jiage input[type="checkbox"]:checked ~ .check1::before {
  content: "√";
  color: #fff;
  line-height: 0.88888889rem;
  font-weight: bold;
  background-color: #ca4245;
  /* 选中时的背景颜色 */
}
.addware {
  width: 17.22222222rem;
  height: 11.66666667rem;
  background-color: #f7f7f7;
  border-radius: 0.44444444rem;
  text-align: center;
  color: #666666;
}
.addware .sel-ware {
  line-height: 2.22222222rem;
  margin-top: 1.55555556rem;
  font-size: 1.11111111rem;
}
.addware .price {
  line-height: 2.33333333rem;
  font-size: 1.33333333rem;
  margin-bottom: 1.38888889rem;
}
.addware .price span {
  color: #c3272b;
}
.addware .addcart {
  width: 9.88888889rem;
  height: 2.77777778rem;
  border-radius: 1.27777778rem;
  background-color: #c3272b;
  text-align: center;
  color: #ffffff;
  line-height: 2.77777778rem;
  margin: 0 auto;
  font-size: 1.11111111rem;
  cursor: pointer;
}
.clear {
  position: absolute;
  top: 2.05555556rem;
  right: 1.83333333rem;
  width: 1.44444444rem;
  height: 1.44444444rem;
  border: 1px solid #999999;
  border-radius: 50%;
  text-align: center;
  line-height: 1.44444444rem;
  cursor: pointer;
  color: #999999;
}
.go-footer {
  position: relative;
  width: 100%;
  height: 7.33333333rem;
}
.go-footer .more {
  width: 6.66666667rem;
  height: 2.22222222rem;
  border-radius: 1.11111111rem;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  background-color: #c3272b;
  color: #ffffff;
  font-size: 1.11111111rem;
  text-align: center;
  line-height: 2.22222222rem;
  cursor: pointer;
}
.contain:nth-of-type(n+2) {
  background-color: #f8f8f8;
  padding-top: 1.11111111rem;
  padding-right: 1.55555556rem;
  padding-bottom: 1.11111111rem;
  padding-left: 1.55555556rem;
  box-sizing: border-box;
}
.guangpu {
  width: 100%;
  display: flex;
  justify-content: flex-start;
  flex-wrap: wrap;
}
.guangpu img {
  width: 32%;
  margin-right: 2%;
  height: 13.88888889rem;
  margin-bottom: 2.22222222rem;
}
.guangpu img:nth-of-type(3n) {
  margin-right: 0;
}
.xiangguan {
  width: 100%;
  display: flex;
  justify-content: flex-start;
  flex-wrap: wrap;
}
.xiangguan .x-product {
  width: 24%;
  margin-right: 1.3%;
  background-color: #fff;
  border-radius: 0.38888889rem;
  margin-bottom: 1.66666667rem;
}
.xiangguan .x-product img {
  width: 100%;
  height: 12.77777778rem;
}
.xiangguan .x-product p {
  line-height: 4.44444444rem;
  text-align: center;
  color: #666666;
  font-size: 1.11111111rem;
}
.xiangguan .x-product:nth-of-type(4n) {
  margin-right: 0;
}
.dingzhi {
  width: 96.6%;
  margin: 0 auto;
  background-color: #fff;
  border-bottom-left-radius: 0.38888889rem;
  border-bottom-right-radius: 0.38888889rem;
  position: relative;
}
.dingzhi .vector {
  position: absolute;
  right: 0;
  top: 3.33333333rem;
  z-index: 100;
}
.dingzhi .d-title {
  width: 100%;
  line-height: 3.33333333rem;
  background-color: #d9d9d9;
  padding-left: 1.66666667rem;
  box-sizing: border-box;
  color: #666666;
  font-size: 1.11111111rem;
}
.dingzhi .d-form {
  width: 100%;
  padding-top: 1.66666667rem;
  padding-right: 0rem;
  padding-bottom: 1.66666667rem;
  padding-left: 0rem;
}
.dingzhi .d-form table {
  width: auto !important;
  /* 覆盖Layui的固定宽度 */
  border-collapse: separate !important;
  /* 恢复默认边框模式 */
  border-spacing: 0;
  margin: 0 auto;
}
.dingzhi .d-form table tr {
  background-color: transparent !important;
  /* 清除行背景色 */
}
.dingzhi .d-form table tr td {
  font-size: 0.88888889rem;
  background-color: #efefef !important;
  border: 1px solid #fff !important;
  /* 恢复默认边框 */
}
.dingzhi .d-form table tr td:nth-of-type(1) {
  width: 28%;
  box-sizing: border-box;
  text-align: center;
}
.dingzhi .d-form table tr td:nth-of-type(2) {
  width: 60%;
}
.dingzhi .d-form table tr td:nth-of-type(2) input {
  font-size: 0.88888889rem;
  display: block;
  border: none;
  width: 85%;
  margin: 12px auto;
  border-radius: 0.38888889rem;
  height: 2.11111111rem;
  padding-left: 0.44444444rem;
  box-sizing: border-box;
}
.submit {
  width: 7.77777778rem;
  height: 2.22222222rem;
  background-color: #c3272b;
  border-radius: 1.11111111rem;
  color: #fff;
  font-size: 1.11111111rem;
  text-align: center;
  line-height: 2.22222222rem;
  margin: 0 auto;
  cursor: pointer;
  margin-top: 1.66666667rem;
}
