@charset "utf-8";

:root {
  --brand: #7eb742;
  --brand-dark: #5f9c2f;
  --ink: #172417;
  --text: #4d5c4f;
  --muted: #7a877c;
  --line: #e4ecdc;
  --soft: #f5faf0;
  --footer: #1f3425;
  --shadow: 0 12px 32px rgba(45, 79, 26, .10);
}

* { box-sizing: border-box; }
html, body { min-width: 0; }
body {
  background: #f7faf4;
  color: var(--text);
  font-size: 14px;
  line-height: 1.8;
  font-family: "Microsoft Yahei", Arial, sans-serif;
}
a { color: #3f503f; }
a:hover { color: var(--brand-dark); }
.main,
.fyMain,
.main_content {
  width: 94%;
  max-width: 1180px;
  min-width: 0;
}
.clear { clear: both; }

/* header */
.header {
  min-width: 0;
  height: auto;
  padding: 12px 0;
  background: #fff !important;
  box-shadow: 0 2px 14px rgba(0,0,0,.04);
}
.header .main {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
.logo img {
  display: block;
  max-height: 58px !important;
  width: auto;
}
.menu {
  height: 62px;
  min-width: 0;
  background: rgba(42, 59, 48, .78);
  backdrop-filter: blur(6px);
}
.menumain { position: relative; }
.menu .main { display: flex; justify-content: center; }
#menu { display: flex; align-items: center; justify-content: center; gap: 8px; }
#menu li { height: 62px; }
#menu li a {
  width: auto;
  min-width: 96px;
  padding: 0 18px;
  line-height: 59px;
  font-size: 15px;
  font-weight: 600;
  color: #fff;
  border-bottom: 3px solid transparent;
}
#menu a:hover,
#menu a.cur {
  color: #fff;
  border-bottom-color: var(--brand);
  background: rgba(126,183,66,.18);
}

/* home banner and notice */
.banner { margin-top: -62px; }
.banner.vbanner { margin-top: 0 !important; }
.slideBox,
.slideBox .bd img { height: 520px; }
.slideBox .bd li { background-size: cover !important; }
.notice {
  float: none;
  height: auto;
  padding: 18px 0;
  background: linear-gradient(90deg, var(--brand), #93ca57);
}
.notice .main {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.noticecon {
  float: none;
  flex: 1;
  width: auto;
  padding-left: 0;
  color: #fff;
}
.noticecon b { color: #fff; }
.noticecon marquee { width: calc(100% - 86px); color: #fff; }
.search { float: none; width: 320px; height: 36px; line-height: 36px; }
.text {
  width: 260px;
  height: 36px;
  line-height: 36px;
  border: 0;
  border-radius: 4px 0 0 4px;
  padding: 0 12px;
}
.button {
  width: 42px;
  height: 36px;
  margin-left: 0;
  background: #2f3d32 url(../images/button.gif) center center no-repeat;
  border-radius: 0 4px 4px 0;
}

/* section titles */
.ititle {
  float: none;
  width: 100%;
  height: auto;
  line-height: 1.35;
  margin: 0 0 36px;
  background: none;
  color: var(--ink);
  font-size: 30px;
  text-align: center;
}
.ititle:before,
.ititle:after {
  content: "";
  display: inline-block;
  width: 70px;
  height: 1px;
  margin: 0 22px;
  vertical-align: middle;
  background: #b9c9ad;
}

/* product center */
.case {
  float: none;
  clear: both;
  height: auto;
  padding: 70px 0 72px;
  background: #fff;
}
.caseul {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
  float: none;
  width: 100%;
  height: auto;
  padding-top: 0;
  margin: 0 0 34px;
}
.caseul li { float: none; width: auto; padding: 0; background: none; }
.caseul a {
  display: block;
  padding: 12px 20px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--soft);
  color: var(--brand-dark);
}
.caseul a font { display: none; }
.profra {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  width: 100%;
  margin: 0 auto;
}
.profra .limg,
.profra .limg a.img {
  float: none;
  display: block;
  width: 100%;
  height: 220px;
  margin: 0;
  border-radius: 10px;
}
.profra .limg {
  overflow: hidden;
  background: #fff;
  box-shadow: var(--shadow);
}
.profra .limg a.img { position: relative; overflow: hidden; }
.profra .limg a span,
.profra .limg a b {
  display: none !important;
  top: auto !important;
  left: auto !important;
  height: 0 !important;
  padding: 0 !important;
}
.profra .limg img {
  display: block;
  width: 100%;
  height: 100%;
  padding: 18px;
  object-fit: contain;
  background: #fff;
}
.profra .limg a.img:hover img { transform: scale(1.04); }
.profra .limg a.img:before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  background: rgba(36, 58, 38, .34);
  opacity: 0;
  transition: opacity .25s ease;
}
.profra .limg a.img:hover:before { opacity: 1; }
.profra .limg a.img:after {
  content: "查看详情";
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 3;
  transform: translate(-50%, -50%);
  padding: 6px 18px;
  border: 1px solid rgba(255,255,255,.78);
  border-radius: 999px;
  color: #fff;
  background: rgba(126,183,66,.78);
  opacity: 0;
  transition: opacity .25s ease;
}
.profra .limg a.img:hover:after { opacity: 1; }
.profra .limg a label {
  display: block;
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 4;
  width: 100%;
  height: 42px;
  line-height: 26px;
  padding: 8px 12px;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  text-align: center;
  color: #fff;
  background: rgba(31,45,31,.72);
}

/* home news */
.newslist {
  float: none;
  clear: both;
  height: auto;
  min-height: 420px;
  padding: 72px 0 78px;
  margin: 0;
  background: #f4faef;
}
.newslist .main {
  display: grid;
  grid-template-columns: 320px minmax(0, 1fr);
  gap: 40px;
  align-items: center;
  min-height: 300px;
}
.newslistimg {
  float: none;
  width: 320px;
  height: 300px;
  margin: 0;
  padding: 0;
  background: none;
}
.newslistimg img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 12px;
  box-shadow: var(--shadow);
}
.newslistr {
  float: none;
  width: 100%;
  min-width: 0;
  margin: 0;
  position: static;
}
.newslistr_t {
  float: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  margin-bottom: 22px;
}
.newslistr_t .fl {
  float: none;
  padding-left: 0;
  color: var(--ink);
  font-size: 28px;
}
.newslistrmore {
  float: none;
  width: auto;
  min-width: 92px;
  height: 28px;
  padding: 0 16px;
  margin: 0;
  border: 2px solid var(--brand);
  border-radius: 999px;
  text-align: center;
}
.newslistrmore a {
  position: static;
  display: block;
  height: 24px;
  line-height: 24px;
  background: transparent;
  color: var(--brand-dark);
}
.promain,
.promain .main,
.ipro,
.ipro ul,
.ipro li {
  float: none;
  width: 100% !important;
}
.promain {
  height: auto;
  min-height: 214px;
  overflow: hidden;
}
.ipro ul { position: static; }
.ipro li {
  height: auto;
  min-height: 210px;
  background: transparent;
}
.iproli {
  float: none;
  display: flex;
  align-items: flex-start;
  gap: 16px;
  width: 100%;
  height: auto;
  min-height: 92px;
  padding: 15px 16px;
  margin-bottom: 12px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: #fff;
  box-shadow: 0 8px 22px rgba(0,0,0,.04);
}
.iprolinum {
  float: none;
  width: 52px;
  height: auto;
  padding-top: 4px;
  color: #b6c3b4;
  font-size: 26px;
}
.iprotxt {
  float: none;
  width: auto;
  height: auto;
  min-width: 0;
  line-height: 1.8;
}
.iprotxt a {
  width: 100%;
  margin-bottom: 4px;
  color: var(--ink);
  font: 600 17px/1.6 "Microsoft Yahei";
  white-space: normal;
}
.iprotxt p { color: var(--muted); }
.slidera {
  float: none;
  width: 100%;
  padding-top: 12px;
  text-align: right;
}
.slidera span {
  width: auto;
  min-width: 82px;
  padding: 0 12px;
  background: var(--brand);
}

/* industry and about */
.team {
  float: none;
  clear: both;
  width: 100%;
  padding: 72px 0 86px;
  background: #fff;
}
.teamul {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  float: none;
  width: 100%;
  height: auto;
  padding-top: 36px;
}
.teamul li {
  float: none;
  width: 100%;
  height: 190px;
  margin: 0;
  overflow: hidden;
  border-radius: 8px;
  background: #fff;
}
.teamul li img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.teamul li a p {
  display: block;
  width: 100%;
  height: 38px;
  line-height: 38px;
  color: #fff;
  background: rgba(31,45,31,.72);
}
.aboutarea {
  float: none;
  clear: both;
  width: 100%;
  height: auto;
  min-height: 300px;
  padding: 64px 0 72px;
  margin-top: 0;
  background: linear-gradient(135deg, #72ad38, #9dcd65);
}
.aboutarea .main {
  display: flex;
  gap: 42px;
  align-items: stretch;
}
.ibook {
  float: none;
  width: 340px;
  height: auto;
  min-height: 260px;
  margin: 0;
  border-radius: 12px;
  box-shadow: var(--shadow);
}
.about {
  float: none;
  flex: 1;
  width: auto;
  padding-top: 0;
  color: #fff;
}
.about_t,
.abouttxt { float: none; width: 100%; }
.about_t h2,
.about_t p,
.abouttxt,
.abouttxt p { color: #fff; }
.aboutmore { border-color: #fff; }
.aboutmore a { position: static; background: transparent; color: #fff; }

/* inner pages */
.vbanner {
  height: 360px !important;
  background-size: cover !important;
}
.fyMain {
  display: flex;
  align-items: flex-start;
  gap: 30px;
  width: 94%;
  max-width: 1180px;
  margin: 32px auto 0 !important;
  padding: 34px 0 46px;
  overflow: visible !important;
  background: #fff;
  position: relative;
}
.fyLeft {
  float: none;
  flex: 0 0 270px;
  width: 270px;
  overflow: hidden;
  border-radius: 0;
  background: #fff;
}
.fyLeft_t {
  width: 100%;
  height: auto;
  padding: 24px 22px;
  line-height: 1.5;
  text-align: left;
  color: #fff;
  background: var(--brand);
  font-size: 22px;
  font-weight: 700;
}
.l_pro {
  width: 100%;
  padding: 0 0 18px;
  background: #fff;
  border: 1px solid var(--line);
  border-top: 0;
}
.l_pro_t {
  width: 100%;
  height: auto;
  margin: 0 0 8px;
  padding: 13px 22px;
  line-height: 1.5;
  color: #263428;
  background: #f5faf0;
  border-bottom: 1px solid var(--line);
  font-size: 16px;
}
.l_procon { width: 100%; }
.proOne { background: none; }
.proOne a {
  display: block;
  width: 100%;
  padding: 11px 22px;
  line-height: 1.6;
  color: #536057;
  border-bottom: 1px solid var(--line);
  background: none;
}
.proOne a:hover,
.proOne a.cur {
  color: var(--brand-dark);
  background: var(--soft);
}
.sidebar-recommend {
  margin-top: 18px;
  background: #fff;
  border: 1px solid var(--line);
}
.sidebar-recommend-title {
  height: 52px;
  line-height: 52px;
  padding: 0 22px;
  color: #fff;
  background: var(--brand);
  font-size: 20px;
  font-weight: 700;
}
.sidebar-recommend-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  padding: 14px;
}
.sidebar-recommend-list a {
  display: block;
  color: #334033;
  line-height: 1.6;
}
.sidebar-recommend-list img {
  display: block;
  width: 100%;
  height: 88px;
  margin-bottom: 6px;
  object-fit: contain;
  background: #f8faf6;
}
.sidebar-recommend-list span {
  display: block;
  font-size: 13px;
  text-align: center;
}
.fyRight {
  float: none;
  flex: 1;
  width: auto;
  min-width: 0;
  min-height: 520px;
  padding: 0 0 30px 34px;
  border: 0;
  border-left: 1px solid var(--line);
  border-radius: 0;
  background: #fff;
  box-shadow: none;
}
.title {
  height: auto;
  min-height: 36px;
  margin-bottom: 24px;
  line-height: 1.8;
  color: var(--brand-dark);
  border-bottom: 1px solid var(--line);
}
.title a { color: var(--brand-dark); }
.news_list { float: none; width: 100%; }
.news_list li { float: none; }
.enterprise-article-list .article-card {
  display: flex;
  align-items: flex-start;
  gap: 24px;
  width: 100%;
  padding: 24px 0;
  margin: 0;
  border: 0;
  border-bottom: 1px solid #e8e8e8;
  border-radius: 0;
  background: #fff;
  box-shadow: none;
}
.enterprise-article-list .article-thumb {
  display: block;
  flex: 0 0 220px;
  width: 220px;
  height: 145px;
  overflow: hidden;
}
.enterprise-article-list .article-thumb img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.enterprise-article-list .article-info { flex: 1; min-width: 0; }
.enterprise-article-list .article-title {
  display: block;
  width: auto;
  height: auto;
  margin-bottom: 6px;
  color: #273327;
  font-size: 18px;
  font-weight: 600;
  line-height: 1.6;
  white-space: normal;
}
.enterprise-article-list .newslisttime {
  display: flex;
  gap: 22px;
  float: none;
  margin: 0 0 8px;
  color: #8a958b;
  font-size: 13px;
}
.enterprise-article-list .newstxt {
  float: none;
  color: #647066;
  font-size: 14px;
  line-height: 1.9;
}
.pro_list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  width: 100%;
}
.pro_list li {
  float: none;
  width: 100%;
  height: auto;
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}
.pro_list li img {
  display: block;
  width: 100%;
  height: 190px;
  padding: 18px;
  object-fit: contain;
  background: #fafcf8;
}
.pro_list li p {
  height: auto;
  min-height: 42px;
  padding: 0 10px 10px;
  line-height: 1.6;
  color: #263428;
  font-size: 15px;
}
.padding25 {
  min-height: 0;
  padding: 0;
  color: #536057;
  font-size: 15px;
  line-height: 2;
}
.padding25 img,
.newsview img { max-width: 100%; height: auto; }
.seo-enhance-panel {
  margin: 0 0 22px;
  padding: 16px 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--soft);
  color: #536057;
}
.seo-current-url { margin-bottom: 10px; word-break: break-all; }
.seo-current-url a { color: var(--brand-dark); }
.seo-keywords { display: flex; align-items: center; flex-wrap: wrap; gap: 8px; }
.keyword-search-form { display: inline-block; }
.keyword-search-form button {
  cursor: pointer;
  border: 1px solid #cfe2bf;
  border-radius: 999px;
  padding: 5px 13px;
  color: var(--brand-dark);
  background: #fff;
}
.keyword-search-form button:hover { color: #fff; background: var(--brand); }
.vtitle {
  float: none;
  width: 100%;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--line);
  color: var(--brand-dark);
  font-size: 26px;
  font-weight: 700;
  line-height: 1.5;
  text-align: left;
}
.title_s {
  margin: 10px 0 22px;
  color: #8a958b;
  font-size: 13px;
  line-height: 1.8;
  text-align: left;
}
.newsview {
  float: none;
  display: block;
  width: 100%;
  margin: 0;
  padding: 8px 0 28px;
  border-bottom: 1px solid var(--line);
  color: #3f4b42;
  font-size: 16px;
  line-height: 2;
}
.related-section {
  margin-top: 30px;
  padding-top: 20px;
  border-top: 1px solid var(--line);
}
.related-section h3 {
  margin-bottom: 14px;
  color: var(--ink);
  font-size: 20px;
}
.related-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}
.related-grid a {
  display: block;
  padding: 13px 15px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  color: #425047;
}
.viewpage { float: none; width: 100%; }
.main_r_nav {
  float: none;
  width: 100%;
  height: auto;
  padding: 16px;
  margin: 0;
  border-radius: 8px;
  background: var(--soft);
}
.main_r_nav a {
  float: none;
  display: block;
  width: 100%;
  color: #536057;
  font-size: 14px;
  line-height: 2;
}
.returnlist {
  float: none;
  display: inline-block;
  width: auto;
  height: auto;
  margin-top: 14px;
  padding: 8px 18px;
  border-radius: 999px;
  background: var(--brand);
}
.returnlist a { color: #fff; }
.pglist a,
.pglist .hover { border-radius: 999px; background: var(--brand); }
.pglist a:hover { background: #2f3d32; }

/* footer */
.foot {
  min-width: 0;
  padding: 28px 0 32px;
  overflow: visible;
  color: #dbe8d0;
  background: var(--footer);
}
.foot a { color: #eef7e8; }
.foot a:hover { color: #9bd463; }
.footer-enterprise {
  display: grid;
  grid-template-columns: minmax(280px, 1.25fr) minmax(360px, 1fr) minmax(260px, .8fr);
  gap: 34px;
  align-items: start;
  text-align: left;
}
.footer-brand img {
  display: block;
  max-height: 52px;
  width: auto;
  max-width: 180px;
  padding: 4px;
  margin-bottom: 10px;
  border-radius: 6px;
  background: #fff;
}
.footer-brand p {
  max-width: 460px;
  margin: 0;
  color: #c6d8bd;
  line-height: 1.9;
}
.footer-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px 18px;
  padding-top: 26px;
}
.footer-nav a { color: #eef7e8; font-weight: 600; }
.footer-copy {
  min-width: 0;
  padding-top: 20px;
  color: #eef7e8;
  line-height: 2;
  text-align: left;
  white-space: normal;
}
.footer-copy p { margin: 0; }
.footer-copy a { color: #eef7e8; }

@media (max-width: 900px) {
  body { font-size: 13px; }
  .header .main { justify-content: center; }
  .menu { height: auto; }
  .banner { margin-top: 0; }
  .menu .main,
  #menu { display: block; width: 100%; }
  #menu { white-space: nowrap; overflow-x: auto; text-align: center; }
  #menu li { float: none; display: inline-block; height: 48px; }
  #menu li a { min-width: auto; padding: 0 14px; line-height: 45px; }
  .slideBox,
  .slideBox .bd img { height: 260px; }
  .notice .main,
  .newslist .main,
  .aboutarea .main,
  .fyMain { display: block; }
  .noticecon,
  .search,
  .text { width: 100%; }
  .search { margin-top: 10px; }
  .button { float: right; margin-top: -36px; }
  .profra,
  .teamul,
  .pro_list,
  .related-grid { grid-template-columns: 1fr; }
  .case,
  .newslist,
  .team { padding: 42px 0; }
  .newslistimg { display: none; }
  .newslistr,
  .ibook,
  .about,
  .fyLeft,
  .fyRight { width: 100%; flex: none; }
  .about { margin-top: 24px; }
  .vbanner { height: 230px !important; }
  .fyMain { margin-top: 0 !important; padding: 22px 0 34px; }
  .fyLeft { margin-bottom: 20px; }
  .fyRight { padding: 20px 0 0; border-left: 0; }
  .enterprise-article-list .article-card { display: block; }
  .enterprise-article-list .article-thumb { width: 100%; height: 190px; margin-bottom: 12px; }
  .enterprise-article-list .newslisttime { display: block; }
  .sidebar-recommend-list { grid-template-columns: 1fr 1fr; }
  .footer-enterprise { display: block; text-align: center; }
  .footer-brand img { margin-left: auto; margin-right: auto; }
  .footer-brand p { max-width: none; }
  .footer-nav { margin: 18px 0; padding-top: 0; }
  .footer-copy { padding-top: 0; text-align: center; }
}

/* 20260428 ui3 refinement */
.newslist .main {
  align-items: stretch;
}
.newslistr {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.newslistr_t {
  min-height: 40px;
  gap: 16px;
}
.newslistrmore {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  min-width: 98px;
  height: 32px;
  padding: 0 18px;
  border: 2px solid var(--brand);
  border-radius: 999px;
  background: #fff;
  transition: background .2s ease, border-color .2s ease;
}
.newslistrmore a {
  display: block;
  height: auto;
  line-height: 28px;
  color: var(--brand-dark);
  font-size: 14px;
  font-weight: 600;
}
.newslistrmore:hover {
  border-color: var(--brand-dark);
  background: var(--brand);
}
.newslistrmore:hover a { color: #fff; }
.home-news-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
  width: 100%;
}
.home-news-card {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  min-height: 88px;
  padding: 15px 18px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: #fff;
  color: var(--text);
  box-shadow: 0 8px 22px rgba(45,79,26,.05);
  transition: border-color .2s ease, box-shadow .2s ease, transform .2s ease;
}
.home-news-card:hover {
  transform: translateY(-2px);
  border-color: #cfe2bf;
  box-shadow: 0 12px 26px rgba(45,79,26,.10);
}
.home-news-num {
  flex: 0 0 50px;
  padding-top: 2px;
  color: #b6c3b4;
  font-size: 26px;
  font-weight: 700;
  line-height: 1.2;
}
.home-news-body {
  display: block;
  min-width: 0;
  flex: 1;
}
.home-news-body strong {
  display: block;
  overflow: hidden;
  color: var(--ink);
  font-size: 17px;
  font-weight: 700;
  line-height: 1.55;
  white-space: nowrap;
  text-overflow: ellipsis;
}
.home-news-body em {
  display: block;
  margin: 2px 0 4px;
  color: #899589;
  font-size: 13px;
  font-style: normal;
  line-height: 1.4;
}
.home-news-body small {
  display: -webkit-box;
  overflow: hidden;
  color: #657266;
  font-size: 14px;
  line-height: 1.7;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}
.about {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.abouttxt {
  max-width: 720px;
}
.aboutmore {
  float: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  align-self: flex-start;
  width: auto;
  min-width: 98px;
  height: 32px;
  margin: 20px 0 0;
  padding: 0 18px;
  border: 2px solid #fff;
  border-radius: 999px;
  background: transparent;
}
.aboutmore a {
  display: block;
  height: auto;
  line-height: 28px;
  color: #fff;
  font-size: 14px;
  font-weight: 600;
}
.aboutmore:hover {
  background: #fff;
}
.aboutmore:hover a { color: var(--brand-dark); }
.fyLeft_t,
.sidebar-recommend-title {
  background: linear-gradient(90deg, var(--brand-dark), var(--brand));
  color: #fff;
}
.l_pro,
.sidebar-recommend {
  border-color: #d8e8ca;
  box-shadow: 0 8px 24px rgba(45,79,26,.06);
}
.l_pro_t {
  color: var(--brand-dark);
  background: var(--soft);
  border-bottom-color: #d8e8ca;
  font-weight: 700;
}
.proOne a:hover,
.proOne a.cur {
  color: var(--brand-dark);
  background: #eef7e8;
}
.sidebar-recommend-list img {
  object-fit: contain;
  background: #f8fbf4;
}
.sidebar-article-list {
  padding: 8px 16px 12px;
}
.sidebar-article-list a {
  position: relative;
  display: block;
  overflow: hidden;
  padding: 10px 0 10px 16px;
  border-bottom: 1px solid var(--line);
  color: #435044;
  font-size: 14px;
  line-height: 1.55;
  white-space: nowrap;
  text-overflow: ellipsis;
}
.sidebar-article-list a:last-child { border-bottom: 0; }
.sidebar-article-list a:before {
  content: "";
  position: absolute;
  left: 0;
  top: 18px;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--brand);
}
.sidebar-article-list a:hover { color: var(--brand-dark); }
.footer-enterprise {
  align-items: center;
}
.footer-brand,
.footer-nav,
.footer-copy {
  align-self: center;
}
.footer-nav {
  padding-top: 0;
}
.footer-copy {
  justify-self: center;
  min-width: 260px;
  padding-top: 0;
  text-align: center;
  line-height: 1.9;
}
.footer-copy p {
  width: 100%;
  margin: 0;
  text-align: center;
}
@media (max-width: 900px) {
  .newslistr_t { align-items: flex-start; }
  .home-news-card { padding: 14px; }
  .home-news-num { flex-basis: 42px; font-size: 22px; }
  .home-news-body strong { white-space: normal; }
  .aboutmore { align-self: flex-start; }
  .footer-copy { min-width: 0; }
}
