* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
	font-family: Helvetica, "PingFang SC", "Microsoft Yahei", sans-serif;
	font-size: 20px;
}

[v-cloak] {
	display: none;
}

body {
	overflow-x: hidden;
	background-color: #f3f3f3;
	min-width: 1200px;
}

a {
	text-decoration: none;
	color: #333;
}

a:hover,
a:visited,
a:link,
a:active {
	color: #333;
}



/* 版心 */
.type-center {
	width: 60em;
	/* border: 1px solid black; */
}

/* ================= 头部================== */

/* 头部 */
header {
	/* 用于定位导航菜单 */
	position: relative;
	z-index: 2000;
}


/* 页面下滑时固定导航，背景设置为白色 */
header.sticky {
	position: fixed;
	box-shadow: 0 0 18px rgba(0, 0, 0, 0.2);
	animation: dropDown 0.5s ease-in-out forwards;
}

/* 头部 */

/* logo部分 */
.logo-top-box {
	display: flex;
	justify-content: center;
	width: 100%;
	min-width: 1200px;
	height: 6em;
	/* 用于定位导航菜单 */
	position: relative;
	z-index: 200;
}

.logo-top-box .bg-box {
	position: absolute;
	z-index: 201;
	width: 100%;
	height: 100%;
}

.logo-top-box .bg-box img {
	width: 100%;
	height: 100%;
}


.logo-top-box .logo-top-warp {
	position: absolute;
	z-index: 202;
	top: 50%;
	transform: translate(0, -50%);
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.logo-top-box .logo-top-warp .left-logo-box {
	display: flex;
	align-items: center;
}

.logo-top-box .logo-top-warp .left-logo-box .logo img {
	/* width: 3em;
  height: 3em; */
	vertical-align: middle;
}

.logo-top-box .logo-top-warp .left-logo-box .name {
	display: flex;
	flex-direction: column;
	justify-content: space-around;
	padding-left: 0.75em;
	height: 3em;
}

.logo-top-box .logo-top-warp .left-logo-box .name .name-zh span {
	font-weight: 400;
	font-size: 1.3em;
	text-align: left;
	color: #fff;
}

.logo-top-box .logo-top-warp .left-logo-box .name .name-en {
	display: flex;
	align-items: center;
}

.logo-top-box .logo-top-warp .left-logo-box .name .name-en span {
	font-weight: 400;
	font-size: 0.55em;
	letter-spacing: 0.03px;
	text-align: left;
	color: #fff;
}

.logo-top-box .logo-top-warp .right-logo-box .tips .top-tips {
	display: flex;
	justify-content: flex-end;
}

.logo-top-box .logo-top-warp .right-logo-box .tips .top-tips span {
	font-weight: 700;
	font-size: 0.7em;
	letter-spacing: 0.05px;
	line-height: 1.25em;
	text-align: right;
	color: #fff;
}

/* 固定导航下滑动画 */
@keyframes dropDown {
	from {
		transform: translateY(-100px);
	}

	to {
		transform: translateY(0);
	}
}

/* ========================导航条部分======================== */
.nav-box {
	display: flex;
	justify-content: center;
	align-items: center;
	background-color: #ffffff;
}

.nav-box .nav-warp {
	display: flex;
	justify-content: space-between;
	align-items: center;
	height: 2.5em;
}

.nav-box .nav-warp .left-item-box {
	display: flex;
	align-items: center;
	min-width: 42em;
	height: 100%;
}

.nav-box .nav-warp .left-item-box .nav-item-box {
	position: relative;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	height: 2.5em;
	padding: 0 2.5em;
}

.nav-box .nav-warp .left-item-box .nav-item-box:hover {
	display: flex;
	align-items: center;
	padding: 0.75em 2.5em;
	background-color: #78171A;
}

.nav-box .nav-warp .left-item-box .nav-item-box a {
	color: #000000ff;
	font-size: 0.85em;
	font-weight: 700;
	letter-spacing: 0.7px;
}
.nav-box .nav-warp .left-item-box .nav-item-box:hover a {
	color: #ffffff;
}

.nav-box .nav-warp .left-item-box .nav-item-box.navActive {
	display: flex;
	align-items: center;
	padding: 0.75em 2.5em;
	background-color: #78171A;
}

.nav-box .nav-warp .left-item-box .nav-item-box.navActive a {
	color: #ffffff;
	font-size: 0.85em;
	font-weight: 700;
	letter-spacing: 0.7px;
}

.item-child {
	display: none;
	position: absolute;
	z-index: 1111;
	bottom: 0em;
	width: 100%;
	height: 0;
	background-color: #fff;
	box-shadow: 0 0 0.8em 0 #333;
}

.item-child .child-box {
	display: none;
	justify-content: center;
	align-items: center;
	width: 100%;
	padding: 0.75em 0;
	background-color: #fff;
	border-bottom: 1px dashed #f2f2f2;
}

.item-child .child-box a span {
	color: #000000ff;
	font-size: 0.8em;
	font-weight: 400;
	letter-spacing: 0.7px;
}

.nav-box .nav-warp .left-item-box .nav-item-box:hover .item-child .child-box {
	display: flex;
	animation: show1 0.5s 0s;
}

.nav-box .nav-warp .left-item-box .nav-item-box .item-child .child-box:hover {
	background: rgba(233, 233, 233, 0.9);
}

.nav-box .nav-warp .left-item-box .nav-item-box:hover .item-child {
	display: block;
}

@keyframes show1 {
	0% {
		/*动画开始时*/
		padding: 0em 0em;
	}

	100% {
		/*动画结束时*/
		padding: 0.75em 0em;
	}
}


.nav-box .nav-warp .right-input-box .right-input-warp {
	display: flex;
	align-items: center;
	height: 1.95em;
	background-color: #A60A11;
}

.nav-box .nav-warp .right-input-box .right-input-warp .right-input {
	display: flex;
	height: 1.85em;
	padding-left: 0.05em;

}

.nav-box .nav-warp .right-input-box .right-input-warp .search-title {
	display: flex;
	justify-content: center;
	align-items: center;
	width: 4.15em;
	height: 1.85em;
	background-color: #A60A11;
}

.nav-box .nav-warp .right-input-box .right-input-warp .search-title span {
	font-weight: 700;
	font-size: 0.7em;
	letter-spacing: 0.05px;
	line-height: 1.25em;
	text-align: left;
	color: #fff;
}

/* ===================================轮播图部分 */
.banner-box{
	min-width: 1200px;
}
.banner-box .banner img {
	width: 100%;
}


/* 中部内容部分 */
.middle-content-box {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 2.1em 0 0;
}

.middle-content-warp {
  display: flex;
}

.nav-left-box {
  width: 16.85em;
}

.nav-left-box .top-title-box {
  display: flex;
  align-items: center;
  width: 15.5em;
  padding: 1em;
  background: url('../static/icons/icon6.png');
  background-size: 100% 100%;
}

.nav-left-box .top-title-box .top-title-warp {
  display: flex;
  align-items: center;
}

.nav-left-box .top-title-box .top-title-warp .top-title {
  display: flex;
  align-items: center;
}

.nav-left-box .top-title-box .top-title-warp .top-title .line {

  width: 0.3em;
  height: 0.8em;
  border-radius: 0.1em;
  background-color: #ffffff;
}
.nav-left-box .top-title-box .top-title-warp .top-title .title {
  display: flex;
  align-items: center;
}

.nav-left-box .top-title-box .top-title-warp .top-title .title span {
  display: flex;
  align-items: center;
  font-weight: 700;
  letter-spacing: 0.05px;
  line-height: 1.5em;
  text-align: left;
  color: #ffffff;
  padding-left: 0.5em;
  font-size: 0.85em;
}

.nav-left-box .bottom-item-box {
  width: 15.5em;
  background-color: #ffffff;
  padding: 0 1em;
}

.nav-left-box .bottom-item-box .bottom-left-item-box {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 1.1em 0;
  border-bottom: 1px dashed #E7E7E7;
  cursor: pointer;
}

.nav-left-box .bottom-item-box .bottom-left-item-box:hover {
  padding: 1.1em 0;
  border-bottom: 1px dashed #ffffff;
  border-radius: 0.3em;
}

.nav-left-box .bottom-item-box .bottom-left-item-box:last-child {
  border-bottom: 0px dashed #E7E7E7;
}

.nav-left-box .bottom-item-box .bottom-left-item-box span {
  color: #000;
  font-size: 0.8em;
  font-weight: 700;
  letter-spacing: 0;
}

.nav-left-box .bottom-item-box .bottom-left-item-box:hover span {
  color: #a50a11ff;
  font-size: 0.8em;
  font-weight: 700;
  letter-spacing: 0;
  /* transform: translateX(50%); */
  /* animation: textCenter 2s; */
}

/* 固定导航下滑动画 */
/* @keyframes textCenter {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(50%);
  }
} */

.nav-left-box .bottom-item-box .bottom-left-item-box.itemActive span {
  color: #a50a11ff;
  font-size: 0.8em;
  font-weight: 700;
  letter-spacing: 0;
}

.content-right-box {
  flex: 1;
}

.content-right-warp {
  padding: 1em;
  background-color: #fff;
}

.content-right-warp .top-title-box .top-title {
  display: flex;
  align-items: center;
}
.content-right-warp .top-title-box .top-title .title {
  display: flex;
  align-items: center;
}

.content-right-warp .top-title-box .top-title .line {
  width: 0.4em;
  height: 1.2em;
  border-radius: 0.2em;
  background-color: #A50A11;
}

.content-right-warp .top-title-box .top-title .title span {
  font-weight: 700;
  letter-spacing: 0.05px;
  line-height: 1.5em;
  text-align: left;
  color: #a50a11;
  padding-left: 0.5em;
  font-size: 0.85em;
}

.content-right-warp .bottom-content-box .bottom-content-warp {
  display: flex;
  flex-wrap: wrap;
}

.content-right-warp .bottom-content-box .bottom-content-warp .item-box {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 1.3em 0 0;
  overflow: hidden;
  margin-right: 1.78em;
}
.content-right-warp .bottom-content-box .bottom-content-warp .item-box:nth-child(3n) {
  margin-right: 0em;
}

.content-right-warp .bottom-content-box .bottom-content-warp .item-box .img-box {
  border-radius: 0.5em;
  overflow: hidden;
}

.content-right-warp .bottom-content-box .bottom-content-warp .item-box .img-box img {
  width: 12.4em;
  height: 9.55em;
  vertical-align: middle;
}

.content-right-warp .bottom-content-box .bottom-content-warp .item-box:hover .img-box img {
  transition-property: all;
  transition-duration: 0.5s;
  transition-timing-function: linear;
  transform: scale(1.1, 1.1);
}


.content-right-warp .bottom-content-box .bottom-content-warp .item-box .title-box {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0.5em 0;
}

.content-right-warp .bottom-content-box .bottom-content-warp .item-box .title-box span {
  font-weight: 700;
  font-size: 0.75em;
  line-height: 1.4em;
  text-align: center;
  color: #000;
}

.content-right-warp .bottom-content-box .bottom-content-warp .item-box:hover .title-box span {

  color: rgb(158, 21, 21);
}

.content-right-warp .bottom-content-box .bottom-content-warp .item-box .bottom-line {
  width: 10em;
  height: 0.2em;
  background-color: #fff;
  border-radius: 0.1em;
}

.content-right-warp .bottom-content-box .bottom-content-warp .item-box:hover .bottom-line {
  background-color: rgb(158, 21, 21);
  animation: lineLength 0.5s ease-in-out forwards;
}

@keyframes lineLength {
  from {
    width: 0em;
  }

  to {
    width: 10em;
  }
}



.page-box {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 2em 0 1em;
}

/* =================================预览图片部分---开始============================= */

.mask-layer-box {
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  z-index: 10000;
  background-color: #000;
  display: none;
}

.openMark {
  display: block;
}

.closeMark {
  display: none;
}


.mask-layer-warp {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 100%;
}

.top-close-box {
  width: 100%;
}

.top-close-box .close-img {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  padding: 0 4em;
}

.top-close-box .close-img img {
  width: 2em;
  height: 2em;
}

.middle-picture-content-box {
  padding: 3em 0;
}

.middle-picture-content-box .middle-picture-content-warp {
  width: 70.5em;
}

.middle-picture-content-box .middle-picture-content-warp .el-carousel {
  width: 70.5em;
}

.middle-picture-content-box .middle-picture-content-warp .el-carousel .el-carousel__container {
  height: 25.6em;
}


.middle-picture-content-box .middle-picture-content-warp .el-carousel .el-carousel-item {
  width: 70.5em;
}

.middle-picture-content-box .middle-picture-content-warp .pic-box {
  height: 25.6em;
  background-color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0.8em;
}

.middle-picture-content-box .middle-picture-content-warp .pic-box img {
  width: 34em;
  height: 24.6em;
}

.bottom-box {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.bottom-box .number-box .text1 {
  font-weight: 400;
  font-size: 0.8em;
  line-height: 1.25em;
  text-align: left;
  color: #A50A11;
}

.bottom-box .number-box .text2 {
  font-weight: 400;
  font-size: 0.8em;
  line-height: 1.25em;
  text-align: left;
  color: #fff;
}

.bottom-box .pic-title-box span {
  font-weight: 400;
  font-size: 0.8em;
  line-height: 1.25em;
  text-align: left;
  color: #fff;
}
/* =================================预览图片部分---结束============================= */

/* ================================底部部分============================= */
footer {
  padding-top: 2.2em;
}

.foot-warp {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background-color: #282828;
}

.top-foot {
  display: flex;
  background-color: #282828;
  padding: 1.75em 0;
}


.top-foot .bottom-left-logo-box {
  display: flex;
  align-items: center;
  padding-right: 2em;
}

.top-foot .bottom-left-logo-box .logo img {
  /* width: 3em;
  height: 3em; */
  vertical-align: middle;
}

.top-foot .bottom-left-logo-box .name {
  display: flex;
  flex-direction: column;
  justify-content: space-around;
  padding-left: 0.75em;
  height: 3em;
  width: 22em;
}

.top-foot .bottom-left-logo-box .name .name-zh span {
  font-weight: 400;
  font-size: 1.3em;
  text-align: left;
  color: #666;
}

.top-foot .bottom-left-logo-box .name .name-en {
  display: flex;
  align-items: center;
}

.top-foot .bottom-left-logo-box .name .name-en span {
  font-weight: 400;
  font-size: 0.55em;
  letter-spacing: 0.03px;
  text-align: left;
  color: #666;
}


.top-foot .foot-nav-box {
  flex: 1;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.top-foot .foot-nav-box .foot-nav-warp {
  display: flex;
  justify-content: space-between;
  width: 100%;
}

.top-foot .foot-nav-box .foot-nav-warp .nav-item span {
  font-weight: 700;
  font-size: 0.8em;
  letter-spacing: 0.05px;
  line-height: 1.25em;
  text-align: right;
  color: #666;
}


.bottom-foot {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0.8em 0 0.7em;
  background-color: #000;
  width: 100%;
}

.bottom-foot span {
  font-weight: 700;
  font-size: 0.7em;
  line-height: 1.25em;
  text-align: left;
  color: #fff;
}


/* 返回顶部按钮，默认不显示 */
.scrollToTop {
  display: none;
  position: relative;
  z-index: 2000;
}

/* 返回顶部按钮 */
.scrollToTop .scr-top-box {
  width: 2em;
  height: 2em;
  border-radius: 0.4em;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #a50a11;
  position: fixed;
  bottom: 60px;
  right: 30px;
}

.scrollToTop .scr-top-box img {
  width: 2em;
  height: 2em;
}