* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Microsoft YaHei', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {
    background-color: #f8f9fa;
    color: #333;
    line-height: 1.6;
}

.thiscontainer {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* 头部样式 */
header {
    background: linear-gradient(135deg, #1a5f9e, #2c8bd1);
    color: white;
    padding: 15px 0;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 15px;
}

.logo img {
    height: 50px;
}

.logo-text {
    display: flex;
    flex-direction: column;
}

.logo h1 {
    font-size: 1.8rem;
    font-weight: bold;
    letter-spacing: 2px;
}

.logo p {
    font-size: 0.9rem;
    opacity: 0.9;
}

nav ul {
    display: flex;
    list-style: none;
    gap: 30px;
}

nav a {
    color: white;
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: 500;
    padding: 8px 0;
    position: relative;
    transition: all 0.3s;
}

nav a:hover, nav a.active {
    color: #ffcc00;
}

nav a.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: #ffcc00;
}

/* 页面标题 */
.page-header {
    background: url('../../images/home/photo-1public.jpeg?ixlib=rb-4.0.3&auto=format&fit=crop&w=2000&q=80') center/cover no-repeat;
    padding: 80px 0;
    text-align: center;
    position: relative;
    margin-bottom: 40px;
}

.page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(26, 95, 158, 0.85);
}

.page-header-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
    margin: 0 auto;
}

.page-title {
    font-size: 2.5rem;
    color: white;
    margin-top: 10px;
    margin-bottom: 20px;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

.breadcrumb {
    display: flex;
    justify-content: center;
    color: rgba(255, 255, 255, 0.9);
}

.breadcrumb a {
    color: #ffcc00;
    text-decoration: none;
}

.breadcrumb span {
    margin: 0 10px;
}

/* 主体内容 */
.main-content {
    display: flex !important;
    gap: 30px;
    margin-bottom: 50px;
}

/* 资讯列表 */
.news-container {
    flex: 3 !important;
}

.news-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 2px solid #e0e6ed;
}

.section-title {
    font-size: 1.8rem;
    color: #1a5f9e;
    font-weight: bold;
    position: relative;
    padding-left: 15px;
}

.section-title::before {
    content: '';
    position: absolute;
    left: 0;
    top: 5px;
    height: 80%;
    width: 4px;
    background: #ffcc00;
}

.filter-controls {
    display: flex;
    gap: 15px;
}

.filter-btn {
    background: white;
    border: 1px solid #dde4ee;
    border-radius: 4px;
    padding: 8px 20px;
    cursor: pointer;
    transition: all 0.3s;
    font-size: 0.95rem;
}

.filter-btn:hover, .filter-btn.active {
    background: #1a5f9e;
    color: white;
    border-color: #1a5f9e;
}

.news-list {
    background: white;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    overflow: hidden;
}

.news-item {
    display: flex;
    padding: 25px;
    border-bottom: 1px solid #eee;
    transition: all 0.3s;
    cursor: pointer;
}

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

.news-item:hover {
    background-color: #f8faff;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
}

.news-date {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-width: 80px;
    background: #f0f7ff;
    border-radius: 6px;
    padding: 10px;
    margin-right: 25px;
}

.news-day {
    font-size: 2rem;
    font-weight: bold;
    color: #1a5f9e;
    line-height: 1;
}

.news-month {
    font-size: 0.9rem;
    color: #666;
}

.news-content {
    flex: 1;
}

.news-category {
    display: inline-block;
    background: #e6f2ff;
    color: #1a5f9e;
    padding: 4px 12px;
    border-radius: 30px;
    font-size: 0.9rem;
    margin-bottom: 10px;
}

.news-title {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 10px;
    color: #333;
    transition: color 0.3s;
}

.news-item:hover .news-title {
    color: #1a5f9e;
}

.news-excerpt {
    color: #666;
    margin-bottom: 15px;
    line-height: 1.7;
}

.news-meta {
    display: flex;
    color: #888;
    font-size: 0.9rem;
}

.news-meta span {
    margin-right: 20px;
    display: flex;
    align-items: center;
    gap: 5px;
}

/* 侧边栏 */
.sidebar {
    flex: 1 !important;
}

.sidebar-widget {
    background: white;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    padding: 25px;
    margin-bottom: 30px;
}

.widget-title {
    font-size: 1.3rem;
    color: #1a5f9e;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid #f0f7ff;
    position: relative;
}

.widget-title::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 80px;
    height: 2px;
    background: #ffcc00;
}

.popular-news {
    list-style: none;
}

.popular-item {
    display: flex;
    padding: 12px 0;
    border-bottom: 1px dashed #eee;
}

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

.popular-content {
    flex: 1;
}

.popular-title {
    color:#0a0a0a !important;
    font-weight: 500;
    margin-bottom: 5px;
    transition: color 0.3s;
}

.popular-title:hover {
    color: #1a5f9e;
}

.popular-meta {
    display: flex;
    color: #888;
    font-size: 0.85rem;
}

.popular-meta span {
    margin-right: 15px;
}

.highlight {
    display: inline-block;
    background: linear-gradient(120deg, #ffcc00, #ff9900);
    color: #1a2a4f;
    font-weight: bold;
    padding: 3px 10px;
    border-radius: 4px;
    font-size: 0.85rem;
    margin-right: 8px;
}

/* 分页 */
.pagination {
    display: flex;
    justify-content: center;
    margin-top: 40px;
}

.pagination a {
    display: inline-block;
    width: 80px;
    height: 40px;
    line-height: 40px;
    text-align: center;
    background: white;
    color: #555;
    border-radius: 4px;
    margin: 0 5px;
    text-decoration: none;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
    transition: all 0.3s;
}

.pagination a:hover, .pagination a.active {
    background: #1a5f9e;
    color: white;
}

/* 页脚 */
footer {
    background: linear-gradient(to right, #1a2a4f, #1a5f9e);
    color: white;
    padding: 50px 0 20px;
    margin-top: 50px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-bottom: 40px;
}

.footer-column h3 {
    font-size: 1.3rem;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
}

.footer-column h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background: #ffcc00;
    border-radius: 3px;
}

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

.footer-column ul li {
    margin-bottom: 12px;
}

.footer-column a {
    color: #c2d4e8;
    text-decoration: none;
    transition: all 0.3s;
}

.footer-column a:hover {
    color: #ffcc00;
    padding-left: 5px;
}

.copyright {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: #a0b9d9;
    font-size: 0.9rem;
}

.calendar-container {
    width: 300px;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.calendar-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #f8faff;
    color: #1a5f9e;
    padding: 15px 20px;
}

.month-year {
    font-size: 16px;
    font-weight: bold;
}

.nav-buttons button {
    background: none;
    border: none;
    color: #1a5f9e;
    font-size: 1.2em;
    cursor: pointer;
    padding: 5px 10px;
    border-radius: 5px;
}

.nav-buttons button:hover {
    background: rgba(255, 255, 255, 0.2);
}

.weekdays {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    background: #f1f1f1;
    padding: 10px 0;
    text-align: center;
    font-weight: bold;
}

.days {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 5px;
    padding: 10px;
}

.day {
    aspect-ratio: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 5px;
    cursor: pointer;
    transition: all 0.2s;
}

.day:hover {
    background: #e6e6e6;
}

.current-day {
    background: #4285f4;
    color: white;
    font-weight: bold;
}

.other-month {
    color: #aaa;
}

.selected {
    background: #34a853;
    color: white;
}

/*!* 响应式调整 *!*/
/*@media (max-width: 992px) {*/
/*    .main-content {*/
/*        flex-direction: column;*/
/*    }*/

/*    .footer-content {*/
/*        grid-template-columns: repeat(2, 1fr);*/
/*    }*/
/*}*/

/*@media (max-width: 768px) {*/
/*    .header-content {*/
/*        flex-direction: column;*/
/*        gap: 20px;*/
/*    }*/

/*    nav ul {*/
/*        gap: 15px;*/
/*        flex-wrap: wrap;*/
/*        justify-content: center;*/
/*    }*/

/*    .footer-content {*/
/*        grid-template-columns: 1fr;*/
/*    }*/
/*}*/