/* 横向布局 */
@-webkit-keyframes pulse {
  0% {
    -webkit-transform: scaleX(1);
    transform: scaleX(1);
  }

  50% {
    -webkit-transform: scale3d(1.01, 1.01, 1.01);
    transform: scale3d(1.01, 1.01, 1.01);
  }

  100% {
    -webkit-transform: scale3d(1.02, 1.02, 1.02);
    transform: scale3d(1.02, 1.02, 1.02);
  }
}

@keyframes pulse {
  0% {
    -webkit-transform: scaleX(1);
    transform: scaleX(1);
  }

  50% {
    -webkit-transform: scale3d(1.01, 1.01, 1.01);
    transform: scale3d(1.01, 1.01, 1.01);
  }

  100% {
    -webkit-transform: scale3d(1.02, 1.02, 1.02);
    transform: scale3d(1.02, 1.02, 1.02);
  }
}

/* 背景图片 */
.hy-container .hy-transfer h1 {
  position: relative;
  font-size: 30px;
  color: #333333;
  font-weight: normal;
  text-align: center;
}

.hy-container .hy-transfer h1 span {
  display: inline-block;
  position: absolute;
  height: 26px;
  width: 444px;
  background: url("../../images/transfer/22.png") no-repeat center;
  background-size: cover;
  left: 50%;
  margin-left: -222px;
  bottom: -35px;
}

.hy-container .hy-transfer h1 b {
  color: #f1685e;
}

.hy-container .hy-transfer h2 {
  font-size: 20px;
  font-weight: normal;
  color: #999999;
  margin: 20px 0 30px;
  text-align: center;
}

.hy-container .hy-transfer .hy-banner {
  width: 100%;
  height: 439px;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  position: relative;
}

.hy-container .hy-transfer .hy-banner .hy-row {
  display: -webkit-flex;
  /* 新版本语法: Chrome 21+ */
  display: -webkit-box;
  /* 老版本语法: Safari, iOS, Android browser, older WebKit browsers. */
  display: -moz-box;
  /* 老版本语法: Firefox (buggy) */
  display: -ms-flexbox;
  /* 混合版本语法: IE 10 */
  display: flex;
  /* 新版本语法: Opera 12.1, Firefox 22+ */
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  justify-content: space-between;
  text-align: center;
  justify-content: center;
  position: absolute;
  bottom: -90px;
  left: 50%;
  margin-left: -601px;
}

.hy-container .hy-transfer .hy-banner .hy-item {
  width: 576px;
  height: 176px;
  margin-left: 50px;
  background: url("../../images/transfer/2.png") no-repeat center;
  box-shadow: 0 3px 5px rgba(204, 204, 204, 0.35);
}

.hy-container .hy-transfer .hy-banner .hy-item.hy-item1 {
  margin-left: 0;
  background: url("../../images/transfer/1.png") no-repeat center;
}

.hy-container .hy-transfer .hy-banner .hy-item.hy-item1 .hy-btn {
  background: #f1685e;
}

.hy-container .hy-transfer .hy-banner .hy-item.hy-item1 .hy-btn:hover {
  background: #d0af60;
}

.hy-container .hy-transfer .hy-banner .hy-row .hy-item .hy-input {
  display: -webkit-flex;
  /* 新版本语法: Chrome 21+ */
  display: -webkit-box;
  /* 老版本语法: Safari, iOS, Android browser, older WebKit browsers. */
  display: -moz-box;
  /* 老版本语法: Firefox (buggy) */
  display: -ms-flexbox;
  /* 混合版本语法: IE 10 */
  display: flex;
  /* 新版本语法: Opera 12.1, Firefox 22+ */
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  justify-content: space-between;
  text-align: center;
  padding: 11px 0;
  flex-wrap: nowrap;
  border: 1px solid #dddddd;
  border-radius: 5px;
  box-sizing: border-box;
  width: 450px;
  height: 42px;
  top: 30px;
  margin-left: 90px;
  position: relative;
}

.hy-container .hy-transfer .hy-banner .hy-row .hy-item .hy-input input {
  border: none;
  border-left: 1px solid #dddddd;
  padding: 0 10px;
  box-sizing: border-box;
  outline: none;
  width: 150px;
}

.hy-container .hy-transfer .hy-banner .hy-item .hy-input input:first-child {
  border-left: none;
  width: 140px;
}

.hy-container .hy-transfer .hy-banner .hy-item .hy-btn {
  width: 180px;
  height: 45px;
  line-height: 45px;
  text-align: center;
  background: #4075df;
  font-size: 16px;
  color: white;
  border-radius: 3px;
  margin-top: 47px;
  margin-left: 22px;
  cursor: pointer;
  border: none;
  outline: none;
}

.hy-container .hy-transfer .hy-banner .hy-row .hy-item:not(.hy-item1) .hy-btn:hover {
  background: #406bd5;
}

.hy-container .hy-transfer .hy-why {
  padding: 40px 0;
  padding-bottom: 0;
  margin-top: 110px;
  text-align: center;
}

.hy-container .hy-transfer .hy-why img {
  margin: 0 auto;
  margin-top: 70px;
  display: block;
}

.hy-container .hy-transfer .hy-keywords {
  background: url("../../images/transfer/4.png") no-repeat center;
  background-size: cover;
  padding: 40px 0;
  text-align: center;
}

.hy-container .hy-transfer .hy-keywords h1 {
  color: white;
}

.hy-container .hy-transfer .hy-keywords h1 span {
  background: url("../../images/transfer/23.png") no-repeat center;
}

.hy-container .hy-transfer .hy-keywords h1 b {
  color: white;
}

.hy-container .hy-transfer .hy-keywords .hy-keywords-info .hy-content {
  display: -webkit-flex;
  /* 新版本语法: Chrome 21+ */
  display: -webkit-box;
  /* 老版本语法: Safari, iOS, Android browser, older WebKit browsers. */
  display: -moz-box;
  /* 老版本语法: Firefox (buggy) */
  display: -ms-flexbox;
  /* 混合版本语法: IE 10 */
  display: flex;
  /* 新版本语法: Opera 12.1, Firefox 22+ */
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  justify-content: space-between;
  text-align: center;
  justify-content: center;
  margin-top: 30px;
  background: url("../../images/transfer/25.png") no-repeat center 37px;
}

.hy-container .hy-transfer .hy-keywords .hy-keywords-info .hy-content .hy-l {
  margin-right: 45px;
}

.hy-container .hy-transfer .hy-keywords .hy-keywords-info .hy-content .hy-r {
  margin-left: 45px;
}

.hy-container .hy-transfer .hy-keywords .hy-keywords-info .hy-content .hy-item {
  width: 450px;
  border: 1px solid white;
  padding: 20px;
  box-sizing: border-box;
  min-height: 200px;
  margin-top: 40px;
  transition: all .2s;
}

.hy-container .hy-transfer .hy-keywords .hy-keywords-info .hy-content .hy-item:hover {
  background: #dc5b52;
}

.hy-container .hy-transfer .hy-keywords .hy-keywords-info .hy-content .hy-item .hy-title {
  display: inline-block;
  display: -webkit-flex;
  /* 新版本语法: Chrome 21+ */
  display: -webkit-box;
  /* 老版本语法: Safari, iOS, Android browser, older WebKit browsers. */
  display: -moz-box;
  /* 老版本语法: Firefox (buggy) */
  display: -ms-flexbox;
  /* 混合版本语法: IE 10 */
  display: flex;
  /* 新版本语法: Opera 12.1, Firefox 22+ */
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  justify-content: space-between;
  text-align: center;
  justify-content: flex-start;
  color: white;
  font-size: 18px;
  border-bottom: 2px solid white;
  width: 100px;
  margin-left: 1.5555555556em;
  padding-bottom: 5px;
  margin-bottom: 15px;
}

.hy-container .hy-transfer .hy-keywords .hy-keywords-info .hy-content .hy-item .hy-title .hy-num {
  color: white;
  margin-right: 7px;
  font-style: italic;
  font-weight: bold;
}

.hy-container .hy-transfer .hy-keywords .hy-keywords-info .hy-content .hy-item .hy-describe {
  font-size: 14px;
  line-height: 2.1;
  color: white;
  text-indent: 2em;
  text-align: left;
}

.hy-container .hy-transfer .hy-keywords .hy-keywords-info .hy-btn {
  display: inline-block;
  width: 250px;
  height: 70px;
  line-height: 70px;
  text-align: center;
  font-size: 26px;
  color: #f1685e;
  background: white;
  box-shadow: 0 3px 5px rgba(51, 51, 51, 0.35);
  margin-top: 40px;
}

.hy-container .hy-transfer .hy-keywords .hy-keywords-info .hy-btn:hover {
  background: #f5f5f5;
}

.hy-container .hy-transfer .hy-reason {
  padding: 40px 0 60px;
}

.hy-container .hy-transfer .hy-reason .hy-row {
  display: -webkit-flex;
  /* 新版本语法: Chrome 21+ */
  display: -webkit-box;
  /* 老版本语法: Safari, iOS, Android browser, older WebKit browsers. */
  display: -moz-box;
  /* 老版本语法: Firefox (buggy) */
  display: -ms-flexbox;
  /* 混合版本语法: IE 10 */
  display: flex;
  /* 新版本语法: Opera 12.1, Firefox 22+ */
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  justify-content: space-between;
  text-align: center;
}

.hy-container .hy-transfer .hy-reason .hy-row .hy-item {
  width: 485px;
  height: 205px;
  background: #f7f7f7;
  position: relative;
  margin-top: 90px;
}

.hy-container .hy-transfer .hy-reason .hy-row .hy-item:nth-child(2) .hy-num {
  background: #4075df;
}

.hy-container .hy-transfer .hy-reason .hy-row .hy-item:nth-child(3) .hy-num {
  background: #4075df;
}

.hy-container .hy-transfer .hy-reason .hy-row .hy-item:nth-child(4) .hy-describe {
  margin-top: 64px;
}

.hy-container .hy-transfer .hy-reason .hy-row .hy-item .hy-num {
  position: absolute;
  top: -30px;
  left: 20px;
  width: 60px;
  height: 60px;
  line-height: 60px;
  text-align: center;
  color: white;
  font-size: 26px;
  font-style: italic;
  border-radius: 50%;
  background: #f1685e;
}

.hy-container .hy-transfer .hy-reason .hy-row .hy-item .hy-describe {
  width: 195px;
  color: #333333;
  line-height: 1.9;
  margin-left: 20px;
  margin-top: 75px;
  text-align: left;
  font-size: 16px;
}

.hy-container .hy-transfer .hy-reason .hy-row .hy-item .hy-img {
  width: 324px;
  height: 197px;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  position: absolute;
  bottom: -30px;
  right: -60px;
}

.hy-container .hy-transfer .hy-process {
  background: #f1685e;
  text-align: center;
}

.hy-container .hy-transfer .hy-process h1 {
  color: white;
}

.hy-container .hy-transfer .hy-process h1 span {
  background: url("../../images/transfer/23.png") no-repeat center;
}

.hy-container .hy-transfer .hy-process h1 b {
  color: white;
}

.hy-container .hy-transfer .hy-process .hy-process-info {
  padding: 40px 0;
}

.hy-container .hy-transfer .hy-process .hy-process-info img {
  margin-top: 70px;
  display: inline-block;
}

.hy-container .hy-transfer .hy-how {
  padding: 40px 0;
  background-size: cover;
  text-align: center;
}

.hy-container .hy-transfer .hy-how .hy-how-info {
  display: -webkit-flex;
  /* 新版本语法: Chrome 21+ */
  display: -webkit-box;
  /* 老版本语法: Safari, iOS, Android browser, older WebKit browsers. */
  display: -moz-box;
  /* 老版本语法: Firefox (buggy) */
  display: -ms-flexbox;
  /* 混合版本语法: IE 10 */
  display: flex;
  /* 新版本语法: Opera 12.1, Firefox 22+ */
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  justify-content: space-between;
  text-align: center;
  justify-content: space-around;
  margin-top: 70px;
}

.hy-container .hy-transfer .hy-how .hy-how-info .hy-item {
  background: white;
  width: 260px;
  display: -webkit-flex;
  /* 新版本语法: Chrome 21+ */
  display: -webkit-box;
  /* 老版本语法: Safari, iOS, Android browser, older WebKit browsers. */
  display: -moz-box;
  /* 老版本语法: Firefox (buggy) */
  display: -ms-flexbox;
  /* 混合版本语法: IE 10 */
  display: flex;
  /* 新版本语法: Opera 12.1, Firefox 22+ */
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  justify-content: space-between;
  text-align: center;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  transition: all 0.6s;
}

.hy-container .hy-transfer .hy-how .hy-how-info .hy-item:hover {
  position: relative;
  margin-top: -10px;
}

.hy-container .hy-transfer .hy-how .hy-how-info .hy-item .hy-img {
  width: 260px;
  height: 150px;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  border-bottom: 2px solid #f1685e;
}

.hy-container .hy-transfer .hy-how .hy-how-info .hy-item .hy-describe {
  border: 1px solid #dddddd;
  border-top: 0;
  width: 100%;
  padding: 20px 0;
}

.hy-container .hy-transfer .hy-how .hy-how-info .hy-item .hy-describe h3 {
  font-size: 18px;
  font-weight: normal;
}

.hy-container .hy-transfer .hy-how .hy-how-info .hy-item .hy-describe .hy-btn {
  display: inline-block;
  font-size: 16px;
  background: #f1685e;
  color: white;
  border-radius: 3px;
  padding: 5px 25px;
  margin-top: 20px;
  cursor: pointer;
}

.hy-container .hy-transfer .hy-how .hy-how-info .hy-item .hy-describe .hy-btn:hover {
  background: #e7675d;
}

.hy-container .hy-transfer .hy-introduce {
  padding: 40px 0;
}

.hy-container .hy-transfer .hy-introduce .hy-row {
  display: -webkit-flex;
  /* 新版本语法: Chrome 21+ */
  display: -webkit-box;
  /* 老版本语法: Safari, iOS, Android browser, older WebKit browsers. */
  display: -moz-box;
  /* 老版本语法: Firefox (buggy) */
  display: -ms-flexbox;
  /* 混合版本语法: IE 10 */
  display: flex;
  /* 新版本语法: Opera 12.1, Firefox 22+ */
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  justify-content: space-between;
  text-align: center;
  justify-content: center;
  margin-top: 90px;
}

.hy-container .hy-transfer .hy-introduce .hy-row .hy-img {
  width: 499px;
  height: 294px;
  background: #eeeeee;
  position: relative;
}

.hy-container .hy-transfer .hy-introduce .hy-row .hy-img:before {
  display: inline-block;
  content: '';
  position: absolute;
  width: 500px;
  height: 280px;
  background: url("../../images/transfer/14.png");
  top: -10px;
  left: -20px;
}

.hy-container .hy-transfer .hy-introduce .hy-row .hy-describe {
  color: #333333;
  line-height: 1.6;
  font-size: 16px;
  width: 560px;
  padding-left: 40px;
  box-sizing: border-box;
  text-align: left;
  text-indent: 2em;
}

.hy-container .hy-transfer .hy-part .hy-row {
  display: -webkit-flex;
  /* 新版本语法: Chrome 21+ */
  display: -webkit-box;
  /* 老版本语法: Safari, iOS, Android browser, older WebKit browsers. */
  display: -moz-box;
  /* 老版本语法: Firefox (buggy) */
  display: -ms-flexbox;
  /* 混合版本语法: IE 10 */
  display: flex;
  /* 新版本语法: Opera 12.1, Firefox 22+ */
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  justify-content: space-between;
  text-align: center;
  margin-top: 70px;
  justify-content: space-around;
}

.hy-container .hy-transfer .hy-part .hy-row .hy-item {
  width: 280px;
  height: 369px;
  border: 1px solid #dddddd;
  padding: 30px 20px;
  box-sizing: border-box;
}

.hy-container .hy-transfer .hy-part .hy-row .hy-item .hy-img {
  width: 100px;
  height: 100px;
  margin: 0 auto;
  background-size: cover;
}

.hy-container .hy-transfer .hy-part .hy-row .hy-item .hy-title {
  font-size: 18px;
  color: #333333;
  margin: 20px 0;
}

.hy-container .hy-transfer .hy-part .hy-row .hy-item .hy-title span {
  font-size: 18px;
  color: #f1685e;
}

.hy-container .hy-transfer .hy-part .hy-row .hy-item .hy-describe {
  font-size: 16px;
  color: #666666;
  text-align: left;
  line-height: 1.9;
}

.hy-container .hy-transfer .hy-push {
  padding: 40px 0;
  text-align: center;
  /* background: url("../../images/transfer/24.png") no-repeat bottom center; */
}

.hy-container .hy-transfer .hy-push .hy-row {
  display: -webkit-flex;
  /* 新版本语法: Chrome 21+ */
  display: -webkit-box;
  /* 老版本语法: Safari, iOS, Android browser, older WebKit browsers. */
  display: -moz-box;
  /* 老版本语法: Firefox (buggy) */
  display: -ms-flexbox;
  /* 混合版本语法: IE 10 */
  display: flex;
  /* 新版本语法: Opera 12.1, Firefox 22+ */
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  justify-content: space-between;
  text-align: center;
  margin-top: 70px;
}

.hy-container .hy-transfer .hy-push .hy-row .hy-item {
  width: 280px;
  overflow: hidden;
  box-shadow: 0 3px 5px rgba(102, 102, 102, 0.35);
  transition: all .2s;
}

.hy-container .hy-transfer .hy-push .hy-row .hy-item:hover {
  box-shadow: 0 3px 7px rgba(102, 102, 102, 0.7);
}

.hy-container .hy-transfer .hy-push .hy-row .hy-item .hy-img {
  height: 220px;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}

.hy-container .hy-transfer .hy-push .hy-row .hy-item .hy-item-info {
  background: white;
  padding: 25px;
}

.hy-container .hy-transfer .hy-push .hy-row .hy-item .hy-item-info h3 {
  font-size: 22px;
  color: #333333;
  text-align: left;
  font-weight: normal;
}

.hy-container .hy-transfer .hy-push .hy-row .hy-item .hy-item-info .hy-btn {
  display: block;
  color: #f1685e;
  font-size: 15px;
  text-align: left;
  margin-top: 10px;
}

.hy-container .hy-transfer .hy-push .hy-row .hy-item .hy-item-info .hy-btn:hover {
  color: #e7675d;
}

.hy-container .hy-transfer .hy-push .hy-push-more {
  background: #4075df;
  display: inline-block;
  color: white;
  width: 250px;
  height: 40px;
  line-height: 40px;
  border-radius: 20px;
  text-align: center;
  margin-top: 40px;
  font-size: 16px;
}

.hy-container .hy-transfer .hy-push .hy-push-more:hover {
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-name: pulse;
  animation-name: pulse;
  animation-fill-mode: forwards;
  -webkit-animation-fill-mode: forwards;
  /* Safari 和 Chrome */
  background: #406bd5;
}

/*# sourceMappingURL=index.css.map */
