@import url("pros.css");

:root {
  --blog-soft: #f5f7f9;
  --blog-card: #ffffff;
  --blog-line: #e4e8ee;
  --blog-shadow: 0 1rem 2.5rem rgba(15, 23, 42, 0.12);
}

#app {
  color: var(--pros-ink);
  background: var(--pros-white);
}

.newBlog {
  position: relative;
  overflow: hidden;
  padding: 7rem 0;
  background: var(--pros-white);
}

.newBlog > img {
  position: absolute;
  left: 50%;
  top: 8rem;
  width: min(86vw, 76rem);
  max-width: none;
  opacity: 0.5;
  transform: translateX(-50%);
  pointer-events: none;
}

.newBlog .inner,
.blog .inner {
  position: relative;
  z-index: 1;
  width: var(--pros-container);
  max-width: none;
}

.newBlog .section1 .title,
.blog .section1 .title {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.8rem;
  color: var(--pros-ink);
  font-size: 1.8rem;
  font-weight: 900;
}

.newBlog .line,
.blog .section1 .line,
.blog .section2-left-top .line,
.blog .section2-right-top .line {
  width: 4rem;
  height: 1px;
  background: var(--pros-orange);
}

.newBlog .section2 {
  position: relative;
  display: flex;
  align-items: center;
  width: min(72rem, 100%);
  margin: 4rem auto 0;
  border-radius: var(--pros-radius);
  background: var(--blog-card);
  box-shadow: var(--blog-shadow);
}

.newBlog .left {
  position: relative;
  z-index: 1;
  flex: 0 0 36%;
  margin-right: -1rem;
  padding: 2.6rem;
  border-radius: var(--pros-radius);
  background: var(--blog-card);
  box-shadow: 0 1rem 2.2rem rgba(15, 23, 42, 0.14);
}

.newBlog .date,
.blog .date {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  color: var(--pros-muted);
  font-size: 0.9rem;
}

.newBlog .left .title {
  margin-top: 1.2rem;
  color: var(--pros-ink);
  font-size: 1.7rem;
  line-height: 1.35;
  font-weight: 900;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.newBlog .desc {
  margin-top: 1.2rem;
  color: var(--pros-text);
  font-size: 0.96rem;
  line-height: 1.8;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.more {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  margin-top: 1.6rem;
  color: var(--pros-ink);
  font-weight: 900;
  cursor: pointer;
  transition: color 0.24s ease;
}

.more:hover {
  color: var(--pros-orange);
}

.more .icon {
  display: flex;
}

.newBlog .right {
  overflow: hidden;
  border-radius: var(--pros-radius);
}

.newBlog .right img {
  width: 100%;
  aspect-ratio: 900 / 460;
  object-fit: cover;
}
.newBlog .right { transition: transform .3s ease, box-shadow .3s ease; }
.newBlog .right:hover { transform: translateY(-4px); box-shadow: 0 1rem 2.5rem rgba(15,23,42,.16); }
.newBlog .right img { transition: transform .5s ease; }
.newBlog .right:hover img { transform: scale(1.05); }
.newBlog .left .title { transition: color .24s ease; }
.newBlog .left:hover .title { color: var(--pros-orange); }

.blog {
  padding: 7rem 0;
  background: var(--blog-soft);
}

.blog .section1 {
  max-width: 48rem;
  margin-bottom: 3.8rem;
}

.blog .section1 .title {
  justify-content: flex-start;
}

.blog .section1 .desc {
  margin-top: 0.7rem;
  color: var(--pros-muted);
  font-size: 0.96rem;
  line-height: 1.8;
}

.blog .section2 {
  display: flex;
  gap: 4rem;
  align-items: start;
}

.blog .section2-left {
  flex: 0 0 38%;
  min-width: 0;
}

.blog .section2-right {
  flex: 1 1 auto;
  width: auto;
  min-width: 0;
}

.blog .section2-left-top,
.blog .section2-right-top {
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
  margin-bottom: 1.8rem;
}

.blog .section2-left-top .title,
.blog .section2-right-top .title {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  color: var(--pros-ink);
  font-size: 1.25rem;
  font-weight: 900;
}

.blog .section2-left-middle {
  display: flex;
  flex-direction: column;
  gap: 1.4rem;
}

.blog .section2-left-middle .item {
  display: flex;
  gap: 1.4rem;
  padding-bottom: 1.4rem;
  border-bottom: 1px solid var(--blog-line);
}

.blog .section2-left-middle .item-left {
  flex: 0 0 32%;
  overflow: hidden;
  border-radius: calc(var(--pros-radius) * 0.65);
  background: #d7dee6;
}

.blog .section2-left-middle .item-right {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  width: auto;
  aspect-ratio: auto;
  border-radius: 0;
  background: transparent;
}

.blog .section2-left-middle .item-left img {
  width: 100%;
  height: 100%;
  min-height: 9rem;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.blog .section2-left-middle .item:hover img {
  transform: scale(1.05);
}

.blog .section2-left-middle .title {
  margin-top: 0.4rem;
  color: var(--pros-ink);
  font-size: 1.1rem;
  line-height: 1.45;
  font-weight: 900;
  transition: color 0.24s ease;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.blog .section2-left-middle .item:hover .title {
  color: var(--pros-orange);
}

.blog .section2-left-middle .desc {
  margin-top: 0.4rem;
  color: var(--pros-text);
  font-size: 0.9rem;
  line-height: 1.7;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.blog .section2-left-middle .more {
  margin-top: 0.55rem;
  font-size: 0.88rem;
}

.blog .section2-left-bottom {
  min-height: 3.3rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 2.6rem;
  border: 1px solid #d2d8df;
  border-radius: 0.25rem;
  color: var(--pros-ink);
  font-weight: 900;
  cursor: pointer;
  transition: color 0.24s ease, border-color 0.24s ease, background 0.24s ease;
}

.blog .section2-left-bottom:hover {
  color: var(--pros-white);
  border-color: var(--pros-green);
  background: var(--pros-green);
}

.blog .section2-right {
  position: sticky;
  top: 7rem;
}

.blog .section2-right-middle {
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
}

.blog .section2-right-middle .item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.2rem;
  border: 1px solid var(--blog-line);
  border-radius: calc(var(--pros-radius) * 0.75);
  background: var(--blog-card);
  box-shadow: 0 0.6rem 1.4rem rgba(15, 23, 42, 0.05);
  transition: transform 0.24s ease, border-color 0.24s ease;
}

.blog .section2-right-middle .item:hover {
  transform: translateY(-0.12rem);
  border-color: rgba(255, 133, 48, 0.45);
}

.blog .section2-right-middle .top {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  align-items: center;
}

.blog .section2-right-middle .tag {
  padding: 0.2rem 0.55rem;
  border-radius: 999rem;
  color: var(--pros-orange);
  background: rgba(255, 133, 48, 0.1);
  font-size: 0.75rem;
  font-weight: 900;
}

.blog .section2-right-middle .date {
  font-size: 0.75rem;
}

.blog .section2-right-middle .title {
  margin-top: 0.5rem;
  color: var(--pros-ink);
  font-size: 0.96rem;
  line-height: 1.55;
  font-weight: 900;
}

.blog .item-right {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.4rem;
  aspect-ratio: 1;
  border-radius: 50%;
  background: #f4f6f8;
}

.page,
.pages {
  display: flex;
  align-items: center;
  justify-content: center;
}

.page {
  gap: 0.45rem;
  margin-top: 2.4rem;
}

.industry-news-pagination {
  flex-wrap: wrap;
}

.page .num {
  min-width: 2.3rem;
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--blog-line);
  border-radius: 0.25rem;
  color: var(--pros-text);
  background: var(--blog-card);
  font-weight: 800;
}

.pre-pageBtn,
.next-pageBtn {
  min-width: 4.8rem;
  min-height: 2.3rem;
  padding: 0 0.8rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--blog-line);
  border-radius: 0.25rem;
  color: var(--pros-text);
  background: var(--blog-card);
  font-weight: 800;
  white-space: nowrap;
}

.pages {
  gap: 0.35rem;
}

.page .num-active {
  color: var(--pros-white);
  border-color: var(--pros-green);
  background: var(--pros-green);
}

.pre-pageBtn,
.next-pageBtn,
.page .num {
  cursor: pointer;
  transition: color 0.24s ease, border-color 0.24s ease, background 0.24s ease, transform 0.24s ease;
}

.pre-pageBtn:hover,
.next-pageBtn:hover,
.page .num:hover {
  color: var(--pros-white);
  border-color: var(--pros-orange);
  background: var(--pros-orange);
  transform: translateY(-1px);
}

.page .num-active:hover {
  border-color: var(--pros-green);
  background: var(--pros-green);
}

.page .disabled {
  pointer-events: none;
  opacity: 0.45;
}

.page .page-ellipsis {
  border-color: transparent;
  background: transparent;
}

@media (max-width: 64rem) {
  .newBlog .section2,
  .blog .section2 {
    flex-direction: column;
  }

  .newBlog .left {
    margin-right: 0;
  }

  .blog .section2-right {
    position: static;
    width: 100%;
  }
  .newBlog .section1 .title, .blog .section1 .title {
    font-size: 1.2rem;
  }
  .newBlog {
      padding: 3rem 0;
  }
  .blog {
      padding: 3rem 0;
  }
  .newBlog .section2 {
    margin: 2rem auto 0;
}
  .newBlog .left {
    padding: 1.5rem;
}
}

@media (max-width: 48rem) {
  .blog .section2-left-middle .item {
    flex-direction: column;
  }

  .page {
    flex-wrap: wrap;
  }
}

@media (min-width: 769px) {
  #app {
    background: #ffffff;
  }

  .banner .content {
    width: 80vw;
    padding-top: 56px;
  }

  .banner .top {
    gap: 20px;
  }

  .banner .square1,
  .banner .square2 {
    width: 45px;
    height: 45px;
    color: #ff8530;
  }

  .banner .square1 {
    left: 0;
    top: -64px;
  }

  .banner .square2 {
    right: 0;
    bottom: -82px;
  }

  .banner .title p {
    font-size: 48px;
    line-height: 67px;
    font-weight: 900;
    letter-spacing: 0;
  }

  .banner .title span {
    color: #ff8530;
  }

  .banner .desc {
    max-width: none;
    display: flex;
    align-items: flex-start;
    gap: 18px;
  }


  .banner .desc p {
    font-size: 16px;
    line-height: 22px;
    font-weight: 700;
  }

  .banner .bottom {
    display: none;
  }

  .newBlog {
    padding: 59px 0 95px;
    background: #f7f7f7;
  }

  .newBlog > img {
    top: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.1;
  }

  .newBlog .inner,
  .blog .inner {
    width: 80vw;
  }

  .newBlog .section1 .title {
    gap: 13px;
    font-size: 24px;
    line-height: 33px;
    font-weight: 800;
  }

  .newBlog .line,
  .blog .section1 .line {
    width: 52px;
    height: 1px;
    background: #ff8530;
  }

  .newBlog .section2 {
    margin: 45px auto 0;
    display: flex;
    justify-content: flex-end;
    border-radius: 14px;
    background: transparent;
    box-shadow: none;
  }

  .newBlog .left {
    position: absolute;
    left: 0;
    top: 45px;
    width: 458px;
    min-height: 272px;
    margin: 0;
    padding: 38px 43px 36px;
    border-radius: 18px;
    background: #ffffff;
    box-shadow: 0 20px 45px rgba(15, 23, 42, 0.2);
  }

  .newBlog .date,
  .blog .date {
    gap: 8px;
    color: #62748e;
    font-size: 12px;
    line-height: 17px;
    font-weight: 700;
  }

  .newBlog .date svg {
    width: 14px;
    height: 14px;
  }

  .newBlog .left .title {
    margin-top: 18px;
    color: #111827;
    font-size: 24px;
    line-height: 34px;
    font-weight: 900;
  }

  .newBlog .desc {
    margin-top: 19px;
    color: #4b5563;
    font-size: 13px;
    line-height: 24px;
  }

  .more {
    gap: 8px;
    margin-top: 24px;
    color: #111827;
    font-size: 14px;
    line-height: 20px;
    font-weight: 800;
  }

  .more .icon svg {
    width: 18px;
    height: 18px;
  }

  .newBlog .right {
    width: 80%;
    border-radius: 14px;
    box-shadow: none;
  }

  .newBlog .right img {
    width: 100%;
    height: 100%;
    aspect-ratio: auto;
    object-fit: cover;
  }

  .blog {
    padding: 57px 0 72px;
    background: #ffffff;
  }

  .blog .section1 {
    max-width: none;
    margin-bottom: 40px;
  }

  .blog .section1 .title {
    gap: 13px;
    justify-content: flex-start;
    color: #111827;
    font-size: 24px;
    line-height: 33px;
    font-weight: 800;
  }

  .blog .section1 .desc {
    margin-top: 12px;
    color: #62748e;
    font-size: 13px;
    line-height: 23px;
  }

  .blog .section2 {
    display: flex;
    align-items: flex-start;
    gap: 54px;
  }

  .blog .section2-left {
    width: 38%;
    flex: 0 0 38%;
  }

  .blog .section2-right {
    position: static;
    width: auto;
    flex: 1 1 auto;
    min-width: 0;
  }

  .blog .section2-left-top,
  .blog .section2-right-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 25px;
  }

  .blog .section2-left-top .title,
  .blog .section2-right-top .title {
    gap: 8px;
    color: #111827;
    font-size: 18px;
    line-height: 25px;
    font-weight: 800;
  }

  .blog .section2-left-top .title svg,
  .blog .section2-right-top .title svg {
    width: 22px;
    height: 22px;
  }

  .blog .section2-left-top .line,
  .blog .section2-right-top .line {
    flex: 1;
    width: auto;
    height: 1px;
    background: #e4e8ee;
  }

  .blog .section2-right-top .line {
    width: auto;
  }

  .blog .section2-left-middle {
    display: flex;
    flex-direction: column;
    gap: 16px;
  }

  .blog .section2-left-middle .item {
    display: flex;
    gap: 20px;
    padding-bottom: 18px;
    border-bottom: 0;
  }

  .blog .section2-left-middle .item-left {
    width: 196px;
    height: 116px;
    flex: 0 0 196px;
    border-radius: 6px;
    background: #d7dee6;
  }

  .blog .section2-left-middle .item-left img {
    width: 100%;
    height: 100%;
    min-height: 0;
    object-fit: cover;
  }

  .blog .section2-left-middle .item-right {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    width: auto;
    flex: 1;
    min-width: 0;
    aspect-ratio: auto;
    border-radius: 0;
    background: transparent;
  }

  .blog .section2-left-middle .title {
    margin-top: 5px;
    color: #111827;
    font-size: 15px;
    line-height: 22px;
    font-weight: 900;
  }

  .blog .section2-left-middle .desc {
    margin-top: 6px;
    color: #62748e;
    font-size: 12px;
    line-height: 19px;
    /* 两行省略核心 */
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  }

  .blog .section2-left-middle .more {
    margin-top: 7px;
    font-size: 13px;
    line-height: 18px;
  }

  .blog .section2-left-middle .more svg {
    width: 15px;
    height: 15px;
  }

  .blog .section2-left-bottom {
    height: 46px;
    min-height: 0;
    margin-top: 18px;
    border: 1px solid #d1d5dc;
    border-radius: 5px;
    color: #111827;
    background: #ffffff;
    font-size: 14px;
    line-height: 20px;
    font-weight: 800;
  }

  .blog .section2-right-middle {
    display: flex;
    flex-direction: column;
    gap: 12px;
  }

  .blog .section2-right-middle .item {
    min-height: 88px;
    display: flex;
    align-items: center;
    gap: 18px;
    padding: 17px 17px 16px 19px;
    border: 1px solid #edf0f4;
    border-radius: 12px;
    background: #fbfcfe;
    box-shadow: none;
  }

  .blog .section2-left-middle .item,
  .blog .section2-right-middle .item {
    cursor: pointer;
  }

  .blog .section2-right-middle .item:hover {
    border-color: rgba(255, 133, 48, 0.5);
    background: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 10px 24px rgba(15, 23, 42, 0.08);
  }

  .blog .section2-right-middle .item-left {
    flex: 1;
    min-width: 0;
  }

  .blog .section2-right-middle .top {
    gap: 13px;
  }

  .blog .section2-right-middle .tag {
    padding: 0;
    border-radius: 0;
    color: #ff8530;
    background: transparent;
    font-size: 12px;
    line-height: 17px;
    font-weight: 800;
  }

  .blog .section2-right-middle .date {
    color: #90a1b9;
    font-size: 12px;
    line-height: 17px;
    font-weight: 700;
  }

  .blog .section2-right-middle .title {
    margin-top: 9px;
    color: #111827;
    font-size: 13px;
    line-height: 20px;
    font-weight: 900;
    transition: color 0.24s ease;
  }

  .blog .section2-right-middle .item:hover .title {
    color: #ff8530;
  }

  .blog .section2-right-middle .item-right {
    width: 30px;
    height: 30px;
    flex: 0 0 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    aspect-ratio: auto;
    border: 1px solid #e4e8ee;
    border-radius: 50%;
    background: #ffffff;
    transition: border-color 0.24s ease, background 0.24s ease, transform 0.24s ease;
  }

  .blog .section2-right-middle .item:hover .item-right {
    border-color: #ff8530;
    background: #ff8530;
    transform: rotate(45deg);
  }

  .blog .section2-right-middle .item:hover .item-right path {
    stroke: #ffffff;
  }

  .blog .section2-right-middle .item-right svg {
    width: 14px;
    height: 14px;
  }

  .page {
    gap: 7px;
    margin-top: 26px;
  }

  .pages {
    gap: 7px;
  }

  .page .num {
    min-width: 28px;
    width: 28px;
    height: 28px;
    border: 1px solid #e4e8ee;
    border-radius: 3px;
    color: #111827;
    background: #ffffff;
    font-size: 12px;
    line-height: 17px;
    font-weight: 700;
  }

  .pre-pageBtn,
  .next-pageBtn {
    min-width: 54px;
    height: 28px;
    padding: 0 9px;
    border: 1px solid #e4e8ee;
    border-radius: 3px;
    color: #111827;
    background: #ffffff;
    font-size: 12px;
    line-height: 17px;
    font-weight: 700;
    white-space: nowrap;
  }

  .page .num-active {
    color: #ffffff;
    border-color: #00713f;
    background: #00713f;
  }

}

@media (max-width: 1024px) {
  .banner .content {
    width: 92%;
    padding-top: 56px;
  }

  .banner .title p {
    font-size: 42px;
    line-height: 54px;
  }

  .banner .desc p {
    font-size: 14px;
    line-height: 24px;
  }
}

@media (max-width: 768px) {
  .banner {
    min-height: 360px;
  }

  .banner > img {
    height: 360px;
    object-fit: cover;
  }

  .banner .content {
    width: 88%;
    padding-top: 50px;
  }

  .banner .top {
    gap: 12px;
  }

  .banner .title p {
    font-size: 24px;
    line-height: 32px;
  }

  .banner .desc {
    flex-direction: column;
    align-items: center;
    gap: 10px;
    text-align: center;
  }

  .banner .desc .line {
    width: 64px;
    flex: 0 0 auto;
  }

  .banner .desc p {
    font-size: 12px;
    line-height: 20px;
  }

  .banner .square1,
  .banner .square2,
  .banner .bottom {
    display: none;
  }
}

@media (max-width: 480px) {
  .banner {
    min-height: 320px;
  }

  .banner > img {
    height: 320px;
  }

  .banner .content {
    width: 90%;
    padding-top: 46px;
  }

  .banner .title p {
    font-size: 22px;
    line-height: 30px;
  }

  .banner .desc p {
    font-size: 12px;
    line-height: 20px;
  }
}

/* non-index banner unified responsive */
@media (max-width: 1180px) {
  body #app .banner .content {
    left: 50%;
    right: auto;
    top: 0;
    bottom: auto;
    width: 88vw;
    max-width: none;
    height: 100%;
    margin-left: 0;
    padding-top: 56px;
    transform: translateX(-50%);
  }

  body #app .banner .top {
    width: 100%;
  }

  body #app .banner .title p {
    font-size: 42px;
    line-height: 54px;
  }

  body #app .banner .desc {
    max-width: 82vw;
  }
}

@media (max-width: 1024px) {
  body #app .banner {
    min-height: 420px;
  }

  body #app .banner > img {
    width: 100%;
    height: 420px;
    object-fit: cover;
    object-position: center;
  }

  body #app .banner .content {
    width: 86vw;
    padding-top: 60px;
  }

  body #app .banner .top {
    gap: 14px;
  }

  body #app .banner .title p {
    font-size: 34px;
    line-height: 44px;
  }

  body #app .banner .desc {
    max-width: 78vw;
    gap: 12px;
  }

  body #app .banner .desc p {
    font-size: 15px;
    line-height: 24px;
    white-space: normal;
  }

  body #app .banner .desc .line {
    width: 56px;
    
  }

  body #app .banner .square1,
  body #app .banner .square2,
  body #app .banner .square3 {
    transform: scale(0.82);
  }

  body #app .banner .square3 {
    transform: rotate(-45deg) scale(0.82);
  }
}

@media (max-width: 768px) {
  body #app .banner {
    min-height: 360px;
  }

  body #app .banner > img {
    height: 360px;
  }

  body #app .banner .content {
    width: 88vw;
    padding-top: 54px;
  }

  body #app .banner .title p {
    font-size: 28px;
    line-height: 36px;
  }

  body #app .banner .desc {
    max-width: 88vw;
    flex-direction: column;
    gap: 10px;
  }

  body #app .banner .desc .line {
    width: 64px;
    flex: 0 0 auto;
  }

  body #app .banner .desc p {
    font-size: 14px;
    line-height: 23px;
  }

  body #app .banner .square1,
  body #app .banner .square2,
  body #app .banner .square3,
  body #app .banner .bottom {
    display: none;
  }
}

@media (max-width: 480px) {
  body #app .banner {
    min-height: 320px;
  }

  body #app .banner > img {
    height: 320px;
  }

  body #app .banner .content {
    width: 90vw;
    padding-top: 46px;
  }

  body #app .banner .title p {
    font-size: 24px;
    line-height: 32px;
  }

  body #app .banner .desc p {
    font-size: 13px;
    line-height: 21px;
  }
}

body #app .banner .content {
  box-sizing: border-box;
  padding-left: 28px;
  padding-right: 28px;
}

body #app .banner .desc {
  gap: 20px;
  margin-top: 0;
}

body #app .banner .desc p {
  line-height: 28px;
}

@media (max-width: 1180px) {
  body #app .banner .top {
    gap: 100px;
  }
}

@media (max-width: 1024px) {
  body #app .banner .content {
    padding-left: 24px;
    padding-right: 24px;
  }

  body #app .banner .top {
    gap: 80px;
  }

  body #app .banner .desc {
    gap: 16px;
  }

  body #app .banner .desc p {
    line-height: 26px;
  }
}

@media (max-width: 768px) {
  body #app .banner .content {
    padding-left: 20px;
    padding-right: 20px;
  }

  body #app .banner .top {
    gap: 40px;
  }

  body #app .banner .desc {
    gap: 14px;
  }

  body #app .banner .desc p {
    line-height: 24px;
  }
}

@media (max-width: 480px) {
    body #app .banner .top {
    gap: 20px;
  }
  body #app .banner .content {
    padding-left: 16px;
    padding-right: 16px;
  }

  body #app .banner .top {
    gap: 14px;
  }

  body #app .banner .desc {
    gap: 12px;
  }

  body #app .banner .desc p {
    line-height: 22px;
  }
}
body #app .banner .top {
  gap: 150px;
}

@media (max-width: 1180px) {
  body #app .banner .top {
    gap: 100px;
  }
}

@media (max-width: 1024px) {
  body #app .banner .top {
    gap: 80px;
  }
}

@media (max-width: 768px) {
  body #app .banner .top {
    gap: 40px;
  }
}

@media (max-width: 480px) {
  body #app .banner .top {
    gap: 20px;
  }
}

/* Blog 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 .resource-banner {
  padding-top: 0;
}

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

  body #app .resource-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;
  }
}
