/* 容器 */
.noname-gallery-container {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: 1000;
	overflow: hidden;
	user-select: none;
	touch-action: none;
}

/* 背景 */
.noname-gallery-bg {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: -1;
	background: #000;
}

/* 计数器 */
.noname-gallery-counter {
	position: absolute;
	top: 15px;
	left: 15px;
	z-index: 1;
	font-size: 14px;
	color: #F9F9F9;
	pointer-events: none;
}

.noname-gallery-wrap {
	display: flex;
	margin: 0;
	padding: 0;
	list-style: none;
}

.noname-gallery-wrap li {
	width: 100%;
	height: 100vh;
	overflow: hidden;
}

.noname-gallery-img {
	display: block;
	transform-origin: left top;
	object-fit: cover;
	/* 使用-webkit-user-drag: none;会导致华为浏览器长按不显示拖动缩略图 */
}