/* 表现层 */
:root {
  --marquee-duration: 38s;    /* 动画时长 */
  --link-hover: #d0a186;      /* 悬停颜色 */
  --safe-margin: 10px;        /* 安全边距 */
}
/* 外部容器，限制字幕的显示区域 */
.marquee-container {
    max-width: 1340px;
    overflow: hidden;      /* 隐藏超出的文字 */
    white-space: nowrap;   /* 禁止换行 */
    /*border-top: 2px solid #555;  增加顶部边框 */
    margin: 0 auto;
    padding: 5px 0;        /* 上下内边距 */
}

.marquee-container {
  position: relative;
  overflow: hidden;
  contain: content;  /* 限制渲染边界 */
  will-change: contents;
}

.marquee {
  display: inline-block;
  white-space: nowrap;
  transform: translate3d(0,0,0); /* GPU加速 */
  backface-visibility: hidden;
  
  /* 响应式动画控制 */
  animation: scroll-left var(--marquee-duration) linear infinite;
}

@keyframes scroll-left {
  0% { transform: translateX(100vw); }       /* 视口单位 */
  100% { transform: translateX(calc(-100% - var(--safe-margin))); } /* 百分比+变量 */
}


/* 无障碍支持 */
@media (prefers-reduced-motion: reduce) {
  .marquee {
    animation: none;
    white-space: normal;
  }
}

/* 交互优化 */
.marquee:hover {
  animation-play-state: paused;
}

.marquee a {
  font: 700 14px/1.5 system-ui;
  color: #fff;
  padding: 8px 10px;
  transition: color 0.3s, transform 0.2s;
}

.marquee a:hover {
  color: var(--link-hover);
  transform: scale(1.05);
}

/* 移动端适配 */
@media (max-width: 768px) {
  .marquee {
    animation-duration: calc(var(--marquee-duration) * 1.5);
  }
}




	.easy-autocomplete {
		position: relative;
	}

	.easy-autocomplete a {
		display: block;
		color: #000;
	}

	.easy-autocomplete-container {
		left: 0;
		position: absolute;
		width: 100%;
		z-index: 154;
		text-align: left;
		border-radius: 10px 0 10px 10px;
		border-radius: 10px;
		overflow: hidden;
		top: 40px;
	}

	.easy-autocomplete-container ul {
		background: none repeat scroll 0 0 #131313;
		border: 0;
		display: none;
		margin-top: 0;
		padding-bottom: 0;
		padding-left: 0;
		position: relative;
		top: 0;
	}

	* {
		margin: 0;
		padding: 0;
		outline: none;
		text-decoration: none;
		-webkit-box-sizing: border-box;
		-moz-box-sizing: border-box;
		box-sizing: border-box;
	}

	body {
		min-width: 320px;
		overflow-x: hidden;
		color: #fff;
		font: 300 16px "K2D", sans-serif;
		-webkit-transition: .3s;
		-o-transition: .3s;
		transition: .3s;
		background-color: #000;
		/* padding-top: 55px!important; */
	}

	/* body.no-scroll {overflow: hidden;pointer-events: none;} */
	/* html,body {height: 100%;} */
	ul {
		margin: 0;
		padding: 0;
		list-style: none;
	}

	input {
		font-family: "K2D", sans-serif;
	}

	img {
		max-width: 100%;
		height: auto;
		vertical-align: middle;
	}

	a {
		text-decoration: none;
		color: #ff8e00;
	}

	.flex {
		display: -webkit-box;
		display: -webkit-flex;
		display: -ms-flexbox;
		display: flex;
		-webkit-flex-wrap: wrap;
		-ms-flex-wrap: wrap;
		flex-wrap: wrap;
		-webkit-box-align: start;
		-webkit-align-items: flex-start;
		-ms-flex-align: start;
		align-items: flex-start;
	}

	p {
		line-height: 24px;
	}

	.wrapped {
		display: -webkit-box;
		display: -webkit-flex;
		display: -ms-flexbox;
		display: flex;
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal;
		-webkit-flex-direction: column;
		-ms-flex-direction: column;
		flex-direction: column;
		height: 100%;
	}

	.wrapped .content,
	.wrapped .sidebar {
		-webkit-transition: .3s;
		-o-transition: .3s;
		transition: .3s;
	}
	
	.wrapped.open .sidebar {
		-webkit-transform: translate3d(0, 0, 0);
		transform: translate3d(0, 0, 0);
		opacity: 1;
		pointer-events: all;
	}


	.sidebar {
		border-radius: 0 10px 10px 0;
		border: 2px solid #252527;
		border-left: none;
		background-color: #000000;
		width: 260px;
		padding: 20px 10px 30px;
		position: fixed;
		top: 60px;
		left: 0;
		bottom: 0;
		z-index: 6;
		-webkit-transition: .3s;
		-o-transition: .3s;
		transition: .3s;
		-webkit-transform: translate3d(-100%, 0, 0);
		transform: translate3d(-100%, 0, 0);
		overflow-y: auto;
		opacity: 0;
		pointer-events: none;
	}

	.sidebar::-webkit-scrollbar-track {
		-webkit-box-shadow: none;
		background: 0 0;
		border-radius: 3px;
	}

	.sidebar::-webkit-scrollbar {
		width: 5px;
		background-color: transparent;
		margin-right: 10px;
		border-radius: 3px;
	}

	.sidebar .block {
		margin-bottom: 50px;
	}

	.sidebar .block:last-child {
		margin-bottom: 0;
	}

	.sidebar::-webkit-scrollbar-thumb {
		background: #ff8e00;
		border: 1px solid #ff8e00;
	}

	.sidebar .title {
		padding: 0 10px;
	}

	.sidebar .title h4 {
		font-size: 21px;
	}

	.sidebar .list-link li a {
		display: -webkit-box;
		display: -webkit-flex;
		display: -ms-flexbox;
		display: flex;
		-webkit-box-pack: justify;
		-webkit-justify-content: space-between;
		-ms-flex-pack: justify;
		justify-content: space-between;
		position: relative;
		padding: 12px 20px;
		overflow: hidden;
		border-radius: 20px;
		color: #fff;
	}

	.sidebar .list-link li a:before {
		content: '';
		display: block;
		position: absolute;
		left: 0;
		top: 0;
		z-index: 1;
		width: 100%;
		height: 100%;
		background: -webkit-linear-gradient(76deg, #ff6000 0%, #ff9600 100%);
		background: -o-linear-gradient(76deg, #ff6000 0%, #ff9600 100%);
		background: linear-gradient(14deg, #ff6000 0%, #ff9600 100%);
		opacity: 0;
		-webkit-transition: .3s;
		-o-transition: .3s;
		transition: .3s;
	}

	@media (min-width: 992px) {
		.sidebar .list-link li a:hover span {
			color: #000;
		}

		.sidebar .list-link li a:hover:before {
			opacity: 1;
		}
	}

	.sidebar .list-link li a span {
		position: relative;
		z-index: 2;
	}

	.sidebar .list-link li a .name {
		color: #ffffff;
		font-size: 14px;
		font-weight: 300;
		-webkit-transition: .3s;
		-o-transition: .3s;
		transition: .3s;
	}

	.wrap {
		max-width: 1280px;
		margin: 0 auto;
		padding: 0 10px;
		min-width: 290px;
		width: 100%;
	}

	main {
		-webkit-box-flex: 1;
		-webkit-flex: 1 0 auto;
		-ms-flex: 1 0 auto;
		flex: 1 0 auto;
		position: relative;
		padding: 10px 0;
	}

	.nav .menu {
		display: -webkit-box;
		display: -webkit-flex;
		display: -ms-flexbox;
		display: flex;
		-webkit-box-align: center;
		-webkit-align-items: center;
		-ms-flex-align: center;
		align-items: center;
	}

	.nav .menu li a {
		color: #ffffff;
		font-size: 14px;
		font-weight: 400;
		text-transform: uppercase;
		-webkit-transition: .3s;
		-o-transition: .3s;
		transition: .3s;
		padding: 30px;
		margin: 0 10px;
		height: 100%;
		display: inline-block;
		position: relative;
		cursor: pointer;
	}

	@media (min-width: 992px) {
		.nav .menu li a:hover {
			color: #ff8e00;
		}
	}

	.nav .menu li a.active {
		color: #ff8e00;
	}

	.nav .menu li a.active:before {
		opacity: 1;
	}

	.nav .menu li a:before {
		content: '';
		display: block;
		width: 100%;
		height: 2px;
		background: #ff8e00;
		position: absolute;
		left: 0;
		bottom: -2px;
		opacity: 0;
		-webkit-transition: .3s;
		-o-transition: .3s;
		transition: .3s;
	}

	.header {
		-webkit-box-shadow: 0 2px 0 #252527;
		box-shadow: 0 2px 0 #252527;
		background-color: #000000;
		height: 60px;
		display: -webkit-box;
		display: -webkit-flex;
		display: -ms-flexbox;
		display: flex;
		-webkit-box-align: center;
		-webkit-align-items: center;
		-ms-flex-align: center;
		align-items: center;
		pointer-events: all;
	}

	.header .wrap {
		max-width: 1280px;
		position: relative;
	}

	.header .wrap,
	.header .flex {
		height: 100%;
	}

	.header .flex {
		-webkit-box-pack: justify;
		-webkit-justify-content: space-between;
		-ms-flex-pack: justify;
		justify-content: space-between;
	}

	.header .nav {
		-webkit-transition: .3s;
		-o-transition: .3s;
		transition: .3s;
	}

	.header .hamb-menu {
		margin-right: 20px;
		font-size: 20px;
		cursor: pointer;
	}

	@media (min-width: 992px) {
		.header .hamb-menu:hover:before {
			color: #ff8e00;
		}
	}

	.header .hamb-menu:before {
		-webkit-transition: .3s;
		-o-transition: .3s;
		transition: .3s;
	}

	.header .btn-search {
		position: relative;
		width: 25px;
	}

	.header .btn-search span {
		font-size: 20px;
		display: block;
		position: absolute;
		left: 50%;
		top: 50%;
		-webkit-transition: .3s;
		-o-transition: .3s;
		transition: .3s;
		-webkit-transform: translate(-50%, -50%);
		-ms-transform: translate(-50%, -50%);
		-o-transform: translate(-50%, -50%);
		transform: translate(-50%, -50%);
		z-index: 5;
	}

	.header .btn-search span:before {
		-webkit-transition: .3s;
		-o-transition: .3s;
		transition: .3s;
	}

	@media (min-width: 992px) {
		.header .btn-search span.icon-search:hover:before {
			color: #ff8e00;
		}
	}

	.header .flex {
		-webkit-box-align: center;
		-webkit-align-items: center;
		-ms-flex-align: center;
		align-items: center;
	}

	.header .link-icon {
		padding: 5px;
		margin: 0 10px;
		font-size: 20px;
		cursor: pointer;
	}

	.header .link-icon:before {
		-webkit-transition: .3s;
		-o-transition: .3s;
		transition: .3s;
		color: #fff;
	}

	@media (min-width: 992px) {
		.header .link-icon:hover:before {
			color: #ff8e00;
		}
	}

	.header .left-block,
	.header .right-block {
		display: -webkit-box;
		display: -webkit-flex;
		display: -ms-flexbox;
		display: flex;
		-webkit-box-align: center;
		-webkit-align-items: center;
		-ms-flex-align: center;
		align-items: center;
	}

	.player-trailer .l-block {
		width: -webkit-calc(100% - 320px);
		width: calc(100% - 0px);
	}

	.player-trailer .l-block .main-img {
		position: relative;
		width: 100%;
		margin-bottom: 20px;
	}

	.player-trailer .l-block .info-block {
		-webkit-box-pack: justify;
		-webkit-justify-content: space-between;
		-ms-flex-pack: justify;
		justify-content: space-between;
		border-bottom: 1px solid #252527;
	}

	.player-trailer .l-block .block-tags {
		display: -webkit-box;
		display: -webkit-flex;
		display: -ms-flexbox;
		display: flex;
		-webkit-flex-wrap: nowrap;
		-ms-flex-wrap: nowrap;
		flex-wrap: nowrap;
		-webkit-box-align: self-start;
		-webkit-align-items: self-start;
		-ms-flex-align: self-start;
		align-items: self-start;
		/*margin-bottom: 15px;*/
	}

	.player-trailer .l-block .block-tags .label {
		display: inline-block;
		margin-right: 10px;
		margin-top: 4px;
		color: #ffffff;
		font-size: 14px;
		font-weight: 300;
		line-height: 18px;
		white-space: nowrap;
	}

	.player-trailer .l-block .block-tags .tags {
		display: -webkit-box;
		display: -webkit-flex;
		display: -ms-flexbox;
		display: flex;
		-webkit-flex-wrap: wrap;
		-ms-flex-wrap: wrap;
		flex-wrap: wrap;
		width: -webkit-calc(100% + 6px);
		width: calc(100% + 6px);
		margin-left: -3px;
		margin-bottom: 0;
	}

	.search {
		position: absolute;
		left: 50%;
		top: 20px;
		-webkit-transform: translateX(-50%);
		-ms-transform: translateX(-50%);
		-o-transform: translateX(-50%);
		transform: translateX(-50%);
		width: -webkit-calc(100% - 700px);
		width: calc(100% - 700px);
		max-width: 778px;
		z-index: 10;
		-webkit-transition: .3s;
		-o-transition: .3s;
		transition: .3s;
		opacity: 0;
		pointer-events: none;
	}

	.search .input.wrap-input {
		position: relative;
		max-width: 100%;
	}

	.search .input.wrap-input>.easy-autocomplete {
		width: 100% !important;
	}

	.search .input.wrap-input input {
		border-radius: 20px 20px 0 20px;
		width: -webkit-calc(100% - 20px);
		width: calc(100% - 20px);
		border-radius: 20px;
		width: 100%;
	}

	.search .input.wrap-input .search-btn {
		position: absolute;
		right: 0;
		top: 0;
		width: 60px;
		height: 40px;
		border-radius: 20px 20px 20px;
		background-color: #ffffff;
		background-image: -webkit-linear-gradient(76deg, #ff6000 0%, #ff9600 100%);
		background-image: -o-linear-gradient(76deg, #ff6000 0%, #ff9600 100%);
		background-image: linear-gradient(14deg, #ff6000 0%, #ff9600 100%);
		border: none;
	}

	.search .input.wrap-input .search-btn .icon-search {
		font-size: 20px;
	}

	.search .input.wrap-input .search-btn .icon-search:before {
		color: #000;
	}

	.heading {
		display: -webkit-box;
		display: -webkit-flex;
		display: -ms-flexbox;
		display: flex;
		-webkit-box-align: start;
		-webkit-align-items: flex-start;
		-ms-flex-align: start;
		align-items: flex-start;
		-webkit-box-pack: justify;
		-webkit-justify-content: space-between;
		-ms-flex-pack: justify;
		justify-content: space-between;
	}

	.title {
		position: relative;
		margin-bottom: 15px;
	}

	.title.border h4 {
		padding-bottom: 10px;
		border-bottom: 2px solid #ff8e00;
	}

	.title h1,
	.title h4 {
		position: relative;
		color: #ffffff;
		font-size: 26px;
		font-weight: 400;
	}

	.tags {
		display: -webkit-box;
		display: -webkit-flex;
		display: -ms-flexbox;
		display: flex;
		-webkit-flex-wrap: wrap;
		-ms-flex-wrap: wrap;
		flex-wrap: wrap;
		width: -webkit-calc(100% + 6px);
		width: calc(100% + 6px);
		margin-left: -3px;
		margin-bottom: 20px;
	}

	.tags a {
		-webkit-transition: .3s;
		-o-transition: .3s;
		transition: .3s;
		display: inline-block;
		padding: 7px 10px;
		margin: 0 3px 10px;
		line-height: 16px;
		border-radius: 15px;
		background-color: #252527;
		font-size: 14px;
		font-weight: 400;
		color: #6e6e74;
		border-radius: 20px;
		text-transform: uppercase;
		position: relative;
		overflow: hidden;
	}

	.tags a:before {
		content: '';
		display: block;
		position: absolute;
		left: 0;
		top: 0;
		border-radius: 20px;
		z-index: 1;
		width: 100%;
		height: 100%;
		background: -webkit-linear-gradient(76deg, #ff6000 0%, #ff9600 100%);
		background: -o-linear-gradient(76deg, #ff6000 0%, #ff9600 100%);
		background: linear-gradient(14deg, #ff6000 0%, #ff9600 100%);
		opacity: 0;
		-webkit-transition: .3s;
		-o-transition: .3s;
		transition: .3s;
	}

	.tags a span {
		font-size: inherit;
		font-weight: inherit;
		color: inherit;
		font-family: inherit;
		font-style: inherit;
		position: relative;
		z-index: 2;
	}

	@media (min-width: 992px) {
		.tags a:hover {
			color: #000;
		}

		.tags a:hover:before {
			opacity: 1;
		}
	}

	.shadow {
		position: fixed;
		width: 100%;
		height: 100%;
		z-index: 10;
		background: rgba(0, 0, 0, 0.6);
		display: block;
		-webkit-transition: .3s;
		-o-transition: .3s;
		transition: .3s;
		opacity: 0;
		pointer-events: none;
	}

	.block-post {
		display: -webkit-box;
		display: -webkit-flex;
		display: -ms-flexbox;
		display: flex;
		-webkit-flex-wrap: wrap;
		-ms-flex-wrap: wrap;
		flex-wrap: wrap;
		width: -webkit-calc(100% + 20px);
		width: calc(100% + 20px);
		margin-left: -10px;
	}

	.block-post .item {
		margin: 0 10px 15px;
		width: -webkit-calc(25% - 20px);
		width: calc(25% - 20px);
		display: block;
	}

	@media (min-width: 992px) {

		.block-post .item:hover .title-post {
			color: #ff8e00;
		}
	}

	.block-post .item .img {
		position: relative;
		overflow: hidden;
		border-radius: 10px;
		width: 100%;
		padding-bottom: 56.9%;
		margin-bottom: 15px;
	}

	.block-post .item .img img {
		left: 0;
		right: 0;
		top: 0;
		bottom: 0;
		max-width: 100%;
		width: 100%;
		height: 100%;
		max-height: 100%;
		position: absolute;
		object-fit: cover;
	}

	.block-post .item .title-post {
		color: #ffffff;
		font-size: 14px;
		font-weight: 300;
		line-height: 20px;
		-webkit-transition: .3s;
		-o-transition: .3s;
		transition: .3s;
		display: -webkit-box;
		-webkit-line-clamp: 2;
		-webkit-box-orient: vertical;
		overflow: hidden;
		max-height: 40px;
	}

	.footer .nav {
		margin-bottom: 25px;
	}

	.footer .nav .menu li a {
		padding: 15px 30px;
	}

	.footer .block-footer {
		border-top: 2px solid #252527;
		padding: 10px 0 100px;
	}

	.footer .block-footer .flex {
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal;
		-webkit-flex-direction: column;
		-ms-flex-direction: column;
		flex-direction: column;
		-webkit-box-align: center;
		-webkit-align-items: center;
		-ms-flex-align: center;
		align-items: center;
	}

	.footer .block-footer .copyright {
		color: #65656a;
		font-size: 14px;
		font-weight: 300;
		text-align: center;
		line-height: 30px;
	}

	@font-face {
		font-family: 'icomoon';
		src: url("../font/icomoon.eot");
		src: url("../font/icomoon.eot#iefix") format("embedded-opentype"), url("../font/icomoon.ttf") format("truetype"), url("../font/icomoon.woff") format("woff"), url("../fonts/icomoon.svg?4w2i7d#icomoon") format("svg");
		font-weight: normal;
		font-style: normal;
		font-display: block;
	}

	[class^="icon-"] {
		/* use !important to prevent issues with browser extensions that change fonts */
		font-family: 'icomoon' !important;
		speak: never;
		font-style: normal;
		font-weight: normal;
		font-variant: normal;
		text-transform: none;
		line-height: 1;
		/* Better Font Rendering =========== */
		-webkit-font-smoothing: antialiased;
		-moz-osx-font-smoothing: grayscale;
	}

	.icon-hamb:before {
		content: "\e90c";
	}

	.icon-search:before {
		content: "\e918";
	}

	.form .input {
		max-width: 340px;
		position: relative;
		margin-bottom: 30px;
	}

	/* .form .input.load-file-input .input-field {display: block;left: 0;position: static;width: 100%;height: 40px;border-radius: 20px;background-color: #fff;padding: 10px 20px;color: #6e6e74;font-size: 14px;border: none;opacity: 1;font-weight: 300;} */

	.form .input input {
		width: 100%;
		height: 40px;
		border-radius: 20px;
		background-color: #fff;
		padding: 10px 20px;
		color: #6e6e74;
		font-size: 14px;
		border: none;
		font-weight: 300;
	}

	@media (max-width: 992px) {
		.form .input {
			margin-bottom: 20px;
		}
	}

	@media (max-width: 1700px) {
		.nav .menu li a {
			padding: 30px 15px;
		}
	}

	@media (max-width: 1450px) {
		.nav .menu li a {
			margin: 0;
			padding: 30px 15px;
		}
	}

	@media (max-width: 1350px) {
		.nav .menu li a {
			padding: 30px 10px;
		}
	}

	@media (max-width: 1270px) {
		.nav .menu li a {
			padding: 30px 5px;
		}
	}

	@media (max-width: 1200px) {
		.header .link-icon {
			margin: 0 5px;
		}
	}

	@media (max-width: 1100px) {

		.player-trailer .l-block {
			width: 100%;
		}
	}

	@media (max-width: 1100px) {

		.header .nav,
		.footer .nav {
			display: none;
		}
	}

	@media (max-width: 992px) {

		.title h1,
		h4 {
			font-size: 22px;
		}

		.block-post .item {
			width: -webkit-calc(33.33% - 20px);
			width: calc(33.33% - 20px);
		}

		.header .link-icon {
			margin: 0;
		}

		.header .left-block {
			-webkit-transition: .3s;
			-o-transition: .3s;
			transition: .3s;
		}

		.search {
			left: 15px;
			-webkit-transform: translateX(0%);
			-ms-transform: translateX(0%);
			-o-transform: translateX(0%);
			transform: translateX(0%);
			width: -webkit-calc(100% - 70px);
			width: calc(100% - 70px);
			max-width: 100%;
		}

		/*.pagination .item:nth-child(8),*/
		/*.pagination .item:nth-child(9),*/
		/*.pagination .item:nth-child(10) {*/
		/*	display: none;*/
		/*}*/
	}

	@media (max-width: 767px) {

		.sidebar {
			margin-bottom: 80px;
		}

		main {
			padding: 5px 0;
		}

		.tags {
			margin-bottom: 15px;
		}

		.block-post .item {
			width: -webkit-calc(50% - 20px);
			width: calc(50% - 20px);
		}

		.heading {
			/*-webkit-flex-wrap: wrap;*/
			-ms-flex-wrap: wrap;
			/*flex-wrap: wrap;*/
			/*margin-bottom: 20px;*/
		}
	}

	@media (max-width: 567px) {

		p {
			line-height: 16px;
		}

		/*.block-post .item {*/
		/*	width: -webkit-calc(100% - 20px);*/
		/*	width: calc(100% - 20px);*/
		/*}*/

		.player-trailer .l-block .block-tags {
			-webkit-flex-wrap: wrap;
			-ms-flex-wrap: wrap;
			flex-wrap: wrap;
		}

		.player-trailer .l-block .block-tags .label {
			margin-right: 0;
			/*margin-bottom: 10px;*/
		}
	}

	.player-wrap {
		position: relative;
	}

	#kt_player {
		position: absolute !important;
	}

	/* select2 plugin */

	/* select2 plugin */

	/* video / album edit */

	/* posts */

	.block-post:after {
		content: "";
		display: block;
		clear: both;
	}

	/*.block-post .item .img img {*/
	/*	opacity: 0;*/
	/*	transition: opacity 1s;*/
	/*}*/

	/*.block-post .item .img img.lazyloaded {*/
	/*	opacity: 1;*/
	/*}*/
.madou {
	padding: 0px;
}
@media (max-width: 1390px){
.madou {
	padding: 0 15px;
	}
}
.nobottom{margin-bottom: 0;}