
.wallpaper-top-author {
	position: relative;
	width: 100%;
	padding: 10px 20px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin-bottom: 15px;
	background: #ffffff;
	border-radius: var(--b2radius);
}

.wallpaper-top-author .close-button {
	font-size: 30px;
}

.wallpaper-author-top {
	display: flex;
	align-items: center;
	gap: 10px;
}

.wallpaper-author-top .author-link {
	position: relative;
}

.wallpaper-top-author .author-has-follow {
	background: #999;
	border: 1px solid #999;
}

.wallpaper-top-author img.avatar {
	background-color: #eee;
	width: 40px;
	height: 40px;
	border-radius: 50%;
	margin-right: 5px;
}

.author-info {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
}

.author-name {
	font-weight: 700;
	margin-bottom: 5px;
}

.wallpaper-date {
	font-size: 12px;
	color: #777;
	line-height: 1.4;
}

.wallpaper-date .b2font {
	font-size: 11px;
}

.wallpaper-single-inner {
	min-height: 300px;
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
}

.wallpaper-left-content {
	height: 100%;
	width: 70%;
	padding: 15px;
	background-color: #ffffff;
	border-radius: var(--b2radius);
}

.wallpaper-description {
	width: 100%;
	height: 100%;
	text-align: center;
}

.wallpaper-description .ahap-img {
	user-select: none;
	-webkit-user-drag: none;
	-moz-user-drag: none;
}

.wallpaper-right-info {
	width: calc(40% - 125px);
	height: 100%;
	display: flex;
	flex-direction: column;
	background-color: #ffffff;
    padding: 15px;
    border-radius: var(--b2radius);
}

.wallpaper-right-info>div {
	margin-bottom: 10px;
}

.wallpaper-title span {
	color: #000000;
	display: block;
	font-size: .8rem;
	height: 1rem;
	line-height: 1rem;
	position: sticky;
    margin-bottom: 10px;
}

.wallpaper-title span:before {
	background-color: var(--b2color);
	border-radius: 2px;
	content: "";
	display: block;
	height: 13px;
	left: 0;
	position: absolute;
	width: 2px;
	margin-left: -8px;
}

.wallpaper-title h1 {
	font-weight: bold;
	margin-bottom: 10px;
	font-size: 20px;
}

.wallpaper-excerpt {
	color: #aaaeb3;
	font-size: 13px;
	margin-top: 5px;
}

.wallpaper-image-dimensions p {
	font-size: 15px;
	color: #999;
	font-weight: bold;
}


.wallpaper-image-dimensions span {
	color: #000;
	font-size: 13px;
}

.wallpaper-right-info .button {
	width: 100%;
	text-align: center;
	display: flex;
	align-items: center;
	justify-content: center;
}

.wallpaper-right-info .button:hover {
	opacity: unset;
}

.single_empty {
	height: 200px;
}

.wallpaper-image-container {
	height: 500px;
	text-align: center;
}

.wallpaper_cat:hover {
	color: var(--b2color);
}

.wallpaper-image-dimensions span a:hover {
	color: var(--b2color);
}

.swiper {
	height: 100%;
	overflow: hidden
}

.swiper-slide {
	text-align: center;
}

.swiper-slide img {
	height: 100%;
	max-height: 800px;
}

.swiper_tab {
	width: 100%;
	overflow: hidden;
	margin-bottom: 15px;
}

.swiper_tab .swiper-slide {
	width: 200px;
	height: 20px;
	font-size: 12px;
	text-align: center;
	background: var(--b2color);
	border-radius: var(--b2radius);
	color: #ffffff;
	display: flex;
	align-items: center;
	justify-content: center;
}

.swiper_tab .swiper-wrapper {
	display: flex;
	width: 100%;
}

.swiperSlide .swiper-slide,
.swiper_tab .swiper-slide {
	cursor: pointer;
}

.swiper-slide.swiper-slide-thumb-active {
	background: #FF9800;
}

.wallpaper-related {
	margin-top: 10px;
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 5px;
}

.wallpaper-related .related-item {
    overflow: hidden;
	cursor: pointer;
	border-radius: var(--b2radius);
}

.wallpaper-related img {
	width: 100%;
	height: 60px;
	border-radius: var(--b2radius);
	transition: transform 0.3s ease, opacity 0.3s ease;
}
.wallpaper-related .related-item:hover img{
    transform: scale(1.1);
}

.wallpaper-right-info .single_button{
    margin-bottom: 10px;
}

@media screen and (max-width: 768px) {
	.ahap_wallpaper .wallpaper-grid {
		grid-template-columns: repeat(3, 1fr);
	}

	.wallpaper-single-inner {
		height: 100%;
		flex-direction: column;
	}

	.wallpaper-left-content {
		width: 100%;
		margin: 0 auto;
		padding-right: 0;
		border-right: unset;
	}

	.wallpaper-right-info {
		width: 100%;
		margin-top: 20px;
	}

	.wallpaper-description .ahap-img {
		height: 400px;
	}

	.following_dmsg {
		display: none;
	}

	.wallpaper-date {
		font-size: 14px;
	}
}