@charset "UTF-8";
/*
 * @Author: Code Zhuang
 * @Date: 2023-07-21 11:33:32
 * @Last Modified by: Code Zhuang
 * @Last Modified time: 2023-07-24 17:06:13
 */

/* 公用样式 */
@import "../css/public.css";

.img {
  width: 100%;
  overflow: hidden;
  position: relative;
}
.img::before {
  content: "";
  display: block;
}
.container-fluid {
  width: 100%;
  overflow: hidden;
  background-color: #fff;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
}

.title {
  display: block;
  overflow: hidden;
  text-align: center;
}
.title>h1 {
  line-height: 38px;
  font-size: 30px;
  font-weight: bold;
  color: #333;
}
.title>h1>span {
  color: var(--color-main);
}
.title>div {
  line-height: 20px;
  margin-top: 10px;
  font-size: 14px;
  color: #aaa;
}
.title-white>h1 {
  color: #fff;
}

.more {
  display: flex;
  justify-content: center;
}
.more>a {
  width: 162px;
  float: left;
  height: 42px;
  border-radius: 21px;
  font-size: 16px;
  color: #333;
  background-color: var(--color-main);
  display: flex;
  align-items: center;
  align-content: center;
  justify-content: center;
}
.more>a:hover {
  color: #fff;
}

@media (max-width: 767px) {
  .title>h1 {
    line-height: 30px;
    font-size: 20px;
  }
  .title>div {
    margin: 0;
    line-height: 16px;
  }

  .more>a {
    width: 90px;
    height: 30px;
    font-size: 14px;
  }
}

/* 首页样式 */
/* 横幅 */
.hf {
  padding: 50px 0 25px 0;
}
.hf-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.hf-list>li {
  width: 21%;
  padding: 0 10px;
}
.hf-list>li .hf-icon {
  width: 100%;
  overflow: hidden;
  position: relative;
  height: 50px;
}
.hf-list>li>h1 {
  display: block;
  overflow: hidden;
  text-align: center;
  margin-top: 10px;
  font-size: 20px;
  color: #333;
}
.hf-list>li .hf-text {
  display: block;
  overflow: hidden;
  text-align: center;
  margin-top: 10px;
  font-size: 14px;
  line-height: 25px;
  color: #333;
}

@media (max-width: 1200px) {
  .hf-list>li {
    width: 25%;
    letter-spacing: -0.5px;
  }
}
@media (max-width: 991px) {
  .hf {
    padding: 25px 0;
  }
}
@media (max-width: 767px) {
  .hf {
    padding: 15px 0;
  }
  .hf-list {
    justify-content: space-between;
  }
  .hf-list>li {
    width: calc(50% - 5px);
    padding: 0;
    margin: 5px 0;
  }
  .hf-list>li .hf-icon {
    height: 30px;
  }
  .hf-list>li>h1 {
    margin-top: 5px;
    font-size: 16px;
    line-height: 24px;
  }
  .hf-list>li .hf-text {
    margin-top: 5px;
    font-size: 12px;
    line-height: 20px;
  }
}

/* 产品中心 */
.product {
  background-color: #333;
  padding: 45px 0;
}
.product-content {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-top: 45px;
}
.main-left {
  width: 304px;
  float: left;
}
.menu-title {
  display: block;
  overflow: hidden;
  background-color: var(--color-main);
  padding: 18px 50px;
  padding-right: 0;
  line-height: 24px;
  font-size: 20px;
  color: #333;
  text-transform: uppercase;
}
.menu-title>span {
  display: block;
  font-size: 28px;
  font-weight: bold;
  line-height: 38px;
}
.menu-list {
  display: block;
  overflow: hidden;
  transition: initial;
}
.menu-list>li {
  display: block;
  overflow: hidden;
}
.menu-list>li>a {
  display: block;
  overflow: hidden;
  height: 54px;
  line-height: 52px;
  font-size: 18px;
  color: #333;
  padding: 0 55px 0 70px;
  background-color: #e1e1e1;
  text-overflow: ellipsis;
  white-space: nowrap;
  position: relative;
  border-bottom: 2px solid #ccc;
}
.menu-list>li>a::before {
  content: "";
  width: 22px;
  height: 17px;
  background: url(../images/jiantou1.png) no-repeat center center;
  background-size: 100% 100%;
  position: absolute;
  left: 12px;
  top: 50%;
  transform: translateY(-50%);
}
.menu-list>li>a::after {
  content: ">";
  width: 30px;
  height: 30px;
  font-family: SimSun;
  font-size: 19px;
  color: #fff;
  border-radius: 50%;
  background-color: #a5a5a5;
  display: flex;
  align-items: center;
  align-content: center;
  justify-content: center;
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%) rotate(90deg);
}
.menu-list>li:hover>a,
.menu-list>li.menu-active>a {
  background-color: var(--color-hover);
  color: #fff;
}
.menu-list>li.menu-active>a::after {
  transform: translateY(-50%) rotate(270deg);
}
.menu-child-list {
  display: none;
  overflow: hidden;
  background-color: #f7f7f7;
  transition: initial;
}
.menu-child-list>li {
  display: block;
  overflow: hidden;
  border-bottom: 1px solid #ebe7e7;
}
.menu-child-list>li>a {
  display: block;
  overflow: hidden;
  height: 50px;
  line-height: 50px;
  font-size: 16px;
  color: #333;
  padding: 0 55px 0 70px;
  position: relative;
  z-index: 0;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.menu-child-list>li>a::before {
  content: "";
  width: 0;
  height: 2px;
  background-color: var(--color-hover);
  position: absolute;
  left: 70px;
  top: 50%;
  transform: translateY(-50%);
  z-index: -1;
}
.menu-child-list>li>a:hover::before,
.menu-child-list>li.active>a::before {
  width: 64px;
}

.main-right {
  width: calc(100% - 316px);
  float: right;
}
.product-banner {
  width: 100%;
  height: 154px;
  overflow: hidden;
  background-color: #282828;
  display: flex;
  margin-bottom: 18px;
}
.product-banner-left {
  width: 68%;
  background: url(../images/product-bj.png) no-repeat center center;
  background-size: cover;
  display: flex;
  justify-content: center;
  flex-direction: column;
  padding-left: 114px;
  color: #333;
  font-weight: bold;
}
.product-banner-left>h1 {
  line-height: 54px;
  font-size: 40px;
}
.product-banner-left>div {
  line-height: 42px;
  font-size: 30px;
}
.product-banner-hotline {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  align-content: center;
  justify-content: center;
}
.product-banner-hotline>span {
  position: relative;
  line-height: 30px;
  font-size: 16px;
  color: var(--color-main);
  padding: 0 15px;
}
.product-banner-hotline>span::before,
.product-banner-hotline>span::after {
  content: "";
  width: 93px;
  height: 1px;
  background-color: var(--color-main);
  position: absolute;
  right: 100%;
  bottom: 8px;
}
.product-banner-hotline>span::after {
  right: initial;
  left: 100%;
}
.product-banner-hotline>h1 {
  position: relative;
  line-height: 32px;
  font-size: 24px;
  color: var(--color-main);
  padding: 0 10px;
  font-weight: bold;
}
.product-banner-hotline>h1::before,
.product-banner-hotline>h1::after {
  content: "";
  width: 27px;
  height: 28px;
  border-left: 1px solid var(--color-main);
  border-bottom: 1px solid var(--color-main);
  position: absolute;
  right: 100%;
  bottom: 13px;
}
.product-banner-hotline>h1::after {
  border-left: none;
  border-right: 1px solid var(--color-main);
  right: initial;
  left: 100%;
}
.product-list {
  display: flex;
  flex-wrap: wrap;
  width: 1110px;
}
.product-list>li {
  width: 344px;
  margin: 0 26px 15px 0;
}
.product-list>li>a {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  position: relative;
}
.product-list>li>a .img::before {
  padding-top: 80.61628%;
}
.product-list>li>a>h1 {
  width: 100%;
  overflow: hidden;
  height: 40px;
  line-height: 40px;
  padding: 0 15px;
  font-size: 16px;
  color: #333333;
  text-align: center;
  background-color: #efefef;
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: 2;
}
.product .more {
  width: 100%;
  margin-top: 35px;
}

@media (max-width: 1400px) {
  .main-left {
    width: 22.5%;
  }
  .menu-title {
    padding: 20px;
  }
  .main-right {
    width: calc(77.5% - 12px);
  }
  .product-list {
    width: 102%;
    margin-left: -1%;
  }
  .product-list>li {
    width: calc(calc(100% / 3) - 2%);
    margin: 0 1% 15px 1%;
  }
}
@media (max-width: 1200px) {
  .main-left {
    width: 24%;
  }
  .menu-title {
    font-size: 18px;
  }
  .menu-title>span {
    font-size: 24px;
    line-height: 34px;
  }
  .menu-list>li>a {
    font-size: 16px;
  }
  .menu-list>li>a,
  .menu-child-list>li>a {
    padding: 0 55px 0 50px;
  }
  .main-right {
    width: calc(76% - 12px);
  }
  .product-banner-left {
    padding-left: 50px;
  }
  .product-banner-left>h1 {
    line-height: 44px;
    font-size: 30px;
  }
  .product-banner-left>div {
    line-height: 32px;
    font-size: 22px;
  }
  .product-banner-hotline>h1 {
    font-size: 20px;
  }
  .product-banner-hotline>span::before,
  .product-banner-hotline>span::after {
    width: 55px;
  }
  .product-banner-hotline>h1::before,
  .product-banner-hotline>h1::after {
    width: 6px;
  }
  .product .more {
    margin-top: 25px;
  }
}
@media (max-width: 991px) {
  .product {
    padding: 30px 0;
  }
  .product-content {
    margin-top: 30px;
  }
  .main-left {
    width: 29%;
  }
  .menu-title {
    font-size: 14px;
  }
  .menu-title>span {
    font-size: 20px;
    line-height: 30px;
  }
  .main-right {
    width: calc(71% - 12px);
  }
  .product-banner-left {
    width: 60%;
    padding-left: 15px;
  }
  .product-banner-left>h1 {
    line-height: 34px;
    font-size: 20px;
  }
  .product-banner-left>div {
    line-height: 28px;
    font-size: 18px;
  }
  .product-banner-hotline>h1 {
    font-size: 18px;
  }
  .product-banner-hotline>span::before,
  .product-banner-hotline>span::after {
    width: 42px;
  }
  .product-banner-hotline>h1 {
    padding: 0 5px;
  }

  .product-list>li {
    width: 48%;
  }
  .product .more {
    margin-top: 15px;
  }
}
@media (max-width: 767px) {
  .product {
    padding: 15px 0;
  }
  .product-content {
    margin-top: 15px;
  }
  .main-left {
    width: 100%;
  }
  .menu-title {
    width: calc(100% + 40px);
    text-align: center;
    margin-left: -20px;
    font-size: 18px;
    font-weight: bold;
    height: 50px;
    line-height: 50px;
    padding: 0 20px;
    color: #333;
    position: relative;
    background-color: var(--color-hover);
  }
  .menu-title-active {
    text-align: left;
  }
  .menu-title-active::after {
    content: "\f078";
    font-family: FontAwesome;
    font-size: 16px;
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
  }
  .menu-list {
    display: none;
    padding-top: 2px;
  }
  .menu-list>li>a {
    height: 50px;
    line-height: 48px;
  }
  .main-right {
    width: 100%;
  }
  .product .main-right {
    width: 100%;
    padding-top: 20px;
  }
  .product-list {
    width: 100%;
    justify-content: space-between;
  }
  .product-list>li {
    width: calc(50% - 5px);
    margin: 0 0 10px 0;
  }
  .product .more {
    margin-top: 5px;
  }
}

/* 厂家直营 */
.factory {
  width: 100%;
  overflow: hidden;
  position: relative;
  z-index: 0;
}
.factory::before {
  content: "";
  width: 100%;
  height: calc(100% - 20px);
  background: url(../images/hf-bj.png) no-repeat center center;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  z-index: -1;
}
.factory>.container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  min-height: 219px;
  align-items: center;
}
.factory-left {
  width: calc(50% - 10px);
  display: flex;
  flex-direction: column;
}
.factory-left>h1 {
  display: block;
  overflow: hidden;
  line-height: 40px;
  font-size: 25px;
  color: #f8bc02;
}
.factory-left>h1>span {
  display: block;
  overflow: hidden;
  line-height: 52px;
  font-size: 40px;
  font-weight: bold;
}
.factory-left>div {
  display: block;
  overflow: hidden;
  margin-top: 10px;
  line-height: 20px;
  font-size: 14px;
  color: #f8bc02;
}
.factory-right {
  width: 43.5%;
}
.factory-hotline {
  display: block;
  overflow: hidden;
  padding-left: 70px;
  line-height: 24px;
  font-size: 16px;
  color: #201f1f;
  background: url(../images/hf-hotline.png) no-repeat left center;
}
.factory-hotline>span {
  display: block;
  overflow: hidden;
  line-height: 50px;
  font-size: 40px;
  font-weight: bold;
}

@media (max-width: 1200px) {
  .factory-hotline>span {
    line-height: 40px;
    font-size: 30px;
  }
}
@media (max-width: 991px) {
  .factory-left>h1>span {
    line-height: 40px;
    font-size: 30px;
  }
  .factory-left>h1 {
    line-height: 30px;
    font-size: 20px;
  }
  .factory-hotline>span {
    line-height: 30px;
    font-size: 26px;
  }
}
@media (max-width: 767px) {
  .factory {
    padding: 10px 0;
  }
  .factory::before {
    display: none;
  }
  .factory>.container {
    min-height: initial;
  }
  .factory-left {
    width: 100%;
    background: url(../images/hf-bj1.png) no-repeat center center;
    background-size: cover;
    padding: 15px;
    text-align: center;
  }
  .factory-left>h1 {
    line-height: 24px;
    font-size: 16px;
  }
  .factory-left>h1>span {
    line-height: 30px;
    font-size: 20px;
  }
  .factory-right {
    width: 100%;
    background: url(../images/hf-bj2.png) no-repeat right center;
    background-size: cover;
    padding: 15px;
    min-height: 110px;
    display: flex;
    align-items: center;
    justify-content: center;
  }
}

/* 案例展示 */
.case {
  background-color: #f6f6f6;
  padding: 40px 0;
}
.case-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 55px;
}
.case-nav>li>a {
  display: block;
  overflow: hidden;
  line-height: 24px;
  padding: 10px 15px;
  font-size: 16px;
  color: #333;
  border-radius: 30px;
}
.case-nav>li.case-active>a::before {
  left: -40px;
}
.case-nav>li.case-active>a::after {
  right: -40px;
}
.case-content {
  display: flex;
  margin-top: 50px;
}
.case-content>div {
  display: none;
  width: 100%;
  float: left;
}
.case-content>div:first-child {
  display: block;
}
.case-content>div>a {
  width: 100%;
  float: left;
  display: flex;
  flex-wrap: wrap;
  flex-direction: row-reverse;
  justify-content: space-between;
}
.case-content>div>a .case-left {
  width: 61%;
  float: left;
  overflow: hidden;
  position: relative;
}
.case-content>div>a .case-left::before {
  content: "";
  display: block;
  padding-top: 58.3625731%;
}
.case-content>div>a .case-right {
  flex: 1;
  background-color: #fff;
  border: 1px solid #edecec;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding: 20px 65px;
}
.case-content>div>a .case-right>h1 {
  display: block;
  overflow: hidden;
  line-height: 38px;
  font-size: 24px;
  color: #333333;
  font-weight: bold;
}
.case-content>div>a .case-right .case-text {
  display: block;
  overflow: hidden;
  line-height: 30px;
  font-size: 16px;
  color: #333333;
  margin-top: 20px;
}
.case-content>div>a .case-right .case-text>p {
  display: block;
  overflow: hidden;
  margin-bottom: 25px;
}
.case-content>div>a .case-right .case-more {
  display: flex;
  margin-top: 25px;
  line-height: 24px;
  position: relative;
  z-index: 0;
  font-size: 14px;
  color: #333;
  padding: 0 5px;
}
.case-content>div>a .case-right .case-more::after {
  content: "";
  width: 100%;
  height: 4px;
  border-radius: 2px;
  background-color: #f8bc02;
  position: absolute;
  left: 0;
  bottom: 4px;
  z-index: -1;
}
.case .more {
  margin: 50px 0 35px 0;
}

.case-list {
  display: flex;
  flex-wrap: wrap;
  width: calc(100% + 18px);
  margin-left: -9px;
}
.case-list>li {
  width: calc(25% - 18px);
  margin: 20px 9px 0 9px;
  overflow: hidden;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: 100% 100%;
  border-radius: 5px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 20px;
}
.case-list>li .case-icon {
  width: 100%;
  overflow: hidden;
  position: relative;
  height: 70px;
}
.case-list>li h1 {
  display: block;
  overflow: hidden;
  text-align: center;
  line-height: 30px;
  font-size: 20px;
  color: #fff;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.case-list>li .case-texts {
  display: block;
  overflow: hidden;
  line-height: 25px;
  text-align: center;
  font-size: 14px;
  color: #fff;
  margin-top: 10px;
}

@media (max-width: 1400px) {
  .case-content>div>a .case-right {
    padding: 20px 40px;
  }
}
@media (max-width: 1200px) {
  .case-nav {
    margin-top: 40px;
  }
  .case-content>div>a .case-right {
    padding: 20px 30px;
  }
  .case-content>div>a .case-right .case-text {
    line-height: 24px;
    font-size: 14px;
    margin-top: 20px;
  }
  .case-content>div>a .case-right .case-text>p {
    margin-bottom: 15px;
  }
  .case-content>div>a .case-right .case-more {
    margin-top: 15px;
  }
  .case .more {
    margin: 35px 0;
  }
}
@media (max-width: 991px) {
  .case-nav {
    margin-top: 20px;
  }
  .case-nav>li>a {
    padding: 5px 10px;
  }
  .case-content {
    margin-top: 30px;
  }
  .case-content>div>a .case-right {
    padding: 20px;
  }
  .case-content>div>a .case-right .case-text {
    margin-top: 10px;
  }
  .case-content>div>a .case-right .case-text>p {
    margin-bottom: 10px;
  }
  .case-content>div>a .case-right .case-more {
    margin-top: 10px;
  }
  .case .more {
    margin: 20px 0;
  }

}
@media (max-width: 767px) {
  .case {
    padding: 15px 0;
  }
  .case-nav {
    margin-top: 10px;
  }
  .case-nav>li>a {
    font-size: 14px;
  }
  .case-content {
    margin-top: 10px;
  }
  .case-content>div>a .case-left {
    width: 100%;
  }
  .case-content>div>a .case-left::before {
    content: "";
    display: block;
    padding-top: 75%;
  }
  .case-content>div>a .case-right {
    padding: 15px;
  }
  .case-content>div>a .case-right>h1 {
    line-height: 380x;
    font-size: 20px;
  }
  .case-content>div>a .case-right .case-text {
    margin-top: 5px;
    font-size: 14px;
    line-height: 20px;
  }
  .case-content>div>a .case-right .case-text>p {
    margin-bottom: 5px;
  }
  .case .more {
    margin: 15px 0 5px 0;
  }
  .case-list {
    justify-content: space-between;
  }
  .case-list>li {
    width: calc(50% - 5px);
    margin: 10px 0 0 0;
    padding: 15px;
  }
  .case-list>li .case-icon {
    height: 40px;
  }
  .case-list>li h1 {
    line-height: 24px;
    font-size: 16px;
    margin-top: 5px;
  }
  .case-list>li .case-texts {
    line-height: 20px;
    font-size: 12px;
    margin-top: 5px;
  }
}

/* 关于我们 */
.about {
  background-image: url(../images/about-bj.jpg);
  padding: 45px 0;
}
.about-content {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-top: 50px;
}
.about-left {
  width: 50%;
  overflow: hidden;
  position: relative;
}
.about-left::before {
  content: "";
  display: block;
  padding-top: 64.875143%;
}
.about-right {
  width: 50%;
  padding: 20px 35px;
  padding-right: 0;
}
.about-right>h1 {
  display: block;
  overflow: hidden;
  line-height: 50px;
  font-size: 50px;
  font-weight: bold;
  color: #fff;
  text-transform: uppercase;
}
.about-right .about-text {
  display: block;
  overflow: hidden;
  height: 210px;
  line-height: 30px;
  font-size: 16px;
  color: #fff;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 7;
  -webkit-box-orient: vertical;
  margin: 30px 0;
}
.about-right .about-list {
  display: flex;
  flex-wrap: wrap;
}
.about-right .about-list>li {
  flex: 1;
  padding: 0 5px;
}
.about-right .about-list>li .about-icon {
  width: 100%;
  overflow: hidden;
  position: relative;
  height: 60px;
}
.about-right .about-list>li>h1 {
  margin-top: 5px;
  display: block;
  overflow: hidden;
  line-height: 32px;
  font-size: 16px;
  color: #fff;
  text-align: center;
}
.about .more {
  margin-top: 50px;
}
.about .more>a:hover {
  background-color: #fff;
  color: #333;
}


@media (max-width: 1400px) {
  .about-content {
    margin-top: 40px;
  }
  .about .more {
    margin-top: 40px;
  }
}
@media (max-width: 1200px) {
  .about-content {
    margin-top: 30px;
  }
  .about .more {
    margin-top: 30px;
  }
}
@media (max-width: 991px) {
  .about {
    padding: 30px 0;
  }
  .about-content {
    margin-top: 20px;
  }
  .about-right {
    padding: 15px 20px;
    padding-right: 0;
  }
  .about-right .about-text {
    margin: 15px 0;
  }
  .about-right .about-list>li>h1 {
    font-size: 14px;
  }
  .about .more {
    margin-top: 20px;
  }
}
@media (max-width: 767px) {
  .about {
    padding: 15px 0;
  }
  .about-content {
    margin-top: 10px;
  }
  .about-left {
    width: 100%;
  }
  .about-right {
    width: 100%;
    padding: 10px 0;
  }
  .about-right>h1 {
    line-height: 30px;
    font-size: 20px;
  }
  .about-right .about-text {
    margin: 10px 0;
    height: auto;
    line-height: 24px;
    font-size: 14px;
    -webkit-line-clamp: initial;
  }
  .about .more {
    margin-top: 10px;
  }
}

/* 荣誉资质 */
.honor {
  background-color: #eaeaea;
  padding: 10px 0;
}
.honor-title {
  display: block;
  overflow: hidden;
  border-bottom: 1px solid #dfdedc;
  line-height: 54px;
  font-size: 24px;
  color: #fabe00;
  font-weight: bold;
  padding-left: 20px;
  position: relative;
  text-transform: uppercase;
}
.honor-title::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: var(--color-main);
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}
.honor-title>span {
  float: left;
  color: #333333;
  margin-right: 8px;
}
.honor .swiper {
  width: 100%;
  overflow: hidden;
  margin: 45px 0 50px 0;
}
.honor .swiper .swiper-slide {
  overflow: hidden;
  position: relative;
  padding: 30px 24px 30px 23px;
}
.honor .swiper .swiper-slide::before {
  content: "";
  width: 100%;
  height: 100%;
  background: url(../images/honor-img-hover.png) no-repeat center center;
  background-size: 100% 100%;
  position: absolute;
  left: 0;
  top: 0;
}
.honor .swiper .swiper-slide>a {
  width: 100%;
  float: left;
  overflow: hidden;
  position: relative;
  background-color: #fff;
}
.honor .swiper .swiper-slide>a::before {
  content: "";
  display: block;
  padding-top: 142.69663%;
}
.honor .swiper .swiper-slide>a:hover>img {
  transform: scale(1.1);
}

@media (max-width: 1400px) {
  .honor .swiper {
    margin: 45px 0;
  }
}
@media (max-width: 1200px) {
  .honor .swiper {
    margin: 30px 0;
  }
}
@media (max-width: 991px) {
  .honor .swiper {
    margin: 20px 0;
  }
}
@media (max-width: 767px) {
  .honor-title {
    line-height: 40px;
    font-size: 18px;
    padding-left: 15px;
  }
  .honor .swiper {
    margin: 10px 0;
  }
}

/* 设备展示 */
.device {
  padding: 50px 0;
}
.device-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 30px;
}
.device-nav>li>a {
  display: block;
  overflow: hidden;
  line-height: 24px;
  padding: 10px 15px;
  font-size: 16px;
  color: #333;
  border-radius: 30px;
}
.device-nav>li.device-active>a::before {
  left: -40px;
}
.device-nav>li.device-active>a::after {
  right: -40px;
}
.device-content {
  display: block;
  overflow: hidden;
  margin-top: 30px;
}
.device-content>div {
  display: none;
}
.device-content>div:first-child {
  display: block;
}
.device-list {
  display: flex;
  flex-wrap: wrap;
  width: 1408px;
}
.device-list>li {
  width: 344px;
  margin: 0 8px 10px 0;
}
.device-list>li>a {
  width: 100%;
  float: left;
  overflow: hidden;
  position: relative;
}
.device-list>li>a::before {
  content: "";
  display: block;
  padding-top: 80.61628%;
}
.device-list>li>a>h1 {
  width: 100%;
  overflow: hidden;
  height: 40px;
  line-height: 40px;
  font-size: 16px;
  color: #333;
  text-align: center;
  background-color: #efefef;
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: 2;
}
.device .more {
  margin-top: 30px;
}
.device .more>a {
  background-color: #282828;
  color: #fff;
}

@media (max-width: 1400px) {
  .device-list {
    width: calc(100% + 8px);
    margin-left: -4px;
  }
  .device-list>li {
    width: calc(25% - 8px);
    margin: 0 4px 10px 4px;
  }
}
@media (max-width: 991px) {
  .device {
    padding: 30px 0;
  }
}
@media (max-width: 767px) {
  .device {
    padding: 15px 0;
  }
  .device-nav {
    margin-top: 10px;
  }
  .device-nav>li>a {
    padding: 5px 10px;
    font-size: 14px;
  }
  .device-content {
    margin-top: 10px;
  }
  .device-list {
    width: 100%;
    margin-left: 0;
    justify-content: space-between;
  }
  .device-list>li {
    width: calc(50% - 5px);
    margin: 0 0 10px 0;
  }
  .device .more {
    margin-top: 5px;
  }
}

/* 新闻中心 */
.news {
  background-color: #282828;
  padding: 45px 0;
}
.news-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 20px;
}
.news-nav>li>a {
  display: block;
  overflow: hidden;
  line-height: 24px;
  padding: 10px 15px;
  font-size: 16px;
  color: #fff;
  border-radius: 30px;
}
.news-nav>li.news-active>a::before {
  left: -40px;
}
.news-nav>li.news-active>a::after {
  right: -40px;
}
.news-content {
  display: block;
  overflow: hidden;
  margin-top: 40px;
}
.news-content>div {
  display: none;
}
.news-content>div:first-child {
  display: block;
}
.news-list {
  display: block;
  overflow: hidden;
  width: calc(100% + 10px);
  margin-left: -5px;
}
.news-list>li {
  width: calc(calc(100% / 3) - 10px);
  margin: 0 5px 10px 5px;
  float: left;
}
.news-list>li>a {
  display: flex;
  flex-wrap: wrap;
  background-color: #fff;
  border-radius: 10px;
  overflow: hidden;
}
.news-list>li>a>.img {
  display: none;
  width: 100%;
  overflow: hidden;
  position: relative;
  border-radius: 10px;
}
.news-list>li>a>.img::before {
  content: "";
  display: block;
  padding-top: 43.26087%;
}
.news-list>li>a .news-box {
  flex: 1;
  padding: 25px;
  color: #333333;
}
.news-list>li>a .news-box>h1 {
  display: block;
  overflow: hidden;
  line-height: 34px;
  font-size: 16px;
  color: inherit;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.news-list>li>a .news-box .news-text {
  display: block;
  overflow: hidden;
  height: 72px;
  line-height: 24px;
  font-size: 14px;
  color: inherit;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  margin: 10px 0;
}
.news-list>li>a .news-box .news-time {
  display: block;
  overflow: hidden;
  line-height: 20px;
  padding-left: 25px;
  font-size: 14px;
  color: #a2a2a2;
  position: relative;
}
.news-list>li>a .news-box .news-time::before {
  content: "\f017";
  font-family: FontAwesome;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%) rotateY(180deg);
  font-size: 16px;
  color: var(--color-main);
}
.news-list>li>a:hover .news-box>h1,
.news-list>li>a:hover .news-box .news-text,
.news-list>li>a:hover .news-box .news-time,
.news-list>li>a:hover .news-box .news-time::before {
  color: #fff;
}
.news-list>li:first-child>a>.img {
  display: block;
}
.news-list>li:first-child>a .news-box {
  padding: 29px;
}
.news .more {
  margin-top: 30px;
}

@media (max-width: 991px) {
  .news {
    padding: 30px 0;
  }
  .news-content {
    margin-top: 20px;
  }
  .news-list>li:first-child>a .news-box {
    padding: 20px;
  }
  .news .more {
    margin-top: 15px;
  }
}
@media (max-width: 767px) {
  .news {
    padding: 15px 0;
  }
  .news-nav {
    margin-top: 10px;
  }
  .news-nav>li>a {
    padding: 5px 10px;
    font-size: 14px;
  }
  .news-content {
    margin-top: 10px;
  }
  .news-list {
    width: 100%;
    margin-left: 0;
  }
  .news-list>li {
    width: 100%;
    margin: 0 0 10px 0;
  }
  .news-list>li>a .news-box {
    padding: 15px !important;
  }
  .news-box {
    padding: 15px;
  }
  .news-list>li>a .news-box>h1 {
    line-height: 24px;
  }
  .news-list>li>a .news-box .news-text {
    height: 60px;
    line-height: 20px;
    margin: 5px 0;
  }
  .news .more {
    margin-top: 5px;
  }
}
/* END-首页样式 */

/* 关于我们 */
.main {
  width: 100%;
  overflow: hidden;
  background-color: #ececec;
}
.menu-contact {
  display: block;
  overflow: hidden;
  background-color: #333;
  padding: 30px 15px;
  font-size: 16px;
  line-height: 30px;
  color: #fff;
}
.menu-contact>span {
  color: var(--color-main);
}
.place-title {
  width: 100%;
  float: left;
  line-height: 24px;
  font-size: 16px;
  color: #333333;
  margin-top: 20px;
  padding-left: 5px;
}
.place-content {
  width: 100%;
  float: left;
  padding-top: 20px;
}
.company {
  display: block;
  overflow: hidden;
  font-size: 16px;
  line-height: 30px;
  color: #333;
}
.company  img{ max-width:100% !important; height:auto !important; margin:5px;}

@media (max-width: 767px) {
  .place-content {
    padding: 20px 0;
  }
  .company {
    line-height: 24px;
    font-size: 14px;
  }
}
/* END-关于我们 */

/* 产品中心 */
.product-details{
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.product-details-left{
  width: 49%;
}
.product-details-left>img{
  display: block;
  width: 100%;
  height: auto;
}
.product-details-right{
  width: 49%;
}
.product-details-right>h1{
  display: block;
  overflow: hidden;
  font-size: 20px;
  font-weight: bold;
  line-height: 30px;
  padding-bottom: 10px;
  margin-bottom: 10px;
  border-bottom: 1px dashed #ccc;
}
.product-details-tabel{
  display: block;
  overflow: hidden;
}
.product-details-content{
  width: 100%;
  float: left;
  margin-top: 30px;
  font-size: 16px;
  line-height: 30px;
  color: #333;
}
.product-details-content>img{
  display: block;
  max-width: 100% !important;
  height: auto !important;
  margin: 0 auto;
}
.product-details-title{
  display: block;
  overflow: hidden;
  background-color: #fff;
  margin-bottom: 20px;
}
.product-details-title>span{
  float: left;
  background-color: var(--color-hover);
  color: #fff;
  line-height: 50px;
  padding: 0 20px;
  text-align: center;
  font-size: 18px;
}

.product-details-tabel table {
  width: 100% !important;
  float: left;
  height: auto !important;
  border:1px solid #999999 !important;
  border-collapse:collapse;
}
.product-details-tabel table tr td{
  width: auto !important;
  height: auto !important;
  border:1px solid #999999 !important;
  border-collapse:collapse;
}

.product-details-content table {
  width: 100% !important;
  float: left;
  height: auto !important;
  border:1px solid #999999 !important;
  border-collapse:collapse;
}
.product-details-content table tr td{
  width: auto !important;
  height: auto !important;
  border:1px solid #999999 !important;
  border-collapse:collapse;
}



@media (max-width: 991px) {
.product-details-left{
  width: 100%;
}
.product-details-right{
  width: 100%;
  margin-top: 15px;
}



}



.case-details {
  display: block;
  overflow: hidden;
}
.case-details-title {
  display: block;
  overflow: hidden;
  text-align: center;
  font-size: 20px;
  font-weight: bold;
  line-height: 30px;
  padding-bottom: 10px;
  border-bottom: 1px dashed #ccc;
}
.case-details-img {
  display: block;
  overflow: hidden;
  padding-top: 20px;
}
.case-details-img img {
  display: block;
  max-width: 100% !important;
  height: auto !important;
  margin: 0 auto;
}
.case-details-content {
  display: block;
  overflow: hidden;
  font-size: 16px;
  line-height: 30px;
  padding-top: 20px;
}
.case-details-content>p{
  width: 100%;
  float: left;
}
.case-details-content img {
  display: block;
  max-width: 100% !important;
  height: auto !important;
  margin: 0 auto 5px auto;
}
.case-details-content table {
  width: 100% !important;
  float: left;
  height: auto !important;
  border:1px solid #999999 !important;
  border-collapse:collapse;
  margin-top: 20px;
}
.case-details-content table tr td{
  width: auto !important;
  height: auto !important;
  border:1px solid #999999 !important;
  border-collapse:collapse;
}

@media (max-width: 1200px) {
  .case-details-img {
    width:100%; 
    padding-right: 0;
  }
}
@media (max-width: 767px) {
  .case-details-title {
    font-size: 16px;
  }
  .case-details-content {
    padding-top: 10px;
    line-height: 24px;
    font-size: 14px;
  }
}
/* END-产品中心 */

/* 案例展示 */

/* END-案例展示 */

/* 设备展示 */

/* END-案例展示 */

/* 荣誉资质 */
.honor-list {
  display: flex;
  flex-wrap: wrap;
  width: 102%;
  margin-left: -1%;
}
.honor-list>li {
  width: 23%;
  margin: 0 1% 2% 1%;
  overflow: hidden;
  position: relative;
  padding: 30px 24px 30px 23px;
}
.honor-list>li::before {
  content: "";
  width: 100%;
  height: 100%;
  background: url(../images/honor-img-hover.png) no-repeat center center;
  background-size: 100% 100%;
  position: absolute;
  left: 0;
  top: 0;
}
.honor-list>li>a {
  width: 100%;
  float: left;
  overflow: hidden;
  position: relative;
  background-color: #fff;
}
.honor-list>li>a::before {
  content: "";
  display: block;
  padding-top: 142.69663%;
}
.honor-list>li>a:hover>img {
  transform: scale(1.05);
}

@media (max-width: 991px) {
  .honor-list>li {
    width: calc(calc(100% / 3) - 2%);
  }
}
@media (max-width: 767px) {
  .honor-list {
    width: 100%;
    margin-left: 0;
    justify-content: space-between;
  }
  .honor-list>li {
    width: calc(50% - 5px);
    margin: 0 0 10px 0;
  }
}
/* END-荣誉资质 */

/* 新闻中心 */
.place-content .news-list {
  display: block;
  flex-wrap: wrap;
}
.place-content .news-list>li>a .img {
  display: block !important;
}
.place-content .news-list>li>a .news-box {
  padding: 25px !important;
}

.news-details {
  display: block;
  overflow: hidden;
  background-color: #fff;
  padding: 25px;
}
.news-details-title {
  display: block;
  overflow: hidden;
  text-align: center;
  font-size: 20px;
  font-weight: bold;
  line-height: 30px;
}
.news-details-time {
  display: block;
  overflow: hidden;
  text-align: center;
  font-size: 14px;
  color: var(--color6);
  line-height: 1.1;
  padding: 15px 0;
  border-bottom: 1px dashed var(--colorC);
}
.news-details-content {
  display: block;
  overflow: hidden;
  font-size: 16px;
  line-height: 30px;
  padding-top: 20px;
}
.news-details-content img {
  display: block;
  max-width: 100% !important;
  height: auto !important;
  margin: 0 auto;
}

@media (max-width: 991px) {
  .place-content .news-list>li {
    width: calc(50% - 10px);
  }
}
@media (max-width: 767px) {
  .place-content .news-list>li {
    width: 100%;
  }
  .place-content .news-list>li>a .news-box {
    padding: 15px !important;
  }

  .news-details {
    padding: 15px;
  }
  .news-details-title {
    font-size: 16px;
  }
  .news-details-time {
    padding: 5px 0;
  }
  .news-details-content {
    line-height: 24px;
    font-size: 14px;
  }
}
/* END-新闻中心 */

/* 联系我们 */
.contact {
  display: flex;
  flex-wrap: wrap
}
.contact-text {
  width: 100%;
  float: left;
  font-size: 16px;
  line-height: 30px;
  color: #333;
  background-color: #fff;
  padding: 25px
}
.contact-text>span {
  color: var(--color-main);
  font-weight: bold;
}
.contact-map {
  width: 100%;
  float: left;
  overflow: hidden;
  height: 400px;
  border: none
}
@media (max-width:767px) {
  .contact-text {
    width: 100%;
    padding: 15px;
    font-size: 14px;
    line-height: 24px
  }
  .contact-map {
    width: 100%;
    height: 300px
  }
}
/* END-联系我们 */