.customer-wrap {
  width: 100%;
  min-height: 100vh;
  height: auto;
  overflow-y: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  position: relative;
  padding-bottom: 5rem;
}

.customerHead {
  width: 50%;
  height: auto;
  position: fixed;
  top: 7rem;
  left: 0.875rem;
}
.customerHead .caption {
  width: 8rem;
  height: auto;
}
.customerHead h1 {
  margin-left: 0.3125em;
  font-size: 1.25rem;
  line-height: 1.5rem;
  font-weight: 700;
  color: #fff;
  text-shadow: 0px 1px 1px rgba(37, 141, 232, 0.6980392157);
}

.customerBackground {
  width: 100%;
  height: 100%;
  position: fixed;
  background: transparent;
  background-repeat: no-repeat;
  background-attachment: fixed;
  pointer-events: none;
  background-position: top center;
  background-image: url(../img/customer-bg.webp);
  background-size: 100%;
}

.customer-inner {
  position: relative;
  top: 48vh;
  width: 100%;
  padding: 0 0.875rem 5rem;
  z-index: 1;
}
.customer-inner a {
  color: #fff;
}
.customer-inner a:hover {
  color: #fff;
}

.customer-item {
  width: 100%;
  height: 4.375rem;
  padding: 0.75rem 0.75rem 1rem;
  position: relative;
  overflow: hidden;
  -webkit-box-shadow: 0 2px 6px rgba(153, 110, 159, 0.4196078431);
          box-shadow: 0 2px 6px rgba(153, 110, 159, 0.4196078431);
  background: transparent;
  border-radius: 0.5rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 0.6125rem;
  background: var(--primary-color);
}
.customer-item img {
  width: 2.625rem;
  height: 2.625rem;
}
.customer-item .info-content {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  margin-left: 0.875rem;
}
.customer-item .info-content h3 {
  color: #ffffff;
  font-size: 0.875rem;
}
.customer-item .info-content p {
  color: var(--assist-color);
  margin-top: 0.3125rem;
  font-size: 0.75rem;
}
.customer-item .base-btn {
  width: auto;
  text-decoration: none;
  background: rgba(51, 144, 255, 0.6980392157);
}
.customer-item .base-btn span {
  font-weight: bold;
  background: -webkit-gradient(linear, left top, left bottom, color-stop(3%, #A5E7F3), color-stop(21%, rgba(38, 255, 136, 0.85)), color-stop(57%, #01F5FE), color-stop(87%, #5690FD));
  background: linear-gradient(180deg, #A5E7F3 3%, rgba(38, 255, 136, 0.85) 21%, #01F5FE 57%, #5690FD 87%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}