.container-fluid {
  margin-top: 0;

  /* 俩侧不留白 */
  padding-right: 0px;
  padding-left: 0px;
}

/* 面包屑-置顶 */
.breadcrumb-top {
  position: fixed;
  top: 4.75rem;
  right: 0;
  left: 0;
  z-index: 1000;
  background-color: #fff;
}

.pass {
  height: 8rem;
}

/* 图片部分 */

.picture-list {
  flex: 0 0 38%;
  max-width: 38%;
  margin-right: 0px;
  margin-left: 0px;
}


/* 缩略图 */

.small-pic {
  flex: 0 0 20%;
  max-width: 20%;
  margin-bottom: 0;
  padding-left: 4.5vw;
}

.small-pic li {
  list-style: none;
}

.small-pic>li>img {
  width: 2.5vw;
  margin-top: 0.4vw;
  margin-bottom: 0.4vw;
  border: 1px solid rgb(210, 210, 210);
}

.small-pic>li>img:hover {
  border: 2px solid rgb(233, 140, 17);
  box-shadow: rgba(0, 0, 0, 0.16) 0px 3px 6px, rgba(0, 0, 0, 0.23) 0px 3px 6px;
}


/* 当前缩略图 */

.current {
  border: 2px solid rgb(233, 140, 17);
  box-shadow: rgba(0, 0, 0, 0.16) 0px 3px 6px, rgba(0, 0, 0, 0.23) 0px 3px 6px;
}

.small-pic-top {
  margin-top: 0px !important;
}

.small-pic-bottom {
  margin-bottom: 0px !important;
}


/* 主图 */

.outside-box {
  flex: 0 0 80%;
  max-width: 80%;
  margin: 0 auto;
  width: 26.5vw;
  height: 26.5vw
}

.main {
  position: absolute;
  overflow: hidden;
  width: 26.5vw;
  height: 26.5vw;
}

.show-pic {
  vertical-align: middle;
  width: 26.5vw;
  height: 26.5vw;
  border: 1px solid rgb(210, 210, 210);
}


/* 遮罩 */

.mask {
  position: absolute;
  display: none;
  width: 15vw;
  height: 15vw;
  cursor: crosshair;
  background-color: rgba(0, 0, 0, 0.3);
}


/* 放大镜 */

.big-pic-box {
  position: absolute;
  overflow: hidden;
  display: none;
  left: 37vw;
  width: 35vw;
  height: 35vw;
  border: 1px solid rgb(210, 210, 210);
  box-shadow: rgba(0, 0, 0, 0.16) 0px 3px 6px, rgba(0, 0, 0, 0.23) 0px 3px 6px;
}

.big-pic {
  position: absolute;
  left: 0;
  top: 0;
  width: 200%;
  height: 200%;
}


/* 商品信息 */

.describe-list {
  flex: 0 0 62%;
  max-width: 62%;
  padding: 2vh 0 0 0;
}

.product-title {
  font-size: 2rem;
  font-weight: bolder;
}


/* 副标题 */

.product-small-title {
  margin: 1vh 0vw;
  font-size: 0.9rem;
}


/* 购物车 */

.shopping-cart-box {
  margin: 2vh 0 0 0;
}

.shopping-cart {
  display: inline-block;
}

.shopping-cart svg {
  height: 6vh;
  vertical-align: baseline;
}

.unactive-img path {
  fill: rgb(233, 140, 17);
}

.unactive-img:hover path {
  fill: rgb(233, 140, 17);
}

.active-img path {
  fill: rgb(233, 140, 17);
}

.store {
  display: inline-block;
  margin-left: 2vw;
}


/* 站点多图标组合 */

.store-logo {
  display: inline-block;
  vertical-align: 50%;
  height: 3.4vh;
}

.store-country {
  display: inline-block;
  vertical-align: 60%;
  text-align: center;
}

.store-country-img {
  vertical-align: 10%;
  height: 1.5vh;
  border-radius: 50%;
  border: 1px solid #000;
}

.store-country-text {
  line-height: 0.3;
  font-size: 0.2rem;
}


/* 站点单图标 */

.store-one-img {
  display: inline-block;
  height: 3.4vh;
}

.store-img {
  vertical-align: 50%;
  height: 3.4vh;
}


/* 商品描述 */

.product-describe {
  margin: 2vh 0vw;
  font-size: 0.9rem;
}

/* 占位符 */
.tab-pass {
  height: 1rem;
}


/* tab 头部 */

.tab-list {
  flex: 0 0 95%;
  max-width: 95%;
  margin: 2vh auto;
  padding: 0.5rem 1.4rem;
}

.tab-list ul {
  padding-left: 5.5vw;
  border-bottom: 1px solid rgb(142, 142, 142);
}

.tab-list .nav .nav-item .nav-link {
  width: 14vw;
  text-align: center;
  color: rgba(0, 0, 0, 0.6);
  margin-bottom: -1px;
  border: 1px solid transparent;
  cursor: pointer;
  height: 100%;
}

.tab-list .nav .nav-item .nav-link:hover {
  border-color: rgb(142, 142, 142) rgb(142, 142, 142) #fff;
}

.tab-list .nav .nav-item .active {
  color: #fff;
  background-color: rgb(233, 140, 17);
  border-color: rgb(142, 142, 142);
  border-bottom: transparent;
}


/* tab 内容 */

.tab-content {
  flex: 0 0 100%;
  max-width: 100%;
}


/* 全宽大图 */

.full-wide {
  margin-right: auto;
  margin-left: auto;
  height: 80vh;
  position: relative;
}

.full-wide img {
  width: 100%;
  height: 80vh;
}

.float-img {
  position: absolute;
  top: 50%;
  left: 50%;
  /* 使用 transform 达到图片;居中效果*/
  transform: translate(-50%, -50%);
  object-fit: contain;
}


/* 3列图文 */

.feature-column {
  margin: auto 8%;
  margin-bottom: 6vh;
}

.feature-column .column {
  flex: 0 0 28%;
  max-width: 28%;
  margin: 0 auto;
}

.column-img {
  width: 100%;
  margin-bottom: 4vh;
}


/* 左图右字 */

.lirt-outside {
  margin-right: auto;
  margin-left: auto;
  margin-bottom: 1px;
  /* 使用图片做背景 */
  /* background: url('/imgs/banner1.jpg'); */
  /* 使用颜色做背景 */
  background: rgba(0, 0, 0, 0.3);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}


/* 图片部分 */

.left-img {
  flex: 0 0 70%;
  max-width: 70%;
}

.left-img img {
  height: 92vh;
  width: 100%;
}


/* 文字部分 */

.right-text {
  flex: 0 0 30%;
  max-width: 30%;
  padding: 20px;
}

.right-title {
  font-size: 2rem;
  font-weight: bolder;
  position: relative;
  top: 30%;
  transform: translateY(-30%);
}

.right-desc {
  position: relative;
  top: 40%;
  transform: translateY(-50%);
}


/* 左字右图 */

.ltri-outside {
  margin-right: auto;
  margin-left: auto;
  margin-bottom: 1px;
  /* 使用图片做背景 */
  /* background: url('/imgs/banner1.jpg'); */
  /* 使用颜色做背景 */
  background: rgba(0, 0, 0, 0.3);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}


/* 图片部分 */

.right-img {
  flex: 0 0 70%;
  max-width: 70%;
}

.right-img img {
  height: 92vh;
  width: 100%;
}


/* 文字部分 */

.left-text {
  flex: 0 0 30%;
  max-width: 30%;
  padding: 20px;
}

.left-title {
  font-size: 2rem;
  font-weight: bolder;
  position: relative;
  top: 30%;
  transform: translateY(-30%);
}

.left-desc {
  position: relative;
  top: 40%;
  transform: translateY(-50%);
}


/* 对比表格 */

.table-box {
  flex: 0 0 100%;
  max-width: 100%;
  margin: auto 4vw;
}

.table-head {
  background-color: rgb(204, 204, 204);
}


/* 规格 */

.specification {
  flex: 0 0 90%;
  max-width: 90%;
  margin-bottom: 8vh;
  margin-left: auto;
  margin-right: auto;
}

.specification-item {
  flex: 0 0 33.3333%;
  max-width: 33.3333%;
  margin-top: 6vh;
  margin-bottom: 15px;
}


/* 标题 */

.specification-title {
  font-size: 2rem;
  margin-bottom: 0.5rem;
  font-weight: 700;
}


/* 副标题 */

.specification-subtitle {
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
  font-weight: 700;
  text-align: left; /* 靠左对齐 */
}


/* 内容 */

.specification-content {
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
  line-height: 2;
  text-align: left; /* 靠左对齐 */
}


/* 买家之声 */

.buyer-voice {
  flex: 0 0 90%;
  max-width: 90%;
  margin-bottom: 8vh;
  margin-left: auto;
  margin-right: auto;
}

.comment-item {
  margin: 4.5vh auto;
}

.comment-country {
  display: inline-block;
  width: 2%;
  border-radius: 50%;
  overflow: hidden;
  margin-right: 0.5vw;
  border: 1px solid #000;
}

.comment-name {
  display: inline-block;
  margin-right: 0.5vw;
  font-size: 1.2rem;
  font-weight: 700;
}

.comment-email {
  display: inline-block;
  margin-right: 0.5vw;
}


/* 评分部分 */

.comment-grade {
  position: relative;
  top: 0.3rem;
  display: inline-block;
  height: 1.2rem;
  overflow: hidden;
}

.progess {
  /* background-color: rgb(233, 140, 17);*/
  height: 1.2rem;
  width: 80%;
}

.comment-grade img {
  position: relative;
  top: -1.5rem;
  left: 0rem;
  height: 1.2rem;
}

.comment-botton {
  padding: 1vh 1vw;
}


/* 置顶图标 */

.to_top {
  position: fixed;
  bottom: 8vh;
  right: 5vh;
}

.to_top:hover path {
  color: rgb(233, 140, 17);
}


/* 平板横屏 */

@media (max-width: 1024px) {

  /* 全宽大图 */
  .full-wide img {
    width: 100vw;
    height: 40vh;
  }
}


/* 平板 */

@media (max-width: 768px) {
  .container-fluid {
    margin-top: 0;
  }

  /* 图片部分 */
  .picture-list {
    flex: 0 0 100%;
    flex-direction:column;
    max-width: 50%;
    margin-bottom: 2rem;
  }

  /* 缩略图 */
  .small-pic>li>img {
    width: 7.5vh;
    margin-top: 0.6vh;
    margin-bottom: 0.6vh;
    height: 7.5vh;
  }

  /* 主图 */
  .main {
    position: inherit;
    width: 80vw;
    height: 80vw;
  }

  .show-pic {
    vertical-align: middle;
    width: 100%;
    height: auto;
  }

  .big-pic-box {
    display: none !important;
  }

  .mask {
    display: none !important;
  }

  /* 购物车 */
  .store {
    margin-left: 5vw;
  }

  /* 描述 */
  .describe-list {
    flex: 0 0 90%;
    max-width: 90%;
    margin: auto;
    margin-top:15px;
  }

  /* 标题 */
  .product-title {
    text-align: left;
    font-size: 1.6rem;
    margin-bottom: 1rem;
    margin-top: 1.5rem;
  }

  .tab-pass {
    height: 1rem;
  }

  /* tab */
  .tab-list {
    flex: 0 0 100%;
    max-width: 100%;
    margin: 4vh auto 2vh auto;
  }

  .tab-list .nav .nav-item .nav-link {
    width: auto;
  }

.tab-list .nav .nav-item .active {
  color: #fff;
  background-color: rgb(233, 140, 17);
  border-color: rgb(142, 142, 142);
  border-bottom: transparent;
}

  /* 全宽大图 */
  .full-wide {
    margin-bottom: 4vh;
  }

  .full-wide img {
    width: 100vw;
    height: 25vh;
  }

  /* 3列图文 */
  .feature-column {
    margin-bottom: 4vh;
  }

  .column-img {
    margin-bottom: 2vh;
  }

  .column-text {
    font-size: 0.8rem;
  }

  /* 左图右字 */
  .lirt-outside {
    margin-bottom: 4vh;
    /* 使用图片做背景 */
    /* background: url('/imgs/banner1.jpg'); */
    /* 使用颜色做背景 */
  }

  .left-img img {
    height: 100%;
  }

  .right-text {
    padding: 10px;
  }

  .right-title {
    font-size: 1rem;
    font-weight: bolder;
    position: inherit;
    top: auto;
    transform: inherit;
  }

  .right-desc {
    font-size: 0.5rem;
    position: inherit;
    top: auto;
    transform: inherit;
  }

  /* 左字右图 */
  .ltri-outside {
    margin-bottom: 4vh;
    /* 使用图片做背景 */
    /* background: url('/imgs/banner1.jpg'); */
    /* 使用颜色做背景 */
  }

  .right-img img {
    height: 100%;
    width: 100%;
  }

  /* 文字部分 */
  .left-text {
    padding: 10px;
  }

  .left-title {
    font-size: 1rem;
    position: inherit;
    top: auto;
    transform: inherit;
  }

  .left-desc {
    font-size: 0.5rem;
    position: inherit;
    top: auto;
    transform: inherit;
  }

  /* 对比表格 */
  .table-box {
    overflow-x: auto;
  }

  .table {
    width: 100vw;
  }

/* 规格 */
  .specification-item {
    flex: 0 0 100%;
    max-width: 100%;
    margin-top: 2vh;
  }


  /* 评论 */
  .comment-item {
    margin: auto;
  }

  .comment-grade {
    top: 0.6rem;
    overflow: hidden;
  }
}


/* 移动端 */

@media (max-width: 576px) {
  .container-fluid {
    margin-top: 0;
  }

  .li-oneline {
    width: 25%;
  }
.title {
    font-size: 1rem; /* 保持字体大小 */
    word-wrap: break-word; /* 强制换行 */
    white-space: normal; /* 确保内容正常换行 */
    width: 90%; /* 调整容器宽度 */
    margin: 0 auto; /* 居中显示 */
  }


  /* 图片部分 */
  .picture-list {
    flex: 0 0 100%;
    flex-direction:column;
    max-width: 50%;
    margin-bottom: 2rem;
  }

  /* 缩略图 */
  .small-pic>li>img {
    width: 4.5vh;
    margin-top: 0.6vh;
    margin-bottom: 0.5vh;
    height: 4.5vh;
  }

  /* 主图 */
  .main {
    position: inherit;
    width: 40vh;
    height: 40vh;
  }

  .show-pic {
    vertical-align: middle;
    width: 100%;
    max-height: 100%;
  }

  .big-pic-box {
    display: none !important;
  }

  .mask {
    display: none !important;
  }

  /* 描述 */
  .describe-list {
    flex: 0 0 90%;
    max-width: 90%;
    margin-top:20px;
    margin: auto;
    padding: 0 10px;
  }

  /* 标题 */
  .product-title {
    text-align: left;
    font-size: 1.6rem;
    margin-bottom: 1rem;
    margin-top: 1.5rem;
  }

  /* 购物站点 */
  .store {
    display: inline-block;
    margin-left: 2.5vw;
    width: 11vw;
  }

  .store-logo {
    height: auto;
    width: 5vw
  }

  .store-country {
    height: auto;
  }

  .store-country-img {
    width: 3vw;
    height: 3vw;
  }

  .store-img {
    vertical-align: baseline;
    width: 7vw;
    height: 100%;
  }

  .store-country-text {
    font-size: 0.5rem;
  }

  .tab-pass {
    height: 1rem;
  }

  /* tab */
  .tab-list {
    flex: 0 0 100%;
    max-width: 100%;
    margin: 4vh auto 2vh auto;
  }

  .tab-list .nav .nav-item .nav-link {
    width: auto;
    font-size: 1rem;
    word-wrap: break-word;
  }

  .tab-list ul {
    padding-left: 0;
  }

.tab-list .nav .nav-item .active {
  color: #fff;
  background-color: rgb(233, 140, 17);
  border-color: rgb(142, 142, 142);
  border-bottom: transparent;
}

  /* 全宽大图 */
  .full-wide {
    margin-bottom: 4vh;
  }

  .full-wide img {
    width: 100vw;
    height: 15vh;
  }

  /* 3列图文 */
  .feature-column {
    margin-bottom: 4vh;
  }

  .column-img {
    margin-bottom: 2vh;
  }

  .column-text {
    font-size: 0.8rem;
  }

  /* 左图右字 */
  .lirt-outside {
    margin-bottom: 4vh;
    /* 使用图片做背景 */
    /* background: url('/imgs/banner1.jpg'); */
    /* 使用颜色做背景 */
  }

  .left-img img {
    height: 100%;
  }

  .right-text {
    padding: 10px;
  }

  .right-title {
    font-size: 1rem;
    font-weight: bolder;
    position: inherit;
    top: auto;
    transform: inherit;
  }

  .right-desc {
    font-size: 0.5rem;
    position: inherit;
    top: auto;
    transform: inherit;
  }

  /* 左字右图 */
  .ltri-outside {
    margin-bottom: 4vh;
    /* 使用图片做背景 */
    /* background: url('/imgs/banner1.jpg'); */
    /* 使用颜色做背景 */
  }

  .right-img img {
    height: 100%;
    width: 100%;
  }

  /* 文字部分 */
  .left-text {
    padding: 10px;
  }

  .left-title {
    font-size: 1rem;
    position: inherit;
    top: auto;
    transform: inherit;
  }

  .left-desc {
    font-size: 0.5rem;
    position: inherit;
    top: auto;
    transform: inherit;
  }

  /* 对比表格 */
  .table-box {
    overflow-x: auto;
    padding: 0 10px;
    box-sizing: border-box;
  }

  .table {
    width: 100%;
    min-width: 300px;
  }

  /* 规格 */
  .specification-item {
    flex: 0 0 100%;
    max-width: 100%;
    margin-top: 2vh;
  }

  .specification-title {
    font-size: 1.5rem;
  }

  .specification-subtitle {
    font-size: 1rem;
  }

  .specification-content {
    font-size: 1rem;
  }

  /* 评论 */
  .comment-item {
    margin: 2vh auto;
  }

  .comment-country {
    width: 6%;
  }

  .comment-grade {
    position: relative;
    top: 0.2rem;
    height: 1.2rem;
    overflow: hidden;
  }

  .progess {
    background-color: rgb(255, 255, 255);
    height: 1.2rem;
  }

  .comment-grade img {
    top: -1.5rem;
    height: 1.1rem;
  }
}