@charset "utf-8";

/*-- 全局reset
-------------------------------------------*/

html,
body,
div,
h1,
h2,
h3,
h4,
h5,
h6,
hr,
p,
blockquote,
dl,
dt,
dd,
ul,
ol,
li,
pre,
form,
fieldset,
object,
code,
legend,
button,
input,
label,
th,
td,
a,
img {
	margin: 0;
	padding: 0;
	border: 0;
	outline: 0;
}

* {
	box-sizing: border-box;
}

html {
	scroll-padding-top: 122px;
}

body {
	color: #333;
	background-color: #fff;
	position: relative;
	z-index: 10;
	padding-top: 122px;
	max-width: 1920px;
	margin: 0 auto;
}

img {
	width: 100%;
	height: 100%;
}

.MaximumWidth {
	width: 80%;
	margin: 0 auto;
	max-width: 1280px;
	/* border: 1px solid red; */
}

/*清除内外边距*/
h1,
h2,
h3,
h4,
h5,
h6 {
	font-weight: normal;
	font-size: 100%;
}

/*设置默认字体*/
:focus {
	outline: 0;
}

ul,
ol {
	list-style: none;
}

/*重置列表*/
fieldset,
img {
	border: 0 none;
	vertical-align: top;
}

/*重置图片元素*/
address,
caption,
cite,
code,
dfn,
em,
i,
th,
var,
optgroup {
	font-style: normal;
	font-weight: normal;
}

abbr,
acronym {
	border: 0;
	font-variant: normal;
}

input,
button,
select,
optgroup,
option {
	font-family: inherit;
	font-size: inherit;
	font-style: inherit;
	font-weight: inherit;
}

code,
kbd,
samp,
tt {
	font-size: 100%;
}

/*@purpose To enable resizing for IE */
/*@branch For IE6-Win, IE7-Win */
input,
button,
select {
	*font-size: 100%;
	outline: none;
}

/*
form label {
    cursor: pointer;
}
*/

/* textarea {
    resize: none;
}
 */
table {
	border-collapse: collapse;
	border-spacing: 0;
}

/*重置表格*/
blockquote,
q {
	quotes: none;
}

blockquote:before,
blockquote:after,
q:before,
q:after {
	content: '';
	content: none;
}

.fl {
	float: left;
}

.fr {
	float: right;
}

a {
	color: #333;
	text-decoration: none;
	-webkit-transition: color .2s ease-in-out;
	-moz-transition: color .2s ease-in-out;
	transition: color .2s ease-in-out;
	-webkit-transition: background-color .2s ease-in-out;
	-moz-transition: background-color .2s ease-in-out;
	transition: background-color .2s ease-in-out;

}

a:hover {
	text-decoration: none;
}

a.special,
.special a {
	color: #1eb37b;
}

a.special:hover,
.special a:hover {
	color: #1eb37b;
	text-decoration: none;
}

/*--清除浮动
-------------------------------------------*/
.cf:before,
.cf:after,
.clearfix:before,
.clearfix:after {
	content: "";
	display: table;
}

.cf:after,
.clearfix:after {
	clear: both;
}

.cf,
.clearfix {
	clear: both;
	*zoom: 1;
}

/*-- 字号、颜色、外边距、内补丁、居中、行高、显示、隐藏
--------------------------------------------------------------------------*/
.c-333 {
	color: #333;
}

.c-666 {
	color: #666;
}

.c-999 {
	color: #999;
}

.c-green {
	color: #1fb079;
}

.c-orange {
	color: #fc714c;
}

.c-reg {
	color: #d90106;
}

/* 字号 */
.f9 {
	font-size: 9px;
	-webkit-text-size-adjust: none;
}

.f12,
.fb12 {
	font-size: 12px;
}

.simsun {
	font-family: SimSun;
}

.f14,
.fb14 {
	font-size: 14px;
}

.f16,
.fb16 {
	font-size: 16px;
}

.f18,
.fb18 {
	font-size: 18px;
}

.f20,
.fb20 {
	font-size: 20px;
}

.fb,
.fb12,
.fb14,
.fb16,
.fb18,
.fb20 {
	font-weight: 700;
}

/* 隐藏 居中 */

.tc {
	text-align: center;
}

.tr {
	text-align: right;
}

.show {
	display: block;
}

.hide {
	display: none !important;
}





/* 布局 */
.center {
	display: flex;
	align-items: center;
	justify-content: center;
}

.row {
	display: flex;
	flex-direction: row;
	align-items: center;
}

.column {

	display: flex;
	align-items: center;
	justify-content: center;
	flex-direction: column;
}

.column-space-between {
	display: flex;
	align-items: center;
	justify-content: space-between;
	flex-direction: column;
}

.space-between {
	display: flex;
	flex-direction: row;
	justify-content: space-between;
	align-items: center;
}

.space-around {
	display: flex;
	flex-direction: row;
	justify-content: space-around;
	align-items: center;
}

.one {
	flex: 1;
}

.noScorll {
	overflow: -moz-scrollbars-none;
}

/* #endif */

.text-ellipsis1 {
	overflow: hidden;
	text-overflow: ellipsis;
	-webkit-line-clamp: 1;
	display: -webkit-box;
	-webkit-box-orient: vertical;
	white-space: normal;
}

.text-ellipsis2 {
	overflow: hidden;
	text-overflow: ellipsis;
	-webkit-line-clamp: 2;
	display: -webkit-box;
	-webkit-box-orient: vertical;
	white-space: normal;
}

.text-ellipsis3 {
	overflow: hidden;
	text-overflow: ellipsis;
	-webkit-line-clamp: 3;
	display: -webkit-box;
	-webkit-box-orient: vertical;
	white-space: normal;
}

.noScorll::-webkit-scrollbar {
	width: 0 !important;
	height: 0 !important;
	display: none;
}

.noScorll {
	-ms-overflow-style: none;
	overflow: auto;
}


/* 分页 */
.paging {
	margin: 60px auto;
	cursor: pointer;
}

.paging .item {
	width: 40px;
	height: 40px;
	border-radius: 4px;
	margin-right: 20px;
	border: 1px solid #ccc;
}

.paging .item:hover {
	border: 1px solid #D83C23;
	color: #D83C23;
}

.paging .zuo span {
	margin-left: 6px;
	border-top: 2px solid #999999;
	border-right: 2px solid #999999;
	width: 12px;
	height: 12px;
	/* transition: all 0.8s; */
	transform: rotate(-135deg);
	-ms-transform: rotate(-135deg);
	/* IE 9 */
	-moz-transform: rotate(-135deg);
	/* Firefox */
	-webkit-transform: rotate(-135deg);
	/* Safari 和 Chrome */
	-o-transform: rotate(-135deg);
}

.paging .you {
	margin-left: 30px;
}

.paging .you span {
	margin-right: 6px;
	border-top: 2px solid #999999;
	border-right: 2px solid #999999;
	width: 12px;
	height: 12px;
	/* transition: all 0.8s; */
	transform: rotate(45deg);
	-ms-transform: rotate(45deg);
	/* IE 9 */
	-moz-transform: rotate(45deg);
	/* Firefox */
	-webkit-transform: rotate(45deg);
	/* Safari 和 Chrome */
	-o-transform: rotate(45deg);
}

.paging .arrow:hover span {
	border-color: #007AFF;
}

.page a {
	margin-left: 30px;
	font-size: 20px;
	color: #999999;
}

.page a:hover {
	color: #007AFF;
}

/* 上下页 */
.pagination {
	display: flex;
    align-items: center;
    justify-content: center;
    margin: 60px auto;
	cursor: pointer;
}

.pagination li {
	width: 40px;
	height: 40px;
	border-radius: 4px;
	margin-right: 20px;
	border: 1px solid #ccc;
	text-align: center;
	font-size: 16px;
	line-height: 38px;
}
.pagination li span{

}

.pagination li:hover {
	border: 1px solid #D83C23;
    color: #D83C23;
}
.pagination li:hover a{
    color: #D83C23;
}
.pagination .active{
	border: 1px solid #D83C23;
	color: #D83C23;
}
.pagination .active span{
	color: #D83C23;
}

.Related-title {
	text-align: center;
	margin: 80px auto 60px;
}

.rich-text {
	font-size: 20px;
	color: #666;
	padding: 30px 0 50px;
}

.rich-text p {
	margin-bottom: 20px;
}

.rich-text img {
	margin-bottom: 20px;
}

/* h2标题 */
.title-h2 {}

.title-h2 .h2-img {
	margin-top: 10px;
	width: 30px;
	height: 30px;
	margin-right: 10px;
}

.title-h2 .h2-text {
	font-size: 32px;
	font-weight: bold;
	color: #333;
	position: relative;
	text-transform: uppercase;
}

.title-h2 .h2-text::after {
	content: '';
	position: absolute;
	left: 0;
	bottom: 0%;
	width: 100%;
	height: 6px;
	background: #D83C23;
	border-radius: 3px;
}

.subtitle {
	text-align: center;
	font-size: 18px;
	color: #333;
	line-height: 24px;
	margin-top: 12px;
}
.banner{
}
.banner img{
	min-height: 200px;
	object-fit: cover;
}

/* 关于 */
.about {
	display: flex;
	margin-top: 80px;
}

.about>div {
	flex: 1;
}

.about .about-left {
	margin-right: 100px;
}

.about .al-decs {
	margin-top: 30px;
	font-size: 16px;
	line-height: 24px;
}

.about .about-left .more-butt {
	padding: 12px 25px;
	border-radius: 4px;
	background: #CC2D2D;
	color: #FFF;
	font-size: 16px;
	display: inline-block;
	margin-top: 50px;
	transition: all 0.5s;
}

.about .about-left .more-butt:hover {
	border-radius: 30px;
	box-shadow: 0px 0px 8px #d4d4d4;
}

.about .about-img {
	overflow: hidden;
	cursor: pointer;
	border-radius: 50px 0 50px 0px;
}

.about .about-img img {
	transition: all 0.5s;
}

.about .about-img:hover img {
	transform: scale(1.05);
}
.classify-box{
	overflow-x: auto;
}

/* 关于我们分类 */
.about-classify {
	border-bottom: 1px solid #999;
}

.classify-box .cn-item {
	padding: 20px 0;
	margin-right: 40px;
	color: #666666;
	font-size: 18px;
	position: relative;
	text-transform: uppercase;
	white-space: nowrap;
}

.classify-box .cn-item:last-child {
	margin-right: 0;
}

.classify-box .cn-item-active::after {
	content: '';
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 2px;
	background-color: #C32328;

}

.pb-classify {
	margin-bottom: 60px;
}

.pb-classify .pbc-item {
	font-size: 26px;
	color: #333333;
	margin-right: 100px;
	position: relative;
}

.pb-classify .pbc-item:last-child {
	margin-right: 0;
}

.pb-classify .pbc-item-active {
	color: #D83C23;
}

.pb-classify .pbc-item-active:before {
	content: '';
	position: absolute;
	left: 50%;
	transform: translateX(-50%);
	bottom: -10px;
	width: 50%;
	height: 4px;
	background: #D83C23;
}

.DownloadList {
	padding: 40px 30px;
}

.DownloadList .dl-item {
	border-bottom: 1px solid #CCCCCC;
	padding: 15px 0;
	transition: all 0.3s;
}

.DownloadList .dl-item .sli-l {
	display: flex;
	align-items: center;
}

.DownloadList .dl-item .sli-l .yd {
	width: 12px;
	height: 12px;
	background: #CCCCCC;
	border-radius: 50%;
	margin-right: 10px;
}

.DownloadList .sli-l .text {
	font-size: 18px;
	color: #333333;
}

.DownloadList .dl-item:hover {
	/* color: #C32328; */
	background-color: #F3F3F3;
	padding: 15px;
}

.DownloadList .dl-item .sli-l .sbwy {
	display: none;
}

.details .dl-name {
	background-color: #F3F3F3;
	font-size: 24px;
	color: #000000;
	padding: 10px;

}

.DownloadList .sli-r {
	display: flex;
	align-items: center;
}

.DownloadList .sli-r .type {
	font-size: 14px;
	color: #999999;
	margin-right: 30px;
}

.DownloadList .sli-r .xzwz {
	font-size: 16px;
	color: #333333;
	margin-left: 10px;
}

.DownloadList .dl-item:hover .sli-r .xzwz {
	/* color: #C32328; */
}

.DownloadList .sli-r .tel-sb {
	width: 30px;
	height: 30px;
}

@media screen and (max-width: 1300px) {
	body {
		padding-top: 75px;
	}

	html {
		scroll-padding-top: 75px;
	}

	.MaximumWidth {
		width: 90%;

	}

	.about .about-left {
		margin-right: 50px;
	}

	.title-h2 .h2-text {
		font-size: 24px;
	}

	.about .al-decs {
		margin-top: 20px;
	}

	.about .about-left .more-butt {
		margin-top: 30px;
		padding: 8px 15px;
		font-size: 14px;
	}

	.classify-box .cn-item {
		padding: 10px 0;
		font-size: 14px;
		margin-right: 20px;
	}

	.DownloadList .sli-l .text {
		font-size: 16px;
	}

}

@media screen and (max-width: 768px) {
	body {
		padding-top: 3.4375rem;
	}
	

	.MaximumWidth {
		width: 92%;

	}


	.paging {
		margin-top: 1.25rem;
	}

	.paging .arrow {
		width: 1.875rem;
		height: 1.875rem;
	}

	.banerSwiper {
		height: 18.75rem;
	}

	.about {
		margin-top: 30px;
		flex-direction: column;

	}

	.about .about-left {
		margin-right: 0px
	}

	.title-h2 .h2-img {

		width: 20px;
		height: 20px;
	}

	.title-h2 .h2-text {
		font-size: 1rem;
	}

	.about .al-decs {

		font-size: 14px;
		line-height: 24px;
	}

	.about .about-left .more-butt {
		/* margin-top: 30px; */
		margin: 20px auto;
		padding: 5px 0px;
		display: block;
		width: 120px;
		text-align: center;
	}

	.subtitle {
		font-size: 0.875rem;
	}

	.Product .Product-list {
		margin-top: 30px;
	}



	.DownloadList .dl-item{
		flex-direction: column;
	}
	.DownloadList .sli-r .xzwz,
	.DownloadList .sli-r .tel-sb{
		display: none;
	}
	.DownloadList .sli-r .type{
		margin-right: 0;
	}
	.DownloadList .sli-r{
		margin-top: 10px;
		width: 100%;
		justify-content: space-between;
	}
	.DownloadList .dl-item .sli-l{
		width: 100%;
	
	}
	.DownloadList .dl-item .sli-l .sbwy{
		display: block;
		width: 30px;
		height: 30px;
		margin-left: auto;
	}
.DownloadList .dl-item .sli-l .yd{
		width: 10px;
		height: 10px;
		min-width: 10px;
	}
.DownloadList {
	    padding: 20px 0px;
	}
}
