
@import url('https://font-now.netlify.app/api/css?url=/font/e5bfa67c-f913-5457-8fd0-4e34a3b6ad6a/result.css');
        
* {
    font-family: 'LXGW WenKai Mono Lite', sans-serif;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* 活动页面样式 */
.events-news {
    padding: 50px 0;
}

.events-list {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.event-news-item {
    background: white;
    border-radius: 8px;
    padding: 30px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-left: 4px solid var(--accent);
}

.event-news-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.event-news-date {
    font-size: 0.9rem;
    color: var(--primary);
    margin-bottom: 10px;
    font-weight: 500;
}

.event-news-title {
    margin-bottom: 15px;
}

.event-news-title a {
    color: var(--text-dark);
    text-decoration: none;
    font-size: 1.4rem;
    font-weight: 600;
    transition: color 0.3s ease;
}

.event-news-title a:hover {
    color: var(--accent-dark);
}

.event-news-excerpt {
    color: #666;
    line-height: 1.8;
    margin-bottom: 20px;
}

.event-news-meta {
    display: flex;
    align-items: center;
    gap: 20px;
    font-size: 0.9rem;
    color: #888;
}

.event-news-more {
    margin-left: auto;
    color: var(--accent-dark);
    text-decoration: none;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 5px;
}

.event-news-more:hover {
    text-decoration: underline;
}

/* 分页样式 */
.pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    margin-top: 40px;
}

.page-item {
    padding: 8px 15px;
    border-radius: 4px;
    text-decoration: none;
    color: var(--text-dark);
    background: white;
    border: 1px solid #eee;
    transition: all 0.3s ease;
}

.page-item:hover {
    background: var(--accent);
    color: white;
    border-color: var(--accent);
}

.page-item.active {
    background: var(--accent-dark);
    color: white;
    border-color: var(--accent-dark);
}

/* 品牌活动样式 */
.brand-events {
    background-color: var(--primary-dark);
    color: white;
    padding: 50px 0;
}

.brand-events .section-title h2 {
    color: var(--text-light);
}

.brand-events-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 30px;
}

.brand-event-card {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    padding: 25px;
    text-align: center;
    transition: transform 0.3s ease;
}

.brand-event-card:hover {
    transform: translateY(-10px);
}

.brand-event-image {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    position: relative;
    overflow: hidden;
}

.brand-event-image i {
    font-size: 3rem;
    color: white;
    margin-bottom: 10px;
}

.brand-event-name {
    font-size: 1.2rem;
    font-weight: 600;
    color: white;
}

.brand-event-description {
    color: #ddd;
    line-height: 1.6;
}


:root {
    --primary-dark: #5D4037;
    --primary: #8D6E63;
    --primary-light: #D7CCC8;
    --accent: #D9CB9E;
    --accent-dark: #A68B5C;
    --text-dark: #3E2723;
    --text-light: #F5F5F5;
    --paper: #F9F5E8;
    --border: #A1887F;
    --jlu-red: #9B1B30;
}

body {
    font-family: 'Noto Serif SC', serif;
    background-color: var(--paper);
    color: var(--text-dark);
    line-height: 1.8;
    background-image: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0 0h100v100H0z' fill='none'/%3E%3Cpath d='M50 0c13.8 0 25 11.2 25 25s-11.2 25-25 25-25-11.2-25-25S36.2 0 50 0zm0 10c-8.3 0-15 6.7-15 15s6.7 15 15 15 15-6.7 15-15-6.7-15-15-15zm0 0' fill='%23d7ccc8' fill-opacity='0.1'/%3E%3C/svg%3E");
    position: relative;
    overflow-x: hidden;
}

body::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(249, 245, 232, 0.8), rgba(249, 245, 232, 0.95));
    z-index: -1;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* 顶部导航 */
header {
    background-color: var(--primary-dark);
    border-bottom: 3px solid var(--accent-dark);
    padding: 15px 0;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 3px 10px rgba(61, 39, 35, 0.3);
}

/* 当前活动页面导航高亮 */
nav a[href="events.html"], nav a[href="../pages/events.html"] {
    color: var(--accent);
    font-weight: 500;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
}

.logo-icon {
    font-size: 2.5rem;
    color: var(--accent);
    margin-right: 15px;
}

.logo-text {
    color: var(--text-light);
    font-size: 1.8rem;
    font-weight: 700;
    letter-spacing: 2px;
}

.logo-subtext {
    display: block;
    font-size: 0.9rem;
    font-weight: 400;
    letter-spacing: 4px;
    color: var(--accent);
}

nav ul {
    display: flex;
    list-style: none;
}

nav ul li {
    margin-left: 25px;
    position: relative;
}

nav ul li a {
    color: var(--primary-light);
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: 500;
    letter-spacing: 1px;
    padding: 8px 0;
    position: relative;
    transition: all 0.3s ease;
}

nav ul li a::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent);
    transition: width 0.3s ease;
}

nav ul li a:hover {
    color: var(--accent);
}

nav ul li a:hover::after {
    width: 100%;
}

/* 横幅区域 */
.hero {
    background: linear-gradient(rgba(93, 64, 55, 0.85), rgba(93, 64, 55, 0.9)), 
                url('pics/news.jpeg');
    background-size: cover;
    padding: 100px 0;
    text-align: center;
    margin-bottom: 60px;
    border-bottom: 3px solid var(--accent-dark);
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
}

.hero h1 {
    color: var(--accent);
    font-size: 3.2rem;
    margin-bottom: 25px;
    letter-spacing: 3px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.hero .motto {
    color: var(--primary-light);
    font-size: 1.8rem;
    margin-bottom: 20px;
    font-style: italic;
}

.hero .subtitle {
    color: var(--primary-light);
    font-size: 1.3rem;
    margin-bottom: 40px;
    line-height: 1.8;
}

.hero-divider {
    width: 100px;
    height: 3px;
    background: var(--accent);
    margin: 30px auto;
}

.btn {
    display: inline-block;
    background: var(--accent-dark);
    color: var(--text-light);
    padding: 14px 35px;
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: 600;
    letter-spacing: 1px;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    margin: 0 10px;
}

.btn:hover {
    background: var(--accent);
    color: var(--text-dark);
    transform: translateY(-3px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.25);
}

.btn-outline {
    background: transparent;
    border: 2px solid var(--accent);
    color: var(--accent);
}

.btn-outline:hover {
    background: var(--accent);
    color: var(--text-dark);
}

/* 主要内容 */
.section-title {
    text-align: center;
    margin-bottom: 50px;
    position: relative;
}

.section-title h2 {
    font-size: 2.5rem;
    color: var(--primary-dark);
    display: inline-block;
    background: var(--paper);
    padding: 0 30px;
    position: relative;
    z-index: 2;
}

.section-title::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--border);
    z-index: 1;
}


.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-bottom: 80px;
    align-items: center;
}

.about-text {
    padding-right: 20px;
}

.about-text h3 {
    font-size: 1.8rem;
    color: var(--primary-dark);
    margin-bottom: 25px;
}

.about-text p {
    margin-bottom: 20px;
    line-height: 1.8;
}

.about-image {
    border: 5px solid var(--accent);
    padding: 10px;
    background: var(--paper);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    position: relative;
}

.about-image::before {
    content: "";
    position: absolute;
    top: -15px;
    left: -15px;
    right: 15px;
    bottom: 15px;
    border: 2px solid var(--primary);
    z-index: -1;
}

.about-image img {
    width: 100%;
    display: block;
}

.events {
    margin-bottom: 80px;
}

.event-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.event-card {
    background: var(--paper);
    border: 1px solid var(--border);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    padding: 0;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.event-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.event-image {
    height: 200px;
    background: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 5rem;
    opacity: 0.9;
}

.event-content {
    padding: 30px;
}

.event-card h3 {
    font-size: 1.6rem;
    margin-bottom: 15px;
    color: var(--primary-dark);
    position: relative;
    padding-bottom: 15px;
}

.event-card h3::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 2px;
    background: var(--accent-dark);
}

.event-date {
    display: inline-block;
    background: var(--primary);
    color: white;
    padding: 5px 15px;
    margin-bottom: 15px;
    font-size: 0.9rem;
}

.event-card p {
    margin-bottom: 20px;
}

.works {
    background: linear-gradient(to right, var(--primary-light), var(--paper));
    padding: 60px 0;
    margin-bottom: 80px;
    border-top: 2px solid var(--border);
    border-bottom: 2px solid var(--border);
}

.poem-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
}

.poem-card {
    background: var(--paper);
    border: 1px solid var(--border);
    padding: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    position: relative;
    transition: all 0.3s ease;
}

.poem-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.poem-card::before {
    position: absolute;
    top: 10px;
    left: 20px;
    font-size: 4rem;
    color: var(--accent);
    opacity: 0.2;
    font-family: serif;
    line-height: 1;
}

.poem-title {
    font-size: 1.4rem;
    margin-bottom: 20px;
    color: var(--primary-dark);
    padding-left: 30px;
    position: relative;
}

.poem-title::before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 20px;
    height: 2px;
    background: var(--accent-dark);
}

.poem-content {
    font-size: 1.1rem;
    line-height: 2.2;
    font-style: italic;
    margin-bottom: 20px;
}

.poem-author {
    text-align: right;
    color: var(--primary);
    font-size: 0.95rem;
}

.resources {
    margin-bottom: 80px;
}

.resource-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
}

.resource-card {
    background: var(--paper);
    border: 1px solid var(--border);
    padding: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.resource-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.resource-icon {
    font-size: 2.5rem;
    color: var(--accent-dark);
    margin-bottom: 20px;
}

.resource-card h3 {
    font-size: 1.4rem;
    margin-bottom: 15px;
    color: var(--primary-dark);
}

.resource-list {
    list-style: none;
}

.resource-list li {
    padding: 8px 0;
    border-bottom: 1px dashed var(--border);
}

.resource-list li:last-child {
    border-bottom: none;
}

.resource-list a {
    color: var(--primary);
    text-decoration: none;
    transition: all 0.3s ease;
}

.resource-list a:hover {
    color: var(--accent-dark);
    text-decoration: underline;
}

.partners {
    background: linear-gradient(to right, var(--primary-dark), var(--primary));
    padding: 80px 0;
    color: var(--text-light);
    margin-bottom: 0;
}

.partners .section-title h2 {
    background: transparent;
    color: var(--accent);
}

.partners .section-title::after {
    background: var(--accent);
}

.partner-logos {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 40px;
    max-width: 1000px;
    margin: 0 auto;
}

.partner-logo {
    width: 150px;
    height: 80px;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    font-weight: 500;
    color: var(--accent);
    border: 1px solid var(--accent);
    padding: 15px;
    text-align: center;
    transition: all 0.3s ease;
}

.partner-logo a {
    font-size: 1.2rem;
    font-weight: 500;
    color: var(--accent);
    text-decoration-line: none;
}

.partner-logo:hover {
    background: rgba(217, 203, 158, 0.2);
    transform: scale(1.05);
}


/* 轮播图样式 */
.works {
    background: linear-gradient(to right, var(--primary-light), var(--paper));
    padding: 80px 0;
    margin-bottom: 80px;
    border-top: 2px solid var(--border);
    border-bottom: 2px solid var(--border);
    position: relative;
    overflow: hidden;
}

.carousel-container {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    padding: 0 50px;
}

.carousel {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.2);
    transition: height 0.8s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.poem-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    min-height: 300px;
    background: var(--paper);
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 50px;
    opacity: 0;
    transform: translateX(100%);
    transition: all 0.8s cubic-bezier(0.165, 0.84, 0.44, 1);
    z-index: 1;
    border: 1px solid var(--border);
}

.poem-slide.active {
    opacity: 1;
    transform: translateX(0);
    z-index: 2;
}

.poem-slide.prev {
    opacity: 0;
    transform: translateX(-100%);
    z-index: 1;
}

.poem-title {
    font-size: 2.2rem;
    margin-bottom: 30px;
    color: var(--primary-dark);
    position: relative;
    padding-bottom: 20px;
    text-align: center;
}

.poem-title::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 3px;
    background: var(--accent-dark);
}

.poem-content {
    font-size: 1.4rem;
    line-height: 2.5;
    text-align: center;
    font-style: italic;
    max-width: 700px;
    margin: 0 auto 40px;
}

.poem-author {
    text-align: right;
    font-size: 1.2rem;
    color: var(--primary);
    font-weight: 500;
}

.poem-info {
    text-align: center;
    font-size: 1rem;
    color: var(--accent-dark);
    margin-top: 10px;
    font-style: italic;
}

.carousel-nav {
    display: flex;
    justify-content: center;
    margin-top: 40px;
    gap: 15px;
}

.carousel-dot {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: var(--primary-light);
    cursor: pointer;
    transition: all 0.3s ease;
}

.carousel-dot.active {
    background: var(--accent-dark);
    transform: scale(1.2);
}

.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 60px;
    height: 60px;
    background: rgba(217, 203, 158, 0.7);
    border: none;
    border-radius: 50%;
    color: var(--primary-dark);
    font-size: 1.8rem;
    cursor: pointer;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.carousel-btn:hover {
    background: var(--accent);
    transform: translateY(-50%) scale(1.1);
}

.prev-btn {
    left: -20px;
}

.next-btn {
    right: -20px;
}

.carousel-counter {
    position: absolute;
    bottom: 20px;
    right: 20px;
    background: rgba(93, 64, 55, 0.7);
    color: var(--accent);
    padding: 8px 15px;
    border-radius: 20px;
    font-size: 0.9rem;
    z-index: 3;
}

/* 底部 */
footer {
    background: var(--primary-dark);
    color: var(--primary-light);
    padding: 60px 0 30px;
    border-top: 3px solid var(--accent-dark);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 50px;
}

.footer-column h3 {
    color: var(--accent);
    font-size: 1.4rem;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 10px;
}

.footer-column h3::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 2px;
    background: var(--accent);
}

.contact-info p {
    margin-bottom: 15px;
    display: flex;
    align-items: flex-start;
}

.contact-info i {
    margin-right: 15px;
    color: var(--accent);
    min-width: 20px;
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: var(--primary);
    color: var(--accent);
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: var(--accent);
    color: var(--primary-dark);
    transform: translateY(-3px);
}

.copyright {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid var(--primary);
    font-size: 0.9rem;
    opacity: 0.7;
}

        .rhymebook-hero {
            background: linear-gradient(rgba(93, 64, 55, 0.85), rgba(93, 64, 55, 0.9));
            background-size: cover;
            padding: 100px 0;
            text-align: center;
            margin-bottom: 60px;
            border-bottom: 3px solid var(--accent-dark);
        }
        
        .rhymebook-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        
        .rhymebook-header {
            text-align: center;
            margin-bottom: 60px;
        }
        
        .rhymebook-header h1 {
            font-size: 2.8rem;
            color: var(--primary-dark);
            margin-bottom: 20px;
            letter-spacing: 2px;
        }
        
        .rhymebook-header p {
            font-size: 1.2rem;
            color: var(--primary);
            max-width: 800px;
            margin: 0 auto;
        }
        
        .rhymebook-list {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
            gap: 40px;
            margin-bottom: 80px;
        }
        
        .rhymebook-item {
            background: var(--paper);
            border: 1px solid var(--border);
            border-radius: 8px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
            transition: all 0.3s ease;
        }
        
        .rhymebook-item:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
        }
        
        .rhymebook-cover {
            position: relative;
            overflow: hidden;
            height: 400px;
            display: flex;
            align-items: center;
            justify-content: center;
            background: var(--primary-light);
        }
        
        .rhymebook-cover img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }
        
        .rhymebook-item:hover .rhymebook-cover img {
            transform: scale(1.05);
        }
        
        .rhymebook-info {
            padding: 25px;
        }
        
        .rhymebook-title {
            font-size: 1.5rem;
            color: var(--primary-dark);
            margin-bottom: 10px;
            font-weight: 600;
        }
        
        .rhymebook-date {
            font-size: 1rem;
            color: var(--primary);
            margin-bottom: 15px;
            font-style: italic;
        }
        
        .rhymebook-description {
            color: var(--text-dark);
            line-height: 1.7;
            margin-bottom: 20px;
        }
        
        .rhymebook-actions {
            display: flex;
            gap: 15px;
        }
        
        .rhymebook-btn {
            display: inline-block;
            padding: 10px 20px;
            border: none;
            border-radius: 4px;
            font-size: 1rem;
            font-weight: 500;
            cursor: pointer;
            transition: all 0.3s ease;
            text-decoration: none;
            text-align: center;
            flex: 1;
        }
        
        .rhymebook-btn.primary {
            background: var(--accent-dark);
            color: white;
        }
        
        .rhymebook-btn.primary:hover {
            background: var(--accent);
            color: var(--text-dark);
        }
        
        .rhymebook-btn.secondary {
            background: transparent;
            color: var(--primary-dark);
            border: 1px solid var(--primary);
        }
        
        .rhymebook-btn.secondary:hover {
            background: var(--primary);
            color: white;
        }
        
        @media (max-width: 768px) {
            .rhymebook-list {
                grid-template-columns: 1fr;
            }
            
            .rhymebook-cover {
                height: 350px;
            }
        }
        
        /* 当前导航高亮 */
        nav a[href="pages/rhymebook/index.html"] {
            color: var(--accent);
            font-weight: 500;
        }
@media (max-width: 992px) {
    .about-content {
        grid-template-columns: 1fr;
    }
    
    .about-text {
        padding-right: 0;
    }
}

@media (max-width: 768px) {
    .header-content {
        flex-direction: column;
        text-align: center;
    }
    
    .logo {
        margin-bottom: 20px;
    }
    
    nav ul {
        flex-wrap: wrap;
        justify-content: center;
    }
    
    nav ul li {
        margin: 5px 15px;
    }
    
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .hero .motto {
        font-size: 1.4rem;
    }
    
    .hero .subtitle {
        font-size: 1.1rem;
    }
    
    .btn {
        display: block;
        margin: 15px auto;
        max-width: 300px;
    }
}

/* 社刊特定样式变量 */
:root {
    --paper: #f9f6f0;
    --accent-dark: #8B4513;
}