.opensearch-form {
	display: flex;
	gap: 1rem;
}

.opensearch-form .opensearch-submit {
	flex-basis: 20%;
}

.opensearch-result {
	display: flex;
	gap: 1rem;
	flex-wrap: wrap;
	justify-content: space-between;
	margin: 2rem 0;
}

.opensearch-item {
	flex-basis: 20%;
	min-width: 250px;
	border-radius: var(--br);
	height: 160px;
	border: 1px solid #D0D1FC;
	padding: 1rem;
	cursor: pointer;
}

.opensearch-item .number {
	color: var(--accent-color);
	font-weight: 600;
	font-size: 20px;
	max-width: 100%;
	display: block;
	height: 20px;
	text-overflow: ellipsis;
	overflow: hidden;
	white-space: nowrap;
}

.opensearch-item .name {
	font-size: 18px;
	font-weight: 600;
	overflow: hidden;
	text-overflow: ellipsis;
	display: -webkit-box;
	-webkit-line-clamp: 3;
	-webkit-box-orient: vertical;
	line-height: 30px;
	margin-top: 1rem;
	word-break: break-word;
}

.opensearch-popup,
.opensearch-popup-back {
	display: none;
}

.opensearch-popup-back.active {
	display: block;
	z-index: 10000;
	position: fixed;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	background-color: #000;
	opacity: 0.5;
}

.opensearch-popup.active {
	display: block;
	z-index: 11000;
	position: fixed;
	left: 50%;
	top: 50%;
	transform: translate(-50%, -50%);
	background-color: #fff;
	padding: 2rem;
	border-radius: var(--br);
	min-width: 400px;
	max-width: 100%;
}

.opensearch-popup .close {
	position: absolute;
	right: 13px;
	top: 13px;
	cursor: pointer;
	font-size: 20px;
}

.opensearch-popup-inner .number {
	color: var(--accent-color);
	font-weight: 600;
	font-size: 20px;
	margin-bottom: 10px;
}

.opensearch-popup-inner .title {
	color: #8F8F8F;
	line-height: 20px;
	margin-bottom: 5px;
	margin-top: 10px;
}
	
.opensearch-popup-inner .name,
.opensearch-popup-inner .value {
	font-size: 18px;
	line-height: 28px;
}

.opensearch-more {
	display: none;
}

.opensearch-container.has-more .opensearch-more {
	display: block;
	margin: 0 auto 2rem auto;
}