343 lines
7.8 KiB
Plaintext
343 lines
7.8 KiB
Plaintext
---
|
|
import Layout from '../../../../layouts/Layout_2.astro';
|
|
import { newsDetail } from '../../../../../utils/rpc';
|
|
import { getConfig } from '../../../../../utils/config';
|
|
import { TP2_COLUMN_NEWS, TP2_COLUMN_NEWS_URL } from '../../../../../utils/const';
|
|
const { slug } = Astro.params;
|
|
const config = getConfig(Astro)
|
|
if (!slug) {
|
|
return Astro.redirect('/404');
|
|
}
|
|
|
|
const {code, data} = await newsDetail(slug);
|
|
|
|
if (!data || code !== 0) {
|
|
return Astro.redirect('/404');
|
|
}
|
|
|
|
const breadcrumb = [{
|
|
title: '主页',
|
|
url: '/'
|
|
}, {title: TP2_COLUMN_NEWS, url: TP2_COLUMN_NEWS_URL}, {title: data.title, url: 'javascript:void(0);'}]
|
|
---
|
|
<Layout breadcrumb={breadcrumb} title={`${data.title} - ${config.app_name}`} keywords={data.keywords} description={data.description}>
|
|
<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">
|
|
<article class="news-detail-content">
|
|
<!-- <span class="news-date">发布于: {data.created_at}</span> -->
|
|
<h1 class="title" title="标题">{data.title}</h1>
|
|
<div class="top-icon"></div>
|
|
<div class="news-content" set:html={data.content}>
|
|
</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> -->
|
|
</article>
|
|
|
|
<!-- <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> -->
|
|
</div>
|
|
</main>
|
|
|
|
<style is:inline>
|
|
.news-content p {
|
|
margin: 20px 0;
|
|
color: #6f6f6f;
|
|
font-size: 18px;
|
|
line-height: 32px;
|
|
}
|
|
.news-content img {
|
|
max-width: 100%;
|
|
height: auto;
|
|
}
|
|
</style>
|
|
<style>
|
|
|
|
article {
|
|
width: 50rem;
|
|
}
|
|
|
|
/* .news-main {
|
|
margin-top: 5rem;
|
|
} */
|
|
|
|
|
|
.top-icon {
|
|
padding-bottom: 30px;
|
|
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: 2.5rem;
|
|
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-date, .news-author {
|
|
color: rgba(255, 255, 255, 0.9);
|
|
font-size: 1rem;
|
|
display: flex;
|
|
align-items: center;
|
|
gap: 0.5rem;
|
|
} */
|
|
|
|
.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: 1fr 320px; */
|
|
/* 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;
|
|
padding-top: 2rem;
|
|
border-top: 1px solid var(--divider-color);
|
|
}
|
|
|
|
.news-sidebar {
|
|
position: sticky;
|
|
top: 2rem;
|
|
height: fit-content;
|
|
}
|
|
|
|
.related-news {
|
|
padding: 1rem;
|
|
/* box-shadow: var(--shadow-lg); */
|
|
}
|
|
|
|
.related-news h3 {
|
|
font-size: 1.2rem;
|
|
color: var(--text-primary);
|
|
margin-bottom: 1.5rem;
|
|
padding-bottom: 1rem;
|
|
border-bottom: 1px solid var(--text-primary);
|
|
}
|
|
|
|
.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 {
|
|
display: flex;
|
|
flex-direction: column;
|
|
gap: 0.5rem;
|
|
text-decoration: none;
|
|
/* color: var(--text-secondary); */
|
|
/* color: black; */
|
|
transition: all 0.3s ease;
|
|
padding: 0.4rem;
|
|
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-container {
|
|
grid-template-columns: 1fr;
|
|
margin-top: -1rem;
|
|
}
|
|
|
|
.news-sidebar {
|
|
position: static;
|
|
}
|
|
}
|
|
|
|
@media (max-width: 480px) {
|
|
|
|
.news-detail-content {
|
|
padding: 1.5rem;
|
|
border: none;
|
|
}
|
|
|
|
.news-share {
|
|
flex-wrap: wrap;
|
|
gap: 0.8rem;
|
|
}
|
|
|
|
.share-btn {
|
|
width: 100%;
|
|
text-align: center;
|
|
}
|
|
}
|
|
</style>
|
|
</Layout>
|