@keyframes bounce {
  0%,
  15%,
  47%,
  73%,
  89%,
  100% {
    animation-timing-function: ease-out;
    transform: translate3d(0, 0, 0);
  }
  30%,
  32% {
    animation-timing-function: ease-in;
    transform: translate3d(0, -14px, 0);
  }
  60% {
    animation-timing-function: ease-in;
    transform: translate3d(0, -10px, 0);
  }
  82% {
    animation-timing-function: ease-in;
    transform: translate3d(0, -6px, 0);
  }
  94% {
    animation-timing-function: ease-in;
    transform: translate3d(0, -4px, 0);
  }
}
.banner {
  position: relative;
  overflow: hidden;
}
.banner img {
  width: 100%;
}
.banner .text {
  position: absolute;
  top: 28%;
  width: 100%;
  left: 0;
}
.banner .text .b-tu {
  width: 20%;
  margin: 0 auto;
}
.banner .text .b-tu img {
  width: 100%;
}
.banner .text h2 {
  text-align: center;
  color: #fff;
  letter-spacing: 7px;
  margin: 18px 0 6px;
  font-weight: bold;
}
.banner .text h3 {
  text-align: center;
  color: #fff;
  letter-spacing: 3px;
}
.banner .text .video-btn {
  width: 156px;
  height: 54px;
  border-radius: 4px;
  border: 2px solid rgba(255, 255, 255, 0.5);
  margin: 50px auto 0;
  cursor: pointer;
  text-align: center;
  line-height: 52px;
  transition: all 0.5s;
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -ms-transition: all 0.5s;
}
.banner .text .video-btn span {
  color: #fff;
}
.banner .text .video-btn span.iconfont {
  position: relative;
  left: 0;
  top: 1px;
  transition: all 0.5s;
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -ms-transition: all 0.5s;
}
.banner .text .video-btn:hover {
  background: #fff;
}
.banner .text .video-btn:hover span {
  color: #0086f1;
}
.banner .text .video-btn:hover span.iconfont {
  left: 6px;
}
.manage {
  padding: 80px 0;
  background: url(../image/bg_01.jpg) no-repeat center center;
  background-size: cover;
  overflow: hidden;
}
.manage .con .left {
  float: left;
  width: 37.5%;
}
.manage .con .left h2 {
  font-weight: bold;
  color: #000;
  line-height: 1.4;
}
.manage .con .right {
  float: right;
  width: 62.5%;
}
.manage .con .right .text p {
  font-size: 16px;
  color: #000;
  line-height: 1.7;
}
.manage .con .right .text p:not(:first-child) {
  margin-top: 10px;
}
.manage .con .right .down {
  margin-top: 50px;
  display: inline-block;
}
.manage .con .right .down a {
  display: flex;
}
.manage .con .right .down a .tu {
  width: 40px;
  margin-right: 16px;
}
.manage .con .right .down a .tu img {
  width: 100%;
}
.manage .con .right .down a .txt {
  position: relative;
  top: -6px;
}
.manage .con .right .down a .txt h2 {
  color: #000;
  transition: all 0.5s;
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -ms-transition: all 0.5s;
}
.manage .con .right .down a .txt p {
  color: #000;
  position: relative;
  left: -8px;
  margin-top: 2px;
}
.manage .con .right .down:hover a .tu {
  animation: bounce 1s forwards;
}
.manage .con .right .down:hover a .txt h2 {
  color: #2185ee;
}
.station {
  overflow: hidden;
  padding-bottom: 80px;
}
.station .con ul li {
  position: relative;
  margin-top: 100px;
}
.station .con ul li .left {
  float: left;
  width: 32.5%;
  position: relative;
}
/*
.station .con ul li .left:before {
  content: '';
  width: 74px;
  height: 74px;
  border-radius: 50%;
  background: #00ccff;
  position: absolute;
  left: 4px;
  top: 66px;
  z-index: -1;
  transform-origin: 200px 200px;
  transition: all 0.5s;
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -ms-transition: all 0.5s;
}

.station .con ul li .left:after {
  content: '';
  width: 138px;
  height: 138px;
  border-radius: 50%;
  background: #00c8c8;
  position: absolute;
  right: -30px;
  bottom: 0;
  transform-origin: 280px 200px;
  transition: all 0.5s;
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -ms-transition: all 0.5s;
}
*/
.station .con ul li .left .tu {
  width: 100%;
}
.station .con ul li .left .tu img {
  width: 100%;
}
.station .con ul li .left:hover:before {
  transform: rotate(-10deg);
  -webkit-transform: rotate(-10deg);
  -moz-transform: rotate(-10deg);
  -ms-transform: rotate(-10deg);
}
.station .con ul li .left:hover:after {
  transform: rotate(10deg);
  -webkit-transform: rotate(10deg);
  -moz-transform: rotate(10deg);
  -ms-transform: rotate(10deg);
}
.station .con ul li .right {
  float: right;
  position: absolute;
  width: 47.2%;
  height: 100%;
  right: 0;
  top: 0;
}
.station .con ul li .right .text {
  position: absolute;
  width: 100%;
  top: 50%;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
}
.station .con ul li .right .text h3 {
  color: #333;
}
.station .con ul li .right .text h2 {
  font-weight: bold;
  color: #0086f1;
}
.station .con ul li .right .text .txt {
  margin-top: 30px;
}
.station .con ul li .right .text .txt p {
  font-size: 16px;
  color: #000;
  margin-top: 14px;
  position: relative;
  padding-left: 34px;
}
.station .con ul li .right .text .txt p:before {
  content: '';
  width: 16px;
  height: 12px;
  background: url(../image/dui.png) no-repeat;
  background-size: cover;
  position: absolute;
  left: 2px;
  top: 8px;
}
.station .con ul li .right .text a {
  color: #0086f1;
  display: inline-block;
  margin-top: 50px;
}
.station .con ul li .right .text a span {
  font-size: 16px;
  margin-left: 6px;
  position: relative;
  left: 0;
  transition: all 0.5s;
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -ms-transition: all 0.5s;
}
.station .con ul li .right .text a:hover span {
  left: 6px;
}
.station .con ul li:nth-child(odd) .left {
  float: right;
  position: relative;
  right: 48px;
}
.station .con ul li:nth-child(odd) .right {
  right: auto;
  left: 0;
}
.choose {
  margin-top: 40px;
  padding-bottom: 100px;
  overflow: hidden;
}
.choose .con .title h2 {
  font-weight: bold;
  text-align: center;
  color: #000;
}
.choose .con .choose-list {
  margin-top: 48px;
}
.choose .con .choose-list ul li {
  float: left;
  width: 31.4%;
  position: relative;
  overflow: hidden;
}
.choose .con .choose-list ul li:not(:nth-child(3n)) {
  margin-right: 2.9%;
}
.choose .con .choose-list ul li .tu {
  width: 100%;
  height: 0;
  padding-bottom: 110%;
  overflow: hidden;
  border-radius: 4px;
  background:#1c86dc;
}
.choose .con .choose-list ul li .tu img {
  width: 100%;
}
.choose .con .choose-list ul li .text {
  position: absolute;
  width: 90%;
  margin-left:5%;
  bottom: 50px;
  left: 0;
  opacity: 1;
  transition: all 0.5s;
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -ms-transition: all 0.5s;
}
.choose .con .choose-list ul li .text h2 {
  color: #fff;
  font-weight: bold;
  text-align: center;
}
.choose .con .choose-list ul li .text p {
  text-align: center;
  color: #fff;
  line-height: 1.7;
  margin-top: 16px;
}
.choose .con .choose-list ul li .mask {
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 4px;
  background: rgba(0, 134, 241, 0.8);
  left: 0;
  bottom: 0;
  opacity: 0;
  transition: all 0.5s;
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -ms-transition: all 0.5s;
}
.choose .con .choose-list ul li .mask .txt {
  position: absolute;
  width: 74%;
  left: 0;
  bottom: 60px;
  transition: all 0.5s;
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -ms-transition: all 0.5s;
}
.choose .con .choose-list ul li .mask .txt h2 {
  font-weight: bold;
  color: #fff;
}
.choose .con .choose-list ul li .mask .txt p {
  color: #fff;
  -webkit-line-clamp: 3;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  text-overflow: ellipsis;
  overflow: hidden;
  line-height: 1.5;
  height: 4.5em;
  line-height: 1.7;
  height: 5.1em;
  margin: 20px 0 30px;
}
.choose .con .choose-list ul li .mask .txt a {
  color: #fff;
}
.choose .con .choose-list ul li .mask .txt a span {
  margin-left: 4px;
  position: relative;
  left: 0;
  transition: all 0.5s;
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -ms-transition: all 0.5s;
}
.choose .con .choose-list ul li .mask .txt a:hover span {
  left: 6px;
}
.choose .con .choose-list ul li:hover .text {
  opacity: 0;
}
.choose .con .choose-list ul li:hover .mask {
  opacity: 1;
}
.choose .con .choose-list ul li:hover .mask .txt {
  left: 13%;
}
.accept {
  background: #f2f6fc;
  padding: 54px 0 70px;
  overflow: hidden;
}
.accept .con .title h2 {
  font-weight: bold;
  text-align: center;
}
.accept .con .accept-list {
  margin-top: 50px;
}
.accept .con .accept-list ul li {
  float: left;
  width: 33.333%;
}
.accept .con .accept-list ul li .tu {
  width: 154px;
  height: 154px;
  border-radius: 50%;
  background: #fff;
  margin: 0 auto;
  position: relative;
}
.accept .con .accept-list ul li .tu img {
  position: absolute;
  width: 69%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
}
.accept .con .accept-list ul li .text {
  margin-top: 20px;
}
.accept .con .accept-list ul li .text h2 {
  color: #666;
  text-align: center;
  line-height: 1.7;
  white-space: nowrap;
}
.paper {
  padding: 3.6% 0;
  background: url(../images/bg_02.jpg) no-repeat center center;
  background-size: cover;
  overflow: hidden;
}
.paper .con {
  display: flex;
  justify-content: space-between;
}
.paper .con h2 {
  color: #fff;
  line-height: 40px;
}
.paper .con a {
  display: block;
  width: 130px;
  height: 40px;
  border: 1px solid #fff;
  border-radius: 4px;
  text-align: center;
  line-height: 38px;
  color: #fff;
  transition: all 0.5s;
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -ms-transition: all 0.5s;
}
.paper .con a span {
  margin-left: 2px;
  transition: all 0.5s;
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -ms-transition: all 0.5s;
}
.paper .con a:hover {
  background: #fff;
  color: #0086f1;
}
.paper .con a:hover span {
  color: #0086f1;
  margin-left: 8px;
}
#videoPopup {
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  z-index: 1000;
  background-color: rgba(0, 0, 0, 0.4);
  display: none;
}
#videoPopup .video-box {
  width: 60%;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
}
#videoPopup .video-box video {
  width: 100%;
}
#videoPopup .video-box .close {
  position: absolute;
  right: 20px;
  top: 20px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.1);
  cursor: pointer;
  text-align: center;
}
#videoPopup .video-box .close span {
  font-size: 16px;
  line-height: 40px;
  color: #fff;
}
#videoPopup .video-box .close:hover {
  background: rgba(0, 0, 0, 0.5);
}
@media screen and (max-width: 1440px) {
  .manage {
    padding: 70px 0;
  }
  .manage .con .left {
    width: 35%;
  }
  .manage .con .right {
    width: 65%;
  }
  .manage .con .right .text {
    padding-right: 40px;
  }
  .station .con ul li {
    margin-top: 80px;
  }
  .station .con ul li:nth-child(even) .right .text {
    padding-right: 30px;
  }
}
@media screen and (max-width: 1366px) {
  .manage .con .right .text {
    padding-right: 20px;
  }
  .station .con ul li:nth-child(even) .right .text {
    padding-right: 20px;
  }
}
@media screen and (max-width: 1024px) {
  .banner .text h2 {
    margin: 10px 0 2px;
  }
  .banner .text .video-btn {
    width: 146px;
    height: 46px;
    line-height: 42px;
    margin: 40px auto 0;
  }
  .manage {
    padding: 60px 0;
  }
  .manage .con .right .text p {
    font-size: 16px;
  }
  .manage .con .right .down {
    margin-top: 40px;
  }
  .manage .con .right .down a .tu {
    width: 36px;
  }
  .manage .con .right .down a .txt {
    top: -3px;
  }
  .station .con ul li {
    margin-top: 60px;
  }
  .station .con ul li .left:before {
    width: 54px;
    height: 54px;
    left: 2px;
    top: 46px;
  }
  .station .con ul li .left:after {
    width: 108px;
    height: 108px;
    right: -2px;
    bottom: -28px;
  }
  .station .con ul li .right .text .txt {
    margin-top: 22px;
  }
  .station .con ul li .right .text .txt p {
    font-size: 14px;
    margin-top: 12px;
    padding-left: 30px;
  }
  .station .con ul li .right .text .txt p:before {
    width: 14px;
    height: 10px;
    top: 6px;
  }
  .station .con ul li .right .text a {
    margin-top: 40px;
  }
  .station .con ul li:nth-child(even) .right {
    padding-left: 0;
  }
  .choose {
    margin-top: 20px;
    padding-bottom: 60px;
  }
  .choose .con .choose-list {
    margin-top: 50px;
  }
  .choose .con .choose-list ul li .text {
    bottom: 34px;
  }
  .choose .con .choose-list ul li .mask .txt {
    bottom: 40px;
  }
  .choose .con .choose-list ul li .mask .txt p {
    margin: 16px 0 28px;
  }
  .accept {
    padding: 40px 0 50px;
  }
}
@media screen and (max-width: 768px) {
  #videoPopup .video-box {
    width: 90%;
  }
}
/*# sourceMappingURL=finance_index.css.map */