.splash-screen {
  background: var(--loading-bg-color);
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  z-index: 99999;
  opacity: 1;
  -webkit-transition: opacity 200ms linear;
  transition: opacity 200ms linear;
}

.splash-screen > .wrap {
  width: 100%;
  padding: 0 8px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateX(-50%) translateY(-50%);
}

.logo-container {
  width: 300px;
  height: 300px;
  margin: 0 auto;
}

.logo-container > img {
  display: block;
  object-fit: contain;
  height: 100%;
  width: auto;
}

.product-name-container {
  padding: 8px 0 8px 32px;
  background: var(--loading-name-bg-color);
  font-size: 36px;
  font-weight: bold;
  color: white;
  border-radius: 36px;
  letter-spacing: 32px;
  margin: 0 auto;
  width: fit-content;
  text-align: center;
}

.progress-container {
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  bottom: 24px;
  left: 50%;
  height: 30px;
  transform: translateX(-50%) translateY(-50%);
  padding: 0 8px;
  max-width: 100%;
}

.loading-value {
  margin-left: 16px;
  color: var(--loading-name-color);
  font-size: 20px;
  font-weight: bold;
}

.progress {
  background: #bdbdbd;
  justify-content: flex-start;
  border-radius: 100px;
  align-items: center;
  position: relative;
  border: 3px solid white;
  display: flex;
  width: 600px;
  height: 100%;
  overflow: hidden;
}

.progress-value {
  border-radius: 100px;
  background: var(--loading-bar-color);
  height: 100%;
  width: calc(100% - 6px);
  width: 0;
}

@media only screen and (max-width: 930px), screen and (max-height: 550px) {
  .logo-container {
    width: 150px;
    height: 150px;
  }

  .product-name-container span {
    font-family: 'Helvetica Neue', Helvetica, 'Hiragino Sans GB',
      'Microsoft YaHei', Arial, sans-serif;
  }

  .product-name-container {
    padding: 8px 14px 8px 32px;
    font-size: 18px;
    letter-spacing: 18px;
  }

  .progress-container {
    height: 15px;
    bottom: 8px;
  }

  .progress {
    width: 300px;
  }

  .loading-value {
    font-size: 12px;
  }
}
