/* ------------------------------------
 * Panda Default Theme
 *
 * @author	Typecho DEV
 * @link	https: //typecho.dev/
 * @update	2023-01-03
 * --------------------------------- */

/* ------------------
 * Global style
 * --------------- */
html {
	scroll-behavior: smooth;
}
@-webkit-keyframes shine {
	100% {
		left: 125%
	}
}

@keyframes shine {
	100% {
		left: 125%
	}
}
:root{
	--color-body: #20232b;
	--color-primary: #1d4fc4;
	/*--color-primary: #467b96;*/
	--bg-body: #f6f6f3;
	--bg-btn: #e9e9e6;
	--radius-lg: 8px;
	--radius-md: 6px;
	--radius-sm: 4px;
	--radius-xs: 2px;
	--blockquote: #f7f7fb;
	--blockquote-left: #555;
	--night-bg-body: #242424;
	--night-bg-secondary: #2c2c2c;
	--night-color-body: #bfc2cc;
}
html {
	-webkit-text-size-adjust: 100%
}
body {
	margin: 0;
	padding: 0;
	color: var(--color-body);
	background-color: var(--bg-body);
	font-family: -apple-system, BlinkMacSystemFont, 'Helvetica Neue', Helvetica, Segoe UI, Arial, Roboto, 'PingFang SC', 'miui', 'Hiragino Sans GB', 'Microsoft Yahei', sans-serif;
	font-size: 1rem;
	line-height: 1.85;
	font-weight: 300;
	overflow-y: overlay;
}
.h1, .h2, .h3, .h4, .h5, .h6, h1, h2, h3, h4, h5, h6 {
	margin: 0;
	font-weight: bolder;
}
h1 {
	font-size: 1.75rem;
}
hr {
	box-sizing: content-box;
	height: 0;
	overflow: visible
}
a {
	color: var(--color-body);
	text-decoration: none;
	-webkit-transition: all .3s ease-in-out;
	transition: all .3s ease-in-out;
}
a:hover {
	color: var(--color-primary);
}

button,input,optgroup,select,textarea {
	font-family: inherit;
	font-size: 100%;
	line-height: 1.15;
	margin: 0;
}

button,input {
	overflow: visible
}

button,select {
	text-transform: none
}
[type=button],[type=reset],[type=submit],button {
	-webkit-appearance: button
}
[type=button]::-moz-focus-inner,[type=reset]::-moz-focus-inner,[type=submit]::-moz-focus-inner,button::-moz-focus-inner {
	border-style: none;
	padding: 0
}
[type=button]:-moz-focusring,[type=reset]:-moz-focusring,[type=submit]:-moz-focusring,button:-moz-focusring {
	outline: 1px dotted ButtonText
}

textarea {
	resize: none;
	overflow: auto
}
[type=checkbox],[type=radio] {
	box-sizing: border-box;
	padding: 0
}
[type=number]::-webkit-inner-spin-button,[type=number]::-webkit-outer-spin-button {
	height: auto
}
[type=search] {
	-webkit-appearance: textfield;
	outline-offset: -2px
}
[type=search]::-webkit-search-decoration {
	-webkit-appearance: none
}



img {
	display: block;
	max-width: 100%;
	height: auto
}
ul {
	padding: 0 1rem;
	list-style: none;
}
ul li p {
	margin: 0
}
ul li ul {
	padding-left: 1rem;
	margin: 0
}

ul li ul li {
	margin: 0
}

ol li ol {
	margin-bottom: 0
}
blockquote {
	margin: 1rem 0;
	padding: 1rem;
	background: var(--blockquote);
	font-weight: 400;
	border-left: 5px solid var(--blockquote-left);
	border-radius: var(--radius-md);
}
@media screen and (min-width:800px) {
	blockquote {
		padding: 1rem;
	}
}

p>code { 
	padding:2px 4px;
	background: #0a0c19;
	font-family: Menlo, Monaco, Consolas, "Lucida Console", "Courier New", monospace;
	color: #fff;
	border-radius: 4px;
}

blockquote {
	margin: 1em 0;
	padding-left: 1.5em;
	border-left: 4px solid #f2f2f2;
	color: #666;
}

table {
	text-indent: 0;
	width: 100%;
	border-color: inherit;
	border-collapse: collapse
}
table th,
table td {
	padding: 5px 10px;
	border: 1px solid #fff;
}
table th {
	background: #e2e6e8;
}
table td {
	background: #f3f5f7;
}

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

*, *:before, *:after {
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
}
/* -------------------------------
	2.0 Page Structure
------------------------------- */
/* 2.1 Page: Container */
.container{
	width: 100%;
	margin: 0 auto;
	padding: 0;
}

@media (min-width:576px) {
	.container {
		max-width: 540px
	}
}

@media (min-width:768px) {
	.container {
		max-width: 720px
	}
}

@media (min-width:992px) {
	.container {
		max-width: 960px
	}
}

@media (min-width:1200px) {
	.container {
		max-width: 1140px
	}
}

@media (min-width:1400px) {
	.container {
		max-width: 1320px
	}
}
@media (max-width: 768px) {
	.container {
		padding-left: 20px;
		padding-right: 20px;
	}
}

.row {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
}

.content {
	-webkit-box-flex: 0;
	-ms-flex: 0 0 auto;
	flex: 0 0 auto;
	width: 100%;
}
.sidebar {
	-webkit-box-flex: 0;
	-ms-flex: 0 0 auto;
	flex: 0 0 auto;
	display: none;
	width: 100%;
}

.header-strip{position: relative;height: 40px;}
.header-strip .background{
	background-color: #fff;
	opacity: 1;
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	/*background: #467b96;*/
	background: linear-gradient(135deg,#990fc3 0,#760fc3 16%,#652ec3 52%,#652ec3 52%,#0dd3c5 100%);
}

.header-strip .header-strip-content{
	position:relative;
	line-height: 40px;
	font-size: .875rem !important;
	color: #FFF;
}
@media (max-width:767px) {
	.header-strip .header-strip-content{
		text-align:center;
	}
}




/* 2.2 Page: Navbar */

.page-navbar {
	/*position:absolute;
	top:40px;*/
	width: 100%;
	background: rgba(255,255,255,1) url(img/colorglowsbg.png) no-repeat top/900px;
	z-index: 999;
}
.navbar {
	padding: 1.45rem 0;
}
.page-navbar.header-fixed{
	position:fixed;
	top:0;
	-webkit-box-shadow:0 10px 20px 0 rgb(6 11 26/5%);
	box-shadow:0 10px 20px 0 rgb(6 11 26/5%);
	/*-webkit-backdrop-filter:saturate(180%) blur(6px);
	backdrop-filter:saturate(180%) blur(6px);*/
	background: rgba(255,255,255,.985) url(img/colorglowsbg.png) no-repeat top/900px;
	transform: translateY(-100%);
	transition: all .3s ease-out;
}
.page-navbar.visible-scroll-up {
	transform: translateY(0);
}
@media (min-width:767.98px) {
	.page-navbar.header-fixed{
		-webkit-backdrop-filter: saturate(50%) blur(8px);
		backdrop-filter: saturate(50%) blur(8px);
		background: rgba(255,255,255,.7)	url(img/colorglowsbg.png) no-repeat top/900px;
		transform: translateY(-100%);
		transition: all .3s ease-out;
	}
	.page-navbar.visible-scroll-up {
		transform: translateY(0);
	}
}
/* 2.2.1 Navbar: Brand */

.navbar-brand {
	width: 160px;
	height: 40px;
	background: url(img/logo.png) no-repeat 0 0;
	background-size: cover;
}

@media (max-width: 767px) {
	.page-navbar .container {
		padding: 0 10px;
	}
	.page-navbar .navbar-header {
		position: relative;
		z-index: 2;
		padding: 0 36px;
		margin: 0;
		text-align: center;
	}
	.navbar-header .navbar-brand {
		display: inline-block;
		float: none;
	}
	.navbar-header .navbar-brand {
	}
}

/* 2.2.2 Navbar: Toggle */

.navbar-toggle{position: absolute;z-index: 10;left: 10px;min-width:44px;height:44px;text-align:center;display:block;z-index:101;-webkit-transform:all ease .3s;transform:all ease .3s;-webkit-animation:blinkBackground 4s infinite;animation:blinkBackground 4s infinite;text-indent:-9999em;}
.navbar-toggle .ham{display:block;width:23px;height:2px;position:absolute;vertical-align:bottom;background:#999;white-space:nowrap;transition:all ease .3s;top:22px;right:0;-webkit-transform:translate(-50%,-50%);transform:translate(-50%,-50%)}
.navbar-toggle .ham:before{top:-8px}
.navbar-toggle .ham:after{top:8px}
.navbar-toggle .ham:after,.navbar-toggle .ham:before{position:absolute;content:'';display:inline-block;width:23px;height:2px;transition:all ease .3s;outline:1px solid transparent;left:0;background:#999}

body.navbar-open {
	overflow: hidden;
}

.navbar-open .navbar-toggle{-webkit-transition-delay: .6s;transition-delay: .6s;background-color: #fff;-webkit-animation:none;animation:none}
.navbar-open .navbar-toggle .ham{background-color:transparent!important}
.navbar-open .navbar-toggle .ham:before{-webkit-transform:translateY(8px) rotateZ(-45deg);transform:translateY(8px) rotateZ(-45deg);background:#1e88e5}
.navbar-open .navbar-toggle .ham:after{-webkit-transform:translateY(-8px) rotateZ(45deg);transform:translateY(-8px) rotateZ(45deg);background:#1e88e5}





/* 2.2.3 Navbar: Container */

@media (min-width: 767px) {
	.navbar-container {
		text-align: center;
	}
}
@media (max-width: 767px) {
	.navbar-container {
		position: fixed;
		left: 0;
		top: 0;
		height: 100vh;
		width: 100%;
		padding-top: 25px;
		background-color: transparent;
		-webkit-transition: linear background .15s;
		transition: linear background .15s;
		visibility: hidden;
		overflow-y: auto;
	}
	.navbar-open .navbar-container {
		z-index: 100;
		background-color:rgba(255,255,255,.985);
		visibility: visible;
	}
	.navbar-open.navbar-bgfade .navbar-container {
		background-color: transparent;
	}
}
@media (max-width: 400px) {
	.navbar-container ul:nth-child(2) .btn {
		font-size:.75em;
	}
}

/* 2.2.4 Navbar: Main */

.navbar-main {
	margin: 0;
}
.navbar-main > li > a {
	padding: 15px 24px;
	font-size: 16px;
	-webkit-transition: ease-in color .15s;
	transition: ease-in color .15s;
}
.navbar-main > li.active > a,
.navbar-main > li.open > a,
.navbar-main > li:hover > a,
.navbar-main > li:focus > a {
	color: #000;
	text-decoration: none;
}
.navbar-open .navbar-main > li.active > a,
.navbar-open .navbar-main > li:hover > a,
.navbar-open .navbar-main > li:focus > a {
	color: #1e88e5;
}

@media (max-width: 1199px) {
	.navbar-main > li > a {
		padding-left: 16px;
		padding-right: 16px;
	}
}
@media (min-width: 768px) {
	.navbar-main > li:first-child {
		display: none;
	}
}
@media (min-width: 1200px) {
	.navbar-main > li:first-child {
		display: inline-block;
	}
}
@media (max-width: 991px) {
	.navbar-main > li > a {
		padding-left: 10px;
		padding-right: 10px;
	}
	.navbar-main .btn {
		min-width: auto;
		padding-left: 20px;
		padding-right: 20px;
	}
}
@media (max-width: 767px) {
	.page-navbar .nav {
		margin: 0 0 30px 0;
	}
	.page-navbar .nav > li {
		position: relative;
		padding-left: 65px;
		padding-right: 65px;
	}
	.navbar-main > li > a {
		color: #363b40;
		text-align: center;
	}
	.page-navbar .navbar-main > li, .page-navbar .navbar-main > li {
		-webkit-transition-timing-function: cubic-bezier(0.7, 0, 0.3, 1);
		transition-timing-function: cubic-bezier(0.7, 0, 0.3, 1);
		-webkit-transform: translate3d(-100%, 0, 0) translate3d(-2em, 0, 0) scale3d(0.5, 1, 1);
		transform: translate3d(-100%, 0, 0) translate3d(-2em, 0, 0) scale3d(0.5, 1, 1);
		-webkit-transform-origin: 100% 50%;
		transform-origin: 100% 50%;
	}
	.navbar-open .page-navbar .nav > li {
		-webkit-transition: -webkit-transform 0.5s;
		transition: transform 0.5s;
		-webkit-transition-timing-function: cubic-bezier(0.56, 1.19, 0.2, 1.05);
		transition-timing-function: cubic-bezier(0.56, 1.19, 0.2, 1.05);
		-webkit-transform: translate3d(0, 0, 0);
		transform: translate3d(0, 0, 0);
	}
	.navbar-open .navbar-main > li:first-child {
		-webkit-transition-delay: 0.05s;
		transition-delay: 0.05s;
	}
	.navbar-open .navbar-main > li:nth-child(2) {
		-webkit-transition-delay: 0.1s;
		transition-delay: 0.1s;
	}
	.navbar-open .navbar-main > li:nth-child(3) {
		-webkit-transition-delay: 0.15s;
		transition-delay: 0.15s;
	}
	.navbar-open .navbar-main > li:nth-child(4) {
		-webkit-transition-delay: .2s;
		transition-delay: .2s;
	}
	.navbar-open .navbar-main > li:nth-child(5) {
		-webkit-transition-delay: .25s;
		transition-delay: .25s;
	}
	
}
.marker-hot:after{
	content: "HOT";
	display: inline-block;
	font-size: 12px;
	color: rgba(255,255,255,1);
	border-radius: 10px;
	padding: 1px 8px;
	transform: scale(0.75) translateY(-15px);
	line-height: normal;
	/*background: #467b96;*/
	background: linear-gradient(to right,#fa39f4 0,#991de1 100%);
}
.marker-new:after{
	content: "NEW";
	display: inline-block;
	font-size: 12px;
	color: rgba(255,255,255,1);
	border-radius: 10px;
	padding: 1px 8px;
	transform: scale(0.75) translateY(-15px);
	line-height: normal;
	/*background: #467b96;*/
	background: linear-gradient(to right,#6454ef 0,#3021ec 100%);
}
.navbar-brand {
	padding: 0;
	margin:0;
	font-size: 18px;
	line-height: 20px;
	text-indent:-9999em;
}
.navbar-brand:hover,
.navbar-brand:focus {
	text-decoration: none;
}
.navbar-brand > img {
	display: block;
}
@media (min-width: 768px) {
	.navbar-brand {
		float: left;
	}
	.navbar > .container .navbar-brand, .navbar > .container-fluid .navbar-brand {
		margin-left: 0;
	}
}
@media (min-width: 768px) {
	.navbar-toggle, .search-toggle {
	display: none;
	}
}
.navbar-nav {
	margin: 7.5px -15px;
}
.dropup, .dropdown {
	position: relative;
}
.navbar-nav > li > a {
	padding-top: 15px;
	padding-bottom: 15px;
	line-height: 43px;
}
@media (max-width: 767px) {
	.navbar-nav	.dropdown-menu {
		position: static;
		float: none;
		width: auto;
		margin-top: 0;
		background-color: transparent;
		border: 0;
		-webkit-box-shadow: none;
		box-shadow: none;
	}
	.navbar-nav .dropdown-menu > li > a,
	.navbar-nav .dropdown-menu .dropdown-header {
		padding: 8px 15px 8px 15px;
	}
	.navbar-nav .dropdown-menu > li > a {
		line-height: 20px;
	}
	.navbar-nav .dropdown-menu > li > a:hover,
	.navbar-nav .dropdown-menu > li > a:focus {
		background-image: none;
	}
}
@media (min-width: 768px) {
	.navbar-nav {
	margin: 0;
	}
	.navbar-nav > li {
	display:inline-block;
	}
}

.dropdown-menu, .dropdown-confirmation {
	position: absolute;
	top: 106%;
	left: 0;
	z-index: 1000;
	display: block;
	float: left;
	min-width: 200px;
	padding: 12px 0;
	margin: 2px 0 0;
	font-size: 15px;
	text-align: left;
	list-style: none;
	visibility: hidden;
	opacity: 0;
	background-color: #fff;
	border: 1px solid #dcdee0;
	-webkit-background-clip: padding-box;
	background-clip: padding-box;
	border-radius: 4px;
	-webkit-backface-visibility: hidden;
	-webkit-box-shadow: 0 10px 40px -5px rgba(37,45,51, .25);
	box-shadow: 0 10px 40px -5px rgba(37,45,51, .25);
	-webkit-transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
	transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
	-webkit-transform: translateX(0px) translateY(20px);
	transform: translateX(0px) translateY(20px);
}
.navbar-nav > li > .dropdown-menu {
	margin-top: 0;
	border-top-left-radius: 0;
	border-top-right-radius: 0;
}
.page-navbar .navbar-main > li .dropdown-menu {
	border: none;
	-webkit-border-radius: 4px;
	border-radius: 4px;
}

/* 2.2.5 Navbar: Buttons */

.site-search {
	float: right;
	width: 160px
}

.site-search form {
	position: relative
}
.site-search form:before {
	z-index: 102;
	position: absolute;
	content: '';
	display: inline-block;
	top: 50%;
	left: 6px;
	width: 24px;
	height: 24px;
	background: transparent url(img/icon-search.png) no-repeat center center;
	margin-top: -12px;
	color: #888;
}
.site-search input {
	border: none;
	border-radius: 50px;
	background-color: var(--bg-body);
	color: #888;
	font-size: 13px;
	padding: 0 10px 1px 32px;
	height: 38px;
	outline: 0;
	width: 100%
}

.site-search input:focus {
	background-color: #e9e9e6;
}

.search-toggle {
	position: absolute;
	right: 10px;
	min-width: 44px;
	height: 44px;
	text-align: center;
	z-index: 99;
	-webkit-transform: all ease .3s;
	transform: all ease .3s;
	text-indent: -9999em;
}
.search-toggle .ham{display:block;width:44px;height:44px;position:absolute;top:0;right: 0;background: transparent url(img/icon-search.png) no-repeat	center center;}
.search-toggle .ham:before{top:12px}
.search-toggle .ham:after{top:28px}
.on-search .search-toggle .ham:after,.on-search .search-toggle .ham:before{position:absolute;content:'';display:inline-block;width:23px;height:2px;transition:all ease .3s;outline:1px solid transparent;left:11px;background:#999}
.on-search .search-toggle .ham{background:none!important}
.on-search .search-toggle .ham:before{-webkit-transform:translateY(8px) rotateZ(-45deg);transform:translateY(8px) rotateZ(-45deg);background:#1e88e5}
.on-search .search-toggle .ham:after{-webkit-transform:translateY(-8px) rotateZ(45deg);transform:translateY(-8px) rotateZ(45deg);background:#1e88e5}


.on-search .site-search {
	animation:fadenum 0.2s;
}
@keyframes fadenum{
	0%{transform:translateX(100%);}
}
.on-search .site-search {
	z-index: 102;
	position: absolute;
	top: 0;
	right: 45px;
	left: 45px;
	margin: 0;
	display: block;
	float: none;
	width: auto;

}

	
.on-search .site-search input {
	height: 44px;
	background-color: #f6f6f6;
	color: #202935;
	border-radius: 4px
}

.on-search .site-search input:focus {
	background-color: #f6f6f6
}

@media(max-width:1024px) {
	.site-search {
		display: none
	}
}


/* 2.2.6 Page Navbar: Dropdown */

.page-navbar .navbar-main > li .dropdown-menu {
	border: none;
	-webkit-border-radius: 4px;
					border-radius: 4px;
}
.page-navbar .navbar-main > li .dropdown-menu:before {
		display: none;
}
@media (min-width: 768px) {
	html:not(.mobile) .page-navbar .navbar-main > li:hover .dropdown-menu,
	html:not(.mobile) .page-navbar .navbar-main > li.open .dropdown-menu {
		opacity: 1;
		visibility: visible;
		-webkit-transform: translateX(0px) translateY(0px);
		transform: translateX(0px) translateY(0px);
	}
}
@media (max-width: 767px) {
	.page-navbar .navbar-main > li .dropdown-menu {
		width: 100%;
		min-width: 0;
		padding: 0;
		background: none;
		-webkit-box-shadow: none;
		box-shadow: none;
		-webkit-transition: none;
		transition: none;
		-webkit-transform: translateX(0px) translateY(0);
		transform: translateX(0px) translateY(0);
	}
	.page-navbar .navbar-main > li .dropdown-menu:after {
		display: none;
	}
	.page-navbar .navbar-main > li .dropdown-menu {
		opacity: 1;
		visibility: visible;
	}
	.page-navbar .navbar-main > li .dropdown-menu > li {
		text-align: center;
	}
	.page-navbar .navbar-main > li .dropdown-menu > li > a {
	-webkit-transition: none;
	transition: none;
	}
}
.dropdown-menu > li > a, .dropdown-menu > li > span {
	display: block;
	padding: 4px 24px;
	clear: both;
	color: #616366;
	font-weight: 300;
	line-height: 25px;
	white-space: nowrap;
}
.dropdown-menu > li > a:hover, .dropdown-menu > li > span:hover {
	color:#000
}
.dropdown-menu:after, .dropdown-menu:before, .dropdown-confirmation:after, .dropdown-confirmation:before {
	position: absolute;
	left: 30px;
	top: -12px;
	display: block;
	content: " ";
	height: 12px;
	width: 12px;
	color: #fff;
	font-size: 40px;
	line-height: 26px;
	width: 0; height: 0; border-style: solid; border-width: 0 12px 12px 12px; border-color: transparent transparent #fff transparent;
}
/* 2.2.7 Page Navbar: Fixed */
.page-navbar.navbar-fixed {
	position: fixed;
	padding: 12px 0;
	background: #fff;
	-webkit-box-shadow: 0 0 40px rgba(37,45,51, .5);
	box-shadow: 0 0 40px rgba(37,45,51, .5);
	-webkit-transition: top .1s, background .1s, padding .1s;
	transition: top .1s, background .1s, padding .1s;
}
.page-navbar.navbar-fixed.navbar-hidden {
	top: -76px;
	opacity: 0;
}
.page-navbar.navbar-fixed.navbar-visible {
	top: 0;
	opacity: 1;
}









.list-item {
	position: relative;
	display: -ms-flexbox;
	display: -webkit-box;
	display: -webkit-flex;
	display: flex;
	-ms-flex-direction: column;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-webkit-flex-direction: column;
	flex-direction: column;
	min-width: 0;
	word-wrap: break-word;
}
.list-grid .list-item {
	padding: 1rem;
	margin: 0 0 1rem;
	-ms-flex-direction: row;
	-webkit-box-orient: horizontal;
	-webkit-box-direction: normal;
	-webkit-flex-direction: row;
	flex-direction: row;
}
.media {
	position: relative;
	display: block;
	overflow: hidden;
	margin-right: 1rem;
	padding: 0;
	-ms-flex-negative: 0;
	-webkit-flex-shrink: 0;
	flex-shrink: 0;
	border-radius: var(--radius-sm);
	-webkit-box-flex: 0;
	-ms-flex: 0 0 auto;
	flex: 0 0 auto;
	width: 30%;
	/*max-width: 180px;*/
}
.media-content {
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	border: 0;
	border-radius: inherit;
	background-size: cover;
	background-repeat: no-repeat;
	background-position: 50% 50%;
	background-color: var(--bg-light);
}
.media-content:after {
	content: "";
	position: absolute;
	display: block;
	width: 50%;
	height: 100%;
	top: 0;
	left: -75%;
	z-index: 2;
	background:-moz-linear-gradient(left,rgba(255,255,255,0)0,rgba(255,255,255,.2)50%,rgba(255,255,255,0)100%);
	background:-webkit-gradient(linear,left top,right top,color-stop(0%,rgba(255,255,255,0)),color-stop(50%,rgba(255,255,255,.2)),color-stop(100%,rgba(255,255,255,0)));
	background:-webkit-linear-gradient(left,rgba(255,255,255,0)0,rgba(255,255,255,.2)50%,rgba(255,255,255,0)100%);
	-webkit-transform:skewX(-25deg);
	-moz-transform:skewX(-25deg);
}
.list-item:hover .media-content:after {
	-webkit-animation: shine .85s;
	animation: shine .85s
}

.media:after {
	content: '';
	display: block;
	padding-top: 100%;
}

.media:after {
	padding-top: 66.66666%;
}

.list-content {
	padding: .125rem 0 .125rem 0;
	display: -ms-flexbox;
	display: -webkit-box;
	display: -webkit-flex;
	display: flex;
	-ms-flex-direction: column;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-webkit-flex-direction: column;
	flex-direction: column;
	-ms-flex: 1 1 auto;
	-webkit-box-flex: 1;
	-webkit-flex: 1 1 auto;
	flex: 1 1 auto;
	-ms-flex-pack: center;
	-webkit-box-pack: center;
	-webkit-justify-content: center;
	justify-content: center;
	min-width: 0
}
.list-body {
	-ms-flex: 1 1 auto;
	-webkit-box-flex: 1;
	-webkit-flex: 1 1 auto;
	flex: 1 1 auto
}

.list-footer {
	margin-top: .5rem
}

.list-title {
	overflow: hidden;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	margin-bottom: 0.5rem!important;
	font-size: 1.25rem;
}
.badge {
	display: inline-block;
	margin-right: 0.25rem!important;
	padding: 0.35em 0.65em;
	font-size: .75em;
	font-weight: 700;
	line-height: 1;
	color: #fff;
	text-align: center;
	white-space: nowrap;
	vertical-align: baseline;
	border-radius: 0.25rem;
}
.badge {
	font-size: .76rem;
	font-weight: 400;
	border-radius: var(--radius-xs);
	vertical-align: middle;
}
.badge-danger {
	color: #fff;
	background-image: -webkit-gradient(linear,left top,right top,from(#ff4740),color-stop(#ffa069),color-stop(#ffab55),to(#ff6c40));
	background-image: linear-gradient(to right,#ff4740,#ffa069,#ffab55,#ff6c40);
	background-size: 300% 100%;
	-webkit-transition: all .4s ease-in-out;
	transition: all .4s ease-in-out
}

.list-item:hover .badge-danger {
	background-position: 100% 0;
	-webkit-transition: all .4s ease-in-out;
	transition: all .4s ease-in-out
}

.badge-warning {
	color: #fff;
	background-image: -webkit-gradient(linear,left top,right top,from(#818181),color-stop(#505050),color-stop(#979797),to(#000));
	background-image: linear-gradient(to right,#818181,#505050,#979797,#000);
	background-size: 300% 100%;
	-webkit-transition: all .4s ease-in-out;
	transition: all .4s ease-in-out;
}
.list-item:hover .badge-warning {
	background-position: 100% 0;
	-webkit-transition: all .4s ease-in-out;
	transition: all .4s ease-in-out
}
.list-title .badge {
	position: relative;
	top: -0.1075em
}
.list-desc{
	display: none;
}
.list-desc p{
	overflow: hidden;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
}
.list-footer {
	font-size: .75rem;
	color: var(--color-muted) !important;
}
@media (max-width:767.98px) {
	.list-title .badge {
		position: relative;
		top: -.125rem
	}

	.list-footer {
		margin-top: .25rem
	}
}

@media (min-width: 1200px) {
	.content {
		width: 70%;
	}
	.sidebar {
		display: block!important;
		width: 30%;
		padding: 0 0 0 1rem;
	}
}
@media (min-width:992px) {
	.list-desc{
		display: block;
	}
}

.card, .block {
	min-width: 0;
	border: 0;
	background-color: #fff;
	border-radius: var(--radius-md);
	-webkit-box-shadow: 0rem 0.125rem 0.9375rem -0.3125rem rgb(10 10 10 / 3%);
	box-shadow: 0rem 0.125rem 0.9375rem -0.3125rem rgb(10 10 10 / 3%);
}
.card {
	padding: 1.25rem;
	margin-bottom: 1rem;
}
.card-bg {
	background: linear-gradient(-30deg,rgba(255,213,60,.71) 10%,rgba(161,230,243,.78)) no-repeat;
}
.widget {
	position: relative;
	padding: 1.25rem;
	margin-bottom: 1rem;
}
.widget-header {
	position: relative;
	font-size: 1.25rem;
	margin: 0 0 1rem;
}
.media_image{
	position: relative;
	display: block;
	overflow: hidden;
}
.widget_media_image img {
	max-width: 100%;
	height: auto;
	width: auto
}
.widget_media_image a:after {
	content: "";
	position: absolute;
	display: block;
	width: 50%;
	height: 100%;
	top: 0;
	left: -75%;
	z-index: 2;
	background:-moz-linear-gradient(left,rgba(255,255,255,0)0,rgba(255,255,255,.2)50%,rgba(255,255,255,0)100%);
	background:-webkit-gradient(linear,left top,right top,color-stop(0%,rgba(255,255,255,0)),color-stop(50%,rgba(255,255,255,.2)),color-stop(100%,rgba(255,255,255,0)));
	background:-webkit-linear-gradient(left,rgba(255,255,255,0)0,rgba(255,255,255,.2)50%,rgba(255,255,255,0)100%);
	-webkit-transform:skewX(-25deg);
	-moz-transform:skewX(-25deg);
}
.widget_media_image .media_image:hover a:after {
	-webkit-animation: shine .85s;
	animation: shine .85s
}


.widget ul {
	margin: 0;
	padding: 0 0 0 1.5rem;
}
.widget ul li {
	position: relative;
	list-style: circle;
	margin: 0 0 .5rem;
}


.pagination {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	margin-bottom:1rem;
	padding-left: 0;
	list-style: none;
}
.pagination ol {
	display: -webkit-box;
	display: -ms-flexbox;
	display: -webkit-flex;
	display: flex;
	-ms-flex-wrap: wrap;
	-webkit-flex-wrap: wrap;
	flex-wrap: wrap;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	-webkit-justify-content: center;
	justify-content: center;
	width: 100%;
	margin:0;
	list-style: none;
}
.pagination ol a{
	display: flex;
	align-items: center;
	justify-content: center;
	min-width: 2.25rem;
	height: 2.25rem;
	text-align: center;
	padding: 0 0.375rem;
	margin: 0.25rem;
	background-color: var(--bg-btn);
	color: var(--color-muted);
	border-radius: var(--radius-sm);
}
.pagination ol a:hover, .pagination ol li.current a {
	color: #fff;
	background-color: var(--color-primary);
}
.pagination ol span {
	display: flex;
	align-items: center;
	justify-content: center;
	min-width: auto;
	height: 2.25rem;
	text-align: center;
	padding: 0 0.375rem;
	margin: 0.25rem;
	background-color: transparent;
	border-radius: 0;
}


.breadcrumb {
	font-size: .85rem;
}
.post-header h1 {
	margin-bottom:1rem;
}
.post-meta {
	font-size: .85rem;
}
.post-content {
	
}
.post-content a {
	color: #c03813;
	text-decoration: underline;
}
.post-content a:hover {
	color: #fe4c1c;
	text-decoration: underline;
}

/* ------------------
 * hljs code
 * --------------- */
.post-content code::-webkit-scrollbar {
	height: 8px
}
.post-content code::-webkit-scrollbar-thumb {
	background: #c4c4c4 !important;
	border-radius: 12px
}

.post-content pre {
	position: relative;
	padding: 30px 10px 10px 10px;
	color: #fff;
	background: #282b2e;
	border-radius: var(--radius-md);
	overflow-y: auto;
}

.post-content pre::after {
	display: block;
	content: " ";
	position: absolute;
	border-radius: 50%;
	background: #ff5f56;
	width: 12px;
	height: 12px;
	top: 0;
	left: 12px;
	margin-top: 12px;
	-webkit-box-shadow: 20px 0 #ffbd2e,40px 0 #27c93f;
	box-shadow: 20px 0 #ffbd2e,40px 0 #27c93f
}
pre code.hljs{display:block;overflow-x:auto;padding:1em}
code.hljs{padding:3px 5px}
.hljs{color:#a9b7c6;background:#282b2e}
.hljs-bullet,.hljs-literal,.hljs-number,.hljs-symbol{color:#6897bb}
.hljs-deletion,.hljs-keyword,.hljs-selector-tag{color:#cc7832}
.hljs-link,.hljs-template-variable,.hljs-variable{color:#629755}
.hljs-comment,.hljs-quote{color:grey}
.hljs-meta{color:#bbb529}
.hljs-addition,.hljs-attribute,.hljs-string{color:#6a8759}
.hljs-section,.hljs-title,.hljs-type{color:#ffc66d}
.hljs-name,.hljs-selector-class,.hljs-selector-id{color:#e8bf6a}
.hljs-emphasis{font-style:italic}
.hljs-strong{font-weight:700}
/* ------------------
 * Comment list
 * --------------- */
.comment-list, .comment-list ol {
list-style: none;
margin:0;
padding:0;
}
#response{
	display: none;
}
.comment, .comment-form, .author-info {
	position: relative;
	padding-left: 4rem;
	margin-bottom: 2rem
}

.comment:last-child {
	margin-bottom: 0
}

.comment-content {
	text-align: justify;
	line-height: 1.8
}

.comment-avatar img, .avatar {
	position: absolute;
	left: 0;
	border-radius: 100%;
}
.comment-body input, .comment-body textarea, .comment-form input, .comment-form textarea {
	display: block;
	width: 100%;
	color: #8d8f96;
	background-color: #f0f2f5;
	background-clip: padding-box;
	border: 1px solid #eceef5;
	border-radius: 4px;
	padding: 0.5rem 0.75rem;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
}
.comment-body input:hover,.comment-body textarea:hover {
	background-color: #f0f2f5;

}
.comment-body input:focus, .comment-body textarea:focus {
	color: #212529;
	background-color: #f0f2f5;
	border-color: #eceef5;
	outline: 0;
	-webkit-box-shadow: inset -5px -5px 8px #f2f6ff, inset 5px 5px 8px #e6ebf3;
	box-shadow: inset -5px -5px 8px #f0f2f7, inset 5px 5px 8px #e7ebf1;
}
.form-submit {
	text-align: right!important;
}
.comment-body button, .comment-form button {
	padding: 0.5rem 1.625rem;
	color: #fff;
	background-color: #484848;
	border: 1px solid transparent;
	border-color: #484848;
	border-radius:4px;
	cursor: pointer;
}
.comment-body button:hover, .comment-form button:hover {
	background-color: #1c1f23;
	border-color: #1a1e21;
}


.comment-inner {
	text-align: justify;
	line-height: 1.85
}

.comment-author {
	position: relative
}
.comment-approve {
	display: inline-block;
	font-size: 12px;
	color: rgba(255,255,255,1);
	border-radius: 10px;
	padding: 1px 8px 2px 8px;
	transform: scale(0.85) translateY(-2px);
	line-height: normal;
}
.comment-approve.author {
	background: #999;
}
.comment-approve.user {
	/*background: linear-gradient(to right,#fd7a64 0,#fb2d2d 100%);*/
	background: linear-gradient(to right,#59c3fb 0,#268df7 100%);
	background-image: linear-gradient(117deg,#f8e2c4,#f3bb6c);
	color: #754e19;
}
.comment .comment-children {
	margin-top: 1.5rem
}

@media (max-width:767.98px) {
	.comment-form,.comment {
		padding-left: 3.5rem
	}

	.comment-avatar img, .avatar {
		width: 2.5rem !important;
		height: 2.5rem !important
	}

	.comment .children .comment {
		padding-left: 3rem
	}

	.comment .children .comment-avatar {
		width: 2rem !important;
		height: 2rem !important
	}
}

.footer {
	padding: 1rem 0;
	color: var(--night-color-body);
	background:#000 url(img/footer-bg.jpg) 0 0 no-repeat;
	background-size: cover;
}
.footer a {
	color: var(--night-color-body);
}
.footer a:hover {
	color: var(--color-primary);
}
.insert-post {
	max-width: 440px;
	margin-bottom: 26px;
	display: flex;
	padding: 14px;
	background: #f5f6f7;
	color: #666;
	position: relative;
	align-items: center;
	overflow: hidden;
	margin: 0 auto;
	border-radius: 12px;
}
.insert-post-bg {
	position: absolute;
	width: 100%;
	height: 100%;
	left: 0;
	top: 0;
	overflow: hidden;
	opacity: .2;
	z-index: 0;
}

.insert-post-bg img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	filter: blur(20px);
	transform: scale(1.1);
	opacity: .5;
}

.insert-post h2 {
	font-size: 16px;
	font-weight: 600;
	margin-bottom: 5px;
	color: #333;
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 2;
	overflow: hidden;
	margin-top: 0;
	margin-bottom: 8px;
	border-bottom: 1px solid #eee;
}

.insert-post h2::before {
	display: none
}

.insert-post-thumb {
	width: 100px;
	height: 100px;
	display: block;
	position: relative;
	z-index: 1;
}

.insert-post-thumb img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.insert-post-content {
	padding-left: 16px;
	flex: 1;
	position: relative;
	z-index: 1;
}

.insert-post-content h2 {
	margin-right: 12px
}
.insert-post-meta {
	display: flex;
	justify-content: space-between;
	align-items: center;
	font-size: 13px
}
.insert-post-meta-cat, .insert-post-meta-date-views {
	display: flex;
	align-items: center;
}
.insert-post-meta-date-views {
	justify-content: space-between;
}

.dark-mode {
	background-color: var(--night-bg-body);
}
.dark-mode .card, .dark-mode .block {
	background-color: var(--night-bg-secondary);
	-webkit-box-shadow: none;
	box-shadow: none;
}
.dark-mode, .dark-mode a:not(.btn) {
	color: var(--night-color-body);
}