.ctaBannerA-mt50 {
  margin-top: 50px;
}

.ctaBannerA {
  padding: 1rem 1rem;
  background-color: #e1efef;
  position: absolute;
  top: auto;
  width: 100%;
  z-index: 10000000;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  height: 50px;
}

.ctaBannerA .ctaBanner__close {
  background: none;
  border: none;
  font-size: 1.5rem;
  color: #333;
  cursor: pointer;
  padding: 0 0.5rem;
  position: absolute;
  right: 0px;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  opacity: 0.5;
}

.ctaBannerB {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 35px 20px 35px 20px;
  background: rgba(255, 255, 255, 0.87);
  -webkit-box-shadow: 5px 5px 20px rgba(64, 157, 153, 0.2), 0 1px 2px rgba(0, 0, 0, 0.24);
  box-shadow: 5px 5px 20px rgba(64, 157, 153, 0.2), 0 1px 2px rgba(0, 0, 0, 0.24);
  z-index: 9999;
}

.ctaBannerB .container {
  max-width: 576px;
  position: relative;
}

.ctaBannerB .ctaBannerB-msg {
  font-size: 16px;
  min-height: 43px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.ctaBannerB .ctaBanner__close {
  position: absolute;
  top: -32px;
  right: -8px;
}

.ctaBannerB .ctaBannerB__btn {
  height: auto;
  padding: 10px;
}

.ctaBannerC {
  position: fixed;
  bottom: 5rem;
  right: 1rem;
  z-index: 9998;
}

.ctaBannerC .ctaBannerC__inner {
  background-color: #fff;
  z-index: 4;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  position: relative;
  width: 260px;
  min-height: 150px;
  bottom: 5px;
  right: 5px;
  border: solid 1px #00a19b;
  padding: 20px;
  border-radius: 8px;
  text-align: center;
  background: rgba(255, 255, 255, 0.25);
  -webkit-box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.18);
  box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.18);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.ctaBannerC .ctaBanner__close {
  width: 30px;
  height: 30px;
  background-color: #5bacac;
  background-image: url(https://wealth.esunbank.com/bank/rwd/images/ic-close-ff.svg);
  background-size: 24px;
  background-position: 50%;
  border-radius: 50%;
  border: 2px solid #fff;
  -webkit-box-shadow: 1px 1px 4px 0px rgba(0, 0, 0, 0.2);
  box-shadow: 1px 1px 4px 0px rgba(0, 0, 0, 0.2);
  position: absolute;
  top: -10px;
  right: -10px;
  z-index: 999;
  cursor: pointer;
}


@media (max-width: 1200px) {
  .ctaBannerA {
    height: 40px;
  }

  .ctaA {
    position: relative !important;
    -webkit-transform: translateY(72px);
    transform: translateY(72px);
  }
}

.ctaBannerA {
  transition: opacity 0.3s ease;
}

.ctaBannerA.is-hidden {
  opacity: 0;
  pointer-events: none;
  /* 讓滑鼠無法再點擊到隱藏的區塊 */
  display: none;
  /* 或者搭配動畫結束後隱藏 */
}

@media (max-width: 576px) {
  .ctaBannerA p {
    margin-right: 20px;
  }

  .ctaBannerB {
    padding: 25px 20px 20px 20px;
  }

  .ctaBannerB .ctaBanner__close {
    top: -20px;
  }

  .ctaBannerA {
    height: auto;
  }
}