﻿@charset "UTF-8";
/* 初始化所有样式 */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Helvetica, "PingFang SC", "Microsoft Yahei", sans-serif;
  font-size: 14px;
}

a {
  text-decoration: none;
  color: #181818;
}

img {
  width: 100%;
  display: block;
}

:root {
  --primary-color: #ff434f;
  --secondary-color: #e3e3e3;
  --text-color-lightest: #e7e9ec;
  --text-color-darker: #2e2e2e;
  --text-color-dark: #494949;
  --text-color-gray: #8b8b8b;
  --text-color-dark-gray: #727272;
  --text-color-light-gray: #c6c6c6;
  --backdrop-color: rgba(42, 42, 42, 0.7);
}

/* 轮播图 */
.glide {
  position: relative;
  z-index: 50;
}

.glide__slide img {
  width: 100%;
  height: 100%;
  /* 自动等比例缩放 */
  object-fit: cover;
  display: block;
}

.glide__slide {
  display: flex;
  align-items: center;
  justify-content: center;
}

.slide-caption.left {
  max-width: 80vw;
  text-align: left;
}

.slide-caption > * {
  opacity: 0;
}

.explore-btn {
  padding: 14px 32px;
  background-color: var(--primary-color);
  border: 0;
  border-radius: 4px;
  color: var(--text-color-lightest);
  font-size: 18px;
  cursor: pointer;
  outline: none;
}

/* 内容区域 */
  /* 通用样式 */
  .content-wrapper {
    /* 一维排版 */
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    margin-top: 45px;
  }
  
  section {
    /* 二维 */
    display: grid;
    /* 每个列的对齐方式 */
    justify-items: center;
    
      
  }
  
  .section-bg {
    position: relative;
  }
  
  .section-bg::before {
    content: "";
    display: block;
    position: absolute;
    background-color: #f9fbfb;
    width: 100vw;
    height: 100%;
    z-index: -1;
  }
  
  .title1 {
    font-size: 34px;
    color: #c81b1b;
  }
  
  .title1::after {
    content: "";
    display: block;
    width: 80%;
    height: 4px;
    background-color: var(--primary-color);
    margin-top: 14px;
    transform: translateX(10%);
  }
  
  .intro {
    margin: 28px 0 40px 0;
    /* text-indent: 2em; */
    font-size: 18px;
    color: var(--text-color-dark-gray);
  }
  
  /* 产品体系 */
.team-intro {
  margin-top: 45px;
  
  max-width: 1200px;
}.hp-tab-newprd {
	width: 1200px;
	height: 700px;
	overflow: hidden;
	position: relative;
	background-position: 0 0;
}
	.hp-tab-newprd .j-sw-nav {
	height: 60px;
	overflow: hidden;
	position: relative;
	display: flex;
    justify-content: center;
}
	.hp-tab-newprd .j-sw-nav li {
	float:left;
}
	.hp-tab-newprd .j-sw-nav li a {
	position: relative;
	display: block;
	width: 200px;
	height: 60px;
	line-height: 25px;
	text-align: center;
	text-transform: uppercase;
	color: #464646;
	word-wrap: break-word;
	overflow: hidden;
	outline: 0;
	cursor:pointer;
	font-family: "微软雅黑";
	font-size: 14px;
	font-weight: bolder;
}
	.newprd-s1, .newprd-s1 a { z-index: 20 }
	.newprd-s2, .newprd-s2 a { z-index: 19 }
	.newprd-s3, .newprd-s3 a { z-index: 18 }
	.newprd-s4, .newprd-s4 a { z-index: 17 }
	.newprd-s5, .newprd-s5 a { z-index: 16 }
	.newprd-s6, .newprd-s6 a { z-index: 15 }
	.newprd-s7, .newprd-s7 a { z-index: 14 }
	
	.hp-tab-newprd .j-sw-nav .on { position: relative; z-index: 99 }
	.hp-tab-newprd .j-sw-nav li a:hover, .hp-tab-newprd .j-sw-nav .on a {
	z-index: 99;
	color: #ff0000;
	cursor: pointer;
}

	.hp-tab-newprd .j-sw-c ul{ zoom:1; overflow:hidden; width:1200px;  }
	.hp-tab-newprd .j-sw-c li { float: left; margin-right: 50px; display:inline; }
	.hp-tab-newprd .j-sw-c li img {
	width: 1200px;
	height: 531px;
}
    .hp-tab-newprd .j-sw-c li .title_1 {
		width:1200px;
	color: #353535;
	height:121px;
	
 }
	.hp-tab-newprd .j-sw-c li .title1_1{
	
	font-family: "微软雅黑";
	font-size: 30px;
	color: #c81b1b;
}
.hp-tab-newprd .j-sw-c li .title1_1 a{
	
	font-family: "微软雅黑";
	font-size: 30px;
	color: #c81b1b;
}

	.hp-tab-newprd .j-sw-c li .title3{
	line-height:25px;
	font-family: "微软雅黑";
	font-size: 16px;
	color: #363636;
	
} 
.features1 {
  display: grid;
  /* 重复几次，重复的值  1fr：容器宽度的1/3*/
  grid-template-columns: repeat(4, 1fr);
  
  column-gap: 5vw;
}

.feature1 {
  display: grid;
  grid-template-areas:
    "icon title"
    "icon content";
  grid-template-columns: 60px 1fr;
 
}

.feature1 i.fas {
  grid-area: icon;
  font-size: 34px;
  color: var(--primary-color);
}

.feature-title1 {
  grid-area: title;
  font-size: 18px;
  color: var(--text-color-darker);
}

.feature-content1 {
  grid-area: content;
  color: var(--text-color-gray);
}

 .gd{
   min-width: 1200px;
 }
  .Seconds{
    max-width: unset;
    width: 100vw;
    height: 100%;
    background:url(../images/Second_bj.jpg) repeat-x;
    background-size: cover;
    background-position: center;
    grid-template-columns: repeat(4, minmax(auto, 220px));
    justify-content: center;
    align-items: center;
    /* 子元素绝对定位时需要有相对的父级元素 */
    position: relative;
    z-index: 20;
    display: block;

  }

  
/* 产品展示 */
.showcases {
  max-width: unset;
  padding: 0px;
    
  }
  
  .filter-btns {
    margin-top: 30px;
    margin-bottom: 38px;
  }
  
  .filter-btn {
    margin: 0 7px;
    background-color: var(--secondary-color);
    border: 0;
    color: var(--text-color-dark-gray);
    padding: 8px 18px;
    border-radius: 4px;
    cursor: pointer;
    transition: 0.4s;
  }
  
  .filter-btn:focus,
  .filter-btn:active {
    outline: none;
  }
  
  .filter-btn.active,
  .filter-btn:hover {
    background-color: var(--primary-color);
    color: white;
  }
  
  .showcases .cases {
    width: 100%;
  }
  
  .showcases .case-item {
    width: 24%;
    height: 20vw;
    overflow: hidden;
    margin-left: 0px;
    border: 10px solid #fff;
  }
  .test11111{
	  border: 1px solid #999;
  }
  
  .case-item img {
    height: 100%;
    object-fit: cover;
    display: block;
    
  }
  
  /* 资讯公告 */
.company-activities {
  margin-top: 80px;
  max-width: 1200px;
}

.activities {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  column-gap: 24px;
}

.activity {
  box-shadow: 0px 0px 24px rgba(0, 0, 0, 0.1);
  padding: 24px;
  transition: 0.4s;
  margin-left: 10px;
}

.act-image-wrapper {
  height: 255px;
  overflow: hidden;
  margin: -24px;
  margin-bottom: 0;
}

.act-image-wrapper img {
  min-height: 300px;
  object-fit: cover;
  display: block;
}

.activity .meta {
  margin-top: 20px;
  margin-bottom: 12px;
  color: var(--text-color-light-gray);
  font-size: 12px;
  display: flex;
}

.activity .meta > p:last-child {
  margin-left: 36px;
}

.act-title {
  color: var(--text-color-dark);
  font-size: 18px;
  margin-bottom: 16px;
}

.activity article {
  color: var(--text-color-gray);
  letter-spacing: 0.54px;
  line-height: 24px;
}

.read-more-btn {
  border: 0;
  color: white;
  background-color: var(--primary-color);
  padding: 6px 14px;
  margin-top: 24px;
  border-radius: 4px;
}

.activity:hover {
  transform: translateY(-20px) scale(1.05);
  box-shadow: 0px 0px 36px rgba(0, 0, 0, 0.1);
}

/* 关于我们 */
.about-us {
  margin-top: 90px;
  padding-bottom: 32px;
}

.features {
  display: grid;
  /* 重复几次，重复的值  1fr：容器宽度的1/2*/
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: 126px 126px;
  column-gap: 5vw;
  min-height: 504px;
}

.feature {
  
  grid-template-areas:
    "icon title"
    "icon content";
  grid-template-columns: 679px 1fr;
  grid-template-rows: 1fr 2fr;
  display: block;
  
  
}

.wz{
  line-height: 2.2em;
  font-size: 16px;
  font-family: "微软雅黑";
  display: block;
  height: 504px;
  background:#c81b1b;
  color: #fff;
}
.wz1{
  width: 420px;
  margin-left: 100px;
  padding-top: 25px;
  text-align: justify;
  text-indent: 30px;
}
.biaoti{
	    position: absolute;
    bottom: 0px;
    left: 0px;
    right: 0px;
    text-align: center;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    padding: 10px 0px;
    /*background: rgba(255,255,255,.1);*/
}
.imgdddd{
	transition: all 0.6s;  
}
.case-item a:hover{
	color: red;
}
.case-item img:hover{
	transform: scale(1.4);  
}
.wztp{
  min-height: 300px;
  object-fit: cover;
  display: block;
  width: 100%;
  margin-left: 20px;
  height: 100%;
}

  /* 工程应用 */
.service {
max-width: 1200px;
  padding-top: 90px;
}

.services {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  column-gap: 24px;
}

.service-item {
  background-color: white;
  box-shadow: 0px 0px 24px rgba(0, 0, 0, 0.2);
  text-align: center;
  /*padding-bottom: 28px;*/
  transition: 0.4s;
  display: grid;
  justify-items: center;
  margin-right: 40px;
  margin-bottom: 20px;

  width: 100%;
  height: 240px;
  box-shadow: 0px 0px 18px rgba(0, 0, 0, 0.06);
}
.service-item .name1{
	padding: 10px 0px;
}
.service-item .name1 a:hover{
	color: red;
}
.profile-image1 {
  overflow: hidden;
   /*margin-left:20px;*/
}

.profile-image1 img {
  
  height: 224px;
  object-fit: cover;
  object-position: top center;
  display: block;
  transition: all 0.6s;
}
.profile-image1 img:hover{
	transform: scale(1.4); 
}

.team-member .name1 {
  margin-top: 18px;
  font-size: 18px;
  font-weight: 500;
  color: var(--text-color-dark);
  margin-top: 20px;
}

.team-member:hover {
  transform: translateY(-20px) scale(1.05);
  box-shadow: 0px 0px 36px rgba(0, 0, 0, 0.1);
}


/* 底部信息 */
footer {
  margin-top: 124px;
  background-color: #181818;
  display: grid;
  justify-items: center;
  padding-top: 72px;
  padding-bottom: 24px;
}

.footer-menus {
  width: 100%;
  max-width: 1280px;
  display: grid;
  grid-template-columns: 2fr repeat(4, 1fr);
  padding: 0 80px;
  position: relative;
}

.menu-title {
  font-size: 16px;
  color: white;
  font-weight: 500;
  margin-bottom: 20px;
}

.contact-us {
  justify-self: start;
  color: var(--text-color-lightest);
}

.contact-us p:not(:first-child) {
  padding-bottom: 16px;
}

.menu-items li {
  list-style: none;
  padding-bottom: 8px;
}

.menu-items li a {
  text-decoration: none;
  font-weight: 300;
  color: var(--text-color-lightest);
}

.icp-info {
  margin-top: 24px;
  margin-bottom: 16px;
}

.icp-info,
.rights {
  grid-column: 1 / -1;
  justify-self: center;
  color: white;
}

.icp-info a,
.rights a {
  color: #fff;
}

.scroll-to-top {
  display: none;
  position: relative;
  z-index: 300;
}

.scroll-to-top a {
  width: 32px;
  height: 32px;
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--primary-color);
  color: white;
  text-decoration: none;
  position: fixed;
  bottom: 60px;
  right: 30px;
}

@media (max-width: 1200px) {
  header nav {
    display: none;
  }
  header .burger {
    display: block;
    position: relative;
    width: 20px;
    height: 6px;
    justify-self: end;
    cursor: pointer;
  }
  .burger-line1,
  .burger-line2,
  .burger-line3 {
    width: 20px;
    height: 2px;
    background-color: #080808;
  }
  .burger-line1 {
    position: absolute;
    top: -6px;
  }
  .burger-line3 {
    position: absolute;
    top: 6px;
  }
  header.open nav {
    display: grid;
    position: absolute;
    left: 0;
    top: 0;
    width: 100vw;
    height: 100vh;
    background-color: white;
    grid-auto-rows: max-content;
    justify-items: end;
    padding: 0 40px;
    opacity: 0;
    animation: slideDown 0.6s ease-out forwards;
    width: 100%;
    height: 100%;
  }
  header.open nav > * {
    font-size: 18px;
    margin: 4px 0;
    opacity: 0;
    color: var(--text-color-darker);
    animation: showMenu 0.5s linear forwards 0.4s;
  }
  header.opem nav > i.fas {
    margin-top: 10px;
  }
  header.open .burger-line1,
  header.open .burger-line2,
  header.open .burger-line3,
  header.sticky .burger-line1,
  header.sticky .burger-line2,
  header.sticky .burger-line3 {
    background-color: var(--text-color-darker);
    transform: 0.4s ease;
  }
  header.open .burger-line1 {
    transform: rotate(45deg) translate(3px, 5px);
  }
  header.open .burger-line2 {
    transform: translateX(5px);
    opacity: 0;
  }
  header.open .burger-line3 {
    transform: rotate(-45deg) translate(3px, -5px);
  }
  header.open .logo {
    z-index: 40;
    color: var(--text-color-darker);
  }
  @keyframes slideDown {
    from {
      height: 0;
      opacity: 0;
    }
    to {
      height: 100vh;
      padding-top: 80px;
      opacity: 1;
    }
  }
  @keyframes showMenu {
    from {
      opacity: 0;
      transform: translateY(-1vh);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }
  .service-item .service-title {
    font-size: 20px;
  }
  .service-item .service-content {
    font-size: 14px;
    line-height: 24px;
  }
  .team-members {
    grid-template-columns: repeat(2, 1fr);
    row-gap: 36px;
    column-gap: 6vw;
  }
  .activities {
    grid-template-columns: repeat(2, 1fr);
    row-gap: 36px;
  }
}

@media (max-width: 992px) {
  .slide-caption h1 {
    font-size: 48px;
  }
  .slide-caption h3 {
    font-size: 18px;
  }
  .features,
  .services {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: unset;
  }
  .data-section {
    grid-template-columns: repeat(2, minmax(200px, auto));
    padding: 24px 0;
    height: auto;
    row-gap: 24px;
    background-size: 200%;
  }
  .showcases .case-item {
    width: calc(100vw/3);
  }
  footer {
    margin-top: 14px;
    padding-top: 20px;
    padding-bottom: 20px;
  }
  .icp-info {
    margin: 0px;
  }
  .footer-menu {
    display: none;
  }
}

@media (max-width: 768px) {
  .header {
    padding: 0px 20px;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  .header nav {
    height: 79px;
  }
  .header nav a {
    line-height: 79px;
  }
  section,
  .footer-menus {
    padding: 0 40px;
  }
  .footer-menus {
    grid-template-columns: 2fr repeat(2, 1fr);
    row-gap: 24px;
  }
  .contact-us {
    grid-row: 1 / 3;
  }
  .footer-menus {
    text-align: right;
  }
  .activities {
    grid-template-columns: 1fr;
    row-gap: 36px;
  }
  .data-section {
    grid-template-columns: 1fr;
    background-size: 300%;
  }
  .team-members {
    grid-template-columns: minmax(200, 400);
  }
  .features,
  .services {
    grid-template-columns: 1fr;
  }
  .showcases .case-item {
    width: calc(100vw /2);
    height: 30vw;
  }
  footer {
    margin-top: 14px;
    padding-top: 20px;
    padding-bottom: 20px;
  }
  .icp-info {
    margin: 0px;
  }
  .footer-menu {
    display: none;
  }
}

@media (max-width: 576px) {
  .header {
    padding: 0px 20px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  .header nav {
    height: 59px;
  }
  .header nav a {
    line-height: 59px;
  }
  .slide-caption h1 {
    font-size: 28px;
  }
  .slide-caption h3 {
    font-size: 14px;
  }
  .explore-btn {
    font-size: 14px;
    padding: 8px 18px;
  }
  .showcases .case-item {
    width: 100vw;
    height: 60vw;
  }
  .footer-menus {
    grid-template-columns: 1fr;
  }
  .footer-menus {
    justify-self: start;
    text-align: left;
  }
  footer {
    margin-top: 14px;
    padding-top: 20px;
    padding-bottom: 20px;
  }
  .icp-info {
    margin: 0px;
  }
  .footer-menu {
    display: none;
  }
}

.name1 {
  padding: 0px 10px;
  box-sizing: border-box;
}

/*在线客服*/
body{background:#F4F5F9;}
a:hover{color:#fc8080;text-decoration:none;}
a:-webkit-any-link{text-decoration:none;}
.container{width:1200px;margin:0 auto;padding:0;}
.container:after{content:"";display:block;clear:both;}
.clearfix:after{content:"";display:block;clear:both;}
.fl{float:left;}
.fr{float:right;}
.tl{text-align:left;}
.tr{text-align:right;}
.tc{text-align:center;}
.color-white{color:white!important;}
.red{color:#fc8080!important;}
.fz12{font-size:12px;}
.fz14{font-size:14px;}
.wfs{width:100%;position:relative;}
.p_r{position:relative;}


/*悬浮链接*/
.suspension{position:fixed;z-index:55;right:0;bottom:85px;width:70px;height:240px;}
.suspension-box{position:relative;float:right;}
.suspension .a{display:block;width:44px;height:44px;background-color:#353535;margin-bottom:4px;cursor:pointer;outline:none;}
.suspension .a.active,
.suspension .a:hover{background:#F05352;}
.suspension .a .i{float:left;width:44px;height:44px;background-image:url(../images/side_icon.png);background-repeat:no-repeat;}
/* .suspension .a-service .i{background-position:0 0;} */
.suspension .a-service .i{width:20px;height:20px;margin-top:12px;margin-left:12px;background-image:url(../images/suspension-bg.png);background-repeat:no-repeat;background-position:0 0;}
.suspension .a-service-phone .i{width:20px;height:20px;margin-top:12px;margin-left:12px;background-image:url(../images/suspension-bg.png);background-repeat:no-repeat;background-position:-27px 0;}
.suspension .a-qrcode .i{background-position:-44px 0;}
.suspension .a-cart .i{background-position:-88px 0;}
.suspension .a-top .i{background-position:-132px 0;}
.suspension .a-top{background:#D2D3D6;display:none;}
.suspension .a-top:hover{background:#c0c1c3;}
.suspension .d{display:none;width:223px;background:#fff;position:absolute;right:67px;min-height:90px;border:1px solid #E0E1E5;border-radius:3px;box-shadow:0px 2px 5px 0px rgba(161, 163, 175, 0.11);}
.suspension .d .arrow{position:absolute;width:8px;height:12px;background:url(../images/side_bg_arrow.png) no-repeat;right:-8px;top:31px;}
.suspension .d-service{top:0;}
.suspension .d-service-phone{top:34px;}
.suspension .d-qrcode{top:78px;}
.suspension .d .inner-box{padding:8px 22px 12px;}
.suspension .d-service-item{border-bottom:1px solid #eee;padding:14px 0;}
.suspension .d-service .d-service-item{border-bottom:none;}
.suspension .d-service-item .circle{width:44px;height:44px;border-radius:50%;overflow:hidden;background:#F1F1F3;display:block;float:left;}
.suspension .d-service-item .i-qq{width:44px;height:44px;background:url(../images/side_con_icon03.png) no-repeat center 15px;display:block;transition:all .2s;border-radius:50%;overflow:hidden;}
.suspension .d-service-item:hover .i-qq{background-position:center 3px;}
.suspension .d-service-item .i-tel{width:44px;height:44px;background:url(../images/side_con_icon02.png) no-repeat center center;display:block;}
.suspension .d-service-item h3{float:left;width:112px;line-height:44px;font-size:15px;margin-left:12px;}
.suspension .d-service-item .text{float:left;width:112px;line-height:22px;font-size:15px;margin-left:12px;}
.suspension .d-service-item .text .number{font-family:Arial,"Microsoft Yahei","HanHei SC",PingHei,"PingFang SC","Helvetica Neue",Helvetica,Arial,"Hiragino Sans GB","Heiti SC","WenQuanYi Micro Hei",sans-serif;}
.suspension .d-service-intro{padding-top:10px;}
.suspension .d-service-intro p{float:left;line-height:27px;font-size:12px;width:50%;white-space:nowrap;color:#888;}
.suspension .d-service-intro i{background:url(../images/side_con_icon01.png) no-repeat center center;height:27px;width:14px;margin-right:5px;vertical-align:top;display:inline-block;}
.suspension .d-qrcode{text-align:center;}
.suspension .d-qrcode .inner-box{padding:20px 0;}
.suspension .d-qrcode p{font-size:16px;color:#93959c;}
/*在线客服 end*/

.link-box{
	    margin: 20px auto;
    max-width: 1200px;
    text-align: left;
    display: flex;
    flex-shrink: 0;
}
.link-title{
	font-weight: 700;
    margin-right: 10px;
}
.links{}