.cartoonItem {
    /*padding-bottom: 34px;*/
    margin-bottom: 20px;
}

.cartoonItem-img:hover + .cartoonItem-name a {
    color: red;
}

.cartoonItem-img {
    width: 174px;
    height: 231px;
    position: relative;
    cursor: pointer;
    background-size: 100% 100%;
}

.cartoonItem-img a{
    height: 100% !important;
     display: block;
     position: relative;
     content: '';
}
.cartoonItem-img a::before{
      content: '';
      opacity: 0;
      position: absolute;
      top:0;
      left:0;
      right: 0;
      bottom:0;
       z-index: 1;
       background-image: radial-gradient(transparent 0%,rgba(0,0,0,0.1) 44%,rgba(0,0,0,0.56) 100%);

    }
  .cartoonItem-img a:hover::before{
    opacity: 1;
    backdrop-filter: contrast(1.2) saturate(1.2);
  }
.cartoonItem-img img{
    object-fit: cover;
}

.cartoonItem-background-img {
    width: 174px;
    height: 231px;
    position: absolute; /* 有圖片後隱藏 */
    top: 0;
}

.cartoonItem-background-img:hover {
    box-shadow: 0px 5px 5px 0px rgba(0,0,0,0.1);
}

.cartoonItem-name {
    width: 174px;
    height: 62px;
    font-size: 14px;
    font-weight: bold;
    padding: 10px 0px 10px 0px;
}

.cartoonItem-count {
    width: 160px;
    height: 34px;
    line-height: 34px;
    font-size: 12px;
    position: relative;
    color:#999999;
    z-index: -200;
    overflow: hidden;
}
