326 lines
7.5 KiB
Plaintext
326 lines
7.5 KiB
Plaintext
---
|
|
import Layout from "../../layouts/Layout.astro";
|
|
import { getConfig } from '../../../utils/config'
|
|
import { newsDetail } from "../../../utils/rpc";
|
|
const { slug } = Astro.params;
|
|
const config = getConfig(Astro)
|
|
const requestUrl = Astro.request.url;
|
|
if (!slug) {
|
|
return Astro.redirect('/404');
|
|
}
|
|
|
|
const {code, data} = await newsDetail(slug, config);
|
|
|
|
if (!data || code !== 0) {
|
|
return Astro.redirect('/404');
|
|
}
|
|
---
|
|
<Layout>
|
|
<div class="v4 header-placeholder nav-v2" id="header-placeholder"></div>
|
|
<div class="html-text-component parbase">
|
|
<div class="v4 n06-news-second-navigation" id="news-second-navigation-v4" data-component="n06-news-second-navigation">
|
|
<div class="product-tabs-wrap container">
|
|
<div class="product-tabs__heading">
|
|
<div class="product-tabs__title body-medium">
|
|
<!-- <a title={TP2_COLUMN_NEWS} href={TP2_COLUMN_NEWS_URL} class="product-link product-link__active">{TP2_COLUMN_NEWS}</a> -->
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
<main class="news-main">
|
|
<div class="news-container">
|
|
<header>
|
|
<h1 class="title" title="标题">{data.title}</h1>
|
|
</header>
|
|
<article class="news-detail-content">
|
|
<div class="top-icon"></div>
|
|
<Fragment set:html={data.content} />
|
|
</article>
|
|
<div>
|
|
原文地址:<a href={`/news/${data.id}`}>{requestUrl}</a>
|
|
</div>
|
|
|
|
<div class="top-icon"></div>
|
|
<div class="news-navigation">
|
|
{
|
|
data.prevNews && (
|
|
<div>
|
|
<span>上一篇: </span>
|
|
<a class="news-prev news-link" title={data.prevNews.title} href={`/news/${data.prevNews.id}`}>{data.prevNews.title}</a>
|
|
</div>
|
|
)
|
|
}
|
|
{
|
|
data.nextNews && (
|
|
<div>
|
|
<span>下一篇: </span>
|
|
<a class="news-next news-link" title={data.nextNews.title} href={`/news/${data.nextNews.id}`}>{data.nextNews.title}</a>
|
|
</div>
|
|
)
|
|
}
|
|
</div>
|
|
</div>
|
|
<aside class="news-sidebar">
|
|
<div class="related-news">
|
|
<h3>相关推荐</h3>
|
|
<ul>
|
|
{data.about.map(item => (
|
|
<li>
|
|
<a class="news-link" title={item.title} href={`/news/${item.id}`}>
|
|
<span class="related-title">{item.title}</span>
|
|
{/* <span class="related-date">{item.date}</span> */}
|
|
</a>
|
|
</li>
|
|
))}
|
|
</ul>
|
|
</div>
|
|
</aside>
|
|
</main>
|
|
</Layout>
|
|
<style is:inline>
|
|
article p {
|
|
margin: 1em 0; /* 每段之间留有适当的间距 */
|
|
color: #333; /* 深灰色,比黑色更柔和,减少眼睛疲劳 */
|
|
font-size: 18px; /* 合适的字体大小,适合大部分屏幕 */
|
|
line-height: 1.6; /* 行间距为字体的1.6倍,有助于行间的呼吸感 */
|
|
letter-spacing: 0.5px; /* 字间距适当加宽,增加可读性 */
|
|
font-family: 'Microsoft Yahei",Helvetica,Arial,sans-serif'; /* 常见的、现代的无衬线字体,增加可读性 */
|
|
}
|
|
.news-content img {
|
|
max-width: 100%;
|
|
height: auto;
|
|
}
|
|
|
|
article h3 {
|
|
text-indent: unset !important;
|
|
}
|
|
</style>
|
|
<style>
|
|
.news-main {
|
|
display: grid;
|
|
flex-direction: row;
|
|
grid-template-columns: 4fr 1.5fr;
|
|
}
|
|
|
|
@media (max-width: 1024px) {
|
|
.news-main {
|
|
display: flex;
|
|
flex-direction: column;
|
|
}
|
|
}
|
|
|
|
.news-container {
|
|
display: flex;
|
|
flex-direction: column;
|
|
}
|
|
|
|
|
|
.top-icon {
|
|
margin-bottom: 1rem;
|
|
margin-top: 1rem;
|
|
border-bottom: 1px solid #e0e0e0
|
|
}
|
|
|
|
.news-date {
|
|
font-weight: 700;
|
|
font-size: 14px;
|
|
color: #d0021b;
|
|
line-height: 17px;
|
|
margin-bottom: 30px;
|
|
display: inline-block
|
|
}
|
|
|
|
.news-meta {
|
|
border-bottom: 1px solid var(--text-primary);
|
|
color: black;
|
|
padding-bottom: 1rem;
|
|
margin-bottom: 1rem;
|
|
}
|
|
|
|
.title {
|
|
font-size: 2rem;
|
|
text-align: left;
|
|
font-weight: 700;
|
|
color: var(--text-primary);
|
|
margin-bottom: 1.5rem;
|
|
line-height: 1.4;
|
|
}
|
|
|
|
.news-meta {
|
|
display: flex;
|
|
justify-content: center;
|
|
gap: 2rem;
|
|
margin-bottom: 1.5rem;
|
|
}
|
|
|
|
.news-meta span{
|
|
color: var(--text-primary);
|
|
}
|
|
|
|
.news-author a {
|
|
color: black;
|
|
text-decoration: none;
|
|
}
|
|
/*
|
|
.news-date::before {
|
|
content: '📅';
|
|
}
|
|
|
|
.news-author::before {
|
|
content: '👤';
|
|
} */
|
|
|
|
.news-tags {
|
|
display: flex;
|
|
justify-content: center;
|
|
gap: 1rem;
|
|
flex-wrap: wrap;
|
|
}
|
|
|
|
.news-tag {
|
|
background: rgba(255, 255, 255, 0.15);
|
|
color: white;
|
|
padding: 0.3rem 1rem;
|
|
border-radius: var(--radius-md);
|
|
font-size: 0.9rem;
|
|
backdrop-filter: blur(4px);
|
|
border: 1px solid rgba(255, 255, 255, 0.1);
|
|
transition: all 0.3s ease;
|
|
}
|
|
|
|
.news-tag:hover {
|
|
background: rgba(255, 255, 255, 0.25);
|
|
transform: translateY(-1px);
|
|
}
|
|
|
|
.news-container {
|
|
max-width: 1200px;
|
|
/* margin: -2rem auto 0; */
|
|
padding: 0 1.5rem 3rem;
|
|
display: grid;
|
|
grid-template-columns: 3fr 1fr;
|
|
/* gap: 2.5rem; */
|
|
position: relative;
|
|
|
|
display: flex;
|
|
justify-content: center;
|
|
}
|
|
|
|
.news-detail-content {
|
|
border-right: 1px solid var(--text-primary);
|
|
/* padding: 3rem; */
|
|
position: relative;
|
|
overflow: hidden;
|
|
}
|
|
|
|
.news-content {
|
|
padding-top: 3rem;
|
|
font-size: 1.1rem;
|
|
line-height: 1.3;
|
|
}
|
|
|
|
.news-images {
|
|
display: grid;
|
|
grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
|
|
gap: 1.5rem;
|
|
margin-bottom: 2rem;
|
|
}
|
|
|
|
.news-images img {
|
|
width: 100%;
|
|
height: auto;
|
|
border-radius: var(--radius-lg);
|
|
box-shadow: var(--shadow-md);
|
|
transition: transform 0.3s ease;
|
|
}
|
|
|
|
.news-images img:hover {
|
|
transform: scale(1.02);
|
|
}
|
|
|
|
.news-content p {
|
|
margin-bottom: 1.8rem;
|
|
}
|
|
|
|
.news-content p:last-child {
|
|
margin-bottom: 0;
|
|
}
|
|
|
|
.news-navigation {
|
|
margin-top: 1rem;
|
|
border-top: 1px solid var(--divider-color);
|
|
}
|
|
|
|
.news-sidebar {
|
|
padding: 0 1.5rem 3rem;
|
|
/* position: sticky; */
|
|
top: 2rem;
|
|
height: fit-content;
|
|
}
|
|
|
|
.related-news ul {
|
|
list-style: none;
|
|
padding: 0;
|
|
margin: 0;
|
|
}
|
|
|
|
.related-news li {
|
|
/* margin-bottom: 1.2rem;
|
|
padding-bottom: 1.2rem; */
|
|
border-bottom: 1px solid var(--divider-color);
|
|
}
|
|
|
|
.related-news li:last-child {
|
|
margin-bottom: 0;
|
|
padding-bottom: 0;
|
|
border-bottom: none;
|
|
}
|
|
|
|
.related-news a {
|
|
color: #000000;
|
|
display: flex;
|
|
flex-direction: column;
|
|
text-decoration: none;
|
|
transition: all 0.3s ease;
|
|
padding: 0.2rem;
|
|
border-radius: var(--radius-md);
|
|
}
|
|
|
|
.related-news a:hover {
|
|
transform: translateX(5px);
|
|
}
|
|
|
|
.related-title {
|
|
font-size: 1rem;
|
|
line-height: 1.5;
|
|
}
|
|
|
|
.related-date {
|
|
font-size: 0.9rem;
|
|
color: var(--text-tertiary);
|
|
}
|
|
|
|
@media (max-width: 1024px) {
|
|
.news-sidebar {
|
|
position: static;
|
|
}
|
|
}
|
|
|
|
@media (max-width: 480px) {
|
|
|
|
.news-detail-content {
|
|
border: none;
|
|
}
|
|
|
|
.news-share {
|
|
flex-wrap: wrap;
|
|
gap: 0.8rem;
|
|
}
|
|
|
|
.share-btn {
|
|
width: 100%;
|
|
text-align: center;
|
|
}
|
|
}
|
|
</style> |