/* 基础设置 */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}
body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    background-color: #f8f9fa;
    color: #333;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: auto;
    padding: 20px 0;
}

/* 导航栏 */
header {
    background-color: #4a2c8d;
    color: white;
    padding: 1em 0;
}
header h1 {
    display: inline-block;
    margin-right: 30px;
}
nav ul {
            list-style: none;
            display: flex;
            justify-content: flex-end; /* 右对齐 */
            gap: 20px;
        }
nav a {
    color: white;
    text-decoration: none;
    font-weight: bold;
}

/* Hero 区域 */
.hero {
    background: linear-gradient(to right, #6b52ae, #ff6f61);
    color: white;
    padding: 60px 0;
    text-align: center;
}
.hero h2 {
    font-size: 2.5em;
    margin-bottom: 10px;
}
.hero p {
    font-size: 1.2em;
    margin-bottom: 20px;
}
.btn {
    display: inline-block;
    padding: 10px 20px;
    background-color: white;
    color: #6b52ae;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
}
.btn:hover {
    background-color: #eee;
}

/* 特色功能区 */
.section {
    padding: 40px 0;
}
.bg-light {
    background-color: #fff;
}
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}
.feature-item {
    background-color: #fff;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
    text-align: center;
}
.feature-item h3 {
    margin-bottom: 10px;
    color: #4a2c8d;
}

/* 下载区域 */
.download-options {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}
.download-options .btn {
    background-color: #ff6f61;
    color: white;
}
.download-options .btn:hover {
    background-color: #e05c50;
}

/* FAQ */
.faq-list details {
    margin-bottom: 10px;
    cursor: pointer;
    padding: 10px;
    background-color: #f1f1f1;
    border-radius: 5px;
}
.faq-list summary {
    font-weight: bold;
    font-size: 1.1em;
}

/* 联系我们 */
.contact ul {
    list-style: none;
    margin-top: 10px;
}
.contact li {
    margin-bottom: 8px;
}
/* === 快联资讯模块 === */
#news .news-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.news-item {
    background-color: #fff;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.05);
    transition: box-shadow 0.3s ease;
}
.news-item:hover {
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.news-title {
    font-size: 1.2em;
    margin-bottom: 10px;
    color: #4a2c8d;
}

.news-meta {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 10px;
    font-size: 0.95em;
    color: #777;
}

.news-meta .date {
    display: flex;
    align-items: center;
}

.news-meta .date::before {
    content: "📅";
    margin-right: 5px;
}

.news-description {
    font-size: 0.95em;
    line-height: 1.5;
    color: #555;
}
/* 页脚 */
footer {
    background-color: #4a2c8d;
    color: white;
    text-align: center;
    padding: 20px 0;
    margin-top: 40px;
}
/* 基础设置 */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}
body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    background-color: #f8f9fa;
    color: #333;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: auto;
    padding: 20px 0;
}

/* 导航栏 */
header {
    background-color: #4a2c8d;
    color: white;
    padding: 1em 0;
}
header h1 {
    display: inline-block;
    margin-right: 30px;
}
nav ul {
    list-style: none;
    display: flex;
    justify-content: flex-end; /* 右对齐 */
    gap: 20px;
}
nav a {
    color: white;
    text-decoration: none;
    font-weight: bold;
}

/* 各页面通用样式 */
.section {
    padding: 40px 0;
}
.bg-light {
    background-color: #fff;
}

/* 特色功能页面 */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}
.feature-item {
    background-color: #fff;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
    text-align: center;
}
.feature-item h3 {
    margin-bottom: 10px;
    color: #4a2c8d;
}

/* 下载中心页面 */
.download-options {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}
.download-options .btn {
    background-color: #ff6f61;
    color: white;
    padding: 10px 20px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
}
.download-options .btn:hover {
    background-color: #e05c50;
}

/* 常见问题页面 */
.faq-list details {
    margin-bottom: 10px;
    cursor: pointer;
    padding: 10px;
    background-color: #f1f1f1;
    border-radius: 5px;
}
.faq-list summary {
    font-weight: bold;
    font-size: 1.1em;
}

/* 快联资讯页面 */
#news .news-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.news-item {
    background-color: #fff;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.05);
    transition: box-shadow 0.3s ease;
}
.news-item:hover {
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}
.news-title {
    font-size: 1.2em;
    margin-bottom: 10px;
    color: #4a2c8d;
}
.news-meta {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 10px;
    font-size: 0.95em;
    color: #777;
}
.news-meta .date::before {
    content: "📅";
    margin-right: 5px;
}
.news-description {
    font-size: 0.95em;
    line-height: 1.5;
    color: #555;
}

/* 页脚 */
footer {
    background-color: #4a2c8d;
    color: white;
    text-align: center;
    padding: 20px 0;
    margin-top: 40px;
}
/* 分页样式 */
.page-status {
    margin-right: 20px;
    font-size: 0.9em;
    color: #666;
}

.page-index,
.page-pre,
.page-numbar,
.page-next,
.page-last {
    margin: 0 5px;
}

.page-index a,
.page-pre a,
.page-numbar a,
.page-next a,
.page-last a {
    display: inline-block;
    padding: 8px 12px;
    margin: 2px;
    text-decoration: none;
    color: #333;
    background-color: #f4f4f4;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.page-index a:hover,
.page-pre a:hover,
.page-numbar a:hover,
.page-next a:hover,
.page-last a:hover {
    background-color: #ddd;
}

.page-num-current {
    background-color: #4a2c8d !important;
    color: white !important;
    pointer-events: none; /* 禁用点击效果 */
}

.page-pre a[disabled],
.page-next a[disabled] {
    pointer-events: none;
    opacity: 0.6;
}