/* 下载详情页特定样式 */
.app-info {
  background-color: var(--bg-light);
  border-radius: var(--border-radius);
  padding: 20px;
}

.app-header {
  display: flex;
  align-items: flex-start;
  gap: 20px;
}

.app-icon {
  width: 100px;
  height: 100px;
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--box-shadow);
  flex-shrink: 0;
}

.app-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.app-meta {
  flex-grow: 1;
}

.app-title {
  font-size: 18px;
  margin-bottom: 10px;
  color: var(--text-color);
}

.app-version,
.app-size {
  color: var(--text-light);
  font-size: 12px;
  margin-bottom: 5px;
}

.download-btn-group {
  display: flex;
  gap: 15px;
  margin-top: 15px;
}

.btn-lg {
  padding: 12px 24px;
  font-size: 16px;
}

.app-screenshots {
  background-color: var(--bg-light);
  border-radius: var(--border-radius);
  padding: 20px;
}

.screenshot-swiper {
  width: 100%;
  height: auto;
  border-radius: var(--border-radius);
  overflow: hidden;
}

.screenshot-swiper img, .screenshot-swiper video {
  width: 100%;
  height: auto;
  display: block;
}

.swiper-button-prev,
.swiper-button-next {
  color: var(--primary-color);
  width: 40px;
  height: 40px;
  background-color: rgba(255, 255, 255, 0.8);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.swiper-button-prev::after,
.swiper-button-next::after {
  font-size: 20px;
}

.app-description {
  background-color: var(--bg-light);
  border-radius: var(--border-radius);
  padding: 20px;
}

.description-content {
  line-height: 1.8;
}

.description-content p,
.description-content ul,
.description-content ol {
  margin-bottom: 15px;
}

.description-content ul,
.description-content ol {
  padding-left: 20px;
}

.description-content li {
  margin-bottom: 8px;
}

.related-swiper {
  width: 100%;
  padding: 10px 0;
}

.related-swiper .swiper-slide {
  width: 180px;
}

@media (min-width: 768px) {
  .app-icon {
    width: 120px;
    height: 120px;
  }
  
  .app-title {
    font-size: 28px;
  }
  
  .related-swiper .swiper-slide {
    width: 220px;
  }
}