﻿/*header*/
header{
	width: 100%;
	border-bottom: 1px solid #da1c30;
}
header>.container{
	display: flex;
	height: 5rem;
}
header .logo{
	flex: 0 0 auto;
	padding:5px 1rem;
}
header .logo img{
	max-width:100%;
	max-height: 100%;
}
header .nav{
	flex: 1;
}
header .nav>ul{
	width: 100%;
	height: 5rem;
	display: flex;
	justify-content: space-around;
	align-items: center;
}
header .nav>ul::after{
	content: none;
}
header .nav>ul>li{
	position: relative;
	width: 100%;
	height: 100%;
	display: flex;
	justify-content: center;
	align-items: center;
}
header .nav>ul>li:hover>a{
	color: #DA1C30;
}
header .nav>ul .drop-menu{
	display: none;
	position: absolute;
	left: 0;
	top: 100%;
	width: 100%;
	height: auto;
	background-color: #000;
	z-index: 99999;
}
header .nav>ul .drop-menu p{
	padding:.75rem 1rem;
	font-size: 0.875rem;
	color: #fff;
	text-align: center;
	border-bottom: 1px solid rgba(255,255,255,.15);
	transition: all .35s ease-in-out;
}
header .nav>ul .drop-menu p a{
	display: block;
	width: 100%;
}
header .nav>ul .drop-menu p:hover{
	background-color: #DA1C30;
}
header .nav>ul>li:hover .drop-menu{
	display: block;
}
/*swiper*/
.swiper-top .swiper-pagination-bullet{
	width: 4rem;
	border-radius: 0;
	height: 2px;
	opacity: .5;
	background-color: #fff;
	transition: all .55s ease-in-out;
}
.swiper-top .swiper-pagination-bullet-active{
	height: 3px;
	opacity: 1;
}
.swiper-top .swiper-mouse{
	text-align: center;
	position: absolute;
	bottom: 3rem;
	width: 100%;
	left: 0;
	z-index: 99999;
}
/*背景*/
.img-gray{
	background: url(../image/bg-gray.jpg) center top repeat-y;
}
.bg-gray{
	background-color: #F7F7F7;
}
.bg-about{
	background: url(../image/bg-about.jpg) center top no-repeat;
	padding-top: 4rem;
	padding-bottom: 4rem;
}
/**/
.index-pro{
	padding-top: 2rem;
}
.index-pro h1{
	font-size: 2rem;
	color: #fff;
	margin-bottom: 1rem;
}
.index-pro p{
	font-size: .875rem;
	line-height: 2;
	color: #fff;
}
.more a{
	display: inline-block;
	width: 10rem;
	line-height: 3rem;
	border: 2px solid rgba(255,255,255,.9);
	text-align: center;
	color: #fff;
	font-size: .875rem;
	margin-top: 1.5rem;
	position: relative;
	overflow: hidden;
	z-index: 99;
	transition: all .55s ease-in-out;
}
.more a::after{
	content: '';
	position: absolute;
	width: 0;
	height: 0;
	display: block;
	left: 50%;
	top: 50%;
	transition: all .55s ease-in-out;
	background-color: #DA1C30;
	border-radius: 100%;
	z-index: -1;
}
.more a:hover{
	border-color: #DA1C30!important;
	color: #fff;
}
.more a:hover::after{
	width: 200px;
	height: 200px;
	margin-left: -100px;
	margin-top: -100px;
}

.pro-type ul{
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
}
.pro-type ul li{
	padding: 1rem;
	display: block;
	height: 100%;
}
.pro-type ul li>a{
	display: block;
	width: 100%;
	height: 100%;
	padding: 1rem;
	position: relative;
}
.pro-type ul li img{
	width: 100%;
}
.pro-type ul li img:last-child{
	position: absolute;
	left: 0;
	bottom: 0;
	display: none;
	width: 100%;
	padding: 1rem;
}
.pro-type ul li h3{
	font-size: .875rem;
	line-height: 2;
	font-weight: 900;
	text-align: center;
	color: #fff;
}
.pro-type ul li:hover>a{
	border: 1px solid #fff;
	background-color: #999;
}
.pro-type ul li:hover h3{
	color: #fff;
}
.pro-type ul li:hover img:first-child{
	visibility: hidden;
}
.pro-type ul li:hover img:last-child{
	display: block;
}
.pro-list{
	padding-top: 2rem;
	padding-bottom: 2rem;
}
.pro-list li{
	padding: 1rem;
}
.pro-list li>a{
	display: block;
	height: 100%;
	position: relative;
	padding-bottom: 3.2rem;
	background-color: #fff;
}
.pro-list li .pro-img{
	background-color: #fff;
	padding: 1.75rem;
	overflow: hidden;
}
.pro-list li img{
	transform: scale(1);
	transition: all .55s ease-in-out;
}
.pro-text{
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	display: flex;
	background-color: #9da0a7;
	color: #fff;
	transition: all .55s ease-in-out;
}
.pro-text span{
	padding: 1rem .7rem;
	font-size: 0.875rem;
}
.pro-text>span:first-child{
	flex: 1;
	border-right: 1px solid #fff;
	white-space: nowrap;
	text-overflow: ellipsis;
	overflow: hidden;
}
.pro-list li:hover .pro-text{
	background-color: #DA1C30;
}
.pro-list li:hover img{
	transform: scale(1.1);
}


.index-about{
	background-color: rgba(199,12,31,.8);
	padding: 3rem 1.5rem;
}

.about-text{
	padding-top: 1.5rem;
}
.about-text h3{
	font-size: 1.75rem;
	color: #fff;
	letter-spacing: 1px;
	padding-bottom: 1rem;
	font-weight: 900;
}
.about-text .icon-line{
	padding-bottom: .5rem;
}
.about-text p{
	font-size: .875rem;
	color: #fff;
	line-height: 2;
}

.index-news-title{
	font-size: 2.2rem;
	font-weight: 900;
	color: #DA1C30;
	text-align: center;
	padding-top: 2rem;
	padding-bottom: 2.4rem;
}
.news-item{
	padding: 1.2rem 1rem;
	display: flex;
	border-bottom: 1px solid rgba(0,0,0,.1);
	overflow: hidden;
	background-color: #fff;
}
.news-item .date{
	padding-right: 1.5rem;
}
.news-item .date strong{
	font-size: 2rem;
	line-height: 3rem;
	display: block;
	margin-bottom: 1.25rem;
	color: #999;
	white-space: nowrap;
	font-weight: normal;
}
.news-item .date span{
	font-size: 1rem;
	color: #999;
	display: block;
	text-align: right;
}
.news-item .news-text{
	flex: 1;
	padding-left: 1.5rem;
	border-left: 1px solid rgba(0,0,0,.3);
	overflow: hidden;
}
.news-item .news-text h3{
	font-size: 1.25rem;
	color: #DA1C30;
	line-height: 2;
	margin-bottom: 1.2rem;
}
.news-item .news-text p{
	font-size: .875rem;
	line-height: 2;
}
.news-item:hover,.news-item:hover .news-text{
	transition: all 1s ease-in-out;
	border-color:#DA1C30;
}
.news-more{
	text-align: center;
}
.news-more>a{
	border-color: #000;
	color: #000;
}

footer{
	width: 100%;
	background-color: #222;
	padding-top: 3.5rem;
}
footer .s-flex{
	justify-content: space-between;
}
.foot-item{
	padding: 1rem 2rem;
	padding-left: 0;
}
.foot-item h3{
	font-size: 1.25rem;
	line-height: 3rem;
	margin-bottom: 1rem;
	color: #fff;
}
.foot-item p{
	font-size: .65rem;
	font-weight: 900;
	line-height: 2rem;
	color: #ccc;
}
.foot-item p:hover{
	color: #fff;
}
.foot-contact{
	padding: 1rem;
	padding-right: 0;
	color: #fff;
}
.foot-contact h3{
	font-size: 1.25rem;
	color: #fff;
	line-height: 3rem;
	margin-bottom: 1rem;
}
.foot-contact p{
	font-size: 12px;
	line-height: 2rem;
}
.foot-ewm{
	width: 100%;
	display:flex;
	padding:1rem 0;
	
}
.foot-ewm>div{
	flex:1;
	text-align: center;

}
.foot-ewm>div img{
	width:100px;
	}
.foot-ewm p{
	font-size: 12px;
	line-height: 3;
	
}
.copyright{
	background-color: #000;
	font-size: 12px;
	text-align: center;
	line-height: 3rem;
	color: #eee;
}

/*分页*/
.page-label{
	position: relative;
	z-index: 99999;
	top: -3.125rem;
	left: 0;
	height: 3.125rem;
	width: 100%;
}
.page-label ul{
	display: flex;
	background-color: rgba(255,255,255,.15);
}
.page-label ul li{
	height: 3.125rem;
	line-height: 3.125rem;
	display: flex;
	justify-content: center;
	align-items: center;
}
.page-label ul li .iconfont{
	background-color: #000;
	color: #fff;
	display: inline-block;
	font-size: 1.65rem;
	font-weight: 900;
	padding-left: 1rem;
	padding-right: 1rem;
}
.page-label ul li span{
	display: inline-block;
	color: #000;
	line-height: 3.125rem;
	padding: 0 2.4rem;
}
.page-label ul li a{
	display: flex;
	justify-content: center;
	align-items: center;
	padding: 0 1rem;
	font-size: 0.875rem;
}
.page-label ul li.active{
	background-color: #DA1C30;
	color: #fff;
}
.page-label ul li em{
	display: block;
	width: 1rem;
	height: 1px;
	background-color: transparent;
	margin: 0 5px;
}
.page-label ul li.active em{
	background-color: #fff;
}

.list-pro{
	padding:3rem 1.5rem;
	background-color: #fff;
	display: flex;
	height: 100%;
}
.list-pro .img-pro{
	width: 50%;
	text-align: center;
}
.list-pro .img-pro img{
	width: auto;
	max-width: 100%;
	padding-left: .5rem;
	padding-right: .5rem;
	transform: scale(.96) translateY(0);
	transition: all .55s ease-in-out;
}
.list-pro .text-pro{
	width: 50%;
	padding:1rem;
}
.list-pro .text-pro h1{
	font-size: 1.5rem;
	line-height: 1.5;
	color: #DA1C30;
	margin-bottom: 1.5rem;
}
.list-pro .text-pro p{
	font-size: 1rem;
	line-height: 2.2;
}
.list-pro .text-pro p:hover{
	color: #DA1C30;
}
.list-pro:hover{
	transition: all .55s ease-in-out;
	box-shadow: 3px 4px 10px rgba(0,0,0,.15);
}
.list-pro:hover .img-pro img{
	transform: scale(.98) translateY(-10px);
}

.content-title{
	text-align: center;
	font-size: 2rem;
	color: #DA1C30;
	line-height: 2;
	font-weight: 900;
	padding-top: 1rem;
}
.content-img{
	text-align: center;
}
.content-img img{
	width: 25rem;
	max-width: 100%;
	border: 1px solid rgba(0,0,0,.15);
	margin: 1rem;
}
.content-title2{
	background-color: #F5F5F5;
	padding:0 1rem;
	font-size: 1.25rem;
	text-align: center;
}
.content-title2 strong{
	display: inline-block;
	height: 3.5rem;
	color: #fff;
	line-height: 3.5rem;
	background-color: #901320;
	width: 25rem;
}

.contact-title{
	text-align: center;
	font-family: 'Times New Roman', Times, serif;
	font-weight: 900;
	font-size: 2.4rem;
	color: #DA1C30;
	line-height: 3;
}
.contact-item{
	background-color: #F5F5F5;
	padding:1rem 1.5rem;
	width: 100%;
	height: 100%;
	border-bottom: 3px solid #DA1C30;
	border-radius: 10px;
}
.contact-item h6{
	font-size: 1.5rem;
	letter-spacing: 1px;
	color: #000;
	line-height: 2;
	margin-bottom: 1.5rem;
}
.contact-item p{
	line-height: 2;
	font-size: .875rem;
	padding-bottom: .5rem;
	color: #999;
}
.contact-item p strong{
	color: #DA1C30;
}

/*产品详情列表*/
.pro-table{
	width: 100%;
	max-width: 100%;
	overflow: hidden;
	border-bottom: 1px solid #ddd;
	border-right: 1px solid #ddd;
	font-size: .875rem;
	text-align: center;
}
.pro-table th{
	text-align: center;
}
.pro-table td,.pro-table th{
	border-left: 1px solid #ddd;
	border-top: 1px solid #ddd;
	padding: 1rem;
	line-height: 2.4;
	white-space: nowrap;
}
.pro-table img{
	max-width: 100%;
}
.pro-color{
	background-color: #e7f6fd;
	text-align: left;
}
.pro-color span{
	display: inline-flex;
	justify-content: center;
	margin-bottom: 1rem;
	margin-right: .5rem;
	width: 28px;
	height: 28px;
	border: 3px solid #fff;
	border-radius: 100%;
	vertical-align: middle;
}
.pro-color strong{
	display: inline-block;
	vertical-align: middle;
	margin-bottom: 1rem;
	color: #000;
}
.pro-color span.pro-red{
	background-color: red;
}
.pro-color span.pro-green{
	background-color: green;
}
.pro-color span.pro-yellow{
	background-color: yellow;
}
.pro-color span.pro-whrite{
	background-color: #fff;
	border-color: #ddd;
}
.pro-color span.pro-blue{
	background-color: blue;
}
.pro-color span.pro-black{
	background-color: black;
}
.pro-color span.pro-gray{
	background-color: #eee;
}
.pro-color span.pro-orange{
	background-color: orange;
}
.pro-shape{
	display: block;
	margin-top: 1rem;
}
.pro-shape>h3{
	text-align: center;
	font-size: .875rem;
	padding: 1rem;
	font-weight: 900;
	line-height: 2;
	border: 1px solid #ddd;
}
.pro-shape>div{
	padding: 1rem;
	border: 1px solid #ddd;
	border-top: none;
}
.pro-wt{
	line-height: 2;
	font-weight: 900;
	color: #000;
}