/*大礼包组件start*/
.custom-giftbag {
    width: 100%;
    background: #fff;
    box-sizing: border-box;
    padding: 0 15px;
}
.custom-giftbag-item{
    padding: 15px 0 10px 0;
	width:100%;
	display:block;
}
.custom-giftbag-item .giftbag-img {
    width: 100%;
    position:relative;
    overflow: hidden;
    border-radius: 4px;
}
.custom-giftbag-item .giftbag-img:after{
    position:relative;
	content:'';
	display:block;
	padding-bottom:100%;
}
.custom-giftbag-item .giftbag-img img {
    width: 100%;
    height: auto;
	position:absolute;
	left: 50%;
	top: 50%;
	transform: translate(-50%, -50%);
}
.custom-giftbag-item.two-line {
    width: calc(50% - 7.5px);
    display: inline-block;
    vertical-align: top;
}
.custom-giftbag-item.two-line:nth-child(2n){
	margin-left:15px;
}
.custom-giftbag-item.one-line.one-height .giftbag-img:after{
	position:relative;
	content:'';
	display:block;
	padding-bottom:100%;
}
.custom-giftbag-item.one-line.two-height .giftbag-img:after{
	position:relative;
	content:'';
	display:block;
	padding-bottom:66.66%;
}
.custom-giftbag-item.one-line.three-height .giftbag-img:after{
	position:relative;
	content:'';
	display:block;
	padding-bottom:51%;
}
.custom-giftbag .giftbag-title{
	font-size: 13px;
    color: #333;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    word-wrap: break-word;
    word-break: break-all;
    line-height: 1.5;
    margin: 8px 0;
	height:36px;
	
}
.custom-giftbag .price{
	margin-top:2px;
	font-size:12px;
	color:#f24f4c;
	line-height: 1;
}
.custom-giftbag .price big{
	font-size:15px;
}
.custom-giftbag .giftbag-privilege{
    display: -webkit-box; 
    display: -moz-box; 
    display: -ms-flexbox;
    display: -webkit-flex; 
    display: flex;
    -webkit-box-align: stretch;
    -moz-align-items: stretch;
    -webkit-align-items: stretch;
    align-items: stretch;
    height: 16px;
    margin-bottom: 8px;
}
.custom-giftbag .giftbag-privilege>div{
    line-height: 16px;
}
.custom-giftbag .giftbag-privilege .left{
    background-color: #2B2821;
    padding: 0 4px;
    font-size: 11px;
    color: #F1DFC9;
    border-top-left-radius: 3px;
    border-bottom-left-radius: 3px;
}
.custom-giftbag .giftbag-privilege .right{
    padding: 0 4px;
    background-color: #F3D0B4; /* 不支持线性的时候显示 */
    background-image: linear-gradient(to right, #FCDCC1 , #F3D0B4);
    border-top-right-radius: 3px;
    border-bottom-right-radius: 3px;
    color: #160F06;
    font-size: 10px;
}
.custom-giftbag .giftbag-privilege .right big{
    font-size: 13px;
}

/*大礼包组件end*/
.giftbag-load-more{
    width: 100%;
    height: 50px;
    line-height: 50px;
    text-align: center;
    color: #999;
    font-size: 14px;
}