/* 产品介绍 */
.container {
    background: #f4f4f4;
  }
  
  /* 头部样式修改 */
  .bannerBox {
    width: 100%;
    height: 350px;
  }
  
  .bannerBox img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  
  
  /* 品牌类型 */
  /* 品牌类型列表 */
  .typesBox{
    margin-bottom: 60px;
  }
  .typeList{
    margin:60px auto 0;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
  }
  .typeList li{
    width: 270px;
    height: 270px;
    border:solid 2px #fff;
    border-radius: 30px;
    margin-bottom: 40px;
    margin-right: 40px;
    overflow: hidden;
    background-color: #fff;
    box-sizing: border-box;
    transition: ease-in-out 0.2s;
    -webkit-transition: ease-in-out 0.2s;
    -moz-transition: ease-in-out 0.2s;
    -o-transition: ease-in-out 0.2s;
  }
  .typeList li:nth-child(4n){
      margin-right: 0;
  }
  
  .typeList li a{
    width: 100%;
    height: 100%;
    text-align: center;
  }
  .typeList li .imgbox{
      width: 100%;
      height: 220px;
      display: flex;
      align-items: center;
  }
  .typeList li .imgbox img{
    max-width: 100%;
    max-height: 100%;
    display: block;
    margin:auto;
  }
.typeList li p{
    font-size: 18px;
    color: #666;
    margin-top:10px;
    padding:0 15px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    transition: ease-in-out 0.2s;
    -webkit-transition: ease-in-out 0.2s;
    -moz-transition: ease-in-out 0.2s;
    -o-transition: ease-in-out 0.2s;
}
.typeList li:hover{
    border:solid 2px #048FFF;
  }
  
  .typeList li:hover p{
      color: #048FFF;
  }