.banner {
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  width: 100%;
  height: 800px;
  background: url('../static/banner.jpg') no-repeat center;
  background-size: cover;
}

.banner-mask {
  position: absolute;
  display: flex;
  align-items: center;
  bottom: 0;
  left: 0;
  right: 0;
  height: 160px;
  z-index: 2;
  backdrop-filter: blur(5px);
}

.banner-mask .center {
  flex-direction: row;
  justify-content: space-between;
}

.banner-item {
  display: flex;
  align-items: center;
  gap: 18px;
}

.banner-mask .split-line {
  height: 26px;
  border-right: 1px solid rgba(255, 255, 255, 0.4);
}

.banner-item-icon {
  width: 50px !important;
}

.banner-item-r {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.banner-title {
  font-size: 24px;
  font-weight: bold;
  color: #fff;
  margin-bottom: 6px;
}

.banner-subtitle {
  font-size: 9px;
  font-weight: bold;
  color: #fff;
}

.pop {
  display: none;
  position: fixed;
  align-items: center;
  justify-content: center;
  left: 0;
  top: 0;
  bottom: 0;
  right: 0;
  background: rgba(0, 0, 0, 0.5);
}
.pop.show {
  display: flex;
}
.pop img {
  width: 300px;
}