.info-list {
    margin: 0 -15px;
    
}

.info-list .item {
    width: calc((100% / 3) - 0.1px);
    padding: 0 15px;
    
}

.info-list .item:nth-child(3n+1) {
    clear: left;
}

.info-list .box {
    max-width: 330px;
    margin: 0 auto 50px;
    
}

.info-list .pic {
    position: relative;
    overflow: hidden;
    margin-bottom: 14px;
}

.info-list .pic:before {
    content: "";
    position: absolute;
    display: block;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.75);
    opacity: 0;
    transition: all .2s;
}

.info-list a:hover .pic:before {
    opacity: 1;
    transition: all .2s;
}

.info-list .txt {
    position: relative;
    min-height: 91px;
}

.info-list .name {
    color: #C6A36F;
    font-size: 18px;
    line-height: 1.65;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    height: 53px;
    margin-bottom: 15px;
}

.info-list .box:hover .name {
    color: #9F71BB;
}

.info-list .description {
    line-height: 1.63;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    max-height: 45px;
}


/*------------ detail ------------*/

.info-title {
    line-height: 1.1;
    font-size: 20px;
    font-weight: bold;
    color: #484641;
    border-radius: 5px;
    padding: 13px 25px;
    border: 1px solid #9F71BB;
    margin-bottom: 30px;
    position: relative;
    overflow: hidden;
}

.info-title:before {
    content: "";
    background: url('bg09.png');
    height: 22px;
    width: 72px;
    border-radius: 22px;
    display: inline-block;
    position: absolute;
    top: 14px;
    left: -58px;
}


/*------------ rwd ------------*/

@media screen and (max-width: 1280px) {
    .info-list .item {
        width: 50%;
    }
    .info-list .item:nth-child(3n+1) {
        clear: none;
    }
    .info-list .item:nth-child(2n+1) {
        clear: left;
    }
}

@media screen and (max-width: 767px) {}

@media screen and (max-width: 600px) {
    .info-list .item {
        width: 100%;
    }
    .info-list .item:nth-child(n) {
        clear: none;
    }
}