/* 色彩搭配 */
:root {
	--dynamic-theme-color: #3ABDA3;
	/* #002AA2 */
	--dynamic-auxiliary-color: #FD8040;
	/* #E10020 #D9B766 */

	--dynamic-tip-color: #FFB71B;
	--dynamic-title-color: #333333;
	--dynamic-text-color: #666666;
	--dynamic-describe-color: #999999;
	--dynamic-prompt-color: #BBBBBB;
	--dynamic-divider-color: #E6E6E6;
	--dynamic-bgColor-color: #F5F5F5;
}

[v-cloak] {
	display: none;
}

#app.english {
	font-family: 'Times New Roman', Times, serif !important;
}

/* 黑白模式 */
.silent-body {
	-webkit-filter: grayscale(100%);
	-moz-filter: grayscale(100%);
	-ms-filter: grayscale(100%);
	-o-filter: grayscale(100%);
	filter: grayscale(100%);
	filter: "gray";
}

.web-video {
	width: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
}

.web-video #player-container-id {
	width: 100%;
}

/* 视频 */
.video-js .vjs-error-display .vjs-control {
	display: none;
}

.video-js .vjs-modal-dialog.vjs-error-display {
	background: rgba(24, 24, 24, 1);
}

.web-video .tcp-skin .tcp-right-click-popup-menu {
	display: none;
}

.web-video .video-js .vjs-tech {
	height: auto;
	position: relative;
}

.web-video .player-container-id-dimensions {
	height: auto;
}

body {
	font-family: PingFang SC;
	line-height: 1.1;
}

body,
html,
div {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

img {
	border: 0;
	display: block;
}

img[src=""] {
	opacity: 0;
}

.img img {
	width: 100%;
	height: 100%;
	overflow: hidden;
}

video {
	width: 100%;
	height: auto;
	object-fit: fill;
	outline: none;
}

.web-main {
	/* width: 62.5%; */
	width: 1200px;
	margin: 0 auto;
}

/* 输入框 */
#app .el-input__inner,
#app input {
	background-color: transparent;
	outline: none;
	border: none;
	font-family: PingFang SC;
}

#app .el-input__inner::-webkit-input-placeholder {
	font-size: 14px;
	font-weight: 400;
	color: var(--dynamic-text-color);
	font-family: PingFang SC;
}

#app .el-input__inner::-moz-placeholder {
	font-size: 14px;
	font-weight: 400;
	color: var(--dynamic-text-color);
	font-family: PingFang SC;
}

#app .el-input__inner::-ms-input-placeholder {
	font-size: 14px;
	font-weight: 400;
	color: var(--dynamic-text-color);
	font-family: PingFang SC;
}

#app input::-webkit-input-placeholder {
	font-size: 14px;
	font-weight: 400;
	color: var(--dynamic-text-color);
	font-family: PingFang SC;
}

#app input::-moz-placeholder {
	font-size: 14px;
	font-weight: 400;
	color: var(--dynamic-text-color);
	font-family: PingFang SC;
}

#app input::-ms-input-placeholder {
	font-size: 14px;
	font-weight: 400;
	color: var(--dynamic-text-color);
	font-family: PingFang SC;
}

/* 英文下字体 */
#app.english .el-input__inner {
	font-family: 'Times New Roman', Times, serif !important;
}

#app.english .el-input__inner::-webkit-input-placeholder {
	font-family: 'Times New Roman', Times, serif !important;
}

#app.english .el-input__inner::-moz-placeholder {
	font-family: 'Times New Roman', Times, serif !important;
}

#app.english .el-input__inner::-ms-input-placeholder {
	font-family: 'Times New Roman', Times, serif !important;
}

#app.english input {
	font-family: 'Times New Roman', Times, serif !important;
}

#app.english input::-webkit-input-placeholder {
	font-family: 'Times New Roman', Times, serif !important;
}

#app.english input::-moz-placeholder {
	font-family: 'Times New Roman', Times, serif !important;
}

#app.english input::-ms-input-placeholder {
	font-family: 'Times New Roman', Times, serif !important;
}

/* 顶部 */
.header-btn {
	height: 40px;
	background: #E9E9E9;
	border-radius: 10px;
	margin-left: 20px;
	display: flex;
	align-items: center;
}

.web-header {
	z-index: 10;
}

.web-logo {
	max-width: 100%;
	height: 80px;
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.header-logo {
	width: 220px;
}

.header-right {
	display: flex;
	align-items: center;
}

.header-search {
	max-width: 300px;
	height: 40px;
	background: var(--dynamic-bgColor-color);
	border-radius: 10px;
	display: flex;
	align-items: center;
	flex-shrink: 0;
	overflow: hidden;
	background-image: url(../images/header_search.png);
	background-repeat: no-repeat;
	background-size: 20px 20px;
	background-position: left 14px center;
}

.header-search .el-input,
.header-search input {
	width: calc(100% - 40px);
	padding-left: 40px;
	font-size: 14px;
	color: var(--dynamic-title-color);
}

.btn-search {
	width: 60px;
	height: 40px;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 14px;
	letter-spacing: 2px;
	color: #FFFFFF;
	background: var(--dynamic-auxiliary-color);
	cursor: pointer;
	flex-shrink: 0;
}

.english .btn-search {
	letter-spacing: 0;
}

/* 下拉 */
.el-dropdown {
	margin-left: 20px;
}

.el-dropdown-link,
.telegram-login {
	width: 100%;
	height: 40px;
	background: var(--dynamic-bgColor-color);
	border-radius: 10px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	flex-shrink: 0;
	cursor: pointer;
	z-index: 1;
}

.telegram-login {
	width: auto;
	margin-left: 20px;
}

.btn-logo {
	width: 40px;
	height: 40px;
	background: var(--dynamic-auxiliary-color);
	border-radius: 10px;
	display: flex;
	align-items: center;
	justify-content: center;
}

.btn-logo.telegram {
	background: transparent;
}

.btn-logo img {
	height: 100%;
}

.btn-title {
	font-weight: 500;
	font-size: 14px;
	color: var(--dynamic-title-color);
	flex: 1;
	padding: 0 9px;
}

.btn-triangle {
	width: 24px;
	height: 100%;
	background-image: url(../images/dropdown_triangle.png);
	background-size: 14px 10px;
	background-position: left center;
	background-repeat: no-repeat;
	transition: .2s;
}

.btn-triangle.active {
	transform: rotate(180deg);
}

.el-dropdown-menu {
	border: none;
}

.header-download {
	padding: 8px 10px;
}

.header-download .download-img {
	display: flex;
}

.header-download img {
	width: 141px;
	margin: 0 auto;
}

.header-download .title {
	font-weight: 400;
	font-size: 16px;
	color: var(--dynamic-title-color);
	margin-top: 8px;
	text-align: center;
}

.lang-dropdown.el-dropdown-menu {
	box-shadow: 0px 0px 7px 0px rgba(19, 19, 19, 0.5);
	border-radius: 10px;
	padding: 5px 0;
	overflow: hidden;
}

.lang-btn {
	min-width: 80px;
	padding: 0 10px;
	height: 26px;
	line-height: 30px;
	line-height: 30px;
	background: #FFFFFF;
	text-align: center;
	font-size: 14px;
	color: var(--dynamic-title-color);
	cursor: pointer;
}

.lang-btn.active {
	background: var(--dynamic-auxiliary-color);
	color: #FFFFFF;
}

/* 顶部 end */

/* 导航 start */
.header-nav {
	width: 100%;
	height: 70px;
	background: var(--dynamic-theme-color);
}

.header-nav .web-main,
.header-nav .el-menu--horizontal {
	height: 100%;
}

.web-header .el-menu--horizontal {
	border: none;
	white-space: nowrap;
}

.web-header .el-menu--horizontal>.el-menu-item.is-active,
.web-header .el-menu--horizontal>.el-menu-item:first-child {
	border: none;
	background: var(--dynamic-auxiliary-color) !important;
}

.web-header .el-menu--horizontal>.el-menu-item {
	width: 20%;
	height: 100%;
	font-weight: bold;
	font-size: 16px;
	text-transform: uppercase;
	border: none;
	padding: 0;
}

.web-header .el-menu--horizontal>.el-menu-item a {
	box-sizing: border-box;
	display: block;
	width: 100%;
	height: 100%;
	padding: 0 20px;
	text-decoration: none;
}

.web-header .el-menu--horizontal>.el-menu-item .items {
	height: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
}

.english .web-header .el-menu--horizontal>.el-menu-item {
	font-size: 14px;
}

/* 新闻详情 */
.speak-telegram {
	display: flex;
	align-items: center;
	justify-content: space-between;
}

.telegram-link {
	display: flex;
	align-items: center;
}

.telegram-link img {
	width: 28px;
}

.telegram-link span {
	font-size: 14px;
	color: var(--dynamic-describe-color);
	margin-left: 5px;
}

.el-link {
	font-size: 18px;
	margin-top: 26px;
}

.web-details {
	padding-top: 55px;
}

/* 新闻详情 */
.details-box {
	width: 100%;
	margin-top: 50px;
	background: #FFFFFF;
	box-shadow: 0px 1px 9px 1px rgba(0, 0, 0, 0.1);
	padding: 80px 50px;
}

.details-title {
	width: 100%;
	font-weight: bold;
	/* font-size: 48px; */
	font-size: 28px;
	color: var(--dynamic-title-color);
	line-height: 1.2;
	text-align: center;
}

.details-info {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-top: 48px;
}

.details-info .info-left {
	width: calc(100% - 400px);
}

.details-info .info {
	font-size: 14px;
	color: var(--dynamic-describe-color);
	margin-left: 90px;
}

.details-info .info:first-child {
	margin-left: 0;
}

.details-info .info-btn {
	display: flex;
	align-items: center;
	cursor: pointer;
	margin-right: 20px;
}

.details-info .info-btn img {
	height: 27px;
}

.details-info .info-btn span {
	font-size: 14px;
	color: var(--dynamic-describe-color);
	margin-left: 5px;
}


.play-gif {
	width: 30px;
	height: 32px;
	display: flex;
	align-items: center;
	justify-content: space-evenly;
	margin-right: -5px;
}

.details-info .play-gif span {
	animation-direction: alternate;
	animation-duration: 0.6s;
	background: var(--dynamic-theme-color);
	animation-iteration-count: infinite;
	animation-timing-function: linear;
	display: inline-block;
	width: 3px;
	border-radius: 2px;
	margin: 0;
	animation-play-state: running;
}

.play-gif span:first-child {
	animation-name: spark-1;
	height: 27%;
}

.play-gif span:nth-child(2) {
	animation-name: spark-2;
	height: 36%;
}

.play-gif span:nth-child(3) {
	animation-name: spark-3;
	height: 64%;
}

.play-gif span:nth-child(4) {
	animation-name: spark-4;
	height: 45%;
}

.play-gif.paused span {
	animation-play-state: paused;
}

@keyframes spark-1 {
	0% {
		height: 27%;
	}

	25% {
		height: 19%;
	}

	75% {
		height: 28%;
	}

	to {
		height: 37%;
	}
}

@keyframes spark-2 {
	0% {
		height: 36%;
	}

	25% {
		height: 63%;
	}

	75% {
		height: 37%;
	}

	to {
		height: 28%;
	}
}

@keyframes spark-3 {
	0% {
		height: 64%;
	}

	25% {
		height: 27%;
	}

	75% {
		height: 46%;
	}

	to {
		height: 71%;
	}
}

@keyframes spark-4 {
	0% {
		height: 45%;
	}

	25% {
		height: 36%;
	}

	75% {
		height: 19%;
	}

	to {
		height: 28%;
	}
}

.video-box {
	min-height: 600px;
	margin-top: 50px;
}

.details-details {
	padding-top: 56px;
	color: var(--dynamic-text-color);
}

.details-details p {
	font-size: 18px;
	color: var(--dynamic-text-color);
	line-height: 2;
	text-align: justify;
	margin: 16px 0;
}

.details-details img,
.details-details video {
	width: 100%;
	max-width: 100% !important;
	margin-left: auto !important;
	margin-right: auto !important;
	margin-top: 20px;
	margin-bottom: 20px;
}

.details-details video {
	width: 100%;
	height: 646px;
	object-fit: contain;
	background-color: #FFFFFF;
}

.details-details * {
	max-width: 100% !important;
	white-space: wrap !important;
}

/* 热门评论 */
.hot-comment-title {
	font-size: 18px;
	color: var(--dynamic-theme-color);
	padding: 50px 0 10px 0;
}

.hot-comment {
	margin-top: 25px;
}

.hot-comment-items {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 15px 0;
	border-top: 1px solid var(--dynamic-divider-color);
}

.hot-comment-items:first-child {
	border-top: none;
}

.comment-icon {
	width: 40px;
	height: 40px;
	border-radius: 50%;
	overflow: hidden;
}

.comment-info {
	width: 1040px;
}

.comment-info-name {
	font-size: 18px;
	color: var(--dynamic-title-color);
}

.comment-info-name span {
	margin-left: 90px;
}

.comment-info-name span:first-child {
	margin-left: 0;
}

.comment-info-content {
	font-size: 16px;
	color: var(--dynamic-text-color);
	line-height: 1.5;
	margin-top: 20px;
	text-align: justify;
}

/* 加载更多 */
.web-more {
	margin-top: 50px;
	cursor: pointer;
	font-size: 16px;
	color: var(--dynamic-theme-color);
	text-align: center;
	display: none;
}

.web-more.no {
	color: var(--dynamic-prompt-color);
}

.web-footer {
	width: 100%;
	padding-top: 5.2vw;
	font-size: 16px;
	color: #FFFFFF;
}

.footer-img {
	width: 100%;
	min-height: 16.04vw;
	padding-top: 8vw;
	background-image: url(../images/footer.png);
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	background-color: var(--dynamic-theme-color);
}

.web-footer .footer-info {
	margin-bottom: 1.04vw;
	display: flex;
	align-items: center;
	justify-content: center;
}

.web-footer .footer-info:last-child {
	margin-bottom: 0;
}

.footer-info p {
	margin-left: 1.04vw;
}

.footer-info p:first-child {
	margin-left: 0;
}

.footer-info.line-info p {
	margin: 0;
	margin-left: 0.52vw;
}

.footer-info.line-info p:first-child {
	margin-left: 0;
}

.footer-info .line {
	width: 0;
	height: 0.86vw;
	border-left: 1px solid #ffffff;
	margin-left: 0.52vw;
}

.footer-btn {
	cursor: pointer;
	margin: 0;
}

.el-breadcrumb__item .el-breadcrumb__inner a,
.el-breadcrumb__item .el-breadcrumb__inner.is-link {
	font-weight: normal;
}

.el-breadcrumb__item .el-breadcrumb__inner,
.el-breadcrumb__item:last-child .el-breadcrumb__inner,
.web-breadcrumb .el-breadcrumb__inner.is-link,
.web-breadcrumb .el-breadcrumb__separator,
.web-breadcrumb .el-breadcrumb__item:last-child .el-breadcrumb__inner:hover,
.el-breadcrumb__item .el-breadcrumb__inner a:hover {
	font-size: 18px;
	color: var(--dynamic-title-color);
}

.web-breadcrumb .el-breadcrumb__inner {
	letter-spacing: 0;
}

.web-breadcrumb .el-breadcrumb__separator {
	margin: 0 5px;
}

@media screen and (max-width: 1200px) {

	/* 平板 */
	.web-main {
		/* width: 75%; */
		width: 992px;
	}

	/* 顶部 */
	.header-logo {
		width: 200px;
	}

	.header-search {
		max-width: 260px;
	}

	/* 新闻详情 */
	.web-details {
		padding-top: 40px;
	}

	/* 新闻详情 */
	.details-box {
		margin-top: 40px;
	}

	.details-title {
		/* font-size: 40px; */
		/* font-size: 40px; */
	}

	.video-box {
		min-height: auto;
		margin-top: 40px;
	}

	.details-details {
		padding-top: 40px;
	}

	.details-details video {
		height: 524px;
	}

	/* 热门评论 */
	.hot-comment-title {
		padding-top: 40px;
	}

	.comment-info {
		width: calc(100% - 60px);
	}


	.web-footer {
		font-size: 14px;
	}

	.footer-img {
		padding-top: 10vw;
	}

	.el-breadcrumb__item .el-breadcrumb__inner,
	.el-breadcrumb__item:last-child .el-breadcrumb__inner,
	.web-breadcrumb .el-breadcrumb__inner.is-link,
	.web-breadcrumb .el-breadcrumb__separator,
	.web-breadcrumb .el-breadcrumb__item:last-child .el-breadcrumb__inner:hover {
		font-size: 16px;
	}
}

@media screen and (max-width: 992px) {
	.telegram-link img {
		width: 20px;
	}

	/* 手机 */
	.web-main {
		width: 94%;
	}

	/* 输入框 */
	#app .el-input__inner::-webkit-input-placeholder {
		font-size: 12px;
	}

	#app .el-input__inner::-moz-placeholder {
		font-size: 12px;
	}

	#app .el-input__inner::-ms-input-placeholder {
		font-size: 12px;
	}

	#app input::-webkit-input-placeholder {
		font-size: 12px;
	}

	#app input::-moz-placeholder {
		font-size: 12px;
	}

	#app input::-ms-input-placeholder {
		font-size: 12px;
	}

	/* 顶部 */
	.web-logo {
		height: 14vw;
		max-height: 80px;
	}

	.web-logo.web-main {
		width: 96%;
	}

	.header-logo {
		width: 22vw;
		max-width: 200px;
	}

	.header-search {
		width: 45vw;
		height: 8vw;
		max-height: 40px;
		border-radius: 5px;
		background-size: 12px 12px;
		background-position: left 4px center;
	}

	.header-search .el-input,
	.header-search input {
		width: 100%;
		padding-left: 20px;
		font-size: 12px;
	}

	.btn-search {
		width: auto;
		padding: 0 5px;
		height: 8vw;
		max-height: 40px;
		font-size: 12px;
	}

	/* 下拉 */
	.el-dropdown,
	.telegram-login {
		margin-left: 5px;
	}

	.el-dropdown.hidden {
		display: none;
	}

	.el-dropdown-link,
	.telegram-login {
		height: 8vw;
		max-height: 40px;
		border-radius: 5px;
	}

	.btn-logo {
		display: none;
	}

	.btn-title {
		padding: 0 5px;
		font-size: 12px;
		text-align: center;
	}

	.btn-triangle {
		width: 16px;
		background-size: 10px 7.2px;
	}

	/* 顶部 end */

	/* 导航 start */
	.header-nav {
		height: 12vw;
		max-height: 70px;
	}

	.web-header .el-menu.el-menu--horizontal {
		overflow-x: auto;
	}

	.web-header .el-menu--horizontal>.el-menu-item {
		min-width: 20%;
		width: auto;
		float: none;
		display: inline-block;
		font-size: 12px;
		padding: 0 10px;
	}

	.english .web-header .el-menu--horizontal>.el-menu-item {
		font-size: 12px;
	}

	/* 新闻详情 */
	.web-details {
		padding-top: 30px;
	}

	/* 新闻详情 */
	.details-box {
		margin-top: 30px;
		padding: 5vw 4vw;
	}

	.details-title {
		font-size: 20px;
	}

	.details-info {
		margin-top: 28px;
	}

	.details-info .info-left {
		/* width: 100%; */
	}

	.details-info .info {
		font-size: 14px;
		margin-left: 20px;
	}

	.details-info .info-btn {
		display: none;
	}

	.video-box {
		margin-top: 30px;
	}

	.details-details {
		padding-top: 30px;
	}

	.details-details p {
		font-size: 14px;
	}

	.details-details video {
		height: 50vw;
	}

	/* 热门评论 */
	.hot-comment-title {
		font-size: 18px;
		padding-top: 30px;
	}

	.comment-info {
		width: calc(100% - 50px);
	}

	.comment-info-name {
		font-size: 14px;
	}

	.comment-info-name span {
		margin-left: 20px;
	}

	.comment-info-content {
		font-size: 16px;
	}

	.web-footer {
		font-size: 12px;
	}

	.footer-img {
		padding-top: 26vw;
		padding-bottom: 2vw;
	}

	.web-footer .footer-info {
		margin-bottom: 2vw;
	}

	.web-footer .footer-info img {
		width: 15px;
	}

	.footer-info.line-info {
		display: block;
	}

	.footer-info.line-info p {
		margin-left: 0;
		margin-top: 2vw;
	}

	.footer-info.line-info p:first-child {
		margin-top: 0;
	}

	.footer-info .line {
		display: none;
	}

	.el-breadcrumb__item .el-breadcrumb__inner,
	.el-breadcrumb__item:last-child .el-breadcrumb__inner,
	.web-breadcrumb .el-breadcrumb__inner.is-link,
	.web-breadcrumb .el-breadcrumb__separator,
	.web-breadcrumb .el-breadcrumb__item:last-child .el-breadcrumb__inner:hover {
		font-size: 14px;
	}
}