@charset "UTF-8";
/*
 * @Author: Code Zhuang
 * @Date: 2023-08-09 10:51:02
 * @Last Modified by: Code Zhuang
 * @Last Modified time: 2023-08-09 23:32:24
 */

/* Swiper 7.4.1 */
@import "../plugin/swiper/swiper-bundle.min.css";

/* Animate.css动画演示 */
@import "../plugin/swiper/animate.min.css";

/* 字体图标 */
@import "../plugin/font/css/font-awesome.min.css";

/* 核心样式 */
@import "../css/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;
  padding: 45px 0;
}

.title {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.title>h1 {
  line-height: 36px;
  font-size: 30px;
  color: #009242;
  font-weight: bold;
}
.title>h6 {
  line-height: 16px;
  font-size: 14px;
  color: #999;
  text-transform: uppercase;
  margin: 5px 0;
}
.title>div {
  line-height: 24px;
  font-size: 14px;
  color: #333;
  text-align: center;
}

.more {
  display: flex;
  justify-content: center;
}
.more>a {
  width: 176px;
  float: left;
  height: 46px;
  border-radius: 25px;
  border: 2px solid var(--color-main);
  font-size: 14px;
  color: var(--white);
  background-color: var(--color-main);
  display: flex;
  align-items: center;
  align-content: center;
  justify-content: center;
}
.more>a:hover {
  background-color: #fff;
  color: var(--color-hover);
}

@media (max-width: 991px) {
  .container-fluid {
    padding: 30px 0;
  }
}
@media (max-width: 767px) {
  .container-fluid {
    padding: 15px 0;
  }
  .title>h1 {
    line-height: 30px;
    font-size: 20px;
  }
  .title>h6 {
    margin: 0;
    font-size: 12px;
  }
  .title>div {
    font-size: 12x;
    line-height: 20px;
  }

  .more>a {
    width: 100px;
    height: 30px;
    font-size: 14px;
  }
}

/* 关于我们 */
.about-content {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin: 50px 0;
}
.about-left {
  width: 50%;
  display: flex;
  justify-content: flex-end;
  background-color: #f5f5f5;
}
.about-box {
  width: 100%;
  max-width: 740px;
  padding: 40px 120px 50px 40px;
}
.about-box>h1 {
  display: block;
  overflow: hidden;
  line-height: 54px;
  font-size: 55px;
  color: #d5d4d4;
  font-weight: bold;
  text-transform: uppercase;
}
.about-box>h2 {
  display: block;
  overflow: hidden;
  line-height: 34px;
  font-size: 20px;
  color: #333;
  font-weight: bold;
  margin-top: 5px;
}
.about-box>h2>span {
  color: var(--color-main);
}
.about-text {
  display: block;
  overflow: hidden;
  margin-top: 27px;
  height: 312px;
  line-height: 26px;
  font-size: 14px;
  color: #333;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 12;
  -webkit-box-orient: vertical;
}
.about-box .more {
  margin-top: 20px;
  justify-content: flex-start;
}

.about-right {
  width: 50%;
  display: flex;
  position: relative;
}
.about-right .img::before {
  padding-top: 61.14583334%;
}
.about-center {
  width: 262px;
  background: url(../images/about-bj.jpg) no-repeat center center;
  background-size: 100%;
  position: absolute;
  left: -65px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 5;
  padding: 34px;
  padding-bottom: 0;
  display: flex;
  flex-direction: column;
}
.about-center>li {
  width: 100%;
  overflow: hidden;
  margin-bottom: 44px;
}
.about-center>li>h1 {
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  line-height: 50px;
  font-size: 16px;
  line-height: 24px;
  color: #fff;
}
.about-center>li>h1>span {
  float: left;
  height: 50px;
  line-height: 50px;
  font-size: 54px;
  font-weight: bold;
}
.about-center>li>div {
  display: block;
  overflow: hidden;
  line-height: 24px;
  font-size: 16px;
  color: #fff;
  margin-top: 10px;
}

@media (max-width: 1400px) {
  .about-box {
    padding: 40px 100px 40px 40px;
  }
  .about-box>h1 {
    line-height: 50px;
    font-size: 48px;
  }
}
@media (max-width: 1200px) {
  .about-box {
    padding: 40px 80px 40px 40px;
  }
  .about-box>h1 {
    line-height: 40px;
    font-size: 40px;
  }
  .about-center {
    left: -50px;
  }
}
@media (max-width: 991px) {
  .about-content {
    margin: 30px 0;
  }
  .about-box {
    padding: 30px;
    padding-right: 50px;
  }
  .about-box>h1 {
    line-height: 30px;
    font-size: 30px;
  }

  .about-center {
    left: -30px;
    padding: 25px;
  }
  .about-center>li {
    margin-bottom: 30px;
  }
}
@media (max-width: 767px) {
  .about-content {
    margin: 10px 0;
    flex-direction: column-reverse;
  }
  .about-left {
    width: 100%;
  }
  .about-box {
    padding: 15px 20px;
  }
  .about-box>h1 {
    line-height: 20px;
    font-size: 20px;
  }
  .about-box>h2 {
    line-height: 24px;
    font-size: 18px;
    margin-top: 0;
  }
  .about-text {
    margin-top: 5px;
    height: auto;
    line-height: 22px;
    -webkit-line-clamp: initial;
  }
  .about-box .more {
    margin-top: 10px;
  }

  .about-right {
    width: 100%;
  }
}

/* 为梦想启程 */
.history {
  background-image: url(../images/history-bj.jpg);
  padding: 60px 0 70px 0;
}
.history-title {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
}
.history-title>img {
  display: block;
  max-width: 100%;
  height: auto;
  margin-right: 60px;
}
.history-title>h1 {
  display: flex;
  flex-direction: column;
  font-size: 30px;
  line-height: 40px;
  color: #333;
  font-weight: bold;
  margin-right: 20px;
}
.history-title>h1>span:first-child {
  letter-spacing: 3px;
}
.history-title>h1>span:last-child {
  letter-spacing: -1px;
}
.history-title>div {
  display: flex;
  flex-direction: column;
  font-size: 30px;
  line-height: 40px;
  color: #333;
  text-transform: capitalize;
}
.history-content {
  display: flex;
  justify-content: center;
  position: relative;
  margin-top: 50px;
}
.history-content>h1 {
  line-height: 34px;
  font-size: 20px;
  color: #333;
  font-weight: bold;
  position: absolute;
  right: 15px;
  top: 65px;
}
.history-content .swiper {
  width: 85.5%;
  max-width: 1195px;
  background: url(../images/history-bj2.png) no-repeat center center;
  background-size: 100% auto;
  min-height: 320px;
}
.history-content .swiper .swiper-slide {
  display: flex;
  flex-direction: column;
  position: relative;
  padding-left: 20px;
}
.history-content .swiper .swiper-slide::before {
  content: "";
  width: 3px;
  height: 50%;
  background: url(../images/histoey-heng.png) repeat-y center top;
  position: absolute;
  left: 2px;
  top: 0;
}
.history-content .swiper .swiper-slide::after {
  content: "";
  width: 7px;
  height: 7px;
  background-color: var(--color-main);
  position: absolute;
  left: 0;
  top: 0;
  z-index: 2;
}
.history-content .swiper .swiper-slide>h1 {
  display: block;
  overflow: hidden;
  line-height: 30px;
  font-size: 20px;
  color: #0b8d40;
}
.history-content .swiper .swiper-slide>div {
  display: block;
  overflow: hidden;
  line-height: 26px;
  font-size: 16px;
  color: #333;
  margin-top: 5px;
}

.history-content .swiper .swiper-slide:nth-child(even) {
  justify-content: flex-end;
}
.history-content .swiper .swiper-slide:nth-child(even)::before,
.history-content .swiper .swiper-slide:nth-child(even)::after {
  top: initial;
  bottom: 0;
}

@media (max-width: 1400px) {
  .history {
    padding: 60px 0;
  }
}
@media (max-width: 1200px) {
  .history {
    padding: 50px 0;
  }
}
@media (max-width: 991px) {
  .history {
    padding: 30px 0;
  }
  .history-title>img {
    max-width: 40%;
    margin-right: 20px;
  }
  .history-content {
    margin-top: 30px;
  }
  .history-content .swiper {
    width: 100%;
  }
}
@media (max-width: 767px) {
  .history {
    padding: 15px 0;
  }
  .history-title>img {
    max-width: 25%;
    margin: 0 10px 0 0;
  }
  .history-title>h1 {
    font-size: 16px;
    line-height: 24px;
    margin-right: 10px;
  }
  .history-title>h1>span:first-child {
    letter-spacing: 1px;
  }
  .history-title>div {
    font-size: 16px;
    line-height: 24px;
  }
  .history-content {
    margin-top: 10px;
  }
  .history-content .swiper {
    min-height: 200px;
  }
  .history-content .swiper .swiper-slide>h1 {
    line-height: 24px;
    font-size: 16px;
  }
  .history-content .swiper .swiper-slide>div {
    line-height: 20px;
    font-size: 14px;
  }
}

/* 视频展示 */
.video {
  background-image: url(../images/video-bj.jpg);
}
.video-content {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-top: 44px;
}
.video-left {
  width: 58.215%;
  overflow: hidden;
  position: relative;
}
.video-left>video,
.video-left>iframe {
  width: 100%;
  height: 100%;
  float: left;
  position: absolute;
  inset: 0;
}
.video-left>video {
  object-fit: cover;
}
.video-left::before {
  content: "";
  display: block;
  padding-top: 57.423313%;
}

.video-right {
  flex: 1;
  padding-left: 6.5%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
}
.video-right>h1 {
  display: block;
  overflow: hidden;
  line-height: 40px;
  font-size: 30px;
  font-weight: bold;
  color: var(--color-main);
}
.video-right>h1>span {
  display: block;
  overflow: hidden;
  margin-bottom: 10px;
  color: #333;
}
.video-right>div {
  overflow: hidden;
  margin: 15px 0;
  line-height: 44px;
  font-size: 20px;
  color: #fff;
  background-color: var(--color-main);
  padding: 0 25px;
}
.video-right>a {
  line-height: 30px;
  font-size: 16px;
  color: #333;
}
.video-right>a:hover {
  color: var(--color-hover);
  text-decoration: underline;
}

@media (max-width: 1200px) {
  .video-right {
    padding-left: 5%;
  }
}
@media (max-width: 991px) {
  .video-content {
    margin-top: 25px;
  }
  .video-right {
    padding-left: 4%;
  }
  .video-right>h1 {
    line-height: 30px;
    font-size: 20px;
  }
  .video-right>div {
    line-height: 40px;
    font-size: 16px;
    padding: 0 20px;
  }
}
@media (max-width: 767px) {
  .video-content {
    margin-top: 10px;
  }
  .video-left {
    width: 100%;
  }
  .video-right {
    flex: none;
    width: 100%;
    padding: 15px 0 0 0;
  }
  .video-right>h1 {
    display: flex;
    line-height: 26px;
    font-size: 16px;
  }
  .video-right>h1>span {
    margin: 0 10px 0 0;
  }
  .video-right>div {
    line-height: 30px;
    font-size: 14px;
    padding: 5px 10px;
    margin: 10px 0;
  }
}

/* 车间展示 */
.workshop-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 40px;
  margin-bottom: 7px;
  position: relative;
  z-index: 0;
}
.workshop-nav::before,
.workshop-nav::after {
  content: "";
  width: 100%;
  height: 1px;
  background-color: #e1e1e1;
  position: absolute;
  left: 0;
  top: 0;
  z-index: -1;
}
.workshop-nav::after {
  top: initial;
  bottom: 0;
}
.workshop-nav>li {
  width: calc(100% / 6);
  border-left: 1px solid #e1e1e1;
  border-right: 1px solid #e1e1e1;
  display: flex;
}
.workshop-nav>li>a {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  font-size: 16px;
  line-height: 24px;
  padding: 15px;
  color: #333;
  position: relative;
}
.workshop-nav>li>a::before {
  content: "";
  width: 0;
  height: 2px;
  background-color: var(--color-main);
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
}
.workshop-nav>li.workshop-active>a::before {
  width: 100%;
}
.workshop-nav>li.workshop-active>a::after {
  content: "";
  width: 0;
  height: 0;
  border-top: 7px solid var(--color-main);
  border-left: 9px solid transparent;
  border-right: 9px solid transparent;
  position: absolute;
  left: 50%;
  top: 100%;
  transform: translateX(-50%);
}
.workshop-content {
  display: block;
  overflow: hidden;
  margin-top: 32px;
}
.workshop-content>div {
  display: none;
}
.workshop-content>div:first-child {
  display: block;
}
.workshop-list {
  display: flex;
  flex-wrap: wrap;
  width: calc(100% + 24px);
  margin-left: -12px;
}
.workshop-list>li {
  width: calc(25% - 24px);
  margin: 0 12px 22px 12px;
}
.workshop-list>li>a {
  display: flex;
  width: 100%;
  overflow: hidden;
  position: relative;
}
.workshop-list>li>a::before {
  content: "";
  display: block;
  padding-top: 83.73494%;
}
.workshop-list>li>a>h1 {
  width: 100%;
  height: 42px;
  line-height: 42px;
  text-align: center;
  font-size: 16px;
  color: #fff;
  background-color: rgba(0, 0, 0, 0.4);
  overflow: hidden;
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: 2;
}
.workshop-list>li>a:hover>img {
  transform: scale(1.1);
}
.workshop .more {
  margin-top: 20px;
}

@media (max-width: 1200px) {
  .workshop-nav>li {
    width: calc(100% / 5);
  }
}
@media (max-width: 991px) {
  .workshop-nav {
    margin-top: 20px;
  }
  .workshop-nav>li {
    width: calc(100% / 4);
  }
  .workshop-content {
    margin-top: 20px;
  }
  .workshop-list {
    width: calc(100% + 10px);
    margin-left: -5px;
  }
  .workshop-list>li {
    width: calc(25% - 10px);
    margin: 0 5px 10px 5px;
  }
}
@media (max-width: 767px) {
  .workshop-nav {
    margin-top: 10px;
  }
  .workshop-nav>li>a {
    font-size: 14px;
    line-height: 22px;
    padding: 5px 10px;
  }
  .workshop-content {
    margin-top: 10px;
  }
  .workshop-list {
    width: 100%;
    margin-left: 0;
    justify-content: space-between;
  }
  .workshop-list>li {
    width: calc(50% - 5px);
    margin: 0 0 10px 0;
  }
  .workshop .more {
    margin-top: 10px;
  }
}

/* 新闻资讯 */
.news {
  background-color: #f5f5f5;
}
.news-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 40px;
  margin-bottom: 7px;
  position: relative;
  z-index: 0;
}
.news-nav::before,
.news-nav::after {
  content: "";
  width: 100%;
  height: 1px;
  background-color: #e1e1e1;
  position: absolute;
  left: 0;
  top: 0;
  z-index: -1;
}
.news-nav::after {
  top: initial;
  bottom: 0;
}
.news-nav>li {
  width: calc(100% / 6);
  border-left: 1px solid #e1e1e1;
  border-right: 1px solid #e1e1e1;
  display: flex;
}
.news-nav>li>a {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  font-size: 16px;
  line-height: 24px;
  padding: 15px;
  color: #333;
  position: relative;
}
.news-nav>li>a::before {
  content: "";
  width: 0;
  height: 2px;
  background-color: var(--color-main);
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
}
.news-nav>li.news-active>a::before {
  width: 100%;
}
.news-nav>li.news-active>a::after {
  content: "";
  width: 0;
  height: 0;
  border-top: 7px solid var(--color-main);
  border-left: 9px solid transparent;
  border-right: 9px solid transparent;
  position: absolute;
  left: 50%;
  top: 100%;
  transform: translateX(-50%);
}
.news-content {
  display: block;
  overflow: hidden;
  margin: 50px 0;
}
.news-content>div {
  display: none;
}
.news-content>div:first-child {
  display: block;
}
.news-left {
  width: 65.36%;
  float: left;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.news-left>li {
  width: calc(50% - 28px);
  display: flex;
}
.news-left>li>a {
  display: flex;
  flex-direction: column;
  background-color: #fff;
}
.news-left>li>a .img::before {
  padding-top: 55.6075%;
}
.news-left>li>a .news-box {
  display: block;
  overflow: hidden;
  padding: 20px 30px;
}
.news-left>li>a .news-box>h1 {
  display: block;
  overflow: hidden;
  line-height: 26px;
  font-size: 18px;
  color: #333;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}
.news-left>li>a .news-box .news-text {
  display: block;
  overflow: hidden;
  height: 84px;
  line-height: 21px;
  font-size: 14px;
  color: #858585;
  margin: 25px 0 20px 0;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
}
.news-left>li>a .news-box .news-time {
  display: block;
  overflow: hidden;
  line-height: 14px;
  color: #858585;
  font-size: 14px;
}
.news-left>li>a:hover {
  background-color: var(--color-hover);
}
.news-left>li>a:hover .news-box>h1,
.news-left>li>a:hover .news-box .news-text,
.news-left>li>a:hover .news-box .news-time {
  color: #fff;
}

.news-right {
  width: 31%;
  float: right;
  display: flex;
  flex-direction: column;
}
.news-right>li {
  width: 100%;
  display: flex;
  overflow: hidden;
  margin-bottom: 80px;
}
.news-right>li:last-child {
  margin: 0;
}
.news-right>li>a {
  width: 100%;
  display: flex;
  align-items: flex-start;
}
.news-right>li>a .news-number {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  line-height: 18px;
  color: #333;
  font-size: 16px; white-space:nowrap;
}
.news-right>li>a .news-number>span {
  display: block;
  overflow: hidden;
  line-height: 1;
  font-size: 52px;
}
.news-right>li>a .news-boxs {
  flex: 1;
  padding-left: 30px;
  display: flex;
  flex-direction: column;
}
.news-right>li>a .news-boxs>h1 {
  display: block;
  overflow: hidden;
  line-height: 1;
  font-size: 18px;
  color: #333;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.news-right>li>a .news-boxs>div {
  display: block;
  overflow: hidden;
  margin-top: 14px;
  height: 63px;
  line-height: 21px;
  font-size: 14px;
  color: #858585;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
}
.news-right>li>a:hover .news-boxs>h1 {
  color: var(--color-hover);
  font-weight: bold;
}

@media (max-width: 1200px) {
  .news-nav>li {
    width: calc(100% / 5);
  }
  .news-left>li {
    width: calc(50% - 15px);
  }
  .news-right>li {
    margin-bottom: 50px;
  }
}
@media (max-width: 991px) {
  .news-nav {
    margin-top: 20px;
  }
  .news-nav>li {
    width: calc(100% / 4);
  }
  .news-content {
    margin: 30px 0;
  }
  .news-left>li>a .news-box {
    padding: 15px 20px;
  }
  .news-right>li {
    margin-bottom: 30px;
  }
  .news-right>li>a .news-boxs {
    padding-left: 15px;
  }
}
@media (max-width: 767px) {
  .news-nav {
    margin-top: 10px;
  }
  .news-nav>li>a {
    font-size: 14px;
    line-height: 22px;
    padding: 5px 10px;
  }
  .news-content {
    margin: 10px 0;
  }
  .news-left {
    width: 100%;
  }
  .news-left>li {
    width: 100%;
    margin-bottom: 10px;
  }
  .news-left>li>a {
    flex-direction: row;
  }
  .news-left>li>a .img {
    width: 40%;
  }
  .news-left>li>a .news-box {
    width: 60%;
    padding: 10px;
    padding-left: 15px;
  }
  .news-left>li>a .news-box>h1 {
    line-height: 24px;
    font-size: 16px;
    -webkit-line-clamp: 1;
  }
  .news-left>li>a .news-box .news-text {
    height: 42px;
    margin: 10px 0;
    -webkit-line-clamp: 2;
  }
  .news-right {
    width: 100%;
    margin-top: 10px;
  }
  .news-right>li {
    margin-bottom: 10px;
  }
  .news-right>li>a .news-number {
    width: 60px;
    line-height: 16px;
    font-size: 14px;
  }
  .news-right>li>a .news-number>span {
    font-size: 30px;
  }
  .news-right>li>a .news-boxs {
    width: calc(100% - 60px);
    flex: none;
  }
}

.index-box {
  width: 100%;
  overflow: hidden;
  background: url(../images/index-bj.jpg) no-repeat center center #fff;
  background-size: cover;
}
.index-box>.container-fluid {
  background: none;
}
/* 合作伙伴 */
.partner .swiper {
  margin-top: 35px;
}
.partner .swiper .swiper-slide>a {
  width: 100%;
  display: flex;
  flex-direction: column;
}
.partner .swiper .swiper-slide>a .img {
  clip-path: polygon(25% 0, 75% 0, 100% 50%, 75% 100%, 25% 100%, 0 50%);
}
.partner .swiper .swiper-slide>a .img::before {
  padding-top: 86.666667%;
}
.partner .swiper .swiper-slide>a .img::after {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0;
  background: url(../images/partner-hover.png) no-repeat center center;
  background-size: 100% 100%;
  z-index: 5;
}
.partner .swiper .swiper-slide>a>h1 {
  display: block;
  overflow: hidden;
  line-height: 24px;
  text-align: center;
  font-size: 16px;
  color: #333;
}
.partner .swiper .swiper-slide>a:hover .img>img {
  transform: scale(1.1);
}

@media (max-width: 767px) {
  .partner .swiper {
    margin-top: 10px;
  }
}

/* 产品中心 */
.product-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 40px;
  margin-bottom: 7px;
  position: relative;
  z-index: 0;
}
.product-nav::before,
.product-nav::after {
  content: "";
  width: 100%;
  height: 1px;
  background-color: #e1e1e1;
  position: absolute;
  left: 0;
  top: 0;
  z-index: -1;
}
.product-nav::after {
  top: initial;
  bottom: 0;
}
.product-nav>li {
  width: calc(100% / 5);
  border-left: 1px solid #e1e1e1;
  border-right: 1px solid #e1e1e1;
  display: flex;
}
.product-nav>li>a {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  font-size: 16px;
  line-height: 24px;
  padding: 15px;
  color: #333;
  position: relative;
}
.product-nav>li>a::before {
  content: "";
  width: 0;
  height: 2px;
  background-color: var(--color-main);
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
}
.product-nav>li.product-active>a::before {
  width: 100%;
}
.product-nav>li.product-active>a::after {
  content: "";
  width: 0;
  height: 0;
  border-top: 7px solid var(--color-main);
  border-left: 9px solid transparent;
  border-right: 9px solid transparent;
  position: absolute;
  left: 50%;
  top: 100%;
  transform: translateX(-50%);
}
.product-content {
  display: flex;
  flex-direction: column;
  margin-top: 45px;
}
.product-content>div {
  width: 100%;
  float: left;
  display: none;
}
.product-content>div:first-child {
  display: block;
}
.product-list {
  display: flex;
  flex-wrap: wrap;
  width: calc(100% + 20px);
  margin-left: -10px;
}
.product-list>li {
  width: calc(25% - 20px);
  margin: 0 10px 20px 10px;
  display: flex;
}
.product-list>li>a {
  width: 100%;
  display: flex;
  flex-direction: column;
  position: relative;
}
.product-list>li>a::after {
  content: "+";
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background-color: var(--color-main);
  font-size: 20px;
  color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  left: 50%;
  bottom: 38px;
  transform: translateX(-50%);
}
.product-list>li>a .img {
  background-color: #fff;
  border: 1px solid #eaeaea;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
}
.product-list>li>a .img::before {
  padding-top: 82.882883%;
}
.product-list>li>a>h1 {
  display: block;
  overflow: hidden;
  text-align: center;
  height: 30px;
  line-height: 30px;
  font-size: 16px;
  color: #333333;
  margin-top: 25px;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.product-list>li>a:hover .img>img {
  transform: scale(1.1);
}
.product .more {
  margin-top: 30px;
}

@media (max-width: 1400px) {
  .product-nav>li {
    width: calc(100% / 4);
  }
}
@media (max-width: 991px) {
  .product-nav {
    margin-top: 20px;
  }
  .product-content {
    margin-top: 20px;
  }
  .product .more {
    margin-top: 10px;
  }
}
@media (max-width: 767px) {
  .product-nav {
    margin-top: 10px;
    margin-bottom: 0;
  }
  .product-nav::before,
  .product-nav::after {
    display: none;
  }
  .product-nav>li {
    width: 50%;
    border: 1px solid #e1e1e1;
    margin-bottom: 7px;
  }
  .product-nav>li>a {
    font-size: 14px;
    line-height: 22px;
    padding: 5px 10px;
  }
  .product-content {
    margin-top: 10px;
  }
  .product-list {
    width: 100%;
    margin: 0;
    justify-content: space-between;
  }
  .product-list>li {
    width: calc(50% - 5px);
    margin: 0 0 10px 0;
  }
  .product-list>li>a::after {
    display: none;
  }
  .product-list>li>a>h1 {
    font-size: 14px;
    margin-top: 10px;
  }
}
/* END-首页样式 */

/* 关于我们 */
.main {
  width: 100%;
  overflow: hidden;
  padding: 25px 0;
}
.main>.container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.main-left {
  width: 304px;
}
.left-menu {
  width: 100%;
  float: left;
}
.menu-title {
  display: block;
  overflow: hidden;
  padding: 18px 50px;
  padding-right: 0;
  background-color: var(--color-main);
  font-size: 20px;
  color: #fff;
  text-transform: uppercase;
}
.menu-title>span {
  display: block;
  overflow: hidden;
  line-height: 38px;
  font-size: 28px;
  font-weight: bold;
}

.menu-list {
  display: block;
  overflow: hidden;
  transition: initial;
  border: 1px solid #dfdfdf;
  padding: 20px 10px;
  padding-bottom: 0;
}
.menu-list>li {
  display: block;
  overflow: hidden;
  border-bottom: 1px dashed #dcdcdc;
}
.menu-list>li:last-child {
  border-bottom: none;
}
.menu-list>li>a {
  display: block;
  overflow: hidden;
  height: 48px;
  line-height: 48px;
  font-size: 16px;
  color: #333;
  padding: 0 15px;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.menu-list>li:hover>a,
.menu-list>li.menu-active>a {
  background-color: #f0f0f0;
  color: #333;
}
.left-menu:last-child {
  margin-top: 10px;
}
.menu-box {
  display: block;
  overflow: hidden;
  border: 1px solid #dfdfdf;
  padding: 8px 7px;
  padding-bottom: 14px;
  font-size: 14px;
  line-height: 28px;
  color: #333;
}
.menu-box>img {
  width: 100%;
  display: block;
  height: auto;
  margin-bottom: 14px;
}

.main-right {
  flex: 1;
  padding-left: 50px;
}
.place-title {
  width: 100%;
  float: left;
  margin-top: 25px;
  line-height: 42px;
  font-size: 14px;
  color: var(--color3);
  border-bottom: 1px solid #dfdfdf;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.place-title h1{ font-size:16px;}
.place-content {
  width: 100%;
  float: left;
  padding-top: 30px;
}
.company {
  display: block;
  overflow: hidden;
  font-size: 14px;
  line-height: 30px;
  color: var(--color3);
}

@media (max-width: 1400px) {
  .main-left {
    width: 22%;
  }
}
@media (max-width: 1200px) {
  .main-left {
    width: 25.5%;
  }
  .menu-title {
    padding: 18px 30px;
    padding-right: 0;
  }
}
@media (max-width: 991px) {
  .main-left {
    width: 30.68%;
  }
  .menu-title {
    padding: 18px 20px;
    padding-right: 0;
    font-size: 16px;
    line-height: 20px;
  }
  .menu-title>span {
    line-height: 30px;
    font-size: 20px;
  }
  .main-right {
    padding-left: 30px;
  }
}
@media (max-width: 767px) {
  .main {
    padding: 0;
  }
  .main-left {
    width: 100%;
  }
  .left-menu {
    margin: 0;
  }
  .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: #fff;
    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: 5px;
  }
  .menu-list>li>a {
    height: 40px;
    line-height: 40px;
    font-size: 14px;
  }

  .main-right {
    flex: none;
    width: 100%;
    padding: 0;
  }
  .place-content {
    padding: 20px 0;
  }
  .company {
    line-height: 24px;
    font-size: 14px;
  }
}
/* END-关于我们 */

/* 产品中心 */
.place-content .product-list>li {
  width: calc(calc(100% / 3) - 20px);
  margin: 0 10px 20px 10px;
}

.product-details {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between
}
.product-details-left {
  width: 40%;
  float: left;
  position: relative;
  border: 1px solid #ccc
}
.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
}

@media (max-width: 991px) {
  .place-content .product-list>li {
    width: calc(50% - 20px);
  }
  .product-details-left {
    width: 100%;
  }
  .product-details-right {
    width: 100%;
    padding: 20px 0 0 0;
  }
  .product-details-title {
    margin-bottom: 20px;
  }
}
@media (max-width: 767px) {
  .place-content .product-list>li {
    width: calc(50% - 5px);
    margin: 0 0 10px 0;
  }
  .product-details-right {
    padding: 15px 0 0 0;
  }
  .product-details-right>h1 {
    font-size: 18px;
  }
  .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 .workshop-list>li {
  width: calc(calc(100% / 3) - 24px);
}

@media (max-width: 991px) {
  .place-content .workshop-list>li {
    width: calc(calc(100% / 2) - 10px);
    margin: 0 5px 10px 5px;
  }
}
@media (max-width: 767px) {
  .place-content .workshop-list {
    width: 100%;
    margin: 0;
  }
  .place-content .workshop-list>li {
    width: calc(50% - 5px);
    margin: 0 0 10px 0;
  }
}
/* END-车间展示 */

/* 合作伙伴 */
.cooperation-list {
  display: flex;
  flex-wrap: wrap;
}
.cooperation-list>li {
  width: calc(100% / 6);
  margin-bottom: 10px;
}
.cooperation-list>li>a {
  width: 100%;
  display: flex;
  flex-direction: column;
}
.cooperation-list>li>a .img {
  clip-path: polygon(25% 0, 75% 0, 100% 50%, 75% 100%, 25% 100%, 0 50%);
}
.cooperation-list>li>a .img::before {
  padding-top: 86.666667%;
}
.cooperation-list>li>a .img::after {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0;
  background: url(../images/partner-hover.png) no-repeat center center;
  background-size: 100% 100%;
  z-index: 5;
}
.cooperation-list>li>a>h1 {
  display: block;
  overflow: hidden;
  line-height: 24px;
  text-align: center;
  font-size: 16px;
  color: #333;
}
.cooperation-list>li>a:hover .img>img {
  transform: scale(1.1);
}

@media (max-width: 1400px) {
  .cooperation-list>li {
    width: calc(100% / 5);
  }
}
@media (max-width: 1200px) {
  .cooperation-list>li {
    width: calc(100% / 4);
  }
}
@media (max-width: 991px) {
  .cooperation-list>li {
    width: calc(100% / 3);
  }
}
/* END-合作伙伴 */

/* 新闻资讯 */
.news-list {
  display: flex;
  flex-direction: column;
}
.news-list>li {
  width: 100%;
  float: left;
  margin-bottom: 20px;
}
.news-list>li>a {
  width: 100%;
  display: flex;
  background-color: #f5f5f5;
}
.news-list>li>a .img {
  width: 40%;
  overflow: hidden;
  position: relative;
}
.news-list>li>a .news-box {
  width: 60%;
  overflow: hidden;
  padding: 30px;
}
.news-list>li>a .news-box>h1 {
  display: block;
  overflow: hidden;
  line-height: 30px;
  font-size: 18px;
  color: #333;
  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: #858585;
  margin: 20px 0;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
}
.news-list>li>a .news-box .news-time {
  display: block;
  overflow: hidden;
  line-height: 20px;
  color: #858585;
  font-size: 14px;
}
.news-list>li>a:hover {
  background-color: var(--color-hover);
}
.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 {
  color: #fff;
}

.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-img{ width:100%; text-align:center; margin:10px auto;}
.news-details-img img{ width:100%; max-width:800px; height:auto; display:block; margin:0 auto; max-height:600px;}
.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) {
  .news-list>li>a .news-box {
    padding: 20px;
  }
  .news-list>li>a .news-box .news-text {
    height: 60px;
    line-height: 20px;
    margin: 10px 0;
  }
}
@media (max-width: 767px) {
  .news-list>li {
    margin-bottom: 10px;
  }
  .news-list>li>a .news-box {
    padding: 10px;
    padding-left: 15px;
  }
  .news-list>li>a .news-box>h1 {
    line-height: 24px;
    font-size: 16px;
  }
  .news-list>li>a .news-box .news-text {
    height: 40px;
    margin: 5px 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: 100%;
  float: left;
  font-size: 16px;
  line-height: 30px
}
.contact-map {
  width: 100%;
  float: left;
  overflow: hidden;
  height: 400px;
  border: none;
  margin-top: 20px
}
@media (max-width:767px) {
  .contact-text {
    font-size: 14px;
    line-height: 24px
  }
  .contact-map {
    margin-top: 10px;
    height: 300px
  }
}
/* END-联系我们 */