@charset "UTF-8";
.shadowStyle {
  box-shadow: rgba(17, 32, 23, 0.1) 0px 4px 8px;
}

.ellipsis {
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap;
  display: block;
}

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

.wrapper {
  width: 100%;
  margin-right: auto;
  margin-left: auto;
  max-width: 1200px;
}

header {
  width: 100%;
  height: 70px;
  background-color: #112017;
}

header .wrapper {
  height: inherit;
  align-items: center;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

header .nav {
  height: inherit;
}

header .nav ul {
  display: flex;
  align-items: center;
  height: 100%;
  justify-content: space-evenly;
}

header .nav ul li {
  position: relative;
  height: inherit;
  display: flex;
  align-items: center;
}

header .nav ul li .tag {
  position: absolute;
  right: 15px;
  background: url(../images/hot.png) no-repeat;
  width: 28px;
  height: 14px;
  top: 15px;
}

header .nav ul li.current, header .nav ul li:hover {
  font-weight: bold;
}

header .nav ul li.current a, header .nav ul li:hover a {
  color: #49b465;
}

header .nav ul li.current a::before, header .nav ul li:hover a::before {
  left: 0;
  width: 100%;
}

header .nav ul li a {
  margin: 0 40px;
  color: #fff;
  font-size: 16px;
  position: relative;
  display: block;
  line-height: inherit;
}

header .nav ul li a::before {
  content: "";
  position: absolute;
  bottom: 4px;
  right: 0;
  width: 0%;
  height: 2px;
  background: #49b465;
  transition: all 0.32s ease-out;
}

.btn {
  color: #112017;
  overflow: hidden;
  position: relative;
  padding: 8px 25px;
  display: inline-block;
  background-color: #49b465;
  font-size: 16px;
  color: #fff;
  box-sizing: border-box;
  box-shadow: #d1dee8 0px 4px 4px;
  transition: all 0.3s ease-in-out;
}

.btn.secondry {
  background-color: #e72c1c;
}

.btn:hover {
  margin-top: -3px;
}

.banner {
  overflow: hidden;
  position: relative;
  height: 650px;
}

.banner .swiper-slide {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.banner .swiper-slide .slide-content {
  text-align: center;
  padding-right: 20%;
  box-sizing: border-box;
}

.banner .swiper-slide .slide-content p {
  line-height: 40px;
  font-size: 22px;
  color: #112017;
}

.banner .swiper-slide .slide-content p.solgn {
  font-size: 54px;
  margin-bottom: 15px;
}

.banner .swiper-slide .slide-content .btn {
  margin-top: 20px;
}

.banner .swiper-container {
  height: 100%;
}

.banner .swiper-container .swiper-wrapper {
  height: inherit;
}

.banner .swiper-pagination {
  bottom: 95px;
  z-index: 91;
  width: 100%;
  height: 20px;
}

.banner .swiper-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  opacity: 1;
  background-color: #fff;
  margin: 0 5px;
  border-radius: 6px;
  outline: none;
}

.banner .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background-color: #49b465;
  width: 24px;
  transition: 0.4s ease-in;
}

.banner .banner-mask {
  height: 100px;
  width: 100%;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(8px);
  z-index: 99;
}

.banner .banner-mask .wrapper {
  display: flex;
  padding-top: 20px;
  justify-content: space-between;
  height: inherit;
  box-sizing: border-box;
}

.banner .banner-mask .wrapper .item {
  text-align: left;
}

.banner .banner-mask .wrapper .item .title {
  font-size: 16px;
  display: flex;
  align-items: center;
}

.banner .banner-mask .wrapper .item .title span {
  margin-right: 8px;
}

.banner .banner-mask .wrapper .item .tel {
  font-family: Helvetica Neue;
  font-size: 30px;
  line-height: 30px;
  padding-left: 28px;
  font-weight: bold;
  letter-spacing: 2px;
}

.banner .banner-mask .wrapper .item .swiper-notice {
  height: 30px;
  padding-left: 28px;
  box-sizing: border-box;
  display: block;
}

.banner .banner-mask .wrapper .item .swiper-notice .swiper-slide a {
  color: rgba(17, 32, 23, 0.5);
}

.section-title {
  font-size: 28px;
  color: #112017;
  text-align: center;
  display: flex;
  align-items: center;
  flex-direction: column;
  line-height: 30px;
  padding-top: 80px;
  padding-bottom: 40px;
}

.section-title smalll {
  color: #49b465;
  font-size: 14px;
  text-transform: uppercase;
}

.section-product .tab {
  display: flex;
  justify-content: space-around;
  margin-top: 30px;
}

.section-product .tab li {
  text-align: center;
  position: relative;
  padding-bottom: 30px;
  padding-left: 50px;
  padding-right: 50px;
  overflow: hidden;
}

.section-product .tab li .icon {
  width: 92px;
  height: 92px;
  background-repeat: no-repeat;
  background-position: 0 0;
  background-size: 100%;
  position: relative;
}

.section-product .tab li:hover .icon, .section-product .tab li.active .icon {
  animation: run 0.5s steps(20, end) forwards;
  -webkit-animation: run 0.5s steps(20, end) forwards;
}

.section-product .tab li:hover::after, .section-product .tab li.active::after {
  bottom: 0;
}

.section-product .tab li:hover::before, .section-product .tab li.active::before {
  bottom: 5px;
}

.section-product .tab li span {
  font-size: 20px;
}

.section-product .tab li::after {
  content: "";
  position: absolute;
  bottom: -5px;
  right: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background: #49b465;
  transition: all 0.32s ease-out;
}

.section-product .tab li::before {
  content: "";
  position: absolute;
  bottom: -8px;
  left: 50%;
  border-left: 6px solid transparent;
  border-right: 6px solid transparent;
  border-bottom: 6px solid #49b465;
  transform: translateX(-50%);
  height: 5px;
  transition: all 0.32s ease-out;
}

.section-product .content {
  background-color: #f9fbfa;
  padding: 30px;
  box-sizing: border-box;
}

.section-product .content .item {
  display: grid;
  grid-template-columns: 425px calc(100% - 425px);
  opacity: 0;
  visibility: hidden;
  height: 0;
}

.section-product .content .item.current {
  opacity: 1;
  visibility: visible;
  height: auto;
}

.section-product .content .item .decs {
  box-sizing: border-box;
  border-right: #d3d6d4 1px solid;
  padding-right: 85px;
  line-height: 26px;
  display: flex;
  align-items: center;
}

.section-product .content .item .commodity {
  padding: 0 85px;
  box-sizing: border-box;
  position: relative;
}

.section-product .content .item .commodity .name {
  font-size: 16px;
  font-weight: bold;
}

.section-product .content .item .commodity .tag span {
  font-size: 13px;
  border: #d3d6d4 1px solid;
  line-height: 20px;
  padding: 0 8px;
  border-radius: 3px;
  color: rgba(17, 32, 23, 0.3);
  display: inline-block;
  margin-right: 5px;
}

.section-product .content .item .commodity .price {
  font-size: 30px;
  color: #e72c1c;
  position: relative;
  line-height: 1.6;
}

.section-product .content .item .commodity .price::before {
  content: '￥';
  font-size: 14px;
}

.section-product .content .item .commodity .price small {
  font-size: 14px;
}

.section-product .content .item .commodity .btn {
  position: absolute;
  right: 50px;
  top: 50%;
  transform: translateY(-50%);
}

.section-new {
  background: url(../images/news-bg.png) no-repeat top center;
  min-height: 625px;
  background-size: cover;
}

.section-new .wrapper {
  padding-top: 80px;
  display: flex;
  justify-content: space-between;
}

.section-new .recommend {
  width: 500px;
  flex-shrink: 0;
}

.section-new .recommend .pic {
  width: 100%;
  height: 280px;
  background-color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  position: relative;
}

.section-new .recommend .pic:hover img {
  transform: scale(1.02);
}

.section-new .recommend .pic img {
  max-width: 100%;
  transition: all 0.3s ease-in-out;
}

.section-new .recommend .pic .time {
  position: absolute;
  left: 0;
  bottom: 0;
  height: 32px;
  background-color: #49b465;
  color: #fff;
  padding: 0 20px 0 10px;
  display: inline-block;
  border-top-right-radius: 16px;
  line-height: 32px;
}

.section-new .recommend .info {
  background-color: #fff;
  height: 126px;
  padding: 15px 25px;
  box-sizing: border-box;
}

.section-new .recommend .info .name {
  font-size: 16px;
  margin-bottom: 10px;
  display: block;
  color: #112017;
}

.section-new .recommend .info .name:hover {
  text-decoration: underline;
  color: #49b465;
}

.section-new .recommend .info .decs {
  color: rgba(17, 32, 23, 0.5);
  line-height: 1.4;
}

.section-new .news-content {
  width: calc(100% - 500px);
  box-sizing: border-box;
  padding-left: 75px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.section-new .news-content ul {
  margin-top: 40px;
}

.section-new .news-content ul li {
  display: flex;
  justify-content: space-between;
  line-height: 48px;
}

.section-new .news-content ul li a {
  font-size: 16px;
  color: #112017;
  width: 80%;
  display: block;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  position: relative;
  padding-left: 15px;
}

.section-new .news-content ul li a::before {
  content: '';
  width: 5px;
  height: 5px;
  border-radius: 50%;
  display: block;
  background-color: #112017;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}

.section-new .news-content ul li a:hover {
  color: #49b465;
}

.section-new .news-content ul li a:hover::before {
  background-color: #49b465;
}

.section-new .news-content ul li span {
  color: rgba(17, 32, 23, 0.5);
}

.section-new .news-content .btn-box {
  height: 85px;
  background-color: #fff;
  display: flex;
}

.section-new .news-content .btn-box a {
  width: 50%;
  display: inline-block;
  height: inherit;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 18px;
  color: #112017;
  font-weight: bold;
  position: relative;
  transition: 0.3s ease-in-out;
  padding: 0 30px;
  box-sizing: border-box;
}

.section-new .news-content .btn-box a::after {
  content: '→';
  display: inline-block;
}

.section-new .news-content .btn-box a:not(:last-child)::before {
  content: '';
  width: 1px;
  background-color: #edf0ee;
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
}

.section-new .news-content .btn-box a:hover {
  background-color: #49b465;
  color: #fff;
}

.section-contact {
  background: url(../images/footer-bg.png) no-repeat center;
  background-size: cover;
  height: 300px;
  position: relative;
}

.section-contact .wrapper {
  height: inherit;
}

.section-contact .contact-box {
  width: 80%;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(8px);
  padding: 50px 50px 30px 50px;
  top: -80px;
  box-sizing: border-box;
  min-height: 320px;
}

.section-contact .contact-box h3 {
  text-align: center;
  font-size: 28px;
  font-weight: normal;
  color: #112017;
}

.section-contact .contact-box ul {
  display: flex;
  justify-content: space-between;
  margin-top: 20px;
  margin-bottom: 40px;
}

.section-contact .contact-box ul li {
  width: 46%;
}

.section-contact .contact-box ul li input {
  border: #d3d6d4 1px solid;
  height: 38px;
  line-height: 38px;
  padding: 0 10px;
  box-sizing: border-box;
  width: 100%;
}

.section-contact .contact-box ul li input::placeholder {
  color: rgba(17, 32, 23, 0.5);
}

.section-contact .contact-box .box {
  display: flex;
  justify-content: space-between;
}

.section-contact .contact-box .box .tel-box .title {
  font-size: 16px;
  display: flex;
  align-items: center;
}

.section-contact .contact-box .box .tel-box .title span {
  margin-right: 8px;
}

.section-contact .contact-box .box .tel-box .num {
  font-family: Helvetica Neue;
  font-size: 30px;
  line-height: 30px;
  padding-left: 28px;
  font-weight: bold;
  letter-spacing: 2px;
  color: #49b465;
}

.section-contact .contact-box .box .btn-box {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.section-contact .contact-box .box .btn-box a {
  color: #49b465;
}

.section-contact .contact-box .box .btn-box a.btn {
  color: #fff;
  padding-left: 30px;
  padding-right: 30px;
  margin-bottom: 5px;
}

.section-contact .wechat-box {
  position: absolute;
  right: 0;
  bottom: 60px;
  color: #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.section-contact .wechat-box img {
  width: 75px;
  height: 75px;
  border: #fff 5px solid;
}

.copyright {
  height: 60px;
  background-color: #f9fbfa;
  color: rgba(17, 32, 23, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
}

.section-service {
  display: flex;
}

.section-service .tel-content, .section-service .wechat-content {
  width: 70%;
  padding: 30px;
  box-sizing: border-box;
}

.section-service .tel-content h5, .section-service .wechat-content h5 {
  font-size: 16px;
}

.section-service .tel-content .num, .section-service .wechat-content .num {
  font-family: Helvetica Neue;
  font-size: 30px;
  line-height: 30px;
  margin-top: 35px;
  font-weight: bold;
  letter-spacing: 2px;
  color: #49b465;
}

.section-service .tel-content p, .section-service .wechat-content p {
  color: rgba(17, 32, 23, 0.5);
  margin-top: 6px;
}

.section-service .wechat-content {
  width: 30%;
  padding: 30px;
  box-sizing: border-box;
  text-align: center;
  position: relative;
}

.section-service .wechat-content::after {
  content: '';
  background-color: #edf0ee;
  left: 0;
  position: absolute;
  top: 30px;
  bottom: 30px;
  display: block;
  width: 1px;
}

.section-service .wechat-content .img {
  margin-top: 10px;
}

.section-service .wechat-content .img img {
  width: 80px;
  height: 80px;
  border: #f9fbfa 6px solid;
}

.p-bottom {
  margin-bottom: 180px;
}

.section-problem {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  column-gap: 30px;
}

.section-problem .item {
  background: url(../images/news-bg1.png) no-repeat 0px center;
  padding: 20px;
  box-sizing: border-box;
  background-size: cover;
  overflow: hidden;
}

.section-problem .item:nth-child(2) {
  background: url(../images/news-bg1.png) no-repeat -60px center;
}

.section-problem .item:last-child {
  background: url(../images/news-bg1.png) no-repeat -10px center;
}

.section-problem .item ul {
  margin-top: 10px;
}

.section-problem .item ul li {
  line-height: 32px;
}

.section-problem .item ul li a {
  font-size: 14px;
  color: #112017;
  width: 90%;
  display: block;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  position: relative;
  padding-left: 10px;
}

.section-problem .item ul li a::before {
  content: '';
  width: 4px;
  height: 4px;
  border-radius: 50%;
  display: block;
  background-color: #112017;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}

.section-problem .item ul li a:hover {
  color: #49b465;
}

.section-problem .item ul li a:hover::before {
  background-color: #49b465;
}

.section-about p {
  font-size: 16px;
  line-height: 1.6;
}

.section-about .about-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 80px;
}

.section-about .about-list .item {
  display: flex;
  width: 100%;
  flex-direction: column;
  overflow: hidden;
}

.section-about .about-list .item:hover .pic img {
  transform: scale(1.05);
}

.section-about .about-list .item:hover .context span {
  transform: translateY(55px);
}

.section-about .about-list .item:hover .context p {
  transform: translateY(-55px);
}

.section-about .about-list .item .pic {
  width: 100%;
  height: 260px;
  overflow: hidden;
  position: relative;
}

.section-about .about-list .item .pic img {
  width: 100%;
  object-fit: cover;
  transition: 0.95s cubic-bezier(0.34, 0.615, 0.4, 0.985);
}

.section-about .about-list .item .context {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  background-color: #112017;
  padding: 30px;
  color: #fff;
  line-height: 1.6;
  min-height: 300px;
  box-sizing: border-box;
}

.section-about .about-list .item .context span {
  display: block;
  font-size: 40px;
  font-family: Helvetica Neue;
  font-weight: bold;
  transition: 0.35s ease-in-out;
}

.section-about .about-list .item .context p {
  font-size: 28px;
  transition: 0.35s ease-in-out;
}

.section-about .about-list .item:nth-child(2) {
  flex-direction: column-reverse;
}

.section-about .about-list .item:nth-child(2) .context {
  background-color: #fff;
  color: #112017;
  justify-content: flex-start;
}

.section-menu {
  position: relative;
  display: flex;
  justify-content: space-evenly;
  height: 50px;
}

.section-menu li {
  line-height: 100%;
  display: block;
  height: inherit;
}

.section-menu li a {
  font-size: 16px;
  color: #112017;
  position: relative;
  line-height: 50px;
  display: block;
}

.section-menu li a:hover, .section-menu li a.current {
  color: #49b465;
}

.section-menu li a:hover::before, .section-menu li a.current::before {
  width: 100%;
  left: 0;
}

.section-menu li a::before {
  content: "";
  position: absolute;
  bottom: 0px;
  right: 0;
  width: 0%;
  height: 2px;
  background: #49b465;
  transition: all 0.32s ease-out;
  z-index: 5;
}

.section-news-list {
  width: 100%;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 30px;
  position: relative;
}

.section-news-list li {
  background-color: #fff;
  overflow: hidden;
  transition: all 0.35s ease-in-out;
}

.section-news-list li:hover {
  box-shadow: rgba(17, 32, 23, 0.1) 0px 4px 8px;
}

.section-news-list li:hover .pic img {
  transform: scale(1.05);
}

.section-news-list li .pic {
  width: 100%;
  overflow: hidden;
}

.section-news-list li .pic img {
  width: 100%;
  display: block;
  transition: 0.35s ease-in-out;
  object-fit: cover;
}

.section-news-list li .context {
  padding: 20px 16px 20px 0;
  display: flex;
  justify-content: space-between;
}

.section-news-list li .context .time {
  display: flex;
  align-items: center;
  justify-content: center;
  align-items: center;
  border-right: #edf0ee 1px solid;
  width: 100px;
  height: 80px;
  flex-direction: column;
  line-height: 1.2;
  font-family: Helvetica Neue;
  font-size: 12px;
  flex-shrink: 0;
}

.section-news-list li .context .time span {
  font-size: 30px;
  font-weight: bold;
}

.section-news-list li .context .info {
  width: calc(100% - 120px);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.section-news-list li .context .info .tit {
  font-size: 16px;
  color: #112017;
  line-height: 1.4;
}

.section-news-list li .context .info .tit:hover {
  color: #49b465;
}

.section-news-list li .context .info .decs {
  line-height: 1.6;
  font-size: 14px;
}

.section-news-list li .context .info .decs a {
  color: rgba(17, 32, 23, 0.3);
}

.section-news-list li .context .info .decs a:hover {
  text-decoration: underline;
  color: #112017;
}

.pagination {
  text-align: center;
  display: block;
  margin: 20px auto 50px;
}

.pagination ul {
  box-sizing: border-box;
}

.pagination ul li {
  vertical-align: top;
  letter-spacing: normal;
  word-spacing: normal;
  display: inline-block;
  min-width: 32px;
  margin: 0 5px;
}

.pagination ul li span {
  background-color: #FFF;
  text-align: center;
  display: block;
  width: inherit;
  height: inherit;
  padding: 0 5px;
  border: 1px solid #e5e5e5;
  position: relative;
  border-radius: 3px;
  text-align: center;
  line-height: 32px;
}

.pagination ul li span.currentpage {
  color: #FFF;
  background-color: #49b465;
  border-color: #49b465;
  position: relative;
  z-index: 2;
}

.pagination ul li a {
  color: rgba(17, 32, 23, 0.5);
}

.pagination ul li a span, .pagination ul li a:visited span {
  height: 100%;
  width: 100%;
  padding: 0 5px;
  box-sizing: border-box;
}

.pagination ul li a:hover span, .pagination ul li a:active {
  color: #49b465;
  text-decoration: none;
  border: 1px solid #49b465;
}

.single-page {
  padding: 60px 0 0;
  line-height: 1.8;
  font-size: 16px;
}

.single-page .head-title {
  text-align: center;
  padding-bottom: 30px;
}

.single-page .head-title h1 {
  font-size: 28px;
  line-height: 30px;
  font-weight: normal;
}

.single-page .head-title .time {
  color: rgba(17, 32, 23, 0.5);
  margin-top: 10px;
}

.single-page h2 {
  font-size: 16px;
}

.pageswitch {
  height: auto;
  overflow: hidden;
  padding-top: 40px;
  box-sizing: border-box;
  display: flex;
  justify-content: space-between;
}

.pageswitch a {
  width: 50%;
  transition: all ease-out .3s;
  line-height: 30px;
  position: relative;
  color: rgba(17, 32, 23, 0.5);
  padding: 20px 20px 20px 40px;
  box-sizing: border-box;
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap;
}

.pageswitch a:before {
  width: 30px;
  height: 30px;
  display: block;
  position: absolute;
  transition: all .3s ease-out 0s;
  text-align: center;
  line-height: 30px;
  border: #ddd 1px solid;
  border-radius: 4px;
  content: '→';
  font-family: "iconfont";
  font-size: 20px;
}

.pageswitch a.prev:before {
  left: 0;
  display: block;
  transform: rotate(-180deg);
}

.pageswitch a:hover {
  padding-left: 50px;
  text-decoration: underline;
  color: #49b465;
}

.pageswitch a:hover:before {
  left: 10px;
  border: #49b465 1px solid;
  content: '→';
  font-family: "iconfont";
}

.pageswitch a.next {
  text-align: right;
  padding-right: 40px;
  padding-left: 20px;
}

.pageswitch a.next:before {
  display: block;
  left: auto;
  right: 0;
}

.pageswitch a.next:hover {
  padding-right: 50px;
}

.pageswitch a.next:hover:before {
  right: 10px;
}

.nav-trigger {
  width: 26px;
  height: 16px;
  cursor: pointer;
  position: relative;
  right: 0;
  display: none;
}

.nav-trigger > span {
  width: 26px;
  height: 2px;
  background: #112017;
  display: block;
  position: absolute;
  transition: all .2s;
  transform: translate3d(0, 0, 0);
}

.nav-trigger .line-1 {
  top: 0px;
}

.nav-trigger .line-2 {
  top: 8px;
}

.nav-trigger .line-3 {
  top: 16px;
}

.mobile-side-bar-active .nav-trigger .line-1 {
  top: 6px;
  -moz-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  -o-transform: rotate(45deg);
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}

.mobile-side-bar-active .nav-trigger .line-2 {
  opacity: 0;
}

.mobile-side-bar-active .nav-trigger .line-3 {
  top: 6px;
  -moz-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  -o-transform: rotate(-45deg);
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
}

@keyframes jumpy {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(3px);
  }
}

@keyframes run {
  0% {
    background-position-y: 0;
  }
  100% {
    background-position-y: -1840px;
  }
}

@media (max-width: 1336px) {
  .section-new {
    min-height: 600px;
  }
  .section-new .recommend {
    width: 400px;
  }
  .section-new .recommend .pic {
    height: 224px;
  }
  .section-new .news-content {
    width: calc( 100% - 400px);
  }
  .section-new .news-content .btn-box {
    height: 70px;
  }
  .section-new .news-content ul {
    margin-top: 20px;
  }
}

@media (max-width: 1200px) {
  .header .wrapper {
    display: flex;
    justify-content: space-between;
    max-width: 100%;
  }
  .wrapper {
    padding-left: 30px;
    padding-right: 30px;
    box-sizing: border-box;
  }
}

@media (max-width: 1024px) {
  body {
    padding-top: 60px;
  }
  .header {
    position: fixed;
    height: 60px;
    z-index: 999999;
    top: 0;
  }
  .header .logo img {
    height: 34px;
    display: block;
  }
  .nav-trigger {
    display: block;
  }
  .nav-trigger > span {
    background-color: #fff;
  }
  html.mobile-side-bar-active .mobile-nav {
    left: 0;
  }
  .header .mobile-nav {
    left: -100%;
    box-sizing: border-box;
    position: fixed;
    width: 100%;
    height: calc(100% - 60px);
    background-color: rgba(0, 0, 0, 0.2);
    transition: left 0.1s, background-color 0.3s;
    overflow-y: auto;
    z-index: 99;
    top: 60px;
  }
  .mobile-nav ul {
    width: 90%;
    background-color: #fff;
    padding: 24px;
    min-height: 100%;
    box-sizing: border-box;
    position: relative;
    flex-direction: column;
    height: auto !important;
    justify-content: flex-start !important;
    align-items: center !important;
  }
  .mobile-nav ul li {
    height: 70px !important;
    position: relative;
    justify-content: center;
  }
  .mobile-nav ul li.current a {
    color: #49b465 !important;
  }
  .mobile-nav ul li a {
    padding: 0 !important;
    color: #112017 !important;
  }
  .mobile-nav ul li:last-child::after {
    display: none;
  }
}

@media (min-width: 1025px) {
  .scrollwidth img {
    overflow: hidden;
    position: absolute;
    width: 0 !important;
    left: 0;
    top: 0;
    height: 100%;
    background-color: #f0f0f0;
  }
  .animated.scrollwidth img {
    width: 100% !important;
  }
}

@media (max-width: 1024px) and (min-width: 768px) {
  .section-product .content .item {
    display: flex;
    flex-direction: column;
  }
  .section-product .content .item .decs {
    border-bottom: 1px solid #d3d6d4;
    border-right: none;
    padding-bottom: 20px;
  }
  .section-product .content .item .commodity {
    padding: 0;
    margin-top: 20px;
  }
  .section-product .content .item .commodity .btn {
    right: 0;
  }
  .section-new {
    min-height: 520px;
  }
  .section-new .recommend {
    width: 320px;
  }
  .section-new .recommend .pic {
    height: 180px;
  }
  .section-new .recommend .info .name {
    line-height: 1.2;
  }
  .section-new .news-content {
    width: calc( 100% - 320px);
    padding-left: 40px;
  }
  .section-new .news-content .btn-box {
    height: 70px;
  }
  .section-new .news-content ul {
    margin-top: 0px;
  }
  .section-new .news-content ul li a {
    width: 70%;
  }
  .section-about .about-list .item .pic {
    height: auto;
  }
  .section-about .about-list .item .context {
    min-height: 220px;
  }
  .section-news-list {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 767px) {
  .online {
    width: 65px;
    right: 5px;
  }
  .online .item {
    height: 65px;
    font-size: 13px;
  }
  .header .logo {
    width: 1.94rem;
    overflow: hidden;
  }
  .header .logo img {
    height: 30px;
    display: block;
  }
  .banner {
    height: 7.2rem;
    position: relative;
  }
  .banner .swiper-slide .slide-content {
    padding: 0 5% 15%;
  }
  .banner .swiper-slide .slide-content p {
    letter-spacing: 0;
    line-height: 1.2;
    font-size: 0.4rem;
  }
  .banner .swiper-slide .slide-content p.solgn {
    font-size: 0.6rem;
    margin-bottom: 20px;
  }
  .banner .swiper-pagination {
    bottom: 60px;
  }
  .banner .banner-mask {
    height: 1.4rem;
  }
  .banner .banner-mask .wrapper {
    padding-top: 0.1rem;
    padding-bottom: 0.16rem;
  }
  .banner .banner-mask .wrapper .item:last-child {
    display: none;
  }
  .banner .banner-mask .wrapper .item .swiper-notice .swiper-slide {
    justify-content: flex-start;
  }
  .banner .banner-mask .wrapper .item .swiper-notice .swiper-slide a {
    display: block;
    text-overflow: ellipsis;
    white-space: nowrap;
    overflow: hidden;
    width: 90%;
    font-size: 0.28rem;
  }
  .wrapper, .foot {
    padding-left: 16px;
    padding-right: 16px;
    box-sizing: border-box;
  }
  .section-title {
    padding: 0.64rem 5%;
    font-size: 0.48rem;
  }
  .section-product .tab {
    flex-wrap: wrap;
    border: #f9fbfa 1px solid;
    padding-top: 0.32rem;
    margin-top: 0;
  }
  .section-product .tab li {
    width: 50%;
    padding: 0;
    padding-bottom: 0.32rem;
  }
  .section-product .tab li span {
    font-size: 0.36rem;
  }
  .section-product .tab li .icon {
    margin: 0 auto;
  }
  .section-product .content {
    padding: 16px;
  }
  .section-product .content .item {
    display: flex;
    flex-direction: column;
  }
  .section-product .content .item .decs {
    border-bottom: 1px solid #d3d6d4;
    border-right: none;
    padding-bottom: 20px;
    padding-right: 0px;
    font-size: 0.32rem;
  }
  .section-product .content .item .commodity {
    padding: 0;
    margin-top: 0.24rem;
  }
  .section-product .content .item .commodity .btn {
    position: relative;
    right: 0;
    top: 0;
    width: 100%;
    transform: translateY(0);
    margin-top: 0.32rem;
    text-align: center;
  }
  .section-new {
    min-height: auto;
    background-size: contain;
  }
  .section-new .wrapper {
    flex-direction: column;
    padding-top: 0.4rem;
    margin-top: 0.4rem;
  }
  .section-new .wrapper .recommend {
    width: 100%;
  }
  .section-new .wrapper .recommend .pic {
    height: auto;
  }
  .section-new .wrapper .recommend .info {
    height: auto;
  }
  .section-new .wrapper .recommend .info .name {
    line-height: 1.4;
    font-size: 0.32rem;
  }
  .section-new .wrapper .recommend .info .decs {
    font-size: 0.28rem;
  }
  .section-new .wrapper .news-content {
    padding-left: 0;
    width: 100%;
  }
  .section-new .wrapper .news-content ul li {
    line-height: 2.4;
  }
  .section-new .wrapper .news-content ul li span {
    display: none;
  }
  .section-new .wrapper .news-content .btn-box {
    margin: 0.32rem 0;
  }
  .section-new .wrapper .news-content .btn-box a {
    padding: 0 16px;
    font-size: 0.32rem;
    background-color: #49b465;
    color: #fff;
  }
  .section-contact {
    height: auto;
    margin-top: 1rem;
  }
  .section-contact .contact-box {
    position: relative;
    left: 0;
    padding: 0.32rem;
    width: 100%;
    min-height: auto;
    transform: translateY(0);
    top: -0.6rem;
  }
  .section-contact .contact-box h3 {
    font-size: 0.4rem;
    line-height: 1.2;
  }
  .section-contact .contact-box ul {
    flex-direction: column;
    margin-bottom: 0;
  }
  .section-contact .contact-box ul li {
    width: 100%;
    margin-bottom: 0.32rem;
    font-size: 0.28rem;
  }
  .section-contact .contact-box .box {
    flex-direction: column-reverse;
  }
  .section-contact .contact-box .box .btn {
    width: 100%;
    text-align: center;
  }
  .section-contact .contact-box .box .tel-box .num {
    font-size: 0.48rem;
  }
  .section-contact .wechat-box {
    position: relative;
    bottom: 0.4rem;
    font-size: 0.32rem;
  }
  .copyright {
    text-align: center;
    line-height: 18px;
    font-size: 0.28rem;
  }
  .section-service {
    flex-direction: column;
  }
  .section-service .tel-content, .section-service .wechat-content {
    width: 100%;
    padding: 16px;
  }
  .section-service .tel-content h5, .section-service .wechat-content h5 {
    font-size: 0.4rem;
  }
  .section-service .tel-content .num, .section-service .wechat-content .num {
    font-size: 0.6rem;
    margin: 0.24rem 0;
  }
  .section-service .tel-content p, .section-service .wechat-content p {
    font-size: 0.28rem;
    line-height: 1.2;
  }
  .section-service .wechat-content {
    width: 100%;
    padding: 16px;
    margin-top: 0.48rem;
  }
  .section-service .wechat-content::after {
    left: 0px;
    right: 0px;
    top: 0;
    display: block;
    width: auto;
    height: 1px;
  }
  .section-service .wechat-content .img img {
    width: 50%;
    height: 50%;
    border: #f9fbfa 6px solid;
  }
  .p-bottom {
    margin-bottom: 0;
  }
  .section-problem {
    grid-template-columns: repeat(1, 1fr);
    row-gap: 0.48rem;
  }
  .section-problem .item h3 {
    font-size: 0.4rem;
  }
  .section-about .about-list {
    grid-template-columns: repeat(1, 1fr);
    margin-top: 0.48rem;
    row-gap: 0.48rem;
  }
  .section-about .about-list .item .pic {
    height: auto;
  }
  .section-about .about-list .item .context {
    min-height: auto;
  }
  .section-about .about-list .item .context span {
    font-size: 0.48rem;
  }
  .section-about .about-list .item .context p {
    font-size: 0.4rem;
  }
  .section-about .about-list .item:nth-child(2) {
    flex-direction: column;
  }
  .section-news-list {
    grid-template-columns: repeat(1, 1fr);
    row-gap: 0.48rem;
    margin-top: 30px;
    position: relative;
  }
  .section-news-list li .context .info .decs {
    font-size: 0.28rem;
  }
  .single-page .head-title h1 {
    font-size: 22px;
  }
  .single-page img {
    max-width: 100%;
    display: block;
  }
  .pageswitch {
    flex-direction: column;
  }
  .pageswitch a {
    width: 100%;
    font-size: 0.32rem;
    padding: 10px 20px 10px 40px;
  }
  .pageswitch a:hover {
    padding-left: 40px;
  }
  .pageswitch a:hover::before {
    left: 0;
  }
  .pageswitch a.next {
    padding-left: 40px;
  }
  .pageswitch a.next::before {
    padding-right: 0;
    left: 0;
    right: initial;
  }
  .pagination {
    display: none;
  }
}
