header {
	position: relative;
	background: url(../image/icon-bg.png);
}

header .logo {
	padding-top: .5rem;
	height: 6rem;
	padding-bottom: .5rem;
}

header .logo img {
	max-height: 100%;
}

header nav {
	flex: 1;
}

header nav>ul {
	display: flex;
	width: 100%;
	height: 100%;
	justify-content: flex-end;
	align-items: center;
}

header nav>ul>li {
	margin-left: 1rem;
	position: relative;
}

header nav>ul>li>a {
	display: inline-flex;
	line-height: 2.8;
	padding: 0 1.5rem;
	font-size: 14px;
	transition: all .35s ease-in-out;
}

header nav>ul>li:hover>a {
	background-color: #fd2e45;
	color: #fff;
}

header nav>ul>li:hover .drop-menu {
	display: block;
}

.drop-menu {
	position: absolute;
	min-width: 100%;
	left: 0;
	top: 100%;
	text-align: center;
	background-color: #fff;
	z-index: 999;
	display: none;
	white-space: nowrap;
}

.drop-menu p {
	font-size: .8rem;
	color: #999;
	line-height: 3;
	border-top: 1px solid #ddd;
	border-left: 1px solid #ddd;
	border-right: 1px solid #ddd;
}

.drop-menu p a {
	display: block;
	width: 100%;
	height: 100%;
}

.drop-menu p:hover a {
	color: #FD2E45;
}

/*主页*/
.index-about-pic {
	position: relative;
	z-index: 999;
	padding-top: 2rem;
	padding-right: 2rem;
	margin-bottom: 2rem;
}

.index-about-pic::after {
	content: '';
	position: absolute;
	display: block;
	right: 3rem;
	top: 3rem;
	width: calc(100% - 2rem);
	height: calc(100% - 2rem);
	border: 3px solid #ddd;
}

.index-about-pic img {
	position: relative;
	z-index: 999;
	padding: 3px;
	left: 0;
	top: 0;
	transition: all ease-in-out .45s;
}

.index-about-pic:hover img {
	left: -1rem;
	top: 1rem;
}

.index-about-text {
	margin-top: 2rem;
}

.index-about-text>h2 {
	margin-bottom: 1rem;
	border-bottom: 2px solid #ddd;
	position: relative;
}

.index-about-text>h2 span {
	font-size: 2rem;
	line-height: 2;
	color: #FD2E45;
}

.index-about-text .about-article {
	font-size: 14px;
	line-height: 2.2;
	color: #888;
}

.index-about-text>h2:after {
	content: '';
	position: absolute;
	width: 96px;
	height: 2px;
	background-color: #FD2E45;
	left: 0;
	bottom: -2px;
}


.index-pro {
	padding: 4.5rem 0;
	background: url(../image/pro-bg.jpg) no-repeat center center;
}

.swiper-pro {
	background: rgba(255, 255, 255, .7);
}

.index-pro .swiper-slide .s-flex {
	background: url(../image/pro-bg-m.jpg);
}

.index-pro-text {
	padding-top: 1rem;
}

.index-pro-text>h1 {
	font-size: 3rem;
	font-weight: 900;
	color: #333;
	text-shadow: 4px 5px 5px #ccc;
	line-height: 1.6;
	letter-spacing: 5px;
}

.index-pro-text .pro-text-item>h3 {
	font-size: 1.25rem;
	margin-top: 1.5rem;
	font-weight: 900;
	line-height: 2;
	color: #FD2E45;
}

.index-pro-text .pro-text-item blockquote {
	font-size: .875rem;
	color: #000;
	font-weight: 900;
	text-indent: 1em;
	line-height: 2;
}

/*swiper左右按钮*/
.swiper-pro-prev,
.swiper-pro-next {
	position: absolute;
	top: 50%;
	margin-top: -3rem;
	display: inline-flex;
	border: 1px solid #ddd;
	justify-content: center;
	align-items: center;
	width: 3rem;
	height: 6rem;
	font-size: 3rem;
	color: #fff;
	background-color: #ddd;
	transition: all .35s ease-in-out;
	z-index: 99999;
	cursor: pointer;
}

.swiper-pro-prev {
	left: 0;
}

.swiper-pro-next {
	right: 0;
}

.swiper-pro-prev:hover,
.swiper-pro-next:hover {
	background-color: #FD2E45;
}

/*主页标题模板*/
.index-title {
	text-align: center;
	padding: 3rem 1rem 1rem;
}

.index-title>h3 {
	font-size: 2rem;
	line-height: 2;
	font-family: 'Times New Roman', Times, serif;
	color: #999;
}

.title-line {
	display: flex;
	justify-content: center;
	align-items: center;
}

.title-line span {
	display: inline-block;
	font-size: 1.5rem;
	color: #FD2E45;
	margin: 0 1rem;
}

.title-line em {
	display: inline-block;
	width: 3rem;
	height: 2px;
	background-color: #ddd;
}

/*新闻item*/
.news-item {
	padding: 2rem 1rem 1rem;
	transition: all .45s ease-in-out;
}

.news-item .date {
	height: 6rem;
	line-height: 2;
	font-size: 3rem;
	text-align: center;
	font-family: helvetica;
	color: #999;
	transition: all .45s ease-in-out;
}

.news-item .pic {
	display: block;
	overflow: hidden;
	width: 100%;
	height: 20rem;
	transition: all .45s ease-in-out;
}

.news-item .title {
	font-size: 1rem;
	font-weight: 900;
	line-height: 1.8;
	text-align: center;
	padding: 1rem 0;
	transition: all .45s ease-in-out;
}

.news-item .description {
	font-size: .875rem;
	line-height: 2;
	color: #999;
}

.news-more {
	font-size: 1rem;
	line-height: 2;
	text-align: center;
}

.news-more span {
	line-height: 2;
	font-family: 'Times New Roman', Times, serif;
}

.news-item:hover {
	background-color: #fff;
}

.news-item:hover .date {
	height: 0;
}

.news-item:hover .title {
	color: #FD2E45;
}

/*主页视频*/
.index-video {
	position: relative;
}

.index-video .video_fill {
	width: 100%;
}

.index-video .btn-video {
	position: absolute;
	left: 50%;
	top: 50%;
	display: flex;
	justify-content: center;
	align-items: center;
	width: 10rem;
	height: 10rem;
	margin-top: -5rem;
	margin-left: -5rem;
	border-radius: 100%;
}

.index-video .btn-video i {
	font-size: 10rem;
	color: #fff;
	opacity: .6;
	cursor: pointer;
}

/*脚部*/
.footer {
	padding-top: 4.5rem;
	background-color: #212529;
	color: #fff;
}

.foot-title {
	font-size: 1.25rem;
	padding-bottom: 1rem;
	letter-spacing: 1px;
}

.foot-title .iconfont {
	font-size: 1.5rem;
	margin-right: 5px;
}

.foot-contact {
	flex: 1;
}

.foot-contact img {
	float: right;
	width: 5rem;
}

.foot-contact p {
	font-size: .875rem;
	line-height: 2;
	color: #ccc;
}

.foot-nav {
	flex: 1;
	padding-left: 1rem;
}

.foot-nav-item {
	margin-top: .5rem;
	margin-right: 1rem;
}

.foot-nav-item h6 {
	font-size: 1rem;
	color: #fff;
	margin-bottom: .5rem;
}

.foot-nav-item p {
	font-size: 12px;
	line-height: 2;
	color: #999;
}

.foot-nav-item p:hover {
	color: #fff;
}

.foot-ewm .foot-ewm-item {
	padding: 1rem;
	text-align: center;
}

.foot-ewm .foot-ewm-item img {
	max-width: 5rem;
	margin-bottom: 1rem;
}

.foot-ewm .foot-ewm-item h6 {
	font-size: 12px;
	color: #999;
}

.copyright {
	text-align: center;
	border-top: 1px solid rgba(255, 255, 255, .3);
	padding-top: 1rem;
	padding-bottom: .5rem;
	font-size: 12px;
}

/*page页*/
.page-title {
	padding: 1rem 0;
	border-radius: 5px;
	border: 1px solid #ddd;
	background: url(../image/mr.png) repeat-x center center;
}

.page-title h3 {
	position: relative;
	font-size: 1.25rem;
	line-height: 2;
	color: #FD2E45;
	padding-left: 1.5rem;
}

.page-title h3::after {
	content: '';
	position: absolute;
	left: 0;
	top: 50%;
	margin-top: -.625rem;
	width: 2px;
	height: 1.25rem;
	background-color: #FD2E45;
}

.page-title h6 {
	font-size: 0.8125rem;
	padding-left: 1.5rem;
	font-family: helvetica;
	line-height: 2;
	color: #999;
}

.page-label {
	padding-bottom: 1rem;
}

.page-label>ul>li {
	position: relative;
	margin-top: 5px;
	border-radius: 5px;
	border: 1px solid #ddd;
	font-size: .875rem;
	line-height: 3rem;
	padding-left: 1.5rem;
	color: #000;
	background: linear-gradient(to right, rgb(233, 233, 230), rgb(255, 255, 255));
}

.page-label>ul>li>a {
	display: block;
}

.page-label>ul>li::after {
	content: '';
	position: absolute;
	margin-top: -1px;
	top: 50%;
	left: 8px;
	width: .7rem;
	height: 2px;
	background-color: #FD2E45;
}

.page-label>ul>li.active {
	background: #FD2E45;
	color: #fff;
}

.page-label>ul>li.active::after {
	background-color: #fff;
}

.page-contact {
	margin-top: 15px;
}

.page-contact h6 {
	font-size: 1.25rem;
	line-height: 2.4;
	letter-spacing: 1px;
	color: #FD2E45;
}

.page-contact-title {
	font-size: 1rem;
	margin-bottom: 1rem;
	background: url(../image/mr2.png) center right no-repeat;
	color: #666;
	line-height: 2;
}

.page-contact p {
	padding-bottom: .75rem;
	font-size: .875rem;
}

.page-contact p i {
	font-size: 1.25rem;
	color: #FD2E45;
	margin-right: 5px;
}

.page-r {
	padding: 1.5rem;
	border: 1px solid #ddd;
	border-radius: 5px;
	height: 100%;
	background: url(../image/icon-bg.png);
}

.page-position {
	padding-bottom: 1rem;
	margin-bottom: 1rem;
	border-bottom: 1px solid rgba(0, 0, 0, .15);
	font-size: 12px;
	display: flex;
	align-items: baseline;
	justify-content: space-between;
}

.page-position h3 {
	position: relative;
	font-size: 1.25rem;
	padding-left: 1.5rem;
}

.page-position h3::after {
	content: '';
	position: absolute;
	left: 0;
	top: 50%;
	width: 1rem;
	height: 2px;
	background-color: #FD2E45;
}

.page-position .iconfont {
	margin-right: 3px;
}

.page-position a:hover {
	color: #FD2E45;
}


/*产品*/
.pro-list li {
	margin-bottom: 1rem;
}

.pro-list li>a {
	display: block;
	position: relative;
	overflow: hidden;
	border: 1px solid #ddd;
	padding-bottom: 3rem;
	height: 100%;
}

.pro-list li>a h3 {
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	text-align: center;
	line-height: 3rem;
	font-size: 1.25rem;
	font-weight: 900;
	color: #FD2E45;
}

.pro-list-hover {
	position: absolute;
	background-color: rgba(0, 0, 0, .5);
	width: 100%;
	height: 100%;
	left: 0;
	top: -100%;
	padding: 1.5rem;
	transition: all .25s ease-in-out;
}

.pro-list-hover>div {
	border: 1px solid #eee;
	width: 100%;
	height: 100%;
	display: flex;
	justify-content: center;
	align-items: center;
}

.pro-list li:hover .pro-list-hover {
	top: 0;
}

.pro-content {
	text-align: center;
	border: 1px solid rgba(0, 0, 0, .15);
	margin-bottom: 1rem;
	padding-bottom: 1.5rem;
}

.pro-content-title {
	font-size: 1.5rem;
	line-height: 2;
	text-align: center;
	color: #FD2E45;
}

.pro-description {
	border: 1px solid rgba(0, 0, 0, .15);
	padding: 1rem;
}

.pro-description>h3 {
	font-size: 1.25rem;
	color: #666;
	line-height: 2;
	border-bottom: 1px solid rgba(0, 0, 0, .15);
	padding-bottom: .5rem;
	margin-bottom: .5rem;
}

.pro-description>p {
	line-height: 2;
	color: #999;
	margin-bottom: 1rem;
}

/*新闻*/
.news-list li {
	padding: 1rem;
	border: 1px solid #ddd;
	overflow: hidden;
	margin-bottom: 1rem;
}

.news-list li>a {
	display: block;
	height: 15rem;
	overflow: hidden;
}

.news-list li>a img {
	width: 18.75rem;
	float: left;
	margin-right: 1rem;
	border-radius: 10px;
}

.news-list li .title {
	font-size: 1.25rem;
	line-height: 2;
	font-weight: bold;
	transition: all .45s ease-in-out;
}

.news-list li .date {
	font-size: .875rem;
	line-height: 2;
	color: #999;
}

.news-list li .description {
	font-size: .875rem;
	line-height: 2;
	color: #666;
}

.news-list li:hover .title {
	color: #FD2E45;
}

.news-content-title {
	font-size: 1.25rem;
	line-height: 2;
	text-align: center;
	color: #000;
	font-weight: 900;
	margin-bottom: 1rem;
}

.news-content-data {
	text-align: center;
	font-size: .875rem;
	line-height: 2;
	color: #999;
	padding-bottom: 5px;
	margin-bottom: 1rem;
	border-bottom: 1px solid #E2E6EA;
}

.news-content-data span {
	margin-right: 5px;
}

.news-content-data a {
	color: #FD2E45;
}

.news-footer {
	text-align: center;
	background-color: rgba(152, 120, 86, .4);
	padding-top: 2rem;
	padding-bottom: 1rem;
	margin-top: 1rem;
}

.news-footer img {
	max-width: 100%;
	margin-bottom: 1rem;
}

.news-footer h6 {
	font-size: 14px;
	color: #fff;
	line-height: 2;
	margin-bottom: 1rem;
}

.news-footer p {
	font-size: 14px;
	line-height: 2;
}

.text-red {
	color: #FD2E45;
	font-weight: 900;
}

.text-black {
	color: #000;
}

/*招商加盟*/
.join-title {
	padding-top: 3.125rem;
	padding-bottom: 3.125rem;
}

.join-title .subtitle {
	font-size: 3rem;
	line-height: 1.5;
	color: #FD2E45;
	text-align: center;
	font-family: helvetica;
}

.join-title .title {
	font-size: 1.5rem;
	line-height: 2;
	text-align: center;
	color: #666;
	font-weight: 900;
	padding-bottom: 1rem;
}

.join-title .description {
	font-size: .875rem;
	line-height: 2;
	color: #999;
	text-align: center;
}

.store-image {
	position: relative;
	margin: 1rem auto;
}

.store-image-hover {
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(0, 0, 0, .7);
	color: #bbb;
	opacity: 1;
	padding-top: 30%;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	transition: all .35s ease-in-out;
}

.store-image-hover .s-flex {
	width: 100%;
}

.store-image-icons {
	text-align: center;
	padding: 0;
	margin-bottom: 1.5rem;
}

.store-image-icons .iconfont {
	font-size: 3rem;
	display: flex;
	color: #ddd;
	justify-content: center;
	align-items: center;
}

.store-image-icons p {
	font-size: 1.25rem;
	margin-top: 1rem;
	line-height: 2;
	color: #FD2E45;
}

.store-image-text {
	padding: 1rem 0;
	margin-top: 3rem;
	font-size: 1.25rem;
	line-height: 2;
}

.store-image:hover .store-image-hover {
	opacity: 0;
}

.adv-content {
	position: relative;
	max-width: 100%;
	margin: 0 auto;
}

.adv-hover {
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(218, 0, 0, 0.5);
	color: #fff;
	padding-top: 5%;
}

.adv-hover .col-6 {
	display: flex;
	justify-content: center;
	align-items: center;
}

.adv-item {
	width: 10rem;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	margin-bottom: 1rem;
}

.adv-item .iconfont {
	display: flex;
	justify-content: center;
	align-items: center;
	width: 9rem;
	height: 9rem;
	border: 2px solid #fff;
	margin-bottom: 1.5rem;
	font-size: 4rem;
	cursor: pointer;
}

.adv-item .iconfont:hover {
	background-color: rgba(253, 69, 72, .7);
}

.adv-item p {
	font-size: 2.25rem;
	line-height: 2;
}

.adv-text {
	width: 60rem;
	margin: 1rem auto;
}

.adv-text p {
	font-size: .875rem;
	line-height: 2;
	text-align: center;
	display: none;
}

.adv-text p:first-child {
	display: block;
}

.join-download {
	text-align: center;
	font-size: .875rem;
	color: #FD2E45;
	font-weight: 900;
}

.join-download .iconfont {
	font-size: 1rem;
	margin-right: 5px;
}

.process-content {
	text-align: center;
}

.join-us {
	width: 100%;
	background-color: #FD2E45;
	height: 7.5rem;
	margin-top: 2.5rem;
	text-align: center;
}

.join-us a {
	font-size: 2.6rem;
	font-weight: 900;
	line-height: 7.5rem;
	color: #fff;
	letter-spacing: 10px;
}

.join-us .iconfont {
	margin-left: 10px;
}


/*新闻文章css*/
.news-model {
	padding: 1rem;
	margin-top: 3rem;
	margin-bottom: 1rem;
	text-align: center;
	border: 1px solid #987856;
	border-top: 3px solid #987856;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
}

.news-model .title {
	position: relative;
	top: -52px;
	background: url(../../../upload/title-bg.png) center center no-repeat;
	background-size: 100%;
	padding: 15px 35px;
	font-size: 1.25rem;
	font-weight: 900;
	color: rgb(158, 122, 88);
	line-height: 2;
}

.news-model .description {
	font-size: .875rem;
	line-height: 2;
	color: #999;
	margin-bottom: 1rem;
	padding-left: 1.5rem;
	padding-right: 1.5rem;
}

.news-model img {
	margin-bottom: 1rem;
	border-radius: 5px;
}

.news-model .sub-title {
	font-size: 1rem;
	line-height: 2;
	color: rgb(158, 122, 88);
	margin-bottom: 1rem;
}

.news-1106-item img {
	max-width: 100%;
	margin: 1rem 0;
	border: 1px solid #C50E15;
	padding: 10px;
}

.p-8 {
	padding: 4rem;
}

.news-1106-item {
	padding: 1.5rem;
}

.news-border-img {
	border: 4px solid #c50e15;
}

.news-border-img img {
	transform: translate(2rem, 2rem);
	padding: 1rem;
	border: none;
}

.news-1106-item p {
	font-size: 15px;
	line-height: 2;
	letter-spacing: 1px;
}

.news-1106-item h3 {
	text-align: center;
	margin-bottom: 2rem;
}

.news-1106-item h3 span {
	display: inline-block;
	font-size: 20px;
	line-height: 2;
	font-weight: 400;
	padding: 0 1rem;
	color: #fff;
	background-color: rgba(197, 24, 21, .8);
}

.news-116 {
	padding: 1.5rem;
	margin: 0 auto;
	width: 100%;
}

.news-116 p {
	font-size: 15px;
	line-height: 2;
	letter-spacing: 1px;
	padding-top: 1rem;
	padding-bottom: 1.5rem;
}

.news-116-line {
	border-bottom: 1px dashed #dacb9e;
	position: relative;
	text-align: center;
	margin-bottom: 2rem;
	margin-top: 2rem;
}

.news-116-line span {
	position: relative;
	top: 22px;
	display: inline-block;
	width: 40px;
	height: 40px;
	overflow: hidden;
	border-radius: 50%;
	background-color: #f2eddd;
}

.news-116 em {
	display: inline-block;
	margin: 10px 0;
	width: 100px;
	height: 12px;
	background-color: #ebe3d8;
}

.news-116 img {
	max-width: 100%;
	margin: 20px 0;
}

.news-116 h3 {
	font-size: 16px;
	font-weight: 900;
	line-height: 3;
	color: #987856;
}
