/* 认购中心页面样式 */
.rgzx-page {
  background-color: #f8f9fd;
  min-height: 100vh;
}
.rgzx-page .banner {
  width: 100%;
  height: 240px;
  background: url("../images/images-rgzx/rgzx_banner.png") no-repeat center
    center / cover;
  padding-top: 59px;
}
.rgzx-page .banner .content {
  padding-left: 30px;
}
.rgzx-page .banner .title {
  font-size: 38px;
  color: #1e295f;
  font-weight: bold;
}
.rgzx-page .content{
  overflow: visible;
}
.rgzx-page .content .list {
  padding: 20px 0 30px 30px;
  background-color: #fff;
  position: relative;
  top: -60px;
  z-index: 1;
}
.rgzx-page .list .page-item a{
  height:auto;
}
.rgzx-page .list .pagination{
  margin-top: 70px;
}
.rgzx-page .content .list .icon {
  width: 20px;
  margin-right: 12px;
}
.rgzx-page .content .list .time {
  width: 105px;
  font-size: 16px;
  color: #727272;
}
.rgzx-page .content .list .text {
  padding-left: 13px;
  font-size: 18px;
  color: #2a2a2a;
  box-shadow: 0px 1px 0px 0px #e2e6ef;
  flex: 1;
  line-height: 70px;
  /* 多余的字符用...代替 */
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  padding-right: 13px;
}
.rgzx-page .content .list li {
  cursor: pointer;
}
.rgzx-page .content .list li:hover .text {
  color: #306bea;
  font-weight: bold;
  background-color: #f7f8fa;
}
.rgzx-page .content .list li:hover .time {
  color: #306bea;
  font-weight: bold;
}
.rgzx-page .list li a {
  height: 70px;
  display: flex;
  align-items: center;
}
.rgzx-detailpage {
  min-height: 100vh;
}

/* 内容区域 */
.rgzx-detailpage .content {
  padding: 20px 0 40px;
  background-color: #fff;
}

.rgzx-detailpage .content-wrapper {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 20px;
}

/* 面包屑导航 */
.rgzx-detailpage .breadcrumb-nav {
  margin-bottom: 60px;
  font-size: 18px;
  color: #2a2a2a;
}

.rgzx-detailpage .breadcrumb-nav a {
  color: #666;
  text-decoration: none;
  transition: color 0.3s;
}

.rgzx-detailpage .breadcrumb-nav a:hover {
  color: #306bea;
}

.rgzx-detailpage .breadcrumb-nav .separator {
  margin: 0 8px;
  color: #999;
}

/* 文章头部 */
.rgzx-detailpage .article-header {
  margin-bottom: 20px;
}

.rgzx-detailpage .article-title {
  font-size: 40px;
  font-weight: bold;
  color: #2a2a2a;
  line-height: 1.5;
  margin-bottom: 5px;
  text-align: center;
}

.rgzx-detailpage .article-meta {
  font-size: 16px;
  color: #757575;
  text-align: center;
}

/* 文章内容 */
.rgzx-detailpage .article-content {
  line-height: 1.8;
  color: #333;
}

.rgzx-detailpage .article-text {
  margin-bottom: 30px;
}

.rgzx-detailpage .article-text p {
  font-size: 20px;
  line-height: 1.8;
  color: #2a2a2a;
  margin-bottom: 15px;
  text-align: justify;
  text-indent: 2rem;
}

.rgzx-detailpage .article-text p:last-child {
  margin-bottom: 0;
}

/* 图片组 */
.rgzx-detailpage .article-images {
  margin: 30px 0;
}

.rgzx-detailpage .image-group {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

.rgzx-detailpage .image-group img {
  max-width: 100%;
  height: auto;
  border-radius: 4px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

/* 响应式设计 - 平板 */
@media (max-width: 992px) {
  .rgzx-detailpage .content-wrapper {
    padding: 0 15px;
  }

  .rgzx-detailpage .article-title {
    font-size: 24px;
  }

  .rgzx-detailpage .article-text p {
    font-size: 15px;
  }

  .rgzx-detailpage .image-group {
    gap: 15px;
  }
}

/* 响应式设计 - 手机端 */
@media (max-width: 768px) {
  .rgzx-page .content .list .icon {
    width: 16px;
  }
  .rgzx-detailpage .content {
    padding: 15px 0 30px;
  }

  .rgzx-detailpage .content-wrapper {
    padding: 0 15px;
  }

  .rgzx-detailpage .breadcrumb-nav {
    font-size: 12px;
    margin-bottom: 15px;
  }

  .rgzx-detailpage .article-title {
    font-size: 20px;
    line-height: 1.4;
    margin-bottom: 10px;
  }

  .rgzx-detailpage .article-meta {
    font-size: 12px;
  }

  .rgzx-detailpage .article-text {
    margin-bottom: 20px;
  }

  .rgzx-detailpage .article-text p {
    font-size: 14px;
    line-height: 1.7;
    margin-bottom: 15px;
  }

  .rgzx-detailpage .article-images {
    margin: 20px 0;
  }

  .rgzx-detailpage .image-group {
    flex-direction: column;
    gap: 15px;
  }

  .rgzx-detailpage .image-group img {
    width: 100%;
    display: block;
  }
  .rgzx-page .content .list {
    padding: 20px 0 0px 10px;
  }
  .rgzx-page .content .list .time {
    font-size: 14px;
  }
  .rgzx-page .content .list .text {
    font-size: 16px;
    line-height: 50px;
  }
  .rgzx-page .list li a {
    height: 50px;
  }
  .rgzx-page .content .list .time {
    width: 90px;
  }
  .rgzx-page .banner .title {
    font-size: 26px;
  }
  .rgzx-page .banner {
    height: 160px;
    padding-top: 40px;
  }
  .pagination {
    padding: 0;
  }
  .page-jump {
    display: none;
  }
  .rgzx-page .content .list {
    top: 0;
  }
}

/* 响应式设计 - 小屏手机 */
@media (max-width: 480px) {
  .rgzx-detailpage .content {
    padding: 10px 0 20px;
  }

  .rgzx-detailpage .content-wrapper {
    padding: 0 10px;
  }

  .rgzx-detailpage .breadcrumb-nav {
    font-size: 11px;
    margin-bottom: 12px;
  }

  .rgzx-detailpage .breadcrumb-nav .separator {
    margin: 0 5px;
  }

  .rgzx-detailpage .article-title {
    font-size: 18px;
    margin-bottom: 8px;
  }

  .rgzx-detailpage .article-meta {
    font-size: 11px;
  }

  .rgzx-detailpage .article-text p {
    font-size: 13px;
    line-height: 1.6;
    margin-bottom: 12px;
  }

  .rgzx-detailpage .article-images {
    margin: 15px 0;
  }

  .rgzx-detailpage .image-group {
    gap: 12px;
  }
}

/* 认购中心列表页样式 */
.rgzx-listpage{
  background-color: #f8f9fd;
}
.rgzx-listpage .content {
  padding: 20px 0 40px;
  min-height: calc(100vh - 200px);

}

.rgzx-listpage .content .list {
  margin: 0 auto;
  padding:30px 10px;
  overflow: hidden;
  width: 100%;
}

/* 卡片网格布局 */
.rgzx-listpage .card-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}

@media (min-width: 992px) {
  .rgzx-listpage .card-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
  }
}

/* 卡片样式 */
.rgzx-listpage .auction-card {
  background-color: #fff;
  border-radius: 14px;
  overflow: hidden;
  cursor: pointer;
}


/* 图片容器 */
.rgzx-listpage .card-image-wrapper {
  position: relative;
  width: 100%;
  height: 250px;
  overflow: hidden;
}

.rgzx-listpage .card-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* 拍卖标签 */
.rgzx-listpage .auction-tag {
  position: absolute;
  top: 14px;
  left: 14px;
  padding: 0px 7px;
  line-height: 26px;
  border-radius: 4px;
  font-size: 14px;
  color: #fff;

  z-index: 2;
  font-weight: bold;
}

.rgzx-listpage .auction-tag.tag-sync {
  background: linear-gradient(180deg, #ff6078 0%, #f6374f 100%);
  box-shadow: 0px 1px 1px 0px #ba0820;
}

.rgzx-listpage .auction-tag.tag-online {
  background: linear-gradient(180deg, #306bea 0%, #6d9bff 100%);
  box-shadow: 0px 4px 4px 0px #00000040;
}

/* 卡片内容 */
.rgzx-listpage .card-content {
  padding: 14px 14px 0;
  background-color: #fff;
}

.rgzx-listpage .card-title {
  font-size: 18px;
  font-weight: 600;
  color: #222222;
  margin-bottom: 5px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  margin-right: 10px;
}

.rgzx-listpage .card-company {
  font-size: 14px;
  color: #727272;
}
.rgzx-listpage .card-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0;
  background-color: transparent;
  padding-bottom: 15px;
  border:none;
}
.rgzx-listpage .card-header-right {
  display: flex;
  flex-direction: column;
  align-items: center;
  font-size: 12px;
  color:#727272;
}
.rgzx-listpage .card-header-right img {
  height: 40px;
  margin-bottom: 2px;
}

/* 卡片底部 */
.rgzx-listpage .card-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  box-shadow: 0px -1px 0px 0px #0000000a;
  background: transparent;
  height: 40px;
  padding:0;
  border:none;
}

.rgzx-listpage .card-info {
  display: flex;
  gap: 4px;
  flex: 1;
  min-width: 0;
  font-size: 12px;
  color: #acacac;
}
.rgzx-listpage .card-number {
  color: #667085;
  font-size: 12px;
}


.rgzx-listpage .view-count,
.rgzx-listpage .bid-price {
  display: inline-block;
}

.rgzx-listpage .lot-count {
  margin-top: 4px;
}

/* 操作按钮 */
.rgzx-listpage .card-action {
  flex-shrink: 0;
}

.rgzx-listpage .action-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: opacity 0.3s ease;
  padding: 0;
  background: transparent;
}

.rgzx-listpage .action-btn:hover {
  opacity: 0.9;
}

.rgzx-listpage .action-btn img {
  width: 48px;
  height: 48px;
  object-fit: contain;
  display: block;
}


.rgzx-listpage .btn-bid img {
  width: 48px;
  height: 48px;
}

.rgzx-listpage .btn-appointment img {
  width: 48px;
  height: 48px;
}

/* 响应式设计 - 平板 */
@media (max-width: 992px) {
  .rgzx-listpage .card-image-wrapper {
    height: auto;
  }

}

/* 响应式设计 - 手机端 */
@media (max-width: 768px) {
  .rgzx-listpage .card-header-right{
    font-size: 10px;
  }
  .rgzx-listpage .content {
    padding: 15px 0 30px;
  }
  .rgzx-listpage .card-header-right img{
    height:30px;
  }
  .rgzx-listpage .content .list {
    padding: 15px 10px;
  }

  .rgzx-listpage .card-grid {
    gap: 15px;
  }

  .rgzx-listpage .card-image-wrapper {
    height: auto;
  }

  .rgzx-listpage .auction-tag {
    top: 8px;
    left: 8px;
    padding: 3px 10px;
    font-size: 12px;
  }

  .rgzx-listpage .card-content {
    padding: 12px;
  }

  .rgzx-listpage .card-title {
    font-size: 16px;
    margin-bottom: 6px;
  }

  .rgzx-listpage .card-company {
    font-size: 14px;
    margin-bottom: 10px;
  }

  .rgzx-listpage .card-footer {
    gap: 10px;
  }

  .rgzx-listpage .card-info {
    gap: 3px;
  }

  .rgzx-listpage .card-info span {
    font-size: 12px;
  }

  .rgzx-listpage .action-btn img {
    width: 40px;
    height: 40px;
  }

  .rgzx-listpage .action-btn .progress,
  .rgzx-listpage .action-btn .appointment-time {
    font-size: 11px;
  }
  .rgzx-listpage .card-header{
    padding-bottom: 10px;
  }
  .rgzx-listpage .card-footer{
    height:30px;
  }
}

/* 响应式设计 - 小屏手机 */
@media (max-width: 480px) {
  .rgzx-listpage .content {
    padding: 10px 0 20px;
  }

  .rgzx-listpage .card-grid {
    gap: 12px;
  }

  .rgzx-listpage .card-image-wrapper {
    height: auto;
  }

  .rgzx-listpage .auction-tag {
    top: 6px;
    left: 6px;
    padding: 2px 8px;
    font-size: 11px;
  }

  .rgzx-listpage .card-content {
    padding: 10px;
  }

  .rgzx-listpage .card-title {
    font-size: 16px;
    margin-bottom: 5px;
  }

  .rgzx-listpage .card-company {
    font-size: 12px;
    margin-bottom: 8px;
  }

  .rgzx-listpage .card-info span {
    font-size: 11px;
  }

  .rgzx-listpage .action-btn img {
    width: 36px;
    height: 36px;
  }

  .rgzx-listpage .action-btn .progress,
  .rgzx-listpage .action-btn .appointment-time {
    font-size: 10px;
  }
}

/* rgzx-dt-page 产品列表样式 */
.rgzx-dt-page {
  background-color: #F8F9FD;
  padding: 20px 0 40px;
}

.rgzx-dt-page__container {
  margin: 0 auto;
}

.rgzx-dt-page__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}

/* 卡片样式 */
.rgzx-dt-page__container{
  padding:0 20px;
}
.rgzx-dt-page__card {
  overflow: hidden;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.rgzx-dt-page__card a{
  display: block;
}
.rgzx-dt-page__card:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

/* 图片容器 - 使用 bj.png 作为边框背景 */
.rgzx-dt-page__image-wrapper {
  position: relative;
  width: 100%;
  padding: 4px;
  background: url("../images/images-rgzx/bj.png") no-repeat center center;
  background-size: 100% 100%;
  position: relative;
}
.rgzx-dt-page__status{
  position: absolute;
  top: 10px;
  left: 10px;
  height:26px;
  line-height: 26px;
  padding:0 7px;
  background: linear-gradient(180deg, #E2E6EF 0%, #FFFFFF 100%);
  color: #2A2A2A;
  font-size: 14px;
  border-radius: 4px;
  z-index: 2;
  font-weight: bold;
  
}
.rgzx-dt-page__image {
  width: 100%;
  height: auto;
  object-fit: cover;
  display: block;
  border-radius: 14px 14px  0 0;
}



/* 卡片内容 */
.rgzx-dt-page__content {
  padding: 13px 10px 14px 14px;
  background-color: #fff;
}

/* 标题和位置在同一行 */
.rgzx-dt-page__title-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 10px;
}

.rgzx-dt-page__title {
  font-size: 18px;
  font-weight: 400;
  color: #222;
  margin: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  flex: 1;
  min-width: 0;
}

.rgzx-dt-page__price {
  font-size: 16px;
  color: #333;
  font-weight: 500;
  margin-bottom: 12px;
}

.rgzx-dt-page__price .price {
  color: #C71622;
  font-size: 20px;
  font-weight: bold;
}

.rgzx-dt-page__price .label{
  color:#727272;
  font-size: 14px;
}
.rgzx-dt-page__price .unit{
  color:#727272;
  font-size: 14px;
}
.rgzx-dt-page__price .symbol{
  color:#C71622;
  font-size: 14px;
  font-weight: bold;
}
.rgzx-dt-page__location {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 14px;
  color: #727272;
}

/* 围观和按钮在同一行 */
.rgzx-dt-page__bottom-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.rgzx-dt-page__views {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 14px;
  color: #727272;
}
.rgzx-dt-page__icon1{
  width:15px;
}

.rgzx-dt-page__icon {
  width: 12px;
  height: 12px;
  object-fit: contain;
}

/* 查看详情按钮 */
.rgzx-dt-page__btn {
  padding: 4px 13px;
 border:solid 1px #306bea;
  color: #306BEA;
  border-radius: 4px;
  font-size: 16px;
  font-weight: 500;
  cursor: pointer;
  transition: opacity 0.3s ease;
  background: #ffff;
  white-space: nowrap;
}

.rgzx-dt-page__btn:hover {
  opacity: 0.9;
}

/* 响应式设计 - 平板 (768px+) */
@media (min-width: 768px) {
  .rgzx-dt-page__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
  
  .rgzx-dt-page__image {
    height: 300px;
  }
}

/* 响应式设计 - 桌面 (992px+) */
@media (min-width: 992px) {
  .rgzx-dt-page__grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
  }
  
  .rgzx-dt-page__image {
    height: 200px;
  }
}

/* 响应式设计 - 大屏桌面 (1200px+) */
@media (max-width: 1300px) {
  .daohang-lan{
    width:95%;
  }

}
@media (min-width: 1200px) {
  .rgzx-dt-page__grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
  }
  .rgzx-dt-page__container{
    padding:0;
  }
  
  .rgzx-dt-page__image {
    height: 200px;
  }
}

/* 响应式设计 - 手机端 */
@media (max-width: 767px) {
  .rgzx-dt-page {
    padding: 15px 0 30px;
  }
  
  .rgzx-dt-page__container {
    padding: 0 15px;
  }
  
  .rgzx-dt-page__grid {
    gap: 15px;
  }
  

  
  .rgzx-dt-page__image {
    height: auto;
  }
  
  .rgzx-dt-page__content {
    padding: 12px;
  }
  
  .rgzx-dt-page__title-row {
    margin-bottom: 8px;
  }
  
  .rgzx-dt-page__title {
    font-size: 16px;
  }
  
  .rgzx-dt-page__price {
    font-size: 14px;
    margin-bottom: 10px;
  }
  
  .rgzx-dt-page__location {
    font-size: 12px;
  }
  
  .rgzx-dt-page__views {
    font-size: 12px;
  }
  
  .rgzx-dt-page__icon {
    width: 14px;
    height: 14px;
  }
  
  .rgzx-dt-page__btn {
    padding: 6px 16px;
    font-size: 14px;
  }
  .rgzx-dt-page__status{
    font-size: 12px;
    height:22px;
    line-height: 22px;
  }
  .rgzx-dt-page__price .price{
    font-size: 18px;
  }
}

/* 响应式设计 - 小屏手机 */
@media (max-width: 480px) {
  .rgzx-dt-page {
    padding: 10px 0 20px;
  }
  
  .rgzx-dt-page__container {
    padding: 0 10px;
  }
  
  .rgzx-dt-page__grid {
    gap: 12px;
  }
  

  
  .rgzx-dt-page__image {
    height: auto;
  }
  
  .rgzx-dt-page__content {
    padding: 10px;
  }
  
  .rgzx-dt-page__title-row {
    margin-bottom: 6px;
  }
  
  .rgzx-dt-page__title {
    font-size: 16px;
  }
  
  .rgzx-dt-page__price {
    font-size: 13px;
    margin-bottom: 8px;
  }
  
  .rgzx-dt-page__location {
    font-size: 11px;
  }
  
  .rgzx-dt-page__views {
    font-size: 11px;
  }
  
  .rgzx-dt-page__icon {
    width: 12px;
    height: 12px;
  }
  
  .rgzx-dt-page__btn {
    padding: 5px 12px;
    font-size: 13px;
  }
  

}