/* 公共样式开始 */
html::-webkit-scrollbar,body::-webkit-scrollbar,.scrollBar::-webkit-scrollbar {
    /*滚动条整体样式*/
    width: 6px;
    /*高宽分别对应横竖滚动条的尺寸*/
    height: 6px;
}
html::-webkit-scrollbar-thumb,body::-webkit-scrollbar-thumb,.scrollBar::-webkit-scrollbar-thumb {
    /*滚动条里面小方块*/
    border-radius: 6px;
    -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.2);
    background: #ddd;
}
a,span,p,h1,h2,h3,h4,h5{
    margin: 0;
    padding: 0;
    color: #1F2836FF;
}
a:link,a:visited,a:active,a:hover{
    text-decoration: none;
}
ul,li{
    list-style-type: none;
    padding: 0;
}
/* 公共样式结束 */
/*文字省略样式开始*/
.ellipsisOne{overflow: hidden;text-overflow: ellipsis;white-space: nowrap;}
.ellipsisTwo{overflow: hidden;text-overflow: ellipsis;-webkit-line-clamp: 2;display: -webkit-box;-webkit-box-orient: vertical;}
.ellipsisThree{overflow: hidden;text-overflow: ellipsis;-webkit-line-clamp: 3;display: -webkit-box;-webkit-box-orient: vertical;}
.ellipsisFour{overflow: hidden;text-overflow: ellipsis;-webkit-line-clamp: 4;display: -webkit-box;-webkit-box-orient: vertical;}
/*文字省略样式结束*/

.productBox{
    width: 100%;height:450px;border:1px solid #0D6EFD;border-radius:10px;overflow:hidden;padding: 15px;
}
.product{
    height:100%;width:100%;overflow:hidden;position:relative;
}
.imgBox{
    width: 100%;height:274px;
}
#title{
    margin-top: 6px;
    height: 60px;
    line-height: 30px;
}
#title p{
    font-size: 14px;
}
#money p{
    height: 35px;
    line-height: 35px;
    font-weight: bold;
}
#button{
    position: absolute;
    right: 0;
    bottom: 0;
    text-align: right;
}
#button button{
    width: 100%;
}
#detailUl{
    margin-top: 15px;
}
#detailUl li{
    margin-bottom: 15px;
}
#detailUl li p{
    font-size: 16px;
    /* text-align: justify; */
}
#buy{
    float: right;
}
#buy:hover{
    background-color: #0D6EFD;
    color: #fff;
}