 #rx-news {
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 80px;
}

#rx-news .new-item {
  margin-bottom: 20px;
  flex-basis: 25%;
  flex-grow: 0;
  overflow: hidden;
  flex-shrink: 1;
  padding: 10px;
  border-radius: 10px;
  transition: all 0.6s;
  cursor: pointer;
}
#rx-news .new-item:hover {
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.4);
}

#rx-news-detail {
  margin-top: 40px;
  margin-bottom: 80px;
}

#rx-news-detail .new-back {
  width: 80px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  border: 1px solid #000;
  border-radius: 5px;
}

#rx-news-detail .new-ml {
  margin-left: 20vw;
}
#rx-news-detail .new-detail-title {
  margin-top: 30px;
  font-size: 30px;
}
#rx-news-detail .new-detail-time {
  font-size: 12px;
  color:rgba(0, 0, 0, 0.8);
}

#rx-news-detail .new-line {
  margin-top: 10px;
  margin-right: 10px;
  height: 1px;
  background-color: rgba(0, 0, 0, 0.8);
  border-radius: 100%;
}

#rx-news-detail .new-content {
  margin-top: 10px;
  overflow: hidden;
  padding: 10px;
  font-size: 16px;
  line-height: 32px;
}

#rx-news-detail .new-content img {
  width: 100%;
}

#rx-news .new-item img {
  width: 100%;
  height: 200px;
  border-radius: 10px;
}

#rx-news .new-item .new-title {
  width: 100%;
  font-size: 16px;
  font-weight: 600;
  padding: 5px;
  overflow: hidden;
  text-overflow:ellipsis;
  white-space: nowrap;
}

#rx-news .new-item p {
  font-size: 12px;
  padding: 0 5px 0 5px;
}

@media screen and (max-width: 1069px) {

  #rx-news .new-item {
    flex-basis: 33.3%;
  }

  #rx-news-detail .new-ml {
    margin-left: 10vw;
  }
}

@media screen and (max-width: 800px) {

  #rx-news .new-item {
    flex-basis: 50%;
  }

  #rx-news-detail .new-ml {
    margin-left: 0vw;
  }

}

@media screen and (max-width: 450px) {

  #rx-news .new-item {
    flex-basis: 100%;
  }
} 

/* @import url('https://fonts.googleapis.com/css2?family=Orbitron:wght@400;500;700&family=Exo+2:wght@400;600&display=swap'); */

/* #rx-news {
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 80px;
}

#rx-news .new-item {
  margin: 10px;
  flex-basis: 25%;
  padding: 0;
  border-radius: 12px;
  overflow: hidden;
  position: relative;
  background: rgba(10, 10, 20, 0.6);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(100, 100, 255, 0.2);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  cursor: pointer;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  text-decoration: none;
  color: #fff;
  font-family: 'Exo 2', 'Orbitron', sans-serif;
}

#rx-news .new-item:hover {
  transform: translateY(-8px);
  box-shadow: 0 0 20px rgba(100, 150, 255, 0.6),
              inset 0 0 10px rgba(150, 200, 255, 0.2);
  border-color: rgba(120, 180, 255, 0.6);
}

#rx-news .new-item img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: 12px 12px 0 0;
  transition: transform 0.5s ease;
}

#rx-news .new-item:hover img {
  transform: scale(1.05);
}

#rx-news .new-item .new-title {
  font-size: 16px;
  font-weight: 600;
  padding: 12px 10px 6px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  color: #e0f0ff;
  letter-spacing: 0.5px;
}

#rx-news .new-item p {
  font-size: 12px;
  padding: 0 10px 10px;
  color: rgba(180, 200, 255, 0.8);
  letter-spacing: 0.3px;
}

/* 响应式保持不变 */
@media screen and (max-width: 1069px) {
  #rx-news .new-item {
    flex-basis: 33.3%;
  }
}

@media screen and (max-width: 800px) {
  #rx-news .new-item {
    flex-basis: 50%;
  }
}

@media screen and (max-width: 450px) {
  #rx-news .new-item {
    flex-basis: 100%;
  }
} */