*{
	font-size: inherit;
	font-family: "微软雅黑";

	padding: 0;
    margin: 0;
	list-style: none;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}
:root {
	--main-color: #910000;
	--main-text: #333;
	font-size: calc(100vw / 1920 * 100);
}

/**
 * 计算rem
 */

html {
	font-size:100%;
}

/*无效输入时的样式*/
input:required:invalid {
	background-image: url(../images/error.png);
	background-position: right center;
	background-repeat: no-repeat;
	border-color: red;
	box-shadow: none;
	/* 兼容FF13以前版本 */
	-moz-box-shadow: none;
}

/*有效输入时的样式*/
input:required:valid {
	background-image: url(../images/true.png);
	background-position: right center;
	background-repeat: no-repeat;
	border-color: green;
	box-shadow: none;
	/* 兼容FF13以前版本 */
	-moz-box-shadow: none;
}

input {
	border: none;
	outline: none;
}

a:focus,
video:focus,
input:focus {
	border: none;
	outline: none;
}

*:focus {
	outline: none;
}

::-webkit-input-placeholder {
	/* WebKit browsers */
	color: #D1D1D1;
	font-size: inherit;
	font-weight: inherit;
	transform: translateY(10%);
}

::-moz-placeholder {
	/* Mozilla Firefox 19+ */
	color: #D1D1D1;
	font-size: inherit;
	font-weight: inherit;
	transform: translateY(10%);
}

:-ms-input-placeholder {
	/* Internet Explorer 10+ */
	color: #D1D1D1;
	font-size: inherit;
	font-weight: inherit;
	transform: translateY(10%);
}

/*包含以下四种的链接*/
a {
	text-decoration: none;
	color: inherit;
	font-size: inherit;
}

/*正常的未被访问过的链接*/
a:link {
	text-decoration: none;
}

/*已经访问过的链接*/
a:visited {
	text-decoration: none;
}

/*鼠标划过(停留)的链接*/
a:hover {
	text-decoration: none;
}

/* 正在点击的链接*/
a:active {
	text-decoration: none;
}
span,
p,
ul li,
ol li{
	font-size: inherit;
}

.fixed {
	position: fixed;
}

.main-box {
	width: 79.17%;
	margin: auto;
	/* min-width: 1400px; */
}

/* 设置滚动条的样式 */
/* ::-webkit-scrollbar {
	width: 10px;
	height: 6px;
} */

/* 滚动槽 */
/* ::-webkit-scrollbar-track {
	-webkit-box-shadow: inset 0 0 2px rgba(0, 0, 0, 0.2);
	border-radius: 10px;
} */

/* 滚动条滑块 */
/* ::-webkit-scrollbar-thumb {
	border-radius: 10px;
	background: rgba(0, 0, 0, 0.1);
	-webkit-box-shadow: inset 0 0 1px rgba(0, 0, 0, 0.2);
} */
/* 
::-webkit-scrollbar-thumb:window-inactive {
	background: rgba(214, 214, 214, 0.4);
} */
[class*=van-hairline]::after {
	position: absolute;
	box-sizing: border-box;
	content: ' ';
	pointer-events: none;
	top: -50%;
	right: -50%;
	bottom: -50%;
	left: -50%;
	border: 0 solid #ebedf0;
	-webkit-transform: scale(.5);
	transform: scale(.5)
}

.van-hairline,
.van-hairline--bottom,
.van-hairline--left,
.van-hairline--right,
.van-hairline--surround,
.van-hairline--top,
.van-hairline--top-bottom {
	position: relative
}

.van-hairline--top::after {
	border-top-width: 1px
}

.van-hairline--left::after {
	border-left-width: 1px
}

.van-hairline--right::after {
	border-right-width: 1px
}

.van-hairline--bottom::after {
	border-bottom-width: 1px
}

.van-hairline--top-bottom::after,
.van-hairline-unset--top-bottom::after {
	border-width: 1px 0
}

.van-hairline--surround::after {
	border-width: 1px
}
.van-ellipsis {
	overflow: hidden;
	white-space: nowrap;
	text-overflow: ellipsis
}

.van-multi-ellipsis--l2 {
	display: -webkit-box;
	overflow: hidden;
	text-overflow: ellipsis;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical
}

.van-multi-ellipsis--l3 {
	display: -webkit-box;
	overflow: hidden;
	text-overflow: ellipsis;
	-webkit-line-clamp: 3;
	-webkit-box-orient: vertical
}


/**
 * 小标题
 */
.page-min-title {
	text-align: center;
	padding: .9rem 0 .24rem 0;
	color: rgb(51, 51, 51);
	display: flex;
	justify-content: center;
}

.page-min-title strong {
	font-size: .36rem;
	font-weight: 400;
	position: relative;
	cursor: pointer;
	transition: all 300ms;
}

.page-min-title strong::after {
	content: '';
	position: absolute;
	bottom: -2px;
	left: 0;
	right: 0;
	height: .04rem;
	width: 64.51%;

	margin: auto;
	background-color: var(--main-color);
	border-radius: 2px;
	transition: all 300ms;
	transform: translateY(100%);
	background-clip: content-box;
	box-sizing: border-box;
}

.page-min-title strong:hover {
	color: var(--main-color);
}

.page-min-title strong:hover::after {
	padding: 0 50%;
	opacity: 0;
	bottom: .06rem;
}

/*子页面 banner*/
.child-banner {
	background: no-repeat center bottom;
	background-size: cover;
	font-size: 0;
}

.child-banner img {
	width: 100%;
	opacity: 0;
}

/**
 * comm
 */
.culture-top-con p {
	font-size: .2rem;
	color: rgb(102, 102, 102);
	text-indent: 2em;
	line-height: .4rem;
}

.culture-top-con h2 {
	margin-top: .3rem;
	font-size: .28rem;
	color: rgb(145, 0, 0);
	text-align: center;
	line-height: .86rem;
}

/*龙标题*/
.min-nav-title {
	display: flex;
	justify-content: center;
	padding: .7rem 0 .3rem 0;
	align-items: center;
	align-items: center;
	align-content: center;
}

.min-nav-title img {
	padding: 0 .02rem;
	width: .78rem;
	height: auto;
}

.min-nav-title .right-long {
	transform: rotateY(180deg);
}

.min-nav-title .min-title {
	transform: translateY(-.01rem);
	padding: 0 .1rem;
	text-align: center;
	font-size: 0;
}

.min-nav-title .text-zh,
.min-nav-title .text-eh {
	padding: 0 .1rem;
	font-size: .32rem;
	line-height: 1em;
	font-weight: 400;
}

.min-nav-title .text-zh {
	color: var(--main-color);
	font-weight: 800;
	letter-spacing: .1em;
	padding-left: calc(.1rem + .2em);
}

.min-nav-title .text-eh {
	color: #666;
	font-size: .24rem;
}
.min-title{
    font-size: 0;
}

/*新闻*/
.news-con-ul {
	display: flex;
	justify-content: space-between;
	flex-direction: row;
	flex-wrap: wrap;
}

.news-con-ul .news-con-item {
	width: calc(33.33% - .5rem);
	border-radius: .04rem;
	box-shadow: 0 1px .1rem 0 rgba(0, 0, 0, .1);
	overflow: hidden;
	background-color: #fff;
	padding: .1rem;
	overflow: hidden;
	margin: .15rem;
	cursor: pointer;
}

.news-con-ul .news-con-item .news-img {
	border-radius: inherit;
	overflow: hidden;
	position: relative;
}

.news-con-ul .news-con-item .news-img i {
	border-radius: inherit;
	background: no-repeat center center;
	background-size: cover;
	transition: all 300ms;
	position: absolute;
	top: 0;
	left: 0;
	bottom: 0;
	right: 0;
}

.news-con-ul .news-con-item .news-img i:hover {
	transform: scale(1.1);
}

.news-con-ul .news-con-item .news-img::after {
	content: '';
	padding-top: 52%;
	display: block;
	width: 0;
	height: 0;
	float: left;
}

.news-con-ul .news-con-item .news-title {
	text-align: center;
	font-weight: 700;
	font-size: .2rem;
	color: #333333;
	overflow: hidden;
	display: -webkit-box;
	/* 将对象作为弹性伸缩盒子模型显示 。*/
	text-overflow: ellipsis;
	/* 可以用来多行文本的情况下，用省略号“...”隐藏超出范围的文本 。*/
	-webkit-box-orient: vertical;
	/* 设置或检索伸缩盒对象的子元素的排列方式 。*/
	-webkit-line-clamp: 2;
	/* 限制在一个块元素显示的文本的行数 */
	line-height: 1.4em;
	min-height: 2.8em;
	margin: .1rem 0;
}

.news-con-ul .news-con-item .news-con {
	font-family: "微软雅黑";
	font-size: .16rem;
	color: #666;
	overflow: hidden;
	display: -webkit-box;
	/* 将对象作为弹性伸缩盒子模型显示 。*/
	text-overflow: ellipsis;
	/* 可以用来多行文本的情况下，用省略号“...”隐藏超出范围的文本 。*/
	-webkit-box-orient: vertical;
	/* 设置或检索伸缩盒对象的子元素的排列方式 。*/
	-webkit-line-clamp: 3;
	/* 限制在一个块元素显示的文本的行数 */
	line-height: 1.4em;
	min-height: 4.2em;
	margin: .1rem 0;
	text-indent: 2em;
}

.news-con-ul .news-con-item .news-footer {
	font-size: .16rem;
	color: rgb(11, 6, 6);
	display: flex;
	justify-content: space-between;
}

.news-more {
	font-size: .14rem;
	display: inline-block;
	background-color: rgb(209, 209, 209);
	color: #fff;
	border-radius: 9rem;
	padding: .3em 2em .2em;
	line-height: 1.2em;
	margin-top: .3rem;
	vertical-align: middle;
}

.news-more .iconyou-6 {
	vertical-align: middle;
	line-height: 1.2em;
}

/*产品*/
.detail-product-list {
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
	justify-content: flex-start;
}

.detail-product-list>li {
	width: calc(33.33% - .3rem);
	margin: .15rem;
	text-align: center;
}

.detail-product-list .product-img {
	border-radius: 4px;
	border: 1px solid rgb(209, 209, 209);
	background: no-repeat center center;
	background-size: contain;
}

.detail-product-list .product-img::after {
	content: '';
	display: block;
	padding-top: 78.9%;
	width: 0;
	height: 0;
}

.detail-product-list h2 {
	color: rgb(145, 0, 0);
	font-size: .2rem;
	line-height: 3em;
}

.detail-product-list ol {
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
	justify-content: space-between;
	box-sizing: border-box;
}

.detail-product-list ol li {
	color: rgb(80, 80, 80);
	font-size: .16rem;
	width: 50%;
	box-sizing: border-box;
	line-height: 1.7em;
}

.detail-product-list>li .product-price {
	font-size: .2rem;
	color: rgb(11, 6, 6);
	margin: .1rem 0;
	font-weight: 700;
}

.detail-product-list>li .product-price span {
	color: rgb(145, 0, 0);
	font-size: .36rem;
}
.neir {
  list-style: decimal;
  font-size: .2rem;
  color: rgb(102,102,102);
  line-height: 1.8em; padding:20px 0 10px 0;
}
.neir img{max-width: 100%; height:auto; margin:0 auto; display:block; font-size:0}

.zx_bottom_wen{width:1200px; margin:0 auto}
.zx_bottom_wen .wen_xun_xun{display:block;border-bottom: 1px dashed #dcdcdc;
width: 100%;

padding: 25px 0px 25px 0; overflow:auto}
.zx_bottom_wen .wen_xun_xun dd{padding-bottom:10px;font-size: 18px; color:#333}
dt{padding:0; margin:0;}

.zx_bottom_wen .wen_xun_xun dt span:nth-child(1) {
  font-size: 12px;
  color: #333; float:left}
.zx_bottom_wen .wen_xun_xun dt span:nth-child(1) i {
  color: #ff3b21;
  font-style: normal;
}
.zx_bottom_wen .wen_xun_xun dt span:nth-child(2) {
  font-size: 12px;
  color: #aea3ab;
  padding-left: 20px; float:left
}

.tiw_bottom {
	width:1200px; margin:0 auto;
  padding: 30px 40px;
  position: relative;

  background: #fff;
}
.tiw_bottom::before {
  content: "";
  background: url(../images/bn2.png) no-repeat 50% 50%;
  width: 32px;
  height: 29px;
  display: inline-block;
  position: absolute;
  left: 10px; top0;}
.tiw_bottom .tiw_bottom_title {
  font-size: 18px;
  color: #333333;
  padding-bottom: 25px; padding-left:10px;
}
.tiw_bottom .tiw_bottom_title span {
  color: #ffab24;
}

.tiw_bottom .tiw_bottom_wen .bottom_wen_xun {
  border-top: 1px dashed #dcdcdc;
  padding: 30px 0px;
}

.chuizhi {
  -webkit-align-items: center;
  display: -webkit-flex;
  -webkit-justify-content: star;
}
.tiw_bottom .tiw_bottom_wen .bottom_wen_xun .wen_xun_top .xun_top_left dd img{
  width: 54px;
  height: 54px;
  border-radius:30px; float:left

}
.wen_xun_top .xun_top_left dt {
  padding-left: 10px; font-size: 16px; color:#444; float:right
}

.tiw_bottom .tiw_bottom_wen .bottom_wen_xun .wen_xun_nei {
  color: #444444;
  font-size: 16px;
  line-height: 30px;
  padding-top: 10px;
}
.tiw_top {
	width:1200px; margin:0 auto;
  padding: 30px 40px 0 40px;
  position: relative;
  background: #fff; margin-top:40px;
}

.tiw_top::before {
  content: "";
  background: url(../images/bn1.png) no-repeat 50% 50%;
  width: 36px;
  height: 34px;
  display: inline-block;
  position: absolute;
  left: 10px;
  top: 0;
}
.tiw_top .tiw_top_title {
  padding-bottom: 20px;
  padding-left: 17px;
}
.tiw_top .tiw_top_title dl dd {
  font-size: 22px;
  color: #333333;
  font-weight: bolder;
  padding-bottom: 15px; margin-top:-30px
}
.tiw_top .tiw_top_title p {
  color: #888888;
  font-size: 13px;
}