@charset "UTF-8";
.fixPopV2 {
	position: fixed;
	bottom: 150px;
	right: 20px;
	z-index: 100;
	opacity: 0;
	visibility: hidden;
	pointer-events: none;
	transition-property: opacity, visibility;
	transition-duration: .5s;
}
.fixPopV2_btn {
	display: block;
	width: 30px;
	height: 30px;
	background-color: #DF5F24;
	border-radius: 50%;
	color: #fff;
	margin-left: auto;
	position: relative;
	z-index: 1;
	margin-bottom: -10px;
	left: 10px;
	border: 1px solid #DF5F24;
	transition-duration: .3s;
	transition-property: background-color, color;
}
.fixPopV2_btn::before {
	content: "";
	display: block;
	position: absolute;
	left: 50%;
	top: 50%;
	width: 15px;
	height: 1px;
	background-color: currentColor;
	transform: translate(-50%, -50%) rotate(45deg);
}
.fixPopV2_btn::after {
	content: "";
	display: block;
	position: absolute;
	left: 50%;
	top: 50%;
	width: 15px;
	height: 1px;
	background-color: currentColor;
	transform: translate(-50%, -50%) rotate(-45deg);
}
.fixPopV2_box {
	position: relative;
	z-index: 0;
}
.fixPopV2_box > a {
	text-decoration: none;
	color: inherit;
}
.fixPopV2_item {
	width: 340px;
	box-sizing: border-box;
	background-color: #fff;
	border-radius: 8px;
	padding: 10px 10px 10px;
	box-shadow: 0 0 12px rgba(0, 0, 0, 0.15);
}
.fixPopV2_image {
	border-radius: 4px;
	overflow: hidden;
	margin-bottom: 10px;
	transition-duration: .3s;
	transition-property: opacity;
}
.fixPopV2_image > img {
	display: block;
	max-width: 100%;
	height: auto;
}
.fixPopV2_text {
	font-size: 13px;
	text-align: center;
	line-height: 1.4;
}
.fixPopV2_link {
	text-align: center;
	line-height: 1.4;
	font-weight: bold;
	font-size: 13px;
	margin-top: 2px;
}
.fixPopV2.isShow {
	opacity: 1;
	visibility: visible;
	pointer-events: auto;
}
@media screen and (min-width:1000px) {
	a:hover .fixPopV2_image {
		opacity: .7;
	}
	.fixPopV2_btn:hover {
		background-color: #fff;
		color: #DF5F24;
	}
}
@media screen and (max-width: 767px) {
	.fixPopV2 {
		bottom: 95px;
		right: 17px;
	}
	.fixPopV2_btn {}
	.fixPopV2_btn::before {}
	.fixPopV2_btn::after {}
	.fixPopV2_box {}
	.fixPopV2_box > a {}
	.fixPopV2_item {
		width: 280px;
	}
	.fixPopV2_image {}
	.fixPopV2_image > img {}
	.fixPopV2_text {
		font-size: 11px;
	}
	.fixPopV2_link {
		font-size: 12px;
	}
}
