* {
	box-sizing: border-box;
	padding: 0;
	margin: 0;
}
@font-face {
	font-family: "default-word";
	src: url("/lib/SourceHanSansSC-Medium-2.otf");
}
@font-face {
	font-family: "title-word";
	src: url("/lib/GenShinGothic-Monospace-Heavy-2.ttf");
}
html {
	font-weight: 300;
	font-size: 16px;
}

body {
	background-color: #fff;
	font-family: "default-word";
}

.swiper-button-next, .swiper-button-prev {
	color: black;
	width: 2rem;
	height: 2rem;
	background-size: cover;
	border-radius: 100%;
	background-repeat: no-repeat;
}
.swiper-button-prev {
	background-image: url("/images/icon-left.png");
}
.swiper-button-next {
	background-image: url("/images/icon-right.png");
}
.swiper-button-next:after, .swiper-button-prev:after {
	font-size: 2rem;
	content: '';
}
h1,h2 {
	font-family: "title-word";
	font-weight: bold;
}
img {
	display: block;
	width: 100%;
}
li {
	list-style: none;
}

a {
	text-decoration: none;
	cursor: pointer;
	color: inherit;
}

address {
	font-style: normal;
}

:root {
	--mainColor: #FF5148;
	--primaryColor: #FDA527;
	--bgColor: #F1ECE8;
	--footerBgColor: #222;
	--wordFooterColor: #ccc;
	--green: #354E2F;
	--black: #1D1A1A;
	--cardColor: #f5f5f5;
	--title: 3.4rem;
	--subtitle: 2rem;
	--article-title: 1.45rem;
	--article-subtitle: 2.25rem;
	--model-distance: 100px;
}

.p-bg-color {
	background-color: var(--primaryColor);
}

.empty {
	height: 4.5rem;
}
.title {
	font-family: "title-word";
}
.home-header {
	width: 100vw;
	position: fixed;
	top: 0;
	left: 0;
	color: #fff;
	z-index: 9;
	transition: all 0.5s;
	padding-top: 10px;
}

.home-header-flex {
	display: flex;
	align-items: center;
	justify-content: space-between;
	max-width: 1300px;
	margin: 0 auto;
}

.home-header .logo {
	width: 12rem;
	object-fit: contain;
}

.home-header-nav {
	display: flex;
	align-items: center;
	text-align: center;
}

.home-header-nav-ul {
	display: flex;
	align-items: center;
}

.home-header-nav-li {
	position: relative;
	cursor: pointer;
}

.home-header-nav-li .nav-anchor {
	padding-left: 1rem;
	padding-right: 1rem;
	transition: all 0.5s;
	color: #fff;
}

.home-header-nav-li:hover .nav-anchor {
	color: var(--primaryColor) !important;
}

.nav-sub-anchor {
	padding: 0 1rem;
	width: 100%;
	display: block;
	color: #fff;
	transition: all 0.5s;
}

.nav-sub-anchor:hover {
	color: var(--primaryColor) !important;
}

.home-header.scroll {
	background-color: #fff;
}

.home-header.scroll .home-header-nav-li-ul {
	background-color: #fff;
}

.home-header.scroll .nav-anchor,
.home-header.scroll .nav-sub-anchor {
	color: var(--black);
}

.home-header.black .nav-anchor,
.home-header.black .nav-sub-anchor {
	color: var(--black);
}

.home-header-nav-li-ul {
	position: absolute;
	width: auto;
	white-space: nowrap;
	left: 0;
	bottom: 0;
	transform: translate(0, 100%);
	display: none;
	text-align: left;
}

.home-header-nav-li:hover .home-header-nav-li-ul {
	display: block;
	transition: all 0.5s;
}

/* h5头部导航 */
.home-header-h5-nav {
	width: 2rem;
	height: 2rem;
	display: none;
	background-image: url("/images/icon-menu.png");
	background-size: contain;
}
.home-header.home-header.scroll .home-header-h5-nav {
	background-image: url("/images/icon-menu-act.png");
}
.home-header-nav-ul2 {
	padding-top: 5rem;
	padding-left: 30px;
	position: fixed;
	left: 0;
	top: 0;
	width: 100vw;
	height: 100vh;
	background-color: var(--black);
	text-align: left;
	display: none;
	line-height: 50px;
}
.home-header-nav-ul2-close {
	position: absolute;
	right: 30px;
	top: 20px;
	width: 2rem;
	height: 2rem;
	object-fit: cover;
}
.nav-anchor2 {
	font-size: 2rem;
}
.home-header-nav-li-ul2 {
	text-indent: 2rem;
}
/* 内容 */
.content {
	position: relative;
	max-width: 1300px;
	margin: 0 auto;
}

.contain-item {
	position: relative;
	overflow: hidden;
}

[class*="animation_"] {
	opacity: 0;
	animation-duration: 0.7s;
	animation-fill-mode: both;
}

@keyframes mal {
	from {
		opacity: 0;
		transform: translate(-3rem);
	}

	to {
		opacity: 1;
		transform: translate(0);
	}
}

@keyframes mar {
	from {
		opacity: 0;
		transform: translate(3rem);
	}

	to {
		opacity: 1;
		transform: translate(0);
	}
}

.animation_mal {
	animation-name: mal;
	animation-delay: 250ms;
}

.animation_mar {
	animation-name: mar;
	animation-delay: 250ms;
}

.btn {
	display: inline-block;
	vertical-align: top;
	text-align: center;
	line-height: 1.2;
	position: relative;
	transition-property: background, border, box-shadow, color, opacity, transform;
	transition-duration: 0.3s;
	-webkit-tap-highlight-color: rgba(0, 0, 0, 0);
	cursor: pointer;
}

.article-item {
	padding-bottom: var(--model-distance);
	padding-left: 2.5rem;
	padding-right: 2.5rem;
	display: flex;
	align-items: center;
}

.article-item>img.half {
	max-width: 50%;
	border-radius: 5px;
}

.article-tip {
	color: var(--mainColor);
	font-weight: 400;
	font-size: 20px;
}

.article-title {
	font-weight: bold;
	font-size: var(--subtitle);
	line-height: 1.2;
	letter-spacing: 0;
	margin-bottom: 0.6em;
	text-transform: capitalize;
	font-family: "title-word";
}
.article-subtitle {
	font-size: var(--article-title);
}
.article-item.no-padding-bottom {
	padding-bottom: 0;
}

.article-item img {
	width: 100%;
	object-fit: cover;
	border-radius: 5px;
}

.article-item-left {
	margin-right: 2rem;
}

.article-item-left.mal {
	margin-left: -2.5rem;
	margin-right: 4rem;
}

.article-item-left.border-radius {
	border-radius: 5px 0px 0px 5px;
}
.card {
	background-color: var(--primaryColor);
}

.article-item-right {
	flex-shrink: 1;
}

.article-p {
	margin-bottom: 10px;
}

.article-item-right.border-radius {
	border-radius: 0px 5px 5px 0px;
}

.article-item-right.mar {
	margin-right: -2rem;
	margin-left: 2rem;
}

.article-empty {
	height: 40px;
}

.article-btn {
	font-size: 16px;
	line-height: 1.2;
	font-weight: 300;
	border-radius: 5px;
	padding: 0.5em 2em;
	background: transparent;
	border: 2px solid var(--black);
	box-shadow: 0px 0em 0em 0px rgb(0 0 0 / 20%);
}

.article-btn:hover {
	background-color: var(--black) !important;
	color: #fff !important;
	border-color: var(--black) !important;
}

.m-double {
	display: flex;
}

.m-double>.m-double-left,
.m-double-right {
	display: flex;
	flex-direction: column;
	width: 50%;
}

.m-double-left {
	border-radius: 5px 0px 0px 5px;
	padding: 1rem 1rem;
	box-shadow: 0 27px 36px 0 rgba(0, 0, 0, 0.05);
	background-color: var(--cardColor);
}

.m-double-right {
	border-radius: 0px 5px 5px 0px;
}

.model-three-content .img {
	box-shadow: 0 0px 6px 5px rgba(0, 0, 0, 0.05);
}

#footer {
	padding: 6rem 2.5rem;
	padding-bottom: 1rem;
	background-color: var(--footerBgColor);
	color: var(--wordFooterColor);
}

#footer .menu {
	display: flex;
	justify-content: space-between;
}

#footer .logo {
	width: 12rem;
	margin-bottom: 1.5rem;
	object-fit: contain;
}
.menu-right {
	padding-right: 1rem;
}
.menu-nav {
	display: flex;
}

.menu-nav li {
	margin-right: 24px;
}

#footer address {
	font-weight: 400;
	font-style: normal;
}

#footer .footer-reserved {
	text-align: center;
	color: #ccc;
	margin-top: 1.5rem;
	font-size: 13px;
}

@media (min-width: 1281px) {
	.home-header-nav {
		line-height: 80px;
		height: 80px;
	}
}

@media (max-width: 1080px) {
	.article-item.img-left {
		flex-direction: column;
	}

	.article-item-right,
	.article-item-left {
		margin: 0 !important;
		max-width: 100% !important;
	}
	.article-item>img.half {
		max-width: 100%;
	}
	.article-item.img-left .article-item-left {
		margin-bottom: 20px !important;
	}

	.article-item.img-right {
		flex-direction: column-reverse;
	}

	.article-item.img-right .article-item-right {
		margin-bottom: 20px !important;
	}
}

@media (min-width: 981px) and (max-width: 1280px) {}
@media (max-width: 1280px) {
	.content {
		margin-left: 1rem !important;
		margin-right: 1rem !important;
	}
	.m-double {
		flex-direction: column-reverse;
		align-items: center;
		padding: 0 2.5rem;
	}
	.m-double-left {
		padding: 1rem;
	}
	.m-double-left,.m-double-right {
		border-radius: 5px;
		width: 100% !important;
	}
	.nav-anchor,.nav-sub-anchor {
		font-size: 1.75rem;
	}
}
@media (max-width: 750px) {
	.home-header {
		padding-left: 1rem;
		padding-right: 1rem;
	}
	.home-header-nav-li .nav-anchor{
		padding: 1rem;
	}
	.video-details {
		width: 82%;
	}
	.menu-nav {
		padding-left: 0;
	}
	.menu-right {
		padding-right: 0;
		width: 50%;
	}
	.home-header-nav-ul {
		display: none;
	}
	.home-header-h5-nav {
		display: block;
	}
	:root {
		--model-distance: 50px;
	}
	.other-video {
		height: 200px;
		object-fit: cover;
	}
}