#conts .modalWrap {
	width: 100%;
	height: 100%;
	background: rgba(255, 255, 255, 0.7);
	display: flex;
	position: fixed;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	z-index: 100;
	align-items: center;
	justify-content: center;
}

#conts .modalItem {
	box-sizing: border-box;
	padding: 40px 0;
	width: 720px;
	background: url(/img/library/library_bg.png) repeat;
	border: 5px solid rgb(0, 172, 186);
	display: inline-block;
	position: relative;
	text-align: center;
}

#conts .modalBtn {
	width: 20px;
	height: 20px;
	background: #c9c9c9;
	border-radius: 50%;
	display: inline-block;
	position: absolute;
	top: 10px;
	right: 10px;
	cursor: pointer;
}

#conts .modalBtn span::before,
#conts .modalBtn span::after {
	margin: -1px 0 0 -6px;
	width: 12px;
	height: 2px;
	background: #fff;
	display: block;
	position: absolute;
	top: 50%;
	left: 50%;
	content: "";
}

#conts .modalBtn span::before {
	transform: rotate(-45deg);
}

#conts .modalBtn span::after {
	transform: rotate(45deg);
}

#conts .modalTxt {
	text-align: center;
}

#conts .modalLink {
	box-sizing: border-box;
	margin-top: 30px;
	padding: 10px 30px;
	background: rgb(252, 37, 69);
	border-radius: 4px;
	display: inline-block;
	color: #fff;
	font-size: 1.7rem;
	font-weight: bold;
	text-decoration: none;
	transition: 0.3s;
}

#conts .modalLink:hover {
	opacity: 0.7;
}

@media screen and (max-width:767px) {
	#conts .modalItem {
		padding: 23px 20px;
		width: calc(100% - 30px);
		border: 3px solid rgb(0, 172, 186);
	}

	#conts .modalTxt img {
		width: 100%;
	}

	#conts .modalBtn {
		width: 20px;
		height: 20px;
		top: 5px;
		right: 5px;
	}

	#conts .modalBtn span::before,
	#conts .modalBtn span::after {
		margin: -1px 0 0 -6px;
		width: 12px;
	}

	#conts .modalLink {
		margin-top: 20px;
		padding: 12px 0;
		width: 100%;
		border-radius: 2px;
		font-size: 1.3rem;
	}
}