/* CSS Document */
td {
    display: table-cell;
    vertical-align: inherit;
    border:1px solid #666;
    padding:10px;
    box-sizing:border-box;
}
table {
    border-collapse: collapse;
    border-spacing: 2px;
    width:100%;
}
/* ---------- banner ---------- */
.banner {
  height: 600px;
  background-position: center top;
  background-size: cover;
  /* margin-top: 90px; */
}
.banner.article {
  height: 100px;
}

.banner-tit {
  padding-top: 288px;
  color: #fff;
}
.banner-tit h2 {
  font-size: 68px;
  font-weight: normal;
}
.banner-tit h2 span {
  position: relative;
  display: inline-block;
}
.banner-tit h2 span:after {
  position: absolute;
  right: -48px;
  bottom: 18px;
  width: 28px;
  height: 6px;
  background: #fff;
  content: "";
}
.banner-tit h1 {
  font-size: 24px;
  font-weight: 400;
}

/* responsive */
@media only screen and (max-width: 1024px) {
  .banner {
    height: 320px;
	margin-top: 54px;
  }

  .banner-tit {
    padding-top: 120px;
  }
  .banner-tit h2 {
    font-size: 36px;
  }
  .banner-tit h2 span:after {
    right: -32px;
    bottom: 10px;
    width: 20px;
    height: 4px;
  }
  .banner-tit h1 {
    font-size: 20px;
  }
}

/* ---------- sub nav ---------- */
.sub-nav {
  border-bottom: 1px solid #efefef;
}
.sub-nav .con {
  margin: auto;
  padding: 24px 20px;
  max-width: 1600px;
  overflow: hidden;
}
.sub-nav li {
  float: left;
  margin-right: 20px;
  width: 14%;
}
.sub-nav li a {
  display: block;
  height: 48px;
  border-radius: 5px;
  background: #fff;
  font-size: 16px;
  line-height: 48px;
  text-align: center;
  /* border:1px solid #0759a0; */
}
.sub-nav li a.current {
  background: #0759a0;
  color: #fff;
}

/* responsive */
@media only screen and (max-width: 1024px) {
  .sub-nav {
    border-bottom: 0;
    background: #f6f6f6;
  }
  .sub-nav .con {
    padding: 16px 12px;
    width: auto;
  }
  .sub-nav li {
    margin-right: 0;
    padding: 8px;
    width: 50%;
    box-sizing: border-box;
  }
  .sub-nav li a {
    padding: 0 12px;
    height: 40px;
    line-height: 40px;
  }
}

/* ---------- about ---------- */
.about-intro {
  padding: 80px 0;
  font-size: 15px;
  line-height: 240%;
}
.about-intro p {
  padding-bottom: 24px;
}
.about-intro img {
  padding: 20px 0;
  max-width: 100%;
}

/* responsive */
@media only screen and (max-width: 1024px) {
  .about-intro {
    padding: 60px 0;
  }
  .about-intro img {
    width: 100%;
    height: 100%;
  }
}

/* ---------- product ---------- */
.product-list {
  padding: 100px 0;
  overflow: hidden;
}
.product-list ul {
  padding-bottom: 20px;
  width: calc(100% + 40px);
  overflow: hidden;
}
.product-list li {
  float: left;
  margin: 0 40px 40px 0;
  width: calc(100% / 3 - 40px);
}
.product-list li a {
  display: block;
  border: 2px solid #f0f0f0;
  background: #fafafa;
}
.product-list li .pic {
  width: 100%;
  height: 100%;
  overflow: hidden;
      padding: 20px;
	  box-sizing:border-box;
	  background: #fff;
}
.product-list li .pic img {
  width: 100%;
  transition: all 0.3s ease-in-out;
}
.product-list li a:hover .pic img {
  transform: scale(1.05);
}
.product-list li .con {
  padding: 24px;
  background: url("../image/product-more.png") no-repeat right 24px bottom 28px;
}
.product-list li .con h4 {
  font-size: 16px;
  font-weight: normal;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.product-list li .con p {
  padding-top: 12px;
  font-size: 14px;
  color: #999;
}
.product-list li a:hover {
  border: 2px solid #0759a0;
  background: #0759a0;
  box-shadow: 0 4px 24px rgba(0,0,0,0.1);
}
.product-list li a:hover h4, .product-list li a:hover p {
  color: #fff;
}

/* responsive */
@media only screen and (max-width: 1024px) {
  .product-list {
    padding: 60px 0;
  }
  .product-list ul {
    width: auto;
  }
  .product-list li {
    margin: 0 0 16px 0;
    width: 50%;
    box-sizing: border-box;
  }
  .product-list li:nth-of-type(odd) {
    padding-right: 8px;
  }
  .product-list li:nth-of-type(even) {
    padding-left: 8px;
  }
  .product-list li .pic {
    width: auto;
    height: auto;
  }
  .product-list li .con {
    padding: 16px;
    background: url("../image/product-more.png") no-repeat right 16px bottom 16px;
  }
  .product-list li .con h4 {
    font-size: 15px;
  }
  .product-list li .con p {
    padding-top: 8px;
  }
}

/* ---------- product detail ---------- */
.product-tag {
  padding: 80px 0 40px;
}
.product-tag a {
  display: inline-block;
  padding: 4px 12px;
  border: 1px solid #0759a0;
  border-radius: 2px;
  font-size: 14px;
  color: #0759a0;
}

.product-detail {
  border-top: 1px solid #efefef;
  border-bottom: 1px solid #efefef;
}
.product-pic {
  float: left;
  width: 50%;
  padding:30px;
  box-sizing: border-box;
  background: #f0f0f0;
  display: flex;
  flex-direction:column;
  justify-content: center;
}
.product-pic img {
  width: 100%;
}
.product-desc {
  float: right;
  width: 47%;
}
.product-desc .tit {
  padding: 36px 0;
}
.product-desc .tit h1 {
  font-size: 32px;
  color: #0759a0;
  text-align: center;
}
.product-desc .con {
  padding: 40px 0;
  border-top: 1px solid #efefef;
  border-bottom: 1px solid #efefef;
  font-size: 15px;
  line-height: 240%;
}
.product-pic video{
	width:100%;
}
.product-desc .share {
  padding: 32px 0;
}

.product-intro {
  padding: 60px 0;
}
.product-intro .tit {
  text-align: center;
}
.product-intro .tit h2 {
  position: relative;
  font-size: 16px;
  color: #0759a0;
}
.product-intro .tit h2:before {
  position: absolute;
  top: 50%;
  left: 0;
  width: calc(50% - 50px);
  height: 1px;
  background: #efefef;
  content: "";
}
.product-intro .tit h2:after {
  position: absolute;
  top: 50%;
  right: 0;
  width: calc(50% - 50px);
  height: 1px;
  background: #efefef;
  content: "";
}
.product-intro .con {
  padding: 40px 0;
  font-size: 15px;
  line-height: 240%;
}

/* responsive */
@media only screen and (max-width: 1024px) {
  .product-tag {
    padding: 60px 0 32px;
  }
}

@media only screen and (max-width: 768px) {
  .product-tag {
    padding: 48px 0 32px;
  }

  .product-pic {
    float: none;
    width: 100%;
  }
  .product-desc {
    float: none;
    width: auto;
  }
  .product-desc .tit {
    padding: 24px 0;
  }
  .product-desc .tit h1 {
    font-size: 20px;
  }
  .product-desc .con {
    padding: 20px 0;
  }
  .product-desc .share {
    padding: 20px 0;
  }

  .product-intro {
    padding: 40px 0;
  }
  .product-intro .con {
    padding: 20px 0;
	overflow-y: auto;
  }
}

/* ---------- case ---------- */
.case-list {
  padding: 100px 0;
  overflow: hidden;
}
.case-list ul {
  width: calc(100% + 40px);
  overflow: hidden;
}
.case-list li {
  float: left;
  position: relative;
  margin: 0 40px 60px 0;
  width: calc(100% / 4 - 44px);
  border:1px solid #e5e5e5;
}
.case-list li:nth-child(4n){
	margin: 0 0 60px 0;
}
.case-list li a {
  display: block;
}
.case-list li .pic {
  width: 100%;
  height: 100%;
  overflow: hidden;
  box-sizing: border-box;
  padding:20px;
}
.case-list li .pic img {
  width: 100%;
  transition: all 0.3s ease-in-out;
}
.case-list li a:hover .pic img {
  transform: scale(1.05);
}
.case-list li .con {
  position: absolute;
  left: 20px;
  right: 20px;
  bottom: 20px;
  padding: 20px 10px;
  background: url("../image/product-more.png") no-repeat right 10px center #fff;
}
.case-list li .con h4 {
  height: 40px;
  font-size: 16px;
  line-height: 40px;
  font-weight: normal;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.case-list li a:hover {
  box-shadow: 0 4px 24px rgba(0,0,0,0.1);
}

/* responsive */
@media only screen and (max-width: 1024px) {
  .case-list {
    padding: 60px 0;
  }
  .case-list li {
    margin: 0 40px 40px 0;
  }
}

@media only screen and (max-width: 768px) {
  .case-list ul {
    padding-bottom: 8px;
    width: auto;
  }
  .case-list li {
    float: none;
    margin: 0 0 32px 0;
    width: auto;
  }
  .case-list li .pic {
    width: auto;
    height: auto;
  }
  .case-list li .con {
    padding: 16px 20px;
    background: url("../image/product-more.png") no-repeat right 20px center #fff;
  }
  .case-list li .con h4 {
    height: 20px;
    font-size: 15px;
    line-height: 20px;
  }
}

/* ---------- news ---------- */
.news-list {
  padding: 60px 0 100px;
}
.news-list ul {
  padding-bottom: 50px;
}
.news-list li {
  padding: 40px 0;
  border-bottom: 1px solid #efefef;
  overflow: hidden;
}
.news-list li .pic {
  float: left;
  position: relative;
  width: 26%;
  box-shadow: 4px 4px 20px rgba(0,0,0,0.1);
  overflow: hidden;
}
.news-list li .pic img {
  width: 100%;
  transition: all 0.3s ease-in-out;
}
.news-list li .pic .date {
    display: none;
  position: absolute;
  top: 20px;
  left: 20px;
  padding: 4px 8px;
  border-radius: 3px;
  background: rgba(255,255,255,0.8);
  
  font-size: 14px;
  color: #999;
}
.news-list li .con {
  float: right;
  width: 70%;
}
.news-list li .con h4 {
  padding-top: 16px;
  font-size: 20px;
  line-height: 160%;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.news-list li .con p {
  padding-top: 24px;
  font-size: 14px;
  color: #888;
  line-height: 200%;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
}
.news-list li .btm {
  padding-top: 36px;
}
.news-list li .more-btn {
  padding-right: 36px;
  background: url("../image/product-more.png") no-repeat right center;
  font-size: 12px;
  color: #ccc;
  transition: all 0.3s ease-in-out;
}
.news-list li a:hover .pic img {
  transform: scale(1.05);
}
.news-list li a:hover .more-btn {
  padding-right: 48px;
}

/* responsive */
@media only screen and (max-width: 1024px) {
  .news-list {
    padding: 20px 0 60px;
  }
  .news-list li .con h4 {
    padding-top: 4px;
  }
  .news-list li .con p {
    padding-top: 12px;
  }
  .news-list li .btm {
    padding-top: 20px;
  }
}

@media only screen and (max-width: 768px) {
  .news-list {
    padding: 32px 0 60px;
  }
  .news-list ul {
    padding-bottom: 40px;
  }
  .news-list li {
    padding: 28px 0;
    height: auto;
  }
  .news-list li .pic {
    float: none;
    width: auto;
  }
  .news-list li .con {
    float: none;
    width: auto;
  }
  .news-list li .con h4 {
    font-size: 16px;
  }
  .news-list li .con p {
    padding-top: 8px;
    line-height: 180%;
  }
  .news-list li .btm {
    padding-top: 8px;
  }
}

/* ---------- page ---------- */
.page {
  clear: both;
  text-align: center;
}
.page a {
  display: inline-block;
  margin: 0 2px;
  width: 40px;
  height: 40px;
  border-radius: 100%;
  font-family: Arial;
  font-size: 15px;
  color: #666;
  line-height: 40px;
  text-align: center;
}
.page a:hover {
  background: #eaeaea;
}
.page a.crt {
  background: #0759a0;
  color: #fff;
}
.page a.disable {
  background: #eaeaea;
  color: #666;
}

/* ---------- contact ---------- */
.contact-wrap {
  padding: 100px 0;
}
.contact-tit {
  padding-bottom: 80px;
}
.contact-tit h3 {
  font-size: 24px;
  font-weight: normal;
}
.contact-tit p {
  padding-top: 20px;
  font-size: 14px;
  color: #999;
}

.contact-list {
  overflow: hidden;
  padding-top: 20px;
}
.contact-list ul {
  width: calc(100% + 30px);
}
.contact-list li {
  float: left;
  margin-right: 30px;
  padding: 60px 20px 40px;
  border: 1px solid #efefef;
  box-sizing: border-box;
  background: url("../image/contact-bg.png") no-repeat center bottom;
  width: calc(100% / 3 - 30px);
  text-align: center;
  transition:0.3s;
}
.contact-list li:hover{
	transform: translate(0px,-5px);
	box-shadow: 0px 1px 5px 1px rgba(6, 6, 6, 0.09);
}
.contact-list li:first-child {
  background: url("../image/contact-bg.png") no-repeat left bottom;
}
.contact-list li:last-child {
  margin-right: 0;
  background: url("../image/contact-bg.png") no-repeat right bottom;
}
.contact-list li i {
  display: inline-block;
  width: 80px;
  height: 80px;
  border: 1px solid #0759a0;
  border-radius: 100%;
  background-repeat: no-repeat;
  background-position: center;
  background-size: 32px;
}
.contact-list li i.ico-1 {
  background-image: url("../image/contact-ico-1.png");
}
.contact-list li i.ico-2 {
  background-image: url("../image/contact-ico-2.png");
}
.contact-list li i.ico-3 {
  background-image: url("../image/contact-ico-3.png");
}
.contact-list li h4 {
  padding-top: 24px;
  font-size: 15px;
}
.contact-list li p {
  padding-top: 12px;
  height: 40px;
  font-size: 15px;
}
.contact-con {
  padding: 48px 20px;
  border-bottom: 1px solid #efefef;
  text-align: center;
}
.contact-con li {
  font-size: 14px;
  line-height: 32px;
}
.telephoneul li{
	margin-top:30px;
	width: calc(100% / 4 - 30px);
}
.contact-qrcode {
  padding-top: 60px;
  text-align: center;
}
.contact-qrcode img {
  border: 1px solid #efefef;
  border-radius: 4px;
}
.contact-qrcode p {
  padding-top: 15px;
  font-size: 13px;
  color: #999;
}
.contact-map {
  position: relative;
  width: 100%;
  height: 600px;
}
.contact-map #map {
  width: 100%;
  height: 100%;
}

/* responsive */
@media only screen and (max-width: 1024px) {
  .contact-wrap {
    padding: 48px 0;
  }
  .contact-tit {
    padding-bottom: 48px;
  }
  .contact-tit h3 {
    font-size: 18px;
  }
  .contact-tit p {
    padding-top: 16px;
  }

  .contact-list ul {
    width: auto;
  }
  .contact-list li {
    float: none;
    margin-right: 0;
    margin-bottom: 20px;
    padding: 32px 20px 12px;
    width: auto;
  }
  .contact-list li i {
    width: 64px;
    height: 64px;
    background-size: 28px;
  }
  .contact-list li h4 {
    padding-top: 8px;
    font-size: 14px;
  }
  .contact-list li p {
    padding-top: 4px;
    font-size: 14px;
  }
  
  .contact-con {
    padding: 32px 20px;
  }

  .contact-map {
    height: 400px;
  }
}

/* ---------- article ---------- */
.article-wrap {
  padding: 100px 0;
}

.article-main {
  float: left;
  width: 68%;
}

.article-tag a {
  display: inline-block;
  padding: 4px 12px;
  border: 1px solid #0759a0;
  border-radius: 2px;
  font-size: 14px;
  color: #0759a0;
}

.article-tit {
  padding: 30px 0 39px;
}
.article-tit h1 {
  font-size: 32px;
}

.article-bar {
  padding: 12px 16px;
  border: 1px solid #f0f0f0;
  background: #fafafa;
  overflow: hidden;
}
.article-bar .info {
  float: left;
  font-family: Arial;
  color: #999;
  line-height: 24px;
}
.article-bar .date {
  padding-left: 24px;
  background: url("../image/date-ico.png") no-repeat left center;
}
.article-bar .visit {
  padding-left: 24px;
  background: url("../image/visit-ico1.png") no-repeat left center;
}
.article-bar .share {
  float: right;
}

.article-con {
  padding-top: 60px;
  font-size: 16px;
  line-height: 240%;
}
.article-con p {
  padding-bottom: 24px;
}
.article-con img {
  padding: 20px 0;
  max-width: 100%;
}

.article-side {
  float: right;
  margin-top: 140px;
  padding: 30px 29px;
  width: 25%;
  box-sizing: border-box;
  border: 1px solid #efefef;
  border-top: 2px solid #0759a0;
}
.article-side h3 {
  font-size: 18px;
  color: #0759a0;
}
.article-side ul {
  padding-top: 30px;
}
.article-side li {
  padding-bottom: 30px;
}
.article-side li img {
  width: 100%;
}
.article-side li h4 {
  padding-top: 16px;
  font-size: 14px;
  font-weight: normal;
  line-height: 160%;
}
.article-side li p {
  padding-top: 12px;
  font-family: Arial;
  font-size: 13px;
  color: #999;
  line-height: 20px;
}
.article-side li .date {
  padding-left: 22px;
  background: url("../image/date-ico.png") no-repeat left center;
}
.article-side li .visit {
  padding-left: 22px;
  background: url("../image/visit-ico1.png") no-repeat left center;
}

.article-btm {
  padding: 60px 20px;
  background: #f6f6f6;
}
.article-btm .con {
  margin: auto;
  padding: 50px 0;
  max-width: 1600px;
  background: #fff;
  overflow: hidden;
}
.article-btm .related {
  float: left;
  padding: 0 60px;
  width: 68%;
  box-sizing: border-box;
  overflow: hidden;
}
.article-btm .related h4 {
  font-size: 14px;
  font-weight: normal;
  color: #999;
}
.article-btm .related p {
  padding-top: 12px;
  font-size: 15px;
  line-height: 160%;
}
.article-btm a.prev {
  float: left;
  display: block;
  width: 46%;
}
.article-btm a.prev .arrow {
  padding-left: 30px;
  background: url("../image/prev-arrow.png") no-repeat left center;
}
.article-btm a.next {
  float: right;
  display: block;
  width: 46%;
}
.article-btm a.next .arrow {
  padding-right: 30px;
  background: url("../image/next-arrow.png") no-repeat right center;
}
.article-btm .back {
  float: right;
  padding-top: 25px;
  width: 25%;
  height: 50px;
  border-left: 1px solid #efefef;
  text-align: center;
}
.article-btm .back a {
  display: inline-block;
  padding-left: 24px;
  height: 25px;
  background: url("../image/list-ico.png") no-repeat left center;
  font-size: 14px;
  line-height: 25px;
}

/* responsive */
@media only screen and (max-width: 1024px) {
  .article-wrap {
    padding: 52px 0;
  }

  .article-main {
    float: none;
    width: auto;
  }

  .article-tit {
    padding: 24px 0;
  }
  .article-tit h1 {
    font-size: 20px;
  }

  .article-bar .info {
    float: none;
  }
  .article-bar .share {
    display: none;
  }

  .article-con {
    padding-top: 40px;
  }
  .article-con p {
    padding-bottom: 20px;
  }
  .article-con img {
    padding: 20px 0;
    width: 100%;
    height: 100%;
  }

  .article-side {
    display: none;
  }

  .article-btm {
    padding: 48px 20px;
  }
  .article-btm .con {
    padding: 12px 24px;
    width: auto;
  }
  .article-btm .related {
    float: none;
    padding: 16px 0;
    width: auto;
  }
  .article-btm a.prev {
    float: none;
    padding: 12px;
    width: auto;
  }
  .article-btm a.next {
    float: none;
    padding: 12px;
    width: auto;
  }
  .article-btm .back {
    float: none;
    padding-top: 24px;
    width: auto;
    border-top: 1px solid #efefef;
    border-left: 0;
  }
}

/* ---------- search ---------- */
.search {
  padding: 80px 0 100px;
}
.search-form {
  text-align: center;
}
.search-form-text {
  padding: 0 30px;
  width: 60%;
  height: 50px;
  box-sizing: border-box;
  border: 2px solid #e0e0e0;
  border-radius: 50px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.05);
}
.search-form-btn {
  position: relative;
  top: 0;
  right: 0;
  margin-left: -80px;
  width: 75px;
  height: 50px;
  border: 0;
  background: url("../image/search-ico.png") no-repeat center;
  cursor: pointer;
}

.search-result {
  padding-top: 50px;
}
.search-result .result-tit {
  padding: 16px 0;
  border-bottom: 1px solid #e6e6e6;
  overflow: hidden;
}
.search-result .result-tit h3 {
  float: left;
  font-size: 18px;
  line-height: 24px;
}
.search-result .result-tit .count {
  float: right;
  padding-top: 4px;
  font-size: 14px;
  color: #999;
  line-height: 20px;
}

.result-list {
  padding-top: 20px;
}
.result-list ul {
  padding-bottom: 50px;
}
.result-list li {
  padding: 30px 0;
  border-bottom: 1px solid #efefef;
  overflow: hidden;
}
.result-list li .pic {
  float: left;
  position: relative;
  width: 210px;
  box-shadow: 4px 4px 20px rgba(0,0,0,0.1);
  overflow: hidden;
}
.result-list li .pic img {
  width: 100%;
  transition: all 0.3s ease-in-out;
}
.result-list li .pic .date {
  position: absolute;
  top: 12px;
  left: 12px;
  padding: 4px 8px;
  border-radius: 3px;
  background: rgba(255,255,255,0.8);
  font-size: 12px;
  color: #999;
}
.result-list li .con {
  float: right;
  width: calc(100% - 240px);
}
.result-list li .con h4 {
  padding-top: 4px;
  font-size: 18px;
  line-height: 160%;
}
.result-list li .con p {
  padding-top: 16px;
  font-size: 14px;
  color: #888;
  line-height: 200%;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
  overflow: hidden;
}
.result-list li .btm {
  padding-top: 20px;
}
.result-list li .more-btn {
  padding-right: 32px;
  background: url("http://mb.tdjweb.com/moban/3/img/news-more.png") no-repeat right center;
  font-size: 12px;
  color: #ccc;
  transition: all 0.3s ease-in-out;
}
.result-list li a:hover .pic img {
  transform: scale(1.05);
}
.result-list li a:hover .more-btn {
  color: #0759a0;
}

/* responsive */
@media only screen and (max-width: 1024px) {
  .search {
    padding: 60px 0;
  }
  .search-form-text {
    width: 80%;
    height: 44px;
    border-radius: 44px;
  }
  .search-form-btn {
    margin-left: -60px;
    width: 55px;
    height: 44px;
  }

  .search-result {
    padding-top: 32px;
  }

  .result-list ul {
    padding-bottom: 40px;
  }
  .result-list li {
    padding: 20px 0;
    height: auto;
  }
  .result-list li a {
    display: -webkit-flex;
    display: flex;
  }
  .result-list li .pic {
    float: none;
    width: 140px;
  }
  .result-list li .con {
    float: none;
    -webkit-flex: 1;
    flex: 1;
    padding-left: 16px;
    width: auto;
  }
  .result-list li .con h4 {
    padding-top: 2px;
    font-size: 14px;
  }
  .result-list li .con p {
    padding-top: 4px;
  }
  .result-list li .btm {
    display: none;
  }
}

/* ---------- download ---------- */
.download-list {
  padding: 100px 0;
  overflow: hidden;
}
.download-ul {
  padding-bottom: 40px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.download-list li {
  margin-bottom: 20px;
  padding: 32px;
  background: #fafafa;
  width:calc(50% - 20px);
  box-sizing: border-box;
}
.download-list li .con {
  position: relative;
  padding: 0 0 0 60px;
}
.download-list li i {
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  width: 48px;
}
.download-list li i img {
  width: 100%;
}
.download-list li h4 {
  font-size: 16px;
}
.download-list li p {
  padding-top: 12px;
  font-size: 14px;
  color: #999;
}
.download-list li a.down-btn {
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  display: inline-block;
  padding: 8px 28px;
  border-radius: 4px;
  background: #0759a0;
  font-size: 15px;
  color: #fff;
}
.download-list li a:hover.down-btn {
  box-shadow: 0 4px 12px rgba(7,89,160,0.2);
}

/* responsive */
@media only screen and (max-width: 912px) {
  .download-list {
    padding: 60px 0;
  }
  .download-list ul {
    padding-bottom: 20px;
  }
  .download-list li {
    padding: 20px;
  }
  .download-list li .con {
    padding: 0 0 60px 48px;
  }
  .download-list li i {
    top: 20px;
    width: 40px;
  }
  .download-list li p {
    font-size: 12px;
  }
  .download-list li a.down-btn {
    top: auto;
    right: 0;
    bottom: 0;
    transform: none;
    display: block;
  }
}
.ny_cont2 {
	margin-top: 80px;
	margin-bottom: 80px;
}

.ny_cont2 .txt {
	width: 100%;
}

.ny_cont2 .txt ul {
	width: 100%;
}

.ny_cont2 .txt li {
	font-size: 18px;
	color: #333;
	float: left;
	font-weight: 800;
	width: 25%;
	list-style: none;
}

.ny_cont2 .txt li .tb {
	color: #666;
	line-height: 50px;
	font-size: 16px;
	font-weight: normal;
}

.ny_cont2 .map {
	height: 450px;
	border: 1px solid #ddd;
	margin-top: 50px;
	background: #fff;
	overflow: hidden;
}
.ny_cont1 {
    background: #eceff1;
    padding: 60px 0 90px;
}
.ny_cont1 {
	background: #eceff1;
	padding: 60px 0 90px;
}

.ny_cont1 h2 {
	font-size: 24px;
	color: #3e4357;
	font-weight: 800;
	margin-bottom: 50px;
}

.ny_cont1 .bk-line {
	width: 23.75%;
	float: left;
	margin-right: 1.66%;
	overflow: hidden;
}

.ny_cont1 .bk-line:nth-child(4) {
	margin-right: 0;
}

.ny_cont1 .bk-line p {
	font-size: 16px;
	color: #555;
}

.ny_cont1 .bk-line span {
	color: #ef0000;
}

.ny_cont1 .bk-line input {
	height: 50px;
	line-height: 50px;
	padding-left: 14px;
	font-size: 15px;
	color: #666;
	background: #fff;
	width: 100%;
	margin-top: 15px;
	border:none;
}

.ny_cont1 .bk-line:nth-child(5),.ny_cont1 .bk-line:nth-child(5) textarea {
	width: 100%;
	border:none;
}

.ny_cont1 .bk-line:nth-child(5) p {
	margin: 30px 0 15px;
}

.ny_cont1 .bk-line:nth-child(5) textarea {
	padding-left: 14px;
	padding-top: 14px;
	font-size: 15px;
	color: #666;
	background: #fff;
}

.ny_cont1 .tj {
	width: 200px;
	height: 50px;
	line-height: 50px;
	text-align: center;
	background: #0759a0;
	color: #fff;
	font-size: 16px;
	margin: 40px auto;
	border-radius: 3px;
	display: block;
	margin-top: 68px;
	cursor: pointer;
	border: none;
}
.c{
	clear: both;
}
@media (max-width: 1200px) {
}

@media (max-width: 1000px) {
	.ny_cont1 {
		padding: 50px 0;
	}

	.ny_cont2 .txt li {
		width: 50%;
		margin-bottom: 30px;
	}

	.ny_cont2 .map {
		margin-top: 0;
	}

	.ny_cont2 {
		margin-bottom: 40px;
	}
}

@media (max-width: 600px) {
	.ny_cont1 .bk-line {
		width: 100%;
		margin-right: 0;
		margin-bottom: 20px;
	}

	.ny_cont1 .bk-line:nth-child(5) p {
		margin-top: 0;
	}

	.ny_cont1 h2 {
		font-size: 20px;
		margin-bottom: 30px;
	}

	.ny_cont1 {
		padding: 40px 0;
	}

	.ny_cont1 .tj {
		margin-top: 30px;
	}

	.ny_cont2 .txt li {
		width: 100%;
	}

	.ny_cont2 .txt li {
		font-size: 16px;
	}

	.ny_cont2 .txt li .tb {
		font-size: 14px;
		line-height: 30px;
	}

	.ny_cont2 .map {
		display: none;
	}

	.ny_cont2 {
		margin-bottom: 10px;
	}
}
.contact-con4{
	margin-top: 30px;
	margin-bottom: 100px;
}
.contact-con4 .fl{
	float:left;
}
.joblist{
	margin-bottom: 30px;
	width:100%;
}
.jobtitle{
	width:100%;
	height: 55px;
	line-height: 55px;
	background: #f2f2f2;
    border-radius: 3px;
    cursor: pointer;
}
.jobt1{
	width:8px;
	height: 55px;
	background: #0759a0;
	border-top-left-radius: 5px;
	border-bottom-left-radius: 5px;
}
.jobt2z{
	padding:0 20px;
	color: #333333;
	font-size: 16px;
	font-weight: 800;
}
.job2y{
	color: #333333;
	font-size: 16px;
	float:right;
	width:60%;
	margin:0 5%;
    box-sizing:border-box;
}
.jobt3{
	width:40%;
}
.jobt4{
	width:30%;
}
.jobt5{
	width:30%;
}
.jobt6{
	width:40px;
	height: 55px;
	background: #0759a0;
	border-top-right-radius: 5px;
	border-bottom-right-radius: 5px;
	float:right;
	text-align: center;
	font-weight: 800;
	color: #fff;
}
.jobljsq{
	display: block;
	margin: 20px 0;
	font-size: 14px;
	line-height: 35px;
	height: 35px;
	text-align: center;
	width:125px;
	color:#fff;
	background: #0759a0;
	transition:1s;
}
.jobljsq:hover{
	color:#fff;
	transform: translate(0px,-5px);
}
.jobcon2{
	display: none;
	padding:50px;
	box-shadow: 0px 5px 20px rgba(0,0,0,0.2);
	margin-top:20px;
	border-radius: 5px;
}
.jobcon2 p{
	margin-bottom: 1.875em;
    line-height: 1.975em;
}
.abtitle {
    text-align: left;
    width: 100%;
}
.at1{
	color: #9fa0a0;
	font-weight:normal;
	font-size:20px; 
}
.at2{
	color: #4c4948;
	font-weight:500;
	font-size:30px; 
	margin-top: 15px;
}
.at3line{
	height: 3px;
	width:64px;
	background: #3671db;
	margin-top: 25px;
}
.abtitle:hover .at3line{
	width:100px;
}
.j3{
	padding:100px 0;
}
.j3con {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin-top: 40px;
}
.j3c1 {
    color: #4c4948;
    background: #fff;
    padding: 30px;
    width: 18%;
    border: 1px solid #9fa0a0;
    position: relative;
	box-sizing: border-box;
}
.j3t1{
	display: flex;
	flex-wrap: wrap;
	justify-content: start;
}
.j3t1 svg{
	margin-right:20px;
}
.j3t {
    font-size: 30px;
    font-weight: 800;
    color: #0759a0;
}

@media(max-width:1000px){
	.jobcon{
		margin:20px auto;
	}
	.contact-con23,.contact-con24{
		float:none;
		width:100%;
		margin-bottom:30px; 
	}
	.contact-title5{
		margin-top: 15px;
	}
	.j3c1{
		width:100%;
	}
	.job2y{
		display: none;

	}
	.jobcon2{
		padding:20px;
	}
	
}
.lx {
    text-align: center;
    line-height: 1.5;
    padding: 0 5%;
    color: #888;
    margin-top: 40px;
    font-size: 18px;
}
.MsoNormal{
	font-size: 16px; 
	width: 112px; 
	height: 112px; 
	margin:15px auto; 
	display:block;
}
.MsoNormal img{
	display: block;
	width:100%;
}
.MsoNormal-span{
	font-size:16px; 
	text-align:center; 
	display:block; 
	margin:15px 0;
}


.about {
  padding: 55px 0 70px;
  position: relative;
}
@media (max-width: 1580px) {
  .about {
    padding: 120px 0 140px;
  }
}
@media (max-width: 991px) {
  .about {
    padding: 60px 0;
  }
}
.about > img {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 110px;
  height: auto;
  z-index: -1;
}
@media (max-width: 991px) {
  .about > img {
    position: initial;
    width: 100%;
    margin-top: -35px;
  }
}
@media (max-width: 767px) {
  .about > img {
    margin-top: -25px;
  }
}
.about .container {
  display: flex;
  justify-content: space-between;
}
@media (max-width: 991px) {
  .about .container {
    flex-direction: column;
  }
}
.about .container .left {
  width: 45%;
}
@media (max-width: 991px) {
  .about .container .left {
    width: 100%;
  }
}
.about .container .left .tit {
  margin-bottom: 10px;
}
.about .container .left .tit span {
  display: block;
  color: #666;
  margin-bottom:30px;
  font-size:20px;
}
.about .container .left .tit h2 {
  font-size: 48px;
  line-height: 1.5;
  font-weight: bold;
  color: #000;
}
.about .container .left .tit h2 span{
	font-size: 36px;
}
@media (max-width: 767px) {
  .about .container .left .tit span {
    font-size: 28px;
    margin-bottom: 15px;
  }
  .about .container .left .tit h2 span{
  	font-size: 28px;
  }
  
}

.about .container .left .box {
  display: flex;
  flex-wrap: wrap;
}
.about .container .left .box .list {
  width: 50%;
  box-sizing: border-box;
  padding-right: 20px;
  margin-top: 80px;
}
@media (max-width: 991px) {
  .about .container .left .box .list {
    width: 50%;
	margin-top:30px;
  }
}
.about .container .left .box .list .g_top {
  margin-bottom: 10px;
  display: flex;
  align-items: flex-end;
}
.about .container .left .box .list .g_top p {
  font-size: 50px;
  line-height: 1;
  color: #0759a0;
  font-weight: bold;
}
.about .container .left .box .list .g_top span {
  margin-left: 10px;
  color: #0759a0;
}
.about .container .left .box .list > p {
  color: #444;
  width: 140px;
}
@media (max-width: 767px) {
  .about .container .left .box .list > p {
    width: 100%;
  }
}
.about .container .right {
  width: 50%;
  color: #666;
}
@media (max-width: 991px) {
  .about .container .right {
    width: 100%;
	margin-top:50px;
  }
}
.about .container .right p span {
  color: #333;
  font-weight: bold;
}
.about .container .right img {
  margin-top: 30px;
  height: auto;
  max-width: 100%;
}
.about .font20 {
    font-size: 20px;
	line-height: 2;
}
.about .font18 {
    font-size: 18px;
	line-height: 2;
}
.about .container .right p{
	text-align: justify;
	text-indent: 2em;
}
/*culture*/
.qual_zc {
    margin-bottom:130px;
    padding-top:130px;
}
.qual_tit {
    margin-bottom: 60px;
    text-align: center;
}
.qual_zc .box {
    display: flex;
    justify-content: space-between;
	flex-wrap:wrap;
}
.qual_tit h2 {
    margin-bottom: 20px;
    font-size: 34px;
    font-weight: bold;
}
.qual_tit i {
    width: 30px;
    height: 4px;
    background: #0759a0;
    margin: 0 auto 25px;
    display: block;
}
.qual_tit p {
    color: #666;
	font-size: 18px;
}
.qual_zc .box .list {
    border: 2px solid #f8f8f8;
    border-radius: 10px;
    width: calc(100% / 3 - 20px);
	margin-bottom: 30px;
    padding: 50px;
	box-sizing: border-box;
    position: relative;
}
.qual_zc .box .list .img {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    opacity: 0;
    z-index: -1;
    transition: all 0.3s;
	overflow: hidden;
}
.qual_zc .box .list span {
    position: relative;
    color: #999;
    margin-bottom: 90px;
    display: block;
	font-size: 18px;
	z-index: 2;
	text-align: center;
}
.qual_zc .box .list.on span,.qual_zc .box .list:hover span {
    color: #fff;
}
.qual_zc .box .list svg {
    position: relative;
    width: 55px;
    height: 55px;
    margin-bottom: 25px;
	z-index: 2;
	background: none;
	margin:0 auto;
	display: block;
	margin-bottom:20px;
}
.qual_zc .box .list h3 {
    position: relative;
    line-height: 1.2;
    font-weight: bold;
	text-align: center;
}
.qual_zc .box .list:hover svg path,.qual_zc .box .list.on svg path{
	fill:#fff;
}
.qual_zc .box .list.on h3,.qual_zc .box .list:hover h3{
    z-index: 5;
    color: #fff;
	text-align: center;
}

.qual_zc .box .list.on .img {
    opacity: 1;
    z-index: 1;
}
@media(max-width:1000px){
	.qual_zc .box .list{
		width:100%;
	}
	.qual_tit h2{
		font-size: 26px;
	}
}
.product-swiper{
	width:100%;
}
.product-swiper .swiper-slide img{
	width:100%;
	display: block;
}
.img-list li .con{
	position: relative;
	width:calc(100% - 40px);
	box-sizing: border-box;
	left:0;
	right:0;
	bottom:0;
	margin:0 20px;
}
.img-list li .con a:hover .con h4{
	color:#0759a0;
}
.img-list li a:hover{
	box-shadow:none;
}


/* ---------- application ---------- */
.application-list {
  padding: 100px 0;
}
.application-list li {
  margin-bottom: 60px;
  background: #f6f6f6;
  overflow: hidden;
  width:calc(50% - 30px);
}
.application-list li .pic {
  float: left;
  width: 50%;
  overflow: hidden;
  padding:20px;
  box-sizing: border-box;
}
.application-list li .pic img {
  width: 100%;
  transition: all 0.3s ease-in-out;
}
.application-list li .con {
  float: right;
  padding: 50px 60px;
  width: 50%;
  box-sizing: border-box;
}
.application-list li .con h4 {
  font-size: 20px;
  line-height: 160%;
}
.application-list li .con p {
  padding-top: 32px;
  font-size: 14px;
  color: #888;
  line-height: 200%;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 4;
  overflow: hidden;
}
.application-list li .btm {
  padding-top: 48px;
}
.application-list li .more-btn {
  padding-right: 32px;
  background: url("../image/more-arrow.png") no-repeat right center;
  font-size: 12px;
  color: #ccc;
  transition: all 0.3s ease-in-out;
}
.application-list li a:hover .pic img {
  transform: scale(1.05);
}
.application-list li a:hover .more-btn {
  padding-right: 40px;
}
.application-list li:nth-of-type(even) .pic {
  float: right;
}
.application-list li:nth-of-type(even) .con {
  float: left;
}

/* responsive */
@media only screen and (max-width: 1024px) {
  .application-list {
    padding: 60px 0;
  }
  .application-list ul {
    padding-bottom: 20px;
  }
  .application-list li {
    margin-bottom: 20px;
	width:100%;
  }
  .application-list li .pic {
    float: none;
    width: auto;
  }
  .application-list li .con {
    float: none;
    padding: 20px;
    width: auto;
  }
  .application-list li .con h4 {
    font-size: 16px;
  }
  .application-list li .con p {
    padding-top: 8px;
    line-height: 160%;
    -webkit-line-clamp: 2;
  }
  .application-list li .btm {
    padding-top: 12px;
  }
  .application-list li:nth-of-type(even) .pic {
    float: none;
  }
  .application-list li:nth-of-type(even) .con {
    float: none;
  }
}
.system{
	padding:50px 0;
	background: #f7fafe;
}
.system1 img{
	display: block;
	margin: 0 auto;
	max-width:100%;
}
.system-con{
	width:100%;
	position: relative;
}
.system-tab-w1{
	width:100%;
	margin-bottom:40px;
}
.system-tab-w2{
	width:calc(50% - 20px);
	margin-bottom:40px;
}
.system-tab{
	position: relative;
	padding:50px;
	padding: 20px 20px 40px;
	box-sizing: border-box;
	border-radius: 10px;
	background-color: rgba(255, 255, 255, .6);
	box-shadow: 0 12px 18px 2px rgba(204,204,204,.17);
	transition: 0.3s;
	/* background-image: url(../image/flex-box-bg.jpg); */
	background-repeat: no-repeat;
	background-position: bottom center;
	background-size: cover;
}
.system-title{
	width:100%;
}
.system-p1{
	text-align: center;
	font-size: 20px;
	font-weight: 800;
	margin-top:30px;
	margin-bottom:30px;
}
.system-p2{
	text-align: center;
	font-size: 16px;
	font-weight: 800;
	margin-bottom:40px;
}
.system-p3{
	text-align: center;
	font-size: 16px;
	font-weight: 800;
}
.system-c{
	justify-content: space-around;
}

.system-c1{
	font-size: 16px;
}
.system-c1 img{
	width:100%;
	margin-bottom:20px;
}
.w50{
	width:calc(50% - 20px);
}
.system3{
	margin-top:50px;
	background: #fff;
}
.system-content{
	padding:20px;
	display: block;
	box-sizing: border-box;
}
.system-content li{
	display: block;
	padding:10px;
}
.system-img{
	margin-bottom:50px;
	padding:40px;
	background: #fff;
	box-sizing: border-box;
}
@media(max-width:1000px){
	.system-tab-w2{
		width:100%;
	}
	.system-c1{
		margin-top:20px;
	}
	.w50{
		width:100%;
	}
}