#IpPage {
  margin-top: 70px;
  padding-top: 0.3rem;
  background-color: #FAFBFD;
}

#IpPage .ipList {
  max-width: 12rem;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.36rem 0.23rem;
}

#IpPage .ipList .ipItem {
  background-color: #ffffff;
  border-radius: 6px;
  overflow: hidden;
  display: block;
  transition: all 0.3s ease-in-out;
}

#IpPage .ipList .ipItem:hover {
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}


#IpPage .ipList .ipItem img {
  height: 3.3rem;
  width: 100%;
  object-fit: cover;
}

#IpPage .ipList .ipItem .ipInfo {
  padding: 0.24rem 0.2rem;
}

#IpPage .ipList .ipItem .ipInfo h3 {
  font-weight: 500;
  font-size: 18px;
  color: #333649;
}

#IpPage .ipList .ipItem:hover .ipInfo h3 {
  color: #2858f8;
}


#IpPage .ipList .ipItem .ipInfo p {
  font-weight: 400;
  font-size: 14px;
  color: #999999;
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap;
  margin-top: 14px;
}

/* 分页 */
.paging {
  width: 600px;
  display: flex;
  align-items: center;
  justify-content: space-around;
  margin: auto;
  padding: 24px 0;
}

.paging .pageList {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: space-around;
}

.paging a {
  display: inline-block;
  width: 42px;
  height: 42px;
  line-height: 42px;
  text-align: center;
  background-color: #fff;
  border-radius: 4px;
}

.paging a.active {
  color: #2858f8;
  background-color: #2859f818;
}