/* Header 样式 */

/* Header */
.header {
    background-color: #fff;
    border-bottom: 1px solid #e8eef5;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.header-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 70px;
}

.logo h1 {
    font-size: 24px;
    color: #0066cc;
    font-weight: 600;
}

.nav {
    display: flex;
    gap: 30px;
    flex: 1;
    margin-left: 50px;
}

.nav-item {
    color: #666;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: color 0.3s;
}

.nav-item:hover,
.nav-item.active {
    color: #0066cc;
}

.search-box {
    display: flex;
    gap: 8px;
}

.search-input {
    width: 200px;
    padding: 8px 12px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 14px;
}

.search-btn {
    padding: 8px 16px;
    background-color: #0066cc;
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 500;
    transition: background-color 0.3s;
}

.search-btn:hover {
    background-color: #0052a3;
}



.content {
    max-width: 1200px;
    margin: 0 auto;
}

/* Footer 样式 */
footer {
    background: #111827;
    color: #9ca3af;
    padding: 3rem 2rem 1.5rem;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h3 {
    color: #ffffff;
    margin-bottom: 1rem;
    font-size: 1rem;
}

.footer-section ul {
    list-style: none;
}

.footer-section a {
    color: #9ca3af;
    text-decoration: none;
    display: block;
    margin-bottom: 0.5rem;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: #ffffff;
}

.footer-bottom {
    border-top: 1px solid #374151;
    padding-top: 1.5rem;
    text-align: center;
    font-size: 0.875rem;
}

.layui-card { border-radius: 8px; box-shadow: 0 2px 12px 0 rgba(0,0,0,0.05); border: none; overflow: hidden; }
.layui-card-header { font-size: 24px; font-weight: bold; border-bottom: 3px solid #1E9FFF; padding-bottom: 10px; margin-bottom: 15px; color: #1E9FFF; }
.layui-card-body { padding: 20px; }
.news-list-item { padding: 15px 0; border-bottom: 1px dashed #e6e6e6; display: flex; align-items: flex-start; }
.news-list-item:last-child { border-bottom: none; }
.news-list-item img { width: 180px; height: 120px; object-fit: cover; overflow: hidden; margin-right: 20px; border-radius: 4px; }
.news-list-item-content { flex: 1; }
.news-list-item-content h3 { font-size: 18px; margin-bottom: 8px; }
.news-list-item-content h3 a { color: #333; text-decoration: none; transition: color .3s; }
.news-list-item-content h3 a:hover { color: #1E9FFF; }
.news-list-item-content p { font-size: 14px; color: #666; overflow: hidden; text-overflow: ellipsis; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; margin-bottom: 10px; }
.news-list-item-meta { font-size: 12px; color: #999; }

.article-title { font-size: 28px; font-weight: bold; text-align: center; margin-bottom: 15px; color: #333; line-height: 1.3; }
.article-meta { text-align: center; color: #999; font-size: 14px; margin-bottom: 30px; }
.article-content{padding: 20px;}
.article-content img { max-width: 100%; height: auto; display: block; margin: 15px auto; border-radius: 4px; }

/* Sections */
.section-box{
    padding: 8px;
    border: 1px solid #f3f3f3;
    background: #ffffff;
    border-radius: 6px 6px 0 0 ;
}
.section-header {
    border-bottom: 1px solid #00a8ff;
    margin-bottom: 5px;
    padding-bottom: 5px;
}

.section-header h3 {
    font-size: 24px;
    color: #333;
    font-weight: 600;
}
.section-content{}
.section-content ul{}
.section-content ul li{
    height: 30px;
    line-height: 30px;
    overflow: hidden;
}
.section-content ul li a:hover{
    color: #00a8ff;
}

