@charset "UTF-8";
/*
 * @Author: Code Zhuang
 * @Date: 2023-08-10 10:33:37
 * @Last Modified by: Code Zhuang
 * @Last Modified time: 2023-08-11 00:25:18
 */

/* 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;
}

.title {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.title>h1 {
  width: 100%;
  height: 60px;
  line-height: 60px;
  font-size: 72px;
  font-weight: bold;
  text-transform: uppercase;
  color: #f0f0f0;
  position: relative;
}
.title>h1>span {
  position: absolute;
  inset: 0;
  text-align: center;
  font-family: "Source Han Sans CN";
  font-size: 40px;
  color: #262626;
}
.title>h1>span>em {
  color: var(--color-main);
}
.title>div {
  text-align: center;
  margin-top: 5px;
  line-height: 26px;
  font-size: 18px;
  color: rgba(0, 0, 0, 0.6);
}
.title-white>h1,
.title-white>h1>span,
.title-white>h1>span>em,
.title-white>div {
  color: #fff;
}

@media (max-width: 991px) {
  .title>h1 {
    height: 50px;
    line-height: 50px;
    font-size: 50px;
  }
  .title>h1>span {
    font-size: 30px;
  }
}
@media (max-width: 767px) {
  .title>h1 {
    height: 30px;
    line-height: 30px;
    font-size: 28px;
  }
  .title>h1>span {
    font-size: 20px;
  }
  .title>div {
    margin-top: 0;
    font-size: 14px;
    line-height: 20px;
  }
}

/* 关于我们 */
.about {
  padding: 70px 0 95px 0;
  background-image: url(../images/about-bj.jpg);
}
.about>.container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  flex-direction: row-reverse;
}
.about-left {
  width: 50%;
  overflow: hidden;
  position: relative;
  margin-top: 9px;
  border-radius: 10px;
}
.about-left::before {
  content: "";
  display: block;
  padding-top: 50.83334%;
}
.about-left>video,
.about-left>iframe {
  width: 100%;
  height: 100%;
  float: left;
  position: absolute;
  inset: 0;
}
.about-left>video {
  object-fit: cover;
}
.about-right {
  width: 50%;
  padding-right: 70px;
}
.about-right>h1 {
  display: block;
  overflow: hidden;
  line-height: 34px;
  font-size: 24px;
  color: var(--color-hover);
}
.about-right>h1>span {
  display: block;
  overflow: hidden;
  line-height: 58px;
  font-size: 40px;
  color: var(--color-main);
  font-weight: bold;
}
.about-text {
  display: block;
  overflow: hidden;
  height: 104px;
  line-height: 26px;
  font-size: 16px;
  color: #333;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  margin-top: 26px;
}
.about-right>h2 {
  display: block;
  overflow: hidden;
  line-height: 40px;
  margin-top: 20px;
  font-size: 24px;
  color: #383838;
  letter-spacing: 25px;
}
.about-list {
  width: 100%;
  margin-top: 65px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  position: relative;
}
.about-list::before {
  content: "";
  width: 100%;
  height: 1px;
  background-color: #a9a9a9;
  position: absolute;
  left: 0;
  bottom: 0;
}
.about-list>li {
  display: flex;
  flex-direction: column;
  position: relative;
  padding-bottom: 43px;
}
.about-list>li::after {
  content: "";
  width: 0;
  height: 4px;
  background-color: var(--color-main);
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
}
.about-list>li>h1 {
  display: flex;
  align-items: flex-end;
}
.about-list>li>h1>span {
  line-height: 1;
  font-size: 36px;
  color: #232323;
}
.about-list>li>h1>em {
  margin-left: 9px;
  width: 34px;
  height: 24px;
  line-height: 24px;
  font-size: 14px;
  color: #fff;
  text-align: center;
  border-radius: 20px;
  background-color: var(--color-main);
}
.about-list>li>div {
  display: block;
  overflow: hidden;
  margin-top: 10px;
  line-height: 26px;
  font-size: 16px;
  color: #444;
}
.about-list>li:hover::after {
  width: 100%;
}

@media (max-width: 1200px) {
  .about {
    padding: 50px 0;
  }
  .about-right {
    padding-right: 30px;
  }
  .about-right>h1 {
    display: block;
    overflow: hidden;
    line-height: 30px;
    font-size: 20px;
    color: var(--color-hover);
  }
  .about-right>h1>span {
    line-height: 50px;
    font-size: 30px;
  }
  .about-right>h2 {
    line-height: 30px;
    font-size: 20px;
    letter-spacing: 20px;
  }
  .about-list {
    margin-top: 50px;
  }
}
@media (max-width: 991px) {
  .about {
    padding: 30px 0;
  }
  .about-right {
    padding-right: 30px;
  }
  .about-right>h2 {
    letter-spacing: 10px;
  }
  .about-list {
    margin-top: 30px;
  }
  .about-list>li {
    padding-bottom: 25px;
  }
}
@media (max-width: 767px) {
  .about {
    padding: 15px 0;
  }
  .about-left {
    width: 100%;
    margin: 0;
  }
  .about-right {
    width: 100%;
    padding: 10px 0 0 0;
  }
  .about-right>h1 {
    line-height: 24px;
    font-size: 16px;
  }
  .about-right>h1>span {
    line-height: 30px;
    font-size: 20px;
  }
  .about-text {
    height: auto;
    line-height: 24px;
    font-size: 14px;
    margin-top: 10px;
    -webkit-line-clamp: initial;
  }
  .about-right>h2 {
    line-height: 30px;
    font-size: 20px;
    letter-spacing: 10px;
  }
  .about-list {
    margin-top: 10px;
  }
  .about-list>li {
    padding-bottom: 10px;
  }
  .about-list>li>h1>span {
    font-size: 20px;
  }
  .about-list>li>h1>em {
    margin-left: 5px;
    width: 24px;
    height: 20px;
    line-height: 20px;
    font-size: 12px;
  }
  .about-list>li>div {
    margin-top: 5px;
    line-height: 20px;
    font-size: 12px;
  }
}

/* 晟图产品 */
.product {
  padding: 80px 0;
}
#gallery,
#thumbs {
  width: 100%;
  overflow: hidden;
}

.gallery {
  width: 100%;
  display: flex;
  position: relative;
  margin-top: 45px;
}
#gallery .swiper-slide {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  overflow: hidden;
  border-radius: 10px;
  overflow: hidden;
}
.gallery-left {
  width: 50%;
  overflow: hidden;
  position: relative;
  background-image: radial-gradient(#fff, #e2e2e2);
}
.gallery-left::before {
  content: "";
  display: block;
  padding-top: 90.5%;
}
.gallery-right {
  width: 50%;
  background-color: #f7f7f7;
  border-top: 8px solid var(--color-main);
  padding: 15px 40px 15px 55px;
}
.gallery-right>h1 {
  display: block;
  overflow: hidden;
  line-height: 45px;
  font-size: 36px;
  color: #0257ae;
}
.gallery-box {
  display: block;
  overflow: hidden;
  margin-top: 20px;
}
.gallery-box>h2 {
  display: block;
  overflow: hidden;
  line-height: 36px;
  font-size: 22px;
  color: #2d2d2d;
}
.gallery-box .gallery-text {
  display: block;
  overflow: hidden;
  line-height: 26px;
  font-size: 16px;
  color: #737373;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  margin-top: 5px;
}
.gallery-list {
  display: flex;
  flex-wrap: wrap;
  width: calc(100% + 12px);
  margin-left: -6px;
  margin-top: 10px;
}
.gallery-list>li {
  width: calc(calc(100% / 3) - 12px);
  margin: 0 6px 12px 6px;
  border: 1px solid #cacaca;
  border-radius: 10px;
  padding: 18px 10px;
  text-align: center;
  line-height: 24px;
  font-size: 15px;
  color: #4b4a4a;
}
.gallery-list>li>span {
  display: block;
  overflow: hidden;
}
.gallery-more {
  display: flex;
  margin-top: 20px;
}
.gallery-more>a {
  width: 160px;
  height: 50px;
  font-size: 16px;
  color: #fff;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--color-hover);
}
.gallery-more>a:hover {
  background-color: var(--color-main);
}

.gallery .prev-button,
.gallery .next-button {
  font-family: SimSun;
  font-size: 72px;
  color: #dcdcdc;
  font-weight: bold;
  position: absolute;
  left: -90px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 5;
  cursor: pointer;
}
.gallery .next-button {
  left: initial;
  right: -90px;
}
.gallery .prev-button::before {
  content: "<";
}
.gallery .next-button::before {
  content: ">";
}
.gallery .prev-button:hover,
.gallery .next-button:hover {
  color: var(--color-main);
}

#thumbs {
  position: relative;
  z-index: 0;
  border-radius: 10px;
  margin-top: 28px;
}
#thumbs::before {
  content: "";
  width: 100%;
  height: calc(100% - 11px);
  border-radius: 10px;
  border: 1px solid #ddd;
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: -1;
}
#thumbs .swiper-slide {
  margin-top: 11px;
}
#thumbs .swiper-slide>a{
  border-right: 1px solid #ddd;
  padding: 20px 10px;
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  color: #2d2d2d;
  font-weight: bold;
}
#thumbs .swiper-slide:first-child>a {
  border-radius: 10px 0 0 0;
}
#thumbs .swiper-slide:last-child>a {
  border-radius: 0 10px 0 0;
}

#thumbs .swiper-slide>a:hover {
  background-color: var(--color-main);
  color: #fff;
}
#thumbs .swiper-slide>a:hover::after {
  content: "";
  width: 0;
  height: 0;
  border-bottom: 11px solid var(--color-main);
  border-left: 10px solid transparent;
  border-right: 10px solid transparent;
  position: absolute;
  left: 50%;
  top: -11px;
  transform: translateX(-50%);
}

@media (max-width: 1400px) {
  .gallery {
    padding: 0 50px;
  }
  .gallery .prev-button,
  .gallery .next-button {
    font-size: 60px;
    left: 0;
  }
  .gallery .next-button {
    left: initial;
    right: 0;
  }
}
@media (max-width: 1200px) {
  .product {
    padding: 50px 0;
  }
  .gallery {
    padding: 0 40px;
  }
  .gallery .prev-button,
  .gallery .next-button {
    font-size: 50px;
  }
  .gallery-right {
    padding: 25px 30px;
  }
  .gallery-list>li {
    padding: 10px;
    font-size: 14px;
  }
  #thumbs {
    margin-top: 20px;
  }
  #thumbs .swiper-slide>a {
    padding: 20px 10px;
    min-height: 80px;
  }
}
@media (max-width: 991px) {
  .product {
    padding: 30px 0;
  }
  .gallery {
    margin-top: 30px;
  }
  .gallery {
    padding: 0 30px;
  }
  .gallery .prev-button,
  .gallery .next-button {
    font-size: 40px;
  }
  .gallery-right {
    padding: 20px;
  }
  .gallery-right>h1 {
    line-height: 35px;
    font-size: 30px;
  }
  .gallery-box {
    margin-top: 10px;
  }
  .gallery-box>h2 {
    line-height: 30px;
    font-size: 18px;
    color: #2d2d2d;
  }
  .gallery-box .gallery-text {
    line-height: 24px;
    font-size: 14px;
  }
  .gallery-list>li {
    width: calc(50% - 12px);
  }
  .gallery-more {
    margin-top: 10px;
  }
}
@media (max-width: 767px) {
  .product {
    padding: 15px 0;
  }
  .gallery {
    margin-top: 10px;
  }
  .gallery {
    padding: 0;
  }
  .gallery .prev-button,
  .gallery .next-button {
    display: none;
  }
  #gallery .swiper-slide{
    display: block;
  }
  .gallery-left {
    width: 100%;
  }
  .gallery-right {
    width: 100%;
    padding: 15px;
  }
  .gallery-right>h1 {
    line-height: 30px;
    font-size: 20px;
  }
  .gallery-list {
    width: 100%;
    margin-left: 0;
    margin-top: 5px;
    justify-content: space-between;
  }
  .gallery-list>li {
    width: calc(50% - 2px);
    margin: 0 0 4px 0;
  }
  .gallery-more>a {
    width: 110px;
    height: 40px;
    font-size: 14px;
  }
  #thumbs {
    margin-top: 10px;
  }
  #thumbs .swiper-slide>a {
    padding: 10px;
    min-height: 50px;
    font-size: 16px;
    line-height: 24px;
  }
}

/* 专业生产定制 */
.customized {
  background-image: url(../images/customized-bj.jpg);
  padding: 85px 0 112px 0;
}
.customized .title>h1 {
  height: 46px;
  line-height: 46px;
  font-family: "Source Han Sans CN";
  font-size: 40px;
  font-weight: bold;
}
.customized .title>div {
  margin-top: 10px;
  line-height: 26px;
  font-size: 18px;
  opacity: 0.6;
}
.customized-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-top: 65px;
}
.customized-list>li {
  width: calc(100% / 6);
  border-right: 1px solid rgba(255, 255, 255, 0.5);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  min-height: 412px;
  padding: 55px 15px 35px 15px;
  cursor: pointer;
}
.customized-list>li:last-child {
  border-right: none;
}
.customized-list>li .customized-icon {
  width: 100%;
  overflow: hidden;
  position: relative;
  height: 62px;
}
.customized-list>li .customized-icon>img:first-child {
  opacity: 1;
}
.customized-list>li .customized-icon>img:last-child {
  opacity: 0;
}
.customized-list>li>h1 {
  display: block;
  overflow: hidden;
  line-height: 30px;
  text-align: center;
  font-size: 20px;
  color: #fff;
}
.customized-list>li>h1>span {
  display: block;
  overflow: hidden;
  line-height: 36px;
  font-size: 26px;
  font-weight: bold;
  transition: initial;
}
.customized-list>li .customized-number {
  display: block;
  overflow: hidden;
  height: 52px;
  line-height: 52px;
  text-align: center;
  font-size: 60px;
  font-weight: bold;
  color: #fff;
  opacity: 0.1;
}
.customized-list>li:hover {
  background-color: #fff;
}
.customized-list>li:hover .customized-icon>img:first-child {
  opacity: 0;
}
.customized-list>li:hover .customized-icon>img:last-child {
  opacity: 1;
}
.customized-list>li:hover>h1 {
  color: #404040;
}
.customized-list>li:hover .customized-number {
  color: #000;
}

@media (max-width: 1200px) {
  .customized {
    padding: 50px 0;
  }
  .customized-list {
    margin-top: 50px;
  }
  .customized-list>li {
    min-height: 350px;
    padding: 35px 15px;
  }
}
@media (max-width: 991px) {
  .customized {
    padding: 30px 0;
  }
  .customized .title>h1 {
    height: 40px;
    line-height: 40px;
    font-size: 30px;
  }
  .customized-list {
    margin-top: 30px;
  }
  .customized-list>li {
    min-height: 250px;
    padding: 20px 10px;
  }
  .customized-list>li .customized-icon {
    height: 50px;
  }
  .customized-list>li>h1 {
    line-height: 24px;
    font-size: 16px;
  }
  .customized-list>li>h1>span {
    line-height: 32px;
    font-size: 22px;
  }
}
@media (max-width: 767px) {
  .customized {
    padding: 15px 0;
  }
  .customized .title>h1 {
    height: 30px;
    line-height: 30px;
    font-size: 20px;
  }
  .customized .title>div {
    margin-top: 0;
    line-height: 24px;
    font-size: 14px;
  }
  .customized-list {
    margin-top: 10px;
  }
  .customized-list>li {
    width: calc(100% / 3);
    min-height: initial;
    padding: 10px;
  }
  .customized-list>li:nth-child(3n) {
    border-right: none;
  }
  .customized-list>li:nth-child(1),
  .customized-list>li:nth-child(2),
  .customized-list>li:nth-child(3) {
    border-bottom: 1px solid rgba(255, 255, 255, 0.5);
  }
  .customized-list>li .customized-icon {
    height: 40px;
  }
  .customized-list>li>h1 {
    line-height: 20px;
    font-size: 14px;
    margin: 10px 0;
  }
  .customized-list>li>h1>span {
    line-height: 24px;
    font-size: 18px;
  }
  .customized-list>li .customized-number {
    height: 30px;
    line-height: 30px;
    font-size: 30px;
  }
}

/* 行业应用 */
.industry {
  padding: 80px 0;
}
.industry-content {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-top: 50px;
}
.industry-nav {
  width: 23.5%;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  background-color: #fff;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.2);
}
.industry-nav>li {
  width: 50%;
  display: flex;
}
.industry-nav>li>a {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 24px 10px;
}
.industry-nav>li>a .industry-icon {
  width: 100%;
  overflow: hidden;
  position: relative;
  height: 32px;
}
.industry-nav>li>a .industry-icon>img:first-child {
  opacity: 1;
}
.industry-nav>li>a .industry-icon>img:last-child {
  opacity: 0;
}
.industry-nav>li>a>h1 {
  display: block;
  overflow: hidden;
  margin-top: 10px;
  line-height: 28px;
  text-align: center;
  font-size: 18px;
  color: #2d2d2d;
}
.industry-nav>li.industry-active>a {
  background-color: var(--color-main);
}
.industry-nav>li.industry-active>a .industry-icon>img:first-child {
  opacity: 0;
}
.industry-nav>li.industry-active>a .industry-icon>img:last-child {
  opacity: 1;
}
.industry-nav>li.industry-active>a>h1 {
  color: #fff;
  font-weight: bold;
}

.industry-right {
  flex: 1;
  padding-left: 17px;
  display: flex;
}
.industry-right>div {
  width: 100%;
  height: 100%;
  display: none;
}
.industry-right>div:first-child {
  display: block;
}
.industry-right>div>a.img {
  width: 100%;
  height: 100%;
  display: block;
}
.industry-right>div>a.img::before {
  padding-top: 55%;
}

@media (max-width: 1200px) {
  .industry {
    padding: 50px 0;
  }
  .industry-nav {
    width: 27.5%;
  }
}
@media (max-width: 991px) {
  .industry {
    padding: 30px 0;
  }
  .industry-content {
    margin-top: 30px;
  }
  .industry-nav {
    width: 34%;
  }
}
@media (max-width: 767px) {
  .industry {
    padding: 15px 0;
  }
  .industry-content {
    margin-top: 10px;
  }
  .industry-nav {
    width: 100%;
  }
  .industry-nav>li {
    width: 25%;
  }
  .industry-nav>li>a {
    padding: 15px 10px;
  }
  .industry-nav>li>a>h1 {
    margin-top: 5px;
    line-height: 24px;
    font-size: 14px;
  }
  .industry-right {
    flex: none;
    width: 100%;
    padding: 10px 0 0 0;
  }
}

/* 信赖品牌 */
.brand .title>h1 {
  height: 48px;
  line-height: 48px;
  font-family: "Source Han Sans CN";
  font-size: 40px;
  color: var(--color-main);
}
.brand .title>div {
  line-height: 26px;
  font-size: 16px;
  color: #000;
  opacity: 0.6;
  /*margin-top: 10px;*/
}
.brand-content {
  display: block;
  overflow: hidden;
  background-color: #f0f0f0;
  padding: 85px 0 50px 0;
  margin-top: 40px;
}
.brand-list {
  display: flex;
  flex-direction: column;
}
.brand-list>li {
  width: 100%;
  margin-bottom: 50px;
  display: flex;
  flex-wrap: wrap;
  flex-direction: row-reverse;
  position: relative;
  overflow: hidden;
}
.brand-list>li .brand-left {
  width: 61.75%;
  float: left;
  overflow: hidden;
  position: relative;
}
.brand-list>li .brand-right {
  width: 100%;
  flex: 1;
  padding: 50px 20px 40px 30px;
  float: left;
  background-color: #fff;
  position: relative;
  z-index: 2;
  margin: 40px 0;
}
.brand-list>li .brand-right::before {
  content: "";
  width: calc(100% + 94px);
  height: 100%;
  background-color: #fff;
  position: absolute;
  left: 0;
  top: 0;
  z-index: -1;
}
.brand-title {
  display: flex;
}
.brand-number {
  width: 94px;
  background-color: var(--color-hover);
  line-height: 1;
  font-size: 60px;
  font-weight: bold;
  padding: 14px 0;
  text-align: center;
  color: rgba(255, 255, 255, 0.5);
  position: absolute;
  right: -94px;
  top: 0;
  z-index: 2;
}
.brand-title>h1 {
  display: flex;
  flex-direction: column;
  line-height: 32px;
  font-size: 22px;
  color: #343434;
}
.brand-title>h1>span {
  display: block;
  overflow: hidden;
  line-height: 44px;
  font-family: "Source Han Sans CN";
  font-size: 34px;
  color: #0257ae;
  font-weight: bold;
  margin-bottom: 5px;
}
.brand-title>h1::after {
  content: "";
  width: 52px;
  height: 3px;
  background-color: #d9d9d9;
  margin-top: 24px;
}
.brand-text {
  display: block;
  overflow: hidden;
  margin-top: 20px;
  min-height: 104px;
  line-height: 26px;
  font-size: 16px;
  color: #5c5c5c;
}

.brand-list>li:nth-child(even) {
  flex-direction: row;
}
.brand-list>li:nth-child(even) .brand-right::before {
  left: initial;
  right: 0;
}
.brand-list>li:nth-child(even) .brand-right {
  padding: 50px 40px 40px 40px;
}
.brand-list>li:nth-child(even) .brand-number {
  right: initial;
  left: -94px;
}

@media (max-width: 1200px) {
  .brand-content {
    padding: 50px 0;
  }
}
@media (max-width: 991px) {
  .brand .title>h1 {
    height: 36px;
    line-height: 36px;
    font-size: 20px;
  }
  .brand-content {
    padding: 30px 0;
    margin-top: 20px;
  }
  .brand-list>li {
    margin-bottom: 30px;
  }
  .brand-list>li .brand-right {
    padding: 20px;
    margin: 20px 0;
  }
  .brand-title>h1::after {
    margin-top: 15px;
  }
  .brand-list>li:nth-child(even) .brand-right {
    padding: 20px;
  }
}
@media (max-width: 767px) {
  .brand-content {
    padding: 15px 0;
    margin-top: 10px;
  }
  .brand-list>li {
    margin-bottom: 10px;
  }
  .brand-list>li .brand-left {
    width: 100%;
  }
  .brand-list>li .brand-left::before {
    content: "";
    display: block;
    padding-top: 54.18919%;
  }
  .brand-list>li .brand-right {
    width: 100%;
    flex: none;
    margin: 0;
    padding: 15px;
  }
  .brand-list>li .brand-right::before {
    display: none !important;
  }
  .brand-number {
    width: auto;
    font-size: 40px;
    padding: 10px;
    position: relative !important;
    right: initial !important;
    left: initial !important;
    top: initial !important;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .brand-title>h1 {
    padding-left: 15px;
    flex: 1;
    line-height: 20px;
    font-size: 14px;
  }
  .brand-title>h1>span {
    line-height: 30px;
    font-size: 20px;
    margin: 0;
  }
  .brand-title>h1::after {
    margin-top: 5px;
  }
  .brand-text {
    margin-top: 10px;
    min-height: initial;
    line-height: 22px;
    font-size: 14px;
  }
   .brand .title>div {
  font-size: 14px;
}
}

/* 客户信赖 */
.custom .title {
  margin: 80px 0 40px 0;
}
.custom-list {
  display: flex;
  flex-wrap: wrap;
  width: calc(100% + 1px);
  margin-left: -0.5px;
}
.custom-list>li {
  width: calc(25% - 1px);
  margin: 0 0.5px 1px 0.5px;
  display: flex;
}
.custom-list>li>a {
  width: 100%;
  height: 100%;
  overflow: hidden;
  position: relative;
}
.custom-list>li>a::before {
  content: "";
  display: block;
  padding-top: 86.430063%;
}
.custom-list>li>a::after {
  content: "";
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.1);
  position: absolute;
  inset: 0;
  z-index: 2;
}
.custom-list>li>a .custom-hover {
  width: 100%;
  height: 100%;
  padding: 0 9%;
  background-color: rgba(2, 87, 174, .9);
  position: absolute;
  top: 100%;
  left: 0;
  z-index: 5;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.custom-list>li>a .custom-hover>h1 {
  line-height: 40px;
  text-align: center;
  font-size: 24px;
  color: #fff;
}
.custom-list>li>a .custom-hover .custom-text {
  display: block;
  overflow: hidden;
  margin-top: 25px;
  height: 130px;
  line-height: 26px;
  font-size: 15px;
  color: #fff;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 5;
  -webkit-box-orient: vertical;
}
.custom-list>li>a .custom-hover .custom-more {
  width: 100%;
  max-width: 112px;
  height: 40px;
  margin-top: 8px;
  border: 1px solid #fff;
  border-radius: 10px;
  font-size: 14px;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
}
.custom-list>li>a:hover .custom-hover {
  top: 0;
}

@media (max-width: 1200px) {
  .custom .title {
    margin: 40px 0;
  }
  .custom-list>li>a .custom-hover .custom-text {
    margin-top: 10px;
    height: 104px;
    -webkit-line-clamp: 4;
  }
}
@media (max-width: 991px) {
  .custom .title {
    margin: 20px 0;
  }
  .custom-list>li>a .custom-hover>h1 {
    line-height: 30px;
    font-size: 20px;
  }
  .custom-list>li>a .custom-hover .custom-text {
    height: 52px;
    -webkit-line-clamp: 2;
  }
}
@media (max-width: 767px) {
  .custom .title {
    margin: 15px 0 10px 0;
  }
  .custom-list>li {
    width: calc(50% - 1px);
  }
  .custom-list>li>a .custom-hover>h1 {
    line-height: 24px;
    font-size: 16px;
  }
  .custom-list>li>a .custom-hover .custom-text {
    font-size: 12px;
    line-height: 20px;
    height: 40px;
  }
  .custom-list>li>a .custom-hover .custom-more {
    max-width: 90px;
    height: 30px;
    margin-top: 4px;
    border-radius: 5px;
    font-size: 12px;
  }
}

/* 车间展示 */
.workshop {
  padding: 80px 0 90px 0;
}
.workshop-content {
  display: flex;
  margin-top: 35px;
  position: relative;
}
.workshop-content .swiper {
  width: 100%;
}
.workshop-content .swiper-slide>a {
  width: 100%;
  display: block;
  overflow: hidden;
  position: relative;
}
.workshop-content .swiper-slide>a::before {
  content: "";
  display: block;
  padding-top: 113.55499%;
}
.workshop-content .swiper-slide>a>h1 {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  text-align: center;
  padding: 40px 20px;
  font-size: 24px;
  color: #fff;
  position: absolute;
  inset: 0;
  z-index: 2;
}
.workshop-content .swiper-slide>a>h1::before {
  content: "";
  width: 100%;
  height: 100%;
  background: url(../images/whorshop-img-hover.png) no-repeat center center;
  background-size: 100% 100%;
  position: absolute;
  inset: 0;
  z-index: -1;
}
.workshop-content .swiper-slide>a:hover>img {
  transform: scale(1.1);
}
.workshop-content .swiper-slide>a>h1:hover {
  top: 100%;
}
.workshop .prev-button,
.workshop .next-button {
  width: 36px;
  height: 36px;
  cursor: pointer;
  background-image: url(../images/whorshop-left.png);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: 100% 100%;
  position: absolute;
  left: -80px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 3;
}
.workshop .next-button {
  left: initial;
  right: -80px;
  background-image: url(../images/whorshop-right.png);
}

@media (max-width: 1400px) {
  .workshop-content {
    padding: 0 40px;
  }
  .workshop .prev-button,
  .workshop .next-button {
    left: 0;
  }
  .workshop .next-button {
    left: initial;
    right: 0;
  }
}
@media (max-width: 1200px) {
  .workshop {
    padding: 50px 0;
  }
}
@media (max-width: 991px) {
  .workshop {
    padding: 30px 0;
  }
  .workshop-content {
    margin-top: 20px;
  }
  .workshop-content .swiper-slide>a>h1 {
    padding: 20px 10px;
    font-size: 20px;
  }
}
@media (max-width: 767px) {
  .workshop {
    padding: 15px 0;
  }
  .workshop-content {
    margin-top: 10px;
    padding: 0 30px;
  }
  .workshop-content .swiper-slide>a>h1 {
    padding: 10px;
    font-size: 16px;
    line-height: 24px;
  }
  .workshop .prev-button,
  .workshop .next-button {
    width: 24px;
    height: 24px;
  }
}

/* 新闻资讯 */
.news {
  background-color: #f0f0f0;
  padding: 70px 0 90px 0;
}
.news-content {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-top: 40px;
}
.news-left {
  width: 41.75%;
  display: flex;
}
.news-left>a {
  width: 100%;
  height: 100%;
  overflow: hidden;
  position: relative;
}
.news-left>a::before {
  content: "";
  display: block;
  padding-top: 75%;
}
.news-right {
  width: 100%;
  flex: 1;
  padding-left: 14px;
  display: flex;
  flex-wrap: wrap;
}
.news-right>li {
  width: calc(50% - 1px);
  margin: 0 0 1px 1px;
}
.news-right>li>a {
  display: block;
  overflow: hidden;
  background-color: #fff;
  padding: 40px;
  padding-top: 30px;
  position: relative;
}
.news-right>li>a>h1 {
  display: block;
  overflow: hidden;
  line-height: 30px;
  font-size: 18px;
  color: #2a2a2a;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.news-right>li>a .news-text {
  display: block;
  overflow: hidden;
  height: 66px;
  line-height: 22px;
  font-size: 14px;
  color: #868686;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  margin: 20px 0;
}
.news-right>li>a .news-time {
  display: block;
  overflow: hidden;
  line-height: 24px;
  font-size: 14px;
  color: #7b7b7b;
  text-decoration: underline;
  font-weight: bold;
}
.news-right>li>a::before {
  content: "";
  width: 5px;
  height: 0;
  overflow: hidden;
  background-color: var(--color-hover);
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}
.news-right>li>a:hover::before {
  height: 100%;
}

@media (max-width: 1200px) {
  .news {
    padding: 50px 0;
  }
  .news-right>li>a {
    padding: 30px;
  }
}
@media (max-width: 991px) {
  .news {
    padding: 30px 0;
  }
  .news-content {
    margin-top: 20px;
  }
  .news-right>li>a {
    padding: 20px;
  }
  .news-right>li>a .news-text {
    margin: 10px 0;
  }
}
@media (max-width: 767px) {
  .news {
    padding: 15px 0;
  }
  .news-content {
    margin-top: 10px;
  }
  .news-left {
    width: 100%;
  }
  .news-right {
    width: 100%;
    padding: 0;
    margin-top: 10px;
  }
  .news-right>li>a {
    padding: 10px;
  }
  .news-right>li>a>h1 {
    line-height: 24px;
    font-size: 16px;
  }
  .news-right>li>a .news-text {
    height: 60px;
    line-height: 20px;
    margin: 5px 0;
  }
  .news-right>li>a .news-time {
    line-height: 20px;
    font-size: 12px;
  }
}
/* END-首页样式 */

/* 关于我们 */
.main {
  width: 100%;
  overflow: hidden;
  padding: 30px 0;
}
.main-title {
  width: 100%;
  float: left;
  display: flex;
  align-items: center;
  font-size: 14px;
  color: #5a5a5a;
  line-height: 30px;
  padding-bottom: 15px;
  border-bottom: 1px dotted #939393;
}
.main-title>img {
  margin-right: 15px;
}

.main-content {
  width: 100%;
  float: left;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-top: 30px;
}

.main-left {
  width: 258px;
  display: flex;
  flex-direction: column;
}
.left-menu {
  width: 100%;
  overflow: hidden;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
}
.menu-title {
  display: block;
  overflow: hidden;
  height: 86px;
  line-height: 86px;
  background-color: var(--color-main);
  padding: 0 20px;
  font-size: 26px;
  color: #fff;
}
.menu-list {
  display: block;
  overflow: hidden;
  border: 1px solid #e0e0e0;
  border-top: 3px solid var(--color-hover);
  transition: initial;
  padding: 20px;
}
.menu-list>li {
  display: block;
  overflow: hidden;
  margin-bottom: 15px;
}
.menu-list>li:last-child {
  margin: 0;
}
.menu-list>li>a {
  display: block;
  overflow: hidden;
  padding: 0 20px;
  background-color: #f2f2f2;
}
.menu-list>li>a>span {
  display: block;
  overflow: hidden;
  padding-left: 20px;
  height: 50px;
  line-height: 50px;
  font-size: 18px;
  color: #373737;
  text-overflow: ellipsis;
  white-space: nowrap;
  position: relative;
}
.menu-list>li>a>span::before {
  content: "";
  float: left;
  width: 0;
  height: 0;
  border-left: 5px solid var(--color-main);
  border-top: 5px solid transparent;
  border-bottom: 5px solid transparent;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}
.menu-list>li:hover>a,
.menu-list>li.menu-active>a {
  background-color: var(--color-hover);
}
.menu-list>li:hover>a>span,
.menu-list>li.menu-active>a>span {
  color: #fff;
}
.menu-list>li:hover>a>span::before,
.menu-list>li.menu-active>a>span::before {
  border-left-color: #fff;
}

.menu-list>li>dl{
  display: none;
  padding: 0 10px;
  transition: initial;
}
.menu-list>li>dl>dd{
  display: block;
  overflow: hidden;
  margin-top: 5px;
}
.menu-list>li>dl>dd>a {
  display: block;
  overflow: hidden;
  padding: 0 20px;
  text-align: center;
  background-color: #f2f2f2;
  height: 40px;
  line-height: 40px;
  font-size: 16px;
  color: #373737;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.menu-list>li>dl>dd>a:hover , .menu-list>li>dl>dd>a.active{
  background-color: var(--color-hover);
  color: #fff;
}

.menu-news {
  width: 100%;
  overflow: hidden;
  margin-top: 35px;
}
.menu-news>h1 {
  display: block;
  overflow: hidden;
  line-height: 1;
  font-size: 26px;
  color: #303030;
  padding-bottom: 15px;
  border-bottom: 1px solid #e4e4e4;
  position: relative;
  padding-left: 16px;
}
.menu-news>h1::before {
  content: "";
  width: 4px;
  height: 26px;
  background-color: var(--color-main);
  position: absolute;
  left: 0;
  top: 0;
}
.menu-news>ul {
  display: flex;
  flex-direction: column;
  margin-top: 8px;
}
.menu-news>ul>li {
  display: block;
  overflow: hidden;
  margin-bottom: 5px;
  border-bottom: 1px dashed #c3c3c3;
}
.menu-news>ul>li>a {
  display: block;
  overflow: hidden;
  height: 52px;
  line-height: 52px;
  font-size: 15px;
  color: #2b2b2b;
  padding-left: 16px;
  position: relative;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.menu-news>ul>li>a::before {
  content: ">";
  font-family: SimSun;
  font-size: 16px;
  color: #0257ae;
  font-weight: bold;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}
.menu-news>ul>li>a:hover {
  color: var(--color-main);
}

.menu-hotline {
  width: 100%;
  overflow: hidden;
  background-color: var(--color-main);
  padding: 20px;
  padding-top: 25px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  margin-top: 30px;
}
.menu-hotline>span {
  line-height: 26px;
  color: #fff;
  font-size: 18px;
  padding-left: 35px;
  background: url(../images/menu-hotline.png) no-repeat left center;
}
.menu-hotline>div {
  line-height: 32px;
  margin-top: 10px;
  font-size: 30px;
  color: #fff;
  font-weight: bold;
}

.main-right {
  flex: 1;
  width: calc(100% - 258px);
  padding-left: 30px;
}
.place-title {
  width: 100%;
  float: left;
  line-height: 30px;
  font-size: 24px;
  color: #373737;
  padding-bottom: 19px;
  border-bottom: 1px solid #b7b7b7;
}
.place-content {
  width: 100%;
  float: left;
  padding-top: 35px;
}
.company {
  display: block;
  overflow: hidden;
  font-size: 16px;
  line-height: 36px;
  color: var(--color3);
}
.company  img{ max-width: 100% !important; height: auto !important;}

@media (max-width: 1200px) {
  .main-left {
    width: 24%;
  }
  .main-right {
    width: 76%;
  }
}
@media (max-width: 991px) {
  .main-left {
    width: 30%;
  }
  .main-right {
    width: 70%;
  }
  .main-right {
    padding-left: 20px;
  }
  .place-content {
    padding-top: 20px;
  }
}
@media (max-width: 767px) {
  .main {
    padding: 0;
  }
  .main-content {
    padding: 0;
    margin: 0;
  }
  .main-left {
    width: 100%;
  }
  .left-menu {
    overflow: visible;
  }
  .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-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;
    border-top: none;
    padding: 5px;
  }
  .menu-list>li {
    margin-bottom: 5px;
  }
  .menu-list>li>a>span {
    height: 40px;
    line-height: 40px;
    font-size: 16px;
  }

  .main-right {
    flex: none;
    width: 100%;
    padding: 0;
  }
  .place-content {
    padding: 20px 0;
  }
  .company {
    line-height: 24px;
    font-size: 14px;
  }
}
/* END-关于我们 */

/* 产品中心 */
.product-list {
  display: flex;
  flex-wrap: wrap;
  width: calc(100% + 18px);
  margin-left: -9px;
}
.product-list>li {
  width: calc(calc(100% / 3) - 18px);
  margin: 0 9px 20px 9px;
}
.product-list>li>a {
  display: flex;
  flex-direction: column;
}
.product-list>li>a .img {
  border: 1px solid #e9e9e9;
}
.product-list>li>a .img::before {
  padding-top: 74.658%;
}
.product-list>li>a .product-box {
  width: 100%;
  overflow: hidden;
  background-color: #f3f3f3;
  padding: 15px;
}
.product-list>li>a .product-box>h1 {
  display: block;
  overflow: hidden;
  line-height: 28px;
  font-size: 16px;
  color: #4b4b4b;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.product-list>li>a .product-box .product-text {
  display: block;
  overflow: hidden;
  height: 40px;
  line-height: 20px;
  margin: 6px 0;
  font-size: 14px;
  color: #858585;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}
.product-list>li>a .product-box .product-more {
  display: block;
  overflow: hidden;
  line-height: 24px;
  font-size: 14px;
  color: #0257ae;
  text-decoration: underline;
}
.product-list>li>a:hover .product-box {
  background-color: var(--color-main);
}
.product-list>li>a:hover .product-box>h1,
.product-list>li>a:hover .product-box .product-text,
.product-list>li>a:hover .product-box .product-more {
  color: #fff;
}

.product-details {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  background-color: #f9f9f9;
  padding: 15px;
}
.product-details-left {
  width: 50%;
  overflow: hidden;
}
.product-details-left .swiper{
  width: 100%;
  height: 100%;
  overflow: hidden;
  position: relative;
  border: 1px solid #e9e9e9;
}
.product-details-left .swiper .swiper-slide::before {
  content: "";
  display: block;
  padding-top: 75%;
}
.product-details-left .prev-button,
.product-details-left .next-button {
  font-family: SimSun;
  font-size: 72px;
  color: #dcdcdc;
  font-weight: bold;
  position: absolute;
  left:0;
  top: 50%;
  transform: translateY(-50%);
  z-index: 5;
  cursor: pointer;
}
.product-details-left .next-button {
  left: initial;
  right:0;
}
.product-details-left .prev-button::before {
  content: "<";
}
.product-details-left .next-button::before {
  content: ">";
}
.product-details-left .prev-button:hover,
.product-details-left .next-button:hover {
  color: var(--color-main);
}

.product-details-right {
  width: 50%;
  padding: 10px 15px 25px 25px;
}
.product-details-right>h1 {
  display: block;
  overflow: hidden;
  line-height: 40px;
  font-size: 24px;
  color: #4b4b4b;
}
.product-details-right .product-details-text {
  display: block;
  overflow: hidden;
  min-height: 168px;
  line-height: 24px;
  font-size: 14px;
  color: #858585;
  margin-top: 15px;
}
.product-details-right .product-details-hotline {
  display: block;
  overflow: hidden;
  margin-top: 15px;
}
.product-details-right .product-details-hotline>a {
  width: 100%;
  max-width: 230px;
  height: 60px;
  border: 1px solid #bbb;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  color: #0257ae;
  font-weight: bold;
}
.product-details-right .product-details-hotline>a>img {
  margin-right: 10px;
}

.product-details-content {
  width: 100%;
  min-height: 190px;
  display: flex;
  flex-direction: column;
  margin-top: 30px;
  font-size: 14px;
  line-height: 24px;
  color: #787878;
}
.product-details-title {
  display: flex;
  position: relative;
  overflow: hidden;
  z-index: 0;
  margin-bottom: 15px;
}
.product-details-title>span {
  float: left;
  font-size: 22px;
  color: #464646;
  line-height: 40px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--color-hover);
}
.product-details-title::after {
  content: "";
  width: 100%;
  height: 1px;
  background-color: #e3e3e3;
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: -1;
}
.product-details-content img {
  display: block;
  max-width: 100% !important;
  height: auto !important;
  margin: 5px auto;
}

.recommend {
  width: 100%;
  overflow: hidden;
  margin-top: 20px;
}
.recommend .product-details-title {
  margin-bottom: 25px;
}
.recommend .swiper{
  width: 100%;
  overflow: hidden;
}
.recommend .swiper .swiper-slide>a {
  display: flex;
  flex-direction: column;
}
.recommend .swiper .swiper-slide>a .img {
  border: 1px solid #e9e9e9;
}
.recommend .swiper .swiper-slide>a .img::before {
  padding-top: 74.658%;
}
.recommend .swiper .swiper-slide>a .product-box {
  width: 100%;
  overflow: hidden;
  background-color: #f3f3f3;
  padding: 15px;
}
.recommend .swiper .swiper-slide>a .product-box>h1 {
  display: block;
  overflow: hidden;
  line-height: 28px;
  font-size: 16px;
  color: #4b4b4b;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.recommend .swiper .swiper-slide>a .product-box .product-text {
  display: block;
  overflow: hidden;
  height: 36px;
  line-height: 18px;
  margin: 10px 0;
  font-size: 14px;
  color: #858585;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}
.recommend .swiper .swiper-slide>a .product-box .product-more {
  display: block;
  overflow: hidden;
  line-height: 24px;
  font-size: 14px;
  color: #0257ae;
  text-decoration: underline;
}
.recommend .swiper .swiper-slide>a:hover .product-box {
  background-color: var(--color-main);
}
.recommend .swiper .swiper-slide>a:hover .product-box>h1,
.recommend .swiper .swiper-slide>a:hover .product-box .product-text,
.recommend .swiper .swiper-slide>a:hover .product-box .product-more {
  color: #fff;
}

@media (max-width: 991px) {
  .product-list>li {
    width: calc(calc(100% / 2) - 18px);
  }

  .product-details-left {
    width: 100%;
  }
  .product-details-right {
    width: 100%;
    padding: 20px;
  }
  .product-details-right .product-details-text {
    min-height: initial;
  }
}
@media (max-width: 767px) {
  .product-list {
    width: 100%;
    margin: 0;
    justify-content: space-between;
  }
  .product-list>li {
    width: calc(calc(100% / 2) - 5px);
    margin: 0 0 10px 0;
  }
  .product-list>li>a .product-box {
    padding: 10px;
  }
  .product-list>li>a .product-box>h1 {
    line-height: 24px;
    font-size: 16px;
  }
  .product-list>li>a .product-box .product-text {
    margin: 5px 0;
  }
  .product-list>li>a .product-box .product-more {
    line-height: 16px;
    font-size: 12px;
  }

  .product-details {
    padding: 0;
  }
  .product-details-right {
    padding: 15px;
  }
  .product-details-right>h1 {
    line-height: 30px;
    font-size: 18px;
  }
  .product-details-right .product-details-text {
    margin-top: 5px;
  }
  .product-details-right .product-details-hotline {
    margin-top: 5px;
  }
  .product-details-right .product-details-hotline>a {
    max-width: 180px;
    height: 42px;
    font-size: 18px;
  }
  .product-details-right .product-details-hotline>a>img {
    margin-right: 5px;
  }

  .product-details-content {
    min-height: initial;
    margin-top: 15px;
  }
  .product-details-title {
    margin-bottom: 10px;
  }
  .product-details-title>span {
    line-height: 30px;
    font-size: 18px;
    padding-bottom: 5px;
  }

  .recommend {
    margin-top: 15px;
  }
  .recommend .product-details-title {
    margin-bottom: 10px;
  }
  .recommend .swiper .swiper-slide>a .product-box {
    padding: 10px;
  }
  .recommend .swiper .swiper-slide>a .product-box>h1 {
    line-height: 24px;
    font-size: 16px;
  }
  .recommend .swiper .swiper-slide>a .product-box .product-text {
    margin: 5px 0;
  }
  .recommend .swiper .swiper-slide>a .product-box .product-more {
    line-height: 16px;
    font-size: 12px;
  }


}
/* END-产品中心 */

/* 新闻资讯 */
.news-list {
  display: flex;
  flex-direction: column;
}
.news-list>li {
  width: 100%;
  margin-bottom: 20px;
}
.news-list>li>a {
  display: flex;
  overflow: hidden;
  background-color: #f3f3f3;
}
.news-list>li>a .img {
  width: 30%;
}
.news-list>li>a .news-box {
  width: 70%;
  padding: 25px;
}
.news-list>li>a .news-box>h1 {
  display: block;
  overflow: hidden;
  line-height: 30px;
  font-size: 18px;
  color: #2a2a2a;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.news-list>li>a .news-box .news-text {
  display: block;
  overflow: hidden;
  height: 66px;
  line-height: 22px;
  font-size: 14px;
  color: #868686;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  margin: 20px 0;
}
.news-list>li>a .news-box .news-time {
  display: block;
  overflow: hidden;
  line-height: 24px;
  font-size: 14px;
  color: #7b7b7b;
  text-decoration: underline;
  font-weight: bold;
}
.news-list>li>a:hover {
  background-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 {
  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-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: 1200px) {
  .news-list>li>a .img {
    width: 35%;
  }
  .news-list>li>a .news-box {
    width: 65%;
    padding: 20px;
  }
}
@media (max-width: 991px) {
  .news-list>li>a .img {
    width: 40%;
  }
  .news-list>li>a .news-box {
    width: 60%;
    padding: 15px;
    padding-left: 20px;
  }
  .news-list>li>a .news-box .news-text {
    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: 60px;
    line-height: 20px;
    margin: 5px 0;
  }
  .news-list>li>a .news-box .news-time {
    line-height: 20px;
    font-size: 12px;
  }

  .news-details-title {
    font-size: 16px;
  }
  .news-details-time {
    padding: 5px 0;
  }
  .news-details-content {
    line-height: 24px;
    font-size: 14px;
  }
}
/* END-新闻资讯 */

/* 客户案例 */
.place-content .custom-list{
  width: calc(100% + 10px);
  margin-left: -5px;
}
.place-content .custom-list>li {
  width: calc(calc(100% / 3) - 10px);
  margin: 0 5px 10px 5px;
}
.place-content .custom-list>li>a .custom-hover .custom-text {
  margin-top: 10px;
  height: 78px;
  -webkit-line-clamp: 3;
}

@media (max-width: 1200px) {
  .place-content .custom-list>li>a .custom-hover .custom-text {
    height: 52px;
    -webkit-line-clamp: 2;
  }
}
@media (max-width: 991px) {
  .place-content .custom-list>li {
    width: calc(calc(100% / 2) - 10px);
  }
}
@media (max-width: 767px) {
  .place-content .custom-list>li>a .custom-hover .custom-text {
    height: 40px;
  }
}
/* END-客户案例 */

/* 车间展示 */
.workshop-list {
  display: flex;
  flex-wrap: wrap;
  width: calc(100% + 10px);
  margin-left: -5px;
}
.workshop-list>li {
  width: calc(calc(100% / 3) - 10px);
  margin: 0 5px 10px 5px;
}
.workshop-list>li>a {
  width: 100%;
  display: block;
  overflow: hidden;
  position: relative;
}
.workshop-list>li>a::before {
  content: "";
  display: block;
  padding-top: 113.55499%;
}
.workshop-list>li>a>h1 {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  text-align: center;
  padding: 20px;
  font-size: 20px;
  color: #fff;
  position: absolute;
  inset: 0;
  z-index: 2;
}
.workshop-list>li>a>h1::before {
  content: "";
  width: 100%;
  height: 100%;
  background: url(../images/whorshop-img-hover.png) no-repeat center center;
  background-size: 100% 100%;
  position: absolute;
  inset: 0;
  z-index: -1;
}
.workshop-list>li>a:hover>img {
  transform: scale(1.1);
}
.workshop-list>li>a>h1:hover {
  top: 100%;
}

@media (max-width: 991px) {
  .workshop-list>li {
    width: calc(calc(100% / 2) - 10px);
  }
}
@media (max-width: 767px) {
  .workshop-list {
    width: 100%;
    margin-top: 0;
    justify-content: space-between;
  }
  .workshop-list>li {
    width: calc(50% - 5px);
    margin: 0 0 10px 0;
  }
  .workshop-list>li>a>h1 {
    padding: 10px;
    font-size: 16px;
    line-height: 24px;
  }
}
/* END-车间展示 */

/* 在线留言 */
.message-form {
  display: flex;
  align-items: center;
  flex-direction: column;
  width: 100%;
  max-width: 500px;
  margin: 0 auto;
}
.message-form>label {
  width: 100%;
  display: flex;
  line-height: 40px;
  font-size: 18px;
  color: #333;
  margin-bottom: 15px;
}
.message-form>label>input {
  width: 100%;
  flex: 1;
  height: 40px;
  line-height: 40px;
  font-size: 14px;
  color: #333;
  padding: 0 15px;
  background-color: #f3f3f3;
  margin-left: 15px;
  border-radius: 5px;
  overflow: hidden;
}
.message-form>label>textarea {
  width: 100%;
  flex: 1;
  height: 200px;
  font-size: 14px;
  line-height: 24px;
  color: #333;
  padding: 8px 15px;
  background-color: #f3f3f3;
  margin-left: 15px;
  border-radius: 5px;
}
.message-form>button {
  width: 100%;
  max-width: 200px;
  height: 50px;
  background-color: var(--color-main);
  border-radius: 5px;
  font-size: 16px;
  color: #fff;
}
.message-form>button:hover {
  background-color: var(--color-hover);
}

@media (max-width:767px) {
  .message-form {
    max-width: 100%;
  }
}
/* 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-联系我们 */


.liuyan{ width: 80%; max-width: 1140px; margin:3% auto 12%; }
.liuyan form input{width:100%;float: left; line-height: 60px; border: 2px solid #aaa; margin-bottom: 25px;padding: 0 25px;  font-size: 18px;}
.liuyan form button{width: 100%;line-height: 60px;background:#0257ae;border: 0;transition: all 0.3s; color: #fff; margin-top: 4%; font-size: 20px;}
.liuyan form button:hover{background-color:#f97601;}

@media (max-width:767px) {
  .liuyan{ margin-top: 8%; }
  .liuyan form input{ line-height: 46px; font-size: 16px; padding:0 12px;}
  .liuyan form button{ line-height: 50px; font-size: 16px;margin-top:16%;}
}