.banner {
  position: relative;
}

.banner .pic {
  line-height: 0;
}

.banner .pic:before {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(0, 0, 0, 0.35);
  display: block;
  z-index: 1;
}

.banner .title-box {
  position: absolute;
  bottom: 40%;
  width: 100%;
  z-index: 2;
}

.banner .title-box .title {
  max-width: 700px;
  margin: 0 auto;
  font-size: 42px;
  font-weight: bold;
  text-align: center;
  color: #FFF;
  line-height: 1;
  padding: 20px 0 20px;
  border-top: rgba(221, 221, 221, 0.3) 1px solid;
  border-bottom: rgba(221, 221, 221, 0.3) 1px solid;
}

.banner .title-box .slogn {
  max-width: 530px;
  margin: 0 auto;
  text-align: center;
  font-size: 21px;
  color: #DDDDDD;
  background: rgba(1, 181, 181, 0.8);
  margin: 0 auto;
  padding: 8px 10px;
}

.banner .title-box .slogn span {
  color: #F26648;
}

.banner:after {
  content: '';
  display: block;
  z-index: 2;
  position: absolute;
  left: calc(50% - 13px);
  bottom: 50px;
  width: 26px;
  height: 55px;
  background: url(../images/mouse.svg) no-repeat;
  -webkit-animation: scrolldown 1.8s 1s infinite;
          animation: scrolldown 1.8s 1s infinite;
}

@-webkit-keyframes scrolldown {
  0% {
    -webkit-transform: translateY(0px);
            transform: translateY(0px);
  }
  50% {
    -webkit-transform: translateY(-10px);
            transform: translateY(-10px);
  }
  100% {
    -webkit-transform: translateY(0px);
            transform: translateY(0px);
  }
}

@keyframes scrolldown {
  0% {
    -webkit-transform: translateY(0px);
            transform: translateY(0px);
  }
  50% {
    -webkit-transform: translateY(-10px);
            transform: translateY(-10px);
  }
  100% {
    -webkit-transform: translateY(0px);
            transform: translateY(0px);
  }
}

.box1 {
  margin: -45px auto 5%;
  position: relative;
  z-index: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
}

.box1 .list {
  width: calc(100% / 3);
  border-left: #DDDDDD 1px solid;
  border-bottom: #DDDDDD 1px solid;
  padding: 0 0 20px 0;
}

.box1 .list .title {
  width: 100%;
  font-size: 24px;
  color: #FFF;
  font-weight: bold;
  background: #F36649;
  vertical-align: middle;
  height: 90px;
  -webkit-box-shadow: 0 0 10px 1px rgba(0, 0, 0, 0.1);
          box-shadow: 0 0 10px 1px rgba(0, 0, 0, 0.1);
  border-right: #F4866F 1px solid;
  border-left: #F4866F 1px solid;
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  line-height: 1.4;
  padding: 0px 10px;
  margin: 0 0 20px 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  text-align: center;
}

.box1 .list .con {
  text-align: center;
  color: #333333;
  font-size: 18px;
  vertical-align: middle;
  padding: 10px;
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
}

.box1 .list:last-child {
  border-right: #DDDDDD 1px solid;
}

.box2 {
  margin: 0 auto -12%;
  background: #FFF;
  padding: 0 0 4% 0;
  position: relative;
  z-index: 2;
}

.box2 .title {
  text-align: center;
  margin: 0 0 5% 0;
  font-family: Sylfaen;
  font-size: 46px;
  color: #120D0E;
}

.box2 .title span {
  font-size: 24px;
  color: #00B8B4;
  letter-spacing: 10px;
  padding: 0 0 0 10px;
  display: block;
}

.box2 .con {
  max-width: 850px;
  margin: 0 auto;
  padding: 0 10px;
  font-size: 16px;
  color: #333333;
  line-height: 2;
}

.map {
  line-height: 0;
  background: #000;
}

.map iframe {
  opacity: 0.9;
}

@media screen and (max-width: 1000px) {
  .banner .title-box {
    position: absolute;
    bottom: 80px;
    width: 100%;
  }
  .banner .title-box .title {
    font-size: 28px;
  }
  .banner .title-box .slogn {
    font-size: 18px;
  }
  .banner:after {
    bottom: 10px;
  }
  .box1 {
    margin: 10px auto 5%;
    position: relative;
    z-index: 1;
  }
  .box1 .table .th {
    text-align: center;
    font-size: 18px;
    padding: 10px;
    height: auto;
  }
  .box1 .table .td {
    font-size: 16px;
  }
}

@media screen and (max-width: 650px) {
  .banner .title-box {
    position: absolute;
    bottom: 10px;
    width: 100%;
  }
  .banner .title-box .title {
    font-size: 22px;
  }
  .banner .title-box .slogn {
    font-size: 13px;
  }
  .banner:after {
    display: none;
  }
}

@media screen and (max-width: 500px) {
  .box1 {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .box1 .list {
    width: 100%;
  }
  .box1 .list .title {
    font-size: 20px;
    height: auto;
    padding: 10px;
    margin: 0 0 10px 0;
  }
  .box1 .list .con {
    font-size: 16px;
  }
}
