@charset "UTF-8";
/*
 * @Author: Code Zhuang
 * @Date: 2023-05-24 16:39:40
 * @Last Modified by: Code Zhuang
 * @Last Modified time: 2023-05-25 13:22:08
 */

/* Animate.css动画演示 */
@import "../plugin/swiper/animate.min.css";

/* Swiper 7.4.1 */
@import "../plugin/swiper/swiper-bundle.min.css";

/* 字体图标 */
@import "../plugin/font/css/font-awesome.min.css";

/* 核心样式 */
@import "../css/core/bootstrap.min.css";

/* 公用样式 */
@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: flex;
  flex-direction: column;
  align-items: center;
}
.title>h1 {
  padding: 0 15px;
  position: relative;
  line-height: 42px;
  font-size: 36px;
  color: var(--color2);
}
.title>h1::before,
.title>h1::after {
  content: "";
  width: 58px;
  height: 4px;
  float: left;
  background-image: url(../images/title-left.png);
  background-position: center;
  background-repeat: no-repeat;
  background-size: 100% 100%;
  position: absolute;
  right: 100%;
  top: 50%;
  transform: translateY(-50%);
}
.title>h1::after {
  background-image: url(../images/title-right.png);
  right: initial;
  left: 100%;
}
.title>div {
  margin-top: 10px;
  line-height: 26px;
  font-size: 24px;
  color: #c8c8c8;
  text-transform: uppercase;
}

@media (max-width: 767px) {
  .title>h1 {
    line-height: 30px;
    font-size: 20px;
    padding: 0 10px;
  }
  .title>div {
    font-size: 14px;
    line-height: 20px;
    margin: 0;
  }

}

/* 首页样式 */
/* 关于我们 */
.about {
  background-image: url(../images/about-bj.jpg);
  padding: 75px 0 100px 0;
}
.about-content {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  flex-direction: row-reverse;
  margin-top: 40px;
}
.about-left {
  width: 46.25%;
  padding: 0 25px 20px 0;
  position: relative;
  z-index: 0;
  margin-top: 6px;
}
.about-left .img {
  height: 100%;
}
.about-left .img::before {
  padding-top: 49.26036%;
}
.about-left::before {
  content: "";
  width: calc(100% - 24px);
  height: 100%;
  position: absolute;
  right: 0;
  top: 0;
  z-index: -1;
  background-image: linear-gradient(#fff, #000);
}
.about-right {
  width: 49%;
}
.about-title {
  display: block;
  overflow: hidden;
  line-height: 36px;
}
.about-title>h1 {
  float: left;
  font-size: 24px;
  color: var(--color2);
  font-weight: bold;
  border-bottom: 2px solid #000;
}
.about-title>div {
  float: left;
  font-size: 18px;
  color: var(--color9);
  padding: 0 5px;
  border-bottom: 1px solid var(--colorC);
}
.about-text {
  display: block;
  overflow: hidden;
  margin-top: 30px;
  font-size: 14px;
  line-height: 30px;
  color: var(--color6);
  height: 180px;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 6;
  -webkit-box-orient: vertical;
}
.about-more {
  display: block;
  overflow: hidden;
  margin-top: 25px;
}
.about-more>a {
  width: 120px;
  height: 30px;
  float: left;
  line-height: 30px;
  text-align: center;
  padding: 0 10px;
  border-radius: 5px;
  background-color: var(--color-main);
  font-size: 14px;
  color: #fff;
}
.about-more>a:hover {
  background-color: #000;
}

@media (max-width: 1440px) {
  .about {
    padding: 75px 0;
  }
}
@media (max-width: 1240px) {
  .about {
    padding: 50px 0;
  }
}
@media (max-width: 991px) {
  .about {
    padding: 30px 0;
  }
  .about-content {
    margin-top: 20px;
  }
}
@media (max-width: 767px) {
  .about {
    padding: 15px 0;
  }
  .about-content {
    margin-top: 10px;
  }
  .about-left {
    width: 100%;
  }
  .about-right {
    width: 100%;
    margin-top: 15px;
  }
  .about-title>h1 {
    font-size: 18px;
  }
  .about-title>div {
    font-size: 14px;
  }
  .about-text {
    margin-top: 10px;
    line-height: 24px;
    height: auto;
    -webkit-line-clamp: initial;
  }
  .about-more {
    margin-top: 10px;
  }
}

/* 横幅 */
.hf {
  background-color: var(--color-main);
  padding: 45px 0;
}
.hf>.container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-evenly;
}
.hf-box {
  width: 24%;
  border: 1px solid #ed944c;
  padding: 9px;
  display: flex;
}
.hf-box>div {
  flex: 1;
  border: 1px solid #fff;
  display: flex;
  align-items: center;
  align-content: center;
  padding: 10px 20px;
}
.hf-box>div .hf-icon {
  width: 68px;
  height: 68px;
  border-radius: 50%;
  background-color: #fff;
  overflow: hidden;
  position: relative;
  margin-right: 10px;
}
.hf-box>div>h1 {
  flex: 1;
  font-size: 16px;
  line-height: 24px;
  color: #fff;
}

@media (max-width: 1440px) {
  .hf-box {
    width: 30%;
  }
}
@media (max-width: 1240px) {
  .hf-box {
    width: 32%;
  }
}
@media (max-width: 991px) {
  .hf {
    padding: 20px 0;
  }
  .hf-box>div {
    padding: 10px;
  }
  .hf-box>div>h1 {
    font-size: 14px;
    line-height: 22px;
  }
}
@media (max-width: 767px) {
  .hf {
    padding: 15px 0;
  }
  .hf-box {
    width: 32%;
    margin-bottom: 10px;
    padding: 4px;
  }
  .hf-box>div {
    flex-direction: column;
  }
  .hf-box>div .hf-icon {
    width: 50px;
    height: 50px;
    margin: 0;
  }
  .hf-box>div>h1 {
    margin-top: 5px;
    text-align: center;
  }
}

/* 产品中心 */
.product {
  padding: 70px 0;
}
.product-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 25px;
}
.product-nav>li {
  flex: 1;
}
.product-nav>li>a {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  align-content: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  border-top: 1px solid #e5e5e5;
  border-bottom: 1px solid #e5e5e5;
  line-height: 30px;
  padding: 14px 0;
  font-size: 16px;
  color: var(--color2);
  position: relative;
  z-index: 0;
}
.product-nav>li>a::before,
.product-nav>li>a::after {
  content: "";
  width: 200%;
  height: 100%;
  transform: skewX(45deg);
  transition: all linear 0.3s;
  background-color: var(--black);
  position: absolute;
  left: -300%;
  top: 0;
  z-index: -1;
}
.product-nav>li>a::after {
  left: initial !important;
  right: -300%;
}
.product-nav>li.product-active>a {
  color: #fff;
  border-color: #000;
}
.product-nav>li.product-active>a::before {
  left: -40px;
}
.product-nav>li.product-active>a::after {
  right: -40px;
}
.product-more {
  width: 100px;
  display: flex;
}
.product-more>a {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  align-content: center;
  justify-content: center;
  overflow: hidden;
  min-height: 60px;
  background-color: #000;
  font-size: 14px;
  color: #fff;
}
.product-content {
  display: block;
  overflow: hidden;
  margin-top: 30px;
}
.product-content>div {
  display: none;
}
.product-content>div:first-child {
  display: block;
}
.product-list {
  display: flex;
  flex-wrap: wrap;
  width: 1540px;
}
.product-list>li {
  width: 365px;
  margin: 0 20px 20px 0;
}
.product-list>li>a {
  display: block;
  overflow: hidden;
  border: 1px solid #eee;
  padding: 20px 12px;
  padding-bottom: 0;
  position: relative;
}
.product-list>li>a .img {
  margin-bottom: 60px;
}
.product-list>li>a .img::before {
  padding-top: 68.2353%;
}
.product-list>li>a>h1 {
  width: 100%;
  height: 60px;
  padding: 12px;
  line-height: 38px;
  text-align: center;
  font-size: 14px;
  color: var(--color3);
  display: flex;
  flex-direction: column;
  align-items: center;
  align-content: center;
  justify-content: flex-end;
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: 2;
}
.product-list>li>a>h1::after {
  content: "+";
  width: 30px;
  height: 0;
  display: flex;
  line-height: 30px;
  align-items: center;
  align-content: center;
  justify-content: center;
  overflow: hidden;
  text-align: center;
  display: block;
  background-color: #fff;
  font-family: SimSun;
  font-size: 16px;
  font-weight: bold;
  color: #2468b7;
}
.product-list>li>a:hover>h1 {
  height: 100%;
  background-color: rgba(0, 0, 0, 0.8);
  color: #fff;
  font-size: 16px;
  padding-bottom: 50px;
}
.product-list>li>a:hover>h1::after {
  height: 30px;
  margin-top: 13px;
}

.product-M {
  display: flex;
  justify-content: center;
  margin-top: 10px;
}
.product-M>a {
  width: 180px;
  height: 55px;
  font-size: 16px;
  color: #fff;
  background-color: #000;
  display: flex;
  align-items: center;
  align-content: center;
  justify-content: center;
}

@media (max-width: 1560px) {
  .product-list {
    width: 102%;
    margin-left: -1%;
  }
  .product-list>li {
    width: 23%;
    margin: 0 1% 20px 1%;
  }
}
@media (max-width: 1240px) {
  .product {
    padding: 50px 0;
  }
  .product-nav>li {
    flex: none;
    width: calc(100% / 6);
  }
}
@media (max-width: 991px) {
  .product {
    padding: 30px 0;
  }
  .product-nav>li {
    width: 20%;
  }
  .product-list>li>a {
    padding: 12px;
    padding-bottom: 0;
  }
  .product-list>li>a:hover>h1 {
    padding-bottom: 20px;
  }
}
@media (max-width: 767px) {
  .product {
    padding: 15px 0;
  }
  .product-nav {
    margin-top: 10px;
  }
  .product-nav>li {
    width: 50%;
  }
  .product-nav>li>a {
    line-height: 24px;
    padding: 5px;
    font-size: 14px;
  }
  .product-more>a {
    min-height: 24px;
    padding: 5px;
  }
  .product-content {
    margin-top: 10px;
  }
  .product-list {
    width: 100%;
    margin-left: 0;
    justify-content: space-between;
  }
  .product-list>li {
    width: calc(50% - 5px);
    margin: 0 0 10px 0;
  }
  .product-list>li>a {
    padding: 5px;
    padding-bottom: 0;
  }
  .product-list>li>a .img {
    margin-bottom: 40px;
  }
  .product-list>li>a>h1 {
    width: 100%;
    height: 40px;
    padding: 5px;
    line-height: 30px;
  }

  .product-M>a {
    width: 120px;
    height: 30px;
    font-size: 14px;
  }
}

/* 工厂设备 */
.equipment {
  background-image: url(../images/equipment-bj.jpg);
  padding: 70px 0;
}
.equipment-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow: hidden;
  margin-top: 35px;
}
.equipment-content .swiper {
  width: 100%;
  max-width: 688px;
  overflow: visible;
}
.equipment-content .swiper .swiper-slide {
  opacity: 0.5;
}
.equipment-content .swiper .swiper-slide>a {
  width: 100%;
  float: left;
  border-radius: 10px;
  overflow: hidden;
  position: relative;
}
.equipment-content .swiper .swiper-slide>a::before {
  content: "";
  display: block;
  padding-top: 62.93605%;
}
.equipment-content .swiper .swiper-slide>a .equipment-hover {
  width: 100%;
  background-color: rgba(0, 0, 0, 0.8);
  padding: 25px 30px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: absolute;
  left: 0;
  bottom: -100%;
}
.equipment-content .swiper .swiper-slide>a .equipment-hover>h1 {
  width: calc(100% - 160px);
  line-height: 24px;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.8);
  text-overflow: ellipsis;
  white-space: nowrap;
  overflow: hidden;
}
.equipment-content .swiper .swiper-slide>a .equipment-hover>h1>span {
  display: block;
  overflow: hidden;
  font-size: 16px;
  color: #fff;
  font-weight: bold;
  margin-bottom: 5px;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.equipment-content .swiper .swiper-slide>a .equipment-hover .equipment-more {
  width: 132px;
  height: 50px;
  border: 1px solid rgba(255, 255, 255, 0.8);
  border-radius: 10px;
  display: flex;
  align-items: center;
  align-content: center;
  justify-content: center;
  font-size: 14px;
  color: #fff;
  margin-left: 28px;
}
.equipment-content .swiper .swiper-slide-active {
  opacity: 1;
}
.equipment-content .swiper .swiper-slide-active>a .equipment-hover {
  bottom: 0;
}
.equipment-bottom {
  width: 100%;
  overflow: hidden;
  display: flex;
  justify-content: center;
  margin-top: 45px;
}
.equipment-bottom>div {
  min-width: 274px;
  height: 64px;
  border: 1px solid #b7b7b7;
  background-color: #fff;
  border-radius: 32px;
  padding: 7px;
  display: flex;
  align-items: center;
  align-content: center;
  justify-content: space-between;
}
.equipment-bottom>div .prev-button,
.equipment-bottom>div .next-button {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background-color: #a5a5a5;
  display: flex;
  align-items: center;
  align-content: center;
  justify-content: center;
  font-family: SimSun;
  font-size: 30px;
  font-weight: bold;
  color: #fff;
  cursor: pointer;
}
.equipment-bottom>div .prev-button::before {
  content: "<";
}
.equipment-bottom>div .next-button::before {
  content: ">";
}
.equipment-bottom>div .prev-button:hover,
.equipment-bottom>div .next-button:hover {
  background-color: var(--color-hover);
}
.equipment-bottom>div .swiper-pagination {
  flex: 1;
  position: relative;
  left: 0;
  bottom: 0;
  height: 48px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  align-content: center;
  padding: 0 10px;
}
.equipment-bottom>div .swiper-pagination .swiper-pagination-bullet {
  width: 14px;
  height: 14px;
  background: #e4e4e4;
  opacity: 1;
}
.equipment-bottom>div .swiper-pagination .swiper-pagination-bullet-active {
  background-color: #c1c1c1;
}

@media (max-width: 1240px) {
  .equipment {
    padding: 50px 0;
  }
  .equipment-content {
    margin-top: 30px;
  }
  .equipment-content .swiper {
    max-width: 58%;
  }
}
@media (max-width: 991px) {
  .equipment {
    padding: 30px 0;
  }
  .equipment-content .swiper {
    max-width: 70%;
  }
  .equipment-bottom {
    margin-top: 30px;
  }
}
@media (max-width: 767px) {
  .equipment {
    padding: 15px 20px;
  }
  .equipment-content {
    margin-top: 10px;
  }
  .equipment-content .swiper {
    max-width: 100%;
  }
  .equipment-content .swiper .swiper-slide>a .equipment-hover {
    padding: 15px;
  }
  .equipment-content .swiper .swiper-slide>a .equipment-hover>h1 {
    width: calc(100% - 100px);
  }
  .equipment-content .swiper .swiper-slide>a .equipment-hover .equipment-more {
    width: 90px;
    height: 30px;
    margin-left: 10px;
  }

  .equipment-bottom {
    margin-top: 10px;
  }
  .equipment-bottom>div {
    min-width: 100%;
    height: auto;
    padding: 4px;
  }
  .equipment-bottom>div .prev-button,
  .equipment-bottom>div .next-button {
    width: 38px;
    height: 38px;
  }
  .equipment-bottom>div .swiper-pagination {
    height: 38px;
  }
}

/* 4大优势 */
.choose {
  background-image: url(../images/choose-bj.jpg);
  padding: 75px 0;
}
.choose-title {
  display: block;
  overflow: hidden;
  text-align: center;
}
.choose-title>div {
  line-height: 64px;
  font-size: 72px;
  font-family: Arial;
  font-weight: bold;
  color: rgba(0, 0, 0, 0.2);
  text-transform: uppercase;
}
.choose-title>h1 {
  display: block;
  overflow: hidden;
  line-height: 58px;
  font-size: 48px;
  color: #252525;
  font-weight: bold;
  letter-spacing: 2px;
  margin-top: -24px;
  position: relative;
  z-index: 2;
}
.choose-title>h1>span {
  color: var(--color-main);
}
.choose-list {
  display: block;
  overflow: hidden;
  margin-top: 40px;
}
.choose-list>li {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  flex-direction: row-reverse;
  overflow: hidden;
  margin-top: 40px;
}
.choose-list>li .choose-left {
  width: 50%;
}
.choose-list>li .choose-left>img {
  max-width: 100%;
  display: block;
  height: auto;
  margin: 0 auto;
}
.choose-list>li .choose-right {
  width: 50%;
  padding-right: 70px;
}
.choose-list>li .choose-right .choose-number {
  float: left;
  margin: 0 25px 25px 0;
  width: 84px;
  height: 84px;
  font-size: 48px;
  color: #fff;
  font-weight: bold;
  background: url(../images/choose-number.png) no-repeat center center;
  background-size: 100% 100%;
  display: flex;
  align-items: center;
  align-content: center;
  justify-content: center;
}
.choose-list>li .choose-right>h1 {
  display: block;
  overflow: hidden;
  line-height: 20px;
  font-size: 16px;
  color: var(--color-main);
  text-transform: uppercase;
}
.choose-list>li .choose-right>h1>span {
  display: block;
  overflow: hidden;
  line-height: 46px;
  font-size: 36px;
  color: var(--color2);
  margin-bottom: 10px;
}
.choose-list>li .choose-right .choose-box {
  display: block;
  overflow: hidden;
  margin-top: 25px;
}
.choose-list>li .choose-right .choose-text {
  display: block;
  overflow: hidden;
  line-height: 30px;
  font-size: 16px;
  color: var(--color3);
}
.choose-list>li .choose-right .choose-hotline {
  display: block;
  overflow: hidden;
  margin-top: 15px;
  line-height: 24px;
  padding-left: 24px;
  background: url(../images/choose-hotline.png) no-repeat left center;
  font-size: 16px;
  color: var(--color2);
}

.choose-list>li:nth-child(even) {
  flex-direction: row;
}
.choose-list>li:nth-child(even) .choose-right {
  padding: 0 0 0 70px;
}

@media (max-width: 1240px) {
  .choose {
    padding: 50px 0;
  }
  .choose-list {
    margin-top: 30px;
  }
  .choose-list>li {
    margin-top: 30px;
  }
  .choose-list>li .choose-right {
    padding: 0 50px 0 0;
  }
  .choose-list>li:nth-child(even) .choose-right {
    padding: 0 0 0 50px;
  }
}
@media (max-width: 991px) {
  .choose {
    padding: 30px 0;
  }
  .choose-list {
    margin-top: 20px;
  }
  .choose-list>li {
    margin-top: 20px;
  }
  .choose-list>li .choose-right {
    padding: 0 30px 0 0;
  }
  .choose-list>li .choose-right .choose-number {
    margin: 0 25px 0 0;
  }
  .choose-list>li .choose-right>h1>span {
    line-height: 40px;
    font-size: 30px;
  }
  .choose-list>li:nth-child(even) .choose-right {
    padding: 0 0 0 30px;
  }
}
@media (max-width: 767px) {
  .choose {
    padding: 15px 0;
  }
  .choose-title>div {
    line-height: 20px;
    font-size: 20px;
  }
  .choose-title>h1 {
    line-height: 30px;
    font-size: 20px;
    margin-top: -5px;
  }

  .choose-list {
    margin-top: 0;
  }
  .choose-list>li {
    margin-top: 10px;
  }
  .choose-list>li .choose-left {
    width: 100%;
  }
  .choose-list>li .choose-right {
    width: 100%;
    padding: 10px 0 0 0;
  }
  .choose-list>li .choose-right .choose-number {
    width: 50px;
    height: 50px;
    font-size: 20px;
    margin: 0 10px 0 0;
  }
  .choose-list>li .choose-right>h1 {
    font-size: 14px;
  }
  .choose-list>li .choose-right>h1>span {
    line-height: 30px;
    font-size: 20px;
    margin: 0;
  }
  .choose-list>li .choose-right .choose-box {
    margin-top: 10px;
  }
  .choose-list>li .choose-right .choose-box .choose-text {
    font-size: 14px;
    line-height: 24px;
  }
  .choose-list>li .choose-right .choose-hotline {
    margin-top: 10px;
    font-size: 14px;
  }
  .choose-list>li:nth-child(even) .choose-right {
    padding: 10px 0 0 0;
  }
}

/* 新闻中心 */
.news {
  padding: 70px 0;
}
.news-list {
  display: flex;
  flex-wrap: wrap;
  width: 1560px;
}
.news-list>li {
  width: 480px;
  margin: 40px 40px 0 0;
}
.news-list>li>a {
  display: flex;
  flex-direction: column;
}
.news-list>li>a .img::before {
  content: "";
  display: block;
  padding-top: 46.875%;
}
.news-list>li>a .img .news-time {
  float: left;
  background-color: #fff;
  padding: 13px 10px;
  text-align: center;
  line-height: 16px;
  font-size: 14px;
  color: var(--color-main);
  position: absolute;
  right: 20px;
  bottom: 0;
  z-index: 2;
}
.news-list>li>a .img .news-time>span {
  display: block;
  overflow: hidden;
  line-height: 28px;
  font-size: 30px;
}
.news-list>li>a .news-box {
  display: block;
  overflow: hidden;
  background-color: #f5f5f5;
  padding: 25px 20px 40px 20px;
}
.news-list>li>a .news-box>h1 {
  display: block;
  overflow: hidden;
  line-height: 26px;
  font-size: 16px;
  color: var(--color3);
  font-weight: bold;
  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: var(--color6);
  margin-top: 10px;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
}
.news-list>li>a .news-box .news-more {
  display: block;
  overflow: hidden;
  height: 18px;
  line-height: 18px;
  font-size: 14px;
  color: #eb8d37;
  margin-top: 15px;
}
.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-more {
  color: #fff;
}


@media (max-width: 1560px) {
  .news-list {
    width: 102%;
    margin-left: -1%;
  }
  .news-list>li {
    width: calc(calc(100% / 3) - 2%);
    margin: 40px 1% 0 1%;
  }
}
@media (max-width: 1240px) {
  .news {
    padding: 50px 0;
  }
  .news-list>li {
    margin: 30px 1% 0 1%;
  }
}
@media (max-width: 991px) {
  .news {
    padding: 30px 0;
  }
  .news-list>li {
    margin: 20px 1% 0 1%;
  }
}
@media (max-width: 767px) {
  .news {
    padding: 15px 0;
  }
  .news-list {
    width: 100%;
    margin-left: 0;
    justify-content: space-between;
  }
  .news-list>li {
    width: 100%;
    margin: 10px 0 0 0;
  }
  .news-list>li>a {
    flex-direction: row;
  }
  .news-list>li>a .img {
    width: 40%;
  }
  .news-list>li>a .news-box {
    width: 60%;
    padding: 10px;
    padding-left: 15px;
  }
  .news-list>li>a .news-box .news-text {
    height: 48px;
    margin-top: 5px;
    -webkit-line-clamp: 2;
  }
  .news-list>li>a .news-box .news-more {
    margin-top: 5px;
  }
}
/* END-首页样式 */

/* 关于我们 */
.main {
  width: 100%;
  overflow: hidden;
  padding: 45px 0;
}
.place-title {
  width: 100%;
  float: left;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}
.place-title>h1 {
  line-height: 24px;
  font-size: 18px;
  color: #c8c8c8;
  text-transform: uppercase;
}
.place-title>h1>span {
  display: block;
  line-height: 48px;
  font-size: 36px;
  color: var(--color2);
  position: relative;
}
.place-title>h1>span::before {
  content: "";
  width: 58px;
  height: 4px;
  background: url(../images/title-right.png) no-repeat left center;
  position: absolute;
  left: 0;
  top: 53px;
}
.place-title>div {
  line-height: 24px;
  font-size: 14px;
  color: var(--color6);
}
.place-title>div>span {
  color: var(--color2);
  text-decoration: underline;
}

.menu-list {
  width: 100%;
  float: left;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 25px;
  padding-top: 1px;
}
.menu-list>li {
  width: 10%;
  overflow: hidden;
  display: flex;
  margin-top: -1px;
}
.menu-list>li>a {
  width: 100%;
  border-top: 1px solid #e5e5e5;
  border-bottom: 1px solid #e5e5e5;
  line-height: 24px;
  font-size: 16px;
  color: var(--color2);
  text-align: center;
  padding: 17px 5px;
}
.menu-list>li>a::before,
.menu-list>li>a::after {
  background-color: #000;
}
.menu-list>li:hover>a,
.menu-list>li.menu-active>a {
  color: #fff;
  border-color: #000;
}
.menu-list>li.menu-active>a::before {
  left: -30px;
}
.menu-list>li.menu-active>a::after {
  right: -30px;
}

.place-content {
  width: 100%;
  float: left;
  padding-top: 20px;
}
.company {
  display: block;
  overflow: hidden;
  font-size: 16px;
  line-height: 36px;
  color: var(--color2);
}

@media (max-width: 1560px) {
  .menu-list>li {
    width: calc(100% / 9);
  }
}
@media (max-width: 1440px) {
  .menu-list>li {
    width: calc(100% / 8);
  }
}
@media (max-width: 1240px) {
  .main {
    padding: 40px 0;
  }
  .menu-list>li {
    width: calc(100% / 6);
  }
}
@media (max-width: 991px) {
  .main {
    padding: 30px 0;
  }
  .menu-list>li {
    width: calc(100% / 5);
  }
  .menu-list>li>a {
    font-size: 15px;
  }
}
@media (max-width: 767px) {
  .main {
    padding: 0;
  }
  .menu-title {
    width: calc(100% + 40px);
    float: left;
    text-align: center;
    margin-left: -20px;
    font-size: 18px;
    font-weight: bold;
    height: 50px;
    line-height: 50px;
    padding: 0 20px;
    color: #fff;
    position: relative;
    background-color: var(--color-main);
  }
  .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;
    margin-top: 2px;
  }
  .menu-list>li {
    width: 100%;
  }
  .menu-list>li>a {
    padding: 8px 15px;
  }

  .main-right {
    width: 100%;
  }
  .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: 40%;
  float: left;
  position: relative;
  border: 1px solid #ddd
}
.product-details-left::before {
  content: '';
  display: block;
  padding-top: 60%
}
.product-details-right {
  width: 60%;
  padding: 30px;
  padding-right: 0
}
.product-details-right>h1 {
  display: block;
  overflow: hidden;
  line-height: 1;
  font-size: 20px;
  color: #333;
  font-weight: bold;
}
.product-details-text {
  display: block;
  overflow: hidden;
  font-size: 14px;
  line-height: 24px;
  color: #666;
  margin-top: 20px
}
.product-details-more {
  display: block;
  overflow: hidden;
  margin-top: 20px
}
.product-details-more>a {
  width: 150px;
  float: left;
  height: 50px;
  background-color: var(--color-main);
  font-size: 16px;
  color: #fff;
  display: flex;
  align-items: center;
  align-content: center;
  justify-content: center
}
.product-details-content {
  width: 100%;
  float: left;
  margin-top: 30px;
  font-size: 16px;
  line-height: 30px;
  color: #333
}
.product-details-title {
  display: block;
  overflow: hidden;
  margin-bottom: 30px;
  background-color: #f5f5f5
}
.product-details-title>span {
  float: left;
  padding: 0 30px;
  height: 50px;
  line-height: 50px;
  background-color: var(--color-main);
  font-size: 16px;
  color: #fff;
  font-weight: bold
}
.product-details-content>img {
  display: block;
  max-width: 100%;
  height: auto;
  margin: 0 auto;
}

@media (max-width: 767px) {
  .product-details-left {
    width: 100%;
  }
  .product-details-right {
    width: 100%;
    padding: 15px 0 0 0;
  }
  .product-details-text {
    margin-top: 10px;
  }
  .product-details-more {
    margin-top: 10px;
  }
  .product-details-more>a {
    width: 110px;
    height: 40px;
    font-size: 14px;
  }
  .product-details-content {
    margin-top: 10px;
    font-size: 14px;
    line-height: 24px;
  }
  .product-details-title {
    margin-bottom: 10px;
  }
  .product-details-title>span {
    padding: 0 20px;
    height: 40px;
    line-height: 40px;
  }
}
/* END-主要设备/产品展示 */

/* 新闻动态 */
.place-content .news-list>li {
  margin: 0 40px 40px 0;
}



.news-details {
  display: block;
  overflow: hidden;
}
.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: 1560px) {
  .place-content .news-list>li {
    margin: 0 1% 40px 1%;
  }
}
@media (max-width: 1240px) {
  .place-content .news-list>li {
    margin: 0 1% 30px 1%;
  }
}
@media (max-width: 991px) {
  .place-content .news-list>li {
    margin: 0 1% 20px 1%;
  }
}
@media (max-width: 767px) {
  .place-content .news-list>li {
    margin: 0 0 10px 0;
  }

  .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: 40%;
  float: left;
  font-size: 16px;
  line-height: 30px;
  color: #fff;
  background-color: var(--color-main);
  padding: 30px
}
.contact-map {
  width: 60%;
  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-联系我们 */