.taxonomy-head{
    display: table;
    width: 100%;
    height: 300px;
    border-radius:var(--b2radius);
    text-align: center;
    position: relative;
    background-image: linear-gradient(9deg, var(--b2lightcolor), var(--b2color));
    border-radius: 8px;
    box-shadow: rgb(173 152 60 / 16%) 0px 15px 37px;
}

.taxonomy-head .title-text{
    display: table-cell;
    vertical-align: middle;
    text-align: center;
    font-size: 2.5rem;
    letter-spacing: 2px;
    font-weight: bold;
    color: #ffffff;
    text-shadow: 4px 4px 8px rgba(0, 0, 0, 0.6);
}

.taxonomy-head .title-text span {
  display: inline-block;
  opacity: 0;
  transform: translateY(20px);
  animation: jump 1s ease-in-out forwards;
}

.taxonomy-head .title-text span:nth-child(1) {
  animation-delay: 0.1s;
}
.taxonomy-head .title-text span:nth-child(2) {
  animation-delay: 0.2s;
}
.taxonomy-head .title-text span:nth-child(3) {
  animation-delay: 0.3s;
}
.taxonomy-head .title-text span:nth-child(4) {
  animation-delay: 0.4s;
}
.taxonomy-head .title-text span:nth-child(5) {
  animation-delay: 0.5s;
}
.taxonomy-head .title-text span:nth-child(6) {
  animation-delay: 0.6s;
}
.taxonomy-head .title-text span:nth-child(7) {
  animation-delay: 0.7s;
}
.taxonomy-head .title-text span:nth-child(8) {
  animation-delay: 0.8s;
}
.taxonomy-head .title-text span:nth-child(9) {
  animation-delay: 0.9s;
}
.taxonomy-head .title-text span:nth-child(10) {
  animation-delay: 1s;
}
.taxonomy-head .title-text span:nth-child(11) {
  animation-delay: 1.1s;
}
.taxonomy-head .title-text span:nth-child(12) {
  animation-delay: 1.2s;
}
.taxonomy-head .title-text span:nth-child(13) {
  animation-delay: 1.3s;
}
.taxonomy-head .title-text span:nth-child(14) {
  animation-delay: 1.4s;
}
.taxonomy-head .title-text span:nth-child(15) {
  animation-delay: 1.5s;
}

@keyframes jump {
  0% {
    opacity: 0;
    transform: translateY(20px);
  }
  50% {
    opacity: 1;
    transform: translateY(-10px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

.taxonomy-body .empty-page{
    background-color: #ffffff;
    border-radius: var(--b2radius);
}













.wallpaper-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 5px;
}

.wallpaper-grid .grid-item {
    position: relative;
    cursor: pointer;
    overflow: hidden;
    border-radius: var(--b2radius);
    height: 480px;
    max-height: 480px;
}

.wallpaper-grid .grid-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: var(--b2radius);
    transition: transform 0.3s ease, opacity 0.3s ease;
    user-select: none;
    pointer-events: none;
}


.wallpaper-grid .grid-item h2 {
    font-size: 1.0em;
    font-weight: bold;
    color: white;
    margin: 0;
    opacity: 0;
    transform: translateY(30px);
    transition: transform 0.5s ease, opacity 0.5s ease;
    position: absolute;
    bottom: 0;
    width: 100%;
    padding: 10px;
    text-align: center;
    background-image: linear-gradient(190deg, rgba(0, 0, 0, 0.4), rgba(12, 13, 49, 0.66));
    letter-spacing: 1px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
}

.wallpaper-grid .grid-item .wrapper-meta {
    position: absolute;
    top: 5px;
    left: 5px;
    opacity: 0;
    transform: translateY(-30px);
    transition: transform 0.5s ease, opacity 0.5s ease;
}

.wallpaper-grid .grid-item .wrapper-meta .pixel {
    width: 100%;
    padding: 4px;
    text-align: center;
    background-image: linear-gradient(190deg, rgba(0, 0, 0, 0.4), rgba(12, 13, 49, 0.66));
    font-weight: bold;
    color: white;
    border-radius: var(--b2radius);
}

.wallpaper-grid .grid-item:hover img {
    transform: scale(1.1);
}

.wallpaper-grid .grid-item:hover h2,
.wallpaper-grid .grid-item:hover .wrapper-meta {
    opacity: 1;
    transform: translateY(0);
}


.view-single-mask {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    opacity: 0;
    z-index: 99;
}

.view-single {
    position: fixed;
    width: 100%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    opacity: 0;
    z-index: 100;
}

.fade-in {
    opacity: 1;
    animation: fadeIn 0.5s ease forwards;
}

@keyframes fadeIn {
	from {
		opacity: 0;
	}

	to {
		opacity: 1;
	}
}

@keyframes fadeOut {
	from {
		opacity: 1;
	}

	to {
		opacity: 0;
	}
}



.wallpaper-single-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 15px;
    background-color: #fff;
    border-radius: var(--b2radius);
}
.wallpaper-top-author {
    position: relative;
    width: 100%;
    padding: 10px 20px;
    border-bottom: 1px solid rgba(0, 0, 0, .08);
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px;
}

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

.wallpaper-author-top a {
    position: relative;
    display: flex
;
    align-items: center;
}
.wallpaper-top-author img.avatar {
    background-color: #eee;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    margin-right: 10px;
}
.author-info {
    display: flex
;
    flex-direction: column;
    align-items: flex-start;
}






.wallpaper-single-inner {
    height: 500px;
    display: flex
;
    flex-wrap: wrap;
    justify-content: space-between;
}
.wallpaper-left-content {
    height: 100%;
    width: 70%;
}
.wallpaper-description {
    width: 100%;
    height: 100%;
    text-align: center;
}
.author-description {
    font-size: .5em;
    color: #777;
    line-height: 1.4;
}
.author-description.author-verify {
    color: #ff7d37;
}
.wallpaper-description .ahap-img {
    width: 100%;
    height: 100%;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    border-radius: var(--b2radius);
    user-select: none;
    -webkit-user-drag: none;
    -moz-user-drag: none;
}
.wallpaper-right-info {
    width: 25%;
    display: flex
;
    flex-direction: column;
}

.wallpaper-right-info>div {
    margin-bottom: 10px;
}
.wallpaper-title span {
    color: #000000;
    display: block;
    font-size: .8rem;
    height: 1rem;
    line-height: 1rem;
    position: sticky;
}.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-top: 10px;
}
.wallpaper-excerpt {
    color: #aaaeb3;
    font-size: 13px;
    margin-top: 5px;
}

.wallpaper-right-info>div {
    margin-bottom: 10px;
}
.wallpaper-image-dimensions p {
    font-size: 15px;
    color: #999;
    font-weight: bold;
}
.wallpaper-image-dimensions span {
    color: #000;
    font-size: 13px;
    margin-right: 5px;
}
.wallpaper-image-dimensions span a:hover {
    color: var(--b2color);
}
.single_button {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.wallpaper-right-info .button.xiangq {
    background: #ffffff;
    border: 1px solid #999;
    color: #999;
}
.wallpaper-right-info .button {
    width: 135px;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
}
.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 .button:hover {
	opacity: unset;
}

@media screen and (max-width: 768px) {
    
    .taxonomy-head{
        height: 150px;
    }
    .taxonomy-head .title-text{
        font-size: 25px;
    }
    
	.wallpaper-grid {
		grid-template-columns: repeat(3, 1fr);
	}
	.wallpaper-grid .grid-item{
        height: 240px;
        max-height:240px;
	}
	
	.wallpaper-single-inner {
		height: 100%;
		flex-direction: column;
	}
	.wallpaper-left-content {
		margin: 0 auto;
	}
	.wallpaper-right-info {
		width: 100%;
		margin-top: 20px;
	}

	.wallpaper-right-info .button {
		width: 190px;
	}

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








