.bank-page {
  --bank-red: #d82f2f;
  --bank-ink: #000;
  --bank-text: #333;
  --bank-muted: #666;
  --bank-soft: #f6f6f6;
  background: #fff;
  color: var(--bank-ink);
}

.bank-hero {
  min-height: 660px;
  background: url("../assets/images/bank-account-opening/bank-hero-bg@2x.png") center top / cover no-repeat;
}

.bank-hero__inner {
  position: relative;
  min-height: 660px;
  padding-top: 110px;
}

.bank-breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  min-height: 34px;
  color: #999;
  font-size: 12px;
  line-height: 22px;
}

.bank-breadcrumb a {
  transition: color var(--transition);
}

.bank-breadcrumb a:hover,
.bank-breadcrumb span:last-child {
  color: #000;
}

.bank-section-title {
  margin: 0;
}

.bank-section-title h1,
.bank-section-title h2 {
  margin: 0;
  color: #000;
  font-size: 30px;
  line-height: 46px;
  font-weight: 500;
}

.bank-section-title p {
  position: relative;
  width: max-content;
  margin: -14px 0 0;
  color: #000;
  font-size: 16px;
  line-height: 46px;
  text-transform: uppercase;
}

.bank-section-title p::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 67px;
  height: 3px;
  background: var(--bank-red);
}

.bank-hero__title {
  margin-top: 52px;
}

.bank-hero-card {
  display: grid;
  grid-template-columns: repeat(4, 142px) 1fr;
  align-items: center;
  column-gap: 57px;
  width: 100%;
  max-width: 1440px;
  min-height: 293px;
  margin-top: 51px;
  padding: 0 76px 0 95px;
  background: #171717;
  border-radius: 10px;
}

.bank-hero-feature {
  display: grid;
  place-items: center;
  width: 142px;
  height: 161px;
  padding: 28px 12px 22px;
  background: rgba(255, 255, 255, 0.88);
  border-radius: 10px;
  text-align: center;
}

.bank-hero-feature img {
  width: 65px;
  height: 65px;
  object-fit: contain;
}

.bank-hero-feature h3 {
  margin: 7px 0 0;
  color: var(--bank-red);
  font-size: 16px;
  line-height: 46px;
  font-weight: 500;
  white-space: nowrap;
}

.bank-quote {
  width: 468px;
  justify-self: end;
  margin-top: 24px;
}

.bank-quote label {
  display: block;
  margin-bottom: 14px;
  color: #fff;
  font-size: 14px;
  line-height: 22px;
}

.bank-quote__row {
  display: flex;
  width: 468px;
  height: 46px;
}

.bank-quote input {
  flex: 1;
  width: 338px;
  height: 46px;
  border: 0;
  padding: 0 18px;
  background: #fff;
  outline: none;
}


.bank-quote button {
  width: 130px;
  height: 46px;
  background: var(--bank-red);
  color: #fff;
  font-size: 16px;
  line-height: 22px;
  transition: background var(--transition), transform var(--transition);
}

.bank-quote button:hover {
  background: #bd2424;
  transform: translateY(-1px);
}

.bank-conditions {
  position: relative;
  min-height: 496px;
  padding-top: 61px;
  background: url("../assets/images/bank-account-opening/bank-conditions-bg@2x.png") center / cover no-repeat;
}

.bank-conditions__grid {
  display: grid;
  grid-template-columns: 474px 473px 474px;
  gap: 10px;
  margin-top: 52px;
}

.bank-condition-card {
  min-height: 244px;
  background: #fff;
  border: 1px solid #e6e6e6;
}

.bank-condition-card h3 {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 54px;
  margin: -1px -1px 0;
  background: var(--bank-red);
  color: #fff;
  font-size: 20px;
  line-height: 23px;
  font-weight: 500;
}

.bank-condition-card ul {
  display: grid;
  gap: 0;
  margin: 23px 27px 0 28px;
  padding: 0;
}

.bank-condition-card li {
  position: relative;
  min-height: 30px;
  padding-left: 21px;
  color: var(--bank-text);
  font-size: 16px;
  line-height: 30px;
  text-align: justify;
}

.bank-condition-card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 12px;
  width: 6px;
  height: 6px;
  background: var(--bank-red);
}

.bank-advantages {
  padding-top: 61px;
}

.bank-advantage-grid {
  display: grid;
  grid-template-columns: repeat(3, 460px);
  gap: 24px 30px;
  margin-top: 61px;
}

.bank-advantage-card {
  display: flex;
  align-items: center;
  min-height: 125px;
  padding: 22px 26px 22px 23px;
  background: var(--bank-soft);
  border-radius: 10px;
}

.bank-advantage-card__icon {
  display: grid;
  flex: 0 0 80px;
  width: 80px;
  height: 80px;
  place-items: center;
  margin-right: 24px;
  border-radius: 10px;
}

.bank-advantage-card__icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.bank-advantage-card h3 {
  margin: 0 0 8px;
  color: #000;
  font-size: 20px;
  line-height: 22px;
  font-weight: 500;
}

.bank-advantage-card p {
  margin: 0;
  color: var(--bank-muted);
  font-size: 12px;
  line-height: 20px;
  text-align: justify;
}

.bank-materials {
  padding-top: 107px;
}

.bank-materials__grid {
  display: grid;
  grid-template-columns: 582px 418px 418px;
  gap: 12px 9px;
  margin-top: 78px;
}

.bank-materials__cover {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 387px;
  color: #fff;
  background: url("../assets/images/bank-account-opening/bank-materials-cover@2x.png") center / cover no-repeat;
}

.bank-materials__cover h3 {
  margin: 0;
  font-size: 26px;
  line-height: 45px;
  font-weight: 500;
}

.bank-materials__cover span {
  width: 55px;
  height: 2px;
  margin-top: 11px;
  background: #fff;
}

.bank-materials__cover p {
  margin: 16px 0 0;
  font-size: 16px;
  line-height: 27px;
  text-transform: uppercase;
}

.bank-materials__list {
  display: grid;
  gap: 13px;
}

.bank-material-card {
  min-height: 120px;
  padding: 25px 23px 18px 29px;
  background: var(--bank-soft);
  border: 1px solid transparent;
}

.bank-material-card:hover {
  background: #ffeaea;
  border-color: var(--bank-red);
}

.bank-material-card h3 {
  position: relative;
  margin: 0;
  padding-left: 17px;
  color: #000;
  font-size: 20px;
  line-height: 22px;
  font-weight: 500;
}

.bank-material-card:hover h3 {
  color: var(--bank-red);
}

.bank-material-card h3::before {
  content: "";
  position: absolute;
  left: 0;
  top: -2px;
  width: 2px;
  height: 71px;
  background: var(--bank-red);
}

.bank-material-card p {
  margin: 7px 0 0 17px;
  color: var(--bank-muted);
  font-size: 12px;
  line-height: 20px;
  text-align: justify;
}

.bank-success {
  min-height: 214px;
  margin-top: 83px;
  padding-top: 40px;
  background: url("../assets/images/bank-account-opening/bank-success-bg@2x.png") center / cover no-repeat;
}

.bank-success__panel {
  display: grid;
  grid-template-columns: 225px repeat(3, 1fr);
  gap: 12px;
  min-height: 127px;
  padding: 0 56px 0 43px;
  background: var(--bank-red);
}

.bank-success__title {
  position: relative;
  align-self: center;
  margin: 0;
  padding-left: 30px;
  color: #fff;
  font-size: 26px;
  line-height: 35px;
  font-weight: 500;
}

.bank-success__title::before {
  content: "";
  position: absolute;
  left: 0;
  top: 3px;
  width: 4px;
  height: 64px;
  background: #fff;
}

.bank-success__items {
  grid-column: 2 / -1;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  align-content: center;
  margin: -22px 0;
}

.bank-success-item {
  display: flex;
  align-items: center;
  height: 83px;
  padding: 0 26px 0 45px;
  background: #fff;
  border: 1px solid #ddd;
}

.bank-success-item strong {
  margin-right: 12px;
  background-image: linear-gradient(1deg, var(--bank-red) 0, #fff 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-family: var(--font-family-oswald);
  font-size: 24px;
  line-height: 24px;
  font-weight: 700;
}

.bank-success-item span {
  color: var(--bank-text);
  font-size: 18px;
  line-height: 22px;
  font-weight: 500;
  white-space: nowrap;
}

.bank-process {
  padding-top: 75px;
}

.bank-process__steps {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  flex-wrap: nowrap;
  width: 100%;
  max-width: 1337px;
  margin: 82px auto 0;
}

.bank-process-step {
  width: 147px;
  text-align: center;
}

.bank-process-step__icon {
  display: grid;
  width: 127px;
  height: 127px;
  place-items: center;
  margin: 10px auto 0;
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.25);
}

.bank-process-step__icon img {
  max-width: 80px;
  max-height: 68px;
  object-fit: contain;
}

.bank-process-step h3 {
  margin: 25px 0 0;
  color: #000;
  font-size: 20px;
  line-height: 22px;
  font-weight: 400;
}

.bank-process__arrow {
  width: 42px;
  height: 64px;
  background: url("../assets/images/bank-account-opening/bank-process-arrow@2x.png") center / cover no-repeat;
  margin-top: 42px;
}

.bank-maintenance {
  position: relative;
  min-height: 228px;
  margin-top: 194px;
  background: var(--bank-red);
}

.bank-maintenance__inner {
  position: relative;
  min-height: 228px;
}

.bank-maintenance__cover {
  position: absolute;
  left: 0;
  top: -119px;
  display: flex;
  width: 591px;
  height: 333px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: #fff;
  background: url("../assets/images/bank-account-opening/bank-maintenance-cover@2x.png") center / cover no-repeat;
}

.bank-maintenance__cover h2 {
  margin: 0;
  font-size: 26px;
  line-height: 45px;
  font-weight: 500;
}

.bank-maintenance__cover span {
  width: 55px;
  height: 2px;
  margin-top: 11px;
  background: #fff;
}

.bank-maintenance__cover p {
  margin: 16px 0 0;
  font-size: 16px;
  line-height: 27px;
  text-align: center;
  text-transform: uppercase;
}

.bank-maintenance__panel {
  position: absolute;
  right: 0;
  top: -119px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0;
  width: 847px;
  min-height: 333px;
  padding: 0;
  background: #fff;
  border: 1px solid #e1e1e1;
}

.bank-maintenance-item {
  margin: 0;
  border-right: 1px solid #e1e1e1;
  border-bottom: 1px solid #e1e1e1;
  padding: 33px 43px 25px;
}

@media (min-width: 769px) {
  .bank-maintenance-item:nth-child(2n) {
    border-right: none;
  }

  .bank-maintenance-item:nth-child(n + 3) {
    border-bottom: none;
  }
}

.bank-maintenance-item h3 {
  position: relative;
  margin: 0;
  padding-left: 21px;
  color: #000;
  font-size: 20px;
  line-height: 22px;
  font-weight: 500;
}

.bank-maintenance-item h3::before {
  content: "";
  position: absolute;
  left: 0;
  top: 6px;
  width: 9px;
  height: 8px;
  background: var(--bank-red);
}

.bank-maintenance-item p {
  margin: 16px 0 0 21px;
  color: var(--bank-muted);
  font-size: 12px;
  line-height: 23px;
  text-align: justify;
}

.bank-service-strip {
  position: relative;
  padding-top: 79px;
  padding-bottom: 86px;
  background: var(--bank-soft);
}

.bank-service-strip__inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 56px;
}

.bank-service-item {
  display: flex;
  align-items: center;
  min-width: 0;
}

.bank-service-item__icon {
  display: grid;
  flex: 0 0 91px;
  width: 91px;
  height: 91px;
  place-items: center;
  margin-right: 20px;
}

.bank-service-item__icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.bank-service-item h3 {
  margin: 0;
  color: var(--bank-red);
  font-size: 22px;
  line-height: 22px;
  font-weight: 500;
}

.bank-service-item p {
  margin: 18px 0 0;
  color: var(--bank-muted);
  font-size: 14px;
  line-height: 23px;
}

.bank-service-strip__cta {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 313px;
  height: 50px;
  margin: 57px auto 0;
  background: var(--bank-red);
  border-radius: 5px;
  color: #fff;
  font-size: 18px;
  line-height: 22px;
  font-weight: 500;
  transition: background var(--transition), transform var(--transition);
}

.bank-service-strip__cta:hover {
  background: #bd2424;
  transform: translateY(-1px);
}

.bank-page .partners {
  padding-top: 0;
}


/* 只有PC端需要设置的样式：
-------------------------------- */
@media (min-width: 769px) {
.site-header__logo {
  display: none;
}
.site-header__logo-black {
  height: 69px;
  width: auto;
  max-width: 173px;
  display: block;
}
.site-header__inner::before {
  background: rgba(255,255,255,0.2);
  box-shadow: 0px 8px 9px 0px rgba(0,0,0,0.2);
}
.site-nav__link, .site-nav__toggle {
  color: #000;
}
.site-nav__link.is-active {
  color: #000;
}
.site-search__input {
  color: #000;
}
.site-search__input::placeholder {
  color: #8B8B8B;
}
.site-lang__toggle {
  color: #000;
}
.site-lang__label {
      color: #000;
  }
}
