@charset "UTF-8";


@keyframes shake {
	0% {
		transform: translate(-50%, -50%);
	}

	25% {
		transform: translate(-50%, -45%);
	}

	50% {
		transform: translate(-50%, -50%);
	}

	75% {
		transform: translate(-50%, -55%);
	}

	100% {
		transform: translate(-50%, -50%);
	}
}

.has-submenu {
	display: flex;

}



.tip {
	position: fixed;
	bottom: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	background-color: var(--primary-color);
	color: white;
	padding: 10px 20px;
	border-radius: 5px;
	transition: opacity 0.5s, transform 0.5s;
	z-index: 9999;
}

.tip.shake {
	animation: shake 0.5s ease-in-out;
}

.tip.hide {
	opacity: 0;
	transform: translate(-50%, -60%);
}

.row {
	padding: 10px 0
}

.navbar ul li.current-menu-item>a {
	color: #fff !important;
}

.navbar ul li.current-menu-item .menu-item-more-icon {
	color: #fff !important;
}


.navbar ul li.current-menu-item-more>a {
	color: #333 !important;
}




.black-and-white {
	filter: grayscale(100%);
}

#preloader {
	position: fixed;
	width: 100%;
	height: 100vh;
	text-align: center;
	background: #F9F9F9;
	background-repeat: no-repeat;
	background-size: cover;
	z-index: 9999999;
	display: flex;
}

#preloader .contain {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
}

#preloader .contain .loader {
	animation: rotate 2.3s cubic-bezier(0.75, 0, 0.5, 1) infinite;
}

#preloader .contain .loader span {
	--c: var(--primary-color);
	position: absolute;
	display: block;

	background: var(--c);
	border: 1px solid var(--c);
	border-radius: 100%;
}

#preloader .contain .loader span:nth-child(1) {
	height: 64px;
	width: 64px;
	transform: translate(-22px, -18.5px);
	animation: shape_1 2.3s cubic-bezier(0.75, 0, 0.5, 1) infinite;
}

#preloader .contain .loader span:nth-child(2) {
	height: 64px;
	width: 64px;
	transform: translate(22px, -18.5px);
	animation: shape_2 2.3s cubic-bezier(0.75, 0, 0.5, 1) infinite;
}

#preloader .contain .loader span:nth-child(3) {
	height: 68px;
	width: 68px;
	position: relative;
	border-radius: 0px;
	border-end-end-radius: 7px;
	border-top-left-radius: 7px;
	border-top-right-radius: 23px;
	left: -2px;
	transform: scale(0.98) rotate(-45deg);
	animation: shape_3 2.3s cubic-bezier(0.75, 0, 0.5, 1) infinite;
}

#preloader .contain .shadow {
	position: relative;
	top: 30px;
	left: 50%;
	transform: translateX(-50%);
	display: block;
	height: 16px;
	width: 64px;
	border-radius: 50%;
	background-color: #6F6F6F;
	border: 1px solid #6F6F6F;
	animation: shadow 2.3s cubic-bezier(0.75, 0, 0.5, 1) infinite;
}

#loading-pull,
#loading-pull-say {
	display: none;
	margin: 30px auto;
	position: relative;
	text-align: center;
	width: 32px;
	transition: all 0.2s;
}

#loading-pull .loading-pull-inner,
#loading-pull-say .loading-pull-inner {
	--c: var(--primary-color);
	position: absolute;
	display: block;
	background: var(--c);
	border: 1px solid var(--c);
	border-radius: 100%;
}

#loading-pull .loading-pull-inner:nth-child(1),
#loading-pull-say .loading-pull-inner:nth-child(1) {
	height: 32px;
	width: 32px;
	transform: translate(-12px, -7.5px);
	animation: shape_1 0.8s cubic-bezier(0.75, 0, 0.5, 1) infinite;
}

#loading-pull .loading-pull-inner:nth-child(2),
#loading-pull-say .loading-pull-inner:nth-child(2) {
	height: 32px;
	width: 32px;
	transform: translate(12px, -7.5px);
	animation: shape_2 0.8s cubic-bezier(0.75, 0, 0.5, 1) infinite;
}

#loading-pull .loading-pull-inner:nth-child(3),
#loading-pull-say .loading-pull-inner:nth-child(3) {
	height: 36px;
	width: 36px;
	position: relative;
	border-radius: 0px;
	border-end-end-radius: 5px;
	border-top-left-radius: 5px;
	border-top-right-radius: 15px;
	left: -2px;
	transform: scale(0.98) rotate(-45deg);
	animation: shape_4 0.8s cubic-bezier(0.75, 0, 0.5, 1) infinite;
}



@keyframes shadow {
	50% {
		transform: translateX(-50%) scale(0.5);
		border-color: #f2f2f2;
		display: block;
	}
}

@keyframes rotate {
	50% {
		transform: rotate(360deg);
	}

	100% {
		transform: rotate(720deg);
	}
}

@keyframes shape_1 {
	60% {
		transform: scale(0.4);
	}
}

@keyframes shape_2 {
	40% {
		transform: scale(0.4);
	}
}

@keyframes shape_3 {
	50% {
		border-radius: 100%;
		transform: scale(0.5) rotate(-45deg);
	}

	100% {
		border-end-end-radius: 7px;
		border-top-left-radius: 7px;
		border-top-right-radius: 23px;
		transform: scale(0.98) rotate(-45deg);
	}
}

@keyframes shape_4 {
	50% {
		border-radius: 100%;
		transform: scale(0.5) rotate(-45deg);
	}

	100% {
		transform: scale(0.98) rotate(-45deg);
	}
}

#back-to-top {
	display: none;
	position: fixed;
	bottom: 20px;
	right: 20px;
	background-color: rgba(0, 0, 0, 0.326);
	color: #fff;
	border: none;
	border-radius: 5px;
	padding: 10px 15px 5px 15px;
	cursor: pointer;
	z-index: 999;
}

#back-to-top:hover {
	opacity: 0.8;
}

.deng-box-item {
	z-index: 2;
	display: none;
}

#web-declaration-time {
	font-size: 18px;
	color: #fff;
	margin-top: 10px;
}

.deng-box {
	position: fixed;
	top: -40px;
	right: 30%;
	pointer-events: none;
}

.deng-box1 {
	position: fixed;
	top: -30px;
	right: 20%;
	pointer-events: none;
}

.deng-box2 {
	position: fixed;
	top: -40px;
	left: 30%;
	pointer-events: none;
}

.deng-box3 {
	position: fixed;
	top: -30px;
	left: 20%;
	pointer-events: none;
}

.deng-box1 .deng,
.deng-box3 .deng {
	position: relative;
	width: 120px;
	height: 90px;
	margin: 50px;
	background: #b71307;
	border-radius: 50% 50%;
	-webkit-transform-origin: 50% -100px;
	-webkit-animation: swing 5s infinite ease-in-out;
	box-shadow: -5px 5px 30px 4px #fc903d
}

.deng {
	position: relative;
	width: 120px;
	height: 90px;
	margin: 50px;
	background: #b71307;
	border-radius: 50% 50%;
	-webkit-transform-origin: 50% -100px;
	-webkit-animation: swing 3s infinite ease-in-out;
	box-shadow: -5px 5px 50px 4px #fa6c00
}

.deng-a {
	width: 100px;
	height: 90px;
	background: #b71307;
	margin: 12px 8px 8px 8px;
	border-radius: 50% 50%;
	border: 2px solid #dc8f03
}

.deng-b {
	width: 45px;
	height: 90px;
	background: #b71307;
	margin: -4px 8px 8px 26px;
	border-radius: 50% 50%;
	border: 2px solid #dc8f03
}

.xian {
	position: absolute;
	top: -20px;
	left: 60px;
	width: 2px;
	height: 20px;
	background: #dc8f03
}

.shui-a {
	position: relative;
	width: 5px;
	height: 20px;
	margin: -5px 0 0 59px;
	-webkit-animation: swing 4s infinite ease-in-out;
	-webkit-transform-origin: 50% -45px;
	background: orange;
	border-radius: 0 0 5px 5px
}

.shui-b {
	position: absolute;
	top: 14px;
	left: -2px;
	width: 10px;
	height: 10px;
	background: #dc8f03;
	border-radius: 50%
}

.shui-c {
	position: absolute;
	top: 18px;
	left: -2px;
	width: 10px;
	height: 35px;
	background: #d8000ecc;
	border-radius: 0 0 0 5px
}

.deng:before {
	position: absolute;
	top: -7px;
	left: 29px;
	height: 12px;
	width: 60px;
	content: " ";
	display: block;
	z-index: 999;
	border-radius: 5px 5px 0 0;
	border: solid 1px #dc8f03;
	background: orange;
	background: linear-gradient(to right, #dc8f03, orange, #dc8f03, orange, #dc8f03)
}

.deng:after {
	position: absolute;
	bottom: -7px;
	left: 10px;
	height: 12px;
	width: 60px;
	content: " ";
	display: block;
	margin-left: 20px;
	border-radius: 0 0 5px 5px;
	border: solid 1px #dc8f03;
	background: orange;
	background: linear-gradient(to right, #dc8f03, orange, #dc8f03, orange, #dc8f03)
}

.deng-t {
	font-size: 2.2rem;
	color: #dc8f03;
	font-weight: 700;
	line-height: 85px;
	text-align: center
}

.night .deng-box,
.night .deng-box1,
.night .deng-t {
	background: 0 0 !important
}

@-moz-keyframes swing {
	0% {
		-moz-transform: rotate(-10deg)
	}

	50% {
		-moz-transform: rotate(10deg)
	}

	100% {
		-moz-transform: rotate(-10deg)
	}
}

@-webkit-keyframes swing {
	0% {
		-webkit-transform: rotate(-10deg)
	}

	50% {
		-webkit-transform: rotate(10deg)
	}

	100% {
		-webkit-transform: rotate(-10deg)
	}
}

canvas {
	display: block;
	position: fixed;
	top: 0;
	left: 0;
}

#web-title-a {
	position: absolute;
	top: 2em;
	left: 3em;
	cursor: pointer;
	z-index: 99;
}

#web-title {
	color: #fff !important;
	font-size: 22px;
	cursor: pointer;
	letter-spacing: 2px;
	font-weight: 600;
	user-select: none;
}

.post_header {
	display: flex;
	margin-bottom: 10px;
	position: relative
}

#album-title_ha,
#post_header_ha {
	border-radius: 50%;
	margin-right: 8px;
	object-fit: cover;
}

#album-title_ha {
	width: 32px;
	height: 32px;
}

#post_header_ha {
	width: 38px;
	height: 38px;
	display: none;
	object-fit: cover;
}



#imgs-list,
.imgs-list {
	display: flex;
	flex-wrap: wrap;
	margin-top: 10px;
}

.imgs-list {
	margin-top: 5px !important;
}



#imgs-list .detail-img-item,
.imgs-list .detail-img-item {
	margin-right: 6px;
	margin-bottom: 6px;
	overflow: hidden;
	position: relative;
	border-radius: 2px;
	background-color: #ffffffc2;
}

#imgs-list .detail-img-item img,
.imgs-list .detail-img-item img {
	z-index: 2;
}

#imgs-list .detail-img-item img {
	width: 100%;
}

.imgs-list .detail-img-item img {
	height: 100%;
	min-width: 100px;
}


#imgs-list .detail-img-item-fit img,
.imgs-list .detail-img-item-fit img {
	object-fit: cover;
	height: 100%;
	width: 100%;
}

.imgs-list .detail-img-item {
	margin-bottom: 10px;
	margin-right: 7px;
}

#content-message {
	font-size: 17px;
	color: #333;
	width: 100%;
}

.iconfont {
	font-family: "iconfont" !important;
	font-size: 16px;
	font-style: normal;
	-webkit-font-smoothing: antialiased;
	-webkit-text-stroke-width: 0.2px;
	-moz-osx-font-smoothing: grayscale
}



.blog-description {
	text-transform: none;
	font-weight: 400;
}

#web-declaration {
	font-size: 21px;
	font-weight: 600;
	margin-top: 13px;
	letter-spacing: 5px;
	color: #fff;
}

.custom-logo {
	display: inline-block;
	width: 100px;
	border: 3px solid #fff;
	height: 100px;
	background-color: #eee;
}

#boy-name {
	font-size: 18px;
	color: #ffffff !important;
	/* color: var(--primary-color); */
	/* display: none; */

}

.site-branding {
	position: relative;
	display: inline-block;
	z-index: 3;
	padding-top: 65px;
}

.site-branding a {
	display: flex;
	align-items: center;
	justify-content: center;
}


.page-title {
	text-align: center
}

.navi {
	position: absolute;
	right: 0;
	z-index: 999
}

.navbar {
	float: right;
	margin-top: 40px;
	padding-right: 90px
}

.open .navbar {
	display: none
}

.close .navbar {
	display: block
}

.bt-nav {
	display: block;
	position: absolute;
	z-index: 999;
	top: 2em;
	right: 3em;
	width: 36px;
	height: 36px;
	cursor: pointer
}

.open .bt-nav .line1 {
	top: 17px
}

.open .bt-nav .line3 {
	top: 27px
}

.close .bt-nav .line {
	top: 17px
}

.close .bt-nav .line1 {
	-webkit-transform: rotateZ(45deg)
}

.close .bt-nav .line2 {
	opacity: 0
}

.close .bt-nav .line3 {
	-webkit-transform: rotateZ(-45deg)
}

.bt-nav .line {
	position: absolute;
	top: 7px;
	left: 50%;
	width: 30px;
	margin-left: -15px;
	border-radius: 4px;
	height: 3px;
	background: rgba(255, 255, 255, 1);
	-webkit-transition: all .3s ease
}

.main-navigation a::after,
.main-navigation a::before {
	display: inline-block;
	opacity: 0;
	-webkit-transition: -webkit-transform .3s, opacity .2s;
	-moz-transition: -moz-transform .3s, opacity .2s;
	transition: transform .3s, opacity .2s
}

.main-navigation .menu-item:not(.has-submenu):not(.menu-item-url) a::before {
	margin-right: 5px;
	content: '[';
	-webkit-transform: translateX(20px);
	-moz-transform: translateX(20px);
	transform: translateX(20px)
}

.main-navigation .menu-item:not(.has-submenu):not(.menu-item-url) a::after {
	margin-left: 5px;
	content: ']';
	-webkit-transform: translateX(-20px);
	-moz-transform: translateX(-20px);
	transform: translateX(-20px)
}




.main-navigation .menu-item:not(.has-submenu):not(.menu-item-url) a:focus::after,
.main-navigation .menu-item:not(.has-submenu):not(.menu-item-url) a:focus::before,
.main-navigation .menu-item:not(.has-submenu):not(.menu-item-url) a:hover::after,
.main-navigation .menu-item:not(.has-submenu):not(.menu-item-url) a:hover::before {
	opacity: 1;
	-webkit-transform: translateX(0);
	-moz-transform: translateX(0);
	transform: translateX(0)
}

.main-navigation ul li a span .menu-item-url-icon {
	margin-left: 3px;
	color: rgb(238, 231, 231);
}

.main-navigation .menu-item-url-more  a span .menu-item-url-more-icon {
	color: rgba(2, 0, 0, .6);
	position: absolute;
	right: 30px;
}

.main-navigation .has-submenu:hover {

	.menu-item-a,
	.menu-item-more-icon {
		color: #fff !important;
	}

}

.main-navigation .menu-item-url:not(.menu-item-url-more):hover {

	a,
	.menu-item-url-icon {
		color: #fff !important;
	}

}

.main-navigation .menu-item-url-more:hover {
	a {
		color: #333 !important;
	}

	.menu-item-url-more-icon {
		color: #333 !important;
	}
}


.main-navigation ul ul:before {
	z-index: 0;
	content: "";
	position: absolute;
	top: -8px;
	right: 28px;
	border-style: solid;
	border-width: 0 10px 8px 10px;
	border-color: transparent transparent rgba(255, 255, 255, 0.8) transparent;
	-webkit-transform: rotate(360deg)
}

.main-navigation li {
	color: #dcdcdc;
	position: relative;
}

.main-navigation .menu-item-url {
	display: flex;
	align-items: center;
	justify-content: center;
}

.main-navigation a {
	display: block;
	text-decoration: none;
}

.main-navigation ul ul {
	position: absolute;
	top: 34px;
	z-index: 999;
	display: none;
	backdrop-filter: blur(5px);
	background-color: rgba(255, 255, 255, 0.8);
	border-radius: 3px;
	transition: all 0.2s;
}



.main-navigation ul ul li {
	float: none;
	display: block;
	width: 100%

}

.main-navigation ul ul a.focus,
.main-navigation ul ul a:hover {
	color: #666
}

.main-navigation ul li.focus>ul,
.main-navigation ul li:hover>ul {
	right: 0;
	display: block;
}

.main-navigation ul ul li.focus>ul,
.main-navigation ul ul li:hover>ul {
	right: 100%;
	display: block
}

.main-navigation.toggled ul,
.menu-toggle {
	display: block
}

.header-menu-button {
	display: none
}

.menu-dropdown {
	position: absolute;
	top: 15px;
	right: 15px;
	z-index: 9;
	display: none;
	margin: 0;
	padding: 10px 14px;
	height: 35px;
	text-align: center;
	font-size: 14px;
	line-height: 15px;
	cursor: pointer
}

.open-page-item>ul.children,
.open-page-item>ul.sub-menu {
	display: block !important
}

.main-navigation ul {
	display: block;
	margin: 0;
	padding-left: 0;
	list-style: none
}

.main-navigation li {
	float: left;
	margin: 0;
}

.main-navigation li a {
	color: rgb(238, 231, 231);
	font-weight: bold;
	padding: 0px 7px 10px 7px;
	display: flex;
	justify-content: center;
}



.main-navigation ul ul a {
	color: rgba(2, 0, 0, .62);
	float: none;
	padding: 15px 20px 15px 20px;
	width: 100%;
	min-width: 130px;
	box-shadow: 0 1px 0 rgba(0, 0, 0, .03);
	text-align: center;
	white-space: nowrap;

}

.main-navigation ul .menu-item-url a span,
.main-navigation ul .has-submenu a span {
	display: flex;
	align-items: center;
}





.main-navigation li .menu-item-more-icon {
	cursor: pointer !important;
	transition: all 0.2s;
}



.main-navigation ul ul li:hover {
	background-color: rgba(0, 0, 0, .02)
}

.main-navigation {
	padding: 0;
	-webkit-transition: right .4s ease 0s;
	-moz-transition: right .4s ease 0s;
	-ms-transition: right .4s ease 0s;
	-o-transition: right .4s ease 0s;
	transition: right .4s ease 0s
}

#main-menu>div,
#primary-menu {
	float: left
}





#Yarn_Background {
	background-position: center;
	background-size: cover;
	background-repeat: no-repeat;
	position: relative;
}



#Yarn_Background,
.p-header .p-image {
	position: fixed;
	width: 100%;
	height: 100%;
	-moz-background-size: cover;
	-o-background-size: cover;
	-webkit-background-size: cover;
	background-size: cover;
	background-position: top center;
	z-index: -999;
}

#particles-js {
	position: fixed;
	top: 0;
	width: 100%;
	height: 100%;
	z-index: -1;
}



#masthead {
	position: relative;
	z-index: 2;
	display: block;
	color: #ffffffb9;
	text-align: center;
	width: 100%;
	height: 450px;
	box-sizing: border-box;
	overflow: hidden;
}


#main,
.decor-wrapper path {
	background: rgba(251, 251, 251, 0.75);
}

#main {
	position: relative;
	z-index: 2;
	min-height: 600px;
}


.decor-wrapper {
	width: 100%;
	height: 50%;
	position: absolute;
	left: 0;
	bottom: -0.2px;
	z-index: 2;
	opacity: 0.75;
}



#footer .decor-wrapper {
	top: -0.2px;
}

.decor {
	position: absolute;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 2
}

.decor.bottom {
	bottom: -0.5px;
}

.decor.top {
	top: -0.5px;
}


#footer {
	padding: 120px 0 60px;
	position: relative;
	width: 100%;
	display: block;
	z-index: 2
}


.row {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	margin-right: -15px;
	margin-left: -15px
}



.review-item-creator2 {
	display: none !important;
}

.review-item-creator {
	font-size: 0.9em;
	font-weight: normal;
	padding-top: 0.7em;
	display: flex;
	align-items: center;
	color: #fff;
	z-index: 1;
}



.bg {
	width: 100%;
	height: 100%;
	position: absolute;
	left: 0;
	right: 0;
	top: 0;
	bottom: 0;
	-webkit-transform: scale(2.5);
	transform: scale(2.5);
	-webkit-filter: blur(20px);
	filter: blur(20px);
	-o-object-fit: cover;
	object-fit: cover;
	pointer-events: none;
	z-index: 0;
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center;
	opacity: 0.6;
}

.bg:after {
	content: "";
	position: absolute;
	width: 100%;
	height: 100%;
	z-index: 1;
	top: 0;
	left: 0;
	background: linear-gradient(to left, rgba(255, 255, 255, 0) 0%, rgba(105, 105, 105, 0.1) 100%)
}

.pull-right {
	float: right
}

.flex-xs-middle {
	-ms-flex-item-align: center;
	text-shadow: 0 2px 3px rgba(0, 0, 0, 0.1);
}



.bg-next-image-cover {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(0, 0, 0, 0.4);
}

.image-item-e img {
	vertical-align: middle;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.image-item-e {
	border-radius: 3px;
	position: relative;
	overflow: hidden;
	margin: 2px 0 2px 4px;
	position: relative;
	min-height: 1px;
	padding-right: 0;
	padding-left: 0;
	float: left
}

.image-item-e .num-images {
	font-size: 1.1em;
	text-transform: uppercase;
	display: inline-flex;
	margin: 0;
	align-items: center;
	justify-content: center;
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
}




.album-thumb [video-src],
.video-play-box {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(0, 0, 0, 0.3);
	display: flex;
	justify-content: end;
	border-radius: 2px;
	overflow: hidden;
	padding: 6px;
	z-index: 999;
}

.audio-play-box {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	display: flex;
	background-color: rgba(0, 0, 0, 0.3);
	display: flex;
	border-radius: 2px;
	overflow: hidden;
	padding: 5px;
	z-index: 999;
	flex-direction: column;
	text-align: center;
}

.audio-play-box p {
	font-size: 12px;
	color: #eee;
	overflow: hidden;
	display: -webkit-box;
	-webkit-line-clamp: 1;
	-webkit-box-orient: vertical;
	text-overflow: ellipsis;
	width: 100%;
	word-break: break-all;
	transition: all 0.2s;
	position: absolute;
	top: 35%;
	left: 0;
}

.audio-item-img {
	filter: blur(2px);
	transform: scale(1.2);
}



.row.content {
	width: 100%;
	position: relative;
	margin: 0 auto;
	padding: 15px 0;
}

.contentext {
	width: calc(100% - 308px);
	color: #fff;
	z-index: 1;
}

.contentext-full {
	width: 100% !important;
	color: #fff;
	z-index: 1;
}

.album-title {
	font-size: 17px;
	font-weight: 700;
	text-shadow: 0 2px 3px rgba(0, 0, 0, 0.1);
	display: flex;
	transition: all 0.2s;
}

.album-title a {
	overflow: hidden;
	display: -webkit-box;
	-webkit-line-clamp: 1;
	-webkit-box-orient: vertical;
	text-overflow: ellipsis;
	width: 92%;
	line-height: 30px;
	word-break: break-all;
	transition: all 0.2s;
}

.album-content {
	line-height: 1.75;
	margin-top: 10px;
	width: 98%;
	text-overflow: -o-ellipsis-lastline;
	overflow: hidden;
	text-overflow: ellipsis;
	display: -webkit-box;
	-webkit-box-orient: vertical;
	font-size: 16px;
	word-break: break-all;
	transition: all 0.2s;
}

.post-album {
	margin-bottom: 15px;
	padding: 0 1rem 0;
	border-radius: 4px;
	overflow: hidden;
	background-color: #01010143;
	box-shadow: 0 1px 3px rgba(249, 249, 249, 0.08), 0 0 0 1px rgba(26, 53, 71, .04), 0 1px 1px rgba(26, 53, 71, .06);
}


.post-title {
	color: #807f83;
	line-height: 1;
	padding-bottom: 12px;
	text-shadow: 0 1px 0 rgba(255, 255, 255, .5);
}



.container {
	margin: 0 auto;
	line-height: 1.75;
	max-width: 900px;
	position: relative;
	padding: 20px 0 20px;
}



.post_title {
	color: #333;
	font-size: 18px;
	font-weight: 600;
	text-transform: uppercase;
	margin-bottom: 4px;
}

.post_send_name {
	color: #333;
	font-size: 18px;
	margin-top: 4px;
}



.bold {
	font-weight: bold !important
}


.small {
	font-size: 14px;
	line-height: 24px
}

.text-center {
	text-align: center !important
}


.left {
	float: left
}

.right {
	float: right
}




.avatar,
.avatar img {
	border-radius: 50%;
	object-fit: cover;
}



.socialize {
	width: 100%;
	margin: 60px 0;
	position: relative;
	z-index: 2;
	text-align: center;
}

.socialize li {
	display: inline-block;
}

.socialicon {
	width: 72px;
	height: 72px;
	text-align: center;
	margin: 0 5px;
	color: rgba(255, 255, 255, 0.8);
	display: inline-block;
	-webkit-border-radius: 50%;
	-moz-border-radius: 50%;
	border-radius: 50%
}

.socialicon i {
	font-size: 60px;
}

.wechat {
	position: relative
}

.wechatimg {
	position: absolute;
	z-index: 999;
	visibility: hidden;
	width: 121px;
	height: 121px;
	padding: 10px;
	background: #fff;
	bottom: 100px;
	left: -18px;
	-webkit-transform: translate3d(0, 50px, 0);
	transform: translate3d(0, 50px, 0);
	transition: .7s all ease;
	-webkit-transition: .7s all ease;
	-moz-transition: .7s all linear;
	-o-transition: .7s all ease;
	-ms-transition: .7s all ease;
	opacity: 0
}

.wechat:hover .wechatimg {
	-webkit-transform: translate3d(0, 10px, 0);
	transform: translate3d(0, 10px, 0);
	opacity: 1;
	visibility: visible
}

.wechatimg:after {
	content: "";
	display: block;
	border-width: 10px 10px 0;
	border-style: solid;
	border-color: #fff transparent transparent;
	margin-left: -10px;
	position: absolute;
	bottom: -10px;
	left: 50%
}

.cr {
	text-transform: none;
	text-align: center;
	position: relative;
	z-index: 2;
}

#web-browse {
	color: #fff;
	margin-left: 20px;
}

.fadeInRight {
	-webkit-animation-name: fadeInRight;
	animation-name: fadeInRight
}

.animated {
	animation-duration: 0.3s;
	animation-fill-mode: both
}

.animated .small,
.animated .medium,
.animated .large {
	opacity: 0;
	-webkit-transition-property: all;
	-moz-transition-property: all;
	-o-transition-property: all;
	-ms-transition-property: all;
	transition-property: all
}

.animated .large {
	-webkit-transition-delay: 1s;
	-moz-transition-delay: 1s;
	-o-transition-delay: 1s;
	-ms-transition-delay: 1s;
	transition-delay: 1s;
	-webkit-transition-duration: 1s;
	-moz-transition-duration: 1s;
	-o-transition-duration: 1s;
	-ms-transition-duration: 1s;
	transition-duration: 1s
}

.animated .medium {
	-webkit-transition-delay: 1.35s;
	-moz-transition-delay: 1.35s;
	-o-transition-delay: 1.35s;
	-ms-transition-delay: 1.35s;
	transition-delay: 1.35s;
	-webkit-transition-duration: .75s;
	-moz-transition-duration: .75s;
	-o-transition-duration: .75s;
	-ms-transition-duration: .75s;
	transition-duration: .75s
}

.animated .small {
	-webkit-transition-delay: 1.5s;
	-moz-transition-delay: 1.5s;
	-o-transition-delay: 1.5s;
	-ms-transition-delay: 1.5s;
	transition-delay: 1.5s;
	-webkit-transition-duration: .5s;
	-moz-transition-duration: .5s;
	-o-transition-duration: .5s;
	-ms-transition-duration: .5s;
	transition-duration: .5s
}

.animated.from-bottom .small,
.animated.from-bottom .medium,
.animated.from-bottom .large {
	opacity: 1;
	-webkit-transform: translateY(100%);
	-moz-transform: translateY(100%);
	-o-transform: translateY(100%);
	-ms-transform: translateY(100%);
	transform: translateY(100%)
}

.animated.from-top .small,
.animated.from-top .medium,
.animated.from-top .large {
	opacity: 1;
	-webkit-transform: translateY(-100%);
	-moz-transform: translateY(-100%);
	-o-transform: translateY(-100%);
	-ms-transform: translateY(-100%);
	transform: translateY(-100%)
}

.animated.animation-on .small,
.animated.animation-on .medium,
.animated.animation-on .large {
	-webkit-transform: translateY(0%);
	-moz-transform: translateY(0%);
	-o-transform: translateY(0%);
	-ms-transform: translateY(0%);
	transform: translateY(0%)
}



@-webkit-keyframes fadeInRight {
	0% {
		opacity: 0;
		-webkit-transform: translate3d(100%, 0, 0);
		transform: translate3d(100%, 0, 0)
	}

	100% {
		opacity: 1;
		transform: none
	}
}

@keyframes fadeInRight {
	0% {
		opacity: 0;
		-webkit-transform: translate3d(100%, 0, 0);
		transform: translate3d(100%, 0, 0)
	}

	100% {
		opacity: 1;
		-webkit-transform: none;
		transform: none
	}
}



#NextPrevPosts {
	white-space: nowrap;
	color: #918f90
}

#NextPrevPosts .arrow {
	width: 50px;
	height: 70px;
	background: #fff;
	display: inline-block;
	display: flex;
	align-items: center;
	justify-content: center;
	z-index: 1003;
}

#NextPrevPosts .arrow i {
	font-size: 30px;
	font-weight: 600;
}

#NextPrevPosts .prev .arrow {
	float: left
}

#NextPrevPosts .next .arrow {
	float: right
}

#NextPrevPosts .next svg,
#NextPrevPosts .prev svg {
	width: 25px;
	height: 60px
}

#NextPrevPosts .next,
#NextPrevPosts .prev {
	position: fixed;
	top: 50%;
	margin-top: -50px;
	padding: 0;
	height: 70px;
	background: #fff;
	width: 50px;
	overflow: hidden;
	-webkit-transition: all .3s ease;
	-moz-transition: all .3s ease;
	-ms-transition: all .3s ease;
	-o-transition: all .3s ease;
	transition: all .3s ease;
	white-space: nowrap !important;
	z-index: 909;
	opacity: 0.9;
}

#NextPrevPosts .prev {
	left: 0 !important;
	box-shadow: 0 0 5px 0 rgba(50, 50, 50, .1);
	text-align: left !important;
	height: 70px;
	max-height: 70px
}

#NextPrevPosts .next {
	right: 0 !important;
	box-shadow: 0 0 5px 0 rgba(50, 50, 50, .1);
	text-align: right !important;
	height: 70px;
	max-height: 70px
}

#NextPrevPosts .preview {
	height: 70px;
	width: 270px;
	display: inline-block;
	z-index: -1;
	position: absolute;
	top: 0
}

#NextPrevPosts .preview:after {
	content: '';
	display: block;
	clear: both
}

#NextPrevPosts .next .preview {
	float: right;
	right: 50px
}

#NextPrevPosts .prev .preview {
	float: left;
	left: 50px
}

#NextPrevPosts .preview .featuredImg {
	width: 70px;
	height: 70px;
	background: center center no-repeat;
	background-size: cover !important;
	z-index: 1002;
	top: 0
}

#NextPrevPosts .next .preview .featuredImg {
	float: right !important
}

#NextPrevPosts .prev .preview .featuredImg {
	float: left !important
}

#NextPrevPosts .preview .preview-content {
	width: 270px;
	height: 70px;
	display: table;
	vertical-align: middle;
	position: absolute;
	white-space: normal !important;
	z-index: 999;
	top: 0;
	zoom: 1;
	opacity: .3;
	transition: all 0.2s;
}

#NextPrevPosts .preview .preview-content:hover {

	span,
	p {
		color: rgb(37, 37, 37);
	}
}

#NextPrevPosts .next .preview .preview-content {
	right: 70px;
	float: right;
}

#NextPrevPosts .prev .preview .preview-content {
	left: 70px;
	float: left;
}

#NextPrevPosts .preview .preview-content span,
#NextPrevPosts .preview .preview-content p {
	margin: 0;
	padding: 0
}

#NextPrevPosts .preview .preview-content span {
	display: table-cell;
	vertical-align: middle;
	margin: auto;
	padding: 0 20px;
	text-align: center;
	font-size: 16px;
	text-transform: capitalize;
	color: #616061;
	-webkit-line-clamp: 1;
	-webkit-box-orient: vertical;
	text-overflow: ellipsis;
	overflow: hidden;
	display: -webkit-box;
	line-height: 70px;
}

#NextPrevPosts .prev .preview .featuredImg {
	margin-left: -70px
}

#NextPrevPosts .prev .preview .preview-content {
	margin-left: -390px;
}

#NextPrevPosts .next .preview .featuredImg {
	margin-right: -70px
}

#NextPrevPosts .next .preview .preview-content {
	margin-right: -390px
}

#NextPrevPosts .next .preview .featuredImg,
#NextPrevPosts .next .preview .preview-content,
#NextPrevPosts .prev .preview .featuredImg,
#NextPrevPosts .prev .preview .preview-content {
	-webkit-transition: all .3s ease;
	-moz-transition: all .3s ease;
	-ms-transition: all .3s ease;
	-o-transition: all .3s ease;
	transition: all .3s ease
}

#NextPrevPosts .next:hover,
#NextPrevPosts .prev:hover {
	width: 390px
}

#NextPrevPosts .next:active .preview .featuredImg,
#NextPrevPosts .next:active .preview .preview-content,
#NextPrevPosts .next:focus .preview .featuredImg,
#NextPrevPosts .next:focus .preview .preview-content,
#NextPrevPosts .next:hover .preview .featuredImg,
#NextPrevPosts .next:hover .preview .preview-content,
#NextPrevPosts .prev:active .preview .featuredImg,
#NextPrevPosts .prev:active .preview .preview-content,
#NextPrevPosts .prev:focus .preview .featuredImg,
#NextPrevPosts .prev:focus .preview .preview-content,
#NextPrevPosts .prev:hover .preview .featuredImg,
#NextPrevPosts .prev:hover .preview .preview-content {
	margin-left: 0;
	margin-right: 0;
	zoom: 1;
	opacity: 1
}

#NextPrevPosts .prev .preview .featuredImg:after {
	content: "";
	display: block;
	opacity: 0
}

#NextPrevPosts .prev:hover .preview .featuredImg:after {
	content: "";
	display: block;
	opacity: 1;
	border-width: 10px;
	border-style: solid;
	border-color: transparent #fff transparent transparent;
	position: absolute;
	bottom: 25px;
	left: 50px;
	-webkit-transition: opacity .2s .1s ease;
	-moz-transition: opacity .2s .1s ease;
	-ms-transition: opacity .2s .1s ease;
	-o-transition: opacity .2s .1s ease;
	transition: opacity .2s .1s ease
}

#NextPrevPosts .next .preview .featuredImg:after {
	content: "";
	display: block;
	opacity: 0
}

#NextPrevPosts .next:hover .preview .featuredImg:after {
	content: "";
	display: block;
	opacity: 1;
	border-width: 10px;
	border-style: solid;
	border-color: transparent transparent transparent #fff;
	position: absolute;
	bottom: 25px;
	right: 50px;
	-webkit-transition: opacity .2s .1s ease;
	-moz-transition: opacity .2s .1s ease;
	-ms-transition: opacity .2s .1s ease;
	-o-transition: opacity .2s .1s ease;
	transition: opacity .2s .1s ease
}

#time,
#browse {
	font-size: 15px;
	color: #8d8d8d;
	text-transform: uppercase;
}

.split__title {
	margin-top: 10px;
}

#pageContent {
	display: flex;
	align-items: center;
	justify-content: center;
	flex-wrap: wrap;
	margin-top: 18px;
}

#pageContent .page-content-item {
	border: 1px solid var(--primary-color);
	cursor: pointer;
	transition: all 0.2s;
	width: 35px;
	height: 35px;
	text-align: center;
	border-radius: 2px;
	margin-left: 4px;
	margin-bottom: 4px;
	font-size: 16px;
	display: flex;
	align-items: center;
	justify-content: center;
	background-color: rgba(251, 251, 251, 0.3);
	color: #777;
	font-weight: 600;
	box-shadow: rgba(0, 0, 0, 0.16) 0px 1px 2px;
}

#pageContent .page-content-item-active {
	background-color: rgba(251, 251, 251, 1) !important;
	color: var(--primary-color) !important;
}

#pageContent .page-content-item:hover {
	color: var(--primary-color) !important;
}

#pageContent .page-content-item-icon {
	display: flex;
	align-items: center;
	justify-content: center;
	color: #777;
	font-weight: 700;
}





.navi {
	position: fixed;
	height: 100%;
	text-align: center
}


.bt-nav.scrolled {
	background: rgba(0, 0, 0, 0.5);
	backdrop-filter: blur(4px);
	border-radius: 50%;
	width: 40px;
	height: 40px;
	-webkit-box-shadow: 0 1px 2px 0 rgba(0, 0, 0, .15);
	-moz-box-shadow: 0 1px 2px 0 rgba(0, 0, 0, .15);
	box-shadow: 0 1px 2px 0 rgba(0, 0, 0, .15)
}

.bt-nav.scrolled .line {
	width: 5px;
	height: 5px;
	margin-left: -3px
}



.mainNav #primary-menu {
	display: block;
	float: none
}


.mainNav .navbar {
	float: right;
	margin-top: 0;
	padding-right: 0
}

.mainNav.close .navbar {
	display: block;
	height: 100%;
	background: #33333399;
	backdrop-filter: blur(4px);
	transition: all 0.2s;
	/* 设置模糊程度 */
}

.mainNav .main-navigation ul ul:before {
	display: none
}

.mainNav .inner {
	overflow: auto;
	max-height: 100%;
	padding: 5em 0 0 0
}

.mainNav .menu-dropdown {
	display: block
}

.mainNav #main-menu>div {
	display: block;
	float: none
}

.mainNav .main-navigation #main-menu {
	color: #FFF;
	width: 170px;
	-ms-box-sizing: border-box;
	-moz-box-sizing: border-box;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
	z-index: 999;
	height: 100%;
	overflow: auto;
	-webkit-transition: right .4s ease 0s;
	-moz-transition: right .4s ease 0s;
	-ms-transition: right .4s ease 0s;
	-o-transition: right .4s ease 0s;
	transition: right .4s ease 0s
}

.mainNav .main-navigation li {
	float: none
}

.mainNav .main-navigation li a {
	float: none;
	padding: 20px;
	color: #C5C5C5;
	width: 100%;
	position: relative;
}

.mainNav .main-navigation ul li a span .menu-item-url-icon {
	color: #C5C5C5;
	position: absolute;
	right: 40px;
}



@media screen and (max-width:900px) {
	.bt-nav {
		right: 1em;
		top: 1em;
	}

	#pageContent {
		display: none !important;
	}

	.deng-box-item {
		display: none !important;
	}

	#album-box {
		padding: 0px;
	}

	#web-title-a {
		top: 1em;
		left: 1em;
	}

	.post_header {
		justify-content: center;
	}

	.post_title {
		font-size: 18px;
		color: #333;
	}

	.container {
		padding: 30px 10px;
	}

	.row {
		margin-right: 0 !important;
		margin-left: 0 !important;
	}

	.post-album {
		box-shadow: 0 5px 10px rgba(0, 0, 0, 0.05);
	}

	.album-thumb-width {
		width: 100% !important;
		margin-top: 8px;
	}

	.contentext {
		width: 100% !important
	}

	.album-content {
		width: 100% !important
	}

	.bg:after {
		background: rgba(0, 0, 0, 0.06) !important
	}


	#NextPrevPosts .next,
	#NextPrevPosts .prev {
		top: 150px
	}

	#NextPrevPosts {
		color: #ffffff
	}

	#NextPrevPosts .prev {
		left: -50px !important
	}

	#NextPrevPosts .prev .arrow {
		margin-left: 60px
	}

	#NextPrevPosts .arrow {
		background: none;
		position: relative;
		z-index: -1
	}

	#NextPrevPosts .preview {
		width: 0px
	}

	#NextPrevPosts .next {
		right: -50px !important
	}

	#NextPrevPosts .next,
	#NextPrevPosts .prev {
		overflow: initial
	}

	#NextPrevPosts .next .arrow {
		margin-right: 60px
	}

	#NextPrevPosts .arrow {
		background: none
	}

	#NextPrevPosts .preview {
		width: 0px
	}

	#NextPrevPosts .next,
	#NextPrevPosts .prev {
		overflow: initial
	}




	.album-title {
		width: 100%;
	}

	.album-content {
		width: 100%;
		margin-top: 8px !important;
	}

	.review-item-creator {
		padding-top: 0.3em !important;
	}

	.review-item-creator1 {
		display: none;
	}

	.review-item-creator2 {
		display: flex !important;
		margin-top: 0.4em !important;
	}

	.split__title {
		display: block;
		width: inherit;
		text-align: center;
		float: none;
	}
}

.img-item-null-icon {
	font-size: 40px;
	color: var(--primary-color);
	width: 40px;
	height: 40px;
	display: block;
	position: absolute;
	left: calc(50% - 20px);
	top: calc(50% - 20px);
}


.img-hover-zoom {
	display: flex;
	width: 100%;
	height: 100%;
	overflow: hidden;
}

.img-hover-zoom,
#content-message img {
	cursor: zoom-in;
}


.img-hover-zoom:hover {
	img {
		transform: scale(1.2, 1.2);
		z-index: 1
	}


}

.click-hover-dom:hover {
	.img-item-img-item {
		margin: 5px 5px 0px 5px;
		width: calc(100% - 10px);
	}

	.img-numbers {
		top: 10px;
		left: 12px;
	}

	.img-name-item-foot {
		top: 10px;
		right: 12px;
	}
}




@media screen and (min-width:900px) {
	.post_title {
		flex: 1;
	}




}