/* CSS Document */

/* ---------- banner ---------- */
.banner {
  height: 500px;
  background-position: center top;
  background-size: cover;
}
.banner.article {
  height: 200px;
}

.banner-tit {
  padding-top: 280px;
  color: #fff;
}
.banner-tit h2 {
  font-size: 40px;
}
.banner-tit h3 {
  padding-top: 12px;
  font-family: "Montserrat-Regular";
  font-size: 24px;
  font-weight: normal;
}
.sub-nav1{ display:none;}

/* responsive */
@media only screen and (max-width: 1024px) {
  .banner {
    height: 400px;
  }

  .banner-tit {
    padding-top: 256px;
  }
  .banner-tit h2 {
    font-size: 24px;
  }
  .banner-tit h3 {
    font-size: 16px;
  }
}

/* ---------- content ---------- */
.sub-container {
  margin: auto;
  padding: 100px 20px;
  max-width: 1320px;
}

/* responsive */
@media only screen and (max-width: 1024px) {
  .sub-container {
    padding: 0;
  }
}

/* ---------- sub nav ---------- */
.sub-nav {
  float: left;
  width: 18.8%;
  background: url("../images/sub-nav-btm.png") no-repeat bottom #f6f6f6;
}
.sub-nav ul {
  padding: 60px 0 120px;
}
.sub-nav li {
  padding-bottom: 10px;
}
.sub-nav li a {
  display: block;
  padding-right: 20px;
  width: 100%;
  height: 60px;
  box-sizing: border-box;
  border-radius: 4px;
  background: url("../images/sub-nav-arrow.png") no-repeat right 30px center;
  font-size: 16px;
  line-height: 60px;
  text-align: center;
}
.sub-nav li a.current {
  margin-left: 40px;
  background: url("../images/sub-nav-arrow.png") no-repeat right 30px center, linear-gradient(to right, #0998e0, #1a71c8);
  box-shadow: 4px 4px 12px rgba(26,111,201,0.2);
  color: #fff;
}

.sub-nav1 {
  float: left;
  width: 18.8%;
  background: url("../images/sub-nav-btm.png") no-repeat bottom #f6f6f6;
}
.sub-nav1 ul {
  padding: 60px 0 120px;
}
.sub-nav1 li {
  padding-bottom: 10px;
}
.sub-nav1 li a {
  display: block;
  padding-right: 20px;
  width: 100%;
  height: 60px;
  box-sizing: border-box;
  border-radius: 4px;
  background: url("../images/sub-nav-arrow.png") no-repeat right 30px center;
  font-size: 16px;
  line-height: 60px;
  text-align: center;
}
.sub-nav1 li a.current {
  margin-left: 40px;
  background: url("../images/sub-nav-arrow.png") no-repeat right 30px center, linear-gradient(to right, #0998e0, #1a71c8);
  box-shadow: 4px 4px 12px rgba(26,111,201,0.2);
  color: #fff;
}


/* responsive */
@media only screen and (max-width: 1024px) {
  .sub-nav {
    float: none;
    width: auto;
    background: #f6f6f6;
  }
  .sub-nav ul {
    padding: 20px 12px;
    overflow: hidden;
  }
  .sub-nav li {
    float: left;
    padding: 8px;
    width: 50%;
    box-sizing: border-box;
  }
  .sub-nav li a {
    height: 48px;
    background: url("../images/sub-nav-arrow.png") no-repeat right 16px center #fff;
    line-height: 48px;
  }
  .sub-nav li a.current {
    margin-left: 0;
  }
  
  
  
    .sub-nav1 {
    float: none;
    width: auto;
    background: #f6f6f6;
  }
  .sub-nav1 ul {
    padding: 20px 12px;
    overflow: hidden;
  }
  .sub-nav1 li {
    float: left;
    padding: 8px;
    width: 50%;
    box-sizing: border-box;
  }
  .sub-nav1 li a {
    height: 48px;
    background: url("../images/sub-nav-arrow.png") no-repeat right 16px center #fff;
    line-height: 48px;
  }
  .sub-nav1 li a.current {
    margin-left: 0;
  }
  
  
  
  
}

/* ---------- about ---------- */
.about-intro {
  float: right;
  width: 68%;
  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 {
    float: none;
    padding: 60px 20px;
    width: auto;
  }
  .about-intro img {
    width: 100%;
    height: 100%;
  }
}

/* ---------- news ---------- */
.news-list {
  float: right;
  width: 68%;
}
.news-list ul {
  margin-top: -40px;
  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: 40%;
  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 {
  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: 56%;
}
.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: 40px;
}
.news-list li .more-btn {
  padding-right: 32px;
  background: url("../images/social-more-arrow.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 {
  color: #d9ad5e;
}

/* responsive */
@media only screen and (max-width: 1024px) {
  .news-list {
    float: none;
    padding-bottom: 60px;
    width: auto;
  }
  .news-list ul {
    margin-top: auto;
    padding: 20px 20px 40px 20px;
  }
}

@media only screen and (max-width: 768px) {
  .news-list ul {
    padding: 32px 20px 40px 20px;
  }
  .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 {
    padding-top: 16px;
    font-size: 16px;
  }
  .news-list li .con p {
    padding-top: 8px;
    line-height: 180%;
  }
  .news-list li .btm {
    padding-top: 8px;
  }
  .sub-nav1{ display: block;}
  
  .mn1{ display:none;}
  
  .sub-nav1 li a.current {
     background:url(../images/sub-nav-arrow.png) no-repeat right 30px center, linear-gradient(to right, #0998e0, #1a71c8);
    box-shadow: 4px 4px 12px rgba(26,111,201,0.2);
    color: #fff;}

}

/* ---------- page ---------- */
.page {
  clear: both;
  text-align: center;
}
.page a {
  display: inline-block;
  margin: 0 2px;
  height: 40px;
  font-family: Arial;
  font-size: 15px;
  color: #666;
  line-height: 40px;
  text-align: center;padding: 0 10px;
    border: 1px #ccc solid;
}
.page a:hover {
  background: #eaeaea;
}
.page a.crt {
  background: #1a71c8;
  color: #fff;
}
.page a.disable {
  background: #eaeaea;
  color: #666;
}

/* ---------- social ---------- */
.social-list {
  overflow: hidden;
}
.social-list ul {
  width: calc(100% + 60px);
}
.social-list li {
  float: left;
  margin: 0 60px 60px 0;
  width: calc(100% / 3 - 60px);
}
.social-list li .pic {
  width: 100%;
  overflow: hidden;
}
.social-list li .pic img {
  width: 99%;
  transition: all 0.3s ease-in-out;border: 1px #ccc solid;
}
.social-list li .con {
  padding: 24px 0 20px;
  border-bottom: 1px solid #efefef;    text-align: center;
}
.social-list li .date {
  font-family: "Arial";
  font-size: 14px;
  color: #999;
}
.social-list li .con h4 {
  padding-top: 16px;
  font-size: 16px;
  font-weight: normal;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.social-list li .btm {
  padding-top: 16px;
}
.social-list li .more-btn {
  padding-right: 32px;
  background: url("../images/social-more-arrow.png") no-repeat right center;
  font-size: 12px;
  color: #ccc;
  transition: all 0.3s ease-in-out;
}
.social-list li a:hover .pic img {
  transform: scale(1.05);
}
.social-list li a:hover .more-btn {
  padding-right: 48px;
}

/* responsive */
@media only screen and (max-width: 1024px) {
  .social-list {
    padding: 60px 20px;
  }
}

@media only screen and (max-width: 768px) {
  .social-list ul {
    width: auto;
  }
  .social-list li {
    float: none;
    margin: 0 0 20px 0;
    width: auto;
  }
  .social-list li .con {
    padding: 20px 0 16px;
  }
  .social-list li .con h4 {
    padding-top: 8px;
  }
  .social-list li .btm {
    padding-top: 12px;
  }
}

/* ---------- job ---------- */
.job-tit {
  height: 120px;
}
.job-tit h3 {
  font-size: 24px;
  font-weight: normal;
}
.job-tit p {
  padding-top: 20px;
  font-size: 14px;
  color: #999;
}

.job-list li {
  position: relative;
  margin-bottom: 28px;
  border: 1px solid #efefef;
  overflow: hidden;
}
.job-list li .tit {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  padding: 40px;
  width: 160px;
  background: #fafafa;
}
.job-list li .tit h4 {
  position: relative;
  padding-bottom: 16px;
  font-size: 18px;
  color: #1a71c8;
}
.job-list li .tit h4:after {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 32px;
  height: 2px;
  background: #1a71c8;
  content: "";
}
.job-list li .con {
  float: right;
  padding: 40px;
  width: calc(100% - 260px);
  line-height: 200%;
  box-sizing: border-box;
}

/* responsive */
@media only screen and (max-width: 1024px) {
  .job-tit {
    padding: 60px 20px 40px;
    height: auto;
  }
  .job-tit h3 {
    font-size: 18px;
  }
  .job-tit p {
    padding-top: 16px;
  }

  .job-list {
    padding: 0 20px 40px;
  }
  .job-list li .tit {
    position: inherit;
    padding: 20px;
    width: auto;
  }
  .job-list li .tit h4 {
    font-size: 16px;
  }
  .job-list li .con {
    float: none;
    padding: 20px;
    width: auto;
  }
}

/* ---------- contact ---------- */
.contact-tit {
  padding-bottom: 60px;
  border-bottom: 1px solid #e6e6e6;
}
.contact-tit h3 {
  font-size: 24px;
  font-weight: normal;
}
.contact-tit p {
  padding-top: 20px;
  font-size: 14px;
  color: #999;
}

.contact-list {
  padding: 80px 20px;
  border-bottom: 1px solid #e6e6e6;
  background: url("../images/contact-bg.png") no-repeat center bottom;
  overflow: hidden;
}
.contact-list li {
  float: left;
  width: 33.33%;
  text-align: center;
}
.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: #0998e0;
}
.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;
  font-size: 15px;
}
.contact-con {
  padding: 40px 20px;
  border-bottom: 1px solid #e6e6e6;
  background: #fafafa;
  font-size: 14px;
  line-height: 32px;
  text-align: center;
}

.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 {
    padding: 60px 20px;
  }
}

@media only screen and (max-width: 768px) {
  .contact-tit {
    padding-bottom: 40px;
  }
  .contact-tit h3 {
    font-size: 18px;
  }
  .contact-tit p {
    padding-top: 16px;
  }

  .contact-list {
    padding: 48px 20px;
  }
  .contact-list li {
    float: none;
    padding: 16px 0;
    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-qrcode {
    padding-bottom: 60px;
  }
  .contact-map {
    height: 400px;
  }
}

/* ---------- article ---------- */
.article-main {
  float: left;
  width: 68%;
}

.article-tag a {
  display: inline-block;
  padding: 4px 12px;
  border: 1px solid #ff9326;
  border-radius: 2px;
  font-size: 14px;
  color: #ff9326;
}

.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("../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: 140px;
  padding: 30px 29px;
  width: 25%;
  box-sizing: border-box;
  border: 1px solid #efefef;
  border-top: 2px solid #1a71c8;
}
.article-side h3 {
  font-size: 18px;
  color: #1a71c8;
}
.article-side ul {
  padding-top: 30px;
}
.article-side li {
  padding-bottom: 30px; border-top: 1px #1a71c8 solid;
}
.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: 1024px) {
  .article-main {
    float: none;
    padding: 60px 20px;
    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-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: 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-family: "AvantGarde-Medium";
  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("../images/social-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 {
  color: #d9ad5e;
}

/* responsive */
@media only screen and (max-width: 1024px) {
  .search-form {
    padding-top: 60px;
  }
  .search-form-text {
    width: 80%;
    height: 44px;
    border-radius: 44px;
  }
  .search-form-btn {
    margin-left: -60px;
    width: 55px;
    height: 44px;
  }

  .search-result {
    padding-top: 40px;
    padding-left: 20px;
    padding-right: 20px;
  }

  .result-list {
    padding-bottom: 60px;
  }
  .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;
  }
}