/* VR大空间项目列表页专用样式 */
.banner_box {
  margin-bottom: 40px;
  justify-content: center;
  padding-top: 24px;
}
.banner_box .swiper-container.banner_index {
  width: 846px;
  height: 476px;
  overflow: hidden;
  position: relative;
}
.banner_box .swiper-slide img {
  width: 846px;
  height: 476px;
  object-fit: cover;
  display: block;
}
.banner_box .recommend {
  width: 401.5px;
  display: flex;
  flex-direction: column;
  gap: 15px;
  margin-left: 24px;
}
.banner_box .rec_box {
  width: 401.5px;
  height: 226px;
  background: #F5F5F5;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.banner_box .rec_box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.banner_index_pagination {
  position: absolute;
  left: 50%;
  transform: translateX(50%);
  bottom: 16px;
  margin: 0 auto;
  text-align: center;
  width: 100%;
  z-index: 10;
}
.section_2.flex-col {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 24px;
  margin-bottom: 40px;
  background: url('/static/pc/img/space/audit_background.png') center center no-repeat;
  background-size: cover;
  height: 328px;
}
.space-action-btn-pc {
  width: 400px;
  height: 48px;
  background: #00A200;
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  margin-bottom: 16px;
  font-size: 18px;
  font-weight: 400;
  line-height: 25px;
  color: #fff;
}
.space-action-btn-pc .btn-text {
  color: #fff;
  display: block;
  font-size: 18px;
  font-weight: 400;
  line-height: 25px;
}
.space-content-wrap {
  width: 1280px;
  margin: 0 auto;
}
.space-search-bar {
  display: flex;
  align-items: center;
  justify-content: center;
}
.space-search-form {
  display: flex;
  align-items: center;
  background: #fff;
  border-radius: 4px;
  box-shadow: 0px 0px 15px 0px rgba(231,236,239,0.1);
  border: 1px solid #E8ECEF;
  height: 44px;
  flex: 1;
  width: 100%;
  max-width: 100%;
}
.space-search-form .search-input-wrap {
  display: flex;
  align-items: center;
  background: transparent;
  border-radius: 4px 0 0 4px;
  padding: 0 16px;
  height: 44px;
  flex: 1;
}
.space-search-input {
  border: none;
  outline: none;
  font-size: 1rem;
  width: 100%;
  background: transparent;
}
.space-search-btn {
  background: none;
  color: #242E42;
  border: none;
  border-radius: 0 4px 4px 0;
  padding: 0 32px;
  height: 44px;
  font-size: 18px;
  line-height: 25px;
  cursor: pointer;
}
.space-filter-bar {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 24px;
  margin-bottom: 32px;
  background: #fff;
  border-radius: 4px;
  box-shadow: 0px 0px 15px 0px rgba(231,236,239,0.1);
  border: 1px solid #E8ECEF;
  padding: 22px 24px;
}
.space-filter-bar > div {
  display: flex;
  align-items: center;
  gap: 8px;
  width: 100%;
  justify-content: flex-start;
}
.space-filter-label {
  font-size: 14px;
  line-height: 20px;
  color: #242E42;
  font-weight: 500;
  margin-right: 8px;
}
.space-filter-group {
  display: flex;
  gap: 8px;
}
.space-filter-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 18px;
  height: 36px;
  line-height: 20px;
  border: 1px solid #E9E9E9;
  border-radius: 4px;
  background: #fff;
  color: #999;
  font-size: 14px;
  cursor: pointer;
  transition: all 0.2s;
}
.space-filter-btn.selected, .space-filter-btn:hover {
  color: #fff;
  border-color: #242E42;
  background-color: #242E42;
}
.space-list-pc {
  margin-top: 32px;
}
.space-list-ul {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(4,1fr);
  gap: 32px;
}
.space-list-li {
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.04);
  overflow: hidden;
  transition: box-shadow 0.2s;
}
.space-list-li:hover {
  box-shadow: 0 4px 16px rgba(0,0,0,0.10);
}
.space-list-img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  display: block;
}
.space-list-title {
  font-size: 14px;
  color: #333333;
  line-height: 20px;
  font-weight: 500;
  margin: 16px 16px 8px 16px;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  white-space: normal;
}
.space-list-meta {
  font-size: 0.95rem;
  color: #888;
  margin: 0 16px 16px 16px;
}
.space-list-more {
  display: block;
  width: 200px;
  margin: 40px auto 80px auto;
  text-align: center;
  background: #F5F5F5;
  color: #242E42;
  border-radius: 4px;
  padding: 12px 0;
  font-size: 1.1rem;
  font-weight: 500;
  text-decoration: none;
}
.space-list-more:hover {
  border: 1px solid #333;
  background: #F5F5F5;
  color: #242E42;
}
.subject_none {
  margin: 40px auto 80px auto;
  font-size: 1.1rem;
  font-weight: 500;
}
.banner_box .swiper-container.banner_index,
.banner_box .rec_box,
.space-filter-bar,
.space-search-form,
.space-search-form .search-input-wrap,
.space-search-btn,
.space-list-li,
.space-action-btn-pc {
  border-radius: 0 !important;
} 