/* =========================
   额外页面通用样式
   ========================= */

/* 页面横幅 */
.page-banner {
    background: linear-gradient(rgba(0, 102, 204, 0.8), rgba(0, 102, 204, 0.8)), url('/front/images/banner.jpg') center/cover;
    padding: 100px 0 80px;
    text-align: center;
    color: white;
    position: relative;
}

.banner-content h1 {
    font-size: 48px;
    margin-bottom: 20px;
    font-weight: 600;
}

.breadcrumb {
    font-size: 16px;
}

.breadcrumb a {
    color: white;
    text-decoration: none;
    transition: opacity 0.3s;
}

.breadcrumb a:hover {
    opacity: 0.8;
}

.breadcrumb span {
    margin: 0 10px;
    opacity: 0.8;
}

/* =========================
   专业页面样式
   ========================= */

/* 专业分类导航 */
.major-categories {
    background: #f8f9fa;
    padding: 30px 0;
    position: sticky;
    top: 0;
    z-index: 10;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.category-tabs {
    display: flex;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
}

.category-btn {
    padding: 10px 30px;
    background: white;
    border: 2px solid #e9ecef;
    border-radius: 30px;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s;
    font-weight: 500;
}

.category-btn:hover {
    border-color: #0066cc;
    color: #0066cc;
}

.category-btn.active {
    background: #0066cc;
    color: white;
    border-color: #0066cc;
}

/* 专业列表 */
.majors-list {
    padding: 60px 0;
}

.majors-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 30px;
}

.major-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    transition: transform 0.3s, box-shadow 0.3s;
}

.major-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.major-header {
    background: linear-gradient(135deg, #0066cc 0%, #004a99 100%);
    padding: 30px;
    text-align: center;
    position: relative;
}

.major-icon {
    width: 80px;
    height: 80px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    font-size: 36px;
    color: #0066cc;
}

.major-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: rgba(255,255,255,0.2);
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 14px;
}

.major-body {
    padding: 30px;
}

.major-body h3 {
    font-size: 24px;
    color: #333;
    margin-bottom: 15px;
}

.major-body p {
    color: #666;
    line-height: 1.8;
    margin-bottom: 20px;
}

.major-features {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 20px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #666;
    font-size: 14px;
}

.feature-item i {
    color: #0066cc;
}

.major-highlights {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 20px;
}

.highlight-tag {
    background: #e8f0fe;
    color: #0066cc;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 14px;
}

.major-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #0066cc;
    text-decoration: none;
    font-weight: 500;
    transition: gap 0.3s;
}

.major-link:hover {
    gap: 15px;
}

/* 专业优势 */
.major-advantages {
    background: #f8f9fa;
    padding: 80px 0;
}

.advantages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-top: 50px;
}

.advantage-item {
    text-align: center;
}

.advantage-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #0066cc 0%, #004a99 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 36px;
    color: white;
}

.advantage-item h3 {
    font-size: 24px;
    color: #333;
    margin-bottom: 15px;
}

.advantage-item p {
    color: #666;
    line-height: 1.8;
}

/* =========================
   新闻页面样式
   ========================= */

/* 新闻列表页面样式 */
.news-section {
    background: #f8f9fa;
    padding: 60px 0;
    min-height: 80vh;
}

.news-container {
    display: flex;
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 30px;
}

.news-list .news-item {
    background: white;
    margin-bottom: 30px;
}

.news-list .news-item:last-child {
    margin-bottom: 0;
}

/* 新闻列表动画效果 */
.news-item {
    opacity: 1;
    transform: translateY(0);
    transition: opacity 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
}

.news-item.hidden {
    opacity: 0;
    transform: translateY(20px);
}

/* 确保所有新闻图片都能正确显示 */
.news-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* 修复可能的布局问题 */
.news-container {
    max-width: 1200px;
    margin: 0 auto;
}

/* 优化侧边栏在不同设备上的显示 */
.sidebar-card {
    transition: all 0.3s ease;
}

.sidebar-card:hover {
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
}

/* 新闻分类 */
.news-categories {
    background: #f8f9fa;
    padding: 30px 0;
}

.news-container {
    display: grid;
    grid-template-columns: 250px 1fr;
    gap: 40px;
    padding: 60px 0;
}

.news-sidebar {
    position: sticky;
    top: 20px;
    height: fit-content;
    width: 300px;
    flex-shrink: 0;
}

.sidebar-card {
    background: white;
    border-radius: 10px;
    padding: 25px;
    margin-bottom: 20px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.sidebar-card h3 {
    font-size: 20px;
    color: #333;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid #0066cc;
}

.category-list {
    list-style: none;
}

.category-list li {
    margin-bottom: 10px;
}

.category-list a {
    color: #666;
    text-decoration: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 12px;
    border-radius: 4px;
    transition: all 0.3s;
}

.category-list a:hover,
.category-list a.active {
    background: #0066cc;
    color: white;
}

.category-count {
    background: #e9ecef;
    color: #666;
    padding: 2px 10px;
    border-radius: 15px;
    font-size: 14px;
}

.category-list a.active .category-count {
    background: rgba(255,255,255,0.2);
    color: white;
}

/* 新闻列表 */
.news-main {
    min-height: 600px;
}

.news-list {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.news-item {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    display: grid;
    grid-template-columns: 300px 1fr;
    transition: transform 0.3s, box-shadow 0.3s;
    padding: 25px;
    gap: 15px;
}

.news-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(0,0,0,0.15);
}

.news-image {
    width: 200px;
    flex-shrink: 0;
    position: relative;
}

.news-image img {
    width: 100%;
    height: 160px;
    object-fit: cover;
    border-radius: 6px;
}

.image-placeholder {
    width: 100%;
    height: 160px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f5f7fa;
    border: 1px dashed #ddd;
    color: #a3a3a3;
    border-radius: 6px;
}

.image-placeholder i {
    font-size: 42px;
}

.news-category-tag {
    position: absolute;
    top: 8px;
    left: 8px;
    background: #007bff;
    color: white;
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 500;
}

.news-content {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.news-content h3 {
    margin: 0 0 10px 0;
    font-size: 18px;
    line-height: 1.4;
}

.news-content h3 a {
    color: #333;
    text-decoration: none;
    transition: color 0.3s;
}

.news-content h3 a:hover {
    color: #007bff;
}

.news-meta {
    display: flex;
    gap: 15px;
    margin-bottom: 10px;
    font-size: 13px;
    color: #666;
}

.news-meta span {
    display: flex;
    align-items: center;
    gap: 4px;
}

.news-excerpt {
    color: #666;
    line-height: 1.6;
    margin: 10px 0;
    flex: 1;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.read-more {
    color: #0066cc;
    text-decoration: none;
    font-size: 14px;
    transition: all 0.3s;
    align-self: flex-start;
}

.read-more:hover {
    color: #004a99;
}

.read-more i {
    margin-left: 5px;
    font-size: 12px;
}

/* 热门新闻列表 */
.hot-news-list {
    margin-top: 15px;
}

.hot-news-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding: 15px 0;
    border-bottom: 1px solid #f0f0f0;
    transition: background-color 0.3s;
}

.hot-news-item:last-child {
    border-bottom: none;
}

.hot-news-item:hover {
    background-color: #f8f9fa;
    margin: 0 -15px;
    padding: 15px;
    border-radius: 8px;
}

.hot-number {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    background: linear-gradient(135deg, #0066cc 0%, #004a99 100%);
    color: white;
    font-size: 12px;
    font-weight: bold;
    border-radius: 50%;
    flex-shrink: 0;
}

.hot-news-item:nth-child(1) .hot-number {
    background: linear-gradient(135deg, #ff4444 0%, #cc1111 100%);
}

.hot-news-item:nth-child(2) .hot-number {
    background: linear-gradient(135deg, #ff8800 0%, #dd6600 100%);
}

.hot-news-item:nth-child(3) .hot-number {
    background: linear-gradient(135deg, #ffaa00 0%, #dd8800 100%);
}

.hot-news-item a {
    color: #333;
    text-decoration: none;
    font-size: 14px;
    line-height: 1.5;
    transition: color 0.3s;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.hot-news-item a:hover {
    color: #0066cc;
}

/* 新闻搜索表单 */
.news-search-form {
    display: flex;
    margin-top: 15px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.search-input {
    flex: 1;
    padding: 12px 15px;
    border: none;
    outline: none;
    font-size: 14px;
    background: white;
}

.search-input::placeholder {
    color: #999;
}

.search-btn {
    padding: 12px 18px;
    background: linear-gradient(135deg, #0066cc 0%, #004a99 100%);
    color: white;
    border: none;
    cursor: pointer;
    transition: background 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
}

.search-btn:hover {
    background: linear-gradient(135deg, #0052a3 0%, #003d7a 100%);
}

.search-btn i {
    font-size: 16px;
}

/* 分页 */
.pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    margin-top: 40px;
    padding: 20px 0;
}

.page-btn,
.page-number {
    padding: 8px 12px;
    color: #666;
    text-decoration: none;
    border: 1px solid #ddd;
    border-radius: 4px;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    gap: 4px;
}

.page-btn:hover,
.page-number:hover {
    background: #007bff;
    color: white;
    border-color: #007bff;
}

.page-number.active {
    background: #007bff;
    color: white;
    border-color: #007bff;
}

.page-ellipsis {
    padding: 8px 4px;
    color: #999;
}

/* 无数据样式 */
.no-data {
    text-align: center;
    padding: 80px 20px;
    color: #999;
}

.no-data i {
    display: block;
    margin-bottom: 20px;
}

/* =========================
   搜索页面样式
   ========================= */

.search-results-section {
    padding: 60px 0;
    background: #f8f9fa;
    min-height: 60vh;
}

/* 搜索框 */
.search-box {
    max-width: 800px;
    margin: 0 auto 40px;
    background: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
}

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

.search-box input[type="text"] {
    flex: 1;
    padding: 12px 20px;
    border: 2px solid #e9ecef;
    border-radius: 8px;
    font-size: 16px;
    transition: border-color 0.3s;
}

.search-box input[type="text"]:focus {
    outline: none;
    border-color: #0066cc;
}

.search-box button {
    padding: 12px 30px;
    background: linear-gradient(135deg, #0066cc 0%, #004a99 100%);
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s;
    white-space: nowrap;
}

.search-box button:hover {
    background: linear-gradient(135deg, #004a99 0%, #003366 100%);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,102,204,0.3);
}

.search-box button i {
    margin-right: 5px;
}

/* 搜索信息 */
.search-info {
    max-width: 800px;
    margin: 0 auto 30px;
    padding: 15px 20px;
    background: #e7f3ff;
    border-left: 4px solid #0066cc;
    border-radius: 5px;
}

.search-info p {
    margin: 0;
    color: #333;
    font-size: 15px;
}

.search-info strong {
    color: #0066cc;
    font-weight: 600;
}

/* 搜索结果列表 */
.search-results {
    max-width: 800px;
    margin: 0 auto;
}

.search-result-item {
    background: white;
    padding: 30px;
    margin-bottom: 20px;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    transition: all 0.3s;
}

.search-result-item:hover {
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    transform: translateY(-3px);
}

.search-result-item h3 {
    margin: 0 0 15px 0;
    font-size: 22px;
    line-height: 1.4;
}

.search-result-item h3 a {
    color: #0066cc;
    text-decoration: none;
    transition: color 0.3s;
}

.search-result-item h3 a:hover {
    color: #004a99;
    text-decoration: underline;
}

.search-result-item p {
    color: #666;
    line-height: 1.8;
    margin-bottom: 15px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.result-meta {
    display: flex;
    gap: 20px;
    align-items: center;
    font-size: 14px;
    color: #999;
}

.result-meta i {
    color: #0066cc;
    margin-right: 5px;
}

.result-category {
    background: #e7f3ff;
    color: #0066cc;
    padding: 4px 12px;
    border-radius: 15px;
    font-size: 13px;
    font-weight: 500;
}

/* 无结果提示 */
.no-results {
    max-width: 600px;
    margin: 60px auto;
    text-align: center;
    padding: 60px 30px;
    background: white;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.no-results i {
    font-size: 64px;
    color: #ccc;
    margin-bottom: 20px;
    display: block;
}

.no-results p {
    font-size: 18px;
    color: #666;
    margin-bottom: 15px;
}

.no-results .no-results-tip {
    font-size: 16px;
    color: #999;
    margin: 30px 0 15px;
    font-weight: 600;
}

.no-results ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.no-results li {
    color: #666;
    padding: 8px 0;
    font-size: 15px;
}

.no-results li:before {
    content: '•';
    color: #0066cc;
    margin-right: 10px;
    font-weight: bold;
}

/* 搜索页分页 */
.search-results-section .pagination {
    max-width: 800px;
    margin: 40px auto 0;
}

/* =========================
   招生页面样式
   ========================= */

/* 招生概览 */
.enrollment-overview {
    padding: 60px 0;
    background: #f8f9fa;
}

.overview-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.overview-card {
    background: white;
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    transition: transform 0.3s;
}

.overview-card:hover {
    transform: translateY(-5px);
}

.overview-icon {
    width: 60px;
    height: 60px;
    background: #e8f0fe;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 28px;
    color: #0066cc;
}

.overview-card h3 {
    font-size: 36px;
    color: #0066cc;
    margin-bottom: 10px;
}

.overview-card p {
    color: #666;
}

/* 招生政策 */
.enrollment-policy {
    padding: 60px 0;
}

.policy-content {
    background: white;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    margin-top: 40px;
}

.policy-item {
    margin-bottom: 30px;
    padding-bottom: 30px;
    border-bottom: 1px solid #e9ecef;
}

.policy-item:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.policy-item h3 {
    font-size: 22px;
    color: #333;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.policy-item h3 i {
    color: #0066cc;
}

.policy-item ul {
    list-style: none;
    padding-left: 30px;
}

.policy-item ul li {
    position: relative;
    padding-left: 20px;
    margin-bottom: 10px;
    color: #666;
    line-height: 1.8;
}

.policy-item ul li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #4caf50;
    font-weight: bold;
}

/* 报名流程 */
.enrollment-process {
    padding: 60px 0;
    background: #f8f9fa;
}

.process-timeline {
    position: relative;
    margin-top: 50px;
}

.process-timeline:before {
    content: "";
    position: absolute;
    top: 25px;
    left: 0;
    right: 0;
    height: 2px;
    background: #e9ecef;
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    position: relative;
}

.process-step {
    text-align: center;
    position: relative;
}

.step-icon {
    width: 50px;
    height: 50px;
    background: white;
    border: 3px solid #0066cc;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 20px;
    color: #0066cc;
    position: relative;
    z-index: 1;
}

.process-step.active .step-icon {
    background: #0066cc;
    color: white;
}

.process-step h4 {
    font-size: 18px;
    color: #333;
    margin-bottom: 10px;
}

.process-step p {
    color: #666;
    font-size: 14px;
}

/* 常见问题 */
.enrollment-faq {
    padding: 60px 0;
}

.faq-list {
    margin-top: 40px;
}

.faq-item {
    background: white;
    border-radius: 10px;
    margin-bottom: 20px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    overflow: hidden;
}

.faq-question {
    padding: 25px 30px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background 0.3s;
}

.faq-question:hover {
    background: #f8f9fa;
}

.faq-question h4 {
    font-size: 18px;
    color: #333;
    margin: 0;
}

.faq-icon {
    font-size: 20px;
    color: #0066cc;
    transition: transform 0.3s;
}

.faq-item.active .faq-icon {
    transform: rotate(180deg);
}

.faq-answer {
    padding: 0 30px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s, padding 0.3s;
}

.faq-item.active .faq-answer {
    padding: 0 30px 25px;
    max-height: 500px;
}

.faq-answer p {
    color: #666;
    line-height: 1.8;
}

/* =========================
   响应式设计
   ========================= */

@media (max-width: 1024px) {
    .news-container {
        grid-template-columns: 1fr;
        gap: 30px;
        padding: 40px 0;
    }
    
    .news-sidebar {
        position: static;
        order: -1;
    }
    
    .sidebar-card {
        display: none;
        margin-bottom: 15px;
    }
    
    .sidebar-card:first-child {
        display: block;
    }
    
    .sidebar-card h3 {
        cursor: pointer;
        user-select: none;
        position: relative;
        padding-right: 30px;
    }
    
    .sidebar-card h3:after {
        content: '\f107';
        font-family: 'Font Awesome 6 Free';
        font-weight: 900;
        position: absolute;
        right: 0;
        top: 0;
        transition: transform 0.3s;
    }
    
    .sidebar-card.expanded h3:after {
        transform: rotate(180deg);
    }
    
    .category-list {
        display: flex;
        flex-wrap: wrap;
        gap: 10px;
        margin-top: 15px;
    }
    
    .category-list li {
        margin-bottom: 0;
    }
    
    .category-list a {
        padding: 8px 20px;
        background: white;
        border: 1px solid #e9ecef;
        border-radius: 25px;
        transition: all 0.3s;
        white-space: nowrap;
    }
    
    .category-list a:hover,
    .category-list a.active {
        background: #0066cc;
        color: white;
        border-color: #0066cc;
    }
    
    .category-count {
        background: rgba(255,255,255,0.2);
        color: white;
    }
}

@media (max-width: 768px) {
    .page-banner {
        padding: 80px 0 60px;
    }
    
    .banner-content h1 {
        font-size: 36px;
    }
    
    .majors-grid {
        grid-template-columns: 1fr;
    }
    
    .news-container {
        padding: 30px 20px;
        gap: 25px;
        flex-direction: column;
    }
    
    .news-sidebar {
        width: 100%;
        order: -1;
    }
    
    .news-item {
        grid-template-columns: 1fr;
        flex-direction: column;
        gap: 15px;
        padding: 20px;
    }
    
    .news-image {
        height: 200px;
        width: 100%;
    }
    
    .news-content {
        padding: 0;
    }
    
    .news-content h3 {
        font-size: 18px;
    }
    
    .news-meta {
        flex-wrap: wrap;
        gap: 10px;
    }
    
    .hot-news-item {
        padding: 12px 0;
    }
    
    .hot-news-item a {
        font-size: 13px;
    }
    
    .search-input {
        padding: 10px 12px;
        font-size: 14px;
    }
    
    .search-btn {
        padding: 10px 15px;
    }
    
    .pagination {
        margin-top: 30px;
        gap: 8px;
        flex-wrap: wrap;
    }
    
    .page-btn,
    .page-number {
        padding: 8px 12px;
        font-size: 14px;
        min-width: 35px;
    }
    
    .process-steps {
        grid-template-columns: 1fr;
    }
    
    .process-timeline:before {
        display: none;
    }
}

@media (max-width: 480px) {
    .category-tabs {
        gap: 5px;
    }
    
    .category-btn {
        padding: 8px 20px;
        font-size: 14px;
    }
    
    .news-container {
        padding: 20px 15px;
        gap: 20px;
    }
    
    .sidebar-card {
        padding: 15px;
        margin-bottom: 15px;
    }
    
    .sidebar-card h3 {
        font-size: 18px;
        margin-bottom: 15px;
    }
    
    .category-list a {
        padding: 6px 15px;
        font-size: 13px;
    }
    
    .hot-news-item {
        flex-direction: column;
        gap: 10px;
        padding: 10px 0;
    }
    
    .hot-number {
        align-self: flex-start;
    }
    
    .hot-news-item a {
        font-size: 14px;
    }
    
    .news-item {
        padding: 15px;
    }
    
    .news-content {
        padding: 0;
    }
    
    .news-content h3 {
        font-size: 16px;
        line-height: 1.3;
    }
    
    .news-meta {
        gap: 15px;
        flex-wrap: wrap;
        font-size: 12px;
    }
    
    .news-excerpt {
        font-size: 14px;
        line-height: 1.6;
    }
    
    .pagination {
        flex-wrap: wrap;
        gap: 5px;
    }
    
    .pagination a,
    .pagination span {
        padding: 6px 10px;
        font-size: 13px;
        min-width: 30px;
    }
    
    .overview-cards {
        grid-template-columns: 1fr;
    }
    
    .policy-content {
        padding: 20px;
    }
    
    .faq-question {
        padding: 20px;
    }
    
    /* 搜索页面响应式 */
    .search-box {
        padding: 20px;
    }
    
    .search-box form {
        flex-direction: column;
    }
    
    .search-box button {
        width: 100%;
        padding: 12px 20px;
    }
    
    .search-result-item {
        padding: 20px;
    }
    
    .search-result-item h3 {
        font-size: 18px;
    }
    
    .result-meta {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }
    
    .no-results {
        padding: 40px 20px;
    }
    
    .no-results i {
        font-size: 48px;
    }
    
    .no-results p {
        font-size: 16px;
    }
} 