.image {
	width: 100%;
}

.padding {
	padding: 8px;
}

.solids-bottom {
	border-bottom: 1px solid #ccc;
}

.weui-cell_title {
	color: #fa3534;
	font-size: 12px;
}

.weui-cell_price {
	color: #fa3534;
	font-size: 18px;
}

.flex {
	display: flex;
}

.align-center {
	align-items: center;
}

.popup {
	position: fixed;
	left: 50%;
	top: 50%;
	-webkit-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
	background: #333;
	width: 80%;
	color: #fff;
	box-sizing: border-box;
	padding: 15px 30px 15px 15px;
	border-radius: 12px;
	font-size: 14px;
}

.detail-item-line {
   width: 100%;
   word-break: keep-all; /* 不换行 */
   white-space: nowrap; /* 不换行 */
   overflow: hidden; /* 内容超出宽度时隐藏超出部分的内容 */
   text-overflow: ellipsis;

