/* Animate.css动画演示 */
@import "../plugin/swiper/animate.min.css";

/* Swiper 7.4.1 */
@import "../plugin/swiper/swiper-bundle.min.css";

/* 字体图标 */
@import "../plugin/font/css/font-awesome.min.css";

/* 核心样式 */
@import "../css/core/bootstrap.min.css";

/* 公用样式 */
@import "../css/public.css";

/* main */
/* 关于聚和 */
.about {
  width: 100%;
  overflow: hidden;
  padding: 60px 0;
}
.about-title {
  display: block;
  overflow: hidden;
  text-align: center;
  line-height: 34px;
  font-family: "Source Han Sans CN";
  color: #212121;
}
.about-title::after {
  content: "";
  width: 34px;
  height: 3px;
  display: block;
  background-color: #ec0913;
  margin: 20px auto 0 auto;
}
.about-title>div {
  font-weight: bold;
  font-size: 30px;
  text-transform: uppercase;
}
.about-title>h1 {
  font-family: "Source Han Sans CN Light";
  font-weight: normal;
  font-size: 24px;
}
.about-text {
  display: block;
  overflow: hidden;
  line-height: 30px;
  color: #434343;
  text-align: center;
  font-size: 17px;
  margin-top: 40px;
}
.about-text>span {
  font-weight: bold;
}
.about-more {
  display: flex;
  justify-content: center;
  margin-top: 40px;
}
.about-more>a {
  float: left;
  line-height: 32px;
  font-size: 14px;
  color: #ec0913;
  font-family: "Source Han Sans CN";
  padding-right: 50px;
  background: url(../images/more-icon.png) no-repeat right center;
}
.about-more>a:hover {
  text-decoration: underline;
  padding-right: 40px;
}

@media (max-width: 1240px) {
  .about {
    padding: 50px 0;
  }
}

@media (max-width: 991px) {
  .about {
    padding: 30px 0;
  }
  .about-text {
    margin-top: 20px;
  }
  .about-more {
    margin-top: 20px;
  }
}

@media (max-width: 767px) {
  .about {
    padding: 15px 0;
  }
  .about-title {
    line-height: 30px;
  }
  .about-title::after {
    margin: 5px auto 0 auto;
  }
  .about-title>div {
    font-size: 20px;
    line-height: 20px;
  }
  .about-title>h1 {
    font-size: 20px;
  }
  .about-text {
    line-height: 24px;
    font-size: 14px;
    margin-top: 10px;
  }
  .about-more {
    margin-top: 10px;
  }
  .about-more>a {
    line-height: 24px;
  }
}

.product-list {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  float: left;
}
.product-list>li {
  width: 22%;
  float: left;
  margin: 0 36px 30px 0;
}
.product-list>li>a {
  display: block;
  overflow: hidden;
  background-color: #fff;
  border-radius: 5px;
  padding: 9px;
  box-shadow: 0 0 5px rgba(271, 271, 271, 0.2);
}
.product-list>li>a .product-img {
  width: 100%;
  overflow: hidden;
  position: relative;
}
.product-list>li>a .product-img::before {
  content: "";
  display: block;
  padding-top: 84%;
}
.product-list>li>a>h1 {
  display: block;
  overflow: hidden;
  height: 40px;
  line-height: 40px;
  text-align: center;
  font-size: 14px;
  color: #333;
  text-overflow: ellipsis;
  white-space: nowrap;
  border-radius: 5px;
}
.product-list>li>a:hover .product-img>img {
  transform: scale(1.1);
}
.product-list>li>a:hover>h1 {
  background-color: #df0304;
  color: #fff;
}
@media (max-width: 1240px) {
  .product-list {
    width: 102%;
    margin-left: -1%;
  }
  .product-list>li {
    width: 31.333333%;
    margin: 0 1% 30px 1%;
  }
}

@media (max-width: 991px) {
  .product-list>li {
    width: 48%;
    margin: 0 1% 20px 1%;
  }
}

@media (max-width: 767px) {
  .product-list>li {
    margin: 0 1% 10px 1%;
  }
  .product-list>li>a {
    padding: 4px;
  }
}


/* 产品展示 */
.product {
  width: 100%;
  overflow: hidden;
  background: url(../images/product-bj.jpg) no-repeat center center;
  background-size: cover;
  padding: 80px 0;
}
.product .about-title>div {
  line-height: 40px;
  font-size: 36px;
}
.product .about-title::after {
  display: none;
}
.product-content {
  display: flex;
  position: relative;
  margin-top: 30px;
}
.product-swiper {
  width: 100%;
  float: left;
}
.product-swiper .swiper-slide {
  margin-top: 79px;
  background-color: #fff;
  border-radius: 10px;
  padding: 0 15px 20px 15px;
}
.product-swiper .swiper-slide>a {
  display: block;
  overflow: hidden;
  margin-top: -79px;
}
.product-swiper .swiper-slide>a .product-img {
  width: 100%;
  max-width: 158px;
  overflow: hidden;
  margin: 0 auto;
  border-radius: 50%;
  border: 10px solid #dde4e8;
  position: relative;
}
.product-swiper .swiper-slide>a .product-img::before {
  content: "";
  display: block;
  padding-top: 100%;
}
.product-swiper .swiper-slide>a>h1 {
  display: block;
  overflow: hidden;
  margin-top: 20px;
  line-height: 32px;
  font-size: 18px;
  color: #2c2c2c;
  text-align: center;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.product-swiper .swiper-slide>a:hover>h1 {
  color: #ec0913;
}
.product-swiper .swiper-slide>ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-top: 20px;
}
.product-swiper .swiper-slide>ul>li {
  width: calc(50% - 3px);
  float: left;
  margin-bottom: 6px;
}
.product-swiper .swiper-slide>ul>li>a {
  display: block;
  overflow: hidden;
  height: 38px;
  line-height: 36px;
  font-size: 13px;
  color: #747474;
  text-align: center;
  border: 1px solid #e6e6e6;
  border-radius: 10px;
  padding: 0 10px;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.product-swiper .swiper-slide>ul>li>a:hover {
  border-color: #ec0913;
  color: #fff;
  background-color: #ec0913;
}
.product-swiper .swiper-slide .product-more {
  display: flex;
  justify-content: center;
  margin-top: 10px;
  line-height: 25px;
  font-size: 12px;
  color: #a7a7a7;
  text-decoration: underline;
}
.product-swiper .swiper-slide .product-more>a {
  color: #a7a7a7;
}
.product-swiper .swiper-slide .product-more>a:hover {
  color: #ec0913;
}
.product-prev,
.product-next {
  width: 28px;
  float: left;
  height: 54px;
  margin-top: 40px;
  position: absolute;
  left: -80px;
  top: 50%;
  transform: translateY(-50%);
  cursor: pointer;
  background-image: url(../images/product-left.png);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: 100% 100%;
  z-index: 2;
}
.product-next {
  left: initial;
  right: -80px;
  background-image: url(../images/product-right.png);
}
.product-prev:hover {
  background-image: url(../images/product-left-hover.png);
}
.product-next:hover {
  background-image: url(../images/product-right-hover.png);
}

@media (max-width: 1240px) {
  .product {
    padding: 50px 0;
  }
  .product-prev,
  .product-next {
    left: -2%;
  }
  .product-next {
    left: initial;
    right: -2%;
  }
}

@media (max-width: 991px) {
  .product {
    padding: 30px 0;
  }
}

@media (max-width: 767px) {
  .product {
    padding: 15px 0;
  }
  .product .about-title>div {
    line-height: 20px;
    font-size: 20px;
  }
  .product-content {
    margin-top: 10px;
  }
}

/* 新闻资讯 */
.news {
  width: 100%;
  overflow: hidden;
  padding: 80px 0;
}
.news-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-top: 50px;
}
.news-list>li {
  width: calc(50% - 12px);
  float: left;
  margin-bottom: 25px;
}
.news-list>li>a {
  display: block;
  overflow: hidden;
  border: 2px solid #f1f1f1;
  background-color: #f1f1f1;
  padding: 20px;
}
.news-list>li>a .news-number {
  width: 80px;
  float: left;
  height: 70px;
  margin-right: 15px;
  background-color: #fff;
  text-align: center;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  align-content: center;
  justify-content: center;
  line-height: 20px;
  text-align: center;
  font-size: 12px;
  color: #777;
}
.news-list>li>a .news-number>span {
  width: 100%;
  overflow: hidden;
  line-height: 40px;
  font-size: 40px;
  color: #767676;
}
.news-list>li>a>h1 {
  display: block;
  overflow: hidden;
  line-height: 24px;
  font-size: 17px;
  color: #202020;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.news-list>li>a>.news-text {
  display: block;
  overflow: hidden;
  height: 40px;
  line-height: 20px;
  font-size: 14px;
  color: #606060;
  margin-top: 5px;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}
.news-list>li>a:hover {
  border-color: #ec0913;
  background-color: #fff;
}
.news-list>li>a:hover>h1 {
  color: #ec0913;
}
.news .about-more {
  margin-top: 20px;
}
.news .about-more>a {
  line-height: 28px;
}

@media (max-width: 1240px) {
  .news {
    padding: 50px 0;
  }
}

@media (max-width: 991px) {
  .news {
    padding: 30px 0;
  }
  .news-list {
    margin-top: 30px;
  }
}

@media (max-width: 767px) {
  .news {
    padding: 15px 0;
  }
  .news-list {
    margin-top: 10px;
  }
  .news-list>li {
    width: 100%;
    margin-bottom: 10px;
  }
  .news-list>li>a {
    padding: 10px;
  }
  .news .about-more {
    margin-top: 10px;
  }
  .news .about-more>a {
    line-height: 24px;
  }
}
/* END-main */

/* 关于我们 */
.main {
  width: 100%;
  overflow: hidden;
  padding: 50px 0;
}
.main-title {
  width: 100%;
  float: left;
}
.place-title {
  width: 100%;
  float: left;
  text-align: center;
  line-height: 44px;
  font-size: 30px;
  color: #1c1c1c;
}
.place-title::after {
  content: "";
  width: 36px;
  height: 2px;
  display: block;
  background-color: #ec0913;
  margin: 15px auto 0 auto;
}

.main-content {
  width: 100%;
  float: left;
  margin-top: 44px;
}
.company {
  display: block;
  overflow: hidden;
  font-size: 16px;
  line-height: 36px;
  color: #333;
  /*text-align: center;*/
}
.company img{
  display: block;
  max-width: 100%;
	height: auto;
	margin: 5px auto;
}
.company video{
  display: block;
  width: 65%;
  height: auto;
	margin: 5px auto;
}

@media (max-width: 1200px) {
  .main {
    padding: 50px 0;
  }
}

@media (max-width: 991px) {
  .main {
    padding: 30px 0;
  }
}

@media (max-width: 767px) {
  .main {
    padding: 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: #ec0913;
  }
  .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%);
  }
  .main-content {
    margin: 20px 0;
  }
  .company {
    line-height: 24px;
    font-size: 14px;
  }
.company video{
  width: 100%;
}
}
/* END-关于我们 */

/* 产品展示 */
.menu-list {
  float: left;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 30px;
  width: calc(100% + 6px);
  margin-left: -3px;
}
.menu-list>li {
  width: calc(14.285% - 6px);
  float: left;
  margin: 0 3px 6px 3px;
}
.menu-list>li>a {
  display: block;
  overflow: hidden;
  height: 48px;
  line-height: 46px;
  border: 1px solid #d4d4d4;
  border-radius: 24px;
  text-align: center;
  font-size: 16px;
  color: #2c2c2c;
  padding: 0 10px;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.menu-list>li>a:hover,
.menu-list>li.menu-active>a {
  border-color: #ec0913;
  background-color: #ec0913;
  color: #fff;
}

.product-box {
  width: 100%;
  float: left;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  background-color: #f4f4f4;
  padding: 25px;
  border-radius: 5px;
}
.product-box .product-img {
  width: calc(50% - 30px);
  float: left;
  overflow: hidden;
  position: relative;
  border-radius: 5px;
}
.product-box .product-img::before {
  content: "";
  display: block;
  padding-top: 50.82267%;
}
.product-box .product-text-box {
  width: calc(50% - 20px);
  float: right;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  align-content: center;
}
.product-box .product-text-box>h1 {
  display: block;
  overflow: hidden;
  line-height: 38px;
  font-size: 24px;
  color: #212121;
}
.product-box .product-text-box>div {
  display: block;
  overflow: hidden;
  line-height: 24px;
  font-size: 14px;
  color: #6a6969;
  margin-top: 20px;
}

.product-content {
  width: 100%;
  float: left;
  margin-top: 70px;
  border-top: 1px solid #c1c1c1;
  border-bottom: 1px solid #c1c1c1;
}
.product-nav {
  width: 26.25%;
  float: left;
  border-right: 1px solid #c1c1c1;
  padding: 1px 0;
}
.product-nav>li {
  display: block;
  overflow: hidden;
  border-bottom: 1px solid #c1c1c1;
}
.product-nav>li:last-child {
  border-bottom: none;
}
.product-nav>li>a {
  display: block;
  overflow: hidden;
  height: 54px;
  line-height: 54px;
  padding: 0 25px;
  font-size: 16px;
  color: #3d3d3d;
}
.product-nav>li>a>span {
  float: left;
  color: #8e8e8e;
  margin-right: 10px;
}
.product-nav>li>a:hover,
.product-nav>li.product-active>a {
  background-color: #ec0913;
  color: #fff;
}
.product-nav>li>a:hover>span,
.product-nav>li.product-active>a>span {
  color: #fff;
}
.product-right {
  width: 73.75%;
  float: right;
  padding: 35px 100px;
}
.product-right>div {
  display: none;
}
.product-right>div:first-child {
  display: block;
}
.product-right>div .product-right-img {
  width: 50%;
  float: right;
  overflow: hidden;
  position: relative;
  margin-left: 30px;
}
.product-right>div .product-right-img::before {
  content: "";
  display: block;
  padding-top: 76.0115607%;
}
.product-right>div>h1 {
  display: block;
  overflow: hidden;
  line-height: 32px;
  font-size: 20px;
  color: #3e3e3e;
}
.product-right>div .product-right-text {
  display: block;
  overflow: hidden;
  line-height: 30px;
  font-size: 14px;
  color: #525252;
  margin: 15px 0;
}
.product-right>div .product-right-more {
  display: block;
  overflow: hidden;
}
.product-right>div .product-right-more>a {
  width: 140px;
  float: left;
  height: 44px;
  border-radius: 5px;
  background-color: #eee;
  display: flex;
  align-items: center;
  align-content: center;
  justify-content: center;
  font-size: 14px;
  color: #585858;
}
.product-right>div .product-right-more>a:hover {
  background-color: #ec0913;
  color: #fff;
}

.product-main {
  padding: 50px 0 0 0;
}
.product-main .main-content {
  /*background-color: #f7f7f7;*/
  padding: 60px 0;
  box-shadow: 10px 0 0 rgba(0, 0, 0, 0.2);
}
.product-details {
  display: block;
  overflow: hidden;
}
.product-details-left {
  width: 41.75%;
  float: left;
}
.product-details-left>img {
  display: block;
  max-width: 100%;
  height: auto;
  margin: 0 auto;
}

.product-details-right {
  width: 56.75%;
  float: right;
}
.product-details-right>h1 {
  display: block;
  overflow: hidden;
  font-size: 24px;
  color: #212121;
  line-height: 36px;
}
.product-details-right .product-details-text {
  display: block;
  overflow: hidden;
  line-height: 24px;
  font-size: 14px;
  color: #6a6969;
  margin: 20px 0;
}
.product-details-right .product-details-content {
  display: block;
  overflow: hidden;
  margin-top: 15px;
  font-size: 14px;
  line-height: 28px;
  color: #6a6969;
}
.product-details-right .product-details-content table{
  max-width: 100%;
	height: auto;
}
.product-details-right .product-details-content table td{
  border: 1px #ccc solid;
}
.product-details-right .product-details-content>b {
  color: #313131;
}

@media (max-width: 1240px) {
  .menu-list>li {
    width: calc(16.666666% - 6px);
  }
  .product-content {
    margin-top: 50px;
  }
  .product-right {
    padding: 35px 50px;
  }
  .product-right>div .product-right-img {
    width: 45%;
  }

  .product-main .main-content {
    padding: 50px 0;
  }
}

@media (max-width: 991px) {
  .menu-list>li {
    width: calc(25% - 6px);
  }
  .product-content {
    margin-top: 30px;
    flex-wrap: wrap;
  }
  .product-right {
    padding: 30px;
  }
  .product-right>div .product-right-img {
    width: 30%;
    margin-left: 15px;
  }

  .product-main .main-content {
    padding: 30px 0;
  }
}

@media (max-width: 767px) {
  .menu-list {
    display: none;
    margin: 0;
    width: 100%;
    transition: initial;
  }
  .menu-list>li {
    width: 100%;
    margin: 2px 0 0 0;
  }
  .menu-list>li>a {
    height: 40px;
    line-height: 38px;
    border-radius: 20px;
    font-size: 14px;
  }

  .product-box {
    padding: 10px;
  }
  .product-box .product-img {
    width: 100%;
  }
  .product-box .product-text-box {
    width: 100%;
    margin-top: 10px;
  }
  .product-box .product-text-box>h1 {
    line-height: 30px;
    font-size: 16px;
  }
  .product-box .product-text-box>div {
    margin-top: 10px;
  }
  .product-content {
    margin-top: 10px;
  }
  .product-nav {
    width: 100%;
    border-right: none;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
  }
  .product-nav>li {
    width: calc(50% - 1px);
    float: left;
    border-bottom: 1px solid #c1c1c1 !important;
  }
  .product-nav>li>a {
    height: 40px;
    line-height: 40px;
    padding: 0 10px;
    font-size: 14px;
  }
  .product-right {
    width: 100%;
    padding: 10px 0;
  }
  .product-right>div .product-right-img {
    width: 100%;
    margin-left: 0;
    float: none;
  }
  .product-right>div>h1 {
    line-height: 24px;
    font-size: 16px;
  }
  .product-right>div .product-right-text {
    line-height: 24px;
    margin: 10px 0;
  }
  .product-right>div .product-right-more>a {
    width: 120px;
    height: 30px;
  }


  .product-main .main-content {
    padding: 15px 0;
  }
  .product-details-left,
  .product-details-right {
    width: 100%;
  }
  .product-details-right>h1 {
    font-size: 16px;
    margin-top: 15px;
  }
  .product-details-right .product-details-text {
    font-size: 14px;
    line-height: 24px;
    margin: 10px 0;
  }
  .product-details-right .product-details-content {
    font-size: 14px;
    line-height: 24px;
  }
}
/* END-产品展示 */

/* 技术支持 */
.technology-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.technology-list>li {
  width: calc(50% - 12px);
  float: left;
  margin-bottom: 30px;
}
.technology-list>li>a {
  display: block;
  overflow: hidden;
  border: 1px solid #dfdfdf;
  padding: 25px;
}
.technology-list>li>a>h1 {
  display: block;
  overflow: hidden;
  line-height: 38px;
  font-size: 18px;
  color: #252525;
  padding-bottom: 12px;
  border-bottom: 1px solid #dcdcdc;
}
.technology-list>li>a .technology-text {
  display: block;
  overflow: hidden;
  height: 48px;
  line-height: 24px;
  margin: 20px 0;
  font-size: 14px;
  color: #6c6c6c;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}
.technology-list>li>a .technology-more {
  display: block;
  overflow: hidden;
  margin-top: 5px;
  width: 106px;
  height: 40px;
  line-height: 40px;
  text-align: center;
  border-radius: 20px;
  background-color: #f5f5f5;
  font-size: 14px;
  color: #4f4f4f;
}
.technology-list>li>a:hover {
  border-color: #ec0913;
}
.technology-list>li>a:hover>h1 {
  color: #ec0913;
}
.technology-list>li>a:hover .technology-more {
  background-color: #ec0913;
  color: #fff;
}

@media (max-width: 767px) {
  .technology-list>li {
    width: 100%;
    margin-bottom: 10px;
  }
  .technology-list>li>a {
    padding: 10px;
  }
  .technology-list>li>a>h1 {
    line-height: 30px;
    font-size: 16px;
    padding-bottom: 5px;
  }
  .technology-list>li>a .technology-text {
    margin: 5px 0;
  }
}
/* END-技术支持 */

/* 新闻资讯 */
.main-content .news-list {
  margin: 0;
}

.news-details {
  display: block;
  overflow: hidden;
}
.news-details-title {
  display: block;
  overflow: hidden;
  text-align: center;
  font-size: 20px;
  color: #333;
  font-weight: bold;
  line-height: 30px;
}
.news-details-time {
  display: block;
  overflow: hidden;
  text-align: center;
  font-size: 14px;
  color: #666;
  line-height: 1.1;
  padding: 15px 0;
  border-bottom: 1px dashed #ccc;
}
.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: 767px) {

  .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;
  justify-content: space-between;
}
.contact-text {
  width: 40%;
  float: left;
  background-color: #ec0913;
  color: #fff;
  padding: 30px;
  font-size: 16px;
  line-height: 36px;
}
.contact-map {
  width: 60%;
  float: left;
  overflow: hidden;
  height: 776px;
  border: none;
}

@media (max-width: 767px) {
  .contact-text {
    width: 100%;
    padding: 15px;
    font-size: 14px;
    line-height: 24px;
  }
  .contact-map {
    width: 100%;
    height: 300px;
  }
}
/* END-联系我们 */