/* 全国布局 */
.national-presence {
  padding: 80px 20px;
  background: #fff;
  text-align: center;
}

.np-title {
  /* 统一样式见 newi2style.css .curr_title */
  margin: 0 0 10px;
}

.np-subtitle {
  /* 统一样式见 newi2style.css .curr_titleen */
  margin: 0 0 40px;
}

.np-filter {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  margin-bottom: 40px;
  flex-wrap: wrap;
  margin-top: 50px;
}

.np-filter-label {
  font-size: 18px;
  color: #888;
  display: flex;
  align-items: center;
  letter-spacing: 2px;
}

.np-location-icon {
  width: 18px;
  height: 18px;
  border: 2px solid #666;
  border-radius: 50% 50% 50% 0;
  transform: rotate(-45deg);
  position: relative;
  display: inline-block;
}

.np-location-icon::after {
  content: '';
  width: 6px;
  height: 6px;
  background: #666;
  border-radius: 50%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.np-select {
  width: 50%;
  max-width: 350px;
  height: 35px;
  border: 1px solid #ccc;
  border-radius: 10px;
  padding: 0 35px 0 15px;
  font-size: 14px;
  color: #999;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  background: #fff url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%23666' d='M6 8L0 0h12z'/%3E%3C/svg%3E") no-repeat right 15px center;
  outline: none;
  cursor: pointer;
}

.np-campus-list {
  max-width: 78%;
  margin: 0 auto 70px;
  max-width: 1000px;

}

.np-campus-item {
  display: flex;
  align-items: center;
  margin-bottom: 30px;
  gap: 10px;
}

.np-campus-name {
  min-width: 180px;
  padding: 6px 25px;
  border: 1px solid #999;
  border-radius: 10px;
  font-size: 16px;
  color: #333;
  text-align: center;
  white-space: nowrap;
}

.np-dots {
 width: 24px;
}
.np-dots img{
width: 100%;
}
.np-campus-address {
  flex: 1;
  padding: 8px 25px;
  border: 1px solid #999;
  border-radius: 10px;
  font-size: 15px;
  color: #666;
  text-align: left;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.np-pagination {
  display: flex;
  justify-content: center;
  gap: 10px;
}

.np-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #ccc;
  cursor: pointer;
}

.np-dot.active {
  background: #c00;
}

@media (max-width: 768px) {
  .np-title {
    /* 统一样式见 newi2style.css */
  }

  .np-subtitle {
    /* 统一样式见 newi2style.css */
  }

  .np-filter {
    gap: 10px;
  }

  .np-select {
    width: 140px;
    height: 36px;
    font-size: 13px;
  }

  .np-campus-item {
    flex-wrap: wrap;
    justify-content: center;
  }

  .np-campus-name {
    min-width: auto;
    width: 100%;
    font-size: 14px;
    padding: 10px 15px;
  }

  .np-dots {
    display: none;
  }

  .np-campus-address {
    width: 100%;
    font-size: 12px;
    padding: 10px 15px;
    white-space: normal;
  }
}
