@charset "UTF-8";
* {
  margin: 0;
  padding: 0;
}

body {
  -webkit-font-smoothing: antialiased;
  font: 14px/1.5 Microsoft YaHei, Heiti SC, tahoma, arial, Hiragino Sans GB, "宋体", sans-serif;
  color: #4e5358;
  min-width: 360px;
  margin: 0 auto;
}
body.stop {
  overflow: hidden;
}

em,
i {
  font-style: normal;
}

h1,
h2,
h3,
h4,
p {
  font-weight: 400;
  margin: 0;
}

b {
  font-weight: 400;
}

ul, li {
  list-style: none;
}

img {
  border: 0;
  vertical-align: middle;
  max-width: 100%;
}

a {
  color: #4e5358;
  text-decoration: none;
}

a:focus,
a:hover {
  color: #4e5358;
  background-color: transparent;
  text-decoration: none;
}

button {
  cursor: pointer;
}

.header {
  position: relative;
  padding: 20px;
  overflow: hidden;
  z-index: 9;
  margin: 0 auto;
  max-width: 1400px;
}
.header .header-logo img {
  width: 100%;
  max-width: 180px;
}
.header .header-menu ul {
  width: 100%;
  margin: 0;
  padding: 0;
  text-align: center;
}
.header .header-menu ul li a {
  display: block;
  padding: 6px 0;
}
.header #mMenuBtn {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
  float: right;
  width: 30px;
  height: 26px;
  border-radius: 4px;
  padding: 6px 4px;
  box-sizing: border-box;
}
.header #mMenuBtn span {
  position: relative;
  width: 22px;
  height: 2px;
  background-color: #ccc;
}

#mMenu {
  position: fixed;
  width: 100%;
  height: 100vh;
  left: 0;
  top: 0;
  background-color: rgba(255, 255, 255, 0.9);
  z-index: 3;
  padding-top: 60px;
  visibility: hidden;
  opacity: 0;
  transition: all 0.3s linear;
}
#mMenu.open {
  visibility: unset;
  opacity: 1;
}
#mMenu ul {
  position: relative;
}
#mMenu ul li {
  position: absolute;
  right: 0;
  transform: translateX(100%);
  width: 160px;
  padding: 0 30px;
  text-align: center;
  transition: all 0.3s linear;
}
#mMenu ul li.open {
  transform: translateX(50%);
  right: 50%;
}
#mMenu ul li a {
  display: block;
  line-height: 2;
}

.index-about {
  max-width: 1400px;
  margin: 0 auto;
  padding: 50px 0;
}
.index-about .title {
  text-align: center;
  margin-bottom: 20px;
}
.index-about .title p {
  font-size: 28px;
  letter-spacing: 4px;
}
.index-about .content > div {
  padding: 0 20px;
}
.index-about .content h1 {
  font-size: 24px;
}
.index-about .content h1::after {
  display: block;
  content: "";
  width: 100px;
  height: 6px;
  border-radius: 4px;
  background-color: #ef2727;
  margin: 16px 0 30px;
}
.index-about .content p {
  font-size: 16px;
  line-height: 2;
}
.index-about .culture {
  max-width: 1400px;
  margin: 30px auto;
}
.index-about .culture > div {
  padding: 0 20px;
}
.index-about .culture .culture-l {
  text-align: center;
}
.index-about .culture .culture-l h3 {
  color: #b38746;
  font-size: 22px;
}
.index-about .culture .culture-l h3::after {
  display: block;
  content: "";
  margin: 10px auto 20px;
  width: 100px;
  height: 2px;
  background-color: #b38746;
  border-radius: 2px;
}
.index-about .culture .culture-l p {
  line-height: 2;
  font-size: 16px;
}
.index-about .culture .culture-r ul li {
  margin: 10px 0;
}
.index-about .culture .culture-r ul li h4 {
  font-size: 22px;
  color: #b38746;
}
.index-about .culture .culture-r ul li p {
  font-size: 16px;
  line-height: 2;
}

.index-product {
  padding: 50px 0 80px;
  background-color: #528544;
}
.index-product .product {
  max-width: 1400px;
  margin: 0 auto;
}
.index-product .product .title {
  text-align: center;
  margin-bottom: 20px;
  color: #fff;
}
.index-product .product .title p {
  font-size: 28px;
  letter-spacing: 4px;
}
.index-product .product .content .product-box {
  width: 90%;
  margin: 10px auto;
  background-color: #fff;
  border: 2px solid #fff;
  border-radius: 8px;
  overflow: hidden;
}
.index-product .product .content .product-box img {
  display: block;
}
.index-product .product .content .product-box a {
  display: block;
  text-align: center;
}
.index-product .product .content .product-box a h1 {
  font-size: 18px;
  line-height: 2;
}

.index-news {
  max-width: 1400px;
  margin: 0 auto;
  padding: 50px 0;
}
.index-news .title {
  text-align: center;
  margin-bottom: 20px;
}
.index-news .title p {
  font-size: 28px;
  letter-spacing: 4px;
}
.index-news .content > div {
  padding: 0 20px;
}
.index-news .content .news-box {
  margin: 10px 0;
  border: 2px solid #b38746;
  padding: 10px 10px 30px;
  border-radius: 8px;
  overflow: hidden;
}
.index-news .content a.news-img {
  position: relative;
  display: block;
  width: 100%;
  padding-bottom: 65%;
  overflow: hidden;
}
.index-news .content a.news-img img {
  position: absolute;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: all 0.3s linear;
}
.index-news .content a.news-img:hover img {
  transform: scale(1.1);
}
.index-news .content a.news-title {
  display: block;
  padding: 0 20px;
}
.index-news .content a.news-title h1 {
  font-size: 20px;
  line-height: 2;
  margin: 20px 0 10px;
}
.index-news .content p {
  line-height: 1.6;
  padding: 0 20px;
  min-height: 70px;
}

.footer {
  background-color: #b38746;
  padding: 60px 0 30px;
  color: #ffffff;
}
.footer .footer-content {
  max-width: 1400px;
  margin: 0 auto;
}
.footer .footer-content img {
  display: block;
  max-width: 260px;
  margin: 20px auto;
}
.footer .footer-content ul {
  padding: 0 20px;
  text-align: center;
}
.footer .footer-content ul li {
  line-height: 2;
}
.footer .footer-content ul li h1 {
  font-size: 18px;
  font-family: simsun;
  margin-bottom: 20px;
}
.footer .copyright {
  margin-top: 30px;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  padding: 0 20px;
}
.footer .copyright a {
  margin: 0 30px;
  color: #ffffff;
}

.cp {
  padding: 50px 20px;
}
.cp .content {
  max-width: 1400px;
  margin: 0 auto;
}
.cp .content > h3 {
  font-size: 24px;
}
.cp .content > h3::after {
  display: block;
  content: "";
  margin: 10px 0 20px;
  width: 100px;
  border-bottom: 2px solid #b38746;
}
.cp .content > p {
  font-size: 18px;
  line-height: 2;
  margin-bottom: 20px;
}
.cp .content .cp-box {
  text-align: center;
}
.cp .content .cp-box p {
  font-size: 16px;
  margin: 20px 0;
}
.cp.sjpd, .cp.pu {
  background-color: #f8f8f8;
}
.cp.epdm img {
  display: block;
  margin: 20px 0;
}
.cp.epdm p {
  font-size: 16px;
  margin: 20px 0;
  padding: 0 20px;
}
.cp.pu img {
  display: block;
  margin: 20px 0;
}
.cp.pu .row p {
  font-size: 16px;
  margin: 20px 0;
  padding: 0 20px;
}

.news-category {
  background-color: #f7f7f7;
  padding: 60px 0;
}
.news-category .title {
  text-align: center;
  margin-bottom: 20px;
}
.news-category .title p {
  font-size: 28px;
  letter-spacing: 4px;
}
.news-category .news-list-wrap {
  max-width: 1400px;
  margin: 0 auto;
}
.news-category .news-list-wrap ul {
  padding: 0 10px;
}
.news-category .news-list-wrap ul li {
  background-color: #fff;
  margin-bottom: 20px;
  padding: 20px;
  border-radius: 8px;
}
.news-category .news-list-wrap ul li .newsTime {
  text-align: center;
  font-size: 18px;
  font-weight: 700;
  color: #6cbe03;
}
.news-category .news-list-wrap ul li .newsImg {
  position: relative;
  display: block;
  padding-bottom: 60%;
  overflow: hidden;
  border-radius: 8px;
}
.news-category .news-list-wrap ul li .newsImg img {
  position: absolute;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.news-category .news-list-wrap ul li .newsText {
  padding: 10px;
}
.news-category .news-list-wrap ul li .newsText h1 {
  font-size: 18px;
  line-height: 2;
}

.cate_list_page {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  line-height: 30px;
  margin: 30px 0;
}
.cate_list_page span,
.cate_list_page a {
  background-color: #f0f0f0;
  padding: 0 12px;
  margin: 0 6px 10px;
  color: #000;
}
.cate_list_page span.this_page {
  background-color: #6cbe03;
  color: #fff;
  cursor: default;
  box-shadow: 2px 2px 4px rgba(0, 0, 0, 0.4);
}

.postWrap {
  padding: 60px 0;
  background-color: #f8f8f8;
}
.postWrap .post {
  background-color: #fff;
  max-width: 1400px;
  margin: 0 auto;
  padding: 50px 20px;
}
.postWrap .post .post-header {
  padding-bottom: 30px;
}
.postWrap .post .post-header h1 {
  text-align: center;
  font-size: 26px;
  line-height: 2;
}
.postWrap .post .post-header .post-header-info {
  display: flex;
  justify-content: center;
  align-items: center;
}
.postWrap .post .post-header .post-header-info span {
  margin: 0 20px;
}
.postWrap .post .post-body {
  padding: 30px 0;
  border-top: 1px solid #f8f8f8;
  border-bottom: 1px solid #f8f8f8;
  margin-bottom: 30px;
}
.postWrap .post .post-body p {
  text-indent: 2em;
  font-size: 16px;
  line-height: 2;
}
.postWrap .post .post-body img {
  display: block;
  margin: 10px auto;
  height: auto !important;
}
.postWrap .post .post-footer p {
  display: flex;
  align-items: center;
  line-height: 2;
}

.contact-us-information {
  padding: 50px 0;
}
.contact-us-information .content {
  max-width: 1400px;
  margin: 0 auto;
}
.contact-us-information .content h1 {
  font-family: "simsun";
  text-align: center;
  font-size: 26px;
}
.contact-us-information .content .contact-us-line {
  position: relative;
  width: 200px;
  height: 2px;
  background-color: #ff3636;
  margin: 20px auto;
}
.contact-us-information .content .contact-us-line::before {
  position: absolute;
  content: "";
  width: 140px;
  height: 20px;
  top: -9px;
  left: 30px;
  border-top: 1px solid #17a947;
  border-bottom: 1px solid #c31616;
}
.contact-us-information .content p {
  font-size: 16px;
  text-align: center;
  line-height: 50px;
  color: #666;
}
.contact-us-information .content ul {
  margin: 30px auto 0;
  padding: 0 20px;
}
.contact-us-information .content ul li {
  text-align: center;
  font-size: 16px;
  line-height: 40px;
  color: #666;
}
.contact-us-information .content ul li span {
  color: #333;
}

@media screen and (max-width: 768px) {
  .header {
    padding: 10px;
  }
  .index-about .title p {
    font-size: 22px;
  }
  .index-about .content > div {
    padding: 0 10px;
  }
  .index-about .content h1 {
    font-size: 18px;
    text-align: center;
    margin-top: 20px;
  }
  .index-about .content h1::after {
    margin: 10px auto 20px;
  }
  .index-about .content p {
    font-size: 14px;
    line-height: 1.5;
  }
}/*# sourceMappingURL=style.css.map */