@charset "UTF-8";
/*
 * @Author: Code Zhuang
 * @Date: 2023-08-22 10:25:35
 * @Last Modified by: Code Zhuang
 * @Last Modified time: 2023-08-23 18:00:14
 */

/* Animate.css动画演示 */
@import "../plugin/swiper/animate.min.css";

/* Swiper 7.4.1 */
@import "../plugin/swiper/swiper-bundle.min.css";

/* 字体图标 */
@import "../plugin/font/css/font-awesome.min.css";

/* 核心样式 */
@import "../css/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;
}
.index-main {
  width: 100%;
  overflow: hidden;
}

/* 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: 0.5;
}
.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(--color-hover);
}
.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;
  }
}

/* 诺茨（上海） */
.about {
  margin-top: 65px;
  padding: 40px 0;
  border-top: 1px solid #939393;
  overflow: visible;
}
.about-title {
  display: block;
  overflow: hidden;
  line-height: 42px;
  font-size: 26px;
  color: #ec312e;
}
.about-content {
  display: flex;
  flex-wrap: wrap;
  flex-direction: row-reverse;
  margin-top: 35px;
}
.about-img {
  width: 66.40625%;
  overflow: hidden;
  position: relative;
}
.about-img::before {
  content: "";
  display: block;
  padding-top: 55.764706%;
}
.about-img>video{
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0;
  object-fit: cover;
}

.about-left {
  flex: 1;
  padding-right: 75px;
}
.about-text {
  display: block;
  overflow: hidden;
  line-height: 24px;
  font-size: 16px;
  color: #555;
  height: 312px;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 13;
  -webkit-box-orient: vertical;
}
.more {
  display: flex;
}
.more>a {
  margin-top: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  line-height: 28px;
  padding: 11px 31px;
  border-radius: 6px;
  overflow: hidden;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.2);
  background-color: var(--color-hover);
  color: #fff;
}
.more>a:hover {
  background-color: #fff !important;
  color: rgba(0, 0, 0, 0.5) !important;
}
.about .more {
  margin-top: 50px;
}

@media (max-width: 1280px) {
  .about {
    margin-top: 50px;
    padding: 30px 0;
  }
  .about-left {
    padding-right: 50px;
  }
  .about .more {
    margin-top: 30px;
  }
}
@media (max-width: 991px) {
  .about {
    margin-top: 30px;
    padding: 20px 0;
  }
  .about-content {
    margin-top: 25px;
  }
  .about-left {
    padding-right: 20px;
  }
  .about .more {
    margin-top: 10px;
  }
}
@media (max-width: 767px) {
  .about {
    margin-top: 15px;
    padding: 15px 0;
  }
  .about-title {
    line-height: 30px;
    font-size: 20px;
  }
  .about-content {
    margin-top: 10px;
  }
  .about-img {
    width: 100%;
  }
  .about-left {
    flex: none;
    width: 100%;
    padding: 10px 0 0 0;
  }
  .about-text {
    height: auto;
    line-height: 22px;
    font-size: 14px;
    -webkit-line-clamp: initial;
  }
  .about .more {
    margin-top: 0;
  }
  .more>a {
    margin: 10px 0 0 0;
    font-size: 14px;
    line-height: 24px;
    padding: 7px 17px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
  }
}

/* 我们的产品 */
.product {
  margin-top: 40px;
  padding: 45px 0;
  border-top: 1px solid #939393;
  overflow: visible;
}
.product-title {
  display: flex;
  flex-direction: column;
}
.product-title>h1 {
  line-height: 36px;
  font-size: 26px;
  color: #ec312e;
}
.product-title>div {
  line-height: 26px;
  font-size: 16px;
  color: #5d5d5d;
  margin-top: 10px;
}

.product-list {
  display: flex;
  flex-wrap: wrap;
  margin-top: 40px;
  width: calc(100% + 20px);
  margin-left: -10px;
}
.product-list>li {
  width: calc(25% - 20px);
  margin: 0 10px 20px 10px;
}
.product-list>li>a {
  display: block;
  overflow: hidden;
  border: 1px solid #9d9d9d;
  padding: 10px 15px;
  padding-bottom: 35px;
}
.product-list>li>a .img::before {
  padding-top: 84%;
}
.product-list>li>a .product-box {
  width: 100%;
  padding-top: 5px;
  padding-left: 35px;
  overflow: hidden;
}
.product-list>li>a .product-box>h1 {
  display: block;
  overflow: hidden;
  line-height: 34px;
  font-size: 17px;
  font-weight: bold;
  color: #ec312e;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.product-list>li>a .product-box .product-text {
  display: block;
  overflow: hidden;
  margin-top: 10px;
  height: 150px;
  line-height: 25px;
  font-size: 14px;
  color: #595959;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 6;
  -webkit-box-orient: vertical;
}
.product-list>li>a .product-box .product-text>b {
  margin-right: 5px;
}
.product-list>li>a .product-box .product-more {
  display: block;
  overflow: hidden;
  width: fit-content;
  border-bottom: 1px solid #d4d4d4;
  line-height: 30px;
  margin-top: 15px;
  font-size: 12px;
  color: #aeaeae;
}
.product-list>li>a .product-box .product-more>span {
  margin-left: 15px;
}
.product-list>li>a:hover .product-box .product-more {
  color: var(--color-hover);
  border-bottom-color: var(--color-hover);
}
.product .more {
  margin-top: 15px;
}

@media (max-width: 1280px) {
  .product-list>li>a .product-box {
    padding-left: 0;
  }
}
@media (max-width: 991px) {
  .product {
    margin-top: 20px;
    padding: 30px 0;
  }
  .product-list {
    margin-top: 20px;
  }
  .product-list>li {
    width: calc(calc(100% / 3) - 20px);
  }
  .product-list>li:last-child {
    display: none;
  }
  .product .more {
    margin-top: 0;
  }
}
@media (max-width: 767px) {
  .product {
    margin-top: 0;
    padding: 15px 0;
  }
  .product-title>h1 {
    line-height: 30px;
    font-size: 20px;
  }
  .product-title>div {
    line-height: 20px;
    font-size: 14px;
    margin-top: 0px;
  }
  .product-list {
    margin-top: 10px;
    width: 100%;
    margin-left: 0;
    justify-content: space-between;
  }
  .product-list>li {
    display: block !important;
    width: calc(50% - 5px);
    margin: 0 0 10px 0;
  }
  .product-list>li>a {
    padding: 10px;
  }
  .product-list>li>a .product-box>h1 {
    line-height: 24px;
    font-size: 15px;
  }
  .product-list>li>a .product-box .product-text {
    margin-top: 5px;
    height: 120px;
    line-height: 20px;
    font-size: 12px;
    -webkit-line-clamp: 6;
  }
  .product-list>li>a .product-box .product-more {
    line-height: 20px;
    margin-top: 5px;
  }
}

/* 适用于各行业的工业识别系统 */
.industry {
  margin-top: 40px;
  padding: 40px 0;
  border-top: 1px solid #939393;
  overflow: visible;
}
.industry-title {
  display: block;
  overflow: hidden;
  line-height: 34px;
  font-size: 26px;
  color: #3f3f3f;
}
.industry-title>span {
  color: #ec312e;
}
.industry-text {
  display: block;
  overflow: hidden;
  margin-top: 20px;
  min-height: 144px;
  font-size: 16px;
  line-height: 24px;
  color: #4d4d4d;
}
.industry-list {
  display: flex;
  flex-wrap: wrap;
  margin-top: 30px;
}
.industry-list>li {
  width: 25%;
  margin-bottom: 80px;
}
.industry-list>li>a {
  display: flex;
  align-items: center;
  flex-direction: column;
}
.industry-list>li>a>h1 {
  display: flex;
  justify-content: center;
  overflow: hidden;
  line-height: 30px;
  text-align: center;
  font-size: 18px;
  color: var(--color-hover);
}
.industry-list>li>a>h1::after {
  content: ">>";
  font-family: SimSun;
  font-weight: bold;
}
.industry-list>li>a .industry-img {
  width: 100%;
  overflow: hidden;
  position: relative;
  height: 108px;
  margin-top: 10px;
}
/*.industry .more>a {
  background-color: #c3c3c3;
  color: #fff;
}*/

@media (max-width: 1280px) {
  .industry-list>li {
    margin-bottom: 50px;
  }
}
@media (max-width: 991px) {
  .industry {
    margin-top: 20px;
    padding: 20px 0;
  }
  .industry-list>li {
    margin-bottom: 30px;
  }
}
@media (max-width: 767px) {
  .industry {
    margin-top: 0;
    padding: 15px 0;
  }
  .industry-title {
    line-height: 30px;
    font-size: 20px;
  }
  .industry-text {
    margin-top: 10px;
    min-height: initial;
    font-size: 14px;
    line-height: 22px;
  }
  .industry-list {
    margin-top: 10px;
  }
  .industry-list>li {
	width:48%; padding:1%;
    margin-bottom: 10px;
  }
  .industry-list>li>a>h1 {
    line-height: 24px;
    font-size: 16px;
  }
  .industry-list>li>a .industry-img {
    height: 50px;
    margin-top: 5px;
  }
}

/* 我们的新闻 */
.news {
  margin-top: 35px;
  padding: 40px 0;
  border-top: 1px solid #939393;
  overflow: visible;
}
.news-title {
  display: block;
  overflow: hidden;
  line-height: 30px;
  font-size: 26px;
  color: #575757;
}
.news-title>span {
  color: var(--color-hover);
}
.news-list {
  display: flex;
  flex-wrap: wrap;
  width: calc(100% + 92px);
  margin-left: -46px;
  margin-top: 40px;
}
.news-list>li {
  width: calc(calc(100% / 3) - 92px);
  margin: 0 46px 30px 46px;
}
.news-list>li>a {
  display: block;
  overflow: hidden;
  background-color: #fff;
  border: 1px solid #cbcbcb;
  border-radius: 5px;
  padding: 5px;
  padding-bottom: 15px;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
}
.news-list>li>a .img {
  border-radius: 5px;
}
.news-list>li>a .img::before {
  padding-top: 54.450262%;
}
.news-list>li>a .img::after {
  content: "\f0f6";
  position: absolute;
  inset: 0;
  background-color: rgba(229, 50, 56, 0.5);
  color: #fff;
  font-family: FontAwesome;
  font-size: 40px;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
}
.news-list>li>a .news-box {
  display: block;
  overflow: hidden;
  margin-top: 15px;
  padding: 0 6px;
}
.news-list>li>a .news-box>h1 {
  display: block;
  overflow: hidden;
  line-height: 28px;
  font-size: 16px;
  color: #e53238;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.news-list>li>a .news-box>div {
  display: block;
  overflow: hidden;
  line-height: 24px;
  font-size: 12px;
  color: #6f6f6f;
}
.news-list>li>a:hover .img::after {
  opacity: 1;
}

/*.news .more>a {
  background-color: #c3c3c3;
  color: #fff;
}*/

@media (max-width: 1280px) {
  .news {
    margin-top: 30px;
    padding: 30px 0;
  }
  .news-list {
    width: calc(100% + 50px);
    margin-left: -25px;
    margin-top: 30px;
  }
  .news-list>li {
    width: calc(calc(100% / 3) - 50px);
    margin: 0 25px 30px 25px;
  }
}
@media (max-width: 991px) {
  .news {
    margin-top: 20px;
    padding: 20px 0;
  }
  .news-list {
    width: calc(100% + 30px);
    margin-left: -15px;
    margin-top: 20px;
  }
  .news-list>li {
    width: calc(calc(100% / 3) - 30px);
    margin: 0 15px 20px 15px;
  }
}
@media (max-width: 767px) {
  .news {
    margin-top: 0;
    padding: 15px 0;
  }
  .news-title {
    font-size: 20px;
  }
  .news-list {
    width: 100%;
    margin-left: 0;
    margin-top: 10px;
  }
  .news-list>li {
    width: 100%;
    margin: 0 0 10px 0;
  }
  .news-list>li>a {
    display: flex;
    padding: 5px;
  }
  .news-list>li>a .img {
    width: 30%;
  }
  .news-list>li>a .news-box {
    width: 70%;
    margin-top: 0;
    padding: 15px 0 15px 20px;
  }
}

/* POSSEHL集团PLD部门下属企业 */
.branch {
  margin-top: 40px;
  padding: 20px 0;
  border-top: 1px solid #939393;
  overflow: visible;
}
.branch-title {
  display: block;
  overflow: hidden;
  line-height: 66px;
  font-size: 26px;
  color: #575757;
  text-transform: uppercase;
}
.branch-list {
  display: flex;
  flex-wrap: wrap;
  width: calc(100% + 24px);
  margin-left: -12px;
  margin-top: 25px;
}
.branch-list>li {
  width: calc(25% - 24px);
  margin: 0 12px 35px 12px;
  background-color: #f4f4f4;
  border: 1px solid #a6a6a6;
  border-radius: 5px;
  padding: 15px;
  padding-bottom: 45px;
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: center;
}
.branch-list>li .branch-img {
  width: 100%;
  overflow: hidden;
  position: relative;
}
.branch-list>li .branch-img::before {
  content: "";
  display: block;
  padding-top: 24.806202%;
}
.branch-list>li .branch-text {
  width: 100%;
  display: block;
  overflow: hidden;
  margin-top: 20px;
}
.branch-list>li .branch-text>p {
  display: block;
  overflow: hidden;
  line-height: 18px;
  font-size: 15px;
  color: #4c4c4c;
  margin-bottom: 18px;
}
.branch-list>li>a {
  width: fit-content;
  max-width: 100%;
  line-height: 28px;
  padding: 10px;
  font-size: 16px;
  color: #fff;
  border-radius: 5px;
  background-color: #e5342d;
  box-shadow: 0 0 16px rgba(0, 0, 0, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  align-self: flex-end;
  text-align: center;
  margin-top: 15px;
}
.branch-list>li>a:hover {
  background-color: #fff;
  color: rgba(0, 0, 0, 0.5);
}

@media (max-width: 1280px) {
  .branch {
    margin-top: 30px;
  }
  .branch-title {
    line-height: 60px;
  }
  .branch-list {
    width: calc(100% + 20px);
    margin-left: -10px;
    margin-top: 20px;
  }
  .branch-list>li {
    width: calc(25% - 20px);
    margin: 0 10px 25px 10px;
    padding-bottom: 30px;
  }
  .branch-list>li>a {
    font-size: 13px;
  }
}
@media (max-width: 991px) {
  .branch {
    margin-top: 20px;
  }
  .branch-title {
    line-height: 50px;
  }
  .branch-list>li {
    width: calc(calc(100% / 3) - 20px);
    margin: 0 10px 20px 10px;
    padding-bottom: 20px;
  }
}
@media (max-width: 767px) {
  .branch {
    margin-top: 0;
    padding: 15px 0;
  }
  .branch-title {
    line-height: 30px;
    font-size: 20px;
  }
  .branch-list {
    width: 100%;
    margin-left: 0;
    margin-top: 10px;
    justify-content: space-between;
  }
  .branch-list>li {
    width: calc(50% - 5px);
    margin: 0 0 10px 0;
    padding: 10px;
  }
  .branch-list>li .branch-text {
    margin-top: 5px;
  }
  .branch-list>li .branch-text>p {
    line-height: 15px;
    font-size: 13px;
    margin-bottom: 15px;
  }
  .branch-list>li>a {
    line-height: 18px;
    font-size: 12px;
    margin-top: 0px;
    padding: 10px 5px;
  }
}

/* 联系NOVEXX 解决方案 */
.solution {
  margin-top: 40px;
  padding: 35px 0 80px 0;
  border-top: 1px solid #939393;
  overflow: visible;
}
.solution-title {
  display: block;
  overflow: hidden;
  line-height: 36px;
  font-size: 26px;
  color: #575757;
}
.solution-title>span {
  color: #e5342d;
}
.solution-content {
  display: flex;
  flex-wrap: wrap;
  flex-direction: row-reverse;
  margin-top: 30px;
}
.solution-img {
  width: 50%;
}
.solution-img>img {
  display: block;
  max-width: 100%;
  height: auto;
  margin: 0 auto;
}
.solution-left {
  width: 50%;
  padding-right: 30px;
  font-size: 16px;
  line-height: 24px;
  color: #5c5c5c;
}
.solution-left a {
  color: #e5342e;
}

@media (max-width: 1280px) {
  .solution {
    margin-top: 30px;
    padding: 30px 0 50px 0;
  }
}
@media (max-width: 991px) {
  .solution {
    margin-top: 20px;
    padding: 30px 0
  }
}
@media (max-width: 767px) {
  .solution {
    margin-top: 0;
    padding: 15px 0
  }
  .solution-title {
    line-height: 30px;
    font-size: 20px;
  }
  .solution-content {
    margin-top: 10px;
  }
  .solution-img {
    width: 100%;
  }
  .solution-left {
    width: 100%;
    padding: 10px 0 0 0;
    font-size: 14px;
    line-height: 22px;
  }
}
/* END-首页样式 */

/* 关于我们 */
main {
  overflow: hidden;
}
.main-title {
  width: 100%;
  float: left;
  background-color: #f8f8f8;
  line-height: 36px;
  font-size: 12px;
  color: #808080;
}
.main-title>.container {
  display: flex;
  align-items: center;
}
.main-title>.container>img {
  margin-right: 10px;
}

.about-banner {
  width: 100%;
  overflow: hidden;
  height: 278px;
  position: relative;
}
.about-main {
  width: 100%;
  overflow: hidden;
  padding: 50px 0;
}
.about-novexx {
  display: block;
  overflow: hidden;
}
.about-novexx .title {
  display: block;
  overflow: hidden;
  line-height: 35px;
  font-size: 26px;
  color: #e6302d;
  padding-bottom: 20px;
  border-bottom: 1px solid #a2a2a2;
}
.about-novexx .content {
  display: block;
  overflow: hidden;
  margin-top: 25px;
  font-size: 16px;
  line-height: 24px;
}
.about-novexx .content>h1 {
  display: block;
  overflow: hidden;
  line-height: 38px;
  font-size: 24px;
  color: #606060;
  margin-bottom: 25px;
}
.about-novexx .content a {
  color: #e5342d;
}
.about-novexx .content>a:hover {
  text-decoration: underline;
}

.about-novexx-content {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  overflow: hidden;
  margin-top: 30px;
}
.about-novexx-left {
  width: 72.734375%;
  border: 1px solid #c4c4c4;
  padding: 17px;
  border-radius: 5px;
  display: flex;
}
.about-novexx-left .img::before {
  padding-top: 41.452514%;
}
.about-novexx-right {
  width: 20.859375%;
}
.about-novexx-right>h1 {
  display: block;
  overflow: hidden;
  line-height: 38px;
  font-size: 26px;
  color: #888a88;
  margin-bottom: 20px;
}
.about-novexx-right>a {
  display: flex;
  flex-direction: column;
}
.about-novexx-right>a>img {
  display: block;
  max-width: 100%;
  height: auto;
}
.about-novexx-right>a>span {
  display: block;
  overflow: hidden;
  margin-top: 15px;
  line-height: 24px;
  font-size: 15px;
  color: #e5342d;
}

.brand {
  display: flex;
  flex-direction: column;
  margin-top: 60px;
  border-top: 1px solid #a2a2a2;
  padding-top: 50px;
}
.brand-title {
  display: block;
  overflow: hidden;
  line-height: 32px;
  font-size: 26px;
  color: #575757;
}
.brand-title>span {
  color: #e6302d;
}
.brand-list {
  width: 100%;
  max-width: 1065px;
  margin: 40px auto 0 auto;
  display: flex;
  flex-wrap: wrap;
}
.brand-list>li {
  width: calc(100% / 3);
  padding: 0 6px;
  margin-bottom: 20px;
  display: flex;
}
.brand-list>li>a {
  width: 100%;
  height: 100%;
  float: left;
  overflow: hidden;
  position: relative;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.2);
  background-color: #aaa;
}
.brand-list>li>a::before {
  content: "";
  display: block;
  padding-top: 57.434403%;
}
.brand-list>li>a>h1 {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-size: 22px;
  color: #fff;
  line-height: 32px;
}
.brand-list>li>a .brand-hover {
  position: absolute;
  inset: 0;
  background-color: #fff;
  overflow: hidden;
  transform: rotateX(90deg);
  padding: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.brand-list>li>a .brand-hover>div {
  width: 100%;
  line-height: 18px;
  font-size: 14px;
  color: #000;
  text-align: center;
}
.brand-list>li>a .brand-hover>h1 {
  background-color: #e53431;
  border-radius: 5px;
  line-height: 24px;
  padding: 6px 14px;
  text-align: center;
  font-size: 14px;
  color: #fff;
  margin-top: 14px;
}
.brand-list>li>a:hover {
  background-color: #fff;
}
.brand-list>li>a:hover .brand-hover {
  transform: rotate(0);
}
.brand-list>li:nth-child(5)>a {
  background-color: #e53431;
}


.hz {
  display: block;
  overflow: hidden;
  margin-top: 50px;
  padding: 45px 0;
  border-top: 1px solid #a2a2a2;
}
.hz-title {
  display: block;
  line-height: 40px;
  font-size: 26px;
  color: #575757;
}
.hz-title>span {
  color: #e6302d;
}
.hz-content {
  display: block;
  overflow: hidden;
  margin-top: 30px;
  font-size: 16px;
  line-height: 24px;
  color: #606060;
}
.hz-content a {
  color: #e6302d;
}
.hz-content a:hover {
  text-decoration: underline;
}

@media (max-width: 1280px) {
  .brand {
    margin-top: 50px;
    padding-top: 40px;
  }
  .hz {
    margin-top: 40px;
    padding: 35px 0;
  }
}
@media (max-width: 991px) {
  .about-main {
    padding: 30px 0;
  }
  .brand {
    margin-top: 30px;
    padding-top: 30px;
  }
  .hz {
    margin-top: 30px;
    padding: 25px 0;
  }
}
@media (max-width: 767px) {
  .about-main {
    padding: 15px 0;
  }
  .about-novexx .title {
    line-height: 30px;
    font-size: 20px;
    padding-bottom: 10px;
  }
  .about-novexx .content {
    margin-top: 10px;
    font-size: 14px;
    line-height: 22px;
  }
  .about-novexx .content>h1 {
    line-height: 28px;
    font-size: 18px;
    margin-bottom: 10px;
  }
  .about-novexx-content {
    margin-top: 10px;
  }
  .about-novexx-left {
    width: 60%;
    padding: 5px;
  }
  .about-novexx-right {
    width: 35%;
  }
  .about-novexx-right>h1 {
    line-height: 30px;
    font-size: 20px;
    margin-bottom: 10px;
  }
  .about-novexx-right>a>span {
    margin-top: 5px;
    line-height: 22px;
    font-size: 13px;
  }

  .brand {
    margin-top: 10px;
    padding-top: 15px;
  }
  .brand-title {
    line-height: 30px;
    font-size: 20px;
  }
  .brand-list {
    margin: 10px auto 0 auto;
  }
  .brand-list>li {
    padding: 0 3px;
    margin-bottom: 6px;
  }
  .brand-list>li>a::before {
    padding-top: 75%;
  }
  .brand-list>li>a>h1 {
    font-size: 16px;
    line-height: 24px;
  }
  .brand-list>li>a .brand-hover {
    display: none;
  }
  .brand-list>li>a:hover>h1 {
    color: #aaa;
  }

  .hz {
    margin-top: 0;
    padding: 15px 0;
  }
  .hz-title {
    line-height: 30px;
    font-size: 20px;
  }
  .hz-content {
    margin-top: 10px;
    font-size: 14px;
    line-height: 22px;
  }
}
/* END-关于我们 */

/* 产品展示 */
.product-main {
  width: 100%;
  overflow: hidden;
  padding: 40px 0;
}
.product-main>.container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.product-left {
  width: 212px;
}
.product-right {
  width: 980px;
}

.product-banner {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  padding-bottom: 20px;
  border-bottom: 1px solid #a3a3a3;
  margin-bottom: 50px;
}
.product-banner-title {
  line-height: 40px;
  font-size: 26px;
  color: #e6302d;
}
.product-banner-content {
  display: block;
  overflow: hidden;
  min-height: 90px;
  font-size: 16px;
  line-height: 30px;
  color: #646464;
}

.menu-list {
  display: block;
  overflow: hidden;
}
.menu-list>li {
  display: block;
  overflow: hidden;
  border-bottom: 1px solid #e6e6e6;
  padding-bottom: 10px;
  margin-bottom: 10px;
}
.menu-list>li>h1 {
  display: block;
  overflow: hidden;
  position: relative;
  padding-right: 20px;
}
.menu-list>li>h1>a {
  width: fit-content;
  max-width: 100%;
  height: 34px;
  line-height: 34px;
  font-size: 16px;
  color: #242424;
  font-weight: bold;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.menu-list>li>h1::before,
.menu-list>li>h1::after {
  content: "";
  width: 17px;
  height: 3px;
  background-color: #2f3132;
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  cursor: pointer;
}
.menu-list>li>h1::after {
  width: 3px;
  height: 17px;
  position: absolute;
  right: 7px;
}
.menu-list>li:hover>h1>a,
.menu-list>li.menu-active>h1>a {
  color: #ec312e;
}
.menu-list>li.menu-active>h1::after {
  height: 0;
}

.menu-child-list {
  display: none;
  overflow: hidden;
  padding-top: 10px;
}
.menu-child-list>li {
  display: block;
  overflow: hidden;
}
.menu-child-list>li>a {
  float: left;
  max-width: 100%;
  height: 36px;
  line-height: 36px;
  padding-left: 30px;
  font-size: 15px;
  color: #3f3f3f;
  position: relative;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.menu-child-list>li>a::before {
  content: "";
  width: 19px;
  height: 19px;
  background-color: #e6e6e6;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}
.menu-child-list>li>a::after {
  content: "";
  width: 9px;
  height: 9px;
  background-color: #fff;
  position: absolute;
  left: 5px;
  top: 50%;
  transform: translateY(-50%);
}
.menu-child-list>li>a:hover::after {
  background-color: #ec312e;
}
.menu-child-list>li>a.active::after {
  background-color: #ec312e;
}


.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 25px 11px;
  display: flex;
}
.pro-list>li>a {
  width: 100%;
  display: block;
  border: 1px solid #acacac;
  padding: 12px 13px;
}
.pro-list>li>a .img {
  background-color: #f4f4f4;
}
.pro-list>li>a .img>img {
  mix-blend-mode: multiply;
}
.pro-list>li>a .img::before {
  padding-top: 87.7193%;
}
.pro-list>li>a .img::after {
  content: "\f0f6";
  position: absolute;
  inset: 0;
  background-color: rgba(229, 50, 56, 0.5);
  color: #fff;
  font-family: FontAwesome;
  font-size: 40px;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
}
.pro-list>li>a .product-box {
  width: 100%;
  overflow: hidden;
  margin-top: 15px;
}
.pro-list>li>a .product-box>h6 {
  display: block;
  overflow: hidden;
  line-height: 22px;
  font-size: 14px;
  color: #b7b7b7;
}
.pro-list>li>a .product-box>h1 {
  display: block;
  overflow: hidden;
  line-height: 28px;
  font-size: 16px;
  color: #0f0f0f;
  margin-top: 5px;
  font-weight: bold;
}
.pro-list>li>a:hover .img::after {
  opacity: 1;
}

.product-details {
  display: block;
  overflow: hidden;
}
.product-details-title {
  display: block;
  overflow: hidden;
  text-align: center;
  font-size: 20px;
  font-weight: bold;
  line-height: 30px;
  padding-bottom: 10px;
  border-bottom: 1px dashed var(--colorC);
}
.product-details-content {
  display: block;
  overflow: hidden;
  font-size: 16px;
  line-height: 30px;
  padding-top: 20px;
}
.product-details-content img {
  display: block;
  max-width: 100% !important;
  height: auto !important;
  margin: 0 auto;
}
.product-details-content table{ width:100% !important; height:auto !important; border-collapse:collapse;}
.product-details-content table tr td{ width:auto !important; height:auto !important; border-collapse:collapse;}

@media (max-width: 1280px) {
  .product-left {
    width: 17%;
  }
  .product-right {
    width: 80%;
  }
}
@media (max-width: 991px) {
  .product-main {
    padding: 30px 0;
  }
  .product-left {
    width: 22%;
  }
  .product-right {
    width: 76%;
  }
}
@media (max-width: 767px) {
  .product-main {
    padding: 0;
  }
  .product-left {
    width: 100%;
  }
  .product-right {
    width: 100%;
    padding: 20px 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;
  }

  .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 {
    padding: 5px;
  }
  .pro-list>li>a .product-box {
    margin-top: 5px;
  }
  .pro-list>li>a .product-box>h1 {
    margin-top: 0;
  }

  .product-details-title {
    font-size: 16px;
  }
  .product-details-content {
    padding-top: 10px;
    line-height: 24px;
    font-size: 14px;
  }
}
/* END-产品展示 */

/* 技术支持 */
.support-main {
  width: 100%;
  overflow: hidden;
  padding: 40px 0;
}
.possehl {
  width: 100%;
  display: flex;
  flex-direction: column;
}
.possehl>h1 {
  width: 100%;
  float: left;
  padding-bottom: 20px;
  border-bottom: 1px solid #a4a4a4;
  line-height: 36px;
  font-size: 26px;
  color: #e6302d;
}
.possehl-content {
  width: 100%;
  float: left;
  margin-top: 30px;
  font-size: 16px;
  line-height: 30px;
  color: #606060;
}
.possehl-content>h1 {
  display: block;
  overflow: hidden;
  line-height: 32px;
  font-size: 22px;
  color: #606060;
  margin-bottom: 30px;
}
.possehl-content>img {
  width: 372px;
  float: right;
  height: auto;
  margin-top: -45px;
  margin-left: 50px;
}
.possehl-content>p {
  display: block;
  overflow: hidden;
}
.possehl-content>p>a {
  float: left;
  margin: 20px 0;
  line-height: 28px;
  padding: 10px 15px;
  font-size: 16px;
  color: #fff;
  background-color: #616161;
  border-radius: 5px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.2)
}
.possehl-content>p>a:hover {
  background-color: #fff;
  color: rgba(0, 0, 0, 0.5);
}

.possehl-video {
  width: 100%;
  overflow: hidden;
  position: relative;
  background-color: #000000;
  border-radius: 5px;
  margin: 30px 0 0 0;
}
.possehl-video::before {
  content: "";
  display: block;
  padding-top: 45.234375%;
}
.possehl-video>video,
.possehl-video>iframe {
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0;
  z-index: 2;
}
.possehl-video>video {
  object-fit: cover;
}

.support-main .branch {
  margin-top: 60px;
}

.support-box {
  width: 100%;
  display: flex;
  flex-direction: column;
  margin-top: 50px;
  padding: 35px 0 25px 0;
  border-top: 1px solid #989898;
}
.support-box>h1 {
  display: block;
  overflow: hidden;
  line-height: 36px;
  font-size: 26px;
  color: #575757;
  margin-bottom: 30px;
}
.support-box>h1>span {
  color: #e5342d;
}
.support-content {
  display: block;
  overflow: hidden;
  font-size: 16px;
  line-height: 1.6;
  color: #606060;
}
.support-content img {
  width: 100% !important;
  display: block;
  height: auto !important;
  margin-bottom: 40px;
}

@media (max-width: 991px) {
  .support-main {
    padding: 30px 0;
  }
  .possehl-video {
    margin: 30px 0 0 0;
  }
  .support-main .branch {
    margin-top: 40px;
  }

  .support-box {
    margin-top: 30px;
    padding: 25px 0;
  }
  .possehl-content>img {
    margin-top: -30px;
    margin-left: 30px;
  }
}
@media (max-width: 767px) {
  .support-main {
    padding: 15px 0;
  }
  .possehl>h1 {
    padding-bottom: 10px;
    line-height: 30px;
    font-size: 20px;
  }
  .possehl-content {
    margin-top: 10px;
    font-size: 14px;
    line-height: 24px;
  }
  .possehl-content>h1 {
    line-height: 24px;
    font-size: 18px;
    margin-bottom: 10px;
  }
  .possehl-content>img {
    width: 100%;
    margin-top: 0;
    margin-left: 0;
  }
  .possehl-content>p>a {
    margin: 10px 0;
    line-height: 24px;
    font-size: 14px;
  }
  .possehl-video {
    margin: 15px 0 0 0;
  }
  .possehl-video::before {
    padding-top: 75%;
  }
  .support-main .branch {
    margin-top: 15px;
  }

  .support-box {
    margin-top: 0;
    padding: 15px 0;
  }
  .support-box>h1 {
    line-height: 30px;
    font-size: 20px;
    margin-bottom: 10px;
  }
  .support-content {
    font-size: 14px;
    line-height: 22px;
  }
  .support-content>img {
    margin-bottom: 10px;
  }
}
/* END-技术支持 */

/* 解决方案 */
.solution-main {
  width: 100%;
  overflow: hidden;
  padding: 45px 0;
}
.solution-list {
  display: flex;
  flex-wrap: wrap;
  width: calc(100% + 18px);
  margin-left: -9px;
  margin-top: 50px;
}
.solution-list>li {
  width: calc(calc(100% / 3) - 18px);
  margin: 0 9px 18px 9px;
  display: flex;
}
.solution-list>li>a {
  width: 100%;
  display: block;
  overflow: hidden;
  border: 1px solid #878787;
  padding: 35px 45px;
}
.solution-list>li>a .img::before {
  padding-top: 35%;
}
.solution-list>li>a>h1 {
  display: block;
  overflow: hidden;
  line-height: 32px;
  margin-top: 20px;
  text-align: center;
  font-size: 20px;
  color: #e5342d;
}
.solution-list>li>a .solution-text {
  display: block;
  overflow: hidden;
  margin-top: 20px;
  text-align: center;
  height: 120px;
  line-height: 24px;
  font-size: 15px;
  color: #494949;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 5;
  -webkit-box-orient: vertical;
}
.solution-list>li>a .solution-more {
  display: block;
  overflow: hidden;
  line-height: 20px;
  text-align: center;
  font-size: 12px;
  color: #e5342d;
  font-weight: bold;
}
.solution-list>li>a:hover .solution-more {
  text-decoration: underline;
}

@media (max-width: 1280px) {
  .solution-list {
    margin-top: 40px;
  }
}
@media (max-width: 991px) {
  .solution-main {
    padding: 30px 0;
  }
  .solution-list {
    margin-top: 20px;
  }
  .solution-list>li>a {
    padding: 25px;
  }

}
@media (max-width: 767px) {
  .solution-main {
    padding: 15px 0;
  }
  .solution-list {
    margin-top: 10px;
    width: 100%;
    margin-left: 0;
    justify-content: space-between;
  }
  .solution-list>li {
    width: calc(50% - 5px);
    margin: 0 0 10px 0;
  }
  .solution-list>li>a {
    padding: 10px;
  }
  .solution-list>li>a>h1 {
    line-height: 30px;
    margin-top: 5px;
    font-size: 18px;
  }
  .solution-list>li>a .solution-text {
    margin-top: 10px;
    height: 110px;
    line-height: 22px;
    font-size: 13px;
  }
}
/* END-解决方案 */

/* 新闻资讯 */
.news-main {
  width: 100%;
  overflow: hidden;
  padding: 35px 0;
}
.info-list {
  display: flex;
  flex-wrap: wrap;
  width: calc(100% + 32px);
  margin-left: -16px;
}
.info-list>li {
  width: calc(calc(100% / 3) - 32px);
  margin: 0 16px 56px 16px;
}
.info-list>li>a {
  display: flex;
  flex-direction: column;
}
.info-list>li>a .img {
  border-radius: 5px;
}
.info-list>li>a .img::before {
  padding-top: 51.358025%;
}
.info-list>li>a .img::after {
  content: "\f0f6";
  position: absolute;
  inset: 0;
  background-color: rgba(229, 50, 56, 0.5);
  color: #fff;
  font-family: FontAwesome;
  font-size: 40px;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
}
.info-list>li>a .info-box {
  width: 100%;
  overflow: hidden;
  padding-top: 18px;
}
.info-list>li>a .info-box>h1 {
  display: block;
  overflow: hidden;
  height: 48px;
  line-height: 24px;
  font-size: 18px;
  color: #2f2f2f;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}
.info-list>li>a .info-box>div {
  display: block;
  overflow: hidden;
  height: 48px;
  line-height: 24px;
  font-size: 15px;
  color: #626262;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  margin-top: 8px;
}
.info-list>li>a .info-box>h6 {
  display: block;
  overflow: hidden;
  margin-top: 20px;
  line-height: 24px;
  font-size: 12px;
  color: #e5342d;
  font-weight: bold;
}
.info-list>li>a:hover .img::after {
  opacity: 1;
}

.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; min-height:400px;
}
.news-details-content img {
  display: block;
  max-width: 100% !important;
  height: auto !important;
  margin: 0 auto;
}

@media (max-width: 1280px) {
  .info-list {
    width: calc(100% + 20px);
    margin-left: -10px;
  }
  .info-list>li {
    width: calc(calc(100% / 3) - 20px);
    margin: 0 10px 40px 10px;
  }
}
@media (max-width: 991px) {
  .news-main {
    padding: 25px 0;
  }
  .info-list>li {
    margin: 0 10px 20px 10px;
  }
}
@media (max-width: 767px) {
  .news-main {
    padding: 15px 0;
  }
  .info-list {
    width: 100%;
    margin-left: 0;
  }
  .info-list>li {
    width: 100%;
    margin: 0 0 10px 0;
  }
  .info-list>li>a {
    flex-direction: row;
  }
  .info-list>li>a .img {
    width: 40%;
  }
  .info-list>li>a .info-box {
    width: 60%;
    padding: 0 0 0 15px;
  }
  .info-list>li>a .info-box>h1 {
    height: 40px;
    line-height: 20px;
    font-size: 16px;
  }
  .info-list>li>a .info-box>div {
    height: 32px;
    line-height: 16px;
    font-size: 12px;
  }
  .info-list>li>a .info-box>h6 {
    margin-top: 10px;
    line-height: 20px;
  }

  .news-details-title {
    font-size: 16px;
  }
  .news-details-time {
    padding: 5px 0;
  }
  .news-details-content {
    line-height: 24px;
    font-size: 14px;
  }
}
/* END-新闻资讯 */

/* 联系我们 */
.contact-main {
  width: 100%;
  overflow: hidden;
  padding: 40px 0;
}
.contact {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.contact-title {
  width: 100%;
  float: left;
  padding-bottom: 25px;
  border-bottom: 1px solid #eaeaea;
  font-size: 14px;
  line-height: 26px;
  color: #545454;
  margin-bottom: 50px;
}
.contact-title>h1 {
  line-height: 36px;
  font-size: 26px;
  color: #e6302d;
  margin-bottom: 10px;
}
.contact-title>a {
  color: #e6302d;
}
.contact-title>a:hover {
  text-decoration: underline;
}

.contact-text {
  flex: 1;
  padding-right: 30px;
  font-size: 15px;
  line-height: 30px;
  color: #555;
}
.contact-text>h1 {
  font-size: 18px;
  color: #555555;
  font-weight: bold;
  margin-bottom: 20px;
}
.contact-img {
  width: 67.265625%;
  overflow: hidden;
  position: relative;
  margin-top: 5px;
}
.contact-img::before {
  content: "";
  display: block;
  padding-top: 52.26481%;
}


@media (max-width:767px) {
  .contact-main {
    padding: 15px 0;
  }
  .contact-title {
    padding-bottom: 10px;
    line-height: 22px;
    margin-bottom: 10px;
  }
  .contact-title>h1 {
    line-height: 30px;
    font-size: 20px;
    margin-bottom: 0;
  }

  .contact-text {
    flex: none;
    width: 100%;
    padding-right: 0;
    font-size: 13px;
    line-height: 24px;
  }
  .contact-text>h1 {
    font-size: 16px;
    margin-bottom: 10px;
  }
  .contact-img {
    width: 100%;
    margin-top: 10px;
  }
}
/* END-联系我们 */

/* 留言 */
.message-form {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  width: 100%;
  max-width: 900px;
  margin: 0 auto;
}
.message-form>label,
.message-form>div {
  width: 50%;
  padding: 0 5px;
  display: flex;
  flex-direction: column;
  margin-bottom: 12px;
}
.message-form>label>h1 {
  display: block;
  overflow: hidden;
  line-height: 38px;
  font-size: 16px;
  color: #7a7a7a;
  font-weight: bold;
}
.message-form>label>h1>span {
  color: #e80000;
}
.message-form>label>input {
  width: 100%;
  display: block;
  height: 32px;
  line-height: 30px;
  border: 1px solid #c4c4c4;
  background-color: #f7f7f7;
  font-size: 14px;
  color: #333;
  padding: 0 10px;
}
.message-form>label>textarea {
  width: 100%;
  display: block;
  height: 136px;
  line-height: 24px;
  border: 1px solid #c4c4c4;
  background-color: #f7f7f7;
  font-size: 14px;
  color: #333;
  padding: 3px 10px;
}
.message-form>.message-box {
  padding: 38px 0 0 36px;
}
.message-form>.message-box>label {
  display: flex;
  align-items: center;
  font-size: 16px;
  line-height: 34px;
  color: #7a7a8f;
  cursor: pointer;
}
.message-form>.message-box>label>input {
  width: 16px;
  height: 16px;
  border: 1px solid #c4c4c4;
  background-color: #f7f7f7;
  margin-right: 10px;
}
.message-form>.message-box>button {
  width: 90px;
  height: 32px;
  line-height: 32px;
  background-color: var(--color-hover);
  font-size: 16px;
  color: #fff;
  margin-top: 30px;
}

@media (max-width:767px) {
  .message-form>label,
  .message-form>div {
    width: 100%;
    padding: 0;
    margin-bottom: 10px;
  }
  .message-form>.message-box {
    padding: 10px 0 0 0;
  }
  .message-form>.message-box>button {
    margin-top: 10px;
  }
}
/* END-留言 */