@charset "UTF-8";
html,
body {
  background: #ffffff;
}

.container-lg {
  padding: 0px;
}

.banner {
  background: url("../img/banner-bg.png") no-repeat center;
  background-size: cover;
  margin-top: 74px;
}
.banner .recommend {
  display: flex;
  padding-top: 64px;
}
.banner .recommend .content {
  flex: 1;
}
.banner .recommend .content h1 {
  color: #ffffff;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2509803922);
  font-family: "Roboto";
  font-size: 36px;
  font-style: normal;
  font-weight: 600;
  line-height: 44px;
}
.banner .recommend .content p {
  color: #ffffff;
  font-family: "Roboto";
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: 28px;
  margin: 16px 0px 32px 0px;
}
.banner .recommend .content img {
  width: 161px;
  height: 48px;
}
.banner .recommend .recommend-img {
  height: 503px;
}
.banner .recommend .bubble1-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  min-width: 190px;
  height: 100px;
  position: relative;
}
.banner .recommend .bubble1-list li {
  width: 100%;
  display: inline-flex;
  padding: 8px;
  align-items: flex-start;
  gap: 4px;
  border-radius: 60px;
  background: rgba(240, 249, 255, 0.8);
  box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.0784313725);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  color: #3d74f3;
  font-family: "Roboto";
  font-size: 14px;
  font-style: normal;
  font-weight: 600;
  line-height: 22px;
  position: absolute;
  left: -80px;
  bottom: -50px;
  flex-shrink: 0;
  animation: float 4s ease-in-out infinite;
  opacity: 0;
  /* 第一个气泡，立即执行 */
  /* 第二个气泡，在第一个气泡一半时间时启动 */
}
.banner .recommend .bubble1-list li img {
  height: 24px;
}
.banner .recommend .bubble1-list li:nth-child(1) {
  animation-delay: 0s;
}
.banner .recommend .bubble1-list li:nth-child(2) {
  animation-delay: 2s;
}

@keyframes float {
  0% {
    transform: translate(0, 0) scale(0.6);
    opacity: 0;
    background: rgba(192, 226, 254, 0.6);
  }
  15% {
    opacity: 0.8;
  }
  50% {
    transform: translateY(-50px) scale(1);
    opacity: 1;
    background: rgba(240, 249, 255, 0.8);
  }
  85% {
    opacity: 0.3;
  }
  100% {
    transform: translate(40px, -100px) scale(0.8);
    opacity: 0;
  }
}
.advantages {
  padding-top: 128px;
}
.advantages h2 {
  color: #293640;
  text-align: center;
  font-family: "Roboto";
  font-size: 28px;
  font-style: normal;
  font-weight: 600;
  line-height: 36px;
  margin-bottom: 48px;
}
.advantages .card-box {
  display: flex;
  align-items: center;
  gap: 32px;
  height: 640px;
}
.advantages .card-box h1 {
  color: #e9eef2;
  text-align: center;
  font-family: "Roboto";
  font-size: 48px;
  font-style: normal;
  font-weight: 700;
  line-height: 56px;
}
.advantages .card-box p {
  color: #e9eef2;
  text-align: center;
  font-family: "Roboto";
  font-size: 24px;
  font-style: normal;
  font-weight: 400;
  line-height: 32px;
  margin-top: 16px;
}
.advantages .card-box .left,
.advantages .card-box .right {
  display: flex;
  flex-direction: column;
  gap: 16px;
  width: calc(50% - 16px);
  overflow: hidden;
  height: 100%;
  transition: all 2s ease;
}
.advantages .card-box .left .card,
.advantages .card-box .right .card {
  padding: 100px 0px;
  justify-content: center;
  align-items: center;
  align-self: stretch;
  border-radius: 16px;
  background: #47ceff;
  flex: 1;
  opacity: 0; /* 初始不可见 */
  transition: all 0.5s ease; /* 动画时间 */
}
.advantages .card-box .left .card1,
.advantages .card-box .right .card1 {
  background: #3d74f3;
  width: 100%;
}
.advantages .card-box .left .card1 img,
.advantages .card-box .right .card1 img {
  width: 100%;
}
.advantages .card-box .left .card2,
.advantages .card-box .right .card2 {
  background: #47ceff;
}
.advantages .card-box .left .card2 img,
.advantages .card-box .right .card2 img {
  width: calc(100% - 40px);
  height: 238px;
  margin: 0 auto;
}
.advantages .card-box .left .card3,
.advantages .card-box .right .card3 {
  background: #3fa9fa;
  text-align: center;
}
.advantages .card-box .left .card3 img,
.advantages .card-box .right .card3 img {
  height: 323px;
  width: 360px;
  margin: 0 auto;
}
.advantages .card-box .active {
  height: 100%;
}
.advantages .card-box .card.show {
  display: flex;
  opacity: 1;
}
.advantages .card-box .card.hide {
  display: none;
}
.advantages .card-box .active .card.show {
  padding-bottom: 0px;
  height: 100%;
  text-align: center;
  opacity: 1;
}
.advantages .card-box .active .card.show .hiddenBox {
  display: block; /* 大卡片时显示 */
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  flex: 1;
}
.advantages .card-box .hiddenBox {
  display: none;
  width: 100%;
}
.advantages .card-box .zero-height {
  height: 0px !important;
  overflow: hidden;
  transform: translateY(50%);
  display: none;
}

.loan-steps {
  margin-top: 64px;
}
.loan-steps h2 {
  color: #293640;
  text-align: center;
  font-family: "Roboto";
  font-size: 28px;
  font-style: normal;
  font-weight: 600;
  line-height: 36px;
  margin-bottom: 48px;
}
.loan-steps .cart-list {
  display: flex;
  align-items: center;
  gap: 32px;
}
.loan-steps .cart-list li {
  display: flex;
  flex-direction: column;
  gap: 48px;
}
.loan-steps .cart-list li img {
  width: 360px;
  height: 738px;
}
.loan-steps .cart-list li .cart-item {
  height: 272px;
  flex-shrink: 0;
  border-radius: 16px;
  border: 1px solid #95bfff;
  background: linear-gradient(180deg, #def2ff 0%, #d7e6ff 100%);
  box-shadow: 0 4px 4px 0 rgba(54, 97, 127, 0.0784313725);
  padding: 28px;
  position: relative;
  transition: all 0.35s ease-in-out;
}
.loan-steps .cart-list li .cart-item h6 {
  color: #293640;
  font-family: "Roboto";
  font-size: 20px;
  font-style: normal;
  font-weight: 600;
  line-height: 28px;
}
.loan-steps .cart-list li .cart-item p {
  color: #293640;
  font-family: "Roboto";
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px;
}
.loan-steps .cart-list li .cart-item:hover {
  transform: scale(1.05);
}
.loan-steps .cart-list li .cart-item img {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 80px;
  height: 80px;
}

.faq {
  padding-top: 128px;
}
.faq h2 {
  color: #293640;
  text-align: center;
  font-family: "Roboto";
  font-size: 28px;
  font-style: normal;
  font-weight: 600;
  line-height: 36px;
  margin-bottom: 48px;
}
.faq .tab_pane {
  display: flex;
  flex-direction: column;
  gap: 28px;
}
.faq .tab_pane li {
  display: flex;
  padding: 16px;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
  align-self: stretch;
  border-radius: 16px;
  background: #f7f9fc;
}
.faq .tab_pane li .titleText {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  color: #293640;
  font-family: "Roboto";
  font-size: 20px;
  font-style: normal;
  font-weight: 600;
  line-height: 32px;
}
.faq .tab_pane li .titleText span {
  display: flex;
  align-items: center;
  gap: 16px;
}
.faq .tab_pane li .titleText span img {
  height: 32px;
}
.faq .tab_pane li .titleText .arrow {
  height: 24px;
  transition: transform 0.3s ease-in-out; /* 默认状态下也要有过渡效果 */
  transform: rotate(-90deg);
}
.faq .tab_pane li .titleText .rotate {
  transform: rotate(0deg);
  transition: transform 0.3s ease-in-out; /* 添加平滑过渡效果 */
}
.faq .tab_pane li .subtitle {
  display: none;
  color: #293640;
  font-family: "Roboto";
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px;
}

.app-download {
  padding-top: 128px;
  display: flex;
  align-items: center;
  gap: 108px;
  position: relative;
  z-index: 1;
}
.app-download .content h2 {
  color: #293640;
  font-family: "Roboto";
  font-size: 32px;
  font-style: normal;
  font-weight: 600;
  line-height: 40px;
  margin-bottom: 48px;
}
.app-download .content img {
  height: 48px;
}
.app-download .app-img {
  height: 463px;
}/*# sourceMappingURL=home.css.map */