
body {
  margin: 0;
  user-select: none;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
}

a {
  text-decoration: none;
}

.todolist-portal__header {
  box-sizing: border-box;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  height: 56px;
  background: #fff;
  box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.07);
  padding: 16px 10%;
}

a.docs:hover,
a.docs:focus {
  color: #3574ff;
}

.docs:visited,
.docs:link {
  color: #2e2e2e;
  -webkit-tap-highlight-color: transparent;
}

.docs_h5 {
  display: none;
}

.todolist-portal__header-logo {
  width: 132px;
  height: 23px;
}

.todolist-portal__content {
  box-sizing: border-box;
  width: 100%;
  height: calc(100vh - 130px);
  padding: 0 10%;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  overflow: hidden;
}

.todolist-portal__content-text {
  width: 50%;
}

.todolist-portal__content-text .title {
  font-size: 28px;
  font-family: PingFang SC;
  font-weight: 600;
  line-height: 28px;
  color: #000;
  margin-bottom: 30px;
  padding-right: 20px;
}

.title_h5 {
  display: none;
}

.todolist-portal__content-text .desc {
  font-size: 16px;
  font-family: PingFang SC;
  font-weight: 400;
  line-height: 28px;
  color: #2e2e2e;
  margin-bottom: 40px;
  padding-right: 20px;
}

.todolist-portal__content-img {
  width: 50%;
  height: 90%;
}

.todolist-portal__content-img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.todolist-portal__footer {
  box-sizing: border-box;
  width: 100%;
  height: 74px;
  padding-top: 8px;
}

.todolist-portal__footer-copyright {
  text-align: center;
  font-size: 12px;
  font-family: PingFang SC;
  font-weight: 400;
  height: 14px;
  line-height: 1.8;
  color: #828282;
}

.todolist-portal__footer-copyright a:hover,
.todolist-portal__footer-copyright a:link,
.todolist-portal__footer-copyright a:visited {
  color: #828282;
}

.qr-code{
  width: 143px;
  height: 143px;
}

.qr-code_h5{
  display: none;
}

.qr-code-text{
  margin: 0 5px;
  color: #828282;
  font-size: 12px;
}

.wechat-toast{
  display: none;
  position: absolute;
  margin: 0 15px;
  padding: 10px 20px 20px;
  top: 75px;
  border-radius: 5px;
  background-color: rgba(0, 0, 0, 0.5);
}
.wechat-toast img{
  width: 100%;
  object-fit: cover;
}

@media screen and (max-width: 1024px) {
  .todolist-portal__header {
    justify-content: center;
    height: 63px;
  }

  .docs_web {
    display: none;
  }

  .docs_h5 {
    width: 100%;
    box-sizing: border-box;
    display: block;
    padding: 0 20px;
    height: 65px;
    line-height: 55px;
    text-align: left;
    border-top: 10px solid #eee;
    box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.05);
  }

  .todolist-portal__content {
    height: auto;
    padding: 0 8vw;
  }

  .todolist-portal__content-text {
    padding: 0 15px;
  }

  .todolist-portal__content-text .title {
    margin-top: 30px;
    font-size: 24px;
  }

  .title_h5 {
    display: inline-block;
  }

  .title_web {
    display: none;
  }

  .todolist-portal__content-text .desc {
    font-size: 14px;
    margin-bottom: 0;
    padding-right: 0;
  }

  .todolist-portal__content-text,
  .todolist-portal__content-img {
    width: 100%;
    text-align: center;
  }

  .qr-code_h5 {
    display: block;
    text-align: center;
    padding: 25px 0;
    background-color: #eee;
  }

  .qr-code_web {
    display: none;
  }

  .copyright-comp {
    display: block;
  }
}