@charset "UTF-8";

/* ========== 全局重置样式 ========== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  font-size: 100px;
  /* 移动端核心优化 */
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
  -webkit-overflow-scrolling: touch;
  -webkit-tap-highlight-color: transparent;
  touch-action: manipulation;
  scroll-behavior: smooth;
  overflow-x: hidden;
}
body {
  font-family:
    -apple-system, BlinkMacSystemFont,
    "Segoe UI", Roboto, "Helvetica Neue",
    "Microsoft YaHei", "微软雅黑", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.5;
  color: #333;
  background: #f2f2f2;
  overflow-x: hidden;
  /* 字体抗锯齿 */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* ========== 通用标签默认样式 ========== */
a {
  text-decoration: none;
  color: #333;
}
a:hover {
  color: #00955e;
}
ul, ol {
  list-style: none;
}
em, i {
  font-style: normal;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
  border: none;
  vertical-align: middle;
}
table {
  border-collapse: collapse;
  border-spacing: 0;
  width: 100%;
}
table, table div, table p, table div p {
  text-indent: 0 !important;
}
button, input, select, textarea, label {
  font-family: inherit;
  font-size: inherit;
  border: none;
  outline: none;
  background: transparent;
  resize: none;
}
/* 修复iOS按钮样式 */
button, input[type="button"], input[type="submit"] {
  -webkit-appearance: none;
  border-radius: 0;
  cursor: pointer;
}
/* 占位符统一 */
::placeholder {
  color: #999;
  opacity: 1;
}

/* ========== 全站统一过渡 ========== */
a,
button,
img,
[class*="btn"],
[class*="nav"],
[class*="item"],
[class*="card"] {
  transition:
    color 0.3s ease,
    background-color 0.3s ease,
    border-color 0.3s ease,
    width 0.3s ease,
    transform 0.3s ease,
    opacity 0.3s ease;
}

/* ========== Flex 布局工具类 ========== */
.flex { display: flex; } /* 启用flex布局 */
.flex-center { display: flex; justify-content: center; } /* 水平居中 */
.flex-middle { display: flex; align-items: center; } /* 垂直居中 */
.flex-center-middle { display: flex; justify-content: center; align-items: center; } /* 水平+垂直居中 */
.flex-between { display: flex; justify-content: space-between; align-items: center; } /* 两端对齐 + 垂直居中（导航最常用） */
.flex-around { display: flex; justify-content: space-around; align-items: center; } /* 均匀分布（两边有间隙） */
.flex-evenly { display: flex; justify-content: space-evenly; align-items: center; } /* 等间距分布（所有间隙相等） */
.flex-right { display: flex; justify-content: flex-end; align-items: center; } /* 右对齐 + 垂直居中 */
.flex-wrap { flex-wrap: wrap; } /* 自动换行（多列布局必用） */
.flex-column { flex-direction: column; } /* 垂直方向排列（上下布局） */

/* ========== 间距工具类 ========== */
.gap5 { gap: 5px; }
.gap10 { gap: 10px; }
.gap15 { gap: 15px; }
.gap20 { gap: 20px; }
.gap30 { gap: 30px; }
.gap40 { gap: 40px; }
.gap50 { gap: 50px; }

.mt5 { margin-top: 5px; }
.mt10 { margin-top: 10px; }
.mt15 { margin-top: 15px; }
.mt20 { margin-top: 20px; }
.mt30 { margin-top: 30px; }

.mb5 { margin-bottom: 5px; }
.mb10 { margin-bottom: 10px; }
.mb15 { margin-bottom: 15px; }
.mb20 { margin-bottom: 20px; }
.mb30 { margin-bottom: 30px; }

.pt5 { padding-top: 5px; }
.pt10 { padding-top: 10px; }
.pt15 { padding-top: 15px; }
.pt20 { padding-top: 20px; }
.pt30 { padding-top: 30px; }

.pb5 { padding-bottom: 5px; }
.pb10 { padding-bottom: 10px; }
.pb15 { padding-bottom: 15px; }
.pb20 { padding-bottom: 20px; }
.pb30 { padding-bottom: 30px; }

/* ========== 常用通用样式 ========== */
/* 文本对齐 */
.tc { text-align: center; }
.tl { text-align: left; }
.tr { text-align: right; }

/* 字体粗细 */
.fw400 { font-weight: 400; }
.fw500 { font-weight: 500; }
.fw600 { font-weight: 600; }
.fw700 { font-weight: 700; }

/* 标题层级 */
.h1, h1 { font-size: 32px; font-weight: 700; line-height: 1.3; }
.h2, h2 { font-size: 28px; font-weight: 700; line-height: 1.35; }
.h3, h3 { font-size: 24px; font-weight: 600; line-height: 1.4; }
.h4, h4 { font-size: 20px; font-weight: 600; line-height: 1.4; }
.h5, h5 { font-size: 18px; font-weight: 500; line-height: 1.45; }
.h6, h6 { font-size: 16px; font-weight: 500; line-height: 1.45; }

/* 文本层级 */
.text { font-size: 16px; } /* 正文 */
.desc { font-size: 15px; color: #666; } /* 简介/描述 */
.small { font-size: 14px; color: #888; } /* 备注 */
.xs { font-size: 12px; color: #999; } /* 超小文字 */

/* 溢出省略 */
.ellipsis {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.ellipsis2 {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.clearfix::after {
  content: "";
  display: block;
  clear: both;
}
.hidden {
  display: none !important;
}
.fl{
  float: left;
}
.fr{
  float: right;
}

/* ========== 本站通用样式 ========== */
.bg-bai{
  background-color: #fff;
}
.bg-hui{
  background-color: #f2f2f2;
}

/* ========== 本站手机端样式 ========== */
.container {
  max-width: 1550px;
  padding: 0px 10px;
  margin: 0 auto;
}
/* PC头部隐藏 */
.head-pc { display: none; }

/*移动端头部*/
.head-mobile {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  z-index: 9999;
}
.m-head {
  height: 60px;
  padding: 0 15px;
  background: #fff;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.m-logo img {
  height: 24px;
  display: block;
  object-fit: contain;
}
.m-menubtn {
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 24px;
  color: #fff;
  background-color: #00955e;
  padding: 0 10px;
  border-radius: 4px;
}
.m-menubtn:focus {
  outline: none;
}
.m-menu {
  position: fixed;
  top: 60px;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0,102,52,0.95);
  transform: translateX(100%);
  transition: transform 0.3s ease-in-out;
  padding: 20px;
  overflow-y: auto;
}
.m-menu.open {
  transform: translateX(0);
}
.m-menu-dl {
  margin-bottom: 30px;
}
.m-menu-dl dt i {
  font-size: 18px;
  color: #d6f3da;
  font-weight: bold;
}
.m-menu-link,
.m-menu-item {
  border-bottom: 1px solid #6eb090;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.m-menu-link a,
.m-menu-item a {
  color: #fff;
  font-size: 16px;
  padding: 10px 0;
}
.m-submenu {
  overflow: hidden;
  height: 0;
  transition: height 0.3s ease;
}
.m-submenu.open {
}
.m-submenu a {
  font-size: 14px;
  color: #fff;
  display: block;
  background: rgba(0,0,0,0.2);
  margin-top: 5px;
  padding-top: 10px;
  padding-right: 35px;
  padding-bottom: 10px;
  padding-left: 35px;
}
.m-search {
  margin-top: 30px;
  width: 100%;
  height: auto;
  border: 1px solid #e2e2e2;
  border-radius: 8px;
  overflow: hidden;
  background-color: #fff;
}
.m-keybord {
  float: left;
  width: calc(100% - 50px);
  height: 50px;
  font-size: 16px;
  padding: 0 15px;
  background-color: #fff;
}
.m-submit {
  float: right;
  font-size: 28px;
  width: 50px;
  height: 50px;
  color: #999;
  cursor: pointer;
  background-color: #f2f2f2;
}

/*底部*/
.foot{
  font-size: 12px;
  color: #ccc;
  line-height: 2;
}
.foot a{
  color: #ccc;
}
.foot a:hover{
  color: #fff;
}
.foot_top{
  background-color: #48484a;
  padding: 0.2rem;
}
.foot_top .container{
  display: flex;
  flex-direction: column;
}
.foot_top dt{
  font-size: 18px;
  color: #fff;
  text-align: center;
  border-bottom: 1px solid #666;
  margin-bottom: 0.2rem;
}
.foot_kjdh,
.foot_yqlj{
  display: none;
}
.foot_ewm dd{
  float: left;
  width: 50%;
}
.foot_ewm img{
  width: 50%;
  margin: 0 auto;
}
.foot_bottom{
  background-color: #3f3f41;
  padding: 0.2rem;
  text-align: center;
}
.foot_bottom span{
  margin-right: 0.5em;
  margin-left: 0.5em;
}
.foot_bottom i{
  font-style: normal;
}

/* 首页头部Banner */
.home-banner-main {
  position: relative;
  width: 100%;
  height: 300px;
  margin-top: 60px;
  overflow: hidden;
}
.home-banner-main__item {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 1.1s ease-in-out;
  z-index: 1;
}
.home-banner-main__item.active {
  opacity: 1;
  z-index: 2;
}
.home-banner-main__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  animation: imgZoom 12s linear infinite alternate;
}
@keyframes imgZoom {
  0% { transform: scale(1); }
  100% { transform: scale(1.1); }
}
.home-banner-main__text {
  position: absolute;
  top: 50%;
  left: 15%;
  transform: translateY(-50%);
  z-index: 3;
  color: #fff;
  max-width: 60%;
  text-shadow: 0 2px 10px rgba(0,0,0,0.6);
}
.home-banner-main__text h2 {
  font-size: 16px;
  margin-bottom: 1em;
  font-weight: 600;
}
.home-banner-main__text p {
  font-size: 14px;
  margin-bottom: 2em;
}
.home-banner-main__text a {
  display: inline-block;
  padding: 0.6em 1.5em;
  background: #2563eb;
  color: #fff;
  text-decoration: none;
  border-radius: 4px;
  font-size: 12px;
  transition: 0.3s;
}
.home-banner-main__text a:hover {
  background: #1d4ed8;
}
.home-banner-main__btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 2.5em;
  height: 2.5em;
  background: rgba(255,255,255,0.2);
  border: none;
  color: #fff;
  font-size: 16px;
  cursor: pointer;
  z-index: 4;
  border-radius: 50%;
  transition: 0.3s;
}
.home-banner-main__btn:hover {
  background: rgba(255,255,255,0.4);
}
.home-banner-main__btn.prev-btn { left: 0.5em; }
.home-banner-main__btn.next-btn { right: 0.5em; }
.home-banner-main__dots {
  position: absolute;
  bottom: 10%;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  z-index: 4;
}
.home-banner-main__dots .dot {
  font-size:10px;
  width: 1em;
  height: 1em;
  margin: 0 0.5em;
  border-radius: 50%;
  background: rgba(255,255,255,0.5);
  cursor: pointer;
  transition: 0.3s;
}
.home-banner-main__dots .dot.active {
  background: #fff;
  width: 3em;
  border-radius: 8px;
}

/*首页区块*/
.home-main{
  padding: 30px 0;
  position: relative;
  background-attachment: fixed;
  background-repeat: no-repeat;
  background-position: center top;
  background-size: cover;
}
.home-main-title {
  font-size:40px;
  position: relative;
  height: 1em;
  margin-bottom: 0.75em;
}
.home-main-title h3,
.home-main-title h4{
  line-height: 1;
  position: absolute;  
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
}
.home-main-title h3 {
  font-size: 0.5em;
  z-index: 2;
}
.home-main-title h4{
  font-size: 1em;
  text-transform: uppercase;
  z-index: 1;
  margin-bottom: -0.1em;
}
.home-main-title h3.color-hei{
  color: rgba(0,0,0,1);
}
.home-main-title h4.color-hei{
  color: rgba(0,0,0,.1);
}
.home-main-title h3.color-bai{
  color: rgba(255,255,255,1);
}
.home-main-title h4.color-bai{
  color: rgba(255,255,255,.1);
}
.mainbg-xwzx{
  background-image: url(bzls_homebg_01.jpg);
}
.mainbg-zyyw{
  background-image: url(bzls_homebg_02.jpg);
}
.mainbg-gsjj{
  background-image: url(bzls_homebg_03.jpg);
}
.mainbg-xsqy{
  background-image: url(bzls_homebg_04.jpg);
}

/* 首页新闻板块 */
.home-news{
}

/* 首页新闻轮播图 */
.news-focus {
  position: relative;
  width: 100%;
  height: 240px;
  overflow: hidden;
}
.news-focus__bd {
  position: relative;
  width: 100%;
  height: 240px;
  overflow: hidden;
}
.news-focus__item {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 1s ease;
  z-index: 1;
}
.news-focus__item.active {
  opacity: 1;
  z-index: 2;
}
.news-focus__item a {
  display: block;
  width: 100%;
  height: 100%;
}
.news-focus__item img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.item-title {
  display: none; /* 仅用于存标题，不显示 */
}
.news-focus__ft {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 40px;
  background: rgba(0,0,0,0.6);
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0 15px;
  z-index: 3;
}
.news-focus__text {
  color: #fff;
  font-size: 14px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 100%;
}
.news-focus__pagination {
  display:none;
}
.news-focus__pagination span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255,255,255,0.5);
  margin: 0 5px;
  cursor: pointer;
}
.news-focus__pagination span.active {
  background: #fff;
}
.news-focus__prev,
.news-focus__next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 36px;
  height: 36px;
  border: none;
  background: rgba(0,0,0,0.3);
  color: #fff;
  font-size: 16px;
  cursor: pointer;
  z-index: 4;
  border-radius: 50%;
}
.news-focus__prev { left: 10px; }
.news-focus__next { right: 10px; }

/* 首页新闻选项卡 */
.news-tab {
  width: 100%;
  margin-top:30px;
  overflow: hidden;
}
.news-tab__hd {
  margin-bottom: 10px;
  position: relative;
  overflow: hidden; 
}
.news-tab__hd::before {
  content: "";
  position: absolute;
  width: 100%;
  left: 0;
  bottom: 0;
  height: 1px;
  background: #e2e2e2;
}
.tab-list {
  display: flex;
  justify-content: space-between;
}
.tab-list li {
  font-size: 16px;
  color: #666;
  font-weight: bold;
  padding-bottom: 1em;
  cursor: pointer;  
  position: relative;
}
.tab-list li a {
  color: #666;
}
.tab-list li::after {
  content: "";
  position: absolute;
  width: 0;
  left: 0;
  bottom: 0;
  height: 4px;
  background: #00955e;
  transition: all .3s ease;
}
.tab-list li.active,
.tab-list li.active a {
  color: #00955e;
}
.tab-list li.active::after {
  width: 100%;
}

.news-tab__bd {
  position: relative;
  width: 100%;
}
.tab-item {
  width: 100%;
  display: none;
  position: relative;
  z-index: 1;
}
.tab-item.active {
  display: block;
  z-index: 2;
}
.tab-item.slide-in-right {
  display: block;
  animation: slideInRight .3s forwards;
}
.tab-item.slide-in-left {
  display: block;
  animation: slideInLeft .3s forwards;
}
@keyframes slideInRight {
  from{transform:translateX(100%);}
  to{transform:translateX(0);}
}
@keyframes slideInLeft {
  from{transform:translateX(-100%);}
  to{transform:translateX(0);}
}
.tab-item li {
  line-height: 1.4;
  border-bottom: 1px dotted #e2e2e2;
  padding: 10px 0;
}
.tab-item li a {
  display: block;
  text-decoration: none;
  color: #333;
  font-size: 14px;
}
.tab-item .tit {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  font-size: 1em;
}
.tab-item .time {
  color: #999;
  font-size: 1em;
  white-space: nowrap;
}
.tab-item .more{
  text-align: center;
  margin-top: 20px;
}
.tab-item .more a{
  font-size: 14px;
  display: inline-block;
  padding: 0.5em 2em;
  border: 1px solid #e2e2e2;
  border-radius: 6px;
  font-weight: normal;
}
.tab-item .more a:hover{
  color:#00955e;
  border: 1px solid #00955e;
}

/* 首页主营业务 */
.service-wrap {
  max-width: 1530px;
  overflow: hidden;
}
.service-left{
  width: 100%;
}
.service-right{
  width: 100%;
}
.service-item {
  height: 150px;
  width: 100%;
  overflow: hidden;
  margin-bottom:10px;
}
.service-item a {
  display: block;
  height: 100%;
  width: 100%;
  overflow: hidden;
  position: relative;
}
.service-item .bg-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
}
.service-item .bg-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.4s ease;
}
.service-item .txt-layer {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 3em;
  z-index: 2;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.7));
  color: #fff;
  font-size: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.4s ease;
}
.service-item a:hover .txt-layer {
  height: 100%;
  background: rgba(0, 149, 94, 0.85);
}
.service-item a:hover .bg-img img {
  transform: scale(1.1);
}

/* 首页公司简介 */
.home-gsjj{
  background-color: #fff;
  padding: 8%;
  box-shadow: 0px 0px 10px rgba(0,0,0,0.2);
}
.home-gsjj h5{
  font-size:20px;
  text-align: center;
  padding-bottom: 1em;
  position: relative;
  border-bottom: 1px solid #ccc;
}
.home-gsjj h5::after{
  content: "";
  position: absolute;
  width: 60px;
  height: 4px;
  left: 50%;
  transform: translateX(-50%);
  bottom: 0;
  background: #44b250;
}
.home-gsjj p{
  font-size:16px;
  text-align: justify;
  padding: 2em 0;
  line-height: 2;
}
.home-gsjj .info{
  display: flex;
  flex-direction: column-reverse;
}
.home-gsjj .info-li{
  background-color: #f4f4f4;
  width: 100%;
  padding: 15px;
  text-align: center;
  border-radius: 6px;
  margin-bottom: 10px;
}
.home-gsjj .info-li .nr {
  font-size: 16px;
  color: #00955e;
  line-height: 1;
}
.home-gsjj .info-li .nr i {
  font-size: 24px;
  font-style: normal;
}

/* 首页下属企业 */
.home-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: stretch;
}
.home-links li {
  width: 100%;
  margin-bottom: 12px;
}
.home-links a {
  color: #fff;
  height:100%;
  display: block;
  text-align: center;
  background-color: rgba(255,255,255,.2);
  padding: 14px 10px;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.3s;
}
.home-links a:hover {
  color: #333;
  background-color: rgba(255,255,255,1);
}


/*内页横幅*/
.inner-banner{
  font-size:10px;
  height: 200px;
  margin-top: 60px;
  overflow: hidden;
  background-repeat: no-repeat;
  background-position: center top;
  background-size: cover;
  color: #fff;
  transition: height 0.5s ease;
}
.inner-banner strong{
  font-size: 2em;
}
.inner-banner p{
  font-size: 1em;
  text-transform: uppercase;
}

/*内页主体顶部*/
.inner-maintop{
  background-color: #fff;
}
/*内页二级导航*/
.subnav{
  position: relative;
  overflow: hidden;
}
.subnav-ul{
  display: flex;
  justify-content: flex-start;
  overflow-x: auto;
  white-space: nowrap;
  scroll-behavior: smooth; /* 平滑滚动 */
  -webkit-overflow-scrolling: touch; /* 苹果端流畅滚动 */
}
.subnav-ul::-webkit-scrollbar {
  display: none;
}
.subnav-ul li{
  font-size:16px;
  padding: 0 1em;
  position: relative;
}
.subnav-ul li::after{
  content: "";
  position: absolute;
  width:1px;
  height:16px;
  background:#ccc;
  right:0;
  top:50%;
  transform: translateY(-50%);
}
.subnav-ul li:last-child::after{
  width:0;
}
.subnav-ul li a{
  display: block;
  padding: 1em 0;
  position: relative;
}
.subnav-ul li a::after{
  content: "";
	position: absolute;
	width: 0;
	left: 50%;
  bottom: 0;
	height: 4px;
	background: #00955e;
  transition: all .3s linear;
}
.subnav-ul li:hover a,.subnav-ul li.on a{
  color: #00955e;
}
.subnav-ul li:hover a::after,.subnav-ul li.on a::after{
  width:100%;
  left: 0;
}
.scroll-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 30px;
  height: 30px;
  background: rgba(0,0,0,0.6);
  color: #fff;
  border-radius: 50%;
  font-size: 14px;
  cursor: pointer;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
  display: none;
  font-weight: bold;
}
.scroll-arrow.left {
  left: 0px;
}
.scroll-arrow.right {
  right: 0px;
}
.scroll-arrow.show {
  display: flex;
}

/*当前位置*/
.sitepath {
  padding: 1em 0;
  white-space: nowrap;
}
.sitepath .tit {
  display: inline-block;
}
.sitepath a {
  display: inline-block;
  margin: 0 0.5em;
}
.sitepath > a:first-child {
  margin-left: 0;
}

/*内页主体*/
.inner-main{
  padding: 10px 0;
}

/*正文*/
.article_box{
  font-size: 16px;
  background-color: #fff;
  padding: 30px 20px;
}
.article_title > * {
  font-weight: normal;
  text-align: center;
}
.article_title h1 {
  font-size: 22px;
}
.article_title h2 {
  font-size: 18px;
  margin-top: 0.5em;
  color: #666;
}
.article_info {
  font-size: 14px;
  color: #666;
  border-bottom: 1px solid #e2e2e2;
  padding-bottom: 1em;
  margin-top: 2em;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}
.article_info > *{
  margin-right: 10px;
  margin-left: 10px;
}
.article_size{
  display: none;
}
.article_size a{
  margin-right: 10px;
  margin-left: 10px;
}
.article_size a.on {
	color: #bd2d31;
	font-weight: bold;
}
.article_print {
  display: none;
  cursor: pointer;
}
.article_con {
  padding: 1.5em 0;
  line-height: 2;
  text-align: justify;
}
.article_con p {
  margin-bottom: 1em;
}
.article_con img {
  max-width:100%; 
  height:auto;
  width: auto !important;
  display: block;
  margin: 0 auto;
}
.article_prevandnext{
  border-top: 1px solid #e2e2e2;
  padding-top: 1em;
}
.article_prevandnext li{
  margin-top: 1em;
}

/*列表-文字式*/
.innerlist-wzs{}
.innerlist-wzs *{
  transition: all .2s;
}
.innerlist-wzs li{
  margin-bottom: 10px
}
.innerlist-wzs li a{
  background: #fff;
  padding: 20px;
  display: block;
}
.innerlist-wzs .bt {
  font-size: 16px;
  font-weight: normal;
}
.innerlist-wzs .time2{
  font-size: 14px;
  color: #999;
  margin-top: 10px;
}
.innerlist-wzs .time1,
.innerlist-wzs .intro,
.innerlist-wzs .iconfont {
  display: none;
}
/*列表-图文式*/
.innerlist-tws{}
.innerlist-tws *{
  transition: all .2s;
}
.innerlist-tws li{
  margin-bottom: 10px
}
.innerlist-tws li a{
  background: #fff;
  padding: 20px;
  display: block;
  display: flex;
  flex-direction: column;
}
.innerlist-tws .title{
  order: 2;
}
.innerlist-tws .bt {
  font-size: 16px;
  font-weight: normal;
}
.innerlist-tws .time2{
  font-size: 14px;
  color: #999;
  margin-top: 10px;
  order: 3;
}
.innerlist-tws .pic{
  height: 150px;
  width: 100%;
  overflow: hidden;
  margin-bottom:10px;
  order: 1;
}
.innerlist-tws .pic img{
  display: block;
  height: 100%;
  width: 100%;
  object-fit: cover;
}
.innerlist-tws .time1,
.innerlist-tws .intro {
  display: none;
}

/* 列表-下属企业 */
.innerlist-xsqy ul {
  display: flex;
  flex-wrap: wrap;
  margin: 0;
  padding: 0;
  list-style: none;
}
.innerlist-xsqy li {
  width: 100%;
  margin-bottom: 20px;
}
.innerlist-xsqy li a {
  display: block;
  border-radius: 8px;
  overflow: hidden;
}
.innerlist-xsqy .pic {
  width: 100%;
  height: 220px;
  overflow: hidden;
}
.innerlist-xsqy .pic img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.3s ease;
}
.innerlist-xsqy .title {
  text-align: center;
  font-size: 16px;
  padding: 1em;
  background-color:#fff;
  white-space: nowrap; /* 强制不换行 */
  overflow: hidden;    /* 超出隐藏 */
  text-overflow: ellipsis; /* 显示省略号 */
  transition: background-color 0.3s ease;
}
.innerlist-xsqy li a:hover .pic img {
  transform: scale(1.1);
}
.innerlist-xsqy li a:hover .title {
  background-color: #00955e;
  color: #fff;
}

/* 列表-主营业务 */
.innerlist-zyyw li{
  width: 100%;
  position: relative;
  margin-bottom: 20px;
}
.innerlist-zyyw .yw_bg {
  width: 100%;
  max-width: 1920px;
  height: 500px;
  overflow: hidden;
}
.innerlist-zyyw .yw_bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.innerlist-zyyw .yw_txt {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translate(-50%);
  z-index: 2;
  width: 100%;
  padding: 3% 5%;
  background: rgba(0, 0, 0, 0.6);
  color: #fff;
  box-sizing: border-box;
}
.innerlist-zyyw .yw_txt strong {
  display: block;
  font-size: 20px;
  margin-bottom: 10px;
  text-align: center;
}
.innerlist-zyyw .yw_txt p {
  font-size: 16px;
  line-height: 2;
  margin: 0;
  text-align: center;
}

/*列表-搜索结果*/
.searchlist{
}
.searchlist *{
  transition: all .2s;
}
.searchlist li{
  margin-bottom: 10px
}
.searchlist li a{
  background: #fff;
  padding: 20px 5%;
  display: block;
}
.searchlist .bt {
  font-size: 16px;
  font-weight: normal;
}
.searchlist .time{
  font-size: 14px;
  color: #999;
  margin-top: 20px;
}
.searchlist .time span{
  display:block;
}
.searchlist .intro {
  display: none;
}

/*列表分页*/
.epages {
  text-align: center;
  margin: 2em 0;
  clear: both;
  font-size: 12px;
}
.epages *{
  vertical-align:middle;
  font-size: 1em;
  font-weight: normal;
  text-decoration: none;
  padding-top: 0.5em;
  padding-right: 1em;
  padding-bottom: 0.5em;
  padding-left: 1em;
}
.epages a,
.epages span
{
	color: #666;
  border: 1px solid #D9D9D9;
}
.epages a,
.epages b,
.epages span
{
  text-align:center;
  text-decoration:none;
  display: inline-block;
  margin: 3px;
}
.epages a:hover,
.epages b{
	color:#fff;
	background-color: #00955e;
  border: 1px solid #00955e;
}
.epages .number {
  display:none;
}

/*单页-通用*/
.dy_common{
  font-size: 16px; 
  padding: 30px 20px;
}
.dy_common *{
  transition: all .3s;
}
.dy_title{
  font-size: clamp(20px, 4vw, 32px);
  font-weight: bold;
  padding-bottom: 0.6em;
  margin-bottom: 1.5em;
  text-align: center;  
  position: relative;
}
.dy_title::before{
  content: "";
  position: absolute;
  width: 1em;
  height: 4px;
  left: 50%;
  transform: translateX(-50%);
  bottom: 0;
  background: #00955e;
}
.dy_content{
  width: 100%;
  line-height: 2;
  text-align: justify;
}
.dy_content p {
  margin-bottom: 1em;
}
.dy_content img {
  max-width:100%; 
  height:auto;
  width: auto !important;
  display: block;
  margin: 0 auto;
}

/*单页-联系我们*/
.dy_lxwm_lxfs {
  text-align: center; 
  margin-bottom: 2em; 
}
.dy_lxwm_lxfs strong {
  display: block;
  margin: 2em 0 0.5em 0; 
  font-weight: bold;
}
.dy_lxwm_lxfs strong:first-child {
  margin-top: 0;
}
.dy_lxwm_lxfs .tel {
  font-size: 2em;
  font-weight: bold;
  color: #00955d;
}
.dy_lxwm_lxfs .qrcode {
  display: flex;
  justify-content: center;
}
.dy_lxwm_lxfs .qrcode img {
  width: 120px;
  height: auto;
  display: block;
  margin-left: 1.5em;
}
.dy_lxwm_lxfs .qrcode img:first-child {
  margin-left: 0;
}
.dy_lxwm_map img {
  width: 100%;
  height: auto;
  display: block;
}

/*返回顶部按钮*/
#returntop {
  visibility: hidden;
  opacity: 0;
  font-size: 24px;
  color: #00955e;
  position: fixed;
  z-index:9999;
  right: 20px;
  bottom: 20px;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background-color: #fff;
  border: 1px solid #bdf0dd;
  box-shadow: 0px 0px 15px rgba(0,148,92,.2);
  cursor: pointer;
  transition: all 0.5s ease;
  text-align: center;
  line-height: 48px;
}

/* ========== 媒体查询断点 ========== */
@media (min-width: 768px) {
.m-logo img {
  height: 34px;
  display: block;
  object-fit: contain;
}
.foot_top .container{
  flex-direction: row;
  gap:5%;
}
.foot_top dl {
  flex: 1;
}
.news-focus {
  height: 400px;
}
.news-focus__bd {
  height: 400px;
}
.news-focus__ft {
  justify-content: space-between;
}
.news-focus__text {
  max-width: 75%;
}
.news-focus__pagination {
  display: flex;
}
.home-banner-main {
  height: 400px;
}
.home-banner-main__text {
  max-width: 70%;
}
.home-banner-main__text h2 {
  font-size: 22px;
}
.home-banner-main__text p {
  font-size: 16px;
}
.home-banner-main__text a {
  font-size: 14px;
}
.home-banner-main__btn {
  font-size: 18px;
}
.home-banner-main__btn.prev-btn { left: 1em; }
.home-banner-main__btn.next-btn { right: 1em; }
.home-banner-main__dots .dot {
  font-size:14px;
}
.inner-banner{
  font-size:15px;
  height: 300px;
}
.home-main{
  padding: 60px 0;
}
.home-main-title {
  font-size:60px;
}
.service-left .service-item {
  height: 180px;
}
.service-right .service-item {
  float: left;
  height: 180px;
  width: 50%;
}
.service-right .service-item:nth-child(odd) {
  padding-right:5px;
}
.service-right .service-item:nth-child(even) {
  padding-left:5px;
}
.service-item .txt-layer {
  font-size: 18px;
}
.home-gsjj .info{
  justify-content: space-between;
  flex-direction: row;
}
.home-gsjj .info-li{
  width: 31%;
}
.home-gsjj .info-li .nr i {
  font-size: 30px;
}
.home-links {
  justify-content: space-between;
}
.home-links li {
  width: 49%;
}
.epages {
  font-size: 14px;
}
.epages .number {
  display:inline-block;
}
.sitepath {
  padding-left: 2em;
  background: url(bzls_icon_01.png) no-repeat left center;
  background-size: 21px 18px;
}
.sitepath::before {
  content: "当前位置：";
}
.article_box{
  padding: 5% 8%;
}
.article_info {
  margin-top: 3em;
  flex-direction: row;
}
.article_size{
  display: block;
}
.innerlist-wzs .time1,
.innerlist-wzs .intro{
  display: block;
}
.innerlist-wzs li a{
  min-height: 140px;
  display: flex;
  align-items: center;
}
.innerlist-wzs .time1 {
  font-size: 14px;
  color: #00955e;
  flex: 0 0 13%;
  height: 80px;
  border-right: 1px solid #d9d9d9;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  flex-shrink: 0;
}
.innerlist-wzs li .time1 span {
  font-size: 3.5em;
  line-height: 1em;
  margin-bottom:10px
}
.innerlist-wzs .title {
  flex: 1;
  min-width: 0; 
  padding: 0 5%;
}
.innerlist-wzs .bt {
  display: -webkit-box !important;
  -webkit-line-clamp: 2 !important;
  -webkit-box-orient: vertical !important;
  overflow: hidden !important;
  text-overflow: ellipsis !important;
  -webkit-appearance: none !important;
  word-break: break-word !important;
  white-space: normal !important;
  max-height: 2.8em !important;
  line-height: 1.4em !important;
}
.innerlist-wzs .intro{
  font-size: 14px;
  color: #666;
  margin-top: 10px;
  display: -webkit-box !important;
  -webkit-line-clamp: 2 !important;
  -webkit-box-orient: vertical !important;
  overflow: hidden !important;
  text-overflow: ellipsis !important;
  -webkit-appearance: none !important;
  word-break: break-word !important;
  white-space: normal !important;
  max-height: 2.8em !important;
  line-height: 1.4em !important;
}
.innerlist-wzs .time2{
  display: none;
}
.innerlist-tws .time1,
.innerlist-tws .intro{
  display: block;
}
.innerlist-tws li a{
  min-height: 160px;
  display: flex;
  align-items: center;
  flex-direction: row;
}
.innerlist-tws .time1 {
  font-size: 14px;
  color: #00955e;
  width: 13%;
  height: 80px;
  border-right: 1px solid #d9d9d9;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  flex-shrink: 0;
}
.innerlist-tws li .time1 span {
  font-size: 3.5em;
  line-height: 1em;
  margin-bottom:10px
}
.innerlist-tws .title {
  flex: 1;
  min-width: 0; 
  padding: 0 5%;
}
.innerlist-tws .bt {
  display: -webkit-box !important;
  -webkit-line-clamp: 2 !important;
  -webkit-box-orient: vertical !important;
  overflow: hidden !important;
  text-overflow: ellipsis !important;
  -webkit-appearance: none !important;
  word-break: break-word !important;
  white-space: normal !important;
  max-height: 2.8em !important;
  line-height: 1.4em !important;
}
.innerlist-tws .intro{
  font-size: 14px;
  color: #666;
  margin-top: 10px;
  display: -webkit-box !important;
  -webkit-line-clamp: 2 !important;
  -webkit-box-orient: vertical !important;
  overflow: hidden !important;
  text-overflow: ellipsis !important;
  -webkit-appearance: none !important;
  word-break: break-word !important;
  white-space: normal !important;
  max-height: 2.8em !important;
  line-height: 1.4em !important;
}
.innerlist-tws .pic {
  width: 213px;
  height: 120px;
  overflow: hidden;
  flex-shrink: 0;
  min-height: 0;
  background-color:#f2f2f2;
  margin-bottom:0;
  order: 3;
}
.innerlist-tws .pic img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.innerlist-tws .time2{
  display: none;
}
.innerlist-xsqy li {
  width: 50%;
  padding: 0 15px;
  margin-bottom: 30px;
}
.innerlist-zyyw li{
  margin-bottom: 30px;
}
.innerlist-zyyw .yw_txt {
  width: 80%;
}
.innerlist-zyyw .yw_txt strong {
  font-size: 24px;
}
.innerlist-zyyw .yw_txt p {
  font-size: 18px;
}
.searchlist .time span{
  display:inline-block;
  margin-right:30px;
}
.searchlist .intro {
  display: block;
  font-size: 14px;
  color: #666;
  margin-top: 10px;
  font-weight: normal;
  display: -webkit-box !important;
  -webkit-line-clamp: 1 !important;
  -webkit-box-orient: vertical !important;
  overflow: hidden !important;
  text-overflow: ellipsis !important;
  -webkit-appearance: none !important;
  word-break: break-word !important;
  white-space: normal !important;
  max-height: 2.8em !important;
  line-height: 1.4em !important;
}
.dy_common{
  padding: 5% 8%;
}
}

@media (min-width: 1024px) {
.home-banner-main {
  height: 500px;
}
.home-banner-main__text h2 {
  font-size: 34px;
}
.home-banner-main__text p {
  font-size: 18px;
}
.home-banner-main__text a {
  font-size: 16px;
}
.home-banner-main__btn {
  font-size: 20px;
}
.home-news{
  display: flex;
  justify-content: space-between;
}
.news-focus {
  width:49%;
  height: 450px;
}
.news-focus__bd {
  height: 450px;
}
.news-tab {
  width:49%;
  margin-top:0;
}
.tab-list li {
  font-size: 18px;
}
.tab-item li a {
  font-size:16px;
  height:2.2em;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.tab-item .tit {
  flex:1;
  padding-right: 1em;
  -webkit-line-clamp: 1;
}
.home-main{
  padding: 80px 0;
}
.service-left{
  float: left;
  width: 23.5%;
  max-width: 360px;
}
.service-right{
  float: left;
  width: 76.5%;
  max-width: 1170px;
}
.service-left .service-item {
  height: 340px;
  margin-bottom:0;
}
.service-right .service-item {
  height: 160px;
  width: 33.33%;
}
.service-right .service-item:nth-child(odd) {
  padding-right:0;
  padding-left:20px;
}
.service-right .service-item:nth-child(even) {
  padding-left:20px;
}
.service-right .service-item:nth-child(-n+3) {
  margin-bottom:20px;
}
.dy_common{
  font-size: 18px; 
}
.dy_lxwm {
  display: flex;
  align-items: flex-start;
  gap: 30px;
}
.dy_lxwm_lxfs {
  flex: 1;
  margin-bottom: 0;
  text-align: left;
}
.dy_lxwm_lxfs .qrcode {
  justify-content: flex-start;
}
.dy_lxwm_map {
  width: 50% 
}
.innerlist-zyyw .yw_txt strong {
  font-size: 28px;
}
.article_con img {
  max-width:90%; 
}
}

@media (min-width: 1025px) {
/*移动端头部隐藏*/
.head-mobile { display: none; }
/*PC端头部*/
.head-pc{
  display: block;
  height: 100px;
  width: 100%;
  z-index: 999;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  padding: 0 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: linear-gradient(180deg,rgba(0,0,0,.7),rgba(0,0,0,0));
  transition: all 0.3s;
}
.logo-pc img{
  height: clamp(25px, 7.5vw - 72px, 40px);
  transition: all .3s linear;
}
.logo-pc .logo2{
  display: none;
}
.head-pc-baibg{
  height: 80px;
  background: #fff;
  box-shadow: 0 0 20px rgba(0,0,0,.1);
}
.head-pc-baibg .logo-pc .logo1{
  display: none;
}
.head-pc-baibg .logo-pc .logo2{
  display: block;
}
.head-pc-r{
  font-size: clamp(14px, 2vw - 12px, 18px);
  display: inline-flex;
  align-items: center;
  gap:1.5em;
}

/*主导航*/
.navbar{
  z-index:1;
  display: inline-flex;
  align-items: center;
}
.navbar-item {
  position: relative;
}	
.navbar-item dt a {
  color: #fff;
  margin: 0 1.5em;
  zoom:1;
  line-height:80px;
  display:block;
  position: relative;
  transition: all .3s linear;
}
.navbar-item dt a::before {
  content: "";
  position: absolute;
  width: 0;
  left: 50%;
  bottom: 0;
  height: 4px;
  background: #00955e;
  transition: all .3s linear;
}
.navbar-item dt a:hover::before {
  width: 100%;
  left: 0;
}
.head-pc.head-pc-baibg .navbar-item dt a{
  color: #333;
}
.head-pc.head-pc-baibg .navbar-item dt a:hover{
  color: #00955e;
}
.navbar-submenu{
  display:none;
  position:absolute;
  top:100%;
  box-shadow: 0 0 5px rgba(0,0,0,.1);
  background: rgba(0,0,0,0.6);
  width: 100%;
}
.navbar-submenu a{
  color: #fff;
  display:block;
  zoom:1;
  font-size: 14px;
  text-align: center;
  padding: 10px;
  transition: all .3s linear;
}
.navbar-submenu a:hover{
  background-color: #44b250;
}

/*搜索*/
.search{
  position: relative;
  font-size: 24px;
  color: #fff;
  line-height: 80px;
  width: 24px;
  height: 80px;
  text-align: center;
  cursor: pointer;
}
.head-pc.head-pc-baibg .search{
  color: #333;
}
.search_box {
  position: absolute;
  top: 100%;
  right: 0;
  background-color: #fff;
  padding: 10px;
  z-index: 11;
  box-shadow: 0px 0px 5px rgba(0,0,0,.2);
  overflow: hidden;
  display: none;  /*默认隐藏 */
}
.search_box form {
  width: 300px;
}
.search_box .keybord {
  width: 85%;
  height: 40px;
  font-size: 16px;
  float: left;
  padding: 0 15px;
  background-color: #f2f2f2;
}
.search_box .submit {  
  width: 15%;
  float: right;
  height: 40px;
  background: #00955e;
  color: #fff;
  cursor: pointer;
  line-height: 40px;
  font-size: 20px;
}
.search_box.show {
  display: block;
}

/*底部*/
.foot{
  font-size: 14px;
}
.foot_top{
  padding: 0.4rem 0;
}
.foot_top dl:first-child {
  flex: 2;
}
.foot_ewm img{
  width: 80%;
}
.foot_kjdh{
  display: block;
}
.foot_kjdh dd {
  float: left;
  width: 50%;
}
/* 首页头部Banner */
.home-banner-main {
  margin-top: 0;
  height: 100vh;
}
.home-banner-main__text h2 {
  font-size: 50px;
}
.home-banner-main__text p {
  font-size: 24px;
}
.home-banner-main__text a {
  font-size: 18px;
}
.home-banner-main__btn {
  font-size: 22px;
}
/*首页新闻轮播图*/
.news-focus {
  height: 500px;
}
.news-focus__bd {
  height: 500px;
}
.news-focus__ft {
  height: 50px;
}
.news-focus__text {
  font-size: 16px;
}
/*首页新闻选项卡*/
.tab-list li {
  font-size: 28px;
}
.tab-item li:last-child{
  display: block;
}
.tab-item li a {
  font-size:18px;
  height:2.7em;
}
.tab-item .more{
  display:none;
}
/*首页区块*/
.home-main{
  padding: 100px 0;
}
.home-main-title {
  font-size:80px;
}
/*首页主营业务*/
.service-left .service-item {
  height: 510px;
}
.service-right .service-item {
  max-width: 390px;
  height: 240px;
}
.service-right .service-item:nth-child(odd) {
  padding-right:0;
  padding-left:30px;
}
.service-right .service-item:nth-child(even) {
  padding-left:30px;
}
.service-right .service-item:nth-child(-n+3) {
  margin-bottom:30px;
}
.service-item .txt-layer {
  font-size: 20px;
}
/*首页公司简介*/
.home-gsjj{
  margin: 0;
  padding: 4% 8%;
}
.home-gsjj h5{
  font-size:30px;
}
.home-gsjj p{
  font-size:18px;
}
.home-gsjj .info-li{
  background: none;
}
.home-gsjj .info-li .nr {
  font-size: 18px;
}
.home-gsjj .info-li .nr i {
  font-size: 48px;
}
/*下属企业*/
.home-links li {
  width: 32%;
  margin-bottom: 30px;
}
.home-links li:last-child {
  margin:0 auto;
}
.home-links li a {
  font-size:18px;
}
/*内页横幅*/
.inner-banner{
  font-size:20px;
  height: 500px;
  margin-top: 0;
}
.inner-maintop{
  font-size: 16px;
}
/*内页二级导航*/
.subnav-ul li{
  font-size:18px;
  padding: 0 2em;
}
/*当前位置*/
.sitepath {
  padding-left: 40px;
  background-image: url(bzls_icon_01.png);
  background-size: 23px 20px;
  background-repeat: no-repeat;
  background-position: left center;
  white-space: nowrap;
}
/*内页主体*/
.inner-main{
  padding: 50px;
}
/*正文*/
.article_box {
  font-size: 18px;
}
.article_print{
  display: block;
}
.article_title h1 {
  font-size: 32px;
}
.article_title h2 {
  font-size: 24px;
}
.article_con img {
  max-width:80%; 
}

/*列表-文字式*/
.innerlist-wzs li{
  margin-bottom: 20px
}
.innerlist-wzs li a{
  min-height: 160px;
  position: relative;
  z-index: 1;
  overflow: hidden;
}
.innerlist-wzs li a::before{
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to right, #00955d, #46b352);
  transition: opacity 0.3s ease;
  opacity: 0;
  z-index: -1;
}
.innerlist-wzs li a:hover::before{
  opacity: 1;
}
.innerlist-wzs li a:hover *{
  color: #fff;
}
.innerlist-wzs .time1 {
  font-size: 16px;
}
.innerlist-wzs .bt {
  font-size: 18px;
}
.innerlist-wzs .iconfont {
  display: block;
  flex: 0 0 10%;
  font-size: 20px;
  font-weight: bold;
  color: #00955e;
  text-align: center;
}

/*列表-图文式*/
.innerlist-tws li{
  margin-bottom: 20px
}
.innerlist-tws li a{
  min-height: 200px;
  position: relative;
  z-index: 1;
  overflow: hidden;
}
.innerlist-tws li a::before{
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to right, #00955d, #46b352);
  transition: opacity 0.3s ease;
  opacity: 0;
  z-index: -1;
}
.innerlist-tws li a:hover::before{
  opacity: 1;
}
.innerlist-tws li a:hover *{
  color: #fff;
}
.innerlist-tws .time1 {
  font-size: 16px;
}
.innerlist-tws .bt {
  font-size: 18px;
}
.innerlist-tws .pic {
  width: 284px;
  height: 160px;
}
/*列表-下属企业*/
.innerlist-xsqy li {
  width: 33.333%;
  padding: 0 30px;
  margin-bottom: 40px;
}
.innerlist-xsqy .title {
  font-size: 18px;
}
/*列表-主营业务*/
.innerlist-zyyw li{
  margin-bottom: 40px;
}
.innerlist-zyyw .yw_txt strong {
  font-size: 32px;
}
/*列表-搜索结果*/
.searchlist li{
  margin-bottom: 20px
}
.searchlist li a{
  position: relative;
  z-index: 1;
}
.searchlist li a::before{
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to right, #00955d, #46b352);
  transition: opacity 0.3s ease;
  opacity: 0;
  z-index: -1;
}
.searchlist li a:hover::before{
  opacity: 1;
}
.searchlist li a:hover *{
  color: #fff;
}
.searchlist .bt {
  font-size: 18px;
}
.searchlist .time{
  font-size: 14px;
}
.dy_title{
  margin-bottom: 2em;
}

/*返回顶部按钮*/
#returntop:hover {
  background-color: #00955e;
  border: 1px solid #00955e;
  color: #fff;
}
}

@media (min-width: 1280px) {
.foot_yqlj{
  display: block;
}
.foot_top dt{
  text-align: left;
}
}

@media (min-width: 1440px){
.head-pc{
  padding: 0 40px;
}
}
