增加免责声明
This commit is contained in:
parent
40d1625a22
commit
60b092e4dc
@ -24,6 +24,15 @@
|
|||||||
<div class="article-content" id="articleContent">
|
<div class="article-content" id="articleContent">
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
|
<div class="disclaimers">
|
||||||
|
<div class="disclaimer-item">
|
||||||
|
<div class="disclaimer-title">免责声明:</div>
|
||||||
|
<div class="disclaimer-content">
|
||||||
|
<?php echo $config['disclaimers'] ?>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
<div class="article-tags">
|
<div class="article-tags">
|
||||||
<span class="tag-label">标签:</span>
|
<span class="tag-label">标签:</span>
|
||||||
<div id="articleTags"></div>
|
<div id="articleTags"></div>
|
||||||
@ -115,6 +124,7 @@
|
|||||||
color: #333;
|
color: #333;
|
||||||
font-size: 16px;
|
font-size: 16px;
|
||||||
margin-bottom: 30px;
|
margin-bottom: 30px;
|
||||||
|
border-bottom: 1px solid #eee;
|
||||||
}
|
}
|
||||||
|
|
||||||
.article-content img {
|
.article-content img {
|
||||||
@ -415,6 +425,28 @@
|
|||||||
.location-item a {
|
.location-item a {
|
||||||
color: #000 !important;
|
color: #000 !important;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.disclaimers {
|
||||||
|
color: #b1b1b1;
|
||||||
|
width: 80%;
|
||||||
|
margin: 20px auto;
|
||||||
|
margin-bottom: 60px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.disclaimer-title {
|
||||||
|
font-size: 16px;
|
||||||
|
font-weight: 600;
|
||||||
|
margin-bottom: 10px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.disclaimer-content {
|
||||||
|
font-size: 14px;
|
||||||
|
line-height: 1.6;
|
||||||
|
}
|
||||||
|
|
||||||
|
.disclaimer-content p {
|
||||||
|
margin-bottom: 0;
|
||||||
|
}
|
||||||
</style>
|
</style>
|
||||||
|
|
||||||
<script>
|
<script>
|
||||||
@ -574,12 +606,12 @@
|
|||||||
// 添加点赞状态
|
// 添加点赞状态
|
||||||
likeBtn.classList.add('liked');
|
likeBtn.classList.add('liked');
|
||||||
likeBtn.querySelector('i').style.color = '#f57005';
|
likeBtn.querySelector('i').style.color = '#f57005';
|
||||||
layer.msg('点赞成功', {icon: 1});
|
layer.msg('点赞成功', { icon: 1 });
|
||||||
} else {
|
} else {
|
||||||
// 如果请求失败,恢复按钮状态
|
// 如果请求失败,恢复按钮状态
|
||||||
likeBtn.style.pointerEvents = 'auto';
|
likeBtn.style.pointerEvents = 'auto';
|
||||||
likeBtn.style.cursor = 'pointer';
|
likeBtn.style.cursor = 'pointer';
|
||||||
layer.msg('点赞失败:' + data.msg, {icon: 2});
|
layer.msg('点赞失败:' + data.msg, { icon: 2 });
|
||||||
}
|
}
|
||||||
})
|
})
|
||||||
.catch(error => {
|
.catch(error => {
|
||||||
@ -587,7 +619,7 @@
|
|||||||
likeBtn.style.pointerEvents = 'auto';
|
likeBtn.style.pointerEvents = 'auto';
|
||||||
likeBtn.style.cursor = 'pointer';
|
likeBtn.style.cursor = 'pointer';
|
||||||
console.error('点赞请求失败:', error);
|
console.error('点赞请求失败:', error);
|
||||||
layer.msg('点赞失败,请稍后重试', {icon: 2});
|
layer.msg('点赞失败,请稍后重试', { icon: 2 });
|
||||||
});
|
});
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
|||||||
@ -43,6 +43,15 @@
|
|||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
|
<div class="disclaimers">
|
||||||
|
<div class="disclaimer-item">
|
||||||
|
<div class="disclaimer-title">免责声明:</div>
|
||||||
|
<div class="disclaimer-content">
|
||||||
|
<?php echo $config['disclaimers'] ?>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
<div class="game-navigation">
|
<div class="game-navigation">
|
||||||
<div class="prev-game" id="prevGame">
|
<div class="prev-game" id="prevGame">
|
||||||
</div>
|
</div>
|
||||||
@ -491,6 +500,28 @@
|
|||||||
.location-item a {
|
.location-item a {
|
||||||
color: #000 !important;
|
color: #000 !important;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.disclaimers {
|
||||||
|
color: #b1b1b1;
|
||||||
|
width: 80%;
|
||||||
|
margin: 20px auto;
|
||||||
|
margin-bottom: 60px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.disclaimer-title {
|
||||||
|
font-size: 16px;
|
||||||
|
font-weight: 600;
|
||||||
|
margin-bottom: 10px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.disclaimer-content {
|
||||||
|
font-size: 14px;
|
||||||
|
line-height: 1.6;
|
||||||
|
}
|
||||||
|
|
||||||
|
.disclaimer-content p {
|
||||||
|
margin-bottom: 0;
|
||||||
|
}
|
||||||
</style>
|
</style>
|
||||||
|
|
||||||
{include file="component/foot" /}
|
{include file="component/foot" /}
|
||||||
@ -59,6 +59,15 @@
|
|||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
|
<div class="disclaimers">
|
||||||
|
<div class="disclaimer-item">
|
||||||
|
<div class="disclaimer-title">免责声明:</div>
|
||||||
|
<div class="disclaimer-content">
|
||||||
|
<?php echo $config['disclaimers'] ?>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
<div class="program-navigation">
|
<div class="program-navigation">
|
||||||
<div class="prev-program" id="prevProgram">
|
<div class="prev-program" id="prevProgram">
|
||||||
</div>
|
</div>
|
||||||
@ -350,6 +359,28 @@
|
|||||||
.location-item a {
|
.location-item a {
|
||||||
color: #000 !important;
|
color: #000 !important;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.disclaimers {
|
||||||
|
color: #b1b1b1;
|
||||||
|
width: 80%;
|
||||||
|
margin: 20px auto;
|
||||||
|
margin-bottom: 60px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.disclaimer-title {
|
||||||
|
font-size: 16px;
|
||||||
|
font-weight: 600;
|
||||||
|
margin-bottom: 10px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.disclaimer-content {
|
||||||
|
font-size: 14px;
|
||||||
|
line-height: 1.6;
|
||||||
|
}
|
||||||
|
|
||||||
|
.disclaimer-content p {
|
||||||
|
margin-bottom: 0;
|
||||||
|
}
|
||||||
</style>
|
</style>
|
||||||
|
|
||||||
<script>
|
<script>
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user