/* 全局样式 */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body {
    font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
    line-height: 1.6;
    color: #333;
    background: #f4f4f4;
}
.container {
    width: 1200px;
    margin: 0 auto;
    overflow: hidden;
}

/* 头部 */
.site-header {
    background: #002b5c;
    color: #fff;
    padding: 10px 0;
}
.site-header .logo a {
    color: #fff;
    text-decoration: none;
    font-size: 24px;
    font-weight: bold;
}
.main-nav ul {
    list-style: none;
    float: right;
}
.main-nav ul li {
    display: inline-block;
    margin-left: 20px;
}
.main-nav ul li a {
    color: #fff;
    text-decoration: none;
}
.main-nav ul li a:hover {
    text-decoration: underline;
}

/* 轮播 */
.banner-slider {
    width: 100%;
    height: 400px;
    overflow: hidden;
    position: relative;
}
.swiper-container {
    width: 100%;
    height: 100%;
}
.swiper-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* 网格布局 */
.event-grid, .guest-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin: 20px 0;
}
.event-item, .guest-card {
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    text-align: center;
}
.event-item img, .guest-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}
.event-item h3, .guest-card h3 {
    font-size: 18px;
    margin: 10px 0 5px;
}
.guest-card .title {
    color: #666;
    font-size: 14px;
    margin-bottom: 10px;
}
.guest-card .short-desc {
    padding: 0 10px 15px;
    color: #555;
}

/* 新闻列表 */
.news-list .news-item {
    display: flex;
    background: #fff;
    margin-bottom: 15px;
    padding: 15px;
    border-radius: 5px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
}
.news-thumb {
    width: 120px;
    height: 80px;
    object-fit: cover;
    margin-right: 15px;
}
.news-info {
    flex: 1;
}
.news-info h3 a {
    color: #002b5c;
    text-decoration: none;
}
.news-info h3 a:hover {
    text-decoration: underline;
}
.date {
    color: #888;
    font-size: 13px;
    margin: 5px 0;
}
.readmore {
    display: inline-block;
    margin-top: 10px;
    color: #0066cc;
    text-decoration: none;
}
.readmore:hover {
    text-decoration: underline;
}
.more-link {
    text-align: right;
}

/* 页脚 */
.site-footer {
    background: #002b5c;
    color: #fff;
    text-align: center;
    padding: 20px 0;
    margin-top: 40px;
}

/* 详情页 */
.detail-page .featured-image img {
    max-width: 100%;
    margin: 20px 0;
}
.back-link {
    margin-top: 30px;
}
.guest-detail .guest-header {
    display: flex;
    gap: 30px;
    margin-bottom: 30px;
}
.guest-detail .guest-photo {
    flex: 0 0 200px;
}
.guest-detail .guest-photo img {
    width: 100%;
    border-radius: 50%;
}
.guest-detail .guest-info {
    flex: 1;
}
.guest-detail .guest-info .title {
    font-size: 18px;
    color: #666;
    margin: 10px 0;
}
.guest-long-desc {
    line-height: 1.8;
}