@charset "utf-8";
/* CSS Document */

.products{
    width: 100%;
    display: flex;
    flex-flow: row wrap;
}
.product{
    box-sizing: border-box;
    width: 277px;
    margin-bottom:20px;
}
.prod{
    width: 277px;
    height: 286px;
    background: #fff;
    border: 1px solid #E4E9EE;
}
.prod a img{
    width: 275px;
    height: 180px;
}
.product a:hover{
    text-decoration: none;
}
.prod-title{
    font-weight: bold;
    color: #525252;
    letter-spacing: 0.59px;
    margin: 10px 0 5px 10px;
    text-overflow: ellipsis;
    overflow: hidden;
    white-space: nowrap;
}
.prod-desc {
    font-size: 12px;
    color: #BCBCBC;
    letter-spacing: 0.51px;
    margin-left:10px;
    height: 17px;
    text-overflow: ellipsis;
    overflow: hidden;
    white-space: nowrap;
}
.price{
    margin: 10px 0 0 10px;
    font-size: 16px;
    color: #FF5353;
    letter-spacing: 0.96px;
    display: inline-block;
}
.add-cart{
    float: right;
    margin-top: 10px;
    width: 93px;
    height: 26px;
    line-height: 26px;
    padding-left: 20px;
    font-size: 12px;
    color: #8D633F;
    letter-spacing: 0.72px;
    background: #EFD3B7;
    border-radius: 15.5px 0 0 15.5px;
    cursor:pointer;
}
.jumpbox {
    width: 280px !important;
    height: 85px;
    background: #FFFFFF;
    border-radius: 6px;
    z-index: 1001;
    opacity: 0.9;
    /*其他，透明度50%*/
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translateX(-50%) translateY(-50%);
    display: none;
}

.tehui{
    position: absolute;
    width: 100px !important;
    height: auto !important;
    left: 188px;
    top: -101px;
}








