| /* TorrentDetail.css */ |
| |
| body, html, #root { |
| margin: 0; |
| padding: 0; |
| height: 100%; |
| background-color: #f4f6f9; |
| font-family: 'Segoe UI', 'Roboto', 'Helvetica Neue', sans-serif; |
| } |
| |
| .torrent-detail-page { |
| min-height: 100vh; |
| padding: 32px 48px; |
| background-color: #f4f6f9; |
| box-sizing: border-box; |
| } |
| |
| .torrent1-card { |
| width: 100%; |
| max-width: 1080px; |
| min-width: 1000px; /* 确保不会太窄 */ |
| margin: 0 auto; |
| border-radius: 16px; |
| box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08); |
| border: none; |
| background: #fff; |
| padding: 32px; |
| } |
| |
| .torrent-title { |
| font-size: 28px; |
| font-weight: 600; |
| color: #d46b08; |
| margin-bottom: 20px; |
| } |
| |
| .torrent-cover-image { |
| border-radius: 12px; |
| box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06); |
| border: 1px solid #eee; |
| } |
| |
| .torrent-buttons { |
| margin-top: 32px; |
| display: flex; |
| justify-content: flex-end; |
| gap: 20px; |
| } |
| |
| .torrent-buttons .ant-btn { |
| font-size: 16px; |
| padding: 10px 28px; |
| } |