@charset "utf-8";
/*CSS Document*/

/* ============================================================================================================================
													全局默认样式
===============================================================================================================================*/
body {
  font-family: "微软雅黑", Arial, Helvetica, sans-serif;
  margin: 0px;
  padding: 0px;
  font-size: 16px;
  font-size: 16%;
  color: #333333;
  background-color: #fff;
  line-height: 1.6;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0px;
}
h4,
h5,
h6 {
  font-weight: normal;
}
ul,
li,
dd,
dl,
dt,
ol {
  list-style: none;
  padding: 0px;
  margin: 0px;
}
em,
i {
  font-style: normal;
}
hr {
  color: #eee;
  background: #eee;
}
a {
  color: #333333;
  text-decoration: none;
}
a:hover,
a:focus,
.hov a,
.navusb li a:hover {
  color: #0ba43b;
  text-decoration: none !important;
}
p {
  padding: 0px;
  margin: 0px;
}
li,
a,
p,
span,
em.i,
div {
  outline: none;
}

img {
  max-width: 100%;
  image-rendering: -moz-crisp-edges;
  image-rendering: -o-crisp-edges;
  image-rendering: -webkit-optimize-contrast;
  image-rendering: crisp-edges;
  -ms-interpolation-mode: nearest-neighbor;
}
input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus {
  box-shadow: none;
  -webkit-text-fill-color: #825e4c;
}
input:-webkit-autofill,
select:-webkit-autofill {
  -webkit-box-shadow: 0 0 0px 1000px white inset !important;
}
input {
  outline-color: invert;
  outline-style: none;
  outline-width: 0px;
  border: none;
  border-style: none;
  text-shadow: none;
  -webkit-appearance: none;
  -webkit-user-select: text;
  outline-color: transparent;
  box-shadow: none;
}
select:focus,
textarea:focus,
input:focus,
.form-control:focus,
.form-control,
button,
button:focus， button,
input,
optgroup,
option,
select,
textarea {
  border: 0;
  outline: none;
  -webkit-box-shadow: none;
  box-shadow: none;
}

button,
input[type="button"],
input[type="reset"],
input[type="submit"] {
  cursor: pointer;
  -webkit-transition: all;
  transition: all;
  -webkit-transition-timing-function: linear;
  transition-timing-function: linear;
  -webkit-transition-duration: 0.2s;
  transition-duration: 0.2s;
  text-align: center;
  vertical-align: top;
  white-space: nowrap;
  color: #825e4b;
  border: none;
  background-color: #fff;
  background-clip: padding-box;
}
@media (max-width: 992px) {
  .container {
    padding: 0 15px;
  }
}
*,
html,
div {
  box-sizing: border-box;
  -moz-box-sizing: border-box;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
}

.hidden {
  display: none;
}

/*======================================
全局display:flex排列布局
========================================*/
.dflex {
  display: -webkit-box; /* 老版本语法: Safari, iOS, Android browser, older WebKit browsers. */
  display: -moz-box; /* 老版本语法: Firefox (buggy) */
  display: -ms-flexbox; /* 混合版本语法: IE 10 */
  display: -webkit-flex; /* 新版本语法: Chrome 21+ */
  display: flex; /* 新版本语法: Opera 12.1, Firefox 22+ */
}

/*从左至右*/
.dflex-lr {
  -webkit-box-direction: normal;
  -webkit-box-orient: horizontal;
  -moz-flex-direction: row;
  -webkit-flex-direction: row;
  flex-direction: row;
}

/*从右至左*/
.dflex-rl {
  -webkit-box-pack: end;
  -webkit-box-direction: reverse;
  -webkit-box-orient: horizontal;
  -moz-flex-direction: row-reverse;
  -webkit-flex-direction: row-reverse;
  flex-direction: row-reverse;
}

/*从上至下*/
.dflex-tb {
  -webkit-box-direction: normal;
  -webkit-box-orient: vertical;
  -moz-flex-direction: column;
  -webkit-flex-direction: column;
  flex-direction: column;
}

/*从下至上*/
.dflex-bt {
  -webkit-box-pack: end;
  -webkit-box-direction: reverse;
  -webkit-box-orient: vertical;
  -moz-flex-direction: column-reverse;
  -webkit-flex-direction: column-reverse;
  flex-direction: column-reverse;
}

/*主轴居中*/
.dflex-pack-center {
  -webkit-box-pack: center;
  -moz-justify-content: center;
  -webkit-justify-content: center;
  justify-content: center;
}

/*主轴居左*/
.dflex-pack-start {
  -webkit-box-pack: start;
  -moz-justify-content: flex-start;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
}

/*主轴居右*/
.dflex-pack-end {
  -webkit-box-pack: end;
  -moz-justify-content: flex-end;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
}

/*主轴左右不留白*/
.dflex-pack-between {
  -webkit-box-pack: justify;
  -moz-justify-content: space-between;
  -webkit-justify-content: space-between;
  justify-content: space-between;
}

/*主轴左右留白*/
.dflex-pack-around {
  -moz-justify-content: space-around;
  -webkit-justify-content: space-around;
  justify-content: space-around;
}

/*交叉轴居中对齐*/
.dflex-align-center {
  -webkit-box-align: center;
  -moz-align-items: center;
  -webkit-align-items: center;
  align-items: center;
}

/*交叉轴居左对齐*/
.dflex-align-start {
  -webkit-box-align: start;
  -moz-align-items: start;
  -webkit-align-items: flex-start;
  align-items: flex-start;
}

/*交叉轴居右对齐*/
.dflex-align-end {
  -webkit-box-align: end;
  -moz-align-items: end;
  -webkit-align-items: flex-end;
  align-items: flex-end;
}

/**指定子元素居中对齐**/
.self-align-center {
  align-self: center;
  -webkit-align-self: center;
  margin: 0 auto;
}

/**指定子元素顶部对齐**/
.self-align-start {
  align-self: flex-start;
  -webkit-align-self: flex-start;
}

/**指定子元素底部对齐**/
.self-align-end {
  align-self: flex-end;
  -webkit-align-self: flex-end;
}

/**指定子元素拉伸**/
.self-align-stretch {
  align-self: stretch;
  -webkit-align-self: stretch;
}

/*--换行--*/
.wrap {
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

/*--不换行--*/
.nwrap {
  -webkit-flex-wrap: nowrap;
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
}

/*允许子元素伸展（1倍）*/
.flex {
  -moz-flex-grow: 1;
  -webkit-flex-grow: 1;
  flex-grow: 1; /*如果值是2 那么当前元素就是其他元素宽的2倍了*/
}

/*允许子元素收缩(1倍)*/
.shrink {
  -moz-flex-shrink: 1;
  -webkit-flex-shrink: 1;
  flex-shrink: 1;
}

/**水平居中*/
.dflex-center-center {
  display: -webkit-box;
  -webkit-box-align: center;
  -webkit-box-pack: center;
  display: -moz-box;
  -moz-box-align: center;
  -moz-box-pack: center;
  text-align: center;
}

/* ============================================================================================================================
													bootstrap
===============================================================================================================================*/
.col-lg-1,
.col-lg-10,
.col-lg-11,
.col-lg-12,
.col-lg-2,
.col-lg-3,
.col-lg-4,
.col-lg-5,
.col-lg-6,
.col-lg-7,
.col-lg-8,
.col-lg-9,
.col-md-1,
.col-md-10,
.col-md-11,
.col-md-12,
.col-md-2,
.col-md-3,
.col-md-4,
.col-md-5,
.col-md-6,
.col-md-7,
.col-md-8,
.col-md-9,
.col-sm-1,
.col-sm-10,
.col-sm-11,
.col-sm-12,
.col-sm-2,
.col-sm-3,
.col-sm-4,
.col-sm-5,
.col-sm-6,
.col-sm-7,
.col-sm-8,
.col-sm-9,
.col-xs-1,
.col-xs-10,
.col-xs-11,
.col-xs-12,
.col-xs-2,
.col-xs-3,
.col-xs-4,
.col-xs-5,
.col-xs-6,
.col-xs-7,
.col-xs-8,
.col-xs-9 {
  padding: 0;
}

/* ============================================================================================================================
													超出省略
===============================================================================================================================*/
.ellipsis-1 {
  display: block;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  line-height: inherit !important;
  color: #666;
}
.ellipsis-2 {
  display: block;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
  -webkit-line-clamp: 2;
}
.ellipsis-3 {
  display: block;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
  -webkit-line-clamp: 3;
}
.ellipsis-4 {
  display: block;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
  -webkit-line-clamp: 4;
}
.ellipsis-5{
  display: block;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
  -webkit-line-clamp:5;
}

.ellipsis-6{
  display: block;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
  -webkit-line-clamp:6;
}


/* ============================================================================================================================
													全局宽度
===============================================================================================================================*/
.container {
  width: 100%;
  max-width: 1400px;
  margin-left: auto;
  margin-right: auto;
  padding: 0 15px;
}

/* ============================================================================================================================
													page-翻页
===============================================================================================================================*/
.pagination > .active > a,
.pagination > .active > a:focus,
.pagination > .active > a:hover,
.pagination > .active > span,
.pagination > .active > span:focus,
.pagination > .active > span:hover {
  background-color: #0ba43b;
  border-color: #0ba43b;
}
.pagination > li > a,
.pagination > li > span {
  color: #333;
}
.pagination {
  display: flex;
  align-items: center;
  justify-content: center;
}

.next-map p {
  position: relative;
  margin-top: 4px;
}
.next-map p:last-child {
  position: relative;
}
.next-map p span {
  display: inline-block;
}
.next-map p .ellipsis-1 {
  display: inline-block;
}

/* ============================================================================================================================
													公共标题字体大小
===============================================================================================================================*/
h1 {
  font-size: 42px;
}
h2 {
  font-size: 36px;
}
h3 {
  font-size: 30px;
}
@media (max-width: 1440px) {
  h1 {
    font-size: 36px;
  }
  h2 {
    font-size: 30px;
  }
  h3 {
    font-size: 24px;
  }
}
@media (max-width: 1024px) {
  h1 {
    font-size: 30px;
  }
  h2 {
    font-size: 24px;
  }
  h3 {
    font-size: 18px;
  }
}
@media (max-width: 640px) {
  h1 {
    font-size: 24px;
  }
  h2 {
    font-size: 18px;
  }
  h3 {
    font-size: 14px;
  }
}

/* ============================================================================================================================
													more-更多按钮
===============================================================================================================================*/
.more {
  color: #999999;
  font-size: 14px;
  overflow: hidden;
  position: relative;
  z-index: 0;
  display: flex;
  width: 1.98rem;
  height: 0.5rem;
  line-height: 0.48rem;
  margin:0.2rem 0;
  padding: 0;
  text-indent: 10px;
  border: 1px solid #d2d3d4;
  border-radius: 0.32rem;
  justify-content: center;
  box-sizing: border-box;
  padding-left: 0.3rem;
}
.more::before{
  font-size: 0.3rem;
  line-height: 0.42rem;
  position: absolute;
  z-index: -1;
  top: 0.03rem;
  left: 0.03rem;
  width: 0.42rem;
  height: 0.42rem;
  content: "";
  transition: all 0.56s;
  text-align: center;
  text-indent: 0;
  color: #fff;
  border-radius: 50%;
  background: #0ba43b;
}
.more:after {
  font-size:0.3rem;
  line-height:0.39rem;
  position: absolute;
  z-index: -1;
  top: 0.03rem;
  left: 0.03rem;
  width: 0.42rem;
  height: 0.42rem;
  content: "+";
  transition: all 0.56s;
  text-align: center;
  text-indent: 0;
  color: #fff;
  border-radius: 50%;
  background: transparent;
}

.more:hover {
  color: #fff !important;
  padding: 0;
  border: 1px solid #0ba43b;
  background: transparent;
}
.more:hover::before{
  content: "";
  transform: scale(10);
}
.more:hover:after {
  color: #0ba43b;
}
@media (max-width: 992px) {
  .more {
    width:180px;
    height:45px;
    line-height:43px;
    margin:20px auto;
    border-radius:30px;
    padding-left: 30px;
  }
  .more::before{
    font-size:24px;
    line-height: 37px;
    position: absolute;
    z-index: -1;
    top: 3px;
    left: 3px;
    width: 37px;
    height:37px;
  }
  .more:after {
    font-size:24px;
    line-height:35px;
    top: 3px;
    left: 3px;
    width: 37px;
    height:37px;
  }
}

/* ============================================================================================================================
													浮动
===============================================================================================================================*/
.fr {
  float: right;
}
.fl {
  float: left;
}

/* ============================================================================================================================
													css3动画
===============================================================================================================================*/
@keyframes boderM3 {
  0% {
      transform: scale(1.1);
      -webkit-transform: scale(1.1);
      -moz-transform: scale(1.1);
      -ms-transform: scale(1.1);
      -o-transform: scale(1.1);
 }
  50% {
      transform: scale(1.3);
      -webkit-transform: scale(1.3);
      -moz-transform: scale(1.3);
      -ms-transform: scale(1.3);
      -o-transform: scale(1.3);
 }
  100%{
    transform: scale(1.1);
    -webkit-transform: scale(1.1);
    -moz-transform: scale(1.1);
    -ms-transform: scale(1.1);
    -o-transform: scale(1.1);
  }
}
/* ============================================================================================================================
													banner文字
===============================================================================================================================*/
.page-banner{
	overflow: hidden;
	width: 100%;
	position: relative;
}
.page-banner img{
	width: 100%;
	display: block;
}
.page-banner .page-banner-title {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    overflow: hidden;
    text-align: center;
    width: 100%;
}
.page-banner .page-banner-title h1 {
    font-size: 0.6rem;
    color: #fff;
    margin: 0;
    position: relative;
    padding-bottom: 0.2rem;
}
.page-banner .page-banner-title h3 {
    font-size: 0.3rem;
    color: #fff;
    margin: 0;
    position: relative;
    padding-bottom: 0.35rem;
}
.page-banner .page-banner-title h3::after {
    content: "";
    width: 0.4rem;
    height: 0.03rem;
    display: block;
    background: #fff;
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translate(-50%);
    animation: myfirst 4s;
    -webkit-animation: myfirst 4s;
    -moz-animation: myfirst 4s;
    -webkit-animation: myfirst 4s;
    -o-animation: myfirst 4s;
}
/* ============================================================================================================================
													面包屑
===============================================================================================================================*/
.crumb_box1{
	overflow: hidden;
	text-align: center;
	margin-bottom: 20px;
	padding-top: 0.5rem;
}
.crumb_box1 .crumb-nav1{
	border-bottom: dashed 1px #ddd;
	padding-bottom: 0.2rem;
	font-size: 16px;
}
.crumb-box{
	overflow: hidden;
    padding-top: 8px;
}
.crumb-box ul li{
	width: 13.8%;
    float: left;
    height: 48px;
    line-height: 48px;
    text-align: center;
    font-size: 16px;
    background: #eee;
    border-radius: 10px;
    margin-right: 0.5%;
    margin-bottom: 0.5%;
}
.crumb-box ul li a{
	display: block;
}
.crumb-box ul li:nth-child(7n){
	margin-right: 0;
}
.crumb-box ul li.active{
	background: #0BA43B;
	color: #fff;
}
.crumb-box ul li.active a{
	color: #fff;
}
.crumb-box ul li:hover{
	background: #0BA43B;
}
.crumb-box ul li:hover a{
	color: #fff;
}

@media (max-width:992px) {
	.crumb_box1 .crumb-nav1{
		border-bottom: dashed 1px #ddd;
		padding-bottom: 0.2rem;
		font-size: 14px;
	}
	.crumb-box ul li{
		width: 23.5%;
		margin-right: 2%;
		margin-bottom: 2%;
		font-size: 12px;
		height: 40px;
		line-height: 40px;

	}
	.crumb-box ul li:nth-child(4n){
		margin-right: 0;
	}
	.crumb-box ul li:nth-child(7n){
		margin-right: 2%;
	}
	.crumb-box ul li a{
		padding: 0 5px;
		overflow: hidden;
		text-overflow:ellipsis;
		white-space: nowrap;
		display: block;
	}
}

/* ============================================================================================================================
header-头部
===============================================================================================================================*/
.header_box {
  position: relative;
  height: 145px;
}
.header_main {
  position: fixed;
  z-index: 8887;
  width: 100%;
  top: 0;
  left: 0;
  background: #ffffff;
  box-sizing: border-box;
  box-shadow: 0 5px 5px rgba(0, 0, 0, 0.05);
}
@media (min-width: 992px){
.header_fixed {
  box-shadow: 0 5px 5px rgba(0, 0, 0, 0.05);
  animation: topin 0.5s ease-out 0.2s 1 normal;
  animation-fill-mode: forwards;
}
}
/*--logo--*/
.header_main .logo {
  position: absolute;
  left: 0;
  right: 0;
  top:0px;
  margin: auto;
  width: 254px;
  z-index: 999;
}
@media (max-width: 1360px) {
  .header_main .logo {
    width: 200px;
  }
}
/*--头部内容--*/
.header {
  border-bottom: 1px solid #e1e1e1;
}
.header_ab {
  margin:20px 0;
}
.header_ab b {
  color: #0ba43b;
}
.header_ab p {
  color: #333333;
}
.header_main .fl {
  font-size: 18px;
}
.header_main .fr p {
  color: #7e7e7e;
  font-size: 14px;
  line-height: 1.1;
}
.header_main .fr b {
  font-size: 32px;
}
.header_main .fr img {
  width: 50px;
  margin-right: 10px;
}
@media (max-width: 1200px) {
  .header_box{
    height: 123px;
  }
  .header_ab {
    margin:15px 0;
  }
  .header_main .fl {
    font-size: 14px;
  }
  .header_main .fr p {
    font-size: 12px;
  }
  .header_main .fr b {
    font-size: 24px;
  }
  .header_main .fr img {
    width: 39px;
  }
}

@media (max-width: 992px) {
  .header_box {
    height: 55px;
    background-color: #ffffff;
    border-bottom:1px solid #0ba43b;
  }
  .header_main {
    position: fixed;
    top: 0;
    left: 0;
    margin: auto;
    width: 100%;
    height: 55px;
    z-index: 999;
  }
  .header_main .logo{
    width: 135px;
    height: auto;
    padding: 0 5px 0;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
  }
  .header .mheader_ab{
    align-items: center;
    width: auto;
    position: absolute;
    z-index: 1;
    top: 12px;
    margin: 0;
  }
  .header .mnav_btn {
    left: 15px;
  }
  .header .mnav_btn a {
    display: inline-block;
    width: auto;
    height: auto;
    overflow: hidden;
    background: #0ba43b;
    padding: 0 14px;
    border-radius: 5px;
    font-size: 14px;
    color: #fff;
    cursor: pointer;
    line-height: 32px;
  }
  .header .header_tel {
    right: 15px;
    display: flex;
    align-items: center;
    width: auto;
    position: absolute;
    z-index: 1;
    top: 5px;
    margin: 0;
  }
  .header_tel a {
    font-size: 16px;
    color: #2e2e2e;
    line-height: 24px;
  }
  .header .header_tel img {
    height: 2.8em;
    width: auto;
  }
}

  

/*=======================================
nav_box
========================================*/
.nav_box {
  position: relative;
  z-index: 888;
}
/*--pc导航--*/
.nav_box .nav {
  width: 100%;
  height: 48px;
}
.nav_box .nav .navli {
  position: inherit !important;
  float: left;
  width: 10%;
  line-height: 48px;
  text-align: center;
}
@media (min-width:1360px) {
  .nav_box .nav {
    width: 105%;
    margin-left: -3%;
  }
}
@media (min-width: 992px) and (max-width:1360px){
  .nav_box .nav {
    width: 103.5%;
    margin-left: -2.5%;
  }
}
@media (min-width: 992px) {
  .nav_box .nav .navli:nth-child(5) {
    margin-left: 20%;
  }
  .nav_box .nav .navli:last-child {
    padding: 0;
  }
}
.nav_box .nav li a {
  line-height: 48px;
  height: 48px;
  position: relative;
  padding: 0;
  overflow: hidden;
}
.nav_box .nav li .navlia {
  background-color: #ffffff;
}
.nav > li > a:hover {
  background-color: inherit;
}
.nav_box .nav li .navlia span {
  position: relative;
  z-index: 3;
}
.nav_box .nav li .navlia span::after {
  content: "";
  display: block;
  width: 0%;
  height: 2px;
  line-height: 2px;
  background-color:#0ba43b;
  position: absolute;
  left: 50%;
  bottom: 2px;
  -webkit-transition: all 0.5s;
  -o-transition: all 0.5s;
  transition: all 0.5s;
}
.nav_box .nav li .navlia span:hover ::after,
.nav_box .nav li .menuon span::after,
 .nav_box .nav .active .navlia span::after  {
  width: 100%;
  left: 0;
}
.nav_box .nav li a span {
  font-size: 16px;
  color: #333333;
}
.nav_box .nav li a dd {
  width: 0.22rem;
  height: 0.22rem;
  margin-right: 2px;
  transition: all 0.5s ease;
  -webkit-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
}
.nav_box .nav li a dd,
.nav_box .nav li a span {
  display: inline-block;
  vertical-align: middle;
}
.nav_box .nav li:hover .navlia span,.nav_box .nav .active .navlia span{
  color:#0ba43b;
}
.nav_box .nav li:hover .navlia dd ,.nav_box .nav .active .navlia dd {
  background-position: 0px -0.22rem !important;
}
.nav_box .nav .navsub {
  position: absolute;
  left: 0px;
  right: 0px;
  top: 42px;
  text-align: center;
  background-size: cover;
  width: 100%;
  height: auto;
  padding: 0.3rem;
  background: rgba(255, 255, 255, 0.9);
  overflow: hidden;
  z-index: 2;
  transition: all 0.2s ease-out;
  -webkit-transition: all 0.2s ease-out;
  -moz-transition: all 0.2s ease-out;
  -o-transition: all 0.2s ease-out;
  -ms-transition: all 0.2s ease-out;
  opacity: 0;
  visibility: hidden;
  -o-transform: translateY(10px);
  -ms-transform: translateY(10px);
  -webkit-transform: translateY(10px);
  -moz-transform: translateY(10px);
  transform: translateY(10px);
}
.nav_box .nav .atv .navsub {
  opacity: 1;
  -o-transform:none;
  -ms-transform:none;
  -webkit-transform:none;
  -moz-transform: none;
  transform: none;
  visibility: visible;
}

.nav_box .nav .navsub .container {
  position: relative;
  width: 100%;
  margin: 0 auto;
  max-width:1400px;
  padding: 0.3rem 15px;
}
.nav_box .nav .navsub .container .hd {
  border-left: 1px solid rgb(214, 214, 214);
}
.nav_box .nav .navsub .container > div {
  padding: 0 0.2rem;
}
.nav_box .nav .navsub .container ol,
.nav_box .nav .navsub .container ul,
.nav_box .nav .navsub .container > div {
  float: left;
  width: 50%;
  text-align: left;
}
.nav_box .nav .navsubs .container ol {
  width: 100%;
}
.nav_box .nav .navsub ol li {
  float: left;
  width: 100%;
  position: relative;
  margin: 0 0.1rem;
}
.nav_box .nav .navsub ol {
  height: 2.4rem;
  overflow-x: hidden;
  overflow-y: auto;
  width: 40%;
}
.nav_box .nav .navsub ul {
  width: 60%;
}
.nav_box .nav .navsub ol li a {
  position: relative;
  display: block;
  font-size: 0.14rem;
  height: auto;
  padding: 0;
  line-height: 0.4rem;
  color: #333333;
}
.nav_box .nav .navsub ol li:hover a {
  color:#0ba43b;
}
.nav_box .nav .navsub .container > div a {
  display: block;
  width: 100%;
  height: auto;
  overflow: hidden;
}
.nav_box .nav .navsub .container .hd li a {
  display: block;
  white-space: nowrap;
  text-overflow: ellipsis;
}
.nav_box .nav .navsub .container .hd a img {
  width: 100%;
}
.nav_box .nav .navsub .container > div h3 {
  display: inline-block;
  color: #333333;
  font-size: 0.24rem;
  line-height: 0.5rem;
  height: 0.5rem;
  border-bottom: 1px solid #333333;
}
.nav_box .nav .navsub .container > div p {
  width: 100%;
  display: block;
  font-size: 0.16rem;
  color: #333333;
  line-height: 1.7;
  margin-top: 0.15rem;
}
.nav_box .nav_tel {
  display: none;
}
.nav_box .nav_tel a,
.nav_box .nav_tel span {
  color:#0ba43b;
  font-size: 25px;
  font-weight: bold;
  line-height: 48px;
  height: 48px;
}
.nav_box .nav_tel span {
  color: #333333;
  font-weight: normal;
  margin-right: 5px;
}
@media (min-width: 992px) {
  .header_fixed .header {
    display: none;
  }
  .header_fixed .nav_box .nav {
    width: 100%;
    margin: 0;
  }
  .header_fixed .nav_box .nav .navli {
    border-left: 1px solid #d8d8d8;
  }
  .header_fixed .nav_box .nav .navli:nth-child(8) {
    border-right: 1px solid #d8d8d8;
  }
  .header_fixed .nav_box .nav .navli:nth-child(5) {
    margin: 0;
  }
  .header_fixed .nav_box .nav_tel {
    display: block;
    float: right;
  }
}

@media (min-width: 992px) and (max-width: 1440px) {
  .header_fixed .nav_box .nav .navli {
    width: 9.39%;
  }
  .nav_box .nav_tel,
  .nav_box .nav_tel span {
    font-size: 22px;
  }
}
@media (min-width: 1440px) {
  .header_fixed .nav_box .nav .navli {
    width: 10%;
  }
}

@media (max-width: 1360px) {
  .nav_box .nav li a span {
    font-size: 0.24rem;
  }
  .nav_box .nav li a dd {
    width: 0.3rem;
    height: 0.3rem;
  }
  .nav_box .nav li:hover .navlia dd,.nav_box .nav .active .navlia dd{
    background-position: 0px -0.3rem !important;
  }
}
@media (max-width: 1220px) {
  .nav_box .nav li a span {
    font-size:16px;
  }
  .nav_box .nav li a dd {
    width:18px;
    height:18px;
  }
  .nav_box .nav li:hover .navlia dd ,.nav_box .nav .active .navlia dd{
    background-position: 0px -18px!important;
  }
}
@media (max-width: 992px) {
  .nav_box .m_nav {
    display: block;
    position: fixed;
    z-index: 90;
    top: 55px;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    overflow-y: auto;
    background: #f6f6f6;
    box-sizing: border-box;
    padding: 0 0;
    transform: translateX(-100%);
    transition: 0.6s ease-in-out;
  }

  .nav_box .m_nav .mnavli {
    width: 100%;
    box-sizing: border-box;
    border-bottom: 1px solid #dcdcdc;
  }
  .nav_box .m_nav .mnavli .mnavlia {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    height: auto;
    overflow: hidden;
    box-sizing: border-box;
    font-weight: bold;
    padding: 0 1em;
    font-size: 14px;
    color: #333333;
    line-height: 3;
  }
  .nav_box .m_nav .mnavli .mnavlia i {
    width: 1em;
    height: 1em;
    overflow: hidden;
    background: url("../images/add.png") center center no-repeat;
    background-size: contain;
    display: none;
  }
  .nav_box .m_nav .active .mnavlia {
    color: white;
    background-color:#0ba43b;
  }
  .nav_box .m_nav .active .mnavlia i {
    background: url("../images/reduce.png") center center no-repeat;
    background-size: contain;
  }
  .nav_box .m_nav .mnavli .m_navsub {
    width: 100%;
    height: auto;
    overflow: hidden;
    box-sizing: border-box;
    padding: 0.5em 1em;
    display: none;
  }
  .nav_box .m_nav .mnavli .m_navsub li {
    width: 100%;
    height: auto;
    overflow: hidden;
    font-size: 12px;
    color: #7e7e7e;
    line-height: 2.6;
  }
  .nav_box .m_nav .mnavli .m_navsub li a {
    color: inherit;
  }
  .nav_box {
    border-bottom: none;
  }
  .nav_box .on {
    transform: translateX(0);
    transition: 0.6s ease-in-out;
  }
  .nav_box .m_nav .lang {
    padding: 0.2rem 1em;
  }
  .nav_box .m_nav .lang a > span {
    font-size: 14px;
    font-weight: bold;
  }
}


 /*======================================= 手机底导航 ===============================*/
 .footer-nav {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 8888;
  background-color: #ffffff;
  height: 50px;
  display: block;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}
.footer-nav ul {
  position: relative;
  display: block;
}
.footer-nav ul li {
  float: left;
  width: 20%;
  height: 50px;
  text-align: center;
  overflow: hidden;
}
.footer-nav ul li a {
  display: block;
  width: 100%;
  height: 100%;
}
.footer-nav ul li span {
  position: relative;
  display: block;
  text-align: center;
  width: 18px;
  height: 18px;
  margin: 8px auto;
  overflow: hidden;
}
.footer-nav ul li:nth-child(3){
  position: relative;
  height: 80px;
  margin-top: -26px;
  background: url(../images/navbg.png) no-repeat center;
  background-size:6.5em;
}
.footer-nav ul li:nth-child(3) span {
  position: absolute;
  bottom: 1.2em;
  width: 5em;
  height: 5em;
  left: 0;
  right: 0;
  margin: auto;
  overflow: hidden;
}
.footer-nav ul li:nth-child(3) p {
  display: none;
}
.footer-nav ul li span img {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  margin: auto;
  width: 100%;
}
.footer-nav ul li p {
  color: #2e2e2e;
  text-align: center;
  font-size: 12px;
  line-height: 11px;
}
.footer-nav ul li:nth-child(3) span img {
  position: relative;
  width: 100%;
  height: auto;
}

/* --------------------------------------------------
				list-列表页
-------------------------------------------------- */
/* 产品列表 */
.prolist{
	padding: 0.5rem 0;
    overflow: hidden;
}
.prolist .prolist-ul{
    overflow: hidden;
    width: 100%;
	margin-bottom: -2%;
	padding-top: 0.1rem;
}
.prolist .prolist-ul li{
	width: 32%;
	float: left;
	margin-right: 2%;
	margin-bottom: 2%;
	transition: all .4s;
	-moz-transition: all .4s;
	-webkit-transition: all .4s;
	-o-transition: all .4s;
}
.prolist .prolist-ul li:nth-child(3n){
	margin-right: 0;
}
.prolist .prolist-ul li a{
	position: relative;
	background: #fff;
	display: block;
	transition: all .4s;
	-moz-transition: all .4s;
	-webkit-transition: all .4s;
	-o-transition: all .4s;
	border: 1px solid #bfbfbf;
	overflow: hidden;
}
.prolist .prolist-ul li a::after{
	content: '';
	position: absolute;
	z-index: 2;
	bottom:0;
	left:0;
	width: 0;
	height: 0.05rem;
	overflow: hidden;
	background: #0BA43B;
	z-index: 2;
	transition: all 1s;
	-moz-transition: all 1s;
	-webkit-transition: all 1s;
	-o-transition: all 1s;
}
.prolist .prolist-ul li:hover a::after{
	width: 100%;
}
.prolist .prolist-ul li:hover{
	padding-bottom: 0.1rem;
}
.prolist .prolist-ul li:hover a {
	margin-top: -0.1rem;
}

.prolist .prolist-ul li dt{
    overflow: hidden;
    width: 100%;
    padding-top: 66.4%;
    position: relative;
}
.prolist .prolist-ul li dt img{
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	margin: auto;
	width: 100%;
	height: auto;
	display: block;
	transition: all .4s;
	-moz-transition: all .4s;
	-webkit-transition: all .4s;
	-o-transition: all .4s;
}
.prolist .prolist-ul li dd{
    padding: 0.25rem;
    overflow: hidden;
    border-top: none;
}
.prolist .prolist-ul li dd h2{
    margin: 0;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
    font-size: 18px;
    color: #2e2e2e;
    font-weight: bold;
}
.prolist .prolist-ul li dd p{
    font-size: 14px;
    margin: 10px 0 0;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
    color: #4c4c4c;
}
.prolist .prolist-ul li div{
    position: relative;
    text-align: right;
	overflow: hidden;
	padding-top: 0.25rem;
}
.prolist .prolist-ul li div em{
    width: 0.28rem;
    height: 3px;
    background: #0ba43b;
    position: absolute;
    bottom: 0;
    top: 0.25rem;
    left: 0;
    margin: auto;
}
.prolist .prolist-ul li div span{
    display: block;
    position: relative;
    width: 150px;
    height: 40px;
    line-height: 40px;
    border: 1px solid#0ba43b;
    color: #0ba43b;
    background: initial;
    font-size: 18px;
    text-align: center;
    font-weight: normal;
    z-index: 1;
    overflow: hidden;
    border-radius: 0;
	float: right;
}
.prolist .prolist-ul li:hover dd h2{
	color: #0BA43B;
}
.prolist .prolist-ul li:hover dt img{
	transform: scale(1.05)
}
.prolist .prolist-ul li div{
	position: relative;
	overflow: hidden;
	padding-top: 0.25rem;
}

@media (max-width:992px) {
	.prolist .prolist-ul li{
		width: 48%;
		margin-right: 4%;
		margin-bottom: 4%;
	}
	.prolist .prolist-ul li:nth-child(3n){
		margin-right: 4%;
	}
	.prolist .prolist-ul li:nth-child(2n){
		margin-right: 0;
	}
	.prolist .prolist-ul li dd h2{
		font-size: 16px;
	}
	.prolist .prolist-ul li div span{
		width: 90px;
		height: 30px;
		line-height: 30px;
		font-size: 14px;
	}
}

/* 文章列表 */
.artlist{
	overflow: hidden;
	padding: 0.5rem 0;
}
.artlist .artlist-ul{
	overflow: hidden;
} 
.artlist .artlist-ul li{
	margin: 0 0 0.35rem;
	background-color: #f5f5f5;
}
.artlist .artlist-ul li a {
    display: flex;
    align-items: center;
    color: #2E2E2E;
}
.artlist .artlist-ul li dt{
    flex: 0 0 40%;
    margin: 0 40px 0 0;
    overflow: hidden;
}
.artlist .artlist-ul li dt img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.3s;
    max-height: 300px;	
}
.artlist .artlist-ul li dd{
    flex: 1;
    overflow: hidden;
    padding: 15px 40px 15px 0;
}
.artlist .artlist-ul li dd h2{
    font-size: 24px;
    color: #2e2e2e;
    margin: 0 0 36px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}
.artlist .artlist-ul li dd em {
    display: block;
    width: 60px;
    height: 1px;
    background: #959595;
    margin: 0.25rem 0;
}
.artlist .artlist-ul li dd p{
    font-size: 14px;
    color: #464646;
    line-height: 2;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    max-height: 56px;
    margin: 0 0 40px;
}
.artlist .artlist-ul li dd span{
    display: block;
    position: relative;
    margin: 0.3rem 0 0;
    width: 150px;
    height: 40px;
    line-height: 40px;
    border: 1px solid #0ba43b;
    color: #0ba43b ;
    background: initial;
    font-size: 18px;
    text-align: center;
    font-weight: normal;
    z-index: 1;
    overflow: hidden;
    border-radius: 0;
}
.artlist .artlist-ul li dd span::after{
    content: "";
    position: absolute;
    top: 0;
    left: -2px;
    width: 0.05rem;
    background: #0BA43B;
    height: 100%;
    transition: all 0.5s ease;
    -webkit-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    -ms-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    z-index: -1;
}
.artlist .artlist-ul li:hover p,
.artlist .artlist-ul li:hover h2 {
	color: #fff;
}
.artlist .artlist-ul li:hover dd span{
	border: 1px solid #fff;
	color: #fff ;
}
.artlist .artlist-ul li:hover a{
	background: #0BA43B;
}
.artlist .artlist-ul li:hover dd em {
	background: #ffffff;
}
.artlist .artlist-ul li:hover dd span::after {
	width: 100%;
}
@media (max-width:992px) {
	.artlist .artlist-ul li{
		margin: 0 0 20px;
	}
	.artlist .artlist-ul li dt{
		flex: 0 0 35%;
		margin: 0 0.2rem 0 0;
	}
	.artlist .artlist-ul li dd h2{
		font-size: 18px;
		margin: 0 0 0.16rem;
		font-weight: bold;
	}
	.artlist .artlist-ul li dd p{
		margin: 0 0 0.2rem;
		line-height: 1.4;
		color: #999999;
	}
}
@media (max-width:640px) {
	.artlist .artlist-ul li a {
		flex-wrap: wrap;
	}
	.artlist .artlist-ul li dt,
	.artlist .artlist-ul li dd{
		width: 100%;
		padding: 0;
		margin: 0;
		flex: auto;
	}
	.artlist .artlist-ul li dd{
		padding: 15px;
	}
}

/* 图文列表 */
.mullist{
    overflow: hidden;
    padding: 0.5rem 0;
}
.mullist .mullist-ul{
	overflow: hidden;
}
.mullist .mullist-ul li{
	width: 32%;
	float: left;
	margin-right: 2%;
	margin-bottom: 2%;
	overflow: hidden;
}
.mullist .mullist-ul li:nth-child(3n){
	margin-right: 0;
}
.mullist .mullist-ul li a{
	overflow: hidden;
	display: block;
	position: relative;
}
.mullist .mullist-ul li dt{
	width: 100%;
	position: relative;
	overflow: hidden;
	padding-top: 75%;
}
.mullist .mullist-ul li dt img{
	position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    margin: auto;
    width: 100%;
    height: 100%;
    z-index: 2;
	object-fit: cover;
}
.mullist .mullist-ul li dt span{
    width: 100%;
    overflow: hidden;
    position: absolute;
    top: 0;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    color: #fff;
    font-size: 0.2rem;
    z-index: 3;
    opacity: 0;
    transition: all 0.5s ease;
    -webkit-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    -ms-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
	display: flex;
	align-items: center;
	justify-content: center;
	font-weight: normal;
}
.mullist .mullist-ul li dd{
    width: 100%;
    padding: 10px;
    font-size: 20px;
    font-weight: bold;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    line-height: 0.5rem;
    text-align: center;
    background-color: #f5f5f5;
}
.mullist .mullist-ul li:hover dt span{
	opacity: 1;
}
@media (max-width:992px) {
	.mullist .mullist-ul li{
		width: 48%;
		margin-right: 4%;
		margin-bottom: 4%;
	}
	.mullist .mullist-ul li:nth-child(3n){
		margin-right: 4%;
	}
	.mullist .mullist-ul li:nth-child(2n){
		margin-right: 0;
	}
	.mullist .mullist-ul li dd{
		font-size: 16px;
	}
}

/* 售后服务列表 */
.aftlist{
	overflow: hidden;
	padding: 0.5rem 0;
}
.aftlist .aftlist-ul{
	overflow: hidden;
	margin-bottom: -3.5%;
	padding: 1%;
}
.aftlist .aftlist-ul li{
    width: 31%;
    float: left;
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    margin-right: 3.5%;
    padding: 0.35rem 0.2rem;
    margin-bottom: 3.5%;
    -webkit-transition: .5s ease-in-out all;
    -moz-transition: .5s ease-in-out all;
    -ms-transition: .5s ease-in-out all;
    -o-transition: .5s ease-in-out all;
    transition: .5s ease-in-out all;
	box-shadow: 0 0 5px rgba(0,0,0,0.2);
}
.aftlist .aftlist-ul li dt{
    width: 0.77rem;
    height: 0.77rem;
    display: block;
    margin: 0 auto;
    background-size: 100%!important;
}
.aftlist .aftlist-ul li dd{
    overflow: hidden;
    text-align: center;
    margin-top: 0.15rem;
}
.aftlist .aftlist-ul li dd h2{
    color: #000;
    font-size: 0.26rem;
}
.aftlist .aftlist-ul li dd p{
    font-size: 0.18rem;
    color: #000000;
    margin-top: 0.25rem;
}
.aftlist .aftlist-ul li:nth-child(3n) {
    margin-right: 0;
}
.aftlist .aftlist-ul li:hover{
	transform: translateY(-0.1rem);
	background: #0BA43B;
}
.aftlist .aftlist-ul li:hover dt{
	background-position-y: -0.77rem!important;
}
.aftlist .aftlist-ul li:hover dd h2,.aftlist .aftlist-ul li:hover dd p{
	color: #fff;
}

@media (max-width:992px) {
	.aftlist .aftlist-ul{
		margin-bottom: -4%;
	}
	.aftlist .aftlist-ul li{
		width: 48%;
		margin-right: 4%;
		margin-bottom: 4%;
	}
	.aftlist .aftlist-ul li:nth-child(3n){
		margin-right: 4%;
	}
	.aftlist .aftlist-ul li:nth-child(2n){
		margin-right: 0;
	}
	.aftlist .aftlist-ul li dd h2{
		font-size: 16px;
	}
	.aftlist .aftlist-ul li dd p{
		font-size: 14px;
		height: 40px;
	}
}

/* 企业文化列表 */
.cullist{
	overflow: hidden;
	padding: 0.5rem 0;
}
.cullist .cullist-ul{
	overflow: hidden;
	margin-bottom: -4%;
}
.cullist .cullist-ul li{
	width: 48%;
	margin-right: 4%;
	overflow: hidden;
	position: relative;
	margin-bottom: 4%;
	float: left;
	border-radius: 8px;
}
.cullist .cullist-ul li:nth-child(2n){
	margin-right: 0;
}
.cullist .cullist-ul li dt{
	width: 100%;
	overflow: hidden;
}
.cullist .cullist-ul li dt img{
	width: 100%;
	display: block;
}
.cullist .cullist-ul li dd{
	position: absolute;
	box-sizing: border-box;
	bottom: 0;
	padding: 30px;
}
.cullist .cullist-ul li dd h3{
	color: #fff;
	overflow: hidden;
	white-space: nowrap;
	text-overflow: ellipsis;
	margin: 0;
	text-align: left;
	font-weight: bold;
	transition: .3s all;
}
.cullist .cullist-ul li dd em{
    display: block;
    width: 36px;
    height: 5px;
    background: #ffff;
    margin-top: 20px;
}
.cullist .cullist-ul li:hover dd h3{
	color: #0BA43B;
}



/* --------------------------------------------------
				detail-详情页
-------------------------------------------------- */
/* 文章详情 */
.artdetail{
	overflow: hidden;
	padding: 0.5rem 0;
}
.artdetail .artdetail-mian{
	overflow: hidden;
	width: 73%;
	float: left;
	margin-right: 2%;
	box-shadow: 0 0 5px rgba(0,0,0,0.2);
	padding: 30px;
	border-radius: 5px;
}
.artdetail .artdetail-mian ._title{
	overflow: hidden;
	border-bottom: 1px solid #eee;
	padding-bottom: 0.2rem;
}
.artdetail .artdetail-mian ._title ._title_top{
    overflow: hidden;
}
.artdetail .artdetail-mian ._title ._title_top p{
    font-size: 14px;
    color: #2E2E2E;
    float: left;
}
.artdetail .artdetail-mian ._title h2 {
    font-size: 24px;
    font-weight: normal;
    color: #2E2E2E;
    clear: both;
    text-align: center;
    margin-top: 0.2rem;
    line-height: 1.5;
}
.artdetail .artdetail-mian ._content {
    overflow: hidden;
    padding: 0.2rem 0;
    border-bottom: 1px solid #eee;
    min-height: 300px;
}
.artdetail .artdetail-mian .return{
    overflow: hidden;
    padding-top: 0.2rem;
    display: flex;
    justify-content: space-around;
}
.artdetail .artdetail-mian .return a{
    font-size: 16px;
    color: #333;
}
.artdetail .recommend-mian{
    overflow: hidden;
    width: 25%;
    float: right;
    box-shadow: 0 0 5px rgba(0,0,0,0.2);
    border-radius: 5px;
    padding: 30px;
}
.artdetail .recommend-mian h3{
    font-size: 24px;
    font-weight: normal;
    text-align: center;
    border-bottom: 1px solid #eee;
    padding-bottom: 0.2rem;
    margin-bottom: 0.2rem;
}
.artdetail .recommend-mian ul{
    overflow: hidden;
}
.artdetail .recommend-mian ul li a{
    display: block;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
    font-size: 14px;
    color: #2E2E2E;
    height: 35px;
    line-height: 35px;
}

@media (max-width:992px) {
	.artdetail .artdetail-mian{
		width: 100%;
		margin-right: 0;
		float: none;
		padding: 15px;
	}
	.artdetail .artdetail-mian ._title h2{
		font-size: 18px;
	}
	.artdetail .recommend-mian{
		width: 100%;
		float: none;
		margin-top: 20px;
		padding: 15px;
	}
	.artdetail .recommend-mian h3{
		font-size: 18px;
	}
}


/* 图文详情 */
.muldetail{
	overflow: hidden;
	padding: 0.5rem 0;
}
.muldetail .muldetail-mian{
    overflow: hidden;
    float: left;
    width: 100%;
    box-shadow: 0 0 5px rgba(0,0,0,0.2);
    padding: 30px;
    border-radius: 5px;
}
.muldetail .muldetail-mian ._title{
    overflow: hidden;
    border-bottom: 1px solid #eee;
    padding-bottom: 0.2rem;
}
.muldetail .muldetail-mian ._title ._title_top{
    overflow: hidden;
}
.muldetail .muldetail-mian ._title ._title_top p{
    font-size: 14px;
    color: #2E2E2E;
    float: left;
}
.muldetail .muldetail-mian ._title h2{
    font-size: 24px;
    font-weight: normal;
    color: #2E2E2E;
    clear: both;
    text-align: center;
    margin-top: 0.2rem;
    line-height: 1.5;
}
.muldetail .muldetail-mian ._content {
    overflow: hidden;
    padding: 0.2rem 0;
    border-bottom: 1px solid #eee;
    min-height: 300px;
}
.muldetail .muldetail-mian .return{
    overflow: hidden;
    padding-top: 0.2rem;
    display: flex;
    justify-content: space-around;
}
.muldetail .muldetail-mian .return a{
    font-size: 16px;
    color: #333;
}

@media (max-width:992px) {
	.muldetail .muldetail-mian{
		padding: 15px;
	}
	.muldetail .muldetail-mian ._title h2{
		font-size: 18px;
	}
}

/* 产品详情 */
.prodetail{
	overflow: hidden;
	padding: 0.5rem 0;
}
.prodetail .prodetail-thumb{
	position: relative;
	overflow: hidden;
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
	flex-wrap: wrap;
}
.prodetail .prodetail-thumb .prodetail-pic{
	overflow: hidden;
	display: flex;
	align-items: center;
	width: 45%;
	position: relative;
	border: 1px solid #ececec;
	flex-wrap: wrap;
}
/* 大图 */
.prodetail .prodetail-thumb .prodetail-pic .prodetail-pic-top{
	width: 100%;
	overflow: hidden;
	margin: 0 auto;
}
.prodetail .prodetail-thumb .prodetail-pic .prodetail-pic-top ul li {
    overflow: hidden;
    text-align: center;
}
.prodetail .prodetail-thumb .prodetail-pic .prodetail-pic-top ul li span{
    width: 6rem;
    height: 4rem;
    margin: auto;
    display: inline-block;
    background-color: #f5f5f5;
    margin-top: 0.2rem;
}
.prodetail .prodetail-thumb .prodetail-pic .prodetail-pic-top ul li img{
    margin: 0 auto;
    width: 6rem;
    height: 4rem;
    object-fit: cover;
}

/* 小图 */
.prodetail .prodetail-thumb  .prodetail-pic-swiper{
	width: 100%;
	position: relative;
}
.prodetail .prodetail-thumb .prodetail-pic .prodetail-pic-bottom{
    overflow: hidden;
    width: 85%;
    margin: 20px auto;
}
.prodetail .prodetail-thumb .prodetail-pic .prodetail-pic-bottom ul li {
    overflow: hidden;
    padding: 5px;
}
.prodetail .prodetail-thumb .prodetail-pic .prodetail-pic-bottom ul li span {
    display: block;
    margin: 0 1%;
    border: 1px solid #ddd;
    padding-top: 65%;
    position: relative;
    overflow: hidden;
}
.prodetail .prodetail-thumb .prodetail-pic .prodetail-pic-bottom .swiper-slide-thumb-active span{
    border: 1px solid #0BA43B;
}
.prodetail .prodetail-thumb .prodetail-pic .prodetail-pic-bottom ul li img {
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    margin: auto;
    width: 100%;
}
.prodetail-pic .swiper-button-next,
.prodetail-pic .swiper-button-prev{
    background-image: none;
    outline: none;
    margin: -0.1rem 0 0;
    width: 0.44rem;
    height: 0.27rem;	
}
.prodetail-pic .swiper-button-next:after, .prodetail-pic .swiper-button-prev:after{
	font-size: 32px!important;
	color: #0BA43B;
}


/* 介绍 */
.prodetail .prodetail-thumb .prodetail-info{
	overflow: hidden;
	width: 50%;
	position: relative;
	color: #222222;
	line-height: 2;
	padding: 0 2%;
}
.prodetail .prodetail-thumb .prodetail-info h2{
    color: #2e2e2e;
    margin: 0;
    font-size: 24px;
    margin-bottom: 35px;
}
.prodetail .prodetail-thumb .prodetail-info p {
    font-size: 16px;
    color: #2e2e2e;
    border-top: 1px solid #dbdbdb;
    border-bottom: 1px solid #dbdbdb;
    padding: 35px 0;
    margin: 0;
}
.prodetail .prodetail-thumb .prodetail-info ul {
    color: #999;
    line-height: 2;
    overflow: hidden;
    padding: 35px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    border-bottom: 1px solid #dbdbdb;
}
.prodetail .prodetail-thumb .prodetail-info ul li {
    width: 50%;
    line-height: 35px;
}
.prodetail .prodetail-thumb .prodetail-info ul li b{
    color: #868686;
    font-size: 16px;
	font-weight: normal;
}
.prodetail .prodetail-thumb .prodetail-info ._btn {
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #0BA43B;
    color: #0BA43B;
    font-size: 14px;
    margin-top: 0.35rem;
    width: 1.75rem;
    padding: 5px 0;
    text-align: center;
}
.prodetail .prodetail-content{
	overflow: hidden;
	padding: 0.5rem 0 0;
}
.prodetail .prodetail-content ._title{
    overflow: hidden;
    border-bottom: 1px solid #e1e1e1;
    margin-bottom: 0.25rem;
    height: 35px;
}
.prodetail .prodetail-content ._title em{
    font-size: 18px;
    margin: 0;
    color: #0BA43B;
    position: relative;
    padding-bottom: 11px;
    line-height: 26px;
}
.prodetail .prodetail-content ._title em::after {
    position: absolute;
    width: 100%;
    content: '';
    height: 2px;
    background: #0BA43B;
    left: 0;
    bottom: 2px;
    z-index: 2;
}

@media (max-width:992px) {
	.prodetail{
		padding: 0 0 0.5rem;
	}
	.prodetail .container{
		padding: 0;
	}
	.prodetail .prodetail-thumb .prodetail-pic{
		width: 100%;
		border: none;
	}
	.prodetail .prodetail-thumb .prodetail-info{
		width: 100%;
		margin-top: 15px;
		padding: 0 15px;
	}
	.prodetail .prodetail-thumb .prodetail-info h2{
		font-size: 16px;
		line-height: 1.4;
		margin-bottom: 15px;
	}
	.prodetail .prodetail-thumb .prodetail-info p{
		padding: 15px 0;
		font-size: 14px;
		line-height: 1.4;
	}
	.prodetail .prodetail-thumb .prodetail-info ul{
		padding: 15px 0;
	}
	.prodetail .prodetail-content{
		padding: 0.25rem 15px;
	}
}
/* --------------------------------------------------
				page-单页
-------------------------------------------------- */
/* 联系我们 */
.page-contact{
	padding: 0.5rem 0 0.3rem;
	overflow: hidden;
}
.page-contact .page-contact-title{
	overflow: hidden;
	text-align: center;
}
.page-contact .page-contact-title h2 {
	color: #2e2e2e;
	margin: 0;
	font-weight: bold;
}
.page-contact .page-contact-list{
	margin-top: 0.2rem;
}
.page-contact .page-contact-list li{
	width: 32%;
	margin-right: 2%;
	float: left;
	box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
	padding:35px 20px;
	text-align: center;
	height: 180px;
	max-height: 180px;
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	position: relative;
	overflow: hidden;
}
.page-contact .page-contact-list li::before {
	content: '';
	position: absolute;
	width: 100px;
	height: 100px;
	display: block;
	background: rgba(11 ,164, 59, 0.4);
	border-radius: 50%;
	top: -50px;
	left: -20px;
}
.page-contact .page-contact-list li::after {
	content: '';
	position: absolute;
	width: 100px;
	height: 100px;
	display: block;
	background: rgba(11 ,164, 59, 0.4);
	border-radius: 50%;
	top: -70px;
	left: 25px;
}
.page-contact .page-contact-list li:nth-child(2)::before {
	content: '';
	position: absolute;
	width: 100px;
	height: 100px;
	display: block;
	background: rgba(11 ,164, 59, 0.4);
	border-radius: 50%;
	top: -70px;
	left: inherit;
	right: 0;
}
.page-contact .page-contact-list li:nth-child(2)::after {
	content: '';
	position: absolute;
	width: 100px;
	height: 100px;
	display: block;
	background: rgba(11 ,164, 59, 0.4);
	border-radius: 50%;
	top: -20px;
	left: inherit;
	right: -20px;
}
.page-contact .page-contact-list li:nth-child(3)::before {
	content: '';
	position: absolute;
	width: 100px;
	height: 100px;
	display: block;
	background: rgba(11 ,164, 59, 0.4);
	border-radius: 50%;
	top: inherit;
	left: inherit;
	right: -20px;
	bottom: -50px;
}
.page-contact .page-contact-list li:nth-child(3)::after {
	content: '';
	position: absolute;
	width: 100px;
	height: 100px;
	display: block;
	background: rgba(11 ,164, 59, 0.4);
	border-radius: 50%;
	top: inherit;
	left: inherit;
	right: -50px;
	bottom: -10px;
}
.page-contact .page-contact-list li:nth-child(3n) {
	margin-right: 0;
}
.page-contact .page-contact-list li dt{
	width: 60px;
	max-width: 60px;
	overflow: hidden;
	margin: 0 auto;
	margin-bottom: 10px;
}
.page-contact .page-contact-list li dt img{
	width: 100%;
	display: block;
}
.page-contact .page-contact-list li dd {
	overflow: hidden;
	margin-top: 10px;
	width: 100%;
}
.page-contact .page-contact-list li dd h3 {
	font-size: 0.25rem;
	margin: 0;
	margin-bottom: 5px;
	font-weight: bold;
}
.page-contact .page-contact-list li dd a,
.page-contact .page-contact-list li dd p {
	font-size: 16px;
	color: #2e2e2e;
	line-height: 1.6;
}
.page-contact .page-contact-list li dd em {
	font-size: 14px;
	color: #2e2e2e;
	font-weight: bold;
}
.page-contact-map{
	margin-bottom: 0.5rem;
}
.page-contact-map #map img {
	max-width: inherit !important;
}
@media (max-width:992px) {
	.page-contact {
		padding: 0.2rem 0;
	}
	.page-contact .page-contact-title h2 {
		display: none;
	}
	.page-contact .page-contact-list li dd h3 {
		font-size: 18px;
	}
	.page-contact .page-contact-list li{
		width: 100%;
		margin-right: 0;
		margin-bottom: 5%;
	}
}

/* 关于我们 */
.page-about{
	overflow: hidden;
	padding: 0.5rem 0;
}
.page-about .page-about-left{
	overflow: hidden;
	width: 40%;
	position: relative;
}
.page-about .page-about-left span{
	display: block;
	overflow: hidden;
	margin-bottom: 0.3rem;
}
.page-about .page-about-left p{
	font-size: .3rem;
	font-weight: 500;
	line-height: .4rem;
	margin-bottom: .2rem;
	color: #2e2e2e;
	width: 85%;
}
.page-about .page-about-left em{
	font-size: .16rem;
	line-height: .3rem;
	color: #2e2e2e;
	font-weight: 400;
	width: 75%;
}
.page-about .page-about-left .numbers-box{
	overflow: hidden;
	margin-top: 0.3rem;
}
.page-about .page-about-left .numbers-box li{
	width: 50%;
	float: left;
	margin-bottom: .45rem;
	padding-right: .25rem;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}	
.page-about .page-about-left .numbers-box li dt{
	font-size: 0.55rem;
	font-weight: bold;
	display: inline;
	vertical-align: bottom;
}
.page-about .page-about-left .numbers-box li dt i{
	font-size: .25rem;
	line-height: .25rem;
	margin-left: .15rem;
	overflow: hidden;
	font-weight: normal;
}
.page-about .page-about-left .numbers-box li dd{
	font-size: .25rem;
	color: #2e2e2e;
}

/* 介绍右边 */
.page-about .page-about-right{
	width: 58%;
	position: relative;
	margin-left: 2%;
	overflow: hidden;
}
.page-about .page-about-right ._title{
	font-size: .3rem;
	font-weight: bold;
}
.page-about .page-about-right ._content{
	overflow: hidden;
	margin-top: 0.2rem;
}
@media (max-width:992px) {
	.page-about .page-about-left{
		width: 100%;
	}
	.page-about .page-about-left span{
		text-align: center;
	}
	.page-about .page-about-left p{
		font-size: 0.32rem;
		text-align: center;
		width: auto;
		line-height: 1.5;
	}
	.page-about .page-about-left em{
		font-size: 0.28rem;
		text-align: center;
		width: auto;
		display: block;
		line-height: 1.5;
	}
	.page-about .page-about-left .numbers-box{
		text-align: center;
	}
	.page-about .page-about-left .numbers-box li dt{
		font-size: 0.48rem;
	}
	.page-about .page-about-left .numbers-box li dt i{
		font-size: 0.28rem;
	}
	.page-about .page-about-left .numbers-box li dd{
		font-size: 0.32rem;
	}
	.page-about .page-about-year{
		display: none;
	}
	.page-about .page-about-right{
		width: 100%;
		margin-left: 0;
		margin-top: 0.4rem;
	}
	.page-about .page-about-right ._title{
		font-size: 0.48rem;
		text-align: center;
	}
}	


/* ============================================================================================================================
fooer-底部
===============================================================================================================================*/

.footer .container {
  margin: 0 auto;
  padding: 0px 15px;
}

.footer {
  background-color: #30333a;
  overflow: hidden;
  padding-top: 0.5rem;
}

.footer_box {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  overflow: hidden;
  margin-bottom: 0.15rem;
}

.footer .footer_contact {
  overflow: hidden;
  width: 27%;
}

.footer .footer_contact h2 {
  margin: 0;
  font-size: 20px;
  font-weight: bold;
  margin-bottom: 15px;
}

.footer .footer_contact h2 a {
  color: #ffffff;
}

.footer .footer_contact h3 {
  margin: 0;
  font-size: 14px;
  color: #999;
}

.footer .footer_contact p {
  margin: 0;
  font-size: 24px;
  color: #fff;
  margin-bottom: 5px;
}

.footer .footer_contact p a {
  color: #0ba43b;
  font-weight: bold;
  font-size: 0.4rem;
}

.footer .footer_contact ul {
  margin: 0;
  padding: 0;
  overflow: hidden;
}

.footer .footer_contact ul li {
  list-style: none;
  font-size: 16px;
  color: #999;
  margin-bottom: 5px;
}

.footer .footer_contact ul li a {
  color: #999;
}



.footer .footer_contact>div span {
  display: block;
  width: 0.54rem;
  height: 0.54rem;
  margin-right: 0.3rem;
}

.footer .footer_contact>div span img {
  width: 100%;
  display: block;
}



.footer .footer_nav {
  overflow: hidden;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  min-width:40%;
}

.footer .footer_nav ul {
  margin: 0 0.2rem;
  padding: 0;
  overflow: hidden;
  max-width: 1.3rem;
}

.footer .footer_nav ul h2 {
  font-size: 18px;
  margin: 0;
  margin-bottom: 0.1rem;
}

.footer .footer_nav ul h2 a {
  color: #fff;
}

.footer .footer_nav ul ol {
  padding: 0;
}

.footer .footer_nav ul ol li {
  list-style: none;
  line-height: 35px;
  height: 35px;
}

.footer .footer_nav ul ol li a {
  font-size: 14px;
  color: #999999;
  line-height: 0.4rem;
}

.footer .footer_nav ul:last-child {
  margin-right: 0;
}
.footer .footer_info {
  width: 20%;
  box-sizing: border-box;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
.footer .footer_code {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}
.footer .footer_code>div {
  width: 46%;
}
.footer .footer_code>div span {
  width: 100%;
  display: block;
  overflow: hidden;
  border: 2px solid #ffffff;
}
.footer .footer_code>div span img {
  width: 100%;
  display: block;
}

.footer .footer_code>div p {
  margin: 0.1rem 0 0;
  font-size: 14px;
  text-align: center;
  color: #fff;
}
 /*--友情链接--*/
.footer .footer_link {
  clear: both;
  overflow: hidden;
  display: none;
  align-items: center;
  font-size: 14px;
  color: #fff;
  padding: 0.3rem 0 0.2rem 0;
}

.footer .footer_link a {
  font-size: 14px;
  color: #fff;
  padding: 0 0.1rem;
}


.footer .footer_copyright {
  overflow: hidden;
  padding: 0.2rem 0;
  border-top: 1px solid #3f4148;
}

.footer .footer_copyright .footer_copyright_fl {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  float: left;
}

.footer .footer_copyright .footer_copyright_fl p,
.footer .footer_copyright .footer_copyright_fl a {
  font-size: 14px;
  color: #999999;
  margin: 0;
}

.footer .footer_copyright .footer_copyright_fr {
  float: right;
}

.footer .footer_copyright .footer_copyright_fr a {
  color: #999999;
  font-size: 14px;
}

@media (max-width:992px) {
  .footer_box {
    flex-wrap: wrap;
  }

  .footer {
    padding: 50px 0 70px;
  }

  .footer .footer_code {
    max-width:6rem;
    margin: 20px auto;
  }

  .footer .footer_nav {
    display: none;
  }

  .footer .footer_info {
    width: 100%;
    flex-direction: row-reverse;
  }

  .footer .footer_contact h2 {
    font-size: 18px;
  }

  .footer .footer_contact h3 {
    font-size: 14px;
  }

  .footer .footer_contact p a {
    font-size: 28px;
  }

  .footer .footer_contact ul li {
    font-size: 14px;
  }

  .footer .footer_contact ul li a {
    font-size: 14px;
  }

  .footer .footer_contact {
    padding-left: 0;
    padding-right: 0.2rem;
    width: 100%;
    text-align: center;
  }

  .footer .footer_copyright .footer_copyright_fl {
    flex-wrap: wrap;
    justify-content: center;
    float: initial;
  }

  .footer .footer_copyright .footer_copyright_fr {
    float: inherit;
    text-align: center;
  }
  .footer .footer_copyright .footer_copyright_fl p,.footer .footer_copyright .footer_copyright_fr a, .footer .footer_copyright .footer_copyright_fl a{
    text-align: center;
    font-size: 12px;
  }
}

@media (max-width:750px) {

  .footer{
    padding-top:30px;
  }
  .footer .footer_copyright {
    margin-top: 0.2rem;
  }
  .footer .footer_code{
    margin:5px auto;
    max-width:4.5rem;
  }
}