feat(website): 优化新闻轮播功能并更新导航链接

This commit is contained in:
ylweng
2025-08-21 03:22:59 +08:00
parent 5ff7d38904
commit 451bab4a96
6 changed files with 960 additions and 19 deletions

View File

@@ -68,6 +68,21 @@ body {
opacity: 0.1;
}
/* 轮播指示器样式 */
.carousel-indicators button {
width: 12px;
height: 12px;
border-radius: 50%;
background-color: #ccc;
border: none;
margin: 0 5px;
transition: background-color 0.3s ease;
}
.carousel-indicators button.active {
background-color: var(--grass-green);
}
/* 响应式调整 */
@media (max-width: 768px) {
.hero-section {