 
.chouqian_box {
    width: 100%;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    /* margin-top: -14px; */
    padding-top: 34px;
}
.chouqian_box li {
    display: inline-block;
    /* border: 1px solid #BC8760; */
    width: 138px;
    height: 138px;
    margin-top: 0px;
    position: relative;
    overflow: hidden;
    text-align: center;
    padding-top: 5px;
}
.chouqian_box li img {
    width: 90px;
    height: auto;
    transform: translate(0,0);
    transition: all .4s;
}
.chouqian_box li span {
    display: block;
    width: 100%;
    height: 32px;
    line-height: 32px;
    color: #333;
    font-size: 14px;
    text-align: center;
    position: absolute;
    left: 0;
    bottom: 6px;
    white-space: nowrap;
    overflow: hidden;
    /* background: rgba(188,135,96,0.9); */
    z-index: 1000;
}
.chouqian_box li:hover img
{
    transform: scale(1.08, 1.08);
    transition: all .4s;
}
.chouqian_box li:hover span
{
    color:red
}
  


