body {
  margin: 0;
  display: flex;
  flex-direction: column;
}

img {
  width: 100%;
}

.productone-web {
  width: 100%;
  background: #ffffff;
}

.main-productone {
  margin-top: 112px;
  display: flex;
  justify-content: center;
  gap: 3.23%;
  padding-bottom: 116px;
}
.main-left-pic{
  width: 39.27%;
  height: auto;
  overflow: hidden;
}
.main-productone .main-left {
  width: 100%;
  height: auto;
}

.main-productone .main-right {
  display: flex;
  flex-direction: column;
  align-items: start;
  width: 45.83%;
  height: auto;

}

.main-productone .right-title {

  font-size: 30px;
  font-family: Microsoft YaHei, Microsoft YaHei-Bold;
  font-weight: 700;
  text-align: center;
  color: #000000;
  line-height: 34px;
}

.main-productone .right-intro {
  font-size: 16px;
  font-family: Microsoft YaHei, Microsoft YaHei-Regular;
  font-weight: 400;
  text-align: left;
  color: #959595;
  margin-top: 27px;
}

.main-productone .right-nav {
  display: flex;
  justify-content: flex-start;
  gap: 70px;
  margin: 0;
  padding: 0;
  margin-top: 51px;

}

.main-productone .nav-sec {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.main-productone .nav-text {
  font-size: 16px;
  font-family: Microsoft YaHei, Microsoft YaHei-Regular;
  font-weight: 400;
  text-align: left;
  color: #313131;
}

.main-productone .nav-line {
  width: 25px;
  height: 2px;
  margin-top: 10px;

}



.main-productone .nav-text-one {
  font-size: 16px;
  font-family: Microsoft YaHei, Microsoft YaHei-Regular;
  font-weight: 400;
  text-align: left;
  color: #f10d0c;
}
.right-nav .nav-sec:hover .nav-text {
  color: #f10d0c;
}
.right-nav .nav-sec:hover .nav-line {
  background: #f10d0c;
}
.main-productone .right-list {
  margin-top: 47px;
  width: 100%;
}

.main-productone .right-list table {
  width: 100%;
  height: auto;
  background: #ffffff;
  border: 1px solid #cfcfcf;
  border-radius: 10px;
}

.main-productone tr td {
  border-bottom: 1px solid #cfcfcf;
  width:50%;
  padding-left: 32px;
  padding-top: 10px;
  padding-bottom: 10px;
  font-size: 16px;
  font-family: Microsoft YaHei, Microsoft YaHei-Regular;
  font-weight: 400;
  text-align: left;
  color: #000000;
}

.main-productone tr td:first-child {
  background: #f3f3f3;

  border-right: 1px solid #cfcfcf;

}

.main-productone tr:last-child td {
  border-bottom: none;
}
/* productTwo */
.main-productone .right-infor{
  width: 100%;
  height: auto;
  background: #f6f6f6;
  border-radius: 10px;
  margin-top: 47px;
  padding: 15px;
}
/* 响应式媒体查询 */
@media (max-width: 1200px) {
  .main-productone {
    flex-direction: column;
    align-items: center;
  }

  .main-productone .main-left {
    width: 80%;
    height: auto;
  }

  .main-productone .main-right {
    width: 80%;
    height: auto;
  }

  .main-productone .right-list {
    width: 80%;
  }

  .main-productone .right-list table {
    width: 100%;
    height: auto;
  }
  .main-productone .right-infor{
    width: 100%;
  }
  .main-productone tr td{
    padding-left: 5%;  }
}

@media (max-width: 992px) {}

@media (max-width: 768px) {
  .main-productone {
    margin-top: 50px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: .625rem;
    padding-bottom: 50px;
  }
  .main-left-pic{
    width: 80%;
    height: auto;
    overflow: hidden;
  }

}

@media (max-width: 480px) {
  .main-productone{
    margin-top: 10%;

  }
  .main-productone .right-title {

    font-size: 25px;
    font-weight: 700;
    text-align: center;
    line-height: 30px;
  }

  .main-productone .right-intro {
    font-size: 16px;
    font-weight: 400;
    text-align: left;
    margin-top: 15px;
  }
  .main-productone .right-nav {
    margin-top: 30px;

  }
  .main-productone .right-list {
    margin-top: 30px;
  }
  .main-productone .right-infor{
    margin-top: 30px;
  }
  .main-productone tr td {
    font-size: 8px;

  }
}
/* 悬停效果 */
.main-productone .nav-sec:hover {
  transform: translateY(-5px);
}

/* 过渡效果 */
.main-productone .right-list table {
  transition: transform 0.3s ease;
}

.main-productone .right-list table:hover {
  transform: scale(1.05);
}
/* 图片悬停效果 */
.main-productone .main-left img {
  transition: transform 0.3s ease;
}

.main-productone .main-left img:hover {
  transform: scale(1.1);
}
/* 详情区更改 */
/* 新增 */
.main-productone .nav-tab.active .nav-text {
  color: #f10d0c;
}
.main-productone .nav-tab.active .nav-line {
  background: #f10d0c;
}
/* 修改hover选择器 */
.right-nav .nav-tab:hover .nav-text {
  color: #f10d0c;
}
.right-nav .nav-tab:hover .nav-line {
  background: #f10d0c;
}
/* 内容区域切换 */
.content-section {
  display: none;
}
.content-section.active {
  display: block;
}