@charset "UTF-8";
/**
 * 媒体查询
 * @param $width 屏幕宽度
 */
/**
 * 网格布局
 * @param $cols 网格列数
 * @param $gap 网格间隔
 */
/**
 * 弹性布局上下居中
 * @param $justify
 */
@font-face {
  font-family: "Josefin Sans";
  src: url(../fonts/Josefin-Sans.woff2) format("woff2");
}
html {
  font-size: 15px;
}
@media (max-width: 1199px) {
  html {
    font-size: 14px;
  }
}
@media (max-width: 749px) {
  html {
    font-size: 13px;
  }
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  overflow-x: hidden;
  color: #666;
  font-family: "Microsoft YaHei", 微软雅黑, "Microsoft JhengHei", 华文细黑, STHeiti, MingLiu;
  font-size: 14px;
}

a {
  text-decoration: none;
  color: #333;
}

p {
  margin: 0;
  line-height: 34px;
}

li,
ul {
  list-style: none;
}

img {
  max-width: 100%;
  max-height: 100%;
  object-fit: cover;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: normal;
  margin: 0;
}

input,
textarea {
  border: none;
  outline: none;
  background-color: transparent;
}

main {
  padding-bottom: 4rem;
}

.bx {
  width: 80rem;
  margin: 0 auto;
}
@media (max-width: 1199px) {
  .bx {
    width: 100%;
    padding: 0 15px;
  }
}

/**
 * 左侧边栏
 */
.left-mb {
  width: 16rem;
  margin-right: auto;
}
@media (max-width: 1199px) {
  .left-mb {
    display: none;
  }
}
.left-mb .box {
  overflow: hidden;
  margin-bottom: 1.4rem;
  border-radius: 10px 10px 0 0;
  background-color: #f5f5f5;
}
.left-mb .box h2 {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 4rem;
  color: #fff;
  background-color: #6ebb2a;
}
.left-mb .box ul {
  padding: 1.4rem 0;
  display: flex;
  flex-direction: column;
}
.left-mb .box ul li {
  padding: 0.7rem 1.3333rem;
  position: relative;
  border-bottom: 1px solid #dbdbdb;
}
.left-mb .box ul li a {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 2.6rem;
  font-size: 16px;
  border-radius: 2.6rem;
  transition: all 0.3s ease-in-out;
}
.left-mb .box ul li a i {
  font-size: 20px;
  position: absolute;
  top: 50%;
  left: 40px;
  transform: translateY(-50%);
}
.left-mb .box ul li a:hover,
.left-mb .box ul li a.on {
  color: #fff;
  background-color: #6ebb2a;
}
.left-mb .box .con {
  padding: 1.4rem 0;
}
.left-mb .box .con p {
  padding: 0 1.3333rem;
}
.left-mb .box2 {
  overflow: hidden;
  margin-bottom: 1.4rem;
  border-radius: 10px 10px 0 0;
  background-color: #f5f5f5;
}
.left-mb .box2 h2 {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 4rem;
  color: #fff;
  background-color: #6ebb2a;
}
.left-mb .box2 ul {
  display: flex;
  flex-direction: column;
  padding: 5px 0;
}
.left-mb .box2 ul li {
  padding: 0 1.3333rem;
}
.left-mb .box2 ul li a {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 2.6rem;
  border-radius: 2.6rem;
  position: relative;
  transition: all 0.3s ease-in-out;
  padding-left: 10px;
}
.left-mb .box2 ul li a::before {
  content: "";
  position: absolute;
  top: 50%;
  left: -5px;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background-color: #6ebb2a;
  transform: translateY(-50%);
}
.left-mb .box2 ul li a span {
  display: block;
  padding-left: 0;
  margin-right: auto;
  width: 100%;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  transition: all 0.3s ease-in-out;
}
.left-mb .box2 ul li a:hover {
  background-color: transparent;
}
.left-mb .box2 ul li a:hover span {
  color: #6ebb2a;
  padding-left: 10px;
}

/**
 * 右侧内容
 */
.right-mb {
  width: 62rem;
  margin-left: auto;
}
@media (max-width: 749px) {
  .right-mb {
    width: 100%;
  }
}
.right-mb .box .mbx {
  display: flex;
  justify-content: center;
  align-items: center;
  border-bottom: 1px solid #e3e3e3;
}
.right-mb .box .mbx h2 {
  font-size: 1.2rem;
  padding: 10px 0;
  line-height: 1;
  margin-right: auto;
  color: #6ebb2a;
  border-bottom: 3px solid #6ebb2a;
  max-width: 80%;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
@media (max-width: 749px) {
  .right-mb .box .mbx h2 {
    max-width: 50%;
  }
}
.right-mb .box .mbx .a {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.3333rem;
}
.right-mb .box .con {
  margin-top: 2rem;
}
.right-mb .box .con .tit {
  text-align: center;
  margin-bottom: 20px;
  font-size: 1.6rem;
}
.right-mb .box .con .admin {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  padding-bottom: 10px;
  border-bottom: 1px solid #f2f2f2;
}
.right-mb .box .con p {
  text-indent: 2em;
  line-height: 2;
  margin: 10px 0;
  color: #333;
}
.right-mb .box .con img {
  display: block;
  margin: auto;
}

.p-t1 {
  padding-top: 4.5333rem;
}

.m-t1 {
  margin-top: 2rem;
}

/**
 * 分页
 */
.page-mb {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 4rem;
  gap: 10px;
}
.page-mb a {
  padding: 0 8px;
  border: 1px solid #cbcbcb;
  line-height: 26px;
}

.page2-mb {
  display: flex;
  margin-top: 30px;
  border-top: 1px dashed #ccc;
  padding-top: 30px;
}
.page2-mb .next {
  margin-right: auto;
}
.page2-mb .prev {
  margin-left: auto;
}

.tit1 {
  text-align: center;
}
.tit1 h2 {
  font-size: 30px;
  color: #212121;
  font-weight: bold;
  line-height: 1;
  margin-bottom: 10px;
}
.tit1 h2 span {
  background-color: #fff;
  display: inline-block;
  padding: 0 20px;
  position: relative;
}
.tit1 h2 span:before,
.tit1 h2 span:after {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  height: 0.5px;
  width: 50%;
  background-color: #d5d5d6;
}
.tit1 h2 span:before {
  left: 100%;
}
.tit1 h2 span:after {
  right: 100%;
}
.tit1 small {
  font-size: inherit;
  text-transform: uppercase;
  display: none;
}
.tit1 p {
  color: #212121;
  font-weight: lighter;
  line-height: 1;
  margin-top: 22px;
}

header {
  background: url(../images/top_bj.jpg);
  background-size: cover;
}
header .header-text {
  background-color: #fff;
}
header .header-text .bx {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 41px;
  padding: 10px 0;
}
header .header-text .bx p {
  line-height: 1;
  margin-right: auto;
  font-size: 13px;
}
header .header-text .bx a {
  font-size: 13px;
}
header .top {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 140px;
}
@media (max-width: 749px) {
  header .top {
    justify-content: space-between;
    height: 75px;
  }
}
header .top .left {
  /*margin-right: auto;*/
}
header .top .left a {
  display: flex;
  justify-content: center;
  align-items: center;
  /*height: 5.4rem;*/
}
header .top .left a .logo {
  height: 100%;
  margin-right: 10px;
  display: flex;
  align-items: center;
}
header .top .left a .logo img {
  height: 83px;
  /*width: 100px;*/
  object-fit: fill;
}
@media (max-width: 749px) {
  header .top .left a .logo img {
    height: 3rem;
    width: auto;
  }
}
header .top .left a .name h1 {
  font-size: 2rem;
  color: #464646;
  font-weight: bold;
  line-height: 1;
}
@media (max-width: 749px) {
  header .top .left a .name h1 {
    font-size: 1.2rem;
  }
}
header .top .left a .name p {
  font-size: 11.1px;
  line-height: 1;
  margin-top: 10px;
  font-weight: bold;
  /*color: #6ebb2a;*/
}
@media (max-width: 749px) {
  header .top .left a .name p {
    display: none;
    font-size: 11.5px;
  }
}
header .top .images {
  margin: 0 auto;
  height: 100%;
  padding: 30px 0;
}
header .top .right {
  display: flex;
  justify-content: center;
  align-items: center;
}
header .top .right .icon {
  margin-right: 10px;
  font-size: 0;
  padding: 5px;
  border-radius: 50%;
  border: 1px solid #908f8f;
}
@media (max-width: 749px) {
  header .top .images,
  header .top .right .icon {
    display: none;
  }
}
@media (max-width: 749px) {
  header .top .right .tel {
    display: none;
  }
}
header .top .right .tel h4 {
  font-size: 1rem;
  color: #222;
  line-height: 1;
}
header .top .right .tel p {
  font-size: 1.45rem;
  font-family: "Josefin Sans";
  font-weight: bold;
  margin: 5px 0;
  color: #464646;
  line-height: 1;
}
header .top .right i {
  font-size: 30px;
  display: none;
}
@media (max-width: 749px) {
  header .top .right i {
    display: block;
  }
}
header .bottom {
  background-color: #6ebb2a;
  position: relative;
}
@media (max-width: 749px) {
  header .bottom {
    z-index: 1000000;
  }
}
header .bottom nav {
  height: 3.8667rem;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media (max-width: 749px) {
  header .bottom nav {
    padding: 0;
    overflow: hidden;
    width: 0%;
    background-color: #6ebb2a;
    position: absolute;
    right: 0;
    height: auto;
    flex-direction: column;
    transition: all 0.3s ease;
    justify-content: flex-start;
  }
}
header .bottom nav div {
  width: 100%;
  height: 100%;
  position: relative;
  z-index: 10;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media (max-width: 749px) {
  header .bottom nav div {
    padding: 0 15px;
    flex-wrap: wrap;
    line-height: 61px;
  }
}
header .bottom nav div::before {
  transform: skewX(-15deg);
  content: "";
  position: absolute;
  right: 0;
  width: 1px;
  height: 100%;
  background: linear-gradient(to top, rgba(255, 255, 255, 0), #fff, rgba(255, 255, 255, 0));
}
@media (max-width: 749px) {
  header .bottom nav div::before {
    display: none;
  }
}
header .bottom nav div::after {
  transform: skewX(-15deg);
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: #6ebb2a;
  transition: all 0.3s ease-in-out;
  opacity: 0;
  z-index: -1;
}
@media (max-width: 749px) {
  header .bottom nav div::after {
    display: none;
  }
}
header .bottom nav div:hover::after {
  opacity: 1;
}
header .bottom nav div:last-child::before {
  display: none;
}
header .bottom nav div .a {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  font-size: 1.1333rem;
  color: #fff;
}
@media (max-width: 749px) {
  header .bottom nav div .a {
    width: auto;
    height: auto;
    margin-right: auto;
  }
}
header .bottom nav div i {
  color: #fff;
  display: none;
}
@media (max-width: 749px) {
  header .bottom nav div i {
    display: block;
  }
}
header .bottom nav div ul {
  display: none;
  width: 154px;
  text-align: center;
  position: absolute;
  top: calc(100% + 10px);
  transform: translateX(-7.5px);
  background-color: #6ebb2a8f;
}
header .bottom nav div ul::after {
  content: "";
  position: absolute;
  top: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0px 10px 10px 10px;
  border-color: transparent transparent #6ebb2a8f transparent;
}
@media (max-width: 749px) {
  header .bottom nav div ul {
    width: 100%;
    position: relative;
    top: 0;
    left: 0;
    transform: none;
  }
}
header .bottom nav div ul li a {
  width: 100%;
  line-height: 2.5333rem;
  text-align: center;
  display: block;
  color: #fff;
  border-bottom: 1px solid #ffffff45;
  transition: all 0.5s;
}
header .bottom nav div ul li a:hover {
  background-color: #5aa31a;
}
header .bottom nav div ul li:last-child a {
  border: none;
}
footer {
  background-color: #6ebb2a;
}
footer .top {
  padding-top: 3.3333rem;
  padding-bottom: 3.3333rem;
  display: flex;
}
@media (max-width: 1199px) {
  footer .top {
    flex-wrap: wrap;
  }
}
footer .top .left {
  display: flex;
  gap: 3rem;
  margin-right: auto;
}
@media (max-width: 1199px) {
  footer .top .left {
    gap: 2rem;
  }
}
@media (max-width: 749px) {
  footer .top .left {
    flex-wrap: wrap;
  }
}
footer .top .left h4 {
  margin-bottom: 10px;
}
footer .top .left h4 a {
  font-size: 1.0667rem;
  font-weight: 700;
  color: #fff;
}
footer .top .left li {
  margin: 10px 0;
}
footer .top .left li a {
  font-size: 0.9333rem;
  color: #fff;
}
footer .top .right {
  max-width: 240px;
  display: flex;
  flex-direction: column;
}
@media (max-width: 749px) {
  footer .top .right {
    max-width: 100%;
  }
}
footer .top .right .tel {
  line-height: 1;
}
footer .top .right .tel span {
  display: block;
  font-size: 2rem;
  font-family: impact;
  margin-bottom: 0.6667rem;
  font-weight: normal;
}
footer .top .right p {
  display: flex;
  line-height: 1.5;
  font-size: 0.9333rem;
  margin-bottom: 1.3333rem;
  color: #fff;
}
footer .top .right i {
  margin-right: 5px;
}
footer .top .right .ewm {
  display: flex;
  align-items: center;
  gap: 1rem;
  color: #fff;
}
footer .top .right .ewm img {
  width: 6rem;
  height: 6rem;
}
footer .bottom {
  background-color: #202020;
  padding: 15px 0;
}
footer .bottom p {
  text-align: center;
  color: #fff;
}
footer .bottom p a {
  color: #fff;
}

.banner .swiper-slide {
  font-size: 0;
  position: relative;
}
.banner .pagination1 span {
  background-color: #fff;
  opacity: 1;
  width: 30px;
  height: 5px;
  border-radius: 5px;
  transition: all 0.3s ease-in-out;
}
.banner .pagination1 .swiper-pagination-bullet-active {
  width: 40px;
  background-color: #6ebb2a;
}
.banner img {
  width: 100%;
  height: 40rem;
}
.banner .box {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}
.banner .bx {
  height: 100%;
  text-align: center;
  /*color: #fff;*/
  color: #6ebb2a;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.banner h2 {
  margin-bottom: 24px;
  font-size: 70px;
  font-weight: bold;
  opacity: 0;
  transform: translateY(100px);
  transition: 0;
  /* -webkit-text-stroke: 1px #fff; */
  /* text-shadow: -1px -1px 0 #fff, 1px -1px 0 #fff, -1px 1px 0 #fff, 1px 1px 0 #fff; */
}
.banner p {
  transition: 0;
  margin-bottom: 60px;
  font-size: 35px;
  font-weight: bold;
  opacity: 0;
  transform: translateY(100px);
}
.banner .but {
  transition: 0;
  opacity: 0;
  transform: translateY(100px);
  display: flex;
  gap: 0.9375rem;
}
.banner .but a {
  width: 200px;
  height: 48px;
  border-radius: 48px;
  background-color: #6ebb2a;
  color: #fff;
  font-size: 1.125rem;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  transition: all 0.8s ease;
}
.banner .but a + a {
  background-color: rgb(3, 42, 121);
}
.banner .but i {
  transition: all 0.3s ease;
}
.banner .but a:hover i {
  transform: translateX(10px);
}
.banner .swiper-slide-active h2 {
  transition: all 1.5s ease 0.1s;
  transition-delay: 0.3s;
  opacity: 1;
  transform: translateY(0);
}
.banner .swiper-slide-active p {
  transition: all 1.6s ease 0.5s;
  opacity: 1;
  transform: translateY(0);
}
.banner .swiper-slide-active .but {
  transition: all 1.5s ease 0.8s;
  opacity: 1;
  transform: translateY(0);
}
@media (max-width: 749px) {
  .banner img {
    height: 20rem;
  }
  .banner h2 {
    font-size: 30px;
  }
  .banner p {
    font-size: 20px;
    margin-bottom: 20px;
  }
  .banner .but {
    gap: 20px;
  }
  .banner .but a {
    width: 140px;
    height: 40px;
    font-size: 1rem;
  }
}
.banner .next1,
.banner .prev1 {
  width: 3.3333rem;
  height: 4.3333rem;
  font-size: 1rem;
  color: #fff;
  background: #424246;
  transition: all 0.5s ease-in-out;
}
@media (max-width: 749px) {
  .banner .next1,
  .banner .prev1 {
    width: 2.6667rem;
    height: 3.3333rem;
  }
}
.banner .next1::after,
.banner .prev1::after {
  font-size: 1.5rem;
}
.banner .next1:hover,
.banner .prev1:hover {
  background-color: #6ebb2a;
}
.banner .prev1 {
  left: 0;
}
.banner .next1 {
  right: 0;
}

.banner2 .img {
  font-size: 0;
}
.banner2 img {
  width: 100%;
  height: 18.8rem;
}

.search {
  border-bottom: 1px solid #bcbcbc;
}
.search .box {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 56px;
}
.search .box .left {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  margin-right: auto;
}
.search .box .right form {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 35px;
  border: 1px solid #717171;
  border-radius: 35px;
}
.search .box .right form input[type="text"] {
  width: 18.6667rem;
  height: 100%;
  padding-left: 15px;
  color: #686868;
}
.search .box .right form input[type="submit"] {
  background: url(../images/search.png);
  background-repeat: no-repeat;
  background-position: center;
  width: 35px;
  height: 100%;
  cursor: pointer;
}

.product .top {
  display: flex;
  margin-top: 2rem;
}
.product .top .left-mb .box {
  height: 100%;
}
.product .top .left-mb .box .teltel {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  gap: 10px;
  height: 100px;
  color: #fff;
  background-color: #6ebb2a;
}
.product .top .left-mb .box .teltel h2 {
  font-size: 28px;
  font-weight: bold;
  line-height: 1;
  height: auto;
}
.product .top .left-mb .box .teltel p {
  line-height: 1;
  text-transform: uppercase;
}
.product .top .line {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  width: 940px;
}
@media (max-width: 1199px) {
  .product .top .line {
    width: 100%;
  }
}
.product .top .line a {
  display: block;
  width: 300px;
}
@media (max-width: 1199px) {
  .product .top .line a {
    width: calc(33.3333333333% - 15px);
  }
}
@media (max-width: 749px) {
  .product .top .line a {
    width: 100%;
  }
}
.product .top .line a .img {
  width: 100%;
  height: 200px;
  overflow: hidden;
  position: relative;
}
@media (max-width: 749px) {
  .product .top .line a .img {
    height: 20rem;
  }
}
.product .top .line a .img::after {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  content: "";
  opacity: 0;
  transition: all 0.5s ease-in-out;
}
.product .top .line a .img::before {
  content: "";
  width: 80%;
  height: 80%;
  border: 1px solid #fff;
  z-index: 100;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 1.5rem;
  color: #fff;
  opacity: 0;
  transition: all 0.5s ease-in-out;
}
.product .top .line a .img .lj {
  border: 1px solid #6ebb2a;
  background-color: #6ebb2a;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0.7);
  z-index: 1000;
  border-radius: 50%;
  padding: 10px;
  opacity: 0;
  transition: all 0.5s ease-in-out;
}
.product .top .line a .img img + img {
  width: 100%;
  height: 100%;
  transition: all 0.5s ease-in-out;
}
.product .top .line a .name {
  text-align: center;
  padding: 10px 0;
}
.product .top .line a:hover .img .lj {
  opacity: 1;
}
.product .top .line a:hover .img img + img {
  transform: scale(1.05);
}
.product .top .line a:hover .img::after {
  opacity: 1;
}
.product .top .line a:hover .img::before {
  opacity: 1;
  width: calc(100% - 20px);
  height: calc(100% - 20px);
}

.case .bj {
  background: url(../images/bj2.jpg) no-repeat center;
  background-size: cover;
  padding-bottom: 3rem;
}
.case .tit1 h2 {
  color: #fff;
}
.case .tit1 h2 span {
  background-color: transparent;
}
.case .tit1 small,
.case .tit1 p {
  color: #fff;
}
.case .swiper4 {
  margin-top: 4rem;
}
.case .swiper4 .prev4,
.case .swiper4 .next4 {
  top: calc(50% - 30px);
  color: #6ebb2a;
  background-color: #fff;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  transition: all 0.3s ease-in-out;
}
.case .swiper4 .prev4::after,
.case .swiper4 .next4::after {
  font-size: 16px;
}
.case .swiper4 .prev4:hover,
.case .swiper4 .next4:hover {
  background-color: #6ebb2a;
  color: #fff;
}
.case .swiper4 .img {
  height: 200px;
  overflow: hidden;
}
.case .swiper4 .img:hover img {
  transform: scale(1.05);
}
.case .swiper4 img {
  width: 100%;
  height: 200px;
  transition: all 0.5s ease-in-out;
}
@media (max-width: 749px) {
  .case .swiper4 img {
    height: 20rem;
  }
}
.case .swiper4 .name {
  display: block;
  text-align: center;
  color: #fff;
  margin-top: 10px;
  line-height: 50px;
}
.case .btn {
  text-align: center;
}
.case .btn a {
  display: inline-block;
  width: 160px;
  height: 40px;
  line-height: 40px;
  text-align: center;
  font-size: 1rem;
  color: #fff;
  background-color: #6ebb2a;
  border-radius: 20px;
  margin-top: 20px;
  transition: all 0.3s ease-in-out;
}

.introduce .top {
  margin-top: 2.6667rem;
  display: flex;
}
@media (max-width: 749px) {
  .introduce .top {
    flex-wrap: wrap;
  }
}
.introduce .top .left {
  width: 53.2rem;
  height: 30.6667rem;
  margin-right: auto;
}
@media (max-width: 1199px) {
  .introduce .top .left {
    width: calc(100% - 26.6667rem);
  }
}
@media (max-width: 749px) {
  .introduce .top .left {
    width: 100%;
  }
}
.introduce .top .left .swiper {
  height: 100%;
}
.introduce .top .left img {
  width: 100%;
  height: 100%;
}
.introduce .top .right {
  width: 26.6667rem;
  background: url(../images/bj3.jpg) no-repeat center;
  background-size: cover;
  padding: 1rem 2.4rem 2.6667rem;
  display: flex;
  flex-direction: column;
}
@media (max-width: 749px) {
  .introduce .top .right {
    width: 100%;
  }
}
.introduce .top .right h2 {
  line-height: 6.9333rem;
  font-size: 1.6rem;
  color: #fff;
  font-weight: bold;
}
.introduce .top .right .text {
  max-height: 16rem;
  overflow: hidden;
  text-overflow: ellipsis;
  margin-bottom: auto;
}
.introduce .top .right .text p {
  font-size: 14px;
  color: #fff;
  line-height: 30px;
  display: -webkit-box;
  -webkit-line-clamp: 8;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.introduce .top .right a {
  display: block;
  background-color: #fff;
  margin: 0 auto;
  text-align: center;
  width: 9rem;
  height: 2.5333rem;
  line-height: 2.5333rem;
  border-radius: 38px;
  transition: all 0.5s;
}
.introduce .top .right a:hover {
  background-color: #6ebb2a;
  color: #fff;
}
.introduce .bottom {
  margin-top: 2rem;
  position: relative;
}
.introduce .bottom .next7,
.introduce .bottom .prev7 {
  background-color: #fff;
  color: #6ebb2a;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  border: 1px solid #ccc;
  transition: all 0.3s ease-in-out;
}
.introduce .bottom .next7::after,
.introduce .bottom .prev7::after {
  font-size: 16px;
}
.introduce .bottom .next7:hover,
.introduce .bottom .prev7:hover {
  background-color: #6ebb2a;
  color: #fff;
}
.introduce .bottom .prev7 {
  left: -25px;
}
.introduce .bottom .next7 {
  right: -25px;
}
@media (max-width: 749px) {
  .introduce .bottom .prev7 {
    left: 0;
  }
  .introduce .bottom .next7 {
    right: 0;
  }
}
.introduce .bottom .swiper a {
  text-align: center;
  display: block;
  position: relative;
  display: flex;
  flex-direction: column;
}
.introduce .bottom .swiper p {
  bottom: 0;
  left: 0;
  width: 100%;
  margin-top: 10px;
}
.introduce .bottom .swiper .img {
  position: relative;
  overflow: hidden;
  padding: 10px;
  font-size: 0;
  border: 1px solid #ccc;
}
.introduce .bottom .swiper .img::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.3);
  opacity: 0;
  transition: all 0.5s ease-in-out;
}
.introduce .bottom .swiper .img::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 60px;
  height: 60px;
  background: url(../images/eye.png);
  background-repeat: no-repeat;
  background-size: 100%;
  opacity: 0;
  z-index: 10;
  transition: all 0.5s ease-in-out;
}
.introduce .bottom .swiper .img img {
  height: 200px;
  transition: all 0.5s ease-in-out;
}
.introduce .bottom .swiper .img:hover::before,
.introduce .bottom .swiper .img:hover::after {
  opacity: 1;
}
.introduce .bottom .swiper .img:hover img {
  transform: scale(1.05);
}

.hotline {
  padding-top: 3.2rem;
}
.hotline .bj {
  background: url(../images/bj4.jpg) no-repeat center;
  background-size: cover;
  height: 27rem;
}
.hotline .top {
  padding-top: 4rem;
  display: flex;
  padding-bottom: 1.7333rem;
  border-bottom: 1px solid #0d78c8;
}
.hotline .top .left {
  margin-right: auto;
}
@media (max-width: 749px) {
  .hotline .top .left {
    display: none;
  }
}
.hotline .top .left p {
  font-size: 1.1333rem;
  color: rgba(255, 255, 255, 0.41);
  text-transform: uppercase;
  font-weight: lighter;
  line-height: 1;
}
.hotline .top .left h4 {
  font-size: 2.4rem;
  color: #fff;
  font-weight: bold;
  line-height: 1;
  margin-top: 10px;
}
.hotline .top .left h6 {
  font-size: 1.2rem;
  color: #fff;
  font-weight: normal;
  line-height: 1;
  margin-top: 15px;
}
.hotline .top .right {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1.3333rem;
}
.hotline .top .right .btn {
  width: 10.4rem;
  height: 3.2rem;
  border-radius: 50px;
  background-color: #6ebb2a;
  display: flex;
  justify-content: center;
  align-items: center;
}
.hotline .top .right .btn a {
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1.1333rem;
  color: #fff;
}
.hotline .bottom {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 1.6rem;
}
.hotline .bottom .box {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  color: #fff;
}
.hotline .bottom .box .text {
  line-height: 19px;
}
.hotline .bottom .box .tel {
  font-size: 2rem;
  color: #fff;
  line-height: 2.5333rem;
  font-weight: bold;
}

.insd {
  padding-top: 3.2rem;
}
@media (max-width: 749px) {
  .insd {
    padding-top: 0;
  }
}
.insd ul li {
  display: flex;
  justify-content: space-between;
}
@media (max-width: 1199px) {
  .insd ul li {
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 20px;
  }
}
.insd ul li:nth-child(2n) {
  flex-direction: row-reverse;
}
.insd ul li:nth-child(2n) .con .ml img {
  right: auto;
  left: 0;
}
.insd ul li:nth-child(2n) .con .ml .youshi {
  flex-direction: row;
  right: auto;
  left: 0;
}
.insd ul li .img {
  width: 37.1333rem;
  position: relative;
}
@media (max-width: 1199px) {
  .insd ul li .img {
    width: 100%;
  }
}
.insd ul li .img img {
  width: 100%;
  height: 20rem;
  transition: all 0.5s ease-in-out;
  border-radius: 10px;
  /*object-fit: fill;*/
}
.insd ul li .img:hover img {
  transform: scale(1.05);
}
@media (max-width: 1199px) {
  .insd ul li .img:hover img {
    transform: scale(1);
  }
}
.insd ul li .con {
  width: 37.1333rem;
}
@media (max-width: 1199px) {
  .insd ul li .con {
    width: 100%;
  }
}
.insd ul li .con .ml {
  position: relative;
  height: 7.3333rem;
}
@media (max-width: 1199px) {
  .insd ul li .con .ml {
    display: none;
  }
}
.insd ul li .con .ml img {
  max-width: max-content;
  position: absolute;
  top: 20px;
  right: 0;
}
.insd ul li .con .ml .youshi {
  display: flex;
  align-items: center;
  flex-direction: row-reverse;
  width: 670px;
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
}
.insd ul li .con .ml .youshi .right1 {
  width: 32px;
  height: 32px;
  border: 1px solid #aaa;
  border-radius: 50%;
  position: relative;
  box-sizing: border-box;
}
.insd ul li .con .ml .youshi .right1::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 26px;
  height: 26px;
  border-radius: 50%;
  border: 1px solid #aaa;
  box-sizing: border-box;
}
.insd ul li .con .ml .youshi .right1::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 20px;
  height: 20px;
  border-radius: 50%;
  border: 1px solid #aaa;
  box-sizing: border-box;
}
.insd ul li .con .ml .youshi .right1 .right2 {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 14px;
  height: 14px;
  border: 1px solid #aaa;
  border-radius: 50%;
  box-sizing: border-box;
}
.insd ul li .con .ml .youshi .line {
  flex-grow: 1;
  height: 1px;
  background-color: #aaa;
}
.insd ul li .con .ml .youshi .left {
  width: 134px;
  height: 50px;
  border-radius: 5px;
  line-height: 50px;
  color: #fff;
  background-color: #6ebb2a;
  font-size: 26px;
  font-weight: bold;
  display: flex;
  align-items: center;
  justify-content: center;
}
.insd ul li .con .tit {
  font-size: 2rem;
  color: #6ebb2a;
  font-weight: bold;
  line-height: 1;
}
.insd ul li .con .en {
  font-size: 0.9333rem;
  color: #aaa;
  font-weight: lighter;
  line-height: 1;
  text-transform: uppercase;
  margin-top: 10px;
}
.insd ul li .con .text {
  color: #2e2e2e;
  font-weight: lighter;
  line-height: 27px;
  margin-top: 26px;
}

.app .bj {
  background: url(../images/bj5.jpg) no-repeat center;
  background-size: cover;
  padding: 4rem 0 5rem;
}
.app .tit1 h2 {
  color: #fff;
}
.app .tit1 h2 span {
  background-color: transparent;
}
.app .tit1 small,
.app .tit1 p {
  color: #fff;
}
.app .box {
  margin-top: 3rem;
}
.app .box .swiper .swiper-wrapper {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px 20px;
}
@media (max-width: 1199px) {
  .app .box .swiper .swiper-wrapper {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 749px) {
  .app .box .swiper .swiper-wrapper {
    grid-template-columns: repeat(1, 1fr);
  }
}
.app .box .swiper .img {
  height: 178px;
  border-radius: 5px;
  overflow: hidden;
  position: relative;
}
@media (max-width: 749px) {
  .app .box .swiper .img {
    height: 15rem;
  }
}
.app .box .swiper .img::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.3);
  opacity: 0;
  transition: all 0.5s ease-in-out;
}
.app .box .swiper .img::before {
  content: "";
  width: 80%;
  height: 80%;
  border: 1px solid #fff;
  z-index: 100;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 1.5rem;
  color: #fff;
  opacity: 0;
  transition: all 0.5s ease-in-out;
  border-radius: 5px;
}
.app .box .swiper .img .lj {
  border: 1px solid #6ebb2a;
  background-color: #6ebb2a;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0.7);
  z-index: 1000;
  border-radius: 50%;
  padding: 10px;
  opacity: 0;
  transition: all 0.5s ease-in-out;
}
.app .box .swiper .img .lj + img {
  width: 100%;
  height: 100%;
  transition: all 0.5s ease-in-out;
}
.app .box .swiper .img:hover .lj,
.app .box .swiper .img:hover::before,
.app .box .swiper .img:hover::after {
  opacity: 1;
}
.app .box .swiper .img:hover::before {
  width: calc(100% - 20px);
  height: calc(100% - 20px);
}
.app .box .swiper .img:hover .lj + img {
  transform: scale(1.05);
}
.app .box .swiper h4 {
  line-height: 3.5333rem;
  text-align: center;
  color: #fff;
}

.new {
  background: url(../images/bj6.jpg) no-repeat center;
  background-size: cover;
}
.new .top {
  display: flex;
  align-items: flex-start;
  padding-top: 3.6rem;
}
@media (max-width: 1199px) {
  .new .top {
    gap: 20px;
  }
}
@media (max-width: 749px) {
  .new .top {
    flex-direction: column;
  }
}
.new .top .left {
  width: 40rem;
  margin-right: auto;
}
@media (max-width: 1199px) {
  .new .top .left {
    width: 50%;
  }
}
@media (max-width: 749px) {
  .new .top .left {
    width: 100%;
  }
}
.new .top .left .tab {
  display: flex;
  gap: 1.3333rem;
}
.new .top .left .tab li {
  border-left: 7px solid transparent;
  padding-left: 13px;
  font-size: 22px;
  line-height: 38px;
  font-weight: bold;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
}
.new .top .left .tab li.on {
  border-color: #6ebb2a;
}
.new .top .left .tab li.on a {
  color: #6ebb2a;
}
.new .top .left .tab_con {
  margin-top: 1.6rem;
}
.new .top .left .tab_con .con {
  display: none;
}
.new .top .left .tab_con .item1 {
  display: flex;
}
@media (max-width: 1199px) {
  .new .top .left .tab_con .item1 {
    gap: 10px;
  }
}
.new .top .left .tab_con .item1 .img {
  width: 18.7333rem;
  height: 10.9333rem;
  border: 1px solid #dadada;
  margin-right: auto;
  overflow: hidden;
  position: relative;
}
@media (max-width: 1199px) {
  .new .top .left .tab_con .item1 .img {
    width: 20rem;
  }
}
.new .top .left .tab_con .item1 .img::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.3);
  opacity: 0;
  transition: all 0.5s ease-in-out;
}
.new .top .left .tab_con .item1 .img img {
  width: 100%;
  height: 100%;
  transition: all 0.5s ease-in-out;
}
.new .top .left .tab_con .item1 .con {
  width: 20rem;
  display: flex;
  flex-direction: column;
}
.new .top .left .tab_con .item1 .con h2 {
  font-size: 1.1333rem;
  color: #222;
  line-height: 1;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  margin-bottom: 20px;
}
.new .top .left .tab_con .item1 .con p {
  font-size: 0.8667rem;
  color: #535353;
  line-height: 23px;
  height: 69px;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  line-clamp: 3;
  -webkit-box-orient: vertical;
}
.new .top .left .tab_con .item1 .con div {
  width: 6.8rem;
  text-align: center;
  height: 2.2rem;
  line-height: 2.2rem;
  background-color: #6ebb2a;
  font-size: 13px;
  color: #fff;
  margin-top: auto;
}
.new .top .left .tab_con .item1:hover .img::before,
.new .top .left .tab_con .item1:hover .img::after {
  opacity: 1;
}
.new .top .left .tab_con .item1:hover .img img {
  transform: scale(1.05);
}
.new .top .left .tab_con ul {
  margin-top: 2rem;
}
.new .top .left .tab_con ul li {
  margin-top: 14px;
  border: 1px solid #c2c2c2;
  transition: all 0.3s ease-in-out;
}
.new .top .left .tab_con ul li a {
  padding: 8px 0;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.new .top .left .tab_con ul li a .time {
  flex-shrink: 0;
  width: 8.2rem;
  text-align: center;
  border-right: 1px solid #c9c9c9;
}
.new .top .left .tab_con ul li a .time p {
  font-size: 15px;
  color: #222;
  font-weight: bold;
  line-height: 1;
}
.new .top .left .tab_con ul li a .time span {
  display: block;
  color: #222;
  font-weight: normal;
  line-height: 1;
  margin-top: 3px;
}
.new .top .left .tab_con ul li a .text {
  flex-grow: 1;
  padding: 0 2.6rem;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media (max-width: 1199px) {
  .new .top .left .tab_con ul li a .text {
    padding: 0 1.6rem;
    width: 0;
  }
}
@media (max-width: 749px) {
  .new .top .left .tab_con ul li a .text {
    padding: 0 1rem;
  }
}
.new .top .left .tab_con ul li a .text h4 {
  margin-right: auto;
  width: 80%;
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
}
.new .top .left .tab_con ul li a .text span {
  flex-shrink: 0;
  display: block;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 1px solid #c2c2c2;
  text-align: center;
  line-height: 26px;
  font-size: 17px;
  color: #737373;
  font-family: "宋体";
  transition: all 0.3s ease-in-out;
}
.new .top .left .tab_con ul li:hover {
  box-shadow: 0 0 10px #ccc;
}
.new .top .left .tab_con ul li:hover a .text span {
  background-color: #6ebb2a;
  color: #fff;
}
.new .top .right {
  width: 36.4667rem;
  border: 1px solid #c1c1c1;
}
@media (max-width: 1199px) {
  .new .top .right {
    width: 50%;
  }
}
@media (max-width: 749px) {
  .new .top .right {
    width: 100%;
    margin-top: 20px;
  }
}
.new .top .right .tit {
  padding: 0 15px;
  display: flex;
  align-items: center;
  border-bottom: 1px solid #c1c1c1;
}
.new .top .right .tit h2 {
  font-size: 1.2rem;
  color: #222;
  font-weight: bold;
  line-height: 2.6667rem;
  margin-right: auto;
}
.new .top .right .tit a {
  font-size: 1rem;
  color: #5c5c5c;
  line-height: 2.6667rem;
}
.new .top .right ul {
  padding: 0px 22px 11px 11px;
}
.new .top .right ul li {
  padding-top: 17px;
  border-bottom: 1px dashed #cfcfcf;
}
.new .top .right ul li a h2 {
  padding-right: 20px;
  line-height: 24px;
  font-size: 16px;
  color: #222;
  line-height: 24px;
  background-repeat: no-repeat;
  background-position: left center;
  transition: all 0.3s ease-in-out;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.new .top .right ul li a h2 i {
  display: inline-block;
  width: 24px;
  height: 24px;
  margin-right: 10px;
  text-align: center;
  line-height: 24px;
  background-color: #6ebb2a;
  color: #fff;
}
.new .top .right ul li a p {
  padding-left: 34px;
  padding-right: 20px;
  line-height: 40px;
  margin-top: 3px;
  font-size: 14px;
  color: #727272;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.new .top .right ul li a:hover h2 {
  padding-left: 20px;
}
.new .bottom {
  margin-top: 2rem;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}
@media (max-width: 749px) {
  .new .bottom {
    grid-template-columns: repeat(1, 1fr);
    gap: 10px;
  }
}
.new .bottom ul {
  overflow: hidden;
}
.new .bottom ul h3 {
  height: 50px;
  border-bottom: 1px solid #ccc;
  display: flex;
  justify-content: center;
  align-items: center;
}
.new .bottom ul h3 a.on {
  display: flex;
  justify-content: center;
  align-items: center;
  padding-bottom: 5px;
  font-weight: bold;
  margin-right: auto;
  height: 100%;
  transition: all 0.3s ease-in-out;
  font-size: 22px;
  position: relative;
}
.new .bottom ul h3 a.on::after {
  content: "";
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-width: 5px 5px 0 5px;
  border-style: solid;
  border-color: #6ebb2a transparent transparent transparent;
}
.new .bottom ul h3 a.on::before {
  content: "";
  position: absolute;
  bottom: 0;
  width: 100%;
  height: 2px;
  background-color: #6ebb2a;
}
.new .bottom ul h3 a.on:hover {
  color: #6ebb2a;
}
.new .bottom ul h3 a.on + a {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  padding-bottom: 5px;
}
.new .bottom ul li {
  margin: 20px 0 20px;
  width: 100%;
}
.new .bottom ul li a {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  width: 100%;
  height: 110px;
}
.new .bottom ul li a .img {
  flex-shrink: 0;
  width: 140px;
  height: 100%;
  font-size: 0;
}
.new .bottom ul li a .img img {
  width: 100%;
  height: 100%;
  transition: all 0.5s ease-in-out;
}
.new .bottom ul li a .con {
  width: calc(100% - 150px);
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.new .bottom ul li a h2 {
  font-size: 16px;
  font-weight: bold;
  color: #464646;
  width: 100%;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  transition: all 0.3s ease-in-out;
}
.new .bottom ul li a p {
  width: 100%;
  line-height: 25px;
  overflow: hidden;
  position: relative;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
}
.new .bottom ul li a span {
  flex-shrink: 0;
  color: #999;
  display: block;
  font-size: 13px;
}
.new .bottom ul li a:hover h2 {
  color: #6ebb2a;
}

.link .top {
  display: flex;
}
.link .top h2 {
  font-size: 33px;
  color: #101010;
  font-weight: bold;
  text-transform: uppercase;
  line-height: 28px;
}
.link .top p {
  width: 83px;
  height: 28px;
  text-align: center;
  line-height: 28px;
  background-color: #6ebb2a;
  font-size: 14px;
  color: #fff;
  margin-left: 5px;
}
.link .bottom {
  padding: 20px 0 10px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px 20px;
}

.about .flex {
  display: flex;
}
.about .right-mb .box .flex {
  display: flex;
  flex-wrap: wrap;
  gap: 30px 15px;
}
.about .right-mb .box .flex .img {
  width: calc(25% - 20px);
  border: 1px solid #e3e3e3;
  overflow: hidden;
}
@media (max-width: 749px) {
  .about .right-mb .box .flex .img {
    width: 100%;
  }
}
.about .right-mb .box .flex .img img {
  height: 145px;
  transition: all 0.5s ease-in-out;
}
.about .right-mb .box .flex .img img:hover {
  transform: scale(1.05);
}
.about .right-mb .box .flex .img p {
  text-align: center;
  text-indent: 0;
}

.products .flex {
  display: flex;
}
.products .right-mb .box .flex {
  display: flex;
  flex-wrap: wrap;
  gap: 30px 30px;
}
.products .right-mb .box .flex .info {
  width: calc(33.3333333333% - 20px);
  border: 1px solid #e3e3e3;
  transition: all 0.5s ease-in-out;
}
@media (max-width: 749px) {
  .products .right-mb .box .flex .info {
    width: 100%;
  }
}
.products .right-mb .box .flex .info a {
  display: block;
  width: 100%;
  transition: all 0.5s ease-in-out;
}
.products .right-mb .box .flex .info .img {
  overflow: hidden;
  position: relative;
}
.products .right-mb .box .flex .info .img::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.3);
  opacity: 0;
  transition: all 0.3s ease-in-out;
}
.products .right-mb .box .flex .info .img::before {
  content: "";
  position: absolute;
  z-index: 10;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: url(../images/eye.png);
  background-repeat: no-repeat;
  background-size: 100%;
  width: 60px;
  height: 60px;
  opacity: 0;
  transition: all 0.3s ease-in-out;
}
.products .right-mb .box .flex .info img {
  width: 100%;
  height: 204px;
  transition: all 0.5s ease-in-out;
}
.products .right-mb .box .flex .info h3 {
  font-size: 14px;
  text-align: center;
  padding: 10px 0;
  line-height: 1.6;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  width: 100%;
}
.products .right-mb .box .flex .info:hover {
  border-color: #6ebb2a;
}
.products .right-mb .box .flex .info:hover a {
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
}
.products .right-mb .box .flex .info:hover .img::before,
.products .right-mb .box .flex .info:hover .img::after {
  opacity: 1;
}
.products .right-mb .box .flex .info:hover img {
  transform: scale(1.05);
}

.design .flex {
  display: flex;
}
.design .right-mb .box .flex {
  display: flex;
  flex-wrap: wrap;
  gap: 30px 15px;
}
.design .right-mb .box .flex .img {
  width: calc(33.3333333333% - 10px);
}
.design .right-mb .box .flex .img a {
  display: block;
  width: 100%;
  position: relative;
  overflow: hidden;
}
.design .right-mb .box .flex .img img {
  width: 100%;
  height: 200px;
  transition: all 0.5s ease-in-out;
}
.design .right-mb .box .flex .img p {
  text-align: center;
  text-indent: 0;
  line-height: 40px;
  overflow: hidden;
  width: 100%;
  text-overflow: ellipsis;
  white-space: nowrap;
  margin: 0;
  position: absolute;
  bottom: 0;
  background: rgba(0, 0, 0, 0.5);
  color: #fff;
}
.design .right-mb .box .flex .img:hover img {
  transform: scale(1.05);
}

.cases .flex {
  display: flex;
}
.cases .right-mb .box .flex {
  display: flex;
  flex-wrap: wrap;
  gap: 30px 15px;
}
.cases .right-mb .box .flex .info {
  width: calc(33.3333333333% - 15px);
  border: 0;
}
@media (max-width: 749px) {
  .cases .right-mb .box .flex .info {
    width: 100%;
  }
}
.cases .right-mb .box .flex .info a {
  display: block;
  width: 100%;
}
.cases .right-mb .box .flex .info .img {
  overflow: hidden;
}
.cases .right-mb .box .flex .info img {
  width: 100%;
  height: 200px;
  transition: all 0.5s ease-in-out;
}
.cases .right-mb .box .flex .info p {
  text-align: center;
  text-indent: 0;
  line-height: 1.6;
  overflow: hidden;
  width: 100%;
  text-overflow: ellipsis;
  white-space: nowrap;
  transition: all 0.3s ease-in-out;
}
.cases .right-mb .box .flex .info:hover img {
  transform: scale(1.05);
}
.cases .right-mb .box .flex .info:hover p {
  color: #6ebb2a;
}

.process .flex {
  display: flex;
}
.process .right-mb .box .flex {
  display: flex;
  flex-wrap: wrap;
  gap: 30px 15px;
}
.process .right-mb .box .flex .img {
  width: calc(25% - 20px);
  border: 1px solid #e3e3e3;
  overflow: hidden;
}
.process .right-mb .box .flex .img img {
  height: 290px;
  transition: all 0.5s ease-in-out;
}
.process .right-mb .box .flex .img img:hover {
  transform: scale(1.05);
}
.process .right-mb .box .flex .img p {
  text-align: center;
  text-indent: 0;
}

.news .flex {
  display: flex;
}
.news .right-mb .box .flex {
  display: flex;
  flex-wrap: wrap;
  gap: 30px 15px;
}
.news .right-mb .box .flex .info {
  width: 100%;
  border: 1px solid #e3e3e3;
  padding: 30px;
  transition: all 0.5s ease-in-out;
}
.news .right-mb .box .flex .info a {
  display: block;
}
.news .right-mb .box .flex .info a .tit1 {
  display: flex;
  justify-content: center;
  align-items: center;
  padding-bottom: 15px;
  border-bottom: 1px solid #e3e3e3;
  margin-bottom: 15px;
}
.news .right-mb .box .flex .info a .tit1 h3 {
  font-size: 18px;
  width: 80%;
  line-height: 1;
  text-align: left;
  margin-right: auto;
}
@media (max-width: 749px) {
  .news .right-mb .box .flex .info a .tit1 h3 {
    width: 50%;
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
  }
}
.news .right-mb .box .flex .info a .text {
  line-height: 2;
  color: #999999;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: normal;
}
.news .right-mb .box .flex .info a .btn {
  margin-top: 15px;
}
.news .right-mb .box .flex .info a .btn span {
  display: inline-block;
  width: 130px;
  line-height: 33px;
  text-align: center;
  color: #666666;
  border: 1px solid #e1e1e1;
  transition: all 0.3s ease-in-out;
}
.news .right-mb .box .flex .info:hover {
  box-shadow: 0px 2px 13px 1px rgba(8, 1, 3, 0.18);
}
.news .right-mb .box .flex .info:hover a .btn span {
  background-color: #6ebb2a;
  color: #fff;
}

.message .flex {
  display: flex;
}
.message form {
  width: 100%;
}
.message form .input {
  display: flex;
  justify-content: center;
  align-items: center;
}
.message form .input label {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-right: auto;
  margin-bottom: 15px;
  align-items: flex-start;
}
@media (max-width: 749px) {
  .message form .input label {
    width: 100%;
  }
}
.message form .input label span {
  display: block;
  width: 150px;
  height: 34px;
  line-height: 34px;
  text-align: right;
}
@media (max-width: 749px) {
  .message form .input label span {
    width: 100px;
  }
}
.message form .input label span i {
  font-style: normal;
  color: #6ebb2a;
  margin-right: 5px;
}
.message form .input label textarea,
.message form .input label input {
  height: 34px;
  width: 450px;
  border: 1px solid #ccc;
  border-radius: 4px;
  padding: 6px 12px;
  font-size: 14px;
  color: #555;
  transition: all 0.3s ease-in-out;
}
@media (max-width: 749px) {
  .message form .input label textarea,
  .message form .input label input {
    width: calc(100% - 100px);
  }
}
.message form .input label textarea:focus,
.message form .input label input:focus {
  border-color: #66afe9;
  outline: 0;
  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgba(102, 175, 233, 0.6);
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgba(102, 175, 233, 0.6);
}
.message form .input label textarea {
  height: 120px;
  line-height: 1.6;
}
.message form .btn {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 20px;
}
.message form .btn button {
  margin-left: 150px;
  margin-right: auto;
  width: 140px;
  line-height: 33px;
  background-color: #337ab7;
  color: #fff;
  border: none;
  border-radius: 33px;
}
@media (max-width: 749px) {
  .message form .btn button {
    margin-left: auto;
  }
}

.relate .flex {
  display: flex;
}
.relate .right-mb .box .flex {
  display: flex;
  flex-wrap: wrap;
  gap: 30px 15px;
}
.relate .right-mb .box .flex .bottom {
  width: 100%;
}

/*# sourceMappingURL=index.css.map */
