.box {
  position: relative;
  overflow: hidden;
  background-color: #EBF0FF;
  padding-bottom: 80px;
}

.banner {
  width: 100%;
  height: 670px;
  background: url(../images/banner_bg.png) no-repeat center top;
  position: relative;
}

.banner_container {
  width: 1920px;
  position: absolute;
  top: 0;
  left: 50%;
  margin-left: -960px;
  height: 100%;
}

.ht_logo {
  margin-top: -10px;
  margin-left: 59%;
}


.title img {
  margin: 0 auto;
}

.title01 {
  margin-top: 50px;
}

.line {
  background: #AAC6FF;
  height: 128px;
}

.line ul {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.line ul li {
  cursor: pointer;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 225px;
  height: 128px;
  background: #2D68E3;
  border-radius: 23px;
}

.line ul li.active {

  background: #B12D22;
}

.line ul li h2 {
  color: #FFFFFF;
  font-size: 32px;

}

.line ul li p {
  color: #FFDE00;
  font-size: 22px;
  margin: 10px 0 15px;
}

.line ul li i {
  width: 62px;
  height: 4px;
  background: #FFFFFF;
  opacity: 0.5;
  border-radius: 2px;
}

.paper_container {
  width: 100%;
  max-height: 592px;
  min-height: 477px;
  background: url(../images/paper.png) no-repeat center center;
  background-size: 100% auto;
  box-sizing: border-box;
  padding: 35px;
}

.tab01_container {
  display: none;
}

.tab01_container.active {
  display: block;
}

.tab01_container div {
  height: 70px;
  display: flex;
  align-items: center;
  border-bottom: 1px dashed #3F58A2;
  box-sizing: border-box;
  padding: 0 16px;
}

.tab01_container div img {
  width: 31px;
  height: 31px;
  margin-right: 25px;
}

.tab01_container div p {
  flex: 1;
  color: #000000;
  font-size: 26px;
}

.btn_container {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 34px;
}

.btn_container a {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 343px;
  height: 70px;
  background: #B12D22;
  border-radius: 35px;
  margin: 0 35px;
  color: #FFFFFF;
  font-size: 28px;
}

.btn_container a img {
  margin-left: 8px;
  vertical-align: middle;
}

.blue_container {
  background-color: #2D68E3;
  padding-bottom: 100px;
  border-radius: 0 0 20px 20px;
}

.bkzl_title {
  height: 90px;
  margin-top: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #FFFFFF;
  font-size: 43px;
  background-color: #0036A6;
}

.bkzl_title span {
  margin: 0 33px;
}

.zl_list {
  box-sizing: border-box;
  padding: 0 53px;
}

.zl_item {
  height: 84px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px dashed #0036A6;
  color: #EBF0FF;
  font-size: 26px;
  box-sizing: border-box;
  padding-left: 23px;
}

.zl_item img {
  width: 26px;
  height: 22px;
  margin-right: 10px;
}

.zl_item div {
  display: flex;
  align-items: center;
}

.zl_item a {
  display: block;
  width: 149px;
  height: 42px;
  background: #B22D22;
  border-radius: 6px;
  color: #FFFFFF;
  font-size: 23px;
  text-align: center;
  line-height: 42px;
  transition: transform .3s ease;
}

.zl_item a:hover {
  transform: translateY(-6px);
}

.title02 {
  margin-top: 86px;
  margin-bottom: 50px;
}

.region a {
  float: left;
  display: block;
  width: 142px;
  height: 57px;
  background: #3729FF;
  border-radius: 9px;
  box-sizing: border-box;
  margin-top: 21px;
  text-align: center;
  line-height: 57px;
  font-size: 22px;
  color: #FFFFFF;
  transition: all .3s linear;
  margin-right: 8px;
}

.region a:hover {
  transform: translateY(-6px);
}

.region a:nth-child(8n) {
  margin-right: 0;
}

.wrap img{padding-top:10px;}

@media only all and (max-width:1080px) {
  .box {
    padding-bottom: 1rem;
  }

  .banner {
    height: 10rem;
    background-size: auto 100%;
    margin-bottom: 2rem;
  }

  .banner_container {
    width: 100%;
    margin-left: -50%;
  }

  .ht_logo {
    width: 4rem;
    margin-top: -10px;
    margin-left: 59%;
  }
  .txt01 {
    width: 80%;
  }

  .txt02 {
    margin-top: .2rem;
    width: 80%;
  }

  .title img {
    width: 70%;
  }

  .title01 {
    margin-top: 1rem;
  }

  .line {
    height: auto;
  }

  .line ul {
    justify-content: center;
    flex-wrap: wrap;
  }
  .line ul li {
    width: 33%;
    height: 4rem;
    border-radius: .4rem;
  }

  .line ul li h2 {
    font-size: .8rem;
  
  }
  
  .line ul li p {
    font-size: .7rem;
    margin: .2rem 0 .3rem;
  }

  .line ul li i {
    width: 40%;
    height: .1rem;
    border-radius: .1rem;
  }

  .paper_container {
    width: 100%;
    max-height: auto;
    min-height: auto;
    background: #FFFFFF;
    border-radius: .4rem;
    padding: .6rem;
  }

  .tab01_container div {
    height: auto;
    padding: .6rem .4rem;
  }

  .tab01_container div img {
    width: .8rem;
    height: .8rem;
    margin-right: .4rem;
  }

  .tab01_container div p {
    font-size: .7rem;
  }

  .btn_container {
    justify-content: space-around;
    margin-top: .8rem;
  }

  .btn_container a {
    justify-content: center;
    width: 50%;
    height: 1.8rem;
    border-radius: 1rem;
    margin: 0;
    font-size: .7rem;
  }

  .btn_container a img {
    width: .6rem;
    margin-left: .2rem;
  }

  .blue_container {
    padding-bottom: 1rem;
    border-radius: 0 0 .4rem .4rem;
  }

  .bkzl_title {
    height: auto;
    padding: .4rem 0;
    margin-top: .8rem;
    font-size: .8rem;
  }

  .bkzl_title span {
    margin: 0 .4rem;
  }
  .bkzl_title img {
    width: 2rem;
  }

  .zl_list {
    padding: 0 .8rem;
  }

  .zl_item {
    height: auto;
    padding: .6rem .4rem;
    font-size: .7rem;
  }

  .zl_item img {
    width: 1rem;
    height: auto;
    margin-right: .2rem;
  }

  .zl_item div {
    width: 70%;
  }

  .zl_item a {
    display: block;
    width: 3.6rem;
    height: 1.4rem;
    border-radius: .2rem;
    font-size: .6rem;
    line-height: 1.4rem;
  }

  .zl_item a:hover {
    transform: translateY(-6px);
  }

  .title02 {
    margin-top: .8rem;
    margin-bottom: .2rem;
  }

  /* 地区开始 */
  .region {
    width: 100%;
    height: auto;
    border-radius: .4rem;
    padding: .2rem;
  }

  .region a {
    width: 24%;
    height: 1.8rem;
    margin-right: 1%;
    margin-top: .4rem;
    line-height: 1.8rem;
    font-size: .7rem;
  }

  .region a:nth-child(7n) {
    margin-right: 1%;
  }

  .region a:nth-child(4n) {
    margin-right: 0;
  }

}