@charset "utf-8";
/* CSS Document */
@import "normalize.css";

@font-face {
  font-family: GARAGEGOTHIC;
  src: url(../images/GARAGEGOTHIC-BOLD.OTF);
}

@font-face {
  font-family: BIRWOODSSK;
  src: url(../images/BIRWOODSSK.TTF);
}

* {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  padding: 0;
  margin: 0;
}

body {
  font-size: 15px;
  font-weight: 400;
  color: #333333;
  background: #ffffff;
  font-family: '微软雅黑', sans-serif;
  overflow-x: hidden;
  transition: all .4s;
  -webkit-transition: all .4s;
}

ul, li, ol, dl, dt, dd, p, h1, h2, h3, h4, h5, h6 {
  list-style: none;
  padding: 0;
  margin: 0;
  font-weight: normal;
  font-size: 16px;
}

input, textarea {
  outline: none;
}

::-webkit-input-placeholder {
  color: #bdbdbd;
}

::-moz-placeholder {
  color: #bdbdbd;
}

:-ms-input-placeholder {
  color: #bdbdbd;
}

a {
  font-size: 15px;
  display: block;
  color: #666666;
  text-decoration: none;
  transition: all 0.56s ease;
}

a:hover {
  color: #E45800;
}

.clearfix:after {
  content: "";
  height: 0;
  line-height: 0;
  display: block;
  visibility: hidden;
  clear: both
}

.clearfix {
  zoom: 1;
}

.clear {
  clear: both
}

/*图片放大*/
div.imgZoom {
  box-sizing: border-box;
  overflow: hidden;
  text-align: center;
}

.imgZoom img {
  transition: all .4s;
  -webkit-transition: all .4s;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
}

.imgZoom:hover img {
  transform: scale(1.1, 1.1);
  -webkit-transform: scale(1.1, 1.1);
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
}

/*图片旋转*/
.imgRotate img {
  -webkit-transition: -webkit-transform 2s ease-out;
  -moz-transition: -moz-transform 2s ease-out;
  -o-transition: -o-transform 2s ease-out;
  -ms-transition: -ms-transform 2s ease-out;
}

.imgRotate:hover img {
  -webkit-transform: rotateZ(360deg);
  -moz-transform: rotateZ(360deg);
  -o-transform: rotateZ(360deg);
  -ms-transform: rotateZ(360deg);
  transform: rotateZ(360deg);
}

/* 水平镜像翻转 */
.mirrorRotateLevel img {
  transition: all 1s;
  -webkit-transition: all 1s;
}

.mirrorRotateLevel:hover img {
  -moz-transform: scaleX(-1);
  -webkit-transform: scaleX(-1);
  -o-transform: scaleX(-1);
  transform: scaleX(-1); /*兼容IE*/
}

/*按钮鼠标经过变暗*/
.wlp-button:hover {
  filter: alpha(opacity=90);
  background-image: -webkit-linear-gradient(transparent, rgba(0, 0, 0, .05) 40%, rgba(0, 0, 0, .1)) !important;
  background-image: linear-gradient(transparent, rgba(0, 0, 0, .05) 40%, rgba(0, 0, 0, .1)) !important;
}

/*鼠标经过有阴影*/
.wlp-shadow:hover {
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.3) !important;
}

/*鼠标经过上浮并加阴影*/
.wlp-flow-shadow {
  -webkit-transition: all .3s;
  transition: all .3s;
  cursor: pointer;
}

.wlp-flow-shadow:hover {
  transform: translate3d(0, -8px, 0);
  -webkit-transform: translate3d(0, -8px, 0);
  -webkit-box-shadow: 0 0 10px #e9e9e9;
  box-shadow: 0 0 10px #e9e9e9;
}

/*图片经过遮罩*/
.wlp-filter:hover img {
  filter: alpha(opacity=70);
  -moz-opacity: 0.2;
  -webkit-opacity: 0.7;
  opacity: 0.7;
}

img {
  display: inline-block;
  vertical-align: middle;
  max-width: 100%;
  width: auto;
  max-height: 100%;
  height: auto;
  border: none;
}

.w1400 {
  width: 1400px;
  margin: 0 auto;
}

header {

}

.logo {
  float: left;
  line-height: 90px;
}

/*nav*/
nav {
  float: right;
  line-height: 90px;
}

nav ul li {
  float: left;
  width: 100px;
  text-align: center;
  position: relative;
  margin: 0 7px;
}

nav ul li a {
  color: black;
}

nav ul li a:hover {
  color: black;
}

nav ul li:after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  height: 4px;
  width: 0;
  background: #E45800;
  transition: all 0.56s ease;
}

nav ul li:hover:after, nav ul li.on:after {
  width: 100px;
  transition: all 0.56s ease;
}

/*language*/
.language {
  position: relative;
  margin-top: 32px;
  float: right;
}

.language .lag {
  display: block;
  cursor: pointer;
  background: url(../images/icon01.png) 15px center no-repeat;
  padding-left: 46px;
  min-height: 26px;
  line-height: 26px;
  position: relative;
}

.language .lag:after {
  position: absolute;
  content: '';
  width: 1px;
  height: 50px;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  background: #CCCCCC;
}

.language .lag span {
  display: inline-block;
  font-family: '宋体', serif;
  transform: rotate(90deg);
  margin-left: 10px
}

.dropdown-m {
  position: absolute;
  z-index: 99;
  margin-top: 10px;
  width: 100%;
  text-align: center;
  display: none;
  box-shadow: 0 5px 5px rgba(0, 0, 0, 0.1);
  background: #fff;
  left: 0
}

.dropdown-m a {
  text-decoration: none;
  color: #1d1d1d;
  padding: 10px;
  width: auto;
  display: block;
}

.dropdown-m a:hover {
  background: #E45800;
  color: #fff;
}

/*banner*/
.banner img {
  width: 100%;
  object-fit: cover;
  min-height: 140px;
}

.banner .swiper-pagination-bullet {
  width: 14px;
  height: 14px;
  border-radius: 100%;
  border: 1px solid #ffffff;
  background: rgba(0, 0, 0, 0);
  opacity: 1;
  transition: all 0.3s ease;
}

.banner .swiper-pagination-bullet-active {
  border-color: #E45800;
  background: #E45800;
  transition: all 0.3s ease;
}

.innerBanner {
  position: relative;
}

/*indexTit*/
.indexTit {
  text-align: center;
}

.indexTit .indexTitEn {
  white-space: nowrap;
  font-size: 48px;
  font-family: Arial, serif;
  color: rgba(102, 102, 102, .1);
  text-transform: uppercase;
  transform: translateY(50%);
}

.indexTit .indexTitZh {
  font-size: 36px;
  color: #E45800;
  position: relative;
  top: -50%;
}

.indexTit .indexTitTxt {
  line-height: 26px;
  margin-top: 12px;
}

.bannerTit {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}

.bannerTit .indexTitEn {
  color: rgba(255, 255, 255, .2);
  opacity: 1;
}

.bannerTit .indexTitZh {
  color: white;
}

/*iPro*/
.iPro {
  background: #EFEFEF;
}

.iPro .iProTabBc {
  background: url(../images/iProBc.jpg) no-repeat center;
  background-size: cover;
  width: 100%;
  height: 120px;
  margin-bottom: 10px;
}

.iPro .iProTab {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  height: 100%;
}

.iPro .iProTab li {
  width: 20%;
  float: left;
  text-align: center;
  cursor: pointer;
  color: #ffffff;
  position: relative;
  height: 100%;
  padding-top: 20px;
}

.iPro .iProTab li .iProName {
  margin-top: 18px;
}

.iPro .iProTab li:after {
  content: '';
  position: absolute;
  background: url(../images/iProIcon06.png) no-repeat center;
  background-size: cover;
  width: 23px;
  height: 9px;
  bottom: -9px;
  left: 50%;
  transform: translateX(-50%);
  opacity: 0;
  transition: all 0.5s ease;
}

.iPro .iProTab li.on, .iPro .iProTab li:hover {
  background: #E45800;
  transition: all 0.5s ease;
}

.iPro .iProTab li.on:after, .iPro .iProTab li:hover:after {
  opacity: 1;
  transition: all 0.5s ease;
}

.iProList {
  padding-top: 60px;
}

.iProList li {
  display: none;
}

.iProList li.on {
  display: block;
}

.iProList .iProTxt {
  float: left;
  width: 48%;
  max-width: 670px;
}

.iProList .iProImg {
  float: right;
  width: 52%;
}

.iProList .iProName {
  font-size: 32px;
}

.iProList .iProData {
  background: url(../images/iProIcon07.png) no-repeat left;
  background-size: cover;
  width: 100%;
  height: 96px;
  margin: 20px 0;
  display: flex;
  align-items: center;
  justify-content: left;
  padding-left: 20px;
  padding-right: 40px;
  font-size: 18px;
  line-height: 26px;
}

.iProList .iProData .iProPower {
  color: #E45800;
  margin-left: 100px;
}

.iProList .iProTrait {
  font-size: 14px;
  line-height: 26px;
  color: #666666;
}

.iProList a.more {
  margin-top: 20px;
}

a.more {
  width: 150px;
  line-height: 50px;
  text-align: center;
  border: 1px solid #999999;
}

/*advantages*/

.iProAd {
  background: #EFEFEF;
}

.iProAd ul {
  margin-top: 30px;
  padding-bottom: 80px;
}

.iProAd ul li {
  margin-bottom: 17px
}

.iProAd ul li:nth-child(3) {
  margin-bottom: 0;
}

.iProAd ul li:nth-child(4) {
  margin-bottom: 0;
}

.cd1 {
  border-left: 2px solid #dedede;
  border-top: 2px solid #dedede;
  border-bottom: 2px solid #dedede;
  width: 45.85%;
  float: left;
  position: relative;
  box-sizing: border-box;
  display: block;
}

.cd2 {
  border-right: 2px solid #dedede;
  border-top: 2px solid #dedede;
  border-bottom: 2px solid #dedede;
  width: 48.5%;
  float: right;
  position: relative;
  box-sizing: border-box;
  display: block;
}

.cd3 {
  border-left: 2px solid #dedede;
  border-top: 2px solid #dedede;
  border-bottom: 2px solid #dedede;
  width: 45.85%;
  float: left;
  position: relative;
  box-sizing: border-box;
  display: block;
}

.cd4 {
  border-right: 2px solid #dedede;
  border-top: 2px solid #dedede;
  border-bottom: 2px solid #dedede;
  width: 48.5%;
  float: right;
  position: relative;
  box-sizing: border-box;
  display: block;
}

.coradius1 {
  right: -49px;
  top: -2px;
  position: absolute;
  z-index: 3
}

.coradius2 {
  left: -49px;
  top: -2px;
  position: absolute;
  z-index: 1
}

.cd2 .co-pic {
  width: 55%;
  text-align: center;
  display: inline-block;
}

.cd2 .co-txt {
  width: 44.63%;
  box-sizing: border-box;
  padding-right: 20px
}

.cd3 .co-txt span {
  display: block;
  width: 120%;
}

.co-pic {
  width: 54%;
  text-align: center;
  display: inline-block;
}

.co-txt {
  width: 46%;
  display: inline-block;
  float: right;
  padding: 40px 0 0;
  position: relative;
  z-index: 2
}

.co-txt h3 {
  color: #eb6100;
  font-size: 1.875rem;
}

.co-txt span {
  font-family: Arial, serif;
  font-size: 14px;
  line-height: 26px;
  margin-top: 10px;
  text-transform: uppercase;
  color: #333333;
}

.co-txt hr {
  border: none;
  margin: 12px 0;
  background: #a6a6a6;
  height: 3px;
  width: 32px;
}

/*instant*/
.instant {
  background: url(../images/instant.jpg) no-repeat center;
  background-size: cover;
  width: 100%;
  padding-top: 60px;
  padding-bottom: 100px;
}

.instant .indexTitEn {
  color: #ffffff !important;
  opacity: 0.2;
}

.instant .indexTitTxt {
  color: #ffffff;
}

.instant ul {
  margin-top: 50px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}

.instant ul li {
  width: 18%;
  max-width: 250px;
  height: 270px;
  background: rgba(255, 255, 255, .1);
  text-align: center;
}

.instant ul li .instantIcon {
  margin: 35px 0 15px;
}

.instant ul li .instantName {
  font-size: 26px;
  color: white;
  margin-bottom: 20px;
}

.instant ul li .instantTxt {
  color: rgba(255, 255, 255, .5);;
}

/*select*/
.select {
  padding-top: 60px;
  background: url(../images/select.jpg) no-repeat center;
  background-size: cover;
  width: 100%;
  padding-bottom: 130px;
}

.select ul {
  margin-top: 40px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}

.select ul li {
  width: 23%;
  max-width: 320px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 298px;
}

.select ul li img {
  height: 100%;
  object-fit: cover;
}

.select ul li:after {
  content: '';
  position: absolute;
  background: url(../images/selectIcon01.png) no-repeat center;
  background-size: cover;
  width: 60px;
  height: 60px;
  left: 50%;
  bottom: 0;
  transform: translate(-50%, 50%);
  z-index: 9;
  transition: all 0.5s ease;
}

.select ul li:hover:after {
  background: url(../images/selectIcon02.png) no-repeat center;
  transition: all 0.5s ease;
}

.select ul li .selectImg {
  position: absolute;
  left: 0;
  top: 0;
  z-index: 1;
}

.select ul li .selectImg:after {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0);
  transition: all 0.5s ease;
  left: 0;
  top: 0;
}

.select ul li:hover .selectImg:after {
  background: rgba(0, 0, 0, 0.4);
  transition: all 0.5s ease;
}

.select ul li .selectTxt {
  width: 62.5%;
  position: relative;
  z-index: 2;
  text-align: center;
  font-size: 20px;
  line-height: 32px;
  color: white;
  height: 0;
  overflow: hidden;
  transition: all 0.5s ease;
}

.select ul li:hover .selectTxt {
  height: 96px;
  transition: all 0.5s ease;
}

/*iAbout*/
.kd {
  width: 96%;
  max-width: 1400px;
  margin: 0 auto;
}

.fr {
  float: right;
}

.fl {
  float: left;
}

.in-about {
  position: relative;
  width: 100%;
  min-height: 720px;
}

.in-about .vplay {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 720px;
  z-index: 1;
  overflow: hidden;
}

.in-about .vplay video {
  height: 100%;
  object-fit: cover;
}

.in-about .vplay .wg {
  background: url(../images/wg.png) center no-repeat;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}

.aprofile {
  width: 50%;
  max-width: 620px;
  position: relative;
  z-index: 3;
}

.aprofile .abto {
  background: url(../images/iAbout.png) no-repeat center;
  width: 620px;
  height: 160px;
  box-sizing: border-box;
  line-height: 160px;
  padding-left: 75px;
}


.aprofile .abto h2 {
  color: #fff;
  font-size: 2.5rem;
}

.aprofile .abco {
  background: rgba(255, 255, 255, 0.95);
  box-sizing: border-box;
  width: 620px;
  padding: 50px 75px 50px 50px;
}

.aprofile .abco h3 {
  font-size: 26px;
  line-height: 32px;
  color: #333333;
  font-weight: bold;
}

.aprofile .abco hr {
  border: none;
  margin: 30px 0;
  background: #E45800;
  height: 3px;
  width: 30px;
}

.aprofile .abco p {
  font-size: 1rem;
  color: #767676;
  line-height: 1.875em;
}

.aprofile .abco .more {
  margin-top: 20px;
}

.aprofile .abco .more:hover {
  border-color: #E45800;
}

.anum {
  padding-top: 220px;
  width: 50%;
  box-sizing: border-box;
  position: relative;
  z-index: 3
}

.anum li {
  width: 50%;
  float: left;
  margin-bottom: 80px;
}

.anum li h4 {
  color: #fff;
  font-family: GARAGEGOTHIC, serif;
  font-size: 80px;
  font-weight: normal;
}

.anum li .ed {
  font-size: 14px;
  color: #ffffff;
}

/*serve*/
.serve {
  background: url(../images/serve.jpg) no-repeat center;
  background-size: cover;
  width: 100%;
  padding-top: 60px;
  padding-bottom: 80px;
}

.innerServe {
  background: none !important;
}

.innerServe ul {
  margin-top: 50px;
}

.serve ul {
  margin-top: 50px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}

.serve ul li {
  width: 25%;
  position: relative;
}

.serve ul li .serveIcon {
  display: inline-block;
}

.serve ul li .serveWrap {
  display: inline-block;
  font-size: 24px;
  line-height: 32px;
  color: #666666;
  position: absolute;
  left: 130px;
  top: 50%;
  transform: translateY(-50%);
}

.serve a.more {
  margin: 90px auto 0;
  background: #E45800;
  border-color: #E45800;
  color: white;
}

.serve a.more:hover {
  color: black;
}

/*iNews*/
.iNews {
  padding-top: 60px;
  padding-bottom: 80px;
}

.iNews .iNewsWrap {
  margin-top: 50px;
}

.iNews .iNewsWrap .recommendNews {
  float: left;
  display: flex;
  justify-content: space-between;
  flex-wrap: nowrap;
  height: 100%;
}

.recommendNews .recommendNewsTxt {
  width: 250px;
  background: #E45800;
  padding: 90px 20px;
  position: relative;
}

.recommendNews .recommendNewsTxt .recommendNewsName {
  font-size: 20px;
  line-height: 32px;
  color: #ffffff;
}

.recommendNews .recommendNewsTxt hr {
  width: 30px;
  height: 4px;
  background: #ffffff;
  border: none;
  margin: 20px 0;
}

.recommendNews .recommendNewsTxt .recommendNewsText {
  font-size: 14px;
  line-height: 26px;
  color: rgba(255, 255, 255, .5);
  text-align: left;
}

.recommendNews .recommendNewsTxt .recommendNewsLink {
  position: absolute;
  bottom: 40px;
}

.iNews .iNewsWrap ul {
  float: right;
  width: 39%;
  max-width: 540px;

}

.iNews .iNewsWrap ul li {
  padding: 19px 23px;
  border: 1px solid #CCCCCC;
}

.iNews .iNewsWrap ul li:not(:last-child) {
  margin-bottom: 25px;
}

.iNews .iNewsWrap ul li .iNewsTime {
  width: 90px;
  height: 110px;
  text-align: center;
  background: #F5F5F5;
}

.iNews .iNewsWrap ul li .iNewsTime .day {
  font-family: Arial, serif;
  font-size: 50px;
  color: #666666;
  margin-top: 16px;
}

.iNews .iNewsWrap ul li .iNewsTime .year {
  margin-top: 2px;
  font-size: 14px;
  color: #666666;
}

.iNews .iNewsWrap ul li:hover .iNewsTime .day, .iNews .iNewsWrap ul li:hover .iNewsTime .year {
  color: #E45800;
  transition: all ease 0.3s;
}

.iNews .iNewsWrap ul li .iNewsContain {
  max-width: 360px;
}

.iNews .iNewsWrap ul li .iNewsContain .iNewsTit {
  font-size: 20px;
  color: black;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  margin: 15px 0 10px;
}

.iNews .iNewsWrap ul li .iNewsContain .iNewsTxt {
  color: #666666;
  font-size: 14px;
  line-height: 26px;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

/*note*/
.note {
  background: url(../images/note.jpg) no-repeat center;
  background-size: cover;
  width: 100%;
  height: 410px;
}

.note .indexTitEn {
  color: rgba(255, 255, 255, .2);
}

.note .indexTitZh {
  color: white;
}

.feedk {
  margin-top: 60px;
}

.feedk .fe1 {
  width: 22.85%;
  margin-right: 2%;
}

.feedk .fe1 input {
  width: 100%;
  border: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  background: none;
  color: #ffffff;
  padding: 19px 0;
  font-size: 1rem;
}

.feedk .fe1 input::placeholder {
  color: #ffffff
}

.feedk .fe2 {
  width: 35.71%;
  margin-left: 2%;
}

.feedk .fe2 textarea {
  width: 100%;
  background: none;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(0, 0, 0, 0.2);
  height: 120px;
  box-sizing: border-box;
  color: #ffffff;
  padding: 10px;
  font-size: 1rem;
}

.feedk .fe2 textarea::placeholder {
  color: #ffffff
}

.feedk .febtn {
  width: 10.7%
}

.feedk .febtn input {
  background: none;
  border: 1px solid rgba(255, 255, 255, 0.2);
  font-size: 1rem;
  width: 150px;
  height: 48px;
  color: #ffffff;
  margin-bottom: 20px;
  cursor: pointer;
  transition: all 0.5s;
  background: #666666;
}

.feedk .febtn input:hover {
  background: #eb6100 !important;
  color: #fff !important
}

.feedk .febtn input:nth-child(1) {
  background: #E45800;
}

/*footer*/
footer {
  background: #323B42;
  padding-top: 67px;
  border-top: 8px solid #E45800;
}

footer ul {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  color: white;
  padding-bottom: 30px;
  border-bottom: 1px solid #565C62;
}

footer ul hr {
  width: 16px;
  height: 2px;
  background: #E45800;
  margin: 10px 0;
  border: none;
}

footer ul li > p {
  font-weight: bold;
}

footer ul li dl {
  line-height: 40px;
}

footer ul li dl a {
  color: rgba(255, 255, 255, .5);
  transition: all 0.3s ease;
}

footer ul li dl a:hover {
  color: #E45800;
  transition: all 0.3s ease;
}

footer ul li .footerHotPro {
  margin-top: 20px;
}

footer ul li .footerHotPro a {
  display: flex;
  justify-content: left;
  flex-wrap: nowrap;
}

footer ul li .footerLink {
  line-height: 32px;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.5);
}

footer ul li .footerHotline {
  font-size: 26px;
  font-weight: bold;
  color: #E45800;
  margin-top: 20px;
}

footer ul li .footerHotline i img {
  vertical-align: middle;
  position: relative;
  top: -2px;
}

footer ul li .ewm {
  font-size: 14px;
  text-align: center;
  color: rgba(255, 255, 255, 0.3);
  line-height: 42px;
}

.footerHotProImg {
  margin-right: 15px;
}

.footerHotProTxt {
  padding-top: 10px;
  line-height: 25px;
}

.footerHotProTxt p {
  color: white;
}

.footerHotProTxt span {
  color: rgba(255, 255, 255, .5);
}

.friendLink {
  padding-top: 30px;
}

.friendLink .fl {
  width: 88px;
  color: #E45800;
  font-size: 14px;
  line-height: 26px;
}

.friendLink .fr {
  width: calc(100% - 88px);
}

.friendLink .fr a {
  display: inline-block;
  margin-right: 20px;
  color: rgba(255, 255, 255, 0.5);
  font-size: 14px;
  line-height: 26px;
  transition: all ease 0.3s;
}

.friendLink .fr a:hover {
  color: #E45800;
  transition: all ease 0.3s;
}

.copyright {
  color: rgba(255, 255, 255, 0.5);
  text-align: center;
  line-height: 80px;
}


/*about*/
.about {
  padding: 50px 0;
}

.aboutTit {
  text-align: center;
  margin: 10px auto;
}

.aboutTit .aboutTitZh {
  font-size: 36px;
  color: #E45800;
}

.aboutTit .aboutTitEn {
  font-family: GARAGEGOTHIC, serif;
  font-size: 20px;
  line-height: 32px;
  color: #666666;
  text-transform: uppercase;
}

.aboutTit hr {
  width: 82px;
  height: 3px;
  background: #E45800;
  margin: 0 auto;
  border: none;
}

.about .aboutTxt {
  width: 43%;
  padding-top: 90px;
}

.about .aboutTxt .aboutTit {
  font-size: 32px;
  line-height: 42px;
  color: black;
  margin-bottom: 15px;
  text-align: left;
}

.about .aboutTxt .aboutText {
  font-size: 18px;
  line-height: 32px;
  color: #666666;
}

.about .aboutImg {
  width: 50%;
}

.aboutData {
  width: 100%;
  height: 200px;
  background: #E45800;
}

.aboutData ul {
  display: flex;
  justify-content: space-around;
  flex-wrap: nowrap;
  align-items: center;
  height: 100%;
}

.aboutData ul li {
}

.aboutData ul li .number {
  font-family: GARAGEGOTHIC, serif;
  font-size: 80px;
  color: white;
  text-align: center;
  line-height: 1;
}

.aboutData ul li .txt {
  font-size: 14px;
  color: white;
  text-align: center;
}

.aboutCulture {
  padding-top: 50px;
  margin-bottom: -80px;
}

.aboutCultureWrap {
  width: 48%;
  margin: 30px auto 0;
  background: #363636;
  text-align: center;
  padding: 80px 115px;
}

.aboutCultureWrap .aboutCultureTit {
  font-size: 32px;
  color: #E45800;
  margin-bottom: 30px;
}

.aboutCultureWrap .aboutCultureTxt {
  font-size: 22px;
  line-height: 36px;
  color: #ffffff;
}

.aboutCultureBc {
  width: 100%;
  object-fit: cover;
  position: relative;
  transform: translateY(-33%);
  z-index: -1;
}

.operation {
  padding-bottom: 80px;
}

.operation .aboutTit {
  width: 300px;
  text-align: left;
  position: relative;
  margin-top: 110px;
}

.operation .aboutTit hr {
  margin: 0;
}

.operation .aboutTit .operationInfo {
  font-size: 20px;
  line-height: 36px;
  color: #666666;
  margin: 40px 0;
}

.operation .operationWrap {
  width: calc(100% - 300px);
  padding: 75px 0;
  background: #F5F5F5;
}

.operationWrap .swiper-container {
  width: 72.5%;
  float: right;
}

.operation .swiper-button-next, .operation .swiper-button-prev {
  position: relative;
  top: 0;
  margin: 0;
  left: 0;
  right: 0;
  display: inline-block;
  outline: none;
}

.operation .swiper-button-prev {
  background: url(../images/prev.jpg) no-repeat center;
  background-size: cover;
  width: 60px;
  height: 60px;
  transform: rotate(180deg);
}

.operation .swiper-button-next {
  background: url(../images/prev.jpg) no-repeat center;
  background-size: cover;
  width: 60px;
  height: 60px;
  margin-right: 30px;

}

.operation .swiper-button-next:after, .operation .swiper-button-prev:after {
  content: '';
}

/*honor*/
.honor {
  background: url(../images/honor.jpg) no-repeat center;
  background-size: cover;
  width: 100%;
  padding-top: 50px;
  padding-bottom: 75px;
}

.honor ul {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  margin-top: 45px;
}

.honor ul li {
  width: calc(3 / 14 * 100%);
  background: url(../images/honor01.jpg) no-repeat center;
  background-size: cover;
  height: 404px;
  padding: 24px 25px;
}

/*product*/
.proSearch {
  text-align: center;
  height: 210px;
  padding-top: 45px;
}

.proSearch p {
  font-size: 36px;
  font-weight: bold;
  color: #666666;
  margin-bottom: 20px;
}

.proSearch form {
}

.proSearch form label {
  position: relative;
  height: 50px;
  line-height: 50px;
}

.proSearch form label input {
  width: 42%;
  line-height: 50px;
  border: 1px solid #CCCCCC;
  border-radius: 25px;
  padding-left: 25px;
}

.proSearch form label button {
  position: absolute;
  background: none;
  outline: none;
  border: none;
  top: -11px;
  right: 5px;
  cursor: pointer;
}

.ProTab {
  background: url(../images/iProBc.jpg) no-repeat center;
  background-size: cover;
  width: 100%;
  height: 120px;
  margin-bottom: 50px;
}

.ProTab ul {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
}

.ProTab p {
  width: 96%;
  margin: 0 auto;
  display: none;
  line-height: 32px;
  text-align: left;
  padding-left: 10px;
  cursor: pointer;
  background: #767676;
  color: #FFFFFF;
  position: relative;
}

.ProTab p:after {
  content: '';
  position: absolute;
  border-top: 1px solid #FFFFFF;
  border-right: 1px solid #FFFFFF;
  width: 7px;
  height: 7px;
  right: 20px;
  top: 50%;
  transform: translateY(-50%) rotate(
      45deg
  );
  transition: all ease 0.3s;
}

.ProTab p.on:after {
  transform: translateY(-50%) rotate(
      135deg
  );
  transition: all ease 0.3s;
}

.ProTab ul li {
  width: 20%;
  float: left;
  text-align: center;
  cursor: pointer;
  color: #ffffff;
  position: relative;
  height: 100%;
  padding-top: 20px;
}

.ProTab ul li.on, .ProTab ul li:hover {
  background: #E45800;
  transition: all 0.5s ease;
}

.ProTab ul li .iProName {
  margin-top: 18px;
}

.ProTab li:after {
  content: '';
  position: absolute;
  background: url(../images/iProIcon06.png) no-repeat center;
  background-size: cover;
  width: 23px;
  height: 9px;
  bottom: -9px;
  left: 50%;
  transform: translateX(-50%);
  opacity: 0;
  transition: all 0.5s ease;
}

.ProTab li.on:after, .ProTab li:hover:after {
  opacity: 1;
  transition: all 0.5s ease;
}

.proList {
}

.proList ul {
}

.proList ul li {
  display: none;
}

.proList ul li.on {
  display: block;
}

.proList ul li .proWrap {
  padding-bottom: 35px;
  margin-bottom: 35px;
  border-bottom: 1px solid #CCCCCC;
}

.proList ul li .proImg {
  border: 1px solid #E6E6E6;
  float: left;
}

.proList ul li .proTxt {
  width: 40%;
  margin-left: 4%;
  padding-top: 50px;
  float: left;
}

.proList ul li .proTxt .proName {
  text-align: left;
  font-size: 22px;
  color: #000000;
  margin-bottom: 20px;
}

.proList ul li .proTxt .proText {
  text-align: left;
  font-size: 14px;
  line-height: 26px;
  color: #666666;
}

.proList ul li .proLink {
  padding-top: 50px;
  float: right;
}

.proList ul li .proLink .more {
  padding-left: 37%;
  text-align: left;
  position: relative;
}

.proList ul li .proLink .consult {
  padding-left: 37%;
  text-align: left;
  width: 150px;
  line-height: 50px;
  border: 1px solid #999999;
  margin-top: 40px;
  position: relative;
}

.proList ul li .proLink .more:hover {
  border-color: #E45800;
  transition: all ease .3s;
}

.proList ul li .proLink .consult:hover {
  border-color: #E45800;
  transition: all ease .3s;
}

.proList ul li .proLink .more:after {
  content: '';
  position: absolute;
  background: url(../images/proIcon01.png) no-repeat center;
  background-size: cover;
  width: 18px;
  height: 18px;
  left: 25px;
  top: 50%;
  transform: translateY(-50%);
  transition: all ease .3s;
}

.proList ul li .proLink .more:hover:after {
  background: url(../images/proIcon02.png) no-repeat center;
  transition: all ease .3s;
}

.proList ul li .proLink .consult:after {
  content: '';
  position: absolute;
  background: url(../images/proIcon03.png) no-repeat center;
  background-size: cover;
  width: 21px;
  height: 21px;
  left: 25px;
  top: 50%;
  transform: translateY(-50%);
  transition: all ease .3s;
}

.proList ul li .proLink .consult:hover:after {
  background: url(../images/proIcon04.png) no-repeat center;
  transition: all ease .3s;
}

/*产品详情*/
/*优势*/
.proAd {
  background: url(../images/pro04.jpg) no-repeat center;
  background-size: cover;
  width: 100%;
  height: 410px;
  padding-top: 75px;
}

.proAdWrap {
  border-top: 1px solid #CCCCCC;
  padding-top: 40px;
}

.proAdWrapTxt {
  width: 50%;
}

.proAdWrapTxt .proAdName {
  font-size: 26px;
  color: #E45800;
  margin-bottom: 25px;
}

.proAdWrapTxt .proAdText {
  font-size: 18px;
  line-height: 32px;
  color: #666666;
}

.proAdWrapLink {
  padding-top: 20px;
}

.proAdWrapLink a {
  line-height: 50px;
  width: 150px;
  text-align: center;
  border: 1px solid #999999;
  margin-bottom: 20px;
}

/*特点*/
.proTrait {
  background: url(../images/pro05.jpg) no-repeat center;
  background-size: cover;
  width: 100%;
  height: 600px;
  padding-top: 80px;
}

.proTraitWrap {
  padding-top: 60px;
}

.proTraitWrap .proTraitTit {
  font-size: 32px;
  color: #E45800;
  margin-bottom: 30px;
}

.proTraitWrap .proTraitTxt {
  font-size: 18px;
  line-height: 32px;
  color: #666666;
}

.proTraitImg {
/*  background: white;*/
  border-radius: 10px;
  padding: 3px;
}

.proTraitImg img {
  border-radius: 10px;
}

.proShow {
  padding-top: 65px;
  padding-bottom: 95px;
}

.proShow p {
  text-align: center;
  font-size: 32px;
  color: #E45800;
  margin-bottom: 35px;
}

.proShow ul {
  margin: 0 -28px;
}

.proShow ul li {
  padding: 0 28px;
  width: 33.33%;
  float: left;
  margin-bottom: 15px;
}

/*特点*/
.proTraitSec {
  background: url(../images/trait02.jpg) no-repeat center;
  background-size: cover;
  width: 100%;
  height: 660px;
  object-fit: cover;
}

.proTraitSec .w1400 {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  height: 100%;
}

.proTraitSecImg {
  flex: 1;
  text-align: center;
}

.proTraitSecTxt {
  width: 37%;
}

.proTraitSecTiT {
  font-size: 32px;
  color: #E45800;
  margin-bottom: 30px;
}

.proTraitSecTexT {
  font-size: 18px;
  line-height: 32px;
  color: #666666;
}

/*系统*/
.system {
  padding: 50px 0
}

.system p {
  font-size: 32px;
  color: #E45800;
  line-height: 50px;
  text-align: center;
}

.system ul {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  margin-bottom: 20px;
}

.system ul:after {
  content: '';
  width: 28.5%;
}

.system ul li {
  width: 28.5%;
}

.system ul li .systemIcon {
  text-align: center;
  margin: 40px auto;
}

.system ul li .systemTit {
  font-size: 20px;
  font-weight: bold;
  line-height: 32px;
  color: #E45800;
}

.system ul li .systemTxt {
  font-size: 18px;
  line-height: 32px;
  color: #666666;
}
.systemVideo{
  text-align: center;
  background: url(../images/videoBc.jpg) no-repeat center;
  background-size: cover;
  width: 100%;
  height: 613px;
}
.systemVideo video{
  width: 46%;
  max-width: 870px;
  object-fit: cover;
  margin: 0 auto;
  border: none;
  outline: none;
}

/*四张图*/
.proFour {
}

.proFour ul {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}

.proFour ul li {
  width: 49.8%;
  max-width: 956px;
  margin-bottom: 7px;
  position: relative;
}

.proFourImg {
  position: relative;
  z-index: -1;
}

.proFourWrap {
  position: absolute;
  top: 22.22%;
  left: 27%;
  right: 0;
  bottom: 0;
  background: rgba(255, 255, 255, 0.8);
  padding-top: 10%;
  text-align: center;
  transition: all ease 0.56s;
}

.proFourWrap .proFourOrder {
  position: absolute;
  left: 35px;
  line-height: 1;
  top: 0;
  font-family: BIRWOODSSK, serif;
  font-size: 120px;
  color: rgba(255, 255, 255, 0);
  -webkit-text-stroke: 1px rgba(0, 0, 0, 0.2);
}

.proFourWrap .proFourTit {
  font-size: 32px;
  color: #E45800;
}

.proFourWrap .proFourTxt {
  margin-top: 15px;
  font-size: 20px;
  color: #666666;
}

.proFour ul li:hover .proFourWrap {
  top: 0;
  left: 0;
  transition: all ease 0.56s;
  padding-top: 15%;
}

/*切割样品*/
.specimen {
  padding: 90px 0 140px;
}

.specimen p {
  font-size: 32px;
  color: #E45800;
  text-align: center;
  margin-bottom: 40px;
}

.specimen ul {
  margin: 0 -20px;
}

.specimen ul li {
  float: left;
  width: 25%;
  padding: 0 20px;
}

/*map*/
.map {
  text-align: center;
  padding: 70px 0;
  background: #EFEFEF;
}

.map h2 {
  font-size: 36px;
  color: #666666;
  font-weight: normal;
  margin-bottom: 15px;
}

.map hr {
  width: 30px;
  height: 4px;
  background: #E45800;
  margin: 0 auto;
  border: none;
}

.map .mapImg {
  position: relative;
  max-width: 851px;
  margin: 0 auto;
}

.mapImg ul li .point {
  position: absolute;
  transform: translateX(-50%);
  cursor: pointer;
}

.mapImg ul li .pointInfo {
  position: absolute;
  background: url(../images/point.png) no-repeat center;
  background-size: cover;
  width: 400px;
  height: 220px;
  padding: 30px;
  text-align: left;
  left: -85px;
  bottom: 80px;
  display: none;
}

.addressName {
  font-size: 20px;
  line-height: 32px;
  font-weight: bold;
  color: black;
}

.mapImg ul li .pointInfo hr {
  width: 40px;
  margin: 0 0 20px;
}

.address, .pointMan {
  font-size: 16px;
  line-height: 32px;
  color: #666666;
}

.mapImg ul li:nth-child(1) .point {
  left: 50%;
  top: 60%;
}

.mapImg ul li:nth-child(2) .point {
  left: 70%;
  top: 47%;
}

.mapImg ul li:nth-child(3) .point {
  left: 77.5%;
  top: 40%;
}

.mapImg ul li:nth-child(4) .point {
  left: 74%;
  top: 75%;
}

.mapImg ul li:nth-child(5) .point {
  left: 75.5%;
  top: 65%;
}

.mapImg ul li:nth-child(6) .point {
  left: 81.5%;
  top: 67%;
}

.mapImg ul li:nth-child(7) .point {
  left: 84.5%;
  top: 58%;
}

.mapImg ul li:nth-child(8) .point {
  left: 87%;
  top: 53%;
}
.mapImg ul li:nth-child(9) .point {
  left: 76.2%;
  top: 33%;
}

.mapImg ul li:nth-child(10) .point {
  left: 73%;
  top: 34%;
}
.mapImg ul li:nth-child(11) .point {
  left: 62%;
  top: 47%;
}
.mapImg ul li:nth-child(12) .point {
  left: 53.2%;
  top: 46%;
}
.mapImg ul li:nth-child(13) .point {
  left: 69%;
  top: 23%;
}
.pointName {
  font-size: 14px;
  margin-top: 4px;
}


/*技术参数*/
.technical {
  padding: 65px 0;
}

.technical p {
  font-size: 32px;
  color: #E45800;
  text-align: center;
  margin-bottom: 40px;
}

.technical table {
  width: 100%;
  border-spacing: 0;
  border-collapse: collapse;
  overflow: scroll;
  display: table;
}

.technical tbody tr:first-child td:first-child {
  background: #ACACAC!important;
  color: white;
  border-top-right-radius: 8px;
  border-top-left-radius: 8px;
}

.technical tbody tr:first-child td:nth-child(2) {
  background: #E45800 !important;
  color: white;
  border-top-right-radius: 8px;
  border-top-left-radius: 8px;
}

.technical tbody tr td:first-child {
  background: #E4E4E4;
  font-size: 16px;
  line-height: 50px;
  color: #666666;
  padding-left: 100px;
  width: 300px;
}

.technical tbody tr td:nth-child(2) {
  background: #F9F9F9;
  font-size: 16px;
  line-height: 50px;
  color: #666666;
  padding-left: 100px;
  white-space: pre-wrap;
  word-break: break-all
}

.technical tbody tr:nth-child(2n+1) td:nth-child(2n+1) {
  background: #F1F1F1;
}

.technical tbody tr:nth-child(2n+1) td:nth-child(2n) {
  background: #FFFFFF;

}

/*video*/
.videoBox {
  position: fixed;
  z-index: 99;
  display: none;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: rgba(0, 0, 0, 0.5);
}

.videoBox .box {
  position: relative;
  width: 50%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.videoBox .box dl {
  position: absolute;
  top: 5px;
  right: 5px;
  color: #000;
  font-size: 22px;
  text-align: center;
  line-height: 20px;
  width: 20px;
  height: 20px;
  border-radius: 20px;
  background: #fff;
  cursor: pointer;
  z-index: 100;
}

.videoBox .box video {
  width: 100%;
}

.videoList {
  padding: 60px 0;
}

.videoList h2 {
  font-size: 26px;
  text-align: center;
  color: #666666;
  letter-spacing: 4px;
  margin-bottom: 10px;
}

.videoList hr {
  width: 30px;
  height: 4px;
  border: none;
  background: #E45800;
  margin: 0 auto;
}

.videoList ul {
  margin: 45px -17px 0;
}

.videoList ul li {
  width: 33.33%;
  padding: 0 17px;
  float: left;
  overflow: hidden;
  margin-bottom: 55px;
}

.videoList ul li .videoImg {
  position: relative;
  /*height: 300px;*/
  overflow: hidden;
cursor: pointer;
}

.videoList ul li .videoImg:after {
  content: '';
  position: absolute;
  background: url(../images/icon_play.png) no-repeat center;
  background-size: cover;
  width: 50px;
  height: 50px;
  left: 50%;
  bottom: 50%;
  margin-left:-25px;
 margin-bottom:-25px;
  cursor: pointer;
}

.videoList ul li video {
  /*height: 100%;*/
width:100%;
  object-fit: cover;
}

.videoList ul li .videoName {
  color: #666666;
  margin-top: 20px;
}

.page {
  text-align: center;
}

.page span {
  display: inline-block;
  width: 40px;
  line-height: 40px;
  text-align: center;
  border: 1px solid #E6E6E6;
  transition: all ease 0.3s;
}

.page span a {
  color: #666666;
  font-size: 14px;
  transition: all ease 0.3s;
}

.page span.first, .page span.prev, .page span.next, .page span.last {
  width: 80px;
}

.page span.current, .page span:hover {
  background: #E45800;
  border-color: #E45800;
  transition: all ease 0.3s;
}

.page span.current a, .page span:hover a {
  color: white;
  transition: all ease 0.3s;
}

.newsList {
  padding: 60px 0;
}

.newsList h2 {
  font-size: 26px;
  text-align: center;
  color: #666666;
  letter-spacing: 4px;
  margin-bottom: 10px;
}

.newsList hr {
  width: 30px;
  height: 4px;
  border: none;
  background: #E45800;
  margin: 0 auto;
}

.newsList ul {
  margin: 45px auto;
}

.newsList ul li:not(:last-child) {
  margin-bottom: 50px;
}

.newsList ul li .newsImg {
  float: left;
  width: 25%;
  max-width: 340px;
}

.newsList ul li .newsWrap {
  float: right;
  width: 72%;
  max-width: 1000px;
}

.newsWrap .newsTit {
  color: #000000;
  font-size: 20px;
  float: left;
  width: calc(100% - 200px);
}

.newsWrap .newsTime {
  float: right;
  font-size: 14px;
  color: #666666;
}

.newsWrap hr {
  width: 100%;
  height: 1px;
  background: #E5E5E5;
  margin: 25px auto;
}

.newsWrap .newsTxt {
  font-size: 14px;
  line-height: 26px;
  color: #666666;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
}

.newsWrap .newsLink {
  width: 150px;
  line-height: 50px;
  text-align: center;
  font-size: 16px;
  color: white;
  background: #E45800;
  float: right;
  margin-top: 30px;
}

/*新闻详情*/
.newsDeWrap {
  padding: 60px 0;
}

.newsDeWrap .newsDe {
  float: left;
  width: 72%;
  max-width: 1000px;
  color: #666666;
}

.newsDeWrap .newsDePage {
  float: right;
  width: 25%;
}

.newsDe h2.newsDeTit {
  font-size: 36px;
  color: black;
}

.newsDe .newsDeTime {
  font-size: 14px;
  margin: 15px 0 25px;
}

.newsDe hr {
  background: #E5E5E5;
  border: none;
  width: 100%;
  height: 1px;
  margin-bottom: 20px;
}

.newsDeTxt {
  font-size: 16px;
  line-height: 32px;
  text-indent: 2em;
}

.newsDeTxt p:not(:last-child) {
  margin-bottom: 40px;
  text-align: justify;
}

.newsDeTxt img:not(:last-child) {
  margin-bottom: 40px;
}

.newsDePage .newsDePagePrev, .newsDePage .newsDePageNext {
  border: 8px solid #E6E6E6;
  margin-bottom: 30px;
  padding: 30px;
  transition: all ease 0.5s;
}

.newsDePage .newsDePagePrev:hover, .newsDePage .newsDePageNext:hover {
  border-color: #E45800;
  transition: all ease 0.5s;
}

.newsDePage p {
  font-size: 16px;
  color: #666666;
  line-height: 32px;
}

.newsDePage a {
  font-size: 20px;
  line-height: 32px;
  color: black;
}

/*contact*/
.contactWay {
}

.contactWay ul {
  margin: 0 -20px;
  padding: 75px 0;
}

.contactWay ul li {
  padding: 0 20px;
  float: left;
  width: 25%;
  text-align: center;
}

.contactIcon {
  background: #E45800;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: nowrap;
  height: 150px;
}

.contactTxt {
  padding: 30px 0;
  height: 180px;
  font-size: 20px;
  line-height: 32px;
  box-sizing: border-box;
  color: #666666;
  box-shadow: 0 0 8px 0 rgba(0, 0, 0, 0.1);
}

.mapWrap {
  display: none;
}

@media (max-width: 1400px) {
  .w1400 {
    width: 96%;
  }
}

@media (max-width: 1024px) {
  /*index*/
  header .menu-toggle {
    width: 60px;
    height: 60px;
    position: absolute;
    right: 0;
    top: 0;
    float: right;
    z-index: 99999;
    display: block;
  }

  header .menu-toggle span {
    width: 35px;
    height: 2px;
    background: #E45800;
    display: block;
    position: relative;
    opacity: 1;
    transition: all 300ms;
    margin: 30px 0 0 12px;
  }

  header .menu-toggle span:before {
    content: "";
    width: 35px;
    height: 2px;
    background: #E45800;
    display: block;
    position: absolute;
    left: 0;
    top: -10px;
    transition: all 300ms;
  }

  header .menu-toggle span:after {
    content: "";
    width: 35px;
    height: 2px;
    background: #E45800;
    display: block;
    position: absolute;
    left: 0;
    top: 10px;
    transition: all 300ms;
  }

  header .menu-toggle.cur span {
    background-color: transparent;
  }

  header .menu-toggle.cur span:before {
    transform: rotate(45deg);
    top: 0;
  }

  header .menu-toggle.cur span:after {
    transform: rotate(-45deg);
    top: 0;
  }

  header {
    height: 60px;
  }

  .logo {
    line-height: 60px;
  }

  .logo img {
    height: 40px;
  }

  .language {
    margin-top: 16.5px;
    padding-right: 60px;
  }

  .language .lag:after {
    display: none;
  }

  nav {
    display: none;
    position: absolute;
    left: 0;
    top: 60px;
    width: 100%;
    z-index: 9999;
    background: #FFFFFF;
    height: 100vh;
    line-height: 45px;
    padding-left: 20px;
  }

  nav ul li {
    width: 100%;
    text-align: left;
  }

  nav ul li:after {
    display: none;
  }

  .iPro .iProTabBc {
    height: 60px;
  }

  .iPro .iProTab li {
    padding-top: 0;
    line-height: 60px;
  }

  .iPro .iProTab li .iProName {
    margin-top: 0;
  }

  .iProIcon {
    display: none;
  }

  .iProList {
    padding-top: 20px;
  }

  .iProList .iProData .iProPower {
    margin-left: 0;
  }

  .cd1, .cd2, .cd3 {
    width: 100%;
    border-left: 2px solid #dedede;
    border-top: 2px solid #dedede;
    border-bottom: 2px solid #dedede;
    border-right: 2px solid #dedede;
  }

  .iProAd ul li {
    margin-bottom: 17px !important;
  }

  .coradius1, .coradius2 {
    display: none;
  }

  .iProAd ul {
    padding-bottom: 30px;
  }

  .select {
    padding: 20px 0;
  }

  .select ul li {
    width: 48%;
    max-width: none;
    margin-bottom: 60px;
  }

  .select ul li .selectImg {
    width: 100%;
  }

  .select ul li img {
    width: 100%;
    height: auto;
  }

  .select ul li:after {
    display: none;
  }

  .aprofile .abto, .aprofile .abco {
    width: 100%;
    padding: 10px;
  }

  .serve {
    padding: 20px 0;
  }

  .serve ul, .serve a.more {
    margin-top: 20px;
  }

  .serve ul li {
    width: 50%;
    margin-bottom: 20px;
  }

  .iNews .iNewsWrap ul {
    margin-top: 25px;
    width: 100%;
    max-width: none;
  }

  .iNews .iNewsWrap ul li {
    padding: 10px;
  }

  .iNews .iNewsWrap ul li .iNewsContain {
    max-width: none;
    width: calc(100% - 110px);
  }

  .note {
    height: auto;
  }

  footer ul {
    padding-bottom: 10px;
  }

  footer ul li {
    width: 100%;
  }

  footer ul li:not(:last-child) {
    margin-bottom: 20px;
  }

  footer ul li dl {
    line-height: 32px;
  }

  footer ul li dl:after {
    content: "";
    height: 0;
    line-height: 0;
    display: block;
    visibility: hidden;
    clear: both
  }

  footer ul li dl dd {
    float: left;
    margin-right: 10px;
  }

  footer ul li .footerHotPro a {
    display: inline-block;
    float: left;
    margin-right: 10px;
  }

  footer ul li .ewm {
    float: left;
  }

  /*about*/
  .about {
    padding: 20px 0;
  }

  .about .aboutTxt, .about .aboutImg {
    padding-top: 0;
    width: 100%;
  }

  .aboutCulture {
    padding-top: 20px;
    margin-bottom: 0;
  }

  .aboutCultureWrap {
    width: 100%;
    padding: 20px 10px;
  }

  .operation {
    padding-bottom: 20px;
  }

  .operation .aboutTit {
    width: 100%;
    margin-top: 20px;
  }

  .aboutTitWrap {
    float: left;
  }

  .switchWrap {
    float: right;
  }

  .operation .aboutTit .operationInfo {
    margin: 10px 0;
  }

  .operation .operationWrap, .operationWrap .swiper-container {
    width: 100%;
  }

  .honor ul li {
    width: 48%;
    height: 480px;
    margin-bottom: 20px;
  }

  .honor ul li img {
    width: 100%;
  }

  .ProTab {
    height: 60px;
    margin-bottom: 20px;
  }

  .ProTab ul li {
    padding-top: 0;
    line-height: 60px;
  }

  .ProTab ul li .iProName {
    margin-top: 0;
  }

  .proList ul li .proImg {
    display: none;
  }

  .proList ul li .proTxt {
    width: calc(100% - 200px);
  }

  .proAd, .proTrait, .proShow {
    height: auto;
    padding: 30px 0;
  }

  .proTraitWrap {
    padding-top: 0;
  }

  .system ul li {
    width: 48%;
  }

  .proFour ul li {
    width: 100%;
  }

  .mapImg ul li .pointInfo {
    left: 25px;
    top: 100px;
  }

  .pointIcon img {
    width: 20px;
  }

  .mapImg ul li .point {
    transform: translate(-50%, 50%);
  }

  .technical tbody tr td:first-child, .technical tbody tr:first-child td:nth-child(2), .technical tbody tr td:nth-child(2), .technical tbody tr:first-child td:first-child {
    padding-left: 10px;
  }


  /*video*/
  .videoList, .newsList {
    padding: 30px 0;
  }

  .videoList ul li .videoImg {
    height: 120px;
  }

  .videoList ul li .videoImg:after {
    left: 10px;
    bottom: 10px;
    height: 30px;
    width: 30px;
  }

  /*contact*/
  .contactWay ul {
    padding: 30px 0;
  }

  .contactWay ul li {
    padding: 0 10px;
  }

  .videoBox .box {
    width: 80%;
  }
}

@media (max-width: 768px) {
  body {
    font-size: 14px;
  }

  /*note*/
  .feedk {
    margin-top: 30px;
  }

  .feedk .fe1 {
    width: 100%;
  }

  .feedk .fe2 {
    width: 100%;
    margin-left: 0%;
    margin-top: 33px;
  }

  .feedk .fe2 textarea {
    height: 178px
  }

  .feedk .febtn {
    width: 100%;
    margin-top: 33px
  }

  .feedk .febtn br {
    display: none
  }

  .feedk .febtn input {
    font-size: 1.25rem;
    width: 49%;
    float: left;
  }

  .feedk .febtn input:nth-child(3) {
    float: right
  }

  .iPro .iProTabBc {
    height: auto;
  }

  .iPro .iProTab:after {
    content: '';
    width: 50%;
  }

  .iPro .iProTab li {
    width: 50%;
  }

  .iPro .iProTab li:after {
    display: none;
  }

  .iProList .iProTxt, .iProList .iProImg {
    width: 100%;
  }

  .iProList .iProData {
    padding: 0 10px;
  }

  .iProList a.more {
    margin: 10px auto;
  }

  .co-txt {
    padding: 10px
  }

  .co-pic, .co-txt, .cd2 .co-pic, .cd2 .co-txt {
    width: 100%;
  }

  .instant ul li {
    width: 48%;
    margin-bottom: 10px;
  }

  .select ul li {
    width: 48%;
    margin-bottom: 10px;
    height: 140px;
  }

  .anum {
    padding-top: 80px;
    display: none;
  }

  .aprofile {
    width: 100%;
  }

  .anum, .serve ul li {
    width: 50%;
  }

  .iNews {
    padding-top: 0;
    padding-bottom: 30px;
  }

  .iNews .iNewsWrap {
    margin-top: 20px;
  }

  .recommendNews .recommendNewsTxt {
    display: none;
  }

  .indexTit .indexTitZh {
    font-size: 26px;
  }

  .banner .swiper-pagination-bullet {
    width: 8px;
    height: 8px;
  }

  /*about*/
  .aboutData ul {
    flex-wrap: wrap;
  }

  .aboutData ul li {
    width: 50%;
  }

  .operation .operationWrap, .honor {
    padding: 20px 0;
  }

  .switchWrap {
    float: left;
    display: none;
  }

  .honor ul li {
    height: auto;
    padding: 0;
  }

  /*  product*/
  .proSearch p {
    font-size: 26px;
  }

  .proSearch form label input {
    width: 90%;
  }

  .ProTab {
    height: auto;
  }

  .ProTab ul {
    flex-wrap: wrap;
  }

  .ProTab ul:after {
    content: '';
    width: 100%;
  }

  .ProTab ul li {
    width: 100%;
    line-height: 32px;
  }

  .ProTab li:after {
    display: none;
  }

  .proList ul li .proWrap {
    padding-bottom: 15px;
    margin-bottom: 15px;
  }

  .proList ul li .proTxt {
    padding-top: 20px;
  }

  .proList ul li .proTxt, .proList ul li .proLink {
    width: 100%;
    margin-left: 0;
  }

  .proList ul li .proLink a {
    float: left;
    width: 48%;
  }

  .proList ul li .proLink .more {
    margin-right: 2%;
  }

  .proList ul li .proLink .more, .proList ul li .proLink .consult {
    padding-left: 55px;
  }

  .proList ul li .proLink .consult {
    margin-top: 0;
  }

  .proList ul li .proLink {
    padding-top: 20px;
  }

  /*  productDe*/
  .proAdWrapTxt {
    width: 100%;
  }

  .proAdWrapLink {
    display: none;
    width: 100%;
    justify-content: space-between;
    flex-wrap: nowrap;
  }

  .proShow ul {
    margin: 0 -5px
  }

  .proShow ul li {
    padding: 0 5px;
  }

  .proTraitSecTxt, .proTraitSecImg {
    width: 100%;
    flex: none;
  }

  .proTraitSecImg {
    display: none;
  }

  .proTraitSec {
    height: auto;
  }

  .proTraitSec {
    background: none;
  }

  .system ul li {
    width: 100%;
    margin-bottom: 10px;
  }

  .system ul li .systemIcon {
    margin: 10px auto;
    width: 40%;
  }

  .proFourWrap {
    left: 10%;
  }

  .proFourWrap .proFourOrder {
    font-size: 48px;
    left: 12px;
  }

  .proFourWrap .proFourTit {
    font-size: 16px;
  }

  .proFourWrap .proFourTxt {
    font-size: 14px;
    margin-top: 5px;
  }

  .specimen {
    padding: 20px 0;
  }

  .specimen ul {
    margin: 0 -5px
  }

  .specimen ul li {
    width: 50%;
    padding: 0 5px;
    margin-bottom: 10px;
  }

  /*  video*/
  .videoList ul {
    margin: 20px -5px;
  }

  .videoList ul li {
    width: 50%;
    padding: 0 5px;
    margin-bottom: 10px;
  }

  .videoList ul li .videoName {
    margin-top: 5px;
  }

  /*  news*/
  .newsList ul li .newsImg {
    width: 100%;
    margin-bottom: 10px;
  }

  .newsList ul li .newsWrap {
    width: 100%;
  }

  .newsWrap .newsTit {
    width: 100%;
    text-align: justify;
  }

  .newsWrap hr {
    margin: 5px auto;
  }

  .newsWrap .newsLink {
    display: none;
  }

  .newsList ul li:not(:last-child) {
    margin-bottom: 20px;
  }

  .newsList ul li {
    box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.2);
    padding: 10px 5px;
  }

  .newsDeWrap {
    padding: 20px 0;
  }

  .newsDeWrap .newsDe, .newsDeWrap .newsDePage {
    width: 100%;
  }

  .newsDeWrap .newsDePage {
    margin-top: 20px;
  }

  .newsDePage .newsDePagePrev, .newsDePage .newsDePageNext {
    padding: 10px;
  }

  /*  contact*/
  .contactWay ul {
    margin: 0 -5px;
  }

  .contactWay ul li {
    width: 50%;
    padding: 0 5px;
    margin-bottom: 20px;
  }

  .contactTxt {
    padding: 10px 0;
    word-break: break-all;
    font-size: 16px;
  }

  .map {
    padding: 20px 0;
  }

  .map h2 {
    font-size: 28px;
  }

  .mapWrap {
    display: block;
  }

  .map .mapImg {
    display: none;
  }

  .mapWrap {
    text-align: left;
  }

  .mapWrap hr {
    margin: 0;
  }

  .mapWrap ul li {
    box-sizing: border-box;
    box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.2);
    margin-top: 10px;
    padding: 0 5px;
  }

  /*修改*/
  .iPro .iProTab li {
    padding-top: 0;
    font-size: 14px;
    line-height: 26px;
  }

  .iPro .iProTab li:last-child {
    display: none;
  }

  .iProList .iProName {
    font-size: 18px;
    text-align: center;
  }

  .iProBusiness {
    width: 50%;
  }

  .iProPower {
    width: 50%;
    padding-left: 25px;
  }

  .iProList .iProTrait {
    line-height: 26px;
  }

  .indexTit .indexTitEn {
    font-size: 28px;
  }

  .indexTit .indexTitZh {
    font-size: 18px;
  }

  .indexTit .indexTitTxt {
    line-height: 26px;
    margin-top: 12px;
    font-size: 14px;
  }

  .cd1, .cd2, .cd3 {
    width: 48%;
  }

  .co-txt span, .cd3 .co-txt span {
    display: none;
  }

  .co-txt h3 {
    font-size: 18px;
  }

  .iProList .iProData {
    font-size: 14px;
    line-height: 26px;
  }

  a.more {
    font-size: 14px;
    width: 100px;
    line-height: 30px;
  }

  .instant {
    padding-top: 20px;
    padding-bottom: 20px;
  }

  .instant ul {
    margin-top: 20px;
  }

  .instant ul li {
    height: auto;
    padding-bottom: 10px;
  }

  .instant ul li:last-child {
    display: none;
  }

  .instant ul li .instantIcon {
    width: 40%;
    margin: 10px auto;
  }

  .instant ul li .instantName {
    font-size: 18px;
    margin-bottom: 20px;
  }

  .instant ul li .instantTxt {
    font-size: 12px;
  }

  .in-about .vplay {
    display: block;
    position: relative;
  }

  .aprofile .abto {
    display: none;
  }

  .aprofile .abco h3 {
    font-size: 18px;
    line-height: 32px;
  }

  .aprofile .abco hr {
    margin: 10px 0;
  }

  .aprofile .abco p {
    font-size: 14px;
    line-height: 22px;
  }

  .select ul {
    margin-top: 10px;
  }

  .in-about .vplay video, .in-about .vplay {
    height: auto;
    width: 100%;
  }

  .in-about {
    min-height: auto;
  }

  .serve ul li .serveIcon {
    width: 20%;
  }

  .serve ul li .serveWrap {
    left: auto;
    font-size: 14px;
    line-height: 22px;
    padding-left: 10px;
  }

  .iNews .iNewsWrap ul li .iNewsTime {
    display: none;
  }

  .iNews .iNewsWrap ul li .iNewsContain {
    width: 100%;
  }

  .iNews .iNewsWrap ul li .iNewsContain .iNewsTit {
    font-size: 18px;
    margin-top: 0;
  }

  footer {
    padding-top: 20px;
  }

  footer ul li, .friendLink {
    display: none;
  }

  footer ul li:nth-child(3) {
    display: block;
  }

  .copyright {
    line-height: 22px;
    padding: 10px 0;
  }

  .indexTit {
    text-align: center;
    position: relative;
    top: -10px;
  }

  .about .aboutTxt .aboutTit {
    font-size: 18px;
    line-height: 26px;
  }

  .about .aboutTxt .aboutText {
    font-size: 14px;
    line-height: 24px;
  }

  .aboutTit .aboutTitZh {
    font-size: 20px;
  }

  .aboutTit .aboutTitEn {
    font-size: 16px;
  }

  .aboutCultureWrap .aboutCultureTit {
    font-size: 18px;
  }

  .aboutCultureWrap .aboutCultureTxt {
    font-size: 14px;
    line-height: 24px;
    text-align: left;
  }

  .aboutCultureBc {
    display: none;
  }

  .operation .aboutTit .operationInfo {
    font-size: 14px;
    line-height: 22px;
  }

  .honor ul {
    margin-top: 20px;
  }

  .proSearch form {
    display: none;
  }

  .proSearch {
    height: auto;
    padding: 20px 0;
  }

  .proSearch p {
    font-size: 18px;
    margin-bottom: 0;
  }

  .proList ul li .proLink a {
    border-color: #E45901 !important;
    line-height: 50px;
  }

  .proList ul li .proTxt .proText {
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
  }

  .proList ul li .proImg {
    display: block;
    width: 100%;
    margin-bottom: 10px;
  }

  .proAdWrap {
    padding-top: 10px;
  }

  .proAdWrapTxt .proAdName {
    font-size: 18px;
    margin-bottom: 10px;
  }

  .proAdWrapTxt .proAdText {
    font-size: 14px;
    line-height: 26px;
  }

  .proTraitWrap .proTraitTit {
    font-size: 18px;
    margin-bottom: 10px;
  }

  .proTraitWrap .proTraitTxt, .proTraitSecTexT, .system ul li .systemTxt, .newsDeTxt p:not(:last-child), .newsDePage a {
    font-size: 12px;
    line-height: 22px;
    margin-bottom: 10px;
  }

  .proShow p, .proTraitSecTiT, .system p, .specimen p, .videoList h2, .newsList h2, .newsWrap .newsTit, .newsDe h2.newsDeTit,.system ul li .systemTit {
    font-size: 18px;
    margin-bottom: 10px;
    line-height: 22px;
  }

  .proAd, .proTrait, .proShow, .system, .videoList, .newsList {
    padding: 10px 0;
  }

  .system ul li {
    width: 46%;
  }

  .system ul li:last-child {
    display: none;
  }

  .videoList ul, .newsList ul {
    margin-top: 10px;
  }

  .newsWrap .newsTxt {
    -webkit-line-clamp: 2;
  }

  .newsDe .newsDeTime {
    margin: 10px 0;
  }

  .ProTab p {
    display: block;
  }

  .ProTab ul {
    display: none;
  }
  .ProTab ul li{
    background: #767676;
  }
  .systemVideo video{
    width: 90%;
  }
  .systemVideo{
    background: none;
    height: auto;
  }
  .technical table{
    width: 90%;
    margin: 0 auto;
  }
  .technical tbody tr td:first-child{
    width: auto;
  }
  .ProTab{
    background: none;
  }
  .ProTab ul{
    height: 160px;
  }
  .ProTab ul li{
    height: auto;
  }
}








