* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
.header-simplifi {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 0 auto;
  max-width: 1296px;
  width: 100%;
  width: calc(100% - 48px);
  margin-top: 38px;
}

@media (max-width: 1280px) {
    .header-simplifi .leftBottom .install button a {
      font-size: 14px !important;
    }
}

@media screen and (min-width: 1280px) {
    .header-simplifi {
      width: calc(100% - 144px);
    }
}

@media screen and (min-width: 960px) {
    .header-simplifi {
      width: calc(100% - 96px);
    }
}

@media screen and (min-width: 600px) {
    .header-simplifi {
        width: calc(100% - 96px);
    }
}

.header-simplifi .leftTop h1 {
  margin-bottom: 10px;
  font-size: 56px;
  font-style: normal;
  font-weight: 500;
  color: #202124;
}

.header-simplifi .leftTop span {
  color: rgb(1, 135, 95);
}

/* 中间 */
.header-simplifi .leftCenter ul {
  display: flex;
  margin-top: 16px;
  margin-bottom: 34px;
  padding-top: 12px;
  padding-bottom: 12px;
  width: 300px;
  height: 44px;
  /* background-color: skyblue; */
}

.header-simplifi .leftCenter ul li {
  position: relative;
  list-style: none;
  width: 33%;
  height: 100%;
  text-align: center;
  font-size: 12px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.header-simplifi .leftCenter ul li strong {
  font-size: 13px;
  font-weight: 500;
  margin-bottom: 3px;
  color: #202124;
}
.header-simplifi .leftCenter ul li p {
  color: rgb(95, 99, 104);
}

.header-simplifi ul li .info {
  display: inline-flex; /* 用 inline-flex 避免 li 撑宽影响 */
  align-items: center;
  padding-top: 5px;
  gap: 2px;
  max-width: fit-content; /* 避免被 li 拉伸 */
  margin: 0 auto;
  color: rgb(95, 99, 104);
}

.header-simplifi .leftCenter ul li:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 60%;
  right: 0;
  transform: translateY(-30%);
  width: 1px;
  height: 120%;
  background-color: rgb(235, 235, 235);
}

.header-simplifi .leftCenter ul li img {
  width: 12px;
  height: 11px;
}

.header-simplifi .leftCenter ul li:nth-child(3) img {
  width: 16px;
  height: 16px;
  display: block;
  margin: 0 auto;
}

/* 按钮 */
/* 清除按钮的默认样式 */
.header-simplifi .leftBottom button {
  background: none;
  border: none;
  padding: 0;
  margin: 0;
  box-shadow: none;
  outline: none;
  cursor: pointer;
}

.header-simplifi .leftBottom {
  display: flex;
  align-items: center;
  width: 100%;
}

.header-simplifi .leftBottom .install button {
  width: 200px;
  height: 44px;
  background-color: rgb(1, 135, 95);
  color: #fff;
  border-width: 0;
  border-radius: 8px;
  font-size: 16px;
}

.header-simplifi .leftBottom .install button a {
  color: #fff;
  text-decoration: none;
  font-weight: 500;
  font-size: 16px;
}

.header-simplifi .leftBottom .install button:hover {
  background-color: #095943;
}

.header-simplifi .leftBottom .install button:active {
  background-color: #0d4e3d;
}

.header-simplifi .leftBottom .share-add-wrap {
  display: flex;
  align-items: center;
}

.header-simplifi .leftBottom .share-add-wrap .share,
.header-simplifi .leftBottom .share-add-wrap .add {
  margin-left: 10px;
}

.header-simplifi .leftBottom .share-add-wrap .share button,
.header-simplifi .leftBottom .share-add-wrap .add button {
  display: flex;
  align-items: center;
  gap: 10px;
  /* padding: 10px; */
  padding-left: 10px;
  padding-right: 10px;
  height: 40px;
}

.header-simplifi .leftBottom .share-add-wrap .share button:hover,
.header-simplifi .leftBottom .share-add-wrap .add button:hover {
  background-color: rgb(240, 248, 255);
  border-radius: 8px;
}

.header-simplifi .leftBottom .share-add-wrap .share img {
  width: 24px;
  height: 24px;
  color: rgb(1, 135, 95);
}

.header-simplifi .leftBottom .share-add-wrap .add img {
  width: 14px;
  height: 18px;
  color: rgb(1, 135, 95);
}

.header-simplifi .leftBottom .share-add-wrap span {
  font-size: 14px;
  font-weight: 500;
  color: rgb(1, 135, 95);
}

/* 右边大图 */
.header-simplifi .right img {
  width: 240px;
  height: 240px;
  border-radius: 20%;
  box-shadow: 0 18px 32px -12px rgba(163, 121, 4, 0.5);
}

@media (min-width: 600px) and (max-width: 1280px) {
  /* 缩小右侧图片 */
  .header-simplifi .right img {
    width: 180px;
    height: 180px;
  }

  /* 缩小标题字体 */
  .header-simplifi .leftTop h1 {
    font-size: 36px;
  }

  /* 缩小 Install 按钮尺寸 */
  .header-simplifi .leftBottom .install button {
    width: 160px;
    height: 36px;
    font-size: 14px;
  }

  /* 隐藏 share 和 add 中的文字 */
  .header-simplifi .leftBottom .share-add-wrap span {
    display: none;
  }

  .header-simplifi .leftBottom .share-add-wrap button {
    height: 40px;
    width: 40px;
    justify-content: center;
    align-items: center;
  }

  .header-simplifi .leftBottom .share-add-wrap .share button:hover,
  .header-simplifi .leftBottom .share-add-wrap .add button:hover {
    border-radius: 50%;
    background-color: rgb(240, 240, 240);
  }
}
/* 840 */
/* 默认隐藏小图，显示右侧大图 */
.header-simplifi .left .leftTop .mobile-avatar {
  display: none;
}

.header-simplifi .title-wrap span {
  font-weight: 500;
}

@media (max-width: 840px) {
  /* 小图显示，并排 h1+span */
  .header-simplifi .leftTop {
    display: flex;
    align-items: center;
    justify-content: flex-start;
  }

  .header-simplifi .leftTop .title-wrap h1 {
    margin-bottom: 0;
  }

  .header-simplifi .title-wrap {
    display: flex;
    flex-direction: column;
    gap: 6px;
    margin-left: 25px;
    margin-bottom: 20px;
  }

  .header-simplifi .left .leftTop .mobile-avatar {
    display: block;
  }

  .header-simplifi .left .leftTop .mobile-avatar img {
    width: 72px;
    height: 72px;
    border-radius: 12px;
  }

  /* 隐藏原来的大图 */
  .header-simplifi .right {
    display: none;
  }
}

/* 600 */
@media (max-width: 600px) {
  .header-simplifi {
    display: block;
    margin-top: 60px;
  }
  .header-simplifi .leftTop .title-wrap {
    margin-bottom: 30px;
  }
  /* h1 字体调小 */
  .header-simplifi .leftTop h1 {
    font-size: 25px;
  }

  /* Install 占满整行 */
  .header-simplifi .leftBottom {
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
    margin-top: 20px;
  }

  .header-simplifi .leftBottom .install button {
    width: 100%;
  }

  /* share 和 add 横向排列，宽度自动 */
  .header-simplifi .leftBottom .share,
  .header-simplifi .leftBottom .add {
    margin-left: 0;
  }

  .header-simplifi .leftBottom .share-add-wrap {
    display: flex;
    gap: 12px;
    justify-content: center;
    /* justify-content: space-between; */
  }

  .header-simplifi .leftBottom .share button,
  .header-simplifi .leftBottom .add button {
    display: flex;
    /* width: 100%; */
    /* justify-content: center; */
  }

  /* 显示文字 */
  .header-simplifi .leftBottom .share span,
  .header-simplifi .leftBottom .add span {
    display: inline;
  }
}
