.saved-posts-get {
	background: #165699;
	border-radius: 5px 5px 0 0;
	cursor: pointer;
	position: fixed;
	bottom: 0;
	right: 20px;
	width: 200px;
}
.saved-posts-get .head {
	color: #fff;
	display: flex;
	align-items: center;
	gap: 6px;
	padding: 4px 12px;
	font-size: 15px;
}
.saved-posts {
	position: fixed;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	display: none;
	justify-content: center;
	align-items: center;
	background: #00000094;
	z-index: 999;
}
.saved-posts .box {
	width: 700px;
	background: #fff;
}
.saved-posts .box h4 {
	background: #00489f;
	color: #fff;
	font-size: 14px;
	padding: 8px 10px;
	margin: 0;
	position: relative;
}
.saved-posts .box h4 span img {
	width: 12px;
	position: absolute;
	right: 8px;
	top: 9px;
	cursor: pointer;
}
.saved-posts .box .content {
	min-height: 180px;
}
.saved-posts .item {
	border-bottom: 1px solid #ccc;
	display: flex;
	align-items: center;
	padding: 10px;
}
.saved-posts .item .remove {
	border-radius: 4px;
	border: 1px solid #ccc;
	color: #333;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	height: 24px;
	width: 24px;
}
.saved-posts .item .remove:hover {
	border-color: red;
	background-color: red;
	color: #fff;
}
.saved-posts .item .title {
	color: #00489f;
	font-weight: bold;
}
.saved-posts .item .detail {
	padding-left: 8px;
	width: calc(100% - 24px);
}
.saved-posts .item .meta {
	display: flex;
	justify-content: space-between;
}
.saved-posts .item .meta .price {
	color: red;
}
