.body-pc{
  .banner {
    margin-top: (4.01vw);
    width: 100%;
    height:560px;
  }
  .banner img {
    object-fit: cover; 
    width: 100%;
    height: 100%;
  }
  .productView {
    width: 1106px;
    margin: 0 auto;
  }
  .productView .titleView {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    color: #000;
    line-height: 1;
    margin-bottom: 50px;
    padding-top: 70px;
  }
  .productView .titleView div:nth-child(1) {
    font-family: 'al95';
    font-size: 16px;
    margin-bottom: 10px;
  }
  .productView .titleView div:nth-child(2) {
    font-family: 'al95';
    font-size: 34px;
    margin-bottom: 10px;
  }
  .productView .titleView div:nth-child(3) {
    font-family: 'al95';
    font-size: 16px;
    color: #8F8F8F;
    margin-bottom: 25px;
  }
  .productView .titleView div:nth-child(4) {
    color: #8F8F8F;
    margin-bottom: 25px;
    width: 72px;
    height: 2px;
    background: #2A5A93;
  }
  .productView .titleView div:nth-child(5) {
    font-family: 'al75';
    line-height: 30px;
    font-size: 24px;
  }
  .productView .moduls {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
  }
  .productView .moduls .item .img {
    width: 543px;
    height: 250px;
    overflow: hidden;
    margin-bottom: 20px;
  }
  .productView .moduls .item img {
    width: 100%;
    height: 100%;
    object-fit: cover; 
    filter: brightness(80%);
    transform: scale(1);
    transition: all .4s;
  }
  .productView .moduls .item:hover img{
    transform: scale(1.2);
    z-index: 99;
  }
  .productView .moduls .item .img {
    position: relative;
  }
  .productView .moduls .item .content {
    position: absolute;
    transform: translate(-50%,-50%);
    top: 50%;
    left: 50%;
  }
  .productView .moduls .item .content >div{
    text-align: center;
    font-family: 'al75';
    font-size: 22px;
    color: #fff;
  }
  .productView .moduls .item .content >div:first-child{
    font-size: 22px;
    font-weight: bold;
    font-family: 'al95';
    color: #fff;
  }
  
}


