@charset "UTF-8";
/*
 * @Author: Code Zhuang
 * @Date: 2023-08-11 09:33:42
 * @Last Modified by: Code Zhuang
 * @Last Modified time: 2023-08-11 16:36:29
 */

/* 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;
  display: block;
  position: relative;
}
.img::before {
  content: "";
  display: block;
}
.icon {
  width: 100%;
  overflow: hidden;
  position: relative;
  display: block;
}

.container-fluid {
  width: 100%;
  overflow: hidden;
  background-color: #fff;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
}

/* banner大图 */
.banner {
  width: 100%;
  position: relative;
  overflow: hidden;
}
.banner-swiper {
  width: 100%;
  height: 100%;
}
.banner-swiper img {
  width: 100%;
  display: block;
  height: auto;
}
/* 圆点 */
.banner-swiper .swiper-pagination {
  opacity: 1;
  bottom: 15px;
  display: flex;
  justify-content: center;
}
.banner-swiper .swiper-pagination-bullet {
  width: 14px;
  height: 14px;
  float: left;
  background: var(--color-main);
  opacity: 1;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.2);
}
.banner-swiper>.swiper-pagination-bullets .swiper-pagination-bullet,
.banner-swiper .swiper-pagination-horizontal.swiper-pagination-bullets .swiper-pagination-bullet {
  margin: 0 5px;
}
.banner-swiper .swiper-pagination-bullet-active {
  opacity: 1;
  background: var(--white);
}
.banner-swiper:hover .swiper-pagination {
  opacity: 1;
}
/* 箭头 */
.banner-swiper .banner-prev,
.banner-swiper .banner-next {
  left: 2%;
  top: 50%;
  position: absolute;
  z-index: 9;
  transform: translateY(-50%);
  font-size: 60px;
  color: var(--white);
  text-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
  opacity: 0;
  outline: none;
  cursor: pointer;
}
.banner-swiper .banner-next {
  left: initial;
  right: 2%;
}
.banner-swiper:hover .banner-next,
.banner-swiper:hover .banner-prev {
  opacity: 1;
}

@media (max-width: 991px) {
  /*圆点*/
  .banner-swiper .swiper-pagination {
    bottom: 10px;
  }
  .banner-swiper .swiper-pagination-bullet {
    width: 10px;
    height: 2px;
    opacity: 1;
    border-radius: 0 !important;
  }
  .banner-swiper>.swiper-pagination-bullets .swiper-pagination-bullet,
  .banner-swiper .swiper-pagination-horizontal.swiper-pagination-bullets .swiper-pagination-bullet {
    margin: 0 2px;
  }
  .banner-swiper .swiper-pagination-bullet-active {
    width: 15px;
  }
}

/* 产品展示 */
.product {
  width: 100%;
  overflow: hidden;
  padding: 80px 0;
}
.product-title {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.product-title>h1 {
  line-height: 40px;
  font-size: 34px;
  color: #272727;
  font-family: "Source Han Sans CN Medium";
}
.product-title>div {
  line-height: 26px;
  margin-top: 5px;
  font-family: "Source Han Sans CN";
  font-size: 18px;
  color: #626262;
}
.product-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-top: 40px;
}
.product-nav>li {
  width: calc(50% - 7px);
  margin-bottom: 5px;
}
.product-nav>li>a {
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border: 1px solid #273071;
  border-radius: 10px;
  font-family: "Source Han Sans CN";
  font-size: 24px;
  color: #0b1662;
  line-height: 30px;
  padding: 15px;
}
.product-nav>li.product-active>a {
  background-color: var(--color-hover);
  color: #fff;
}
.product-content {
  display: block;
  overflow: hidden;
  margin-top: 20px;
}
.product-content>div {
  display: none;
}
.product-content>div:first-child {
  display: block;
}
.product-list {
  display: block;
  overflow: hidden;
  width: calc(100% + 14px);
  margin-left: -7px;
}
.product-list>li {
  width: calc(calc(100% / 4) - 14px);
  margin: 0 7px 10px 7px;
  float: left;
}
.product-list>li>a {
  width: 100%;
  float: left;
  overflow: hidden;
  position: relative;
  border-radius: 5px;
}
.product-list>li>a::before {
  content: "";
  display: block;
  padding-top: 65.982405%;
}
.product-list>li>a .product-hover {
  width: calc(100% - 30px);
  padding: 20px;
  text-align: center;
  font-family: "Source Han Sans CN";
  background-color: #fff;
  position: absolute;
  left: 50%;
  bottom: -100%;
  transform: translateX(-50%);
  z-index: 2;
}
.product-list>li>a .product-hover>h1 {
  display: block;
  overflow: hidden;
  font-size: 22px;
  color: #0c0c0c;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.product-list>li>a .product-hover>div {
  display: none;
  overflow: hidden;
  line-height: 30px;
  font-size: 16px;
  color: #545454;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.product-list>li:nth-child(1),
.product-list>li:nth-child(2) {
  width: calc(50% - 14px);
}
.product-list>li:nth-child(1)>a::before {
  padding-top: 78.49928%;
}
.product-list>li:nth-child(1) .product-hover {
  bottom: 15px;
}
.product-list>li:nth-child(1) .product-hover>div,
.product-list>li:nth-child(2) .product-hover>div {
  display: block;
}
.product-list>li:nth-child(2)>a::before {
  padding-top: 44.524496%;
}
.product-list>li>a:hover>img {
  transform: scale(1.1);
}
.product-list>li>a:hover .product-hover {
  bottom: 15px;
}

@media (max-width: 1400px) {
  .product {
    padding: 70px 0;
  }
}
@media (max-width: 1200px) {
  .product {
    padding: 50px 0;
  }
}
@media (max-width: 991px) {
  .product {
    padding: 30px 0;
  }
  .product-nav {
    margin-top: 20px;
  }

}
@media (max-width: 767px) {
  .product {
    padding: 15px 0;
  }
  .product-title>h1 {
    line-height: 30px;
    font-size: 20px;
  }
  .product-title>div {
    line-height: 20px;
    margin-top: 0;
    font-size: 14px;
  }
  .product-nav {
    margin-top: 10px;
  }
  .product-nav>li>a {
    border-radius: 5px;
    font-size: 16px;
    line-height: 30px;
    padding: 5px;
  }
  .product-content {
    margin-top: 10px;
  }
  .product-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    width: 100%;
    margin-left: 0;
  }
  .product-list>li {
    width: calc(50% - 5px);
    margin: 0 0 10px 0;
  }
  .product-list>li>a .product-hover {
    width: calc(100% - 10px);
    padding: 5px;
    bottom: 5px;
  }
  .product-list>li>a .product-hover>h1 {
    font-size: 16px;
    line-height: 24px;
  }
  .product-list>li>a .product-hover>div {
    line-height: 20px;
    font-size: 12px;
  }

  .product-list>li:nth-child(1),
  .product-list>li:nth-child(2) {
    width: 100%;
  }
  .product-list>li:nth-child(1) .product-hover {
    bottom: 5px;
  }
  .product-list>li>a:hover .product-hover {
    bottom: 5px;
  }
}

/* 关于艾流 */
.about {
  background-color: #f1f1f1;
  padding: 105px 0;
}
.about-list {
  display: flex;
  flex-wrap: wrap;
}
.about-list>li {
  width: 100%;
  float: left;
  display: flex;
  flex-wrap: wrap;
  flex-direction: row-reverse;
  margin-bottom: 30px;
}
.about-list>li:last-child {
  margin: 0;
}
.about-list>li {
  width: 100%;
  float: left;
  display: flex;
  flex-wrap: wrap;
  flex-direction: row-reverse;
}
.about-list>li .about-left {
  width: 50%;
  overflow: hidden;
  position: relative;
}
.about-list>li .about-right {
  width: 50%;
  background-color: #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 10px;
}
.about-title {
  display: block;
  overflow: hidden;
  text-align: center;
  line-height: 48px;
  font-family: "Source Han Sans CN Medium";
  font-size: 34px;
  color: #151515;
}
.about-title>span {
  color: var(--color-main);
}
.about-text {
  max-width: 78%;
  display: block;
  overflow: hidden;
  text-align: center;
  height: 120px;
  line-height: 30px;
  font-size: 16px;
  color: #545454;
  font-family: "Source Han Sans CN";
  margin-top: 25px;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
}
.about-more {
  display: flex;
  justify-content: center;
  overflow: hidden;
  margin-top: 10px;
}
.about-more>a {
  width: 162px;
  clip-path: polygon(0 0, 100% 0, 100% 80%, 90% 100%, 0 100%);
  padding: 2px;
  background-color: #172169;
}
.about-more>a>span {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 60px;
  font-size: 16px;
  font-family: "Source Han Sans CN";
  color: #172169;
  position: relative;
  background-color: #fff;
  clip-path: polygon(0 0, 100% 0, 100% 80%, 90% 100%, 0 100%);
  padding-right: 35px;
}
.about-more>a>span::after {
  content: "";
  width: 0;
  height: 0;
  border-left: 7px solid #172169;
  border-top: 6px solid transparent;
  border-bottom: 6px solid transparent;
  position: absolute;
  right: 35px;
  top: 50%;
  transform: translateY(-50%);
}
.about-more>a>span:hover {
  background-color: #172169;
}
.about-more>a:hover>span {
  color: #fff;
}
.about-more>a:hover>span::after {
  border-left-color: #fff;
}

.about-right>h1 {
  display: block;
  overflow: hidden;
  text-align: center;
  line-height: 34px;
  font-family: "Source Han Sans CN";
  font-size: 24px;
  color: #151515;
}
.about-right>h1>span {
  display: block;
  overflow: hidden;
  line-height: 44px;
  font-family: "Source Han Sans CN Medium";
  font-size: 34px;
  color: #172169;
}

.about-icons {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 50px;
}
.about-icons>li {
  width: calc(25% - 12px);
  max-width: 128px;
  margin: 0 6px;
  display: flex;
  background-color: #f1f1f1;
  clip-path: polygon(0 0, 100% 0, 100% 80%, 90% 100%, 0 100%);
  padding: 2px;
}
.about-icons>li>a {
  flex: 1;
  display: flex;
  align-items: center;
  flex-direction: column;
  clip-path: polygon(0 0, 100% 0, 100% 80%, 90% 100%, 0 100%);
  padding: 15px;
}
.about-icons>li>a .icon {
  width: 100%;
  height: 36px;
  overflow: hidden;
  position: relative;
}
.about-icons>li>a .icon>span {
  width: 100%;
  height: 36px;
  float: left;
  position: absolute;
  left: 0;
  top: 0;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: auto auto;
  filter: drop-shadow(0 36px #172169);
}
.about-icons>li>a>h1 {
  display: block;
  overflow: hidden;
  margin-top: 10px;
  line-height: 26px;
  font-family: "Source Han Sans CN";
  font-size: 17px;
  color: #464646;
  text-align: center;
}
.about-icons>li:hover {
  background-color: var(--color-hover);
}
.about-icons>li:hover>a {
  background-color: #fff;
}
.about-icons>li:hover>a>.icon>span {
  top: -36px;
}
.about-icons>li:hover>a>h1 {
  color: var(--color-main);
  font-weight: bold;
}
.about-list>li:nth-child(even) {
  flex-direction: row;
}

@media (max-width: 1400px) {
  .about {
    padding: 70px 0;
  }
}
@media (max-width: 1200px) {
  .about {
    padding: 50px 0;
  }
  .about-text {
    max-width: 90%;
  }
  .about-icons>li>a>h1 {
    font-size: 16px;
  }
}
@media (max-width: 991px) {
  .about {
    padding: 30px 0;
  }
  .about-title {
    line-height: 38px;
    font-size: 24px;
  }
  .about-text {
    max-width: 100%;
    margin-top: 10px;
  }
  .about-more>a>span {
    height: 50px;
    padding-right: 20px;
  }
  .about-right>h1 {
    line-height: 30px;
    font-size: 20px;
  }
  .about-right>h1>span {
    line-height: 34px;
    font-size: 24px;
  }
  .about-icons {
    margin-top: 20px;
  }
  .about-icons>li {
    width: calc(25% - 6px);
    margin: 0 3px;
  }
  .about-icons>li>a {
    padding: 10px 5px;
  }
  .about-icons>li>a>h1 {
    font-size: 15px;
  }
}
@media (max-width: 767px) {
  .about {
    padding: 15px 0;
  }
  .about-list>li {
    margin-bottom: 10px;
  }
  .about-list>li .about-left {
    width: 100%;
  }
  .about-list>li .about-left::before {
    content: "";
    display: block;
    padding-top: 63%;
  }
  .about-list>li .about-right {
    width: 100%;
  }
  .about-title {
    line-height: 30px;
    font-size: 20px;
  }
  .about-text {
    height: initial;
    line-height: 22px;
    font-size: 14px;
    margin-top: 5px;
    -webkit-line-clamp: initial;
  }
  .about-more {
    margin-top: 5px;
  }
  .about-more>a {
    width: 120px;
  }
  .about-more>a>span {
    height: 40px;
    padding-right: 10px;
  }
  .about-more>a>span::after {
    right: 15px;
  }
  .about-right>h1 {
    line-height: 20px;
    font-size: 14px;
  }
  .about-right>h1>span {
    line-height: 30px;
    font-size: 20px;
  }
  .about-icons {
    margin-top: 10px;
  }
  .about-icons>li>a>h1 {
    line-height: 22px;
    margin-top: 5px;
    font-size: 13px;
  }
}

/* 工厂展示 */
.factory {
  padding: 90px 0;
}
.factory-title {
  display: block;
  overflow: hidden;
  text-align: center;
  line-height: 42px;
  font-family: "Source Han Sans CN Medium";
  font-size: 34px;
  color: #272727;
}
.factory-text {
  display: block;
  overflow: hidden;
  width: 100%;
  max-width: 744px;
  margin: 20px auto 0 auto;
  border-left: 3px solid #ececec;
  border-right: 3px solid #ececec;
  padding: 0 80px;
}
.factory-text>p {
  display: block;
  overflow: hidden;
  line-height: 28px;
  font-family: "Source Han Sans CN";
  font-size: 17px;
  color: #444;
  text-align: center;
}
.factory-list {
  display: flex;
  flex-wrap: wrap;
  width: calc(100% + 26px);
  margin-left: -13px;
  margin-top: 60px;
}
.factory-list>li {
  width: calc(calc(100% / 3) - 26px);
  margin: 0 13px 25px 13px;
}
.factory-list>li>a {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.factory-list>li>a .img {
  border-radius: 5px;
}
.factory-list>li>a .img::before {
  content: "";
  display: block;
  padding-top: 73.274%;
}
.factory-list>li>a>h1 {
  display: block;
  overflow: hidden;
  width: 100%;
  text-overflow: ellipsis;
  white-space: nowrap;
  line-height: 34px;
  text-align: center;
  font-family: "Source Han Sans CN";
  font-size: 17px;
  color: #444;
  margin-top: 15px;
}
.factory-list>li>a:hover .img>img {
  transform: scale(1.1);
}

@media (max-width: 1400px) {
  .factory {
    padding: 70px 0;
  }
}
@media (max-width: 1200px) {
  .factory {
    padding: 50px 0;
  }
  .factory-list {
    margin-top: 40px;
  }
}
@media (max-width: 991px) {
  .factory {
    padding: 30px 0;
  }
  .factory-list {
    margin-top: 20px;
  }
}
@media (max-width: 767px) {
  .factory {
    padding: 15px 0;
  }
  .factory-title {
    line-height: 30px;
    font-size: 20px;
  }
  .factory-text {
    margin: 10px auto 0 auto;
    padding: 0 10px;
  }
  .factory-text>p {
    line-height: 22px;
    font-size: 14px;
  }

  .factory-list {
    margin-top: 10px;
    width: calc(100% + 6px);
    margin-left: -3px;
  }
  .factory-list>li {
    width: calc(calc(100% / 3) - 6px);
    margin: 0 3px 6px 3px;
  }
  .factory-list>li>a>h1 {
    line-height: 30px;
    font-size: 14px;
    margin-top: 5px;
  }
}

/* 技术服务 */
.service {
  background-image: url(../images/service-bj.jpg);
  min-height: 617px;
  padding: 15px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.service>h1 {
  line-height: 46px;
  color: #fff;
  font-family: "Source Han Sans CN Medium";
  font-size: 34px;
}
.service>h2 {
  line-height: 26px;
  text-align: center;
  font-family: "Source Han Sans CN";
  font-size: 18px;
  color: #fff;
  margin-top: 45px;
}
.service>h2>span {
  display: block;
  overflow: hidden;
  line-height: 60px;
  font-family: "Source Han Sans CN Heavy";
  font-size: 50px;
  margin-bottom: 10px;
}
.service>div {
  display: flex;
  justify-content: center;
  margin-top: 65px;
}
.service>div>a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 180px;
  height: 58px;
  background-color: var(--color-main);
  font-family: "Source Han Sans CN";
  font-size: 18px;
  color: #fff;
}
.service>div>a>img {
  margin-left: 20px;
}

@media (max-width: 1200px) {
  .service>h2>span {
    line-height: 50px;
    font-size: 40px;
  }
}
@media (max-width: 991px) {
  .service {
    min-height: 400px;
  }
}
@media (max-width: 767px) {
  .service {
    min-height: initial;
  }
  .service>h1 {
    line-height: 30px;
    font-size: 20px;
  }
  .service>h2 {
    line-height: 22px;
    font-size: 14px;
    margin-top: 10px;
  }
  .service>h2>span {
    line-height: 30px;
    font-size: 20px;
    margin: 0;
  }
  .service>div {
    margin-top: 10px;
  }
  .service>div>a {
    width: 150px;
    height: 50px;
    font-size: 16px;
  }
}

/* 艾流新闻 */
.news {
  padding: 90px 0;
}
.news-title {
  display: block;
  overflow: hidden;
  text-align: center;
  line-height: 46px;
  font-family: "Source Han Sans CN Medium";
  font-size: 34px;
  color: #272727;
}
.news-content {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-top: 45px;
}
.news-left {
  width: calc(50% - 25px);
}
.news-left>a {
  display: flex;
  flex-direction: column;
}
.news-left>a .img {
  border-radius: 10px;
}
.news-left>a .img::before {
  content: "";
  display: block;
  padding-top: 52.888889%;
}
.news-left>a .news-box {
  width: 100%;
  overflow: hidden;
  padding-top: 35px;
}
.news-left>a .news-box .news-time {
  display: block;
  overflow: hidden;
  line-height: 22px;
  font-size: 16px;
  color: #9f9f9f;
}
.news-left>a .news-box>h1 {
  display: block;
  overflow: hidden;
  height: 30px;
  line-height: 30px;
  margin-top: 10px;
  font-size: 22px;
  color: #272727;
  font-family: "Source Han Sans CN Medium";
  text-overflow: ellipsis;
  white-space: nowrap;
}
.news-left>a .news-box .news-more {
  float: left;
  margin-top: 25px;
  line-height: 45px;
  border-bottom: 2px solid #323846;
  padding-right: 25px;
}
.news-left>a:hover .img>img {
  transform: scale(1.1);
}
.news-left>a:hover .news-box>h1 {
  color: var(--color-main);
}
.news-left>a:hover .news-box .news-more {
  color: var(--color-main);
  border-bottom-color: var(--color-main);
}

.news-right {
  width: calc(50% - 30px);
}
.news-right>li {
  display: block;
  overflow: hidden;
  padding-top: 44px;
  border-top: 1px solid #e8e8e8;
  margin-bottom: 40px;
}
.news-right>li>a {
  display: block;
  overflow: hidden;
  position: relative;
  padding-left: 30px;
}
.news-right>li>a::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: var(--color-main);
  position: absolute;
  left: 0;
  top: 8px;
}
.news-right>li>a>h1 {
  display: block;
  overflow: hidden;
  line-height: 26px;
  font-size: 18px;
  color: #313131;
  font-family: "Source Han Sans CN";
  text-overflow: ellipsis;
  white-space: nowrap;
}
.news-right>li>a>div {
  display: block;
  overflow: hidden;
  line-height: 20px;
  margin-top: 10px;
  font-size: 16px;
  color: #9f9f9f;
}
.news-right>li>a:hover>h1 {
  color: var(--color-main);
}
.news-right>li:last-child {
  margin: 0;
}

@media (max-width: 1400px) {
  .news {
    padding: 70px 0;
  }
}
@media (max-width: 1200px) {
  .news {
    padding: 50px 0;
  }
  .news-right>li {
    padding-top: 30px;
    margin-bottom: 30px;
  }
}
@media (max-width: 991px) {
  .news {
    padding: 30px 0;
  }
  .news-title {
    line-height: 40px;
    font-size: 30px;
  }
  .news-content {
    margin-top: 30px;
  }
  .news-right>li {
    padding-top: 20px;
    margin-bottom: 20px;
  }
}
@media (max-width: 767px) {
  .news {
    padding: 15px 0;
  }
  .news-title {
    line-height: 30px;
    font-size: 20px;
  }
  .news-content {
    margin-top: 10px;
  }
  .news-left {
    width: 100%;
  }
  .news-left>a {
    flex-direction: row;
  }
  .news-left>a .img {
    width: 40%;
  }
  .news-left>a .news-box {
    width: 60%;
    padding: 0;
    padding-left: 15px;
  }
  .news-left>a .news-box .news-time {
    line-height: 20px;
    font-size: 14px;
  }
  .news-left>a .news-box>h1 {
    font-size: 18px;
  }
  .news-left>a .news-box .news-more {
    margin-top: 10px;
    line-height: 30px;
    padding-right: 10px;
  }
  .news-right {
    width: 100%;
    margin-top: 10px;
  }
  .news-right>li {
    padding-top: 10px;
    margin-bottom: 10px;
  }
  .news-right>li>a {
    padding-left: 15px;
  }
  .news-right>li>a>h1 {
    line-height: 24px;
    font-size: 16px;
  }
  .news-right>li>a>div {
    line-height: 16px;
    margin-top: 5px;
    font-size: 14px;
  }
}
/* END-首页样式 */

/* 内页大图 */
.nbanner {
  width: 100%;
  overflow: hidden;
  height: 272px;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  display: flex;
  flex-direction: column;
}
.nbanner>.container {
  width: 100%;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.place-title {
  width: 100%;
  line-height: 66px;
  color: rgba(255, 255, 255, 0.6);
  font-size: 14px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}
.nbanner-title {
  flex: 1;
  width: 100%;
  display: flex;
  justify-content: center;
  line-height: 44px;
  font-size: 36px;
  color: #fff;
  font-family: "Source Han Sans CN";
  display: flex;
  flex-direction: column;
}
.nbanner-title>h1 {
  display: block;
  overflow: hidden;
  font-weight: bold;
  margin-bottom: 5px;
}

@media (max-width: 767px) {
  .nbanner {
    height: 100px;
    border-bottom: 1px solid #fff;
  }
  .nbanner-title {
    line-height: 24px;
    font-size: 16px;
    align-items: center;
  }
  .nbanner-title>h1 {
    line-height: 30px;
    font-size: 20px;
    margin: 0;
  }
}
/* END-内页大图 */

/* 关于我们 */
.main {
  width: 100%;
  overflow: hidden;
  padding: 80px 0;
}
.main>.container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.main-left {
  width: 258px;
}
.menu-list {
  display: block;
  overflow: hidden;
  transition: initial;
}
.menu-list>li {
  display: block;
  overflow: hidden;
  border-bottom: 1px solid #cdcdcd;
}
.menu-list>li>a {
  display: block;
  overflow: hidden;
  height: 72px;
  line-height: 72px;
  font-size: 18px;
  color: #373737;
  text-overflow: ellipsis;
  white-space: nowrap;
  padding-right: 10px;
  position: relative;
}
.menu-list>li>a::before {
  content: ">";
  font-family: SimSun;
  color: #a5a5a5;
  font-weight: bold;
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
}
.menu-list>li:hover>a,
.menu-list>li.menu-active>a {
  color: var(--color-main);
  font-weight: bold;
}
.menu-list>li:hover>a::before,
.menu-list>li.menu-active>a::before {
  color: var(--color-main);
}

.menu-box {
  display: flex;
  flex-direction: column;
  margin-top: 35px;
}
.menu-box>li {
  width: 100%;
  display: flex;
  margin-top: 25px;
}
.menu-box>li>a {
  width: 100%;
  display: flex;
  overflow: hidden;
  position: relative;
}
.menu-box>li>a::before {
  content: "";
  display: block;
  padding-top: 58.91473%;
}
.menu-box>li>a>h1 {
  width: calc(100% - 30px);
  line-height: 42px;
  font-size: 18px;
  color: #273071;
  font-family: "Source Han Sans CN";
  font-weight: bold;
  border-bottom: 1px solid rgba(255, 255, 255, 0.82);
  position: absolute;
  left: 50%;
  bottom: 25px;
  transform: translateX(-50%);
}

.main-right {
  flex: 1;
  padding-left: 60px;
}
.place-content {
  width: 100%;
  float: left;
}
.company {
  display: block;
  overflow: hidden;
  font-size: 16px;
  line-height: 32px;
  color: var(--color3);
}

@media (max-width: 1400px) {
  .main {
    padding: 70px 0;
  }
  .main-left {
    width: 18.5%;
  }
  .main-right {
    padding-left: 50px;
  }
}
@media (max-width: 1200px) {
  .main {
    padding: 50px 0;
  }
  .main-left {
    width: 21.5%;
  }
  .main-right {
    padding-left: 40px;
  }
}
@media (max-width: 991px) {
  .main {
    padding: 30px 0;
  }
  .main-left {
    width: 26%;
  }
  .main-right {
    padding-left: 30px;
  }
}
@media (max-width: 767px) {
  .main {
    padding: 0;
  }
  .main-left {
    width: 100%;
  }
  .menu-title {
    width: calc(100% + 40px);
    text-align: center;
    margin-left: -20px;
    font-size: 18px;
    font-weight: bold;
    height: 50px;
    line-height: 50px;
    padding: 0 20px;
    color: #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;
  }
  .menu-list>li>a {
    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-关于我们 */

/* 产品展示/工厂展示 */
.pro-list {
  display: flex;
  flex-wrap: wrap;
  width: calc(100% + 22px);
  margin-left: -11px;
}
.pro-list>li {
  width: calc(calc(100% / 3) - 22px);
  margin: 0 11px 30px 11px;
  display: flex;
}
.pro-list>li>a {
  width: 100%;
  display: flex;
  flex-direction: column;
}
.pro-list>li>a .img::before {
  padding-top: 75%;
}
.pro-list>li>a>h1 {
  display: block;
  overflow: hidden;
  text-align: center;
  line-height: 50px;
  font-family: "Source Han Sans CN";
  font-size: 16px;
  color: #303030;
  padding: 0 10px;
  border-bottom: 1px solid #e9e9e9;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.pro-list>li>a:hover .img>img {
  transform: scale(1.1);
}
.pro-list>li>a:hover>h1 {
  color: var(--color-main);
}

.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: 65%
}
.product-details-right {
  width: 60%;
  padding: 5px 30px;
  padding-right: 0
}
.product-details-right>h1 {
  display: block;
  overflow: hidden;
  line-height: 1;
  font-size: 20px;
  color: #333
}
.product-details-text {
  display: block;
  overflow: hidden;
  font-size: 14px;
  line-height: 26px;
  color: #666;
  margin-top: 15px
}
.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-content table{ width:100% !important; height:auto !important; border:1px solid #ddd !important; border-collapse:collapse;}
.product-details-content table tr td{ width:auto !important; height:auto !important; border:1px solid #ddd !important; border-collapse:collapse;}


.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) {
  .pro-list>li {
    width: calc(50% - 22px);
  }

  .product-details-left {
    width: 100%;
  }
  .product-details-right {
    width: 100%;
    padding: 20px 0 0 0;
  }
}
@media (max-width: 767px) {
  .pro-list {
    width: 100%;
    margin-left: 0;
    justify-content: space-between;
  }
  .pro-list>li {
    width: calc(50% - 5px);
    margin: 0 0 10px 0;
  }
  .pro-list>li>a>h1 {
    line-height: 40px;
    font-size: 16px;
  }

  .product-details-right {
    padding: 10px 0 0 0;
  }
  .product-details-right>h1 {
    line-height: 24px;
    font-size: 18px;
  }
  .product-details-text {
    margin-top: 5px;
  }
  .product-details-more {
    margin-top: 10px;
  }
  .product-details-more>a {
    width: 110px;
    height: 34px;
  }
  .product-details-content {
    margin-top: 15px;
    font-size: 14px;
    line-height: 24px;
  }
  .product-details-title {
    margin-bottom: 10px;
  }
}
/* END-产品展示/工厂展示 */

/* 新闻中心 */
.news-list {
  display: flex;
  flex-direction: column;
}
.news-list>li {
  width: 100%;
  margin-bottom: 30px;
}
.news-list>li>a {
  width: 100%;
  display: flex;
  background-color: #f3f3f3;
}
.news-list>li>a .img {
  width: 30%;
}
.news-list>li>a .news-box {
  width: 70%;
  padding: 10px 20px;
}
.news-list>li>a .news-box>h1 {
  display: block;
  overflow: hidden;
  line-height: 34px;
  font-size: 20px;
  color: #303030;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.news-list>li>a .news-box .news-text {
  display: block;
  overflow: hidden;
  height: 108px;
  line-height: 28px;
  font-size: 14px;
  color: #303030;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  margin: 15px 0;
}
.news-list>li>a .news-box .news-time {
  display: block;
  overflow: hidden;
  line-height: 28px;
  font-size: 14px;
  color: #444;
}
.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: 12px 0;
  border-bottom: 1px dashed var(--colorC);
}
.news-details-img{ width:100%; text-align:center; margin:10px auto;}
.news-details-img img{ max-width:100% !important; height:auto !important;}

.news-details-content {
  display: block;
  overflow: hidden;
  font-size: 15px;
  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 .news-box .news-text {
    height: 72px;
    -webkit-line-clamp: 3;
  }
}
@media (max-width: 991px) {
  .news-list>li {
    margin-bottom: 20px;
  }
  .news-list>li>a .news-box .news-text {
    height: 48px;
    -webkit-line-clamp: 2;
    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: 30px;
    font-size: 16px;
  }
  .news-list>li>a .news-box .news-text {
    height: 40px;
    line-height: 20px;
    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-联系我们 */