@charset "utf-8";

/*------------------------------------------------------------
------------------------------------------------------------*/
.main {
    margin-bottom: 50px;
}
.main h1 {
    font-size: 28px;
    font-family: SFProDisplayBold;
    color: #000;
    font-weight: bold;
    text-align: center;
    margin-bottom: 26px;
}
.main .wrap>.text {
    margin-bottom: 46px;
    font-family: SfprodisplayRegular;
  font-size: 16px;
}
.productList {
    margin-bottom: 30px;
    display: flex;
    justify-content: start;
    flex-wrap: wrap;
}

.productList li {
    width: 230px;
    background-color: #fff;
    border-radius: 4px;
    padding: 0 0 9px;
    margin-right: 9px;
    margin-bottom: 9px;
    box-sizing: border-box;
    -webkit-transition: all .2s ease;
    -moz-transition: all .2s ease;
    -o-transition: all .2s ease;
    transition: all .2s ease;
    position: relative;
    cursor: pointer;
    overflow: hidden;
}
.productList li:hover {
    box-shadow: 0 0 15px rgba(0,0,0,0.18);
}
.productList li a {
    display: block;
}
.productList li .img {
    display: flex;
    align-items: center;
    height: 250px;
}
.productList li img {
    max-width: 100%;
    transition: all 0.4s;
}
.productList li .txt {
font-size: 16px;
  font-weight: normal;
  text-align: center;
  line-height: 26px;
  margin: 10px 10px;
  text-overflow: -o-ellipsis-lastline;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  transition: all 0.3s;
}
.productList li a:hover .img img {
    transform: scale(1.1);
}
.productList li a .txt:hover {
    color: #39b54a;
}
@media all and (min-width: 768px) and (max-width: 1024px) {
    .main h1 {
        margin-bottom: 20px;
        font-size: 20px;
    }
    .main .wrap {
        margin: 0 10px;
    }
    .main .wrap > .text {
        margin-bottom: 30px;
        font-size: 14px;
    }
    .productList li {
        width: 49%;
        margin: 0 2% 9px 0;
    }
    .productList li:nth-child(2n) {
        margin-right: 0;
    }
    .productList li .img {
        height: 190px;
        text-align: center;
    }
    .productList li .txt {
        font-size: 14px;
        line-height: 20px;
    }
    .productList li img {
        display: block;
        margin: 0 auto;
        height: 100%;
    }

}
@media all and (min-width: 0) and (max-width: 767px) {
    .main h1 {
        margin-bottom: 20px;
        font-size: 20px;
    }
    .main .wrap {
        margin: 0 10px;
    }
    .main .wrap > .text {
        margin-bottom: 30px;
        font-size: 14px;
    }
    .productList li {
        width: 49%;
        margin: 0 2% 9px 0;
    }
    .productList li:nth-child(2n) {
        margin-right: 0;
    }
    .productList li .img {
        height: 190px;
    }
    .productList li .txt {
        font-size: 14px;
        line-height: 20px;
    }

}



















