/* 资讯详情页样式 */
.news-details-content {
  width: 100%;
  height: auto;
  background-color: #010101;
}

.news-details--container {
  max-width: 1200px;
  padding: 24px 0;
  margin: 0 auto;
}

.news-details-router {
  opacity: 0.5;
  font-size: 14px;
  font-weight: 400;
  color: #ffffff;
  line-height: 16px;
}

#news-details-list-router {
  cursor: pointer;
}

/* 游戏内容部分 */
.news-title-section {
  max-width: 800px;
  background: rgba(248,108,52,0.10);
  border-radius: 8px;
  margin: 24px auto;
  padding: 16px 32px;
}

.news-title-gradient {
  font-size: 32px;
  font-weight: 400;
  color: #ffffff;
  line-height: 38px;
  text-align: left;
  margin-top: 24px;
}

.public-text-style {
  opacity: 0.5;
  font-weight: 400;
  color: #ffffff;
}

.news-meta-date {
  font-size: 12px;
  line-height: 14px;
  margin-top: 16px;
}

.news-meta-text {
  font-size: 14px;
  line-height: 16px;
  margin-top: 32px;
}

.news-title-section img {
  width: 100%;
  border-radius: 8px;
}

.news-game-img {
  margin-top: 24px;
}

.news-game-network-text {
  font-size: 14px;
  line-height: 16px;
  margin-top: 24px;
}

.news-game-download-img {
  width: 67% !important;
  height: auto;
  margin: 40px 0 0 50%;
  transform: translateX(-50%);
  cursor: pointer;
}

.news-game-quick-text {
  font-size: 14px;
  line-height: 19px;
  margin-top: 40px;
}

.news-game-home-img {
  margin-top: 24px;
}

.news-game-first,
.news-game-second,
.news-game-third,
.news-game-free-text,
.news-game-end-text {
  font-size: 14px;
  line-height: 16px;
  margin-top: 24px;
}

.news-game-details-img {
  margin-top: 24px;
}

/* 更多资讯区域 */
.more-news-section {
  background: #010101;
  padding: 60px 0;
}

.more-news-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.section-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 30px;
}

.section-title {
  font-size: 23px;
  font-weight: bold;
  color: #ffffff;
}

.more-button {
  color: rgba(255, 255, 255, 0.5);
  font-size: 14px;
  cursor: pointer;
}

.more-button:hover {
  color: #F86C34;
}

.news-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  max-width: 1200px;
  margin: 0 auto;
}

.news-item {
  display: flex;
  align-items: center;
  gap: 16px;
  background: rgba(255,108,52,0.1);
  border-radius: 8px;
  padding: 16px;
  transition: all 0.3s ease;
}

.news-item:hover {
  background: rgba(248,108,52,0.2);
  cursor: pointer;
}

.news-item-img {
  width: 180px;
  height: 90px;
  border-radius: 4px;
  object-fit: cover;
  flex-shrink: 0;
}

.news-item-content {
  flex: 1;
  min-width: 0;
  height: 90px;
  position: relative;
}

.news-item-title {
  font-size: 16px;
  color: #FFFFFF;
  margin-bottom: 8px;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
  line-height: 1.4;
}

.news-item-desc {
  font-size: 14px;
  color: rgba(255,255,255,0.5);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  line-height: 1.4;
  margin-bottom: 4px;
}

.news-item-time {
  font-size: 12px;
  color: rgba(255,255,255,0.3);
  position: absolute;
  bottom: 0;
}

.news-item-button {
  width: 72px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(248,108,52,0.30);
  border: none;
  cursor: pointer;
  border-radius: 16px;
}

.news-item-button span {
  font-size: 14px;
  color: rgba(255,255,255,0.5);
}

.news-item-button img {
  width: 16px;
  height: 16px;
  margin-top: 2px;
}

/* 响应式布局 */
@media screen and (max-width: 1400px) {
  .news-title-gradient {
    font-size: 28px;
    line-height: 34px;
  }

  .news-title-section {
    max-width: 760px;
    padding: 14px 28px;
  }

  .news-meta-text {
    font-size: 14px;
    line-height: 1.4;
  }

  .news-game-img {
    width: 100%;
    max-width: 700px;
  }

  /* 相关文章推荐部分 */
  .more-news-section {
    padding: 50px 0;
  }
  
  .section-title {
    font-size: 36px;
  }

  .news-item {
    height: auto;
    padding: 14px;
  }

  .news-item-img {
    width: 160px;
    height: 80px;
  }

  .news-item-content {
    height: 80px;
  }

  .news-item-title {
    font-size: 15px;
  }

  .news-item-desc {
    font-size: 13px;
  }

  .news-item-button {
    min-width: 68px;
    height: 30px;
    padding: 5px;
  }

  .news-item-button span {
    font-size: 13px;
  }
}

@media screen and (max-width: 1200px) {
  .news-details--container {
    max-width: 1000px;
    padding: 20px 24px;
  }

  .news-title-gradient {
    font-size: 24px;
    line-height: 30px;
  }

  .news-title-section {
    max-width: 700px;
    padding: 12px 24px;
    margin: 20px auto;
  }

  .news-meta-date {
    font-size: 11px;
    margin-top: 12px;
  }

  .news-meta-text {
    font-size: 13px;
    line-height: 1.3;
  }

  .news-game-img {
    width: 100%;
    max-width: 650px;
  }

  .more-news-container {
    max-width: 1000px;
    padding: 0 24px;
  }

  /* 相关文章推荐部分 */
  .more-news-section {
    padding: 45px 0;
  }
  
  .section-title {
    font-size: 32px;
  }

  .news-item {
    padding: 12px;
    gap: 14px;
  }

  .news-item-img {
    width: 140px;
    height: 70px;
  }

  .news-item-content {
    height: 70px;
  }

  .news-item-title {
    font-size: 14px;
    margin-bottom: 6px;
  }

  .news-item-desc {
    font-size: 12px;
    margin-bottom: 2px;
  }

  .news-item-time {
    font-size: 11px;
  }

  .news-item-button {
    min-width: 64px;
    height: 28px;
    padding: 4px;
  }

  .news-item-button span {
    font-size: 12px;
  }

  .news-item-button img {
    width: 14px;
    height: 14px;
  }

  .more-button {
    font-size: 13px;
  }
}

@media screen and (max-width: 768px) {
  .news-details--container {
    padding: 16px;
  }

  .news-details-router {
    font-size: 12px;
    line-height: 14px;
  }

  .news-title-gradient {
    font-size: 20px;
    line-height: 26px;
  }

  .news-title-section {
    max-width: 100%;
    padding: 10px 16px;
    margin: 16px auto;
  }

  .news-meta-date {
    font-size: 10px;
    margin-top: 10px;
  }

  .news-meta-text {
    font-size: 12px;
    line-height: 1.3;
  }

  .news-game-img {
    width: 100%;
  }

  .more-news-container {
    padding: 0 16px;
  }

  .more-news-section {
    padding: 35px 0;
  }

  /* 相关文章推荐部分 */
  .section-title {
    font-size: 28px;
  }

  .news-list {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .news-item {
    padding: 10px;
    gap: 10px;
  }

  .news-item-img {
    width: 120px;
    height: 65px;
  }

  .news-item-content {
    height: 65px;
  }

  .news-item-title {
    font-size: 13px;
    margin-bottom: 4px;
  }

  .news-item-desc {
    font-size: 11px;
    margin-bottom: 2px;
    -webkit-line-clamp: 2;
  }

  .news-item-time {
    font-size: 10px;
  }

  .news-item-button {
    min-width: 60px;
    height: 26px;
    padding: 3px;
  }

  .news-item-button span {
    font-size: 11px;
  }

  .news-item-button img {
    width: 12px;
    height: 12px;
  }

  .more-button {
    font-size: 12px;
    gap: 6px;
  }

  .more-button img {
    width: 14px;
    height: 14px;
  }
}