/* ---------- banner ---------- */
.banner {
    height: 500px;
    background-position: center top;
    background-size: cover;
  }
  .banner.contact {
    background-image: url("../img/contact-banner.jpg");
  }
  .banner-tit {
    padding-top: 288px;
    color: #fff;
  }
  .banner-tit h2 {
    font-family: "AvantGarde-Medium";
    font-size: 72px;
    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;
  }
  
  /* responsive */
  @media only screen and (max-width: 768px) {
    .banner {
      height: 400px;
    }
  
    .banner-tit {
      padding-top: 256px;
    }
    .banner-tit h2 {
      font-size: 40px;
    }
    .banner-tit h2 span:after {
      right: -32px;
      bottom: 10px;
      width: 20px;
      height: 4px;
    }
    .banner-tit h1 {
      font-size: 20px;
    }
  }
  
  /* ---------- content ---------- */
  .sub-container {
    margin: auto;
    padding: 100px 20px;
    max-width: 1280px;
  }
  
  /* responsive */
  @media only screen and (max-width: 768px) {
    .sub-container {
      padding: 0;
    }
  }
  
  /* ---------- sub nav ---------- */
  .sub-nav {
    float: left;
    width: 240px;
    background: url("../img/sub-nav-btm.png") no-repeat bottom #f6f6f6;
  }
  .sub-nav ul {
    padding: 60px 0 120px 40px;
  }
  .sub-nav li {
    padding-bottom: 10px;
  }
  .sub-nav li a {
    display: block;
    padding-left: 40px;
    height: 60px;
    border-radius: 6px;
    background: url("../img/sub-nav-arrow.png") no-repeat right 30px center;
    font-size: 16px;
    line-height: 60px;
  }
  .sub-nav li a.current {
    width: 200px;
    background-color: #1A6FC9;
    box-shadow: 4px 4px 12px rgba(26,111,201,0.2);
    color: #fff;
  }
  
  /* responsive */
  @media only screen and (max-width: 768px) {
    .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 {
      padding-left: 20px;
      height: 48px;
      background: url("../img/sub-nav-arrow.png") no-repeat right 16px center #fff;
      line-height: 48px;
    }
    .sub-nav li a.current {
      width: auto;
    }
  }

  /* ---------- contact ---------- */
.contact-tit {
    padding-top: 80px;
    height: 180px;
    background: url("../img/contact-tit.png") no-repeat;
  }
  .contact-tit h3 {
    font-size: 24px;
    font-weight: normal;
  }
  .contact-tit p {
    padding-top: 20px;
    font-size: 14px;
    color: #999;
  }
  
  .contact-list {
    padding: 40px 40px 80px;
    border-bottom: 1px solid #e0e0e0;
    background: url("../img/contact-bg.png") no-repeat center bottom;
    overflow: hidden;
  }
  .contact-list li {
    float: left;
    width: 400px;
    text-align: center;
  }
  .contact-list li i {
    display: inline-block;
    width: 80px;
    height: 80px;
    border: 1px solid #d9ad5e;
    border-radius: 100%;
    background-repeat: no-repeat;
    background-position: center;
    background-size: 32px;
  }
  .contact-list li i.ico-1 {
    background-image: url("../img/contact-ico-1.png");
  }
  .contact-list li i.ico-2 {
    background-image: url("../img/contact-ico-2.png");
  }
  .contact-list li i.ico-3 {
    background-image: url("../img/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 #e0e0e0;
    background: #fafafa;
    text-align: center;
  }
  .contact-con li {
    font-size: 14px;
    line-height: 32px;
  }
  
  .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: 768px) {
    .contact-tit {
      padding: 52px 100px 52px 20px;
      height: auto;
      background: url("../img/contact-tit.png") no-repeat right bottom;
      background-size: 520px;
    }
    .contact-tit h3 {
      font-size: 18px;
    }
    .contact-tit p {
      padding-top: 16px;
    }
  
    .contact-list {
      padding: 24px 20px 48px;
    }
    .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;
    }
  }