/* Download centre page */
#app {
  color: #1f2933;
  background: #fff;
}

#app > .form {
  height: 48px;
  background: #fff;
  color: #666d75;
  font-size: 13px;
  display: flex;
  align-items: center;
  padding-left: 8%;
}

#app > .form a {
  color: inherit;
}

@media (min-width: 901px) {
  #app > .form {
    padding-left: 10vw;
  }
}

#app .file {
  padding: 68px 0 88px;
  background-color: #f7f8fa;
  background-image: repeating-linear-gradient(45deg, rgba(226, 230, 234, .34) 0, rgba(226, 230, 234, .34) 3px, transparent 3px, transparent 11px);
}

#app .file > .inner {
  width: 80vw;
  max-width: none;
}

#app .file .section1 .title p {
  color: #ff7310;
  font-size: 48px;
  line-height: 1.15;
  font-weight: 900;
  letter-spacing: 0;
}

#app .file .section1 .desc {
  margin-top: 8px;
  color: #42484e;
  font-size: 14px;
  line-height: 22px;
}

#app .file .section2 {
  display: flex;
  align-items: center;
  gap: 32px;
  margin-top: 32px;
  padding: 0 4px 28px;
  border-bottom: 1px solid #16804e;
  scroll-behavior: auto;
  min-width: 0;
}

#app .file .section2.is-dragging {
  cursor: grabbing;
  user-select: none;
}

#app .file .section2 .item {
  width: 132px;
  height: 44px;
  flex: 0 0 132px;
  display: grid;
  place-items: center;
  border: 1px solid #c8d1db;
  border-radius: 24px;
  background: rgba(255, 255, 255, .78);
  color: #4a5158;
  font-size: 14px;
  cursor: pointer;
  transition: color .2s ease, background .2s ease, border-color .2s ease;
}

#app .file .section2 .item.item-active,
#app .file .section2 .item:hover {
  border-color: #08753f;
  background: #08753f;
  color: #fff;
}

#app .file .section3 {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 31px;
}

#app .file .section3 .item {
  min-height: 56px;
  padding: 0 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  border: 1px solid #cbd4de;
  border-radius: 6px;
  background: rgba(255, 255, 255, .34);
  color: #333a40;
  font-size: 14px;
  line-height: 20px;
  transition: border-color .2s ease, background .2s ease;
}

#app .file .section3 .item:hover {
  border-color: #16804e;
  background: rgba(255, 255, 255, .8);
}

#app .file .section3 .left,
#app .file .section3 .right {
  display: flex;
  align-items: center;
  gap: 8px;
  min-width: 0;
}

#app .file .section3 .left p {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

#app .file .section3 svg {
  width: 20px;
  height: 20px;
  flex: 0 0 20px;
}

#app .file .section3 .right {
  flex: 0 0 auto;
  color: #20252a;
  text-decoration: underline;
  text-underline-offset: 3px;
}

#app .file .page {
  margin-top: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  color: #69717a;
  padding-bottom: 30px;
}

#app .file .page .pages {
  display: flex;
  align-items: center;
  gap: 7px;
}

#app .file .page a {
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  border: 1px solid #dce1e6;
  border-radius: 2px;
  background: #fff;
  color: #58616a;
  font-size: 12px;
}

#app .file .page .num-active {
  border-color: #08753f;
  background: #08753f;
  color: #fff;
}

#app .file .page .pre-pageBtn,
#app .file .page .next-pageBtn {
  border: 0;
  background: transparent;
}

@media (max-width: 900px) {
  #app .file > .inner {
    width: calc(100% - 32px);
  }

  #app .file .section2 {
    gap: 16px;
    overflow-x: auto;
    overflow-y: hidden;
    overscroll-behavior-x: contain;
    padding-right: 0;
    scrollbar-width: none;
    -ms-overflow-style: none;
    -webkit-overflow-scrolling: touch;
    touch-action: pan-x pan-y;
    cursor: grab;
  }

  #app .file .section2::-webkit-scrollbar {
    display: none;
  }
}

@media (max-width: 767px) {
  #app > .form {
    height: 42px;
    font-size: 12px;
    padding-left: 16px;
  }

  #app .file {
    padding: 42px 0 60px;
  }

  #app .file .section1 .title p {
    font-size: 34px;
  }

  #app .file .section1 .desc {
    margin-top: 7px;
    font-size: 12px;
  }

  #app .file .section2 {
    margin-top: 24px;
    padding-bottom: 20px;
  }

  #app .file .section2 .item {
    width: 112px;
    height: 38px;
    flex-basis: 112px;
    font-size: 12px;
  }

  #app .file .section3 {
    gap: 11px;
    margin-top: 22px;
  }

  #app .file .section3 .item {
    min-height: 52px;
    padding: 8px 11px;
    font-size: 12px;
  }

  #app .file .section3 svg {
    width: 18px;
    height: 18px;
    flex-basis: 18px;
  }

  #app .file .page {
    margin-top: 24px;
    gap: 3px;
  }

  #app .file .page .pages {
    gap: 4px;
  }

  #app .file .page a {
    width: 26px;
    height: 26px;
  }
}

@media (max-width: 420px) {
  #app .file > .inner {
    width: calc(100% - 24px);
  }

  #app .file {
    padding-top: 34px;
  }

  #app .file .section1 .title p {
    font-size: 30px;
  }

  #app .file .section3 .item {
    min-height: 50px;
  }

  #app .file .page .pages .num:nth-child(n+5) {
    display: none;
  }
}





/* Pros uses a full-width, document-flow header instead of the shared
   floating header treatment used by the other pages. */
body #app .header-index {
  position: relative;
  inset: auto;
  width: 100%;
  padding-top: 0;
  transform: none;
}

body #app .header-index-inner {
  width: 100%;
  margin: 0;
  box-sizing: border-box;
  border-radius: 0;
}

body #app .banner {
  padding-top: 0 ;
}

@media only screen and (max-width: 1280px) {
  body #app .headerM {
    position: fixed;
  }

  body #app .banner {
    padding-top: var(--banner-header-offset);
  }
}

@media only screen and (min-width: 1281px) {
  body #app .header-index {
    position: sticky;
    top: var(--region-tip-height, 0px);
    z-index: 80;
  }
}

