      .products img {
            transition: transform 0.3s ease; /* 添加平滑过渡效果 */
        }

    .products img:hover {
            transform: scale(1.1); /* 放大图片 */
        }
        .item  img {
            transition: all 0.3s ease;
        }

        .item:nth-of-type(1):hover img {
            content: url("/images/icon1.png");        }

       .item:nth-of-type(2):hover img {
            content: url("/images/icon2.png");        }
       .item:nth-of-type(3):hover img {
            content: url("/images/icon3.png");        }
       .item:nth-of-type(4):hover img {
            content: url("/images/icon4.png");}
       .item:nth-of-type(5):hover img {
            content: url("/images/icon5.png");}



.a-title {
  height: 65px;
  display: flex;
  align-items: center;
  border-bottom: 1px solid #650A0A;
}
.a-title > div {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.a-title > div .text {
  font-size: 24px;
  font-weight: bold;
}
.a-title > div .w {
  font-size: 16px;
  color: #999999;
}
.a-title > div .w span {
  font-weight: bold;
  color: #114197;
}
.title-Mobile {
  display: none;
}
.products {
  padding: 3% 0;
  display: flex;
  justify-content: space-between;
}
.products .Sideer {
  width: 20%;
}
.products .Sideer .title {
  height: 95px;
  color: #fff;
  background-color: #114197;
}
.products .Sideer .title > div {
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.products .Sideer .title > div div:nth-child(1) {
  font-size: 24px;
  font-weight: bold;
}
.products .Sideer .navList .nav-item {
  height: 50px;
  line-height: 50px;
  background-color: #F9F9F9;
  border: 1px solid #eaeaea;
  padding-left: 10%;
}
.products .Sideer .navList .nav-item span {
  font-family: '宋体';
  font-weight: bold;
  margin-right: 12px;
}
.products .Sideer .phone {
  height: 95px;
  margin-top: 21px;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #fff;
  background-color: #114197;
}
.products .Sideer .phone .phoneNumber {
  font-size: 20px;
  font-weight: bold;
}
.products .Sideer .phone img {
  margin-right: 9px;
}
.products .product {
  width: 100%;
}
.products .product .productDeatail {
  display: grid;
  grid-template-columns: 500px 5.5fr;
  column-gap: 31px;
  margin-bottom: 21px;
}
.products .product .productDeatail .right {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.products .product .productDeatail .right .r-title {
  padding-left: 9px;
  font-size: 22px;
  color: #222222;
  margin-bottom: 16px;
  border-left: 3px solid #114197;
}
.products .product .productDeatail .right .liner {
  width: 100%;
  height: 1px;
  background-color: #E6E6E6;
}
.products .product .productDeatail .right .deteil {
  color: #222222;
  padding-bottom: 19px;
  border-bottom: 1px solid #E6E6E6;
}
.products .product .productDeatail .right .deteil div {
  padding: 7px 0;
}
.products .scetion .secton-title {
  width: 100%;
  padding: 12px 0;
  color: #114197;
  font-size: 22px;
  font-weight: bold;
  border-bottom: 1px solid #E6E6E6;
}
.products .scetion > p {
  padding: 21px 0;
  color: #222222;
}
.products .scetion .ps {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  column-gap: 32px;
  text-align: center;
  margin-top: 42px;
  margin-bottom: 52px;
}
.products .scetion .ps .item div {
  padding: 7px 0;
  color: #222222;
  font-size: 14px;
}
.products .scetion .ps img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.products .scetion .table {
  width: 100%;
  margin-bottom: 42px;
}
.products .scetion .table .title {
  height: 55px;
  display: grid;
  grid-template-columns: 3fr 7fr;
  align-items: center;
  background-color: #114197;
  color: #fff;
}
.products .scetion .table .title > div {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.products .scetion .table .contentT > div {
  width: 100%;
}
.products .scetion .table .contentT > div div {
  display: grid;
  grid-template-columns: 3fr 7fr;
  align-items: center;
  padding: 6px 0;
  font-size: 14px;
  text-align: center;
}
.products .scetion .table .contentT > div div:nth-child(odd) {
  background-color: #F8F8F8;
}
.products .scetion .table .contentT > div div span {
  display: block;
  width: 100%;
}
.products .scetion .table .t-title {
  padding: 17px 0;
  color: #fff;
  text-align: center;
  font-weight: bold;
  background-color: #114197;
}
.products .scetion .icons {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  column-gap: 12px;
  margin-top: 42px;
}
.products .scetion .icons .item {
  padding: 18px 21px;
  display: flex;
  text-align: center;
  flex-direction: column;
  align-items: center;
  justify-content: space-around;
  background-color: #F9FAFC;
  font-size: 14px;
  transition: all 0.3s ease-in-out;
}
.products .scetion .icons .item:hover {
  cursor: pointer;
  color: #fff;
  background-color: #114197;
}
.products .scetion .icons .item img {
  width: 39px;
  height: 39px;
  margin-bottom: 12px;
  object-fit: contain;
}
.products .scetion .imagesList {
  margin-top: 42px;
}
.products .scetion .imagesList > div {
  height: 309px;
}
.products .scetion .imagesList .image-l,
.products .scetion .imagesList .image-r {
  display: grid;
  grid-template-columns: 3.5fr 6.5fr;
  margin-bottom: 32px;
}
.products .scetion .imagesList .image-l > div,
.products .scetion .imagesList .image-r > div {
  padding: 12px 0;
  display: flex;
  flex-direction: column;
  justify-content: space-around;
  background-color: #F1F4F6;
  padding: 40px;
}
.products .scetion .imagesList .image-l .i-title,
.products .scetion .imagesList .image-r .i-title {
  font-size: 22px;
  font-weight: bold;
  color: #114197;
}
.products .scetion .imagesList .image-l img,
.products .scetion .imagesList .image-r img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.products .scetion .imagesList .image-r {
  display: grid;
  grid-template-columns: 6.5fr 3.5fr;
  text-align: right;
}
.products .scetion .imagess {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  column-gap: 21px;
  margin-top: 21px;
}
.products .scetion .imagess .item {
  height: 275px;
}
.products .scetion .imagess .item .img {
  background-color: #F3F3F3;
  overflow: hidden;
}
.products .scetion .imagess .item .img img {
  width: 100%;
  height: 100%;
  transition: all 0.3s ease-in-out;
}
.products .scetion .imagess .item .img img:hover {
  transform: scale(1.1);
}
.products .scetion .imagess .item div {
  padding: 6px 0;
  text-align: center;
}
.products .scetion.mo {
  display: none;
}
.banner {
  width: 100%;
  height: 406px;
  position: relative;
  display: flex;
  overflow: hidden;
}
.banner .banner-container {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(6, 1fr);
}
.banner .banner-container .banner-item {
  width: 500px;
  overflow: hidden;
  background: url('../../images/铣刀分板机产品图.png') no-repeat;
  background-position: center center;
  background-size: contain;
  background-color: #ECECEC;
}
.banner .num {
  position: absolute;
  right: 5%;
  bottom: 2%;
  padding: 3px 9px;
  border-radius: 12px;
  color: #fff;
  letter-spacing: 2px;
  background: rgba(0, 0, 0, 0.38);
}
.banner .btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}
.banner .prev {
  left: 0;
}
.banner .next {
  right: 0;
}
.moreCategrory {
  position: absolute;
  z-index: 9999;
  left: 0;
  bottom: -100%;
  width: 100% !important;
  height: 100% !important;
  color: #333;
  flex-direction: column;
  width: 100%;
}
.moreCategrory > div {
  width: 100%;
  height: 42px !important;
  padding: 0 5%;
  border-bottom: 1px solid #E5E5E5;
  background-color: #F3F3F3;
  display: flex;
  align-items: center;
}
