* {
	margin: 0;
	padding: 0;
	border: none;
	outline: none;
	text-decoration: none;

	color: #333;
	font-size:14px;
}
body {
	min-height: 100vh;
	display: flex;
	flex-direction: column;
}
ul, li, dl, dt, dd {
	list-style: none;
}
a {
	cursor: pointer;
}
a:hover {
	color: #B6000C;
}
.transition {
	-webkit-transition: all .4s ease;
	-moz-transition: all .4s ease;
	-o-transition: all .4s ease;
	transition: all .4s ease;
}
.w1200 {
	width: 1200px;
	margin: 0 auto;
}

/*header*/
.header {
	position: fixed;
	top: 0;
	left: 0;
	width: 100vw;
	z-index: 999;

	background: #FFF;
	border-bottom: 1px solid #F9F6F4;
}
.header .w1200 {
	display: flex;
	justify-content: space-between;
}
.header .w1200 .logo {
	display: flex;
	justify-content: center;
	align-items: center;
}
.header .w1200 .logo img{
	width: 220px;
	height: 50px;
}
.header .w1200 .list {
	display: flex;
}
.header .w1200 .list .nav {
	display: flex;
	justify-content: center;
	align-items: center;
	padding: 2rem;
	position: relative;
}
.header .w1200 .list .nav > .tit {
	font-weight: bold;
	font-size: 1.2rem;
}
.header .w1200 .list .nav > .tit.active {
	color: #B6000C;
}
.header .w1200 .list .nav .card {
	visibility: hidden;
	opacity: 0;
	display: flex;
	position: absolute;
	right: 0;
	top: 80px;
	padding: 2rem;
	border: 1px solid #F9F6F4;
	border-radius: .5rem;
	background-size: auto 100px;
	background-repeat: no-repeat;
	background-position: top right;
	background-color: #FFF;
}
.header .w1200 .list .nav .card.active {
	visibility: visible;
	opacity: 100%;
}
.header .w1200 .list .nav .card .left {
	background-color: initial;
	display: flex;
	flex-direction: column;
}
.header .w1200 .list .nav .card .left img {
	width: 150px;
	height: 150px;
}
.header .w1200 .list .nav .card .left .tit {
	padding: 1rem 0 0;
	font-weight: bold;
	font-size: 1.2rem;
}
.header .w1200 .list .nav .card .right {
	background-color: initial;
	display: flex;
	flex-direction: column;
	padding-left: 1rem;
	margin-left: 1rem;
	border-left: 1px solid #ccc;
	width: 180px;
}
.header .w1200 .list .nav .card .right .tit {
	padding: 0.5rem 0;
}
.header .w1200 .list .nav .card .right .tit:hover {
	font-weight: bold;
}

.header.active {
	background: linear-gradient(rgba(0, 0, 0), rgba(0, 0, 0, 0));
	border-bottom: none;
}
.header.active .w1200 .list .nav {
	padding: 3rem 2rem;
}
.header.active .w1200 .list .nav > .tit {
	color: #FFF;
}
.header.active .w1200 .list .nav > .tit:hover {
	color: #B6000C;
}

/*banner*/
.banner {
	width: 100vw;
	height: 100vh;
}
.banner .swiper {
	width: 100vw;
	height: 100vh;
	--swiper-theme-color: #B6000C;
}
.banner .swiper-slide {
	height: 100vh;
	width: 100vw;

	background-size: contain;
	background-repeat: no-repeat;
	background-position: center;
}
.banner .swiper-pagination span {
	width: 2rem;
	height: .5rem;
	border-radius: .5rem;
}

/*contain*/
.contain {
	flex: 1;
}
.contain.active {
	padding-top: 80px;
}
.contain .content {

}
.contain .content .w1200 {
	padding: 5rem 0;
}
.contain .content .w1200 .top {
	position: relative;
}
.contain .content .w1200 .top .title {
	text-align: center;
	font-weight: bold;
	font-size: 2.5rem;
	height: 8rem;
	line-height: 8rem;
}
.contain .content .w1200 .top .more {
	position: absolute;
	right: 5rem;
	bottom: 2.5rem;
	display: flex;
	align-items: center;
}
.contain .content .w1200 .top .more .icon {
	width: 2rem;
	height: 2rem;
	margin-left: .5rem;

	background-size: cover;
}
.contain .content .w1200 .top .more:hover .icon {
}

/*footer*/
.footer {

}
.footer .top {
	background-color: #F9F6F4;
}
.footer .top .w1200 {
	display: flex;
	justify-content: space-between;
}
.footer .top .w1200 > div {
	padding: 7rem 0;
}
.footer .top .w1200 .contact {
	flex: 1;
}
.footer .top .w1200 .contact .item {
	display: flex;
	justify-content: left;
	align-content: center;
	margin-bottom: 1rem;
}
.footer .top .w1200 .contact .item .icon {
	height: 1.5rem;
	margin-right: .5rem;
}
.footer .top .w1200 .contact .item .cont {
	height: 1.5rem;
	line-height: 1.5rem;
}
.footer .top .w1200 .contact .item .cont.phone {
	color: #B6000C;
	font-size: 1.3rem;
}
.footer .top .w1200 .contact .item.logo {
	margin-bottom: 3rem;
}
.footer .top .w1200 .contact .item.logo img {
	width: 220px;
	height: 50px;
}
.footer .top .w1200 .menu {
	flex: 2;
	padding: 7rem 2rem;
}
.footer .top .w1200 .menu ul {
	display: flex;
}
.footer .top .w1200 .menu ul li {
	flex: 1;
}
.footer .top .w1200 .menu ul li dl {
	display: flex;
	flex-direction: column;
	align-items: center;
}
.footer .top .w1200 .menu ul li dl dt {
	font-weight: bold;
	font-size: 1.2rem;
	padding-bottom: 1rem;
}
.footer .top .w1200 .menu ul li dl dd {
	height: 2rem;
	line-height: 2rem;
}
.footer .top .w1200 .menu ul li dl dd a {
}
.footer .top .w1200 .focus {
	flex: 1;
}
.footer .top .w1200 .focus dl {
}
.footer .top .w1200 .focus dl dt {
	font-weight: bold;
	font-size: 1.2rem;
	padding-bottom: 1rem;
	text-align: center;
}
.footer .top .w1200 .focus dl dd {
	height: 2rem;
	line-height: 2rem;
	text-align: center;
}
.footer .top .w1200 .focus ul {
	display: flex;
	justify-content: center;
}
.footer .top .w1200 .focus ul li {
	position: relative;
}
.footer .top .w1200 .focus ul li.active {
}
.footer .top .w1200 .focus ul li .icon {
	background-color: #ccc;
	width: 2rem;
	border-radius: .5rem;
	padding: .5rem;
	margin: 1rem;
	cursor: pointer;
}
.footer .top .w1200 .focus ul li .wrap {
	visibility: hidden;
	opacity: 0;
	position: absolute;
	left: -40px;
	bottom: 70px;
	background-color: #fff;
	padding: 10px;
	border-radius: .5rem;
	border: 1px solid #F9F6F4;
}
.footer .top .w1200 .focus ul li .wrap.active {
	visibility: visible;
	opacity: 100%;
}
.footer .top .w1200 .focus ul li .wrap img {
	width: 140px;
	height: 140px;
}
.footer .top .w1200 .focus ul li .wrap div {
	text-align: center;
}
.footer .bottom {
	background-color: #512F1F;
}
.footer .bottom .w1200 {
	display: flex;
	justify-content: center;
}
.footer .bottom .w1200 .item {
	color: #FFF;
	padding: 2rem;
}
.footer .bottom .w1200 .item a {
	color: #FFF;
}

.backtotop {
	position: fixed;
	bottom: 100px;
	right: 100px;

	overflow: hidden;
	width: 2rem;
	height: 2rem;
	border-radius: 2rem;
	border: 1px solid #333;
	padding: .5rem;
	cursor: pointer;
	background-color: #fff;

	display: flex;
	align-content: center;
	align-items: center;
}
.backtotop img {
	width: 2rem;
	height: 2rem;
}