﻿@import url(css/iconfont.css);
:root {
  --glocolor: #ffdb60;
}
body {
  font-family: 'Microsoft YaHei', "Open Sans", sans-serif;
  font-size: 15px;
  color: #333;
}
input, select, textarea {
  font-family: 'Microsoft YaHei', "Open Sans", sans-serif;
  font-size: 1em;
  ;
}
.wrap {
  width: 96%;
  margin: 0 auto;
  max-width: 1200px;
  position: relative;
}
img, a {
  border: 0;
}
i {
  font-style: normal
}
ul, li {
  list-style: none;
}
* {
  margin: 0;
  padding: 0;
}
a, a:link {
  color: #000;
  text-decoration: none;
}
.flt {
  float: left;
}
.frt {
  float: right;
}
.clear {
  clear: both;
}
.clear:after, .clear:before {
  content: '';
  clear: both;
  display: table;
}
img {
  max-width: 100%;
}
.img {
  overflow: hidden;
  position: relative;
}
.img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}
.img:before {
  transition: all 0.5s;
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -ms-transition: all 0.5s;
  -o-transition: all 0.5s;
  content: '';
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border: 1px solid rgba(255, 255, 255, 0);
  z-index: 100;
}
.img:hover:before {
  top: 10px;
  left: 10px;
  right: 10px;
  bottom: 10px;
  border: 1px solid rgba(255, 255, 255, 0.5);
}
.img:hover {
  background: #000
}
.img:hover img {
  transform: scale(1.1) rotate(3deg);
  -o-transform: scale(1.051) rotate(1deg);
  -webkit-transform: scale(1.05) rotate(1deg);
  -moz-transform: scale(1.051) rotate(1deg);
  -ms-transform: scale(1.051) rotate(1deg);
  opacity: 0.8;
}
h3 {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  font-weight: bold;
}
*, *:after, *:before {
  transition: all 0.5s;
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -ms-transition: all 0.5s;
  -o-transition: all 0.5s;
}
.ht70 {
  height: 70px;
}
/*----------header----------*/
.header {
  background: #242f35;
  line-height: 70px;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
}
.header.slideUp {
  top: -70px;
}
.header .wrap {
  width: auto;
  padding: 0 250px;
  max-width: initial;
  /* overflow:hidden */
}
.healogo {
  overflow: hidden;
}
.logo {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  width: 205px;
  height: 70px;
  background: var(--glocolor);
  text-align: center;
  padding: 0 10px;
}
.logo:after {
  content: "";
  width: 0;
  height: 0;
  position: absolute;
  right: -40px;
  top: 0;
  border-bottom: 70px solid var(--glocolor);
  border-right: 40px solid transparent;
}
.logo img {
  vertical-align: middle;
}
.menu ul {
  display: flex
}
.menu ul li {
  flex: 1;
  text-align: center;
  font-size: 16px;
  position: relative;
}
.menu ul li .sub-nav {
  top: 120%;
  width: 100%;
  position: absolute;
  left: 0;
  background: rgba(0, 0, 0, .8);
  z-index: 9999;
  opacity: 0;
  visibility: hidden;
  display: inline-block;
  padding: 0 10px;
  transition: all .6s ease 0s;
}
.menu ul li .sub-nav li {
  display: block;
  height: 50px;
  line-height: 50px;
  text-align: center;
  overflow: hidden
}
.menu ul li .sub-nav li a:before {
  height: 0;
}
.menu ul li:hover .sub-nav {
  top: 100%;
  opacity: 1;
  visibility: visible;
}
.menu {
  width: 90%;
  max-width: 950px;
  margin: 0 auto;
  ;
}
.menu ul li a {
  display: inline-block;
  color: #fff;
  position: relative;
}
.menu ul li a:before {
  content: '';
  display: block;
  position: absolute;
  width: 0;
  margin: 0 auto;
  left: 0;
  right: 0;
  top: 0;
  height: 4px;
  background: var(--glocolor);
}
.menu ul li.on a:before, .menu ul li a:hover:before {
  width: 100%;
}
.menu ul li.on a, .menu ul li a:hover,.menu ul li.on .sub-nav li a:hover {
  color: var(--glocolor);
}
.menu ul li.on .sub-nav li a{
  color: #fff;
}
.tel {
  position: absolute;
  top: 50%;
  right: 0;
  line-height: 24px;
  border-left: 1px solid #445863;
  margin-top: -12px;
  padding: 0 15px;
}
.tel span {
  color: var(--glocolor);
  font-size: 26px;
  font-family: Impact;
  padding: 0 30px;
}
.tel span:before {
  font-family: "iconfont" !important;
  padding-right: 5px;
  content: "\e621";
}
/* 轮播图 */
.swiper-container {
  width: 100%;
  background: #242f35
}
.swiper-slide {
  text-align: center;
  font-size: 18px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
}
.swiper-slide img {
  max-width: 100%;
  height: 100%;
  object-fit: cover;
  -o-object-fit: cover;
  display:block
}
@media only screen and (max-width: 900px) {
  .swiper-container, .swiper-slide, .swiper-slide img {
    height: 400px;
  }
}
@media only screen and (max-width: 768.1px) {
  .swiper-container, .swiper-slide, .swiper-slide img {
    height: 300px;
  }
}
@media only screen and (max-width: 479px) {
  .swiper-slide, .swiper-slide img, .swiper-container {
    height: 200px;
  }
  .swiper-button-next, .swiper-button-prev {
    display: none !important;
  }
}
@media only screen and (max-width: 321px) {
  .swiper-container, .swiper-slide, .swiper-slide img {
    height: 150px;
  }
}
.banner .item {
  position: relative;
  font-family: Arial;
}
.banner .item .text {
  text-align: center;
  left: 0;
  width: 100%;
  text-align: center;
  color: #fff;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  -o-transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  font-size: 24px;
}
.banner .text h3 {
  font-size: 42px;
  margin-bottom: 20px;
  font-weight: normal;
  letter-spacing: 3px;
}
.banner .text a h3 {
  color: #fff;
}
.banner .text p {
  font-size: 16px;
  line-height: 26px;
  background: var(--glocolor);
  padding: 0 15px;
  display: inline-block;
  text-transform: uppercase;
  position: relative;
}
.banner .text p:after, .banner .text p:before {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 18px;
  content: '';
}
/* .banner .text p:after { */
/* background: url(images/icon9-1.png) no-repeat center center; */
/* left: 100%; */
/* margin-left: 5px; */
/* } */
/* .banner .text p:before { */
/* background: url(images/icon9.png) no-repeat center center; */
/* right: 100%; */
/* margin-right: 5px; */
/* } */
.banner .text p span {
  display: block;
}
.banner .text p:before, .banner .text p:after {
  content: "";
  width: 0;
  height: 0;
  position: absolute;
  top: 0;
  border-bottom: 26px solid var(--glocolor);
}
.banner .text p:before {
  left: -25px;
  border-left: 10px solid transparent;
}
.banner .text p:after {
  right: -25px;
  border-right: 10px solid transparent;
}
.banner .text p span:before, .banner .text p span:after {
  content: "";
  width: 5px;
  height: 100%;
  position: absolute;
  top: 0;
  background: var(--glocolor);
}
.banner .text p span:after {
  right: -10px;
}
.banner .text p span:before {
  left: -10px;
}
.banner .img1 {
  overflow: hidden;
  height: 320px;
}
.banner .img1 img {
  object-fit: cover;
  -o-object-fit: cover;
  width: 100%;
  height: 100%
}
/*----------mainer----------*/
.mainer {
  margin-top: 70px;
}
.page {
  padding-top: 60px;
}
.page_tit {
  text-align: center;
  margin-bottom: 40px;
}
.page_tit h3 {
  font-size: 32px;
  font-weight: normal;
}
.page_tit label {
  display: block;
  margin: 0 auto;
  margin-top: 20px;
  width: 78px;
  height: 5px;
  background: #222;
}
.page_tit p {
  text-align: center;
  max-width: 575px;
  line-height: 28px;
  color: #666;
  font-size: 16px;
  margin: 0 auto;
  margin-top: 20px;
  width: 90%
}
.full {
  position: fixed;
  top: 50%;
  right: 0;
  z-index: 1001;
  color: #fff
}
.full li a {
  display: block;
  width: 60px;
  height: 60px;
  margin-bottom: 1px;
  position: relative;
  background: #656d71;
  z-index: 1;
}
.full li a:hover span, .full li a:hover i {
  color: #fff;
  background-color: var(--glocolor) !important;
}
.full li:last-child a {
  border-bottom: 0;
}
.full li a span {
  display: block;
  width: 60px;
  height: 60px;
  position: relative;
  text-align: center;
  color: #fff;
  line-height: 60px;
  font-size: 26px;
  z-index: 100;
}
.full li:nth-child(2) a, .full li:nth-child(1) a {
  z-index: 2;
}
.full li a i {
  display: block;
  width: 100px;
  white-space: nowrap;
  padding: 0 20px;
  position: absolute;
  line-height: 60px;
  color: #fff;
  z-index: -1;
  bottom: 0;
  left: 100%;
  box-sizing: inherit;
  max-width: 300%;
  ;
}
.full li a:hover i {
  left: -130px;
  z-index: 101
}
.full li a .lbl_img {
  padding: 10px;
  height: auto;
  line-height: normal;
  width: 110px;
}
/*----------footer----------*/
.pagesize {
  text-align: center;
  padding: 30px 0;
}
.pagesize a {
  background: #fff;
  color: #666;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  display: inline-block;
  height: 34px;
  vertical-align: middle;
  line-height: 34px;
  width: 34px;
  margin: 5px;
}
.pagesize a.prev {
  background-image: url(images/icon10.png);
  background-position: center center;
  background-repeat: no-repeat;
}
.pagesize a.next {
  background-image: url(images/icon10-1.png);
  background-position: center center;
  background-repeat: no-repeat;
}
.pagesize a:hover, .pagesize a.on {
  background-color: var(--glocolor);
  color: #000
}
/*----------custom----------*/
.about .img {
  float: left;
}
.about .text {
  overflow: hidden;
  padding: 40px;
  line-height: 32px;
  font-size: 15px;
  color: #444;
}
.about .text p {
  height: 220px;
  overflow: hidden;
  margin-bottom: 10px;
}
.about .text h3 {
  font-size: 22px;
  font-weight: normal;
  color: #000;
  margin-bottom: 20px;
  margin-top: 15px;
}
.about {
  background: #f5f5f5;
}
.div_btn a {
  display: block;
  width: 132px;
  color: #fff;
  line-height: 40px;
  background: url(images/img_06.png) no-repeat center right var(--glocolor);
  padding-left: 20px;
}
.div_btn a:hover {
  padding-left: 40px;
  text-align: left;
}
.page {
  overflow: hidden;
}
.cn_list li {
  background: #242f35;
  width: 33.333%;
  position: relative;
  float: left;
}
.cn_list li:nth-child(2n) {
  background: var(--glocolor);
}
.cn_list li:nth-child(2n) .img .bg {
  background: linear-gradient(to left bottom, transparent 50%, var(--glocolor) 50%)
}
.cn_list li .img {
  max-width: 357px;
  float: right;
  width: 60%;
  position: relative;
}
.cn_list li .img img {
  height: 256px;
  max-width: initial;
  display: block;
}
.cn_list li .img .bg {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 30%;
  bottom: 0;
  z-index: 100;
  background: linear-gradient(to left bottom, transparent 50%, #242f35 50%)
}
.cn_list li .text {
  position: absolute;
  top: 50%;
  margin-top: -48px;
  width: 35%;
  left: 5%;
  color: #fff;
}
.cn_list li .text h3 {
  font-size: 20px;
  font-weight: normal;
  margin-bottom: 20px;
  overflow: hidden;
  text-overflow: ellipsis;
  font-weight: normal;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  position: relative;
}
.cn_list li .text p {
  line-height: 28px;
  font-size: 15px;
  overflow: hidden;
  text-overflow: ellipsis;
  font-weight: normal;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  position: relative;
}
.main_tit {
  text-align: center;
  margin-bottom: 60px;
}
.main_tit li {
  display: inline-block;
  margin: 3px 0;
}
.main_tit li a {
  display: block;
  width: 154px;
  height: 46px;
  line-height: 46px;
  font-size: 16px;
  background: #fff;
  margin: 0 10px;
  border: 1px solid #e1e1e1;
  transform: skew(-30deg);
}
.main_tit li a span {
  display: block;
  transform: skew(30deg);
}
.main_tit li a:hover, .main_tit li.on a {
  background: var(--glocolor);
  color: #fff
}
.product_tit {
  margin-bottom: 40px;
  background: #fff;
  border: 1px solid #e1e1e1;
}
.product_tit .img1 {
  float: left;
  background: var(--glocolor);
  width: 50%;
  position: relative;
}
.product_tit .img1 img {
  vertical-align: middle;
  height: 343px;
  width: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  max-width: initial;
}
.product_tit .img1 .bg {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 20%;
  right: 0;
  background: linear-gradient(to right bottom, transparent 50%, #fff 50%);
}
.product_tit .text {
  overflow: hidden;
  padding: 30px 20px;
}
.product_tit .text h3 {
  padding: 20px 0;
  font-size: 22px;
  font-weight: normal;
  color: #000;
}
.product_tit .text p {
  line-height: 28px;
  font-size: 15px;
  height: 115px;
  overflow: hidden;
  margin-bottom: 10px;
}
p {
  text-align: justify;
}
.product_list .img {
  height: 200px;
}
.product_list li:nth-child(4n+1) {
  clear: both;
}
.product_list li {
  width: 25%;
  float: left;
}
.product_list a {
  background: #fff;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  display: block;
  margin: 10px;
}
.product_list ul {
  margin: -10px;
}
.page.on {
  background: #f5f5f5;
}
ul:after {
  content: '';
  display: block;
  clear: both;
}
.product_list {
  padding-bottom: 50px;
}
.product_list .text {
  border-top: 1px solid #e8e8e8;
  text-align: center;
  padding: 20px;
  line-height: 26px;
}
.product_list .text h3 {
  font-size: 18px;
  font-weight: normal;
  margin-bottom: 10px;
}
.product_list .text p {
  text-align: center;
  color: #666;
  font-size: 15px;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  position: relative;
}
.page4 {
  color: #fff;
  padding: 60px 0;
  background: url(images/tlg.jpg) no-repeat center center;
}
.page4 h4 {
  display: inline-block;
  padding: 0 10px;
  line-height: 30px;
  margin-bottom: 20px;
  background: var(--glocolor);
  font-weight: normal;
  font-size: 15px;
}
.page4 h3 {
  font-size: 32px;
  font-weight: normal;
  margin-bottom: 20px;
  color: var(--glocolor);
  line-height: 40px;
}
.page4 label {
  display: inline-block;
  margin: 28px 0;
  width: 72px;
  height: 1px;
  background: var(--glocolor);
}
.page4 span {
  font-size: 20px;
}
.news_list {
  padding-bottom: 70px;
}
.news_list li {
  margin-bottom: 24px;
}
.news_list li a {
  display: block;
  border: 1px solid #e1e1e1;
  background: #fff;
}
.news_list .date {
  float: left;
  padding: 20px 0;
  margin-right: 65px;
  background: #f5f5f5;
  color: #999;
  font-size: 16px;
  line-height: 30px;
  text-align: left;
  padding-left: 25px;
  position: relative;
  transition: all 0s;
  -webkit-transition: all 0s;
  -moz-transition: all 0s;
  -ms-transition: all 0s;
  -o-transition: all 0s;
}
.news_list .date:before {
  content: "";
  position: absolute;
  top: 0;
  right: -65px;
  width: 65px;
  height: 100%;
  background: linear-gradient(to right bottom, #f5f5f5 50%, transparent 50%)
}
.news_list li a:hover .date {
  background: var(--glocolor);
}
.news_list li a:hover .date:before {
  background: linear-gradient(to right bottom, var(--glocolor) 50%, transparent 50%)
}
.news_list .date i {
  display: block;
  font-size: 36px;
  color: #999;
}
.news_list .text {
  overflow: hidden;
  padding-right: 200px;
  position: relative;
  padding-top: 10px;
}
.news_list .text .div_btn2 {
  position: absolute;
  top: 50%;
  margin-top: -20px;
  padding: 0 20px;
  line-height: 40px;
  background: #cfcfcf;
  color: #fff;
  right: 30px;
}
.news_list .text .div_btn2 span {
  display: inline-block;
  padding-right: 35px;
  background: url(images/icon7.png) no-repeat right center;
}
.news_list .text h3 {
  font-size: 18px;
  font-weight: normal;
  line-height: 30px;
  color: #000;
}
.news_list .text p {
  line-height: 26px;
  color: #444;
  height: 52px;
  overflow: hidden;
}
.news_list li a:hover .date span, .news_list li a:hover .date i, .news_list li a:hover .text h3, .news_list li a:hover .text p {
  color: #fff
}
.news_list li a:hover {
  background: #242f35
}
.news_list li a:hover .div_btn2 {
  background: var(--glocolor)
}
.links {
  width: 100%;
  line-height: 60px;
  color: #fff;
  background-color: var(--glocolor)
}
.links span {
  font-size: 18px;
  font-weight: bold;
  display: inline-block;
  float: left;
}
.links ul li a {
  float: left;
  display: inline-block;
  color: #fff;
  margin-right: 15px;
}
.footer {
  font-size: 14px;
  line-height: 30px;
  color: #fff;
  padding: 50px 0;
  background: #242f35
}
.footer a {
  color: #fff;
}
.f_nav li {
  float: left;
  line-height: 30px;
  padding: 20px;
  position: relative;
}
.f_nav ul {
  overflow: hidden;
  margin: 0 -20px;
}
.f_nav ul a {
  display: block;
  color: #fff;
}
.f_nav ul a:hover {
  color: var(--glocolor)
}
.f_nav li:first-child:before {
  display: none;
}
.f_nav li:before {
  position: absolute;
  top: 50%;
  width: 6px;
  height: 6px;
  margin-top: -3px;
  right: 100%;
  margin-right: -3px;
  content: '';
  display: block;
  background: url(images/icon8.png) no-repeat center center;
}
.f_text span {
  color: var(--glocolor)
}
.f_ewm {
  width: 125px;
  text-align: center;
}
.case_list, .prolist {
  padding: 40px 0;
  background: #f5f5f5;
}
.case_list li {
  margin-bottom: 20px;
  border: 1px solid #e1e1e1;
  background: #fff;
}
.case_list .img {
  float: right;
  width: 40%;
  margin: -1px
}
.case_list .img img {
  display: block;
}
.case_list .text {
  overflow: hidden;
  padding: 30px;
  line-height: 28px;
}
.case_list .text h3 {
  font-size: 22px;
  line-height: 50px;
}
.case_list .text p {
  height: 112px;
  overflow: hidden;
  margin-bottom: 20px;
}
.d_tit {
  padding: 40px 0;
  background: #fff;
}
.d_tit .main_tit {
  margin-bottom: 0;
  margin-top: 30px;
}
.d_tit h1 {
  padding-bottom: 15px;
  position: relative;
  color: #222;
  padding-right: 100px;
  font-weight: normal;
  font-size: 32px;
  line-height: 60px;
  border-bottom: 1px solid var(--glocolor);
}
.d_tit h1:before {
  content: '';
  display: block;
  width: 47px;
  height: 5px;
  bottom: -3px;
  background: var(--glocolor);
  position: absolute;
}
.d_tit h1 span {
  font-size: 15px;
  position: absolute;
  right: 0;
  top: 15px;
  color: #999
}
.details_txt {
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  margin: 30px 0 80px;
  background: #fff;
  padding: 25px;
  line-height: 26px;
  font-size: 15px;
}
.details_txt p, .pagetxt p {
  line-height: 1.7;
  margin-bottom: 15px;
  font-size: 16px;
}
.details_cur {
  line-height: 15px;
  border-top: 1px solid #d8d8d8;
  padding-top: 20px;
}
.details_cur span {
  display: block;
  max-width: 45%;
}
.details_cur a {
  display: block;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  color: #666
}
.details_cur a:hover {
  color: #242f35;
  text-decoration: underline;
}
.sitemap {
  margin-bottom: 16px;
  font-size: 14px;
  color: #888;
  line-height: 14px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.sitemap a {
  color: #888;
}
.pro_tit {
  margin-bottom: 20px;
}
.pro_tit .img {
  float: left;
  max-width: 30%;
  height: 220px;
}
.pro_tit .txt {
  overflow: hidden;
  padding: 0 20px;
}
.pro_tit h1 {
  font-size: 26px;
  line-height: 30px;
  font-weight: normal;
  padding: 20px 0;
  letter-spacing: 2px;
}
.pro_tit .tit p {
  line-height: 26px;
  margin-bottom: 0;
}
.pro_tit .tit {
  border-bottom: 1px solid #d8d8d8;
  padding-bottom: 15px;
  margin-bottom: 10px;
}
.pro_tit .info {
  line-height: 36px;
  color: #999
}
.pro_tit .news {
  padding: 0;
  margin-bottom: 0 !important
}
.pro_tit .news h1 {
  padding-top: 0;
}
.pro_tit .news .tit {
  padding-bottom: 15px;
  margin-bottom: 0;
}
.pro_tit .news .tit p {
  color: #666;
}
.tags {
  margin: 10px 0;
  color: #666;
}
.tags a {
  margin-right: 5px;
}
.info_btn a {
  display: block;
  width: 198px;
  line-height: 46px;
  background: #ed001e;
  color: #fff;
  text-align: center;
  font-size: 18px;
  float: right;
  margin-left: 20px;
  margin-top: 5px;
}
.info_btn p {
  overflow: hidden;
  line-height: 26px;
}
.info_btn p span {
  display: block;
  font-size: 18px;
  color: #ed001e;
  letter-spacing: 2px;
  font-weight: bold;
}
.info_btn {
  margin-top: 15px;
}
.pro_tag {
  margin-bottom: 30px;
  background: #242f35;
  padding: 0 60px;
}
.pro_tag li {
  margin-left: -25px;
  float: left;
  width: 164px;
  line-height: 46px;
  text-align: center;
  background: var(--glocolor);
  color: #fff;
  transform: skew(-30deg);
}
.pro_tag li span {
  font-size: 16px;
  display: block;
  cursor: pointer;
  transform: skew(30deg);
}
.details_txt2 {
  margin-top: 0;
  margin-bottom: 30px;
}
/* 评论 */
.commen_pl * {
  margin: 0;
  padding: 0
}
.commen_pl * {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}
ul.msg {
  margin: 25px 0;
  padding: 0 0 25px;
  border-bottom: 1px solid #eee;
  word-wrap: break-word;
}
li.msgurl {
  text-align: right;
  padding: 2px 10px;
}
li.msggravatar {
  display: block;
  float: left;
  margin-right: 5px;
}
li.msgarticle {
  list-style-position: outside;
  padding: 10px 0 0;
  line-height: 160%;
  padding-left: 65px;
}
img.avatar {
  float: left;
  width: 48px;
  height: 48px;
  margin: 0 15px 0 0;
}
ul.msg small {
  color: #a6a6a6;
}
ul.msg h3 small {
  font-size: 12px;
}
ul.msg ul.msg {
  padding: 20px 0 0;
  margin: 20px 0 0;
  border-top: 1px solid #f1f1f1;
  border-bottom: none;
}
ul.msg ul.msg li.msgarticle {
  padding-bottom: 0;
}
ul.msg ul.msg li.msgname {
  padding: 0;
}
ul.msg.msghead {
  min-height: 38px;
  margin-bottom: 0;
  padding-bottom: 0;
  font-size: 16px;
  color: #448EF6;
}
ul.msg.msghead em {
  color: #f90;
  margin-right: 2px;
  font-style: normal;
}
ul.pagebar, ul.msghead {
  border: none;
}
ul.msghead li.tbname {
  padding-bottom: 10px;
  border-bottom: 1px solid #eee;
}
ul.msg:nth-last-child(2) {
  border-bottom: 0;
}
.jz-comment h3, .jz-comments h3 {
  padding-bottom: 15px;
  margin: 20px 0 15px 0;
  overflow: visible;
  position: relative;
  border-bottom: 1px solid var(--glocolor);
  font-size: 26px;
  font-weight: normal;
}
.jz-comment h3:before {
  content: '';
  display: block;
  width: 47px;
  height: 5px;
  bottom: -3px;
  background: var(--glocolor);
  position: absolute;
}
.jz-comments h4 {
  margin-bottom: 10px;
  text-align: center;
  padding: 0 10px;
  font-size: 17px;
  font-weight: normal;
  margin-bottom: 8px;
}
.jz-comment input {
  line-height: 30px;
  height: 30px;
  font-size: 14px;
  width: 100%;
  border: 0;
  padding-left: 8px;
  border-radius: 0;
  background-color: transparent;
}
.jz-comment label, .jz-comments label {
  display: none;
}
.jz-comment textarea {
  border: 0;
  height: 120px;
  width: 100%;
  font-size: 14px;
  display: block;
  padding: 8px;
  background-color: transparent;
}
.jz-comment-box {
  border: 1px solid #ddd;
  padding: 4px;
  position: relative;
  margin-bottom: 6px;
}
.jz-comment-ul4 {
  float: left;
  width: 49.5%;
}
.jz-comment-ul3 {
  float: left;
  width: 32.66%;
}
.jz-comment .jz-comment-ul4:nth-child(2n) {
  float: right;
}
.jz-comment .jz-comment-ul3-2 {
  margin: 0 1%;
}
.jz-comment-box img.jz-code {
  position: absolute;
  right: 4px;
  top: 4px;
  height: 30px;
  width: auto;
}
.jz-comment-box input.button {
  line-height: 40px;
  height: 40px;
  width: 100px;
  background: var(--glocolor);
  color: #fff;
  position: absolute;
  right: 0;
  bottom: 0;
  padding: 0;
}
.jz-comment-textarea {
  width: 100%;
  clear: both;
}
.jz-red {
  color: #f1404b;
}
.reply-frm {
  margin-top: 15px;
}
.commen_pl .pagelist {
  box-shadow: none;
}
/* 评论end */
@media only screen and (max-width: 1100px) {
  .tel {
    padding: 0 20px;
  }
  .tel span {
    padding-right: 0
  }
  .header .wrap {
    padding-right: 180px;
    padding-left: 250px;
  }
  .t_list li span label {
    font-size: 50px;
  }
  .t_list li {
    margin-right: 20px;
  }
  .main_tit li a {
    width: 150px;
    height: 50px;
    line-height: 50px;
  }
  .cn_list li .text h3 {
    white-space: normal
  }
}
@media only screen and (max-width: 1600px) {
  .banner .item .text {
    font-size: 22px;
  }
}
@media only screen and (max-width: 1200px) {
  .banner .item .text {
    font-size: 20px;
  }
}
@media only screen and (max-width: 1000px) {
  .banner .item .text {
    font-size: 18px;
  }
}
@media only screen and (max-width:900px) {
  .menu {
    position: fixed;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: #242f35;
  }
  .menu ul li {
    float: none;
    display: block;
    border-bottom: 1px solid #ddd;
    padding: 0;
  }
  .menu ul li a {
    line-height: 45px;
    font-size: 18px;
  }
  .menu ul {
    padding-top: 60px;
  }
  .menu ul li .sub-nav {
    display: none;
  }
  .header .logo {
    position: relative;
    z-index: 1001;
    line-height: 60px;
    height: 60px;
  }
  .logo:after {
    right: -35px;
    border-bottom-width: 65px;
    border-right-width: 35px;
  }
  .menu_wrap {
    position: absolute;
    top: 10px;
    width: 40px;
    height: 40px;
    background-size: 25px auto;
    right: 15px;
  }
  .menu_wrap:before, .h_menu .menu_wrap:before {
    font-family: "iconfont" !important;
    content: "\e600";
    color: var(--glocolor);
    font-size: 26px;
    line-height: 1;
    top: 8px;
    left: 0;
    position: absolute;
  }
  .h_menu .menu_wrap:before {
    content: "\e697";
  }
  .h_menu .menu {
    left: 0;
  }
  .header {
    line-height: 60px;
  }
  .mainer {
    margin-top: 60px;
  }
  .page {
    padding-top: 40px;
  }
  .page4 {
    background-position: top left;
    text-align: center;
  }
  .page4 p {
    text-align: center;
  }
  .header .wrap {
    padding: 0
  }
  .tel {
    right: 75px;
    border-left: 0;
    border-right: 1px solid #445863
  }
  .menu ul li {
    margin: 5px 0;
    text-align: left;
    padding: 0 10px;
    display: block;
    border-bottom-color: #000
  }
  .menu ul li a {
    display: block;
    padding: 0 20px;
  }
  .menu ul {
    display: block;
  }
  .menu ul li.on a:before, .menu ul li a:hover:before {
    width: 5px;
    left: 0;
    top: 10px;
    height: auto;
    bottom: 10px;
    right: auto
  }
  .about .img {
    width: 400px;
  }
  .about .text h3 {
    margin: 10px 0
  }
  .about .text {
    padding: 20px 30px;
  }
  .cn_list li .text {
    margin-top: -60px;
  }
  .main_tit li a {
    width: 120px;
    line-height: 35px;
    height: 35px;
  }
  .product_list a {
    margin: 5px;
  }
  .news_list {
    padding-bottom: 40px;
  }
  .t_list ul {
    white-space: nowrap
  }
  .ry_list li a {
    margin: 10px;
  }
  .ry_list ul {
    margin: -10px;
  }
  .case_list .text p {
    height: 80px;
    margin-bottom: 10px;
  }
  .pagesize {
    padding: 10px 0
  }
  .contact li {
    width: 100%;
    white-space: normal;
  }
  .contact li p {
    overflow: hidden;
  }
  .contact {
    margin-top: 20px;
  }
  .info_btn a {
    float: none;
    width: 100%;
    margin-left: 0
  }
  .case_list, .prolist {
    padding: 20px 0;
  }
  .banner .img1 {
    height: 200px;
  }
  .product_list .img {
    height: 160px;
  }
  .pro_tit .info {
    line-height: 26px;
  }
  .pro_tit h3 {
    padding: 5px 0;
    white-space: normal
  }
  .pro_tit .tit {
    padding-bottom: 5px;
    margin-bottom: 5px;
  }
  .product_list {
    padding-bottom: 30px;
  }
  .case_list .text {
    padding: 15px;
  }
  .case_list .img {
    width: 340px;
  }
}
@media only screen and (max-width: 750px) {
  .banner .text h3 {
    font-size: 34px;
  }
  .d_tit h1 {
    line-height: 50px;
    font-size: 26px;
  }
  .d_tit {
    padding: 20px 0
  }
  .d_tit .main_tit {
    margin-top: 20px;
  }
  .product_list li {
    width: 50%;
  }
  .pro_tit .img {
    float: none;
    max-width: 100%;
  }
  .product_list .img {
    height: 190px;
  }
  .pro_tit .txt {
    padding: 0;
    margin-bottom: 20px;
  }
  .pro_tag {
    padding: 0
  }
  .pro_tag li {
    margin-left: 0;
    width: 30%;
  }
  .about .img {
    width: 300px;
  }
  .about .text h3 {
    margin: 0
  }
  .about .text p {
    height: 130px;
    margin-bottom: 20px;
  }
  .page_tit h3 {
    font-size: 26px;
  }
  .page_tit p {
    font-size: 14px;
    line-height: 25px;
  }
  .cn_list li {
    width: 100%;
  }
  .page_tit {
    margin-bottom: 20px;
  }
  .full {
    display: none;
  }
  .about3 {
    padding-right: 0
  }
  .img_map {
    position: initial;
    top: auto;
    left: auto;
    right: auto;
    bottom: auto;
    height: 400px;
    width: 100%;
    margin-top: 20px;
  }
  .case_list .img {
    width: 220px;
    float: left;
    margin-left: 0;
    margin-right: 5px;
  }
  .case_list .text p {
    height: 30px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }
  .about2 .img {
    position: initial;
    top: auto;
    left: auto;
    bottom: auto;
    float: left;
    margin-right: 20px;
    width: 50%;
  }
  .his_list li span {
    width: 60px;
  }
  .his_list li .box p {
    padding-left: 35px;
  }
  .his_list .list .line {
    left: 63px;
  }
  .zp_list .list {
    margin-top: 0
  }
  .zp_list .list .tit {
    line-height: 50px;
  }
  .zp_list .list .box {
    padding: 10px;
  }
  .about2 .text {
    padding-right: 0
  }
  .case_list .text h3 {
    line-height: 30px;
    font-size: 18px;
  }
  .ry_list li {
    width: 50%;
  }
  .ry_list li img {
    margin: 0 auto;
  }
}
@media only screen and (max-width: 600px) {
  .header .logo {
    width: 150px;
  }
  .logo:after {
    right: -35px;
    border-bottom-width: 60px;
    border-right-width: 35px;
  }
  .news_list .text .div_btn2 {
    padding: 0 10px;
    right: 15px;
  }
  .news_list .text {
    padding-right: 150px
  }
  .tel {
    padding: 0 10px;
    right: 50px;
  }
  .tel span {
    font-size: 20px;
    font-family: 'Microsoft YaHei', "Open Sans", sans-serif;
  }
  .banner .text h3 {
    font-size: 26px;
    margin-bottom: 10px;
  }
  .d_tit h1 {
    font-size: 24px;
  }
  .product_list ul {
    margin: 0
  }
  .ht30 {
    height: 10px
  }
  .product_list .text {
    padding: 10px;
  }
  .product_list .text p {
    padding: 0
  }
  .f_ewm {
    float: none;
    margin: 0 auto;
    margin-top: 10px;
  }
  .f_nav li {
    padding: 0 10px
  }
  .f_nav ul {
    margin: 0 -10px;
  }
  .footer {
    padding: 20px 0;
    text-align: center;
  }
  .f_nav li {
    float: none;
    display: inline-block
  }
  .footer .flt {
    float: none;
  }
  .footer p {
    text-align: center;
  }
  .menu_wrap {
    right: 0;
  }
  .news_list .date {
    padding: 20px 10px;
    padding-right: 20px;
  }
  .about .img {
    width: 100%;
    float: none;
  }
  .about .text {
    padding: 20px;
  }
  .product_tit .text h3 {
    padding: 10px 0;
  }
  .product_tit .text {
    padding-top: 20px;
  }
  .product_tit .text p {
    height: 56px;
  }
  .product_tit .img1 img {
    height: 220px;
  }
  .news_list .text .div_btn2 {
    display: none;
  }
  .news_list .text {
    padding-right: 10px
  }
  .d_tit h1 {
    padding-right: 0;
    line-height: 30px;
  }
  .d_tit h1 span {
    position: initial;
    top: auto;
    bottom: auto;
    display: block;
  }
  .t_list {
    margin-top: 20px;
  }
  .t_list li {
    display: block;
    line-height: 54px;
  }
  .t_list li br {
    display: none;
  }
  .about2 .text li p {
    margin-bottom: 0;
    line-height: 54px;
  }
  .case_list .img {
    width: 150px;
  }
  .case_list .text .div_btn {
    display: none;
  }
  .case_list .text p {
    margin-bottom: 0
  }
  .case_list .text {}
  .pagesize a {
    width: 26px;
    height: 26px;
    line-height: 26px;
    margin: 2px;
  }
  .case_list li {
    margin-bottom: 10px;
  }
}
@media only screen and (max-width: 479px) {
  .product_list .img {
    height: 140px;
  }
}
@media only screen and (max-width: 376px) {
  .banner .img1 {
    height: 180px;
  }
  .product_list .img {
    height: 120px;
  }
  .tel span {
    font-size: 26px;
  }
  .tel span i {
    display: none
  }
}