/* 产品介绍 */
.container {
    background: #f4f4f4;
  }
  
  /* 头部样式修改 */
  .bannerBox {
    width: 100%;
    height: 350px;
  }
  
  .bannerBox img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  
  
  /* 品牌中心 */
  /* 产品中心 */
  .product {
    padding-top: 43px;
    margin-bottom: 80px;
  }
  
  .navBox {
    display: flex;
    justify-content: space-between;
  }
  
  /* 右边数据切换 */
  .navBox .rightBox {
    width: 890px;
    margin-top: 7px;
    margin-left:40px;
    
  }
  .rightBox .boxCon{
    display: flex;
    flex-wrap: wrap;
  }
  .divItem {
    width: 265px;
    height: 319px;
    margin-top: 30px;
    margin-right: 47px;
    box-sizing: border-box;
    background: #fff;
    border:solid 2px #fff;
  }
  .divItem:nth-child(3n){
    margin-right: 0;
  }
  
  .divItem a{
    font-size: 14px;
    color: #333;
    width: 100%;
    height: 100%;
    display: block;
  }
  .imgBox {
    width: 100%;
    height: 266px;
    overflow: hidden;
  }
  
  .imgBox img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: contain;
  }
  
  
  .name_right {
    width: 100%;
    height: 50px;
    text-align: center;
    line-height: 50px;
  }
  
  .divItem,.imgBox img,.name_right{
    transition: ease-in-out 0.3s;
    -webkit-transition: ease-in-out 0.3s;
    -moz-transition: ease-in-out 0.3s;
    -o-transition: ease-in-out 0.3s;
  }
  .divItem:hover{
    border:solid 2px #048fff;
    box-shadow:0px 2px 30px 0px rgba(13, 106, 200, 0.35);
  }
  .divItem:hover img{
    -webkit-transform:scale(1.1);
    -moz-transform:scale(1.1);
    -o-transform:scale(1.1);
    transform:scale(1.1);
    opacity: .8;
  }
  .divItem:hover .name_right{
    color:#0d6ac8;
  }
  
  
  