/* 金融行业页面 */
.header {
  position: relative;
  text-align: center;
  margin-bottom: 0;
}

.header img {
  width: 100%;
  height: auto;
  margin-bottom: 0;
}

.banner-text {
  position: absolute;
  top: 40%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  width: 100%;
  padding: 20px;
  box-sizing: border-box;
}

.banner-text h2 {
  color: rgba(0, 68, 139, 1);
  font-size: 48px;
  text-align: center;
  font-family: PingFangSC-Semibold;
  margin-bottom: 0;
}

.banner-text p {
  line-height: 52px;
  color: rgba(78, 89, 102, 1);
  font-size: 20px;
  font-family: PingFangSC-Regular;
}

.financial-tabs {
  display: flex;
  margin: 75px 20% 56px;
  background: #fff;
  height: 72px;
  box-shadow: none;
  border: none;
  justify-content: center;
  position: relative;
  border-radius: 46px;
}

.financial-tabs button {
  flex: 1;
  padding: 15px 0px;
  font-size: 24px;
  font-family: AlimamaShuHeiTi-Bold;
  color: #808891;
  background: #fff;
  border: none;
  cursor: pointer;
  position: relative;
  transition: background 0.2s, color 0.2s;
}

.financial-tabs button:first-child {
  border-radius: 46px 0 0 46px;
}

.financial-tabs button:last-child {
  border-radius: 0 46px 46px 0;
}

.financial-tabs button.active {
  background: linear-gradient(to right, #1377DF 0%, #319FFF 100%);
  color: #fff;
  font-weight: bold;
  border-radius: 46px;
}

.journey-content {
  text-align: center;
  padding-bottom: 65px;
  margin: 0 10%;
}

.journey-panel {
  position: relative;
}

.journey-panel img {
  width: 100%;
}

.journey-panel .cta-btn {
  position: absolute;
  bottom: 75px;
  left: calc(50% - 70px);
  background-color: #1077E0;
  color: #fff;
  display: inline-block;
  padding: 12px 34px;
  line-height: 24px;
  font-size: 18px;
  text-align: left;
  font-family: PingFangSC-Regular;
  border-radius: 4px;
  border: none;
}