.pop-box {
	position:fixed;
	top:0px;
	left:0px;
	bottom:0px;
	right:0px;
	z-index:10000001;
	background: rgba(0, 0, 0, 0.4);
	display:flex;
	align-items:flex-end;
	overflow:hidden;
}
.pop-box .inner {
	width:100%;
	background:#fff;
	border-top-left-radius:12px;
	border-top-right-radius:12px;
	overflow:hidden;
}
.pop-box .inner .pop-swiper {
	width: 100%;
}
.pop-box .inner .pop-swiper-box .popup-img {
	display:block;
	font-size: 0px;
}
.pop-box .inner .pop-swiper-box .popup-img img {
	width:100%;
	height:auto;
}
.pop-box .inner .close-wrap {
	display:flex;
	height:36px;
}
.pop-box .inner .close-wrap > * {
	flex:1;
	height:36px;
	text-align: center;
	color:#000;
	font-size:13px;
	font-weight: bold;
	line-height: 36px;
}
.pop-box .inner .close-wrap > *:first-child {
	border-right:1px solid #e9e9e9;
}
.pop-box .inner .close-wrap .popup-today-close input {
	display: none;
}
.pop-box .inner .close-wrap .popup-today-close label {
	width: 100%;
	cursor: pointer;
}
.pop-box .inner .close-wrap a {
	cursor: pointer;
}
.pop-box .inner .swiper-fraction {
	display: flex;
	position: absolute;
	bottom: 10px;
	left: 50%;
	z-index: 10;
	justify-content: center;
	align-items: center;
	gap: 0px 8px;
	width: auto;
	height: 36px;
	padding: 0px 16px;
	background: rgba(0, 0, 0, 0.5);
	border-radius: 18px;
	color: #fff;
	transform: translateX(-50%);
}

@media screen and (min-width:768px) {
	.pop-box {
		position:absolute;
		top:150px;
		left:300px;
		bottom: auto;
		right: auto;
		background: none;
	}
	.pop-box .inner {
		background: #000;
		border-radius: 0px;
	}
	.pop-box .inner .pop-swiper-box .popup-img img {
		width: auto;
	}
	.pop-box .inner .close-wrap {
		justify-content: space-between;
		padding: 0px 8px;
	}
	.pop-box .inner .close-wrap > * {
		flex: none;
		color: #fff;
	}
	.pop-box .inner .close-wrap > *:first-child {
		border: none;
	}
	.pop-box .inner .close-wrap label,
	.pop-box .inner .close-wrap a {
		width: auto !important;
		padding: 0px 8px;
	}

	.pop-box .inner .swiper-fraction {
		display: flex;
	}
}