/* CSS Document */

/* ---------- banner ---------- */
.banner {
  height: 500px;
  background-position: center top;
  background-size: cover;
}

.banner.article {
  height: 200px;
}

.banner-tit {
  padding: 220px 0 68px;
  color: #fff;
}

.banner-tit h2 {
  font-family: "PFDinTextPro-Light";
  font-size: 40px;
  font-weight: normal;
  color: #b9c1cb;
  text-transform: uppercase;
}

.banner-tit h3 {
  position: relative;
  padding: 4px 0 20px;
  font-size: 28px;
  color: #fff;
}

.banner-tit h3:after {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 112px;
  height: 3px;
  background: #ed6c00;
  content: "";
}

.sub-nav {
  overflow: hidden;
}

.sub-nav ul {
  width: calc(100% + 20px);
}

.sub-nav li {
  float: left;
  margin: 0 20px 20px 0;
  width: calc(100% / 4 - 20px);
}

.sub-nav li a {
  display: block;
  height: 44px;
  background: #efefef;
  font-size: 15px;
  color: #333;
  line-height: 44px;
  text-align: center;
}

.sub-nav li a:hover {
  background: #fff;
}

.sub-nav li a.current {
  background: #ed6c00;
  color: #fff;
}

/* responsive */
@media only screen and (max-width: 1024px) {
  .banner {
    padding-bottom: 20px;
    height: auto;
  }

  .banner-tit {
    padding: 160px 0 40px;
  }

  .banner-tit h2 {
    font-size: 28px;
  }

  .banner-tit h3 {
    padding: 4px 0 16px;
    font-size: 20px;
  }

  .banner-tit h3:after {
    width: 80px;
    height: 2px;
  }

  .sub-nav ul {
    width: calc(100% + 10px);
  }

  .sub-nav li {
    margin: 0 10px 10px 0;
    width: calc(100% / 2 - 10px);
  }

  .sub-nav li a {
    height: 36px;
    line-height: 36px;
  }
}

/* ---------- about ---------- */
.about {
  padding: 260px 0 100px;
  background-position: center top;
  background-size: cover;
  color: #fff;
}

.about-tit h2 {
  font-family: "Arial";
  font-size: 14px;
  font-weight: normal;
  color: #b9c1cb;
}

.about-tit h3 {
  position: relative;
  padding: 4px 0 20px;
  font-size: 28px;
  color: #fff;
}

.about-tit h3:after {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 112px;
  height: 3px;
  background: #ed6c00;
  content: "";
}

.about-intro {
  padding-top: 60px;
  overflow: hidden;
}

.about-intro .con {
  float: left;
  width: 68%;
  font-size: 15px;
  line-height: 280%;
}

.about-intro .con p {
  padding-bottom: 32px;
  color: #fff;
}

.about-intro .count {
  float: right;
}

.about-intro .count ul {
  margin-top: -28px;
}

.about-intro .count li {
  padding: 32px 20px 32px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.about-intro .count li .num {
  font-family: "AvantGarde-Medium";
  font-size: 48px;
  color: #ed6c00;
}

.about-intro .count li .num sup {
  position: relative;
  top: -6px;
  left: 10px;
  font-size: 15px;
  color: #fff;
}

.about-intro .count li h4 {
  font-size: 15px;
  color: #fff;
}

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

  .about-tit h2 {
    font-size: 12px;
  }

  .about-tit h3 {
    padding: 4px 0 16px;
    font-size: 20px;
  }

  .about-tit h3:after {
    width: 80px;
    height: 2px;
  }

  .about-intro {
    padding-top: 40px;
  }

  .about-intro .con {
    float: none;
    width: auto;
    line-height: 240%;
  }

  .about-intro .con p {
    padding-bottom: 20px;
  }

  .about-intro .count {
    float: none;
  }

  .about-intro .count ul {
    margin-top: auto;
  }

  .about-intro .count li {
    float: left;
    width: 50%;
    padding: 20px 0;
  }

  .about-intro .count li .num {
    font-size: 32px;
  }

  .about-intro .count li .num sup {
    top: 0;
  }
}

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

.office-tit h2 {
  font-family: "Arial";
  font-size: 14px;
  font-weight: normal;
  color: #39434c;
}

.office-tit h3 {
  position: relative;
  padding: 4px 0 20px;
  font-size: 28px;
  color: #20242b;
}

.office-tit h3:after {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 112px;
  height: 3px;
  background: #ed6c00;
  content: "";
}

.office-con {
  padding-top: 48px;
  overflow: hidden;
}

.office-con ul {
  width: calc(100% + 16px);
}

.office-con li {
  float: left;
  margin: 0 16px 16px 0;
  width: calc(100% / 2 - 16px);
}

.office-con li img {
  width: 100%;
  height: 100%;
}

.office-con li:nth-of-type(n+2) {
  width: calc(100% / 4 - 16px);
}

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

  .office-tit h2 {
    font-size: 12px;
  }

  .office-tit h3 {
    padding: 4px 0 16px;
    font-size: 20px;
  }

  .office-tit h3:after {
    width: 80px;
    height: 2px;
  }

  .office-con {
    padding-top: 32px;
  }

  .office-con ul {
    width: calc(100% + 10px);
  }

  .office-con li {
    margin: 0 10px 10px 0;
    width: calc(100% - 10px);
  }

  .office-con li:nth-of-type(n+2) {
    width: calc(100% / 2 - 10px);
  }
}

/* ---------- honor ---------- */
.honor {
  padding-bottom: 100px;
  background-position: center top;
  background-size: cover;
}

.honor-tit {
  position: relative;
  padding-top: 100px;
  height: 120px;
}

.honor-tit h2 {
  font-family: "Arial";
  font-size: 14px;
  font-weight: normal;
  color: #39434c;
}

.honor-tit h3 {
  position: relative;
  padding: 4px 0 20px;
  font-size: 28px;
  color: #20242b;
}

.honor-tit h3:after {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 112px;
  height: 3px;
  background: #ed6c00;
  content: "";
}

.honor-tit .ico {
  position: absolute;
  top: 0;
  right: 100px;
}

.honor-con {
  padding-top: 40px;
}

.rvc {
  position: relative;
  margin: auto;
  max-width: 1320px;
}

.rvc .rvc-wrapper {
  margin: auto;
  overflow: hidden;
}

.rvc .rvc-wrapper ul {
  position: relative;
  overflow: hidden;
}

.rvc .rvc-wrapper ul li {
  float: left;
}

.rvc .rvc-wrapper ul li a .img-wrapper {
  padding: 30px;
  border-radius: 8px;
  background: #fff;
}

.rvc .rvc-wrapper ul li a .img-wrapper img {
  padding: 10px 0 30px;
  width: 100%;
  box-sizing: border-box;
}

.rvc .rvc-wrapper ul li a .img-wrapper .con {
  padding-top: 20px;
  border-top: 1px solid #efefef;
}

.rvc .rvc-wrapper ul li a .img-wrapper h4 {
  background: url("../images/zoom-ico.png") no-repeat right center;
  font-size: 15px;
  font-weight: normal;
}

.rvc-prv,
.rvc-next {
  position: absolute;
  top: 0;
  height: 100%;
  border-radius: 8px;
  background: rgba(0, 0, 0, 0.1);
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
}

.rvc-prv {
  left: 0;
}

.rvc-next {
  right: 0;
}

/* responsive */
@media only screen and (max-width: 1024px) {
  .honor {
    padding-bottom: 60px;
  }

  .honor-tit {
    position: relative;
    padding-top: 60px;
    height: 68px;
  }

  .honor-tit h2 {
    font-size: 12px;
  }

  .honor-tit h3 {
    padding: 4px 0 16px;
    font-size: 20px;
  }

  .honor-tit h3:after {
    width: 80px;
    height: 2px;
  }

  .honor-tit .ico {
    right: 12px;
  }

  .honor-tit .ico img {
    width: 72px;
  }

  .honor-con {
    padding-top: 32px;
  }

  .rvc .rvc-wrapper ul li a .img-wrapper {
    padding: 20px;
  }

  .rvc .rvc-wrapper ul li a .img-wrapper img {
    padding: 0 0 20px;
  }
}

/* ---------- client ---------- */
.client {
  padding: 100px 0 80px;
  background: #f6f6f6;
}

.client-tit {
  position: relative;
}

.client-tit h2 {
  font-family: "Arial";
  font-size: 14px;
  font-weight: normal;
  color: #39434c;
}

.client-tit h3 {
  position: relative;
  padding: 4px 0 20px;
  font-size: 28px;
  color: #20242b;
}

.client-tit h3:after {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 112px;
  height: 3px;
  background: #ed6c00;
  content: "";
}

.client-con {
  padding-top: 48px;
}

.client-con ul {
  width: calc(100% + 30px);
}

.client-con li {
  float: left;
  margin: 0 30px 30px 0;
  width: calc(100% / 6 - 30px);
}

.client-con li img {
  width: 100%;
  filter: grayscale(1);
  transition: all 0.3s ease-in-out;
}

.client-con li:hover img {
  width: 100%;
  filter: grayscale(0);
  box-shadow: 0 4px 32px rgba(0, 0, 0, 0.1);
}

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

  .client-tit h2 {
    font-size: 12px;
  }

  .client-tit h3 {
    padding: 4px 0 16px;
    font-size: 20px;
  }

  .client-tit h3:after {
    width: 80px;
    height: 2px;
  }

  .client-con {
    padding-top: 32px;
  }

  .client-con ul {
    width: calc(100% + 16px);
  }

  .client-con li {
    margin: 0 16px 16px 0;
    width: calc(100% / 2 - 16px);
  }
}

/* ---------- product ---------- */
.product-list {
  padding: 100px 0;
  overflow: hidden;
}

.product-list ul {
  display: flex;
  flex-wrap: wrap;
  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: #f0f0f0;
}

.product-list li .pic {
  width: 100%;
  height: 100%;
  background: #fff;
  overflow: hidden;
}

.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("../images/more-arrow.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;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
  overflow: hidden;
}

.product-list li a:hover {
  border: 2px solid #ed6c00;
  background: #ed6c00;
  box-shadow: 0 8px 24px rgba(237, 108, 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: none;
  }

  .product-list li .con h4 {
    font-size: 15px;
  }

  .product-list li .con p {
    padding-top: 8px;
    -webkit-line-clamp: 2;
  }
}

/* ---------- product detail ---------- */
.product-tag {
  padding: 80px 0 40px;
}

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

.product-detail {
  border-top: 1px solid #efefef;
  border-bottom: 1px solid #efefef;
  background: #fafafa;
}

.product-pic {
  float: left;
  width: 38%;
}

.product-pic img {
  width: 100%;
}

.product-desc {
  float: right;
  padding-right: 40px;
  width: 54%;
}

.product-desc .tit {
  padding: 36px 0;
}

.product-desc .tit h1 {
  font-size: 32px;
}

.product-desc .con {
  padding: 40px 0;
  border-top: 1px solid #efefef;
  border-bottom: 1px solid #efefef;
  font-size: 15px;
  line-height: 240%;
}

.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;
}

.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%;
}

.product-intro .con img {
  max-width: 100%;
}

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

  .product-pic {
    float: none;
    width: auto;
  }

  .product-desc {
    float: none;
    padding: 0 20px;
    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: 24px 0;
  }

  .product-intro .con img {
    width: 100%;
    height: 100%;
  }
}

/* ---------- application ---------- */
.application-list {
  padding: 100px 0;
}

.application-list li {
  margin-bottom: 60px;
  background: #f6f6f6;
  overflow: hidden;
}

.application-list li .pic {
  float: left;
  width: 50%;
  overflow: hidden;
}

.application-list li .pic img {
  width: 100%;
  transition: all 0.3s ease-in-out;
}

.application-list li .con {
  float: right;
  padding: 80px 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("../images/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;
  }

  .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;
  }
}

/* ---------- news ---------- */
.news-list {
  padding: 100px 0;
  overflow: hidden;
}

.news-list ul {
  width: calc(100% + 60px);
}

.news-list li {
  float: left;
  margin: 0 60px 60px 0;
  width: calc(100% / 3 - 60px);
}

.news-list li a {
  display: block;
  height: 388px;
  border-bottom: 1px solid #e6e6e6;
}

.news-list li .pic {
  position: relative;
  height: 200px;
  overflow: hidden;
  transition: all 0.3s ease-in-out;
}

.news-list li .pic img {
  width: 100%;
}

.news-list li .pic .mask {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(237, 108, 0, 0.8);
  opacity: 0;
  transition: all 0.3s ease-in-out;
}

.news-list li .pic .mask .arrow {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 80px;
  height: 80px;
  background: url("../images/news-more-arrow.png") no-repeat center;
  transform: translate(-50%, -50%);
}

.news-list li h4 {
  padding-top: 32px;
  font-size: 16px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.news-list li p {
  padding-top: 16px;
  font-size: 14px;
  color: #999;
  line-height: 180%;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
}

.news-list li .date {
  padding-top: 20px;
  font-family: "PFDinTextPro-Light";
  font-size: 16px;
  color: #ccc;
}

.news-list li a:hover {
  border-bottom: 1px solid #ed6c00;
}

.news-list li a:hover .pic {
  height: auto;
}

.news-list li a:hover .pic .mask {
  opacity: 1;
}

.news-list li a:hover .date {
  display: none;
}


.news-detail {
  padding: 60px 0;
}
.news-detail .h{
  border-bottom: 1px solid #dedede;
  padding-bottom: 20px;
}
.news-detail .tit {
  font-size: 28px;
  font-weight: bold;
  text-align: center;
  margin-bottom: 20px;
}
.news-detail .date {
  color: #808080;
  text-align: center;
}
.news-detail ._des {
  margin-bottom: 40px;
  padding: 40px 0;
  border-bottom: 1px solid #dedede;
}
.news-detail ._des img {
  max-width: 100%;
}
.news-detail .np {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
.news-detail .np span {
  text-transform: uppercase;
}

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

  .news-list ul {
    width: auto;
  }

  .news-list li {
    float: none;
    margin: 0 0 20px 0;
    width: auto;
  }

  .news-list li a {
    padding-bottom: 20px;
    height: auto;
  }

  .news-list li .pic {
    height: auto;
  }

  .news-list li h4 {
    padding-top: 20px;
  }

  .news-list li p {
    padding-top: 8px;
    line-height: 160%;
  }

  .news-list li .date {
    padding-top: 12px;
  }

  .news-list li a:hover {
    height: auto;
    border-bottom: 1px solid #ed6c00;
  }

  .news-list li a:hover .pic {
    height: auto;
  }

  .news-list li a:hover .date {
    display: inherit;
  }
}

/* ---------- 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: #ed6c00;
  color: #fff;
}

.page a.disable {
  background: #eaeaea;
  color: #666;
}

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

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

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

.article-tit {
  padding: 40px 0;
}

.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("../images/date-ico.png") no-repeat left center;
}

.article-bar .visit {
  padding-left: 24px;
  background: url("../images/visit-ico.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: 151px;
  padding: 30px 29px;
  width: 25%;
  box-sizing: border-box;
  border: 1px solid #efefef;
  border-top: 2px solid #ed6c00;
}

.article-side h3 {
  font-size: 18px;
  color: #ed6c00;
}

.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("../images/date-ico.png") no-repeat left center;
}

.article-side li .visit {
  padding-left: 22px;
  background: url("../images/visit-ico.png") no-repeat left center;
}

.article-btm {
  padding: 60px 20px;
  background: #f6f6f6;
}

.article-btm .con {
  margin: auto;
  padding: 50px 0;
  max-width: 1320px;
  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("../images/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("../images/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("../images/list-ico.png") no-repeat left center;
  font-size: 14px;
  line-height: 25px;
}

/* responsive */
@media only screen and (max-width: 912px) {
  .article-wrap {
    padding: 60px 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;
  }
}

/* ---------- download ---------- */
.download-list {
  padding: 100px 0;
  overflow: hidden;
}

.download-list ul {
  padding-bottom: 40px;
}

.download-list li {
  margin-bottom: 20px;
  padding: 32px;
  background: #fafafa;
}

.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: #ed6c00;
  font-size: 15px;
  color: #fff;
}

.download-list li a:hover.down-btn {
  box-shadow: 0 4px 12px rgba(237, 108, 0, 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;
  }
}

/* ---------- 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;
}

.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("../images/contact-bg.png") no-repeat center bottom;
  width: calc(100% / 3 - 30px);
  text-align: center;
}

.contact-list li:first-child {
  background: url("../images/contact-bg.png") no-repeat left bottom;
}

.contact-list li:last-child {
  margin-right: 0;
  background: url("../images/contact-bg.png") no-repeat right bottom;
}

.contact-list li i {
  display: inline-block;
  width: 80px;
  height: 80px;
  border-radius: 100%;
  background-repeat: no-repeat;
  background-position: center;
  background-size: 32px;
  background-color: #ed6c00;
}

.contact-list li i.ico-1 {
  background-image: url("../images/contact-ico-1.png");
}

.contact-list li i.ico-2 {
  background-image: url("../images/contact-ico-2.png");
}

.contact-list li i.ico-3 {
  background-image: url("../images/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 0;
  border-bottom: 1px solid #efefef;
}

.contact-con ul {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
}

.contact-con li {
  width: calc(100% / 3 - 20px);
  ;
  font-size: 14px;
  line-height: 32px;
  margin-right: 30px;
  margin-bottom: 20px;
}

.contact-con li:nth-child(3n) {
  margin-right: 0;
}

.contact-con li b {
  display: block;
}

.contact-con li a {
  display: block;
}

.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: 912px) {
  .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;
  }

  .contact-con li {
    width: 100%;
  }
}


/* ---------- 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("../images/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: 240px;
  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-family: "AvantGarde-Medium";
  font-size: 12px;
  color: #999;
}

.result-list li .con {
  float: right;
  width: calc(100% - 280px);
}

.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: 2;
  overflow: hidden;
}

.result-list li .btm {
  padding-top: 16px;
}

.result-list li .more-btn {
  padding-right: 32px;
  background: url("../images/more-arrow.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 {
  padding-right: 48px;

}














/* responsive */
@media only screen and (max-width: 912px) {
  .search {
    padding: 48px 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: 144px;
  }

  .result-list li .con {
    float: none;
    -webkit-flex: 1;
    flex: 1;
    padding-left: 16px;
    width: auto;
  }

  .result-list li .con h4 {
    padding-top: 0;
    font-size: 14px;
  }

  .result-list li .con p {
    padding-top: 8px;
    -webkit-line-clamp: 1;
  }

  .result-list li .btm {
    display: none;
  }
}





.dw_ba {
  border-bottom: 1px solid #f0f0f0;
}

.dw_ba .p {
  padding: 8px 0;
}

.dw_ba .p a {
  color: #ed6c00;
}






.icobox {
  display: flex;
  align-items: center;
  justify-content: center;
}

.icobox img {
  max-width: 100%;
}

.product-list2 {
  padding: 100px 0;
}

.product-list2 ul {
  display: flex;
  flex-wrap: wrap;
}

.product-list2 ul * {
  box-sizing: border-box;
}

.product-list2 ul li {
  width: 25%;
  padding: 10px;
}

.product-list2 a {
  display: block;
  border: 1px solid #f0f0f0;
  border-top: 10px solid #ed6c00;

  padding: 10px;
}

.product-list2 .pic img {
  max-width: 100%;
}

.product-list2 .con {
  padding-top: 10px;
}

.product-list2 .con .icobox {
  width: 15px;
  margin-bottom: 10px;
}

.product-list2 .con h4 {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

@media only screen and (max-width: 768px) {
  .product-list2 ul li {
    width: 100%;
  }
}


.product-desc1 {
  padding: 100px 0;
}

.product-desc1 * {
  box-sizing: border-box;
}

.product-desc1 .ht {
  font-size: 32px;
  color: #ed6c00;
  font-weight: bold;
  margin-bottom: 40px;
}

.product-desc1 .des1 {
  line-height: 2;
}

.product-desc1 .des1 p {
  margin-bottom: 5px;
}

.product-desc1 .des1 i {
  color: #ed6c00;
  font-style: normal;

}

.product-desc1 .tblist {
  display: flex;
  justify-content: center;
  margin-bottom: 40px;
}

.product-desc1 .tblist._left {
  justify-content: flex-start;
}

.product-desc1 .tblist .tblis {
  padding: 0 20px;
}

.product-desc1 .tblist .tblis .icobox {
  width: 60px;
  margin: auto;
  margin-bottom: 10px;
}

.product-desc1 .tblist .tblis p {
  text-align: center;
}

.product-desc1 .line1 {
  background-color: #f0f0f0;
  display: flex;
  align-items: center;
  margin-bottom: 40px;
}

.product-desc1 .line1 span {
  padding: 8px 20px;
  background-color: #ed6c00;
  color: #fff;
  margin-right: 10px;
}

.product-desc1 .line2 {
  border-bottom: 2px solid #ed6c00;
  padding: 8px 0;
  font-weight: bold;
  margin-bottom: 40px;
}


.product-desc1 .list1 {
  display: flex;
  margin: 0 -20px;
  padding: 60px 0;
  align-items: center;
}

.product-desc1 .list1._top {
  align-items: flex-start;
}

.product-desc1 .list1 .pic {
  width: 35%;
  padding: 0 20px;
}

.product-desc1 .pic img {
  width: 100%;
}

.product-desc1 .list1 .de1 {
  width: 65%;
  padding: 0 20px;
}

.product-desc1 .bgpic {
  display: flex;
  margin: auto;
  justify-content: center;
  align-items: center;
}

.product-desc1 .bgpic img {
  width: 100%;
}

.product-desc1 .bgpic.it1 {
  max-width: 800px;
}

.product-desc1 .list2 {
  display: flex;
  margin: 0 -20px;
  padding: 60px 0;
}

.product-desc1 .list2 .lis {
  width: 50%;
  padding: 0 20px;

}

.product-desc1 .list2 .bgpic {
  margin-top: 40px;
}

.product-desc1 .bgpic.it2 {
  max-width: 517px;
}

.product-desc1 .list3 {
  padding: 60px 0;
}

.product-desc1 .list4 {
  padding: 60px 0;
}

.product-desc1 .list4 .lis {
  display: flex;
  justify-content: center;
  margin-top: 20px;
}

.product-desc1 .list4 .pic {
  width: 168px;
}

.product-desc1 .list4 .bgpic {
  margin: 0;
}

.product-desc1 .bgpic.it3 {
  max-width: 643px;
}

@media only screen and (max-width: 768px) {

  .product-desc1 .list1,
  .product-desc1 .list2,
  .product-desc1 .list4 .lis {
    flex-wrap: wrap;

  }

  .product-desc1 .list1 .pic {
    width: 100%;
  }

  .product-desc1 .list1 .de1 {
    width: 100%;
  }

  .product-desc1 .list2 .lis {
    width: 100%;
    margin-bottom: 40px;
  }
  .product-desc1 .tblist {
    flex-wrap: wrap;
  }
  .product-desc1 .tblist .tblis {
    width: 25%;
    padding: 0 10px;
  }
}