.mobile-container,
.phoneheader,
.dian {
  display: none;
}

/* 列表分页（案例 / 洞察等页复用） */
.list-pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.08rem;
  margin-top: 0.48rem;
}

.list-pagination__btn,
.list-pagination__num {
  box-sizing: border-box;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 0.32rem;
  height: 0.32rem;
  padding: 0 0.06rem;
  border: 1px solid transparent;
  border-radius: 0.04rem;
  background: #f5f5f5;
  font-size: 0.14rem;
  line-height: 1;
  color: #666;
  cursor: pointer;
  transition:
    background 0.2s ease,
    border-color 0.2s ease,
    color 0.2s ease;
}

.list-pagination__btn {
  background: #fff;
}

.list-pagination__btn--prev {
  border-color: #e0e0e0;
  color: #ccc;
  cursor: not-allowed;
}

.list-pagination__btn--prev:not(:disabled) {
  border-color: #e85d04;
  color: #e85d04;
  cursor: pointer;
}

.list-pagination__btn--next {
  border-color: #e85d04;
  color: #e85d04;
}

.list-pagination__btn--next:hover:not(:disabled),
.list-pagination__num:hover:not(.is-active) {
  border-color: #e85d04;
  color: #e85d04;
}

.list-pagination__btn:disabled {
  opacity: 1;
}

.list-pagination__num.is-active {
  background: #e85d04;
  border-color: #e85d04;
  color: #fff;
  cursor: default;
}

.list-pagination__ellipsis {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 0.32rem;
  height: 0.32rem;
  font-size: 0.14rem;
  color: #999;
  letter-spacing: 0.02em;
  user-select: none;
}
.mt20 {
  margin-top: 0.2rem;
}
.mb20 {
  margin-bottom: 0.2rem;
}
.pb20 {
  padding-bottom: 0.2rem;
}
@media screen and (min-width: 320px) and (max-width: 1024px) {
  .wrap {
    width: 92.5%;
  }

  header {
    display: none;
  }

  .dian {
    display: block;
    height: 1.4rem;
  }

  .phoneheader {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: fixed;
    top: 0;
    width: 100%;
    height: 1.4rem;
    background: #000;
    z-index: 999;
    box-shadow: 0 1px 3px #333;
    padding: 0 0.2rem;
  }

  .phoneheader .logo {
    width: 60%;
  }

  .phoneheader .logo img {
    display: block;
  }

  .phoneheader .menu img {
    width: 0.4rem;
  }

  .mobile-nav__item--dropdown {
    padding-left: 0;
  }

  .mobile-nav__parent {
    display: flex;
    align-items: center;
    justify-content: space-between;
    box-sizing: border-box;
    width: 100%;
    border: none;
    background: transparent;
    font-size: 0.34rem;
    font-family: Bo, sans-serif;
    line-height: 0.8rem;
    color: #333;
    cursor: pointer;
    text-align: left;
  }

  .mobile-nav__caret {
    flex-shrink: 0;
    width: 0.16rem;
    height: 0.16rem;
    margin-right: 0.08rem;
    border-right: 0.02rem solid #999;
    border-bottom: 0.02rem solid #999;
    transform: rotate(45deg);
    transition: transform 0.2s ease;
  }

  .mobile-nav__item--dropdown.is-open .mobile-nav__caret {
    transform: rotate(-135deg);
  }

  .mobile-nav__sub,
  .mobile-nav .sub {
    display: none;
    margin: 0;
    padding: 0;
    list-style: none;
  }

  .mobile-nav__item--dropdown.is-open > .mobile-nav__sub,
  .mobile-nav__item--dropdown.is-open > .sub {
    display: block;
  }

  .mobile-nav__sub li,
  .mobile-nav .sub li {
    border-bottom: 0.01rem solid #eee;
    line-height: 0.72rem;
    padding-left: 0;
  }

  .mobile-nav__sub li:last-child,
  .mobile-nav .sub li:last-child {
    border-bottom: none;
  }

  .mobile-nav__sub a,
  .mobile-nav .sub > li > a {
    display: block;
    font-size: 0.28rem;
    font-weight: normal;
    color: #666;
    text-decoration: none;
  }

  .mobile-container {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 99999;
  }

  .mobile-container .mobile-nav {
    position: fixed;
    top: 0;
    right: 0;
    left: auto;
    width: 70%;
    height: 100%;
    background: #fff;
    padding: 1rem 0.12rem;
    overflow-y: scroll;
  }

  .mobile-container .mobile-nav img {
    width: 0.4rem;
    position: absolute;
    right: 0.4rem;
    top: 0.4rem;
  }

  .mobile-container .mobile-nav ul li {
    border-bottom: 1px solid #eeeeee;
    line-height: 0.8rem;
    text-align: left;
    padding-left: 0.6rem;
  }

  .mobile-container .mobile-nav ul li a {
    font-size: 0.34rem;
    font-family: Bo;
  }

  .list-pagination {
    margin-top: 0.36rem;
    gap: 0.12rem;
  }

  .list-pagination__btn,
  .list-pagination__num {
    min-width: 0.48rem;
    height: 0.48rem;
    font-size: 0.24rem;
  }

  .list-pagination__ellipsis {
    min-width: 0.48rem;
    height: 0.48rem;
    font-size: 0.24rem;
  }
}

@media screen and (min-width: 1024px) and (max-width: 1200px) {
  .wrap {
    width: 80%;
  }
}
