html{
    font-size: 14px;
}

@media (max-width: 375px) {
    html{
        font-size: 12px;
    }
}

*{padding: 0;margin: 0;}

.download-app-guide {
  position: absolute;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  background-image: url('./images/bg.png');
  background-size: 100% 100%;
  justify-content: space-around;
}

.download-app-guide .header {
  /* 可填充 CgHeader 的样式 */
}

.logo-box .back{
    position: fixed;
    top: 20px;
    left: 20px;
    width: 24px;
    height: 24px;
    z-index: 10;
}

.logo-box .back img{
    width: 100%;
    height: 100%!important;
    object-fit: contain;
    cursor: pointer;
}

.download-app-guide .logo-box {
  text-align: center;
  padding: 1rem 0;
}
.download-app-guide .logo-box img {
  max-width: 120px;
  height: auto;
}

.download-app-guide .title-box {
  text-align: center;
}
.download-app-guide .title-box .title-text {
  font-family: var(--cg-font-family);
  font-weight: 700;
  font-size: 1.2rem;
  line-height: 1.4rem;
  color: #1b75f0;
}
.download-app-guide .title-box .bottom-line {
  width: 100%;
}

.download-app-guide .content-box {
  padding:2rem 0.8rem 0 0.8rem;
}
.download-app-guide .content-box .step-container {
  margin-bottom: 1rem;
}
.download-app-guide .content-box .step-title-box {
  display: flex;
  align-items: center;
}
.download-app-guide .content-box .step-title-box .step-image {
  width: 1.8rem;
  height: 1.8rem;
}
.download-app-guide .content-box .step-title-box .share-image {
  width: 1.5rem;
  height: 1.5rem;
  margin-left: 0.6rem;
}
.download-app-guide .content-box .step-title-box .step-title {
  margin-left: 0.8rem;
  font-family: var(--cg-font-family);
  font-weight: 700;
  font-size: 1.2rem;
  line-height: 1.3rem;
  color: #1b75f0;
}
.download-app-guide .content-box .step-description {
  /* margin-top: 0.8rem; */
  margin-left: 3rem;
  font-family: var(--cg-font-family);
  font-weight: 400;
  font-size: 1rem;
  line-height: 30px;
  color: #4d595e;
}

.download-app-guide .video-box {
  padding: 30px 32px 0 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
  position: relative;
}
.download-app-guide .video-box::before {
  content: "";
  display: block;
  padding-top: 75%;
}
.download-app-guide .video-box video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 20px;
  box-shadow: 0px 4px 10px 6px #1b75f033;
  object-fit: fill;
}
