/* 全局样式 */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #c41e3a;
    --secondary-color: #ff6b6b;
    --accent-color: #ffd700;
    --dark-blue: #0f172a;
    --light-blue: #ffe5e5;
    --text-dark: #1e293b;
    --text-light: #64748b;
    --white: #ffffff;
    --gray-100: #f1f5f9;
    --gray-200: #e2e8f0;
    --shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 25px rgba(0, 0, 0, 0.15);
    --new-year-red: #d4163c;
    --new-year-gold: #ffd700;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen', 'Ubuntu', 'Cantarell', sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--gray-100);
}

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

/* 滚动公告栏 */
.announcement-bar {
    background: linear-gradient(135deg, var(--new-year-red) 0%, var(--secondary-color) 100%);
    color: var(--white);
    position: fixed;
    width: 100%;
    top: 70px;
    z-index: 999;
    overflow: hidden;
    height: 40px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.announcement-container {
    display: flex;
    align-items: center;
    height: 100%;
    padding: 0 20px;
}

.announcement-icon {
    font-size: 1.2rem;
    margin-right: 15px;
    animation: shake 2s infinite;
}

@keyframes shake {
    0%, 100% { transform: rotate(0deg); }
    10%, 30% { transform: rotate(-10deg); }
    20%, 40% { transform: rotate(10deg); }
    50% { transform: rotate(0deg); }
}

.announcement-content {
    display: flex;
    animation: scroll-left 30s linear infinite;
    white-space: nowrap;
}

.announcement-text {
    padding: 0 50px;
    font-weight: 500;
}

@keyframes scroll-left {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* 导航栏 */
.navbar {
    background: var(--white);
    box-shadow: var(--shadow);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 20px;
}

.nav-brand {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: bold;
    font-family: "华文行楷", "STXingkai", "KaiTi", serif;
}

.nav-brand i {
    font-size: 1.8rem;
    color: var(--secondary-color);
}

.brand-main {
    font-size: 1.5rem;
    color: var(--primary-color);
    letter-spacing: 2px;
}

.brand-sub {
    font-size: 1.5rem;
    color: var(--accent-color);
    margin-left: 5px;
}

/* 语言切换器 */
.language-switcher {
    position: relative;
    display: flex;
    align-items: center;
    gap: 8px;
}

.lang-toggle {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 15px;
    background: var(--gray-100);
    border: 2px solid var(--gray-200);
    border-radius: 20px;
    cursor: pointer;
    transition: all 0.3s;
    font-size: 0.9rem;
    color: var(--text-dark);
}

.lang-toggle:hover {
    border-color: var(--secondary-color);
    background: white;
}

.lang-toggle i {
    color: var(--secondary-color);
    font-size: 1.1rem;
}

.lang-dropdown {
    position: absolute;
    top: calc(100% + 10px);
    right: 0;
    background: white;
    border-radius: 10px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
    padding: 8px;
    min-width: 180px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s;
    z-index: 1000;
}

.language-switcher:hover .lang-dropdown,
.lang-dropdown:hover {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.lang-option {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 15px;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.2s;
    font-size: 0.95rem;
    color: var(--text-dark);
}

.lang-option:hover {
    background: var(--gray-100);
}

.lang-option.active {
    background: linear-gradient(135deg, var(--secondary-color), var(--primary-color));
    color: white;
}

.lang-option .flag {
    font-size: 1.5rem;
}

.lang-option .lang-name {
    flex: 1;
}

.lang-option .check-icon {
    opacity: 0;
    color: white;
    font-size: 0.9rem;
}

.lang-option.active .check-icon {
    opacity: 1;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-menu a {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    transition: color 0.3s;
}

.nav-menu a:hover {
    color: var(--secondary-color);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 4px;
    cursor: pointer;
}

.nav-toggle span {
    width: 25px;
    height: 3px;
    background: var(--primary-color);
    transition: 0.3s;
}

/* 轮播图区域 */
.carousel-section {
    margin-top: 110px;
    position: relative;
}

.carousel-container {
    position: relative;
    width: 100%;
    height: 700px;
    overflow: hidden;
    background: var(--dark-blue);
}

.carousel-slides {
    position: relative;
    width: 100%;
    height: 100%;
}

.carousel-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease-in-out;
    z-index: 0;
}

.carousel-slide.active {
    opacity: 1;
    z-index: 1;
}

.carousel-image {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.carousel-image::before {

        
}

.carousel-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
    color: var(--white);
}

.carousel-title {
    font-size: 3rem;
    margin-bottom: 1rem;
    font-weight: 700;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.carousel-subtitle {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    font-weight: 300;
}

.carousel-description {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    opacity: 0.95;
}

.carousel-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* 轮播图标题 */
.carousel-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.9), transparent);
    padding: 30px 20px 20px;
    z-index: 2;
    pointer-events: none;
}

.carousel-caption h3 {
    color: var(--white);
    font-size: 1.3rem;
    text-align: center;
    margin: 0;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

/* 轮播指示器 */
.carousel-indicators {
    position: absolute;
    bottom: 60px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 3;
}

.indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    border: none;
    cursor: pointer;
    transition: all 0.3s;
}

.indicator:hover {
    background: rgba(255, 255, 255, 0.8);
}

.indicator.active {
    background: var(--new-year-gold);
    width: 30px;
    border-radius: 6px;
}

/* 轮播控制按钮 */
.carousel-control {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.3);
    border: none;
    color: var(--white);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    z-index: 3;
    transition: all 0.3s;
    font-size: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.carousel-control:hover {
    background: rgba(255, 255, 255, 0.5);
}

.carousel-control.prev {
    left: 20px;
}

.carousel-control.next {
    right: 20px;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.3);
}

/* 雪花效果 */
.snowflakes {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    overflow: hidden;
    z-index: 1;
    pointer-events: none;
}

.snowflake {
    position: absolute;
    top: -10%;
    color: white;
    font-size: 1.5em;
    opacity: 0.8;
    animation: fall linear infinite;
    text-shadow: 0 0 5px rgba(255, 255, 255, 0.8);
}

.snowflake:nth-child(1) { left: 10%; animation-duration: 10s; animation-delay: 0s; }
.snowflake:nth-child(2) { left: 20%; animation-duration: 12s; animation-delay: 2s; font-size: 2em; }
.snowflake:nth-child(3) { left: 30%; animation-duration: 8s; animation-delay: 4s; }
.snowflake:nth-child(4) { left: 40%; animation-duration: 14s; animation-delay: 0s; font-size: 1.8em; }
.snowflake:nth-child(5) { left: 50%; animation-duration: 11s; animation-delay: 3s; }
.snowflake:nth-child(6) { left: 60%; animation-duration: 9s; animation-delay: 1s; font-size: 2.2em; }
.snowflake:nth-child(7) { left: 70%; animation-duration: 13s; animation-delay: 5s; }
.snowflake:nth-child(8) { left: 80%; animation-duration: 10s; animation-delay: 2s; font-size: 1.6em; }
.snowflake:nth-child(9) { left: 90%; animation-duration: 12s; animation-delay: 4s; }
.snowflake:nth-child(10) { left: 15%; animation-duration: 11s; animation-delay: 6s; font-size: 2em; }

@keyframes fall {
    to {
        transform: translateY(110vh) rotate(360deg);
    }
}

/* 元旦徽章 */
.new-year-badge {
    display: inline-block;
    background: linear-gradient(135deg, var(--new-year-gold), #ffed4e);
    color: var(--new-year-red);
    padding: 10px 30px;
    border-radius: 50px;
    font-weight: bold;
    font-size: 1.2rem;
    margin-bottom: 20px;
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.5);
    animation: pulse-badge 2s infinite;
}

@keyframes pulse-badge {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

/* 倒计时 */
.countdown-container {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 30px;
    margin: 30px 0;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.countdown-title {
    font-size: 1.5rem;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.countdown {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.countdown-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    background: rgba(255, 255, 255, 0.2);
    padding: 20px;
    border-radius: 15px;
    min-width: 100px;
    backdrop-filter: blur(5px);
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.countdown-value {
    font-size: 3rem;
    font-weight: bold;
    color: var(--new-year-gold);
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.5);
    font-family: 'Arial Black', sans-serif;
}

.countdown-label {
    font-size: 1rem;
    margin-top: 5px;
    opacity: 0.9;
}

.hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.hero-title {
    font-size: 3rem;
    margin-bottom: 1rem;
    font-weight: 700;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-subtitle {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    font-weight: 300;
}

.hero-description {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    opacity: 0.95;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* 按钮样式 */
.btn {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
    border: 2px solid transparent;
    cursor: pointer;
    font-size: 1rem;
}

.btn-primary {
    background: var(--accent-color);
    color: var(--white);
}

.btn-primary:hover {
    background: #d97706;
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-secondary {
    background: transparent;
    color: var(--white);
    border-color: var(--white);
}

.btn-secondary:hover {
    background: var(--white);
    color: var(--primary-color);
}

/* 章节样式 */
.section {
    padding: 80px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-title {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.section-title i {
    color: var(--secondary-color);
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 2px;
}

/* 新闻部分 */
.news-section {
    background: var(--white);
}

.news-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.news-card {
    background: var(--gray-100);
    padding: 25px;
    border-radius: 10px;
    transition: all 0.3s;
    border-left: 4px solid var(--secondary-color);
}

.news-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.news-image {
    margin: 15px 0 20px;
    border-radius: 10px;
    overflow: hidden;
    background: linear-gradient(135deg, var(--secondary-color), var(--primary-color));
}

.news-image img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    display: block;
}

/* 元旦高亮新闻 */
.news-card.new-year-highlight {
    background: linear-gradient(135deg, #ffe5e5 0%, #fff5e5 100%);
    border-left: 4px solid var(--new-year-gold);
    position: relative;
    overflow: hidden;
}

.news-card.new-year-highlight::before {
    content: '🎊';
    position: absolute;
    top: 10px;
    right: 10px;
    font-size: 3rem;
    opacity: 0.2;
}

.news-card.new-year-highlight:hover {
    box-shadow: 0 10px 30px rgba(212, 22, 60, 0.3);
}

.news-date {
    color: var(--secondary-color);
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 10px;
}

.news-title {
    color: var(--text-dark);
    font-size: 1.3rem;
    margin-bottom: 15px;
}

.news-excerpt {
    color: var(--text-light);
    margin-bottom: 15px;
    line-height: 1.6;
}

.news-link {
    color: var(--secondary-color);
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    transition: gap 0.3s;
}

.news-link:hover {
    gap: 10px;
}

/* 活动部分 */
.events-section {
    background: var(--gray-100);
}

.events-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
}

.event-card {
    background: var(--white);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: all 0.3s;
    position: relative;
}

.event-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.event-card.featured {
    grid-column: span 1;
    border: 3px solid var(--accent-color);
}

/* 元旦特别活动卡片 */
.event-card.new-year-event {
    border: 3px solid var(--new-year-gold);
    box-shadow: 0 10px 30px rgba(255, 215, 0, 0.3);
}

.event-card.new-year-event:hover {
    box-shadow: 0 15px 40px rgba(255, 215, 0, 0.5);
}

.event-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: var(--accent-color);
    color: var(--white);
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    z-index: 10;
}

.new-year-event .event-badge {
    background: linear-gradient(135deg, var(--new-year-gold), #ffed4e);
    color: var(--new-year-red);
    animation: pulse-badge 2s infinite;
}

.event-image {
    background: linear-gradient(135deg, var(--secondary-color) 0%, var(--primary-color) 100%);
    padding: 40px;
    text-align: center;
    position: relative;
}

.new-year-gradient {
    background: linear-gradient(135deg, #c41e3a 0%, #ff6b6b 50%, #ffd700 100%);
}

.event-image i {
    font-size: 4rem;
    color: var(--white);
}

.fireworks {
    position: absolute;
    top: 10px;
    right: 10px;
    font-size: 2rem;
    animation: firework-pulse 1.5s infinite;
}

@keyframes firework-pulse {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.3); opacity: 0.7; }
}

.event-prizes {
    background: linear-gradient(135deg, #fff5e5, #ffe5e5);
    padding: 10px 15px;
    border-radius: 5px;
    margin-bottom: 20px;
    font-size: 0.95rem;
    border-left: 3px solid var(--new-year-gold);
}

/* 脉冲按钮动画 */
.btn.pulse {
    animation: pulse-button 2s infinite;
}

@keyframes pulse-button {
    0% { box-shadow: 0 0 0 0 rgba(255, 215, 0, 0.7); }
    70% { box-shadow: 0 0 0 15px rgba(255, 215, 0, 0); }
    100% { box-shadow: 0 0 0 0 rgba(255, 215, 0, 0); }
}

.event-content {
    padding: 25px;
}

.event-title {
    font-size: 1.5rem;
    color: var(--text-dark);
    margin-bottom: 15px;
}

.event-meta {
    display: flex;
    gap: 20px;
    margin-bottom: 15px;
    flex-wrap: wrap;
}

.event-meta span {
    color: var(--text-light);
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 5px;
}

.event-description {
    color: var(--text-light);
    margin-bottom: 15px;
    line-height: 1.6;
}

.event-route {
    background: var(--light-blue);
    padding: 10px 15px;
    border-radius: 5px;
    margin-bottom: 20px;
    font-size: 0.95rem;
}

/* 服务部分 */
.services-section {
    background: var(--white);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.service-card {
    background: var(--gray-100);
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    transition: all 0.3s;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.service-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--secondary-color) 0%, var(--primary-color) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.service-icon i {
    font-size: 2.5rem;
    color: var(--white);
}

.service-title {
    font-size: 1.5rem;
    color: var(--text-dark);
    margin-bottom: 15px;
}

.service-description {
    color: var(--text-light);
    margin-bottom: 20px;
}

.service-form {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.service-input {
    padding: 12px;
    border: 2px solid var(--gray-200);
    border-radius: 5px;
    font-size: 1rem;
    transition: border-color 0.3s;
    text-transform: uppercase;
}

.service-input:focus {
    outline: none;
    border-color: var(--secondary-color);
}

/* 气象查询结果样式 */
.weather-result-container {
    margin-top: 20px;
    text-align: left;
}

.weather-result {
    padding: 20px;
    border-radius: 8px;
    animation: fadeIn 0.5s;
}

.weather-result.success {
    background: linear-gradient(135deg, #e8f5e9 0%, #e3f2fd 100%);
    border: 2px solid #4caf50;
}

.weather-result.error {
    background: #ffebee;
    border: 2px solid #f44336;
    color: #c62828;
}

.weather-result.loading {
    background: #fff3e0;
    border: 2px solid #ff9800;
    text-align: center;
}

.weather-result h4 {
    color: var(--new-year-red);
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.raw-data {
    margin: 15px 0;
    padding: 15px;
    background: white;
    border-radius: 5px;
    border: 1px solid #ddd;
}

.code-text {
    font-family: 'Courier New', monospace;
    font-size: 0.95rem;
    color: #1565c0;
    margin-top: 8px;
    word-break: break-all;
    line-height: 1.6;
}

.decoded-data {
    margin-top: 15px;
}

.decoded-data h5 {
    color: var(--secondary-color);
    margin-bottom: 12px;
}

.weather-info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 12px;
    margin-top: 15px;
}

.info-item {
    display: flex;
    flex-direction: column;
    padding: 10px;
    background: white;
    border-radius: 5px;
    border-left: 3px solid var(--secondary-color);
}

.info-item .label {
    font-size: 0.85rem;
    color: var(--text-light);
    margin-bottom: 5px;
}

.info-item .value {
    font-size: 1.1rem;
    font-weight: bold;
    color: var(--text-dark);
}

.timestamp {
    margin-top: 15px;
    padding-top: 10px;
    border-top: 1px solid #ddd;
    font-size: 0.9rem;
    color: var(--text-light);
}

/* ATIS 特殊样式 */
.atis-info {
    background: white;
    padding: 15px;
    border-radius: 8px;
}

.atis-header {
    background: linear-gradient(135deg, var(--secondary-color), var(--primary-color));
    color: white;
    padding: 15px;
    border-radius: 5px;
    margin-bottom: 15px;
}

.atis-header h5 {
    margin: 0 0 5px 0;
    font-size: 1.2rem;
}

.atis-time {
    margin: 0;
    opacity: 0.9;
    font-size: 0.9rem;
}

.atis-content {
    line-height: 1.8;
}

.atis-content hr {
    margin: 15px 0;
    border: none;
    border-top: 1px dashed #ccc;
}

.atis-note {
    background: #fff3e0;
    padding: 12px;
    border-radius: 5px;
    border-left: 4px solid #ff9800;
    margin: 15px 0;
}

.atis-footer {
    font-weight: bold;
    color: var(--secondary-color);
    margin-top: 15px;
    padding-top: 15px;
    border-top: 1px solid #ddd;
}

/* TAF 时段样式 */
.taf-periods {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.taf-period {
    background: white;
    padding: 15px;
    border-radius: 5px;
    border-left: 3px solid var(--secondary-color);
}

.taf-period strong {
    color: var(--new-year-red);
    display: block;
    margin-bottom: 8px;
}

.taf-summary {
    background: white;
    padding: 15px;
    border-radius: 5px;
    margin-top: 15px;
}

/* 加载动画 */
.loader {
    border: 4px solid #f3f3f3;
    border-top: 4px solid var(--secondary-color);
    border-radius: 50%;
    width: 40px;
    height: 40px;
    animation: spin 1s linear infinite;
    margin: 0 auto 15px;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

/* 合作伙伴部分 */
.partners-section {
    background: var(--white);
}

.partners-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.partner-card {
    background: var(--gray-100);
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    transition: all 0.3s;
    border: 2px solid transparent;
}

.partner-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(196, 30, 58, 0.2);
    border-color: var(--new-year-gold);
}

.partner-logo {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, var(--secondary-color) 0%, var(--primary-color) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    transition: all 0.3s;
}

.partner-card:hover .partner-logo {
    transform: scale(1.1) rotate(5deg);
    background: linear-gradient(135deg, var(--new-year-gold) 0%, var(--accent-color) 100%);
}

.partner-logo i {
    font-size: 3rem;
    color: var(--white);
}

.partner-name {
    font-size: 1.5rem;
    color: var(--text-dark);
    margin-bottom: 15px;
    font-weight: 700;
}

.partner-description {
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 20px;
    min-height: 60px;
}

.partner-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--secondary-color);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
}

.partner-link:hover {
    color: var(--new-year-red);
    gap: 12px;
}

.partner-link i {
    font-size: 0.9rem;
}

/* 合作伙伴CTA区域 */
.partners-cta {
    background: linear-gradient(135deg, var(--new-year-red) 0%, var(--secondary-color) 100%);
    color: var(--white);
    padding: 50px;
    border-radius: 20px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.partners-cta::before {
    content: '🤝';
    position: absolute;
    font-size: 10rem;
    opacity: 0.1;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.partners-cta h3 {
    font-size: 2rem;
    margin-bottom: 15px;
    position: relative;
    z-index: 1;
}

.partners-cta p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    opacity: 0.9;
    position: relative;
    z-index: 1;
}

.partners-cta .btn {
    position: relative;
    z-index: 1;
}

/* 关于我们部分 */
.about-section {
    background: var(--gray-100);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: start;
}

/* 关于我们图片区域 */
.about-image {
    position: relative;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 30px;
}

.about-main-image {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 15px;
    box-shadow: var(--shadow-lg);
    transition: all 0.3s;
    grid-column: span 2;
}

.about-secondary-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 15px;
    box-shadow: var(--shadow);
    transition: all 0.3s;
    grid-column: span 2;
}

.about-main-image:hover,
.about-secondary-image:hover {
    transform: scale(1.05);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

.about-main-placeholder,
.about-secondary-placeholder {
    background: linear-gradient(135deg, var(--secondary-color), var(--primary-color));
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-weight: 600;
    text-align: center;
    padding: 10px;
}

.about-text h3 {
    color: var(--primary-color);
    font-size: 1.5rem;
    margin-bottom: 15px;
    margin-top: 20px;
}

.about-text h3:first-child {
    margin-top: 0;
}

.about-text p {
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 15px;
}

.about-values {
    list-style: none;
    margin-top: 15px;
}

.about-values li {
    padding: 10px 0;
    color: var(--text-light);
    display: flex;
    align-items: center;
    gap: 10px;
}

.about-values i {
    color: var(--secondary-color);
}

.about-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-top: 20px;
}

.stat-card {
    background: var(--white);
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: all 0.3s;
}

.stat-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.stat-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 15px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.stat-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: bold;
    color: var(--secondary-color);
    margin-bottom: 10px;
}

.stat-label {
    color: var(--text-light);
    font-size: 1rem;
}

/* 页脚 */
.footer {
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
    color: var(--white);
    padding: 60px 0 0;
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, var(--new-year-gold), var(--secondary-color), var(--primary-color), var(--new-year-gold));
}

.xiangyang-feature {
    background: linear-gradient(135deg, rgba(196, 30, 58, 0.1), rgba(255, 215, 0, 0.1));
    padding: 40px;
    border-radius: 20px;
    margin-bottom: 40px;
    border: 2px solid rgba(255, 215, 0, 0.3);
    position: relative;
}

.xiangyang-feature::before {
    content: '🏯';
    position: absolute;
    top: 20px;
    right: 30px;
    font-size: 4rem;
    opacity: 0.2;
}

.xiangyang-title {
    font-size: 2rem;
    color: var(--new-year-gold);
    margin-bottom: 25px;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.xiangyang-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 25px;
}

.xiangyang-item {
    background: rgba(255, 255, 255, 0.05);
    padding: 20px;
    border-radius: 15px;
    text-align: center;
    transition: all 0.3s;
    border: 2px solid rgba(255, 215, 0, 0.2);
}

.xiangyang-item:hover {
    transform: translateY(-5px);
    background: rgba(255, 215, 0, 0.15);
    border-color: var(--new-year-gold);
}

.xiangyang-icon {
    font-size: 3rem;
    margin-bottom: 15px;
    display: block;
}

.xiangyang-item h5 {
    font-size: 1.2rem;
    color: var(--new-year-gold);
    margin-bottom: 10px;
}

.xiangyang-item p {
    font-size: 0.95rem;
    color: var(--gray-200);
    line-height: 1.6;
}

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

.footer-section h4 {
    font-size: 1.3rem;
    margin-bottom: 20px;
    color: var(--accent-color);
}

.footer-section p {
    color: var(--gray-200);
    margin-bottom: 15px;
}

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

.footer-section ul li {
    margin-bottom: 10px;
}

.footer-section ul li a {
    color: var(--gray-200);
    text-decoration: none;
    transition: color 0.3s;
}

.footer-section ul li a:hover {
    color: var(--accent-color);
}

.footer-section ul li i {
    margin-right: 8px;
    color: var(--secondary-color);
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 15px;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: var(--secondary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    text-decoration: none;
    transition: all 0.3s;
}

.social-links a:hover {
    background: var(--accent-color);
    transform: translateY(-3px);
}

.footer-bottom {
    background: rgba(0, 0, 0, 0.3);
    border-top: 1px solid rgba(255, 215, 0, 0.2);
    padding: 25px 0;
    text-align: center;
}

.footer-bottom p {
    color: var(--gray-200);
    margin-bottom: 5px;
    font-size: 0.9rem;
}

.xiangyang-slogan {
    color: var(--new-year-gold);
    font-size: 1.1rem;
    margin-top: 10px;
    font-style: italic;
}

/* 响应式设计 */
@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 110px;
        flex-direction: column;
        background: var(--white);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: var(--shadow);
        padding: 20px 0;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-toggle {
        display: flex;
    }

    .brand-main {
        font-size: 1.2rem;
    }

    .brand-sub {
        font-size: 1.2rem;
    }

    .xiangyang-feature {
        padding: 25px 20px;
    }

    .xiangyang-title {
        font-size: 1.5rem;
        flex-direction: column;
    }

    .xiangyang-grid {
        grid-template-columns: 1fr;
    }

    .xiangyang-icon {
        font-size: 2.5rem;
    }

    .page-header {
        padding: 120px 0 60px;
    }

    .page-title {
        font-size: 2rem;
        flex-direction: column;
        gap: 10px;
    }

    .page-subtitle {
        font-size: 1rem;
    }

    .carousel-container {
        height: 600px;
    }

    .carousel-title {
        font-size: 2rem;
    }

    .carousel-subtitle {
        font-size: 1.2rem;
    }

    .carousel-caption h3 {
        font-size: 1rem;
    }

    .carousel-control {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }

    .carousel-control.prev {
        left: 10px;
    }

    .carousel-control.next {
        right: 10px;
    }

    .lantern {
        width: 50px;
        height: 80px;
        top: 15px;
    }

    .lantern-left {
        left: 20px;
    }

    .lantern-right {
        right: 20px;
    }

    .lantern-middle {
        width: 45px;
        height: 60px;
        font-size: 1.3rem;
    }

    .firecrackers {
        font-size: 2rem;
    }

    .firecrackers-left {
        left: 80px;
    }

    .firecrackers-right {
        right: 80px;
    }

    .announcement-text {
        padding: 0 30px;
        font-size: 0.9rem;
    }

    .countdown-value {
        font-size: 2rem;
    }

    .countdown-item {
        min-width: 70px;
        padding: 15px;
    }

    .welcome-content {
        margin: 20px;
        padding: 40px 30px;
    }

    .welcome-title {
        font-size: 1.6rem;
    }

    .welcome-fu {
        width: 90px;
        height: 90px;
        font-size: 3.5rem;
    }

    .couplet-line {
        font-size: 1rem;
    }

    .section-title {
        font-size: 2rem;
        flex-direction: column;
    }

    .partners-grid {
        grid-template-columns: 1fr;
    }

    .partners-cta {
        padding: 30px 20px;
    }

    .partners-cta h3 {
        font-size: 1.5rem;
    }

    .partners-cta p {
        font-size: 1rem;
    }

    .staff-grid {
        grid-template-columns: 1fr;
    }

    .guestbook-form-container,
    .guestbook-list-container {
        padding: 25px;
    }

    .form-title {
        font-size: 1.5rem;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .list-header {
        flex-direction: column;
        align-items: flex-start;
    }

    .filter-buttons {
        width: 100%;
        overflow-x: auto;
        padding-bottom: 10px;
    }

    .message-header {
        flex-direction: column;
        align-items: flex-start;
    }

    .about-content {
        grid-template-columns: 1fr;
    }

    .about-image {
        grid-template-columns: 1fr;
    }

    .about-main-image,
    .about-secondary-image {
        grid-column: span 1;
    }

    .about-stats {
        grid-template-columns: 1fr;
    }

    .event-card.featured {
        grid-column: span 1;
    }
}

@media (max-width: 480px) {
    .carousel-container {
        height: 500px;
    }

    .carousel-title {
        font-size: 1.5rem;
    }

    .carousel-subtitle {
        font-size: 1rem;
    }

    .carousel-buttons {
        flex-direction: column;
    }

    .carousel-caption h3 {
        font-size: 0.9rem;
    }

    .page-title {
        font-size: 1.5rem;
    }

    .staff-avatar {
        width: 100px;
        height: 100px;
    }

    .staff-avatar i {
        font-size: 100px;
    }

    .guestbook-form-container,
    .guestbook-list-container {
        padding: 20px;
    }

    .form-title {
        font-size: 1.3rem;
    }

    .section {
        padding: 50px 0;
    }

    .section-title {
        font-size: 1.5rem;
    }

    .news-grid,
    .events-grid,
    .services-grid {
        grid-template-columns: 1fr;
    }
}

/* 中国新年装饰 - 灯笼 */
.chinese-decorations {
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 998;
    pointer-events: none;
}

.lantern {
    position: absolute;
    top: 20px;
    width: 80px;
    height: 120px;
}

.lantern-left {
    left: 50px;
    animation: swingLeft 3s ease-in-out infinite;
}

.lantern-right {
    right: 50px;
    animation: swingRight 3s ease-in-out infinite;
}

@keyframes swingLeft {
    0%, 100% { transform: rotate(-5deg); }
    50% { transform: rotate(5deg); }
}

@keyframes swingRight {
    0%, 100% { transform: rotate(5deg); }
    50% { transform: rotate(-5deg); }
}

.lantern-body {
    position: relative;
    width: 100%;
    height: 100%;
}

.lantern-top {
    width: 60px;
    height: 15px;
    background: #8b4513;
    margin: 0 auto;
    border-radius: 50% 50% 0 0;
    position: relative;
}

.lantern-top::before {
    content: '';
    position: absolute;
    top: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 20px;
    background: #8b4513;
}

.lantern-middle {
    width: 70px;
    height: 90px;
    background: linear-gradient(135deg, #ff0000 0%, #cc0000 100%);
    margin: 0 auto;
    border-radius: 40%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-weight: bold;
    color: #ffd700;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    box-shadow: inset 0 0 20px rgba(255, 255, 255, 0.3), 0 5px 15px rgba(0, 0, 0, 0.3);
    border: 3px solid #8b4513;
}

.lantern-bottom {
    width: 60px;
    height: 15px;
    background: #8b4513;
    margin: 0 auto;
    border-radius: 0 0 50% 50%;
}

.lantern-tassel {
    width: 4px;
    height: 40px;
    background: linear-gradient(to bottom, #8b4513, #ffd700);
    margin: 0 auto;
    position: relative;
}

.lantern-tassel::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 15px;
    height: 15px;
    background: #ffd700;
    border-radius: 50%;
}

/* 鞭炮装饰 */
.firecrackers {
    position: absolute;
    font-size: 3rem;
    opacity: 0.7;
    animation: float 4s ease-in-out infinite;
}

.firecrackers-left {
    left: 150px;
    top: 50px;
}

.firecrackers-right {
    right: 150px;
    top: 80px;
    animation-delay: 1s;
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-15px); }
}

/* 欢迎弹窗 */
.welcome-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 10000;
    opacity: 1;
    transition: opacity 0.5s;
}

.welcome-modal.hidden {
    opacity: 0;
    pointer-events: none;
}

.welcome-content {
    background: linear-gradient(135deg, #fff9e6 0%, #ffe5e5 100%);
    padding: 50px 40px;
    border-radius: 30px;
    text-align: center;
    max-width: 550px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    animation: modalSlideIn 0.8s ease-out;
    border: 5px solid var(--new-year-gold);
    position: relative;
    overflow: hidden;
}

.welcome-content::before {
    content: '🏮';
    position: absolute;
    top: 10px;
    left: 10px;
    font-size: 2rem;
    opacity: 0.3;
}

.welcome-content::after {
    content: '🏮';
    position: absolute;
    top: 10px;
    right: 10px;
    font-size: 2rem;
    opacity: 0.3;
}

@keyframes modalSlideIn {
    0% {
        transform: translateY(-100px) scale(0.8);
        opacity: 0;
    }
    100% {
        transform: translateY(0) scale(1);
        opacity: 1;
    }
}

/* 福字装饰 */
.welcome-fu {
    font-size: 5rem;
    font-weight: bold;
    color: #ff0000;
    background: linear-gradient(135deg, #ffd700, #ffed4e);
    width: 120px;
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(255, 0, 0, 0.3);
    border: 5px solid #ff0000;
    animation: fuRotate 3s ease-in-out infinite;
    position: relative;
}

.welcome-fu::before {
    content: '';
    position: absolute;
    inset: -10px;
    background: linear-gradient(45deg, #ff0000, transparent, #ff0000);
    border-radius: 15px;
    z-index: -1;
    opacity: 0.3;
    animation: fuGlow 2s infinite;
}

@keyframes fuRotate {
    0%, 100% { transform: rotate(0deg) scale(1); }
    25% { transform: rotate(-5deg) scale(1.05); }
    50% { transform: rotate(0deg) scale(1); }
    75% { transform: rotate(5deg) scale(1.05); }
}

@keyframes fuGlow {
    0%, 100% { opacity: 0.3; }
    50% { opacity: 0.6; }
}

/* 对联装饰 */
.welcome-couplet {
    background: linear-gradient(to right, #ff0000, #cc0000);
    padding: 15px 20px;
    margin: 20px 0;
    border-radius: 10px;
    border: 2px solid #ffd700;
    box-shadow: 0 4px 10px rgba(255, 0, 0, 0.3);
}

.couplet-line {
    color: #ffd700;
    font-size: 1.1rem;
    font-weight: bold;
    margin: 5px 0;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    letter-spacing: 2px;
}

.welcome-title {
    font-size: 2.5rem;
    color: var(--new-year-red);
    margin-bottom: 20px;
    font-weight: bold;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
}

.welcome-message {
    font-size: 1.3rem;
    color: var(--text-dark);
    margin-bottom: 15px;
    font-weight: 500;
}

.welcome-greeting {
    font-size: 1.1rem;
    color: var(--text-light);
    margin: 25px 0 15px;
    font-weight: 600;
}

.welcome-wishes {
    list-style: none;
    text-align: left;
    display: inline-block;
    margin: 0 0 30px 0;
    padding: 0;
}

.welcome-wishes li {
    font-size: 1.1rem;
    color: var(--text-dark);
    margin: 10px 0;
    padding-left: 10px;
    transition: transform 0.3s;
}

.welcome-wishes li:hover {
    transform: translateX(10px);
}

.welcome-button {
    background: linear-gradient(135deg, var(--new-year-red), var(--secondary-color));
    color: var(--white);
    border: none;
    padding: 15px 40px;
    font-size: 1.2rem;
    font-weight: bold;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s;
    box-shadow: 0 4px 15px rgba(212, 22, 60, 0.4);
}

.welcome-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(212, 22, 60, 0.6);
}

.welcome-button:active {
    transform: translateY(-1px);
}

/* 平滑滚动 */
html {
    scroll-behavior: smooth;
}

/* 新闻中心页面样式 */
.news-filter {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 50px;
    flex-wrap: wrap;
}

.news-grid-full {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.news-card-full {
    background: var(--gray-100);
    padding: 35px;
    border-radius: 15px;
    transition: all 0.3s;
    border-left: 5px solid var(--secondary-color);
    position: relative;
}

.news-card-full:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.news-card-full.new-year-highlight {
    background: linear-gradient(135deg, #ffe5e5 0%, #fff5e5 100%);
    border-left: 5px solid var(--new-year-gold);
}

.news-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: linear-gradient(135deg, var(--new-year-gold), #ffed4e);
    color: var(--new-year-red);
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    animation: pulse-badge 2s infinite;
}

.news-card-full .news-title {
    font-size: 1.8rem;
    margin-bottom: 20px;
}

.news-card-full .news-excerpt {
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 25px;
}

.news-meta {
    display: flex;
    gap: 30px;
    margin-bottom: 20px;
    padding-top: 15px;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.news-meta span {
    color: var(--text-light);
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    gap: 8px;
}

.news-meta i {
    color: var(--secondary-color);
}

/* 分页样式 */
.pagination {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 60px;
}

.pagination-btn {
    padding: 12px 20px;
    border: 2px solid var(--gray-200);
    background: white;
    color: var(--text-dark);
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s;
    font-size: 1rem;
    display: flex;
    align-items: center;
    gap: 8px;
}

.pagination-btn:hover:not(:disabled) {
    border-color: var(--secondary-color);
    color: var(--secondary-color);
}

.pagination-btn.active {
    background: var(--secondary-color);
    color: white;
    border-color: var(--secondary-color);
}

.pagination-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

/* 平滑滚动 */
html {
    scroll-behavior: smooth;
}

/* 页面标题样式 */
.page-header {
    background: linear-gradient(135deg, #c41e3a 0%, #ff6b6b 50%, #ffd700 100%);
    color: var(--white);
    padding: 150px 0 80px;
    margin-top: 70px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        repeating-linear-gradient(45deg, transparent, transparent 35px, rgba(255,255,255,.08) 35px, rgba(255,255,255,.08) 70px);
}

.page-header-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.3);
}

.page-header .container {
    position: relative;
    z-index: 1;
}

.page-title {
    font-size: 3rem;
    margin-bottom: 15px;
    font-weight: 700;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
}

.page-subtitle {
    font-size: 1.2rem;
    opacity: 0.9;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 20px;
}

.breadcrumb {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-size: 1rem;
    margin-top: 20px;
}

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

.breadcrumb a:hover {
    opacity: 0.8;
}

.breadcrumb span {
    opacity: 0.7;
}

.nav-menu a.active {
    color: var(--secondary-color);
}

/* 合作伙伴特殊样式 */
.featured-partner {
    border: 3px solid var(--new-year-gold);
    position: relative;
}

.partner-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: linear-gradient(135deg, var(--new-year-gold), #ffed4e);
    color: var(--new-year-red);
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    z-index: 10;
}

.partner-stats {
    display: flex;
    justify-content: space-around;
    margin: 20px 0;
    padding: 15px;
    background: white;
    border-radius: 10px;
}

.partner-stats .stat-item {
    text-align: center;
}

.partner-stats .stat-item strong {
    display: block;
    font-size: 1.3rem;
    color: var(--secondary-color);
    margin-bottom: 5px;
}

.partner-stats .stat-item span {
    font-size: 0.9rem;
    color: var(--text-light);
}

.cta-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

/* 管理团队样式 */
.staff-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.staff-card {
    background: var(--gray-100);
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    transition: all 0.3s;
    border: 2px solid transparent;
}

.staff-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(196, 30, 58, 0.2);
    border-color: var(--secondary-color);
}

.staff-card.executive {
    border: 3px solid var(--new-year-gold);
    background: linear-gradient(135deg, #fff9e6 0%, #ffe5e5 100%);
}

.staff-avatar {
    width: 120px;
    height: 120px;
    margin: 0 auto 20px;
    position: relative;
}

.staff-avatar i {
    font-size: 120px;
    color: var(--secondary-color);
}

.staff-status {
    position: absolute;
    bottom: 10px;
    right: 10px;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    border: 3px solid white;
}

.staff-status.online {
    background: #4caf50;
}

.staff-status.offline {
    background: #9e9e9e;
}

.staff-info {
    text-align: center;
}

.staff-name {
    font-size: 1.5rem;
    color: var(--text-dark);
    margin-bottom: 10px;
    font-weight: 700;
}

.staff-position {
    color: var(--secondary-color);
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 15px;
}

.staff-bio {
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 20px;
}

.staff-stats {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin: 20px 0;
    flex-wrap: wrap;
}

.stat-badge {
    background: white;
    padding: 8px 15px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
    color: var(--text-dark);
    border: 2px solid var(--secondary-color);
}

.stat-badge i {
    color: var(--secondary-color);
}

.staff-contact {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 20px;
}

.staff-contact a {
    width: 40px;
    height: 40px;
    background: var(--secondary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    text-decoration: none;
    transition: all 0.3s;
}

.staff-contact a:hover {
    background: var(--new-year-gold);
    transform: scale(1.1);
}

/* 留言板样式 */
.guestbook-section {
    background: var(--gray-100);
}

.guestbook-form-container {
    background: var(--white);
    padding: 40px;
    border-radius: 15px;
    box-shadow: var(--shadow);
    margin-bottom: 50px;
}

.form-title {
    font-size: 1.8rem;
    color: var(--primary-color);
    margin-bottom: 30px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.form-title i {
    color: var(--secondary-color);
}

.guestbook-form {
    max-width: 800px;
}

.form-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 10px;
}

.form-group label i {
    color: var(--secondary-color);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid var(--gray-200);
    border-radius: 8px;
    font-size: 1rem;
    transition: all 0.3s;
    font-family: inherit;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--secondary-color);
    box-shadow: 0 0 0 3px rgba(255, 107, 107, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.char-count {
    text-align: right;
    font-size: 0.9rem;
    color: var(--text-light);
    margin-top: 5px;
}

.guestbook-list-container {
    background: var(--white);
    padding: 40px;
    border-radius: 15px;
    box-shadow: var(--shadow);
}

.list-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
    flex-wrap: wrap;
    gap: 20px;
}

.filter-buttons {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 8px 20px;
    border: 2px solid var(--gray-200);
    background: white;
    color: var(--text-dark);
    border-radius: 20px;
    cursor: pointer;
    transition: all 0.3s;
    font-size: 0.95rem;
}

.filter-btn:hover {
    border-color: var(--secondary-color);
    color: var(--secondary-color);
}

.filter-btn.active {
    background: var(--secondary-color);
    color: white;
    border-color: var(--secondary-color);
}

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

.message-item {
    background: var(--gray-100);
    padding: 25px;
    border-radius: 12px;
    border-left: 4px solid var(--secondary-color);
    transition: all 0.3s;
}

.message-item:hover {
    transform: translateX(5px);
    box-shadow: var(--shadow);
}

.message-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
    flex-wrap: wrap;
    gap: 15px;
}

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

.user-avatar {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.user-avatar i {
    font-size: 50px;
    color: var(--secondary-color);
}

.user-info {
    display: flex;
    flex-direction: column;
}

.user-name {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 5px;
}

.message-time {
    font-size: 0.9rem;
    color: var(--text-light);
    display: flex;
    align-items: center;
    gap: 5px;
}

.message-category {
    padding: 5px 15px;
    border-radius: 15px;
    font-size: 0.85rem;
    font-weight: 600;
}

.message-category.feedback {
    background: #e3f2fd;
    color: #1976d2;
}

.message-category.suggestion {
    background: #f3e5f5;
    color: #7b1fa2;
}

.message-category.complaint {
    background: #ffebee;
    color: #c62828;
}

.message-category.cooperation {
    background: #e8f5e9;
    color: #388e3c;
}

.message-content {
    color: var(--text-dark);
    line-height: 1.7;
    margin-bottom: 15px;
    padding: 0 10px;
}

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

.reply-btn,
.like-btn {
    background: white;
    border: 2px solid var(--gray-200);
    padding: 8px 20px;
    border-radius: 20px;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.95rem;
    color: var(--text-dark);
}

.reply-btn:hover {
    border-color: var(--secondary-color);
    color: var(--secondary-color);
}

.like-btn:hover {
    border-color: var(--accent-color);
    color: var(--accent-color);
}

.like-btn.liked {
    background: var(--accent-color);
    color: white;
    border-color: var(--accent-color);
}

.admin-reply {
    margin-top: 20px;
    padding: 20px;
    background: linear-gradient(135deg, #fff9e6 0%, #ffe5e5 100%);
    border-left: 4px solid var(--new-year-gold);
    border-radius: 8px;
}

.reply-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--secondary-color);
    color: white;
    padding: 5px 15px;
    border-radius: 15px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 10px;
}

.admin-reply p {
    color: var(--text-dark);
    line-height: 1.6;
    margin-bottom: 10px;
}

.reply-time {
    font-size: 0.85rem;
    color: var(--text-light);
}

.processing-status {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #fff3e0;
    color: #e65100;
    padding: 8px 15px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    margin: 10px 0;
    border: 2px solid #ffb74d;
}

.processing-status i {
    font-size: 1rem;
}

@keyframes spin {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

.fa-spin {
    animation: spin 1s linear infinite;
}

/* 平滑滚动 */
html {
    scroll-behavior: smooth;
}

/* 新闻中心页面样式 */
.news-filter {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 50px;
    flex-wrap: wrap;
}

.news-grid-full {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.news-card-full {
    background: var(--gray-100);
    padding: 35px;
    border-radius: 15px;
    transition: all 0.3s;
    border-left: 5px solid var(--secondary-color);
    position: relative;
}

.news-card-full:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.news-card-full.new-year-highlight {
    background: linear-gradient(135deg, #ffe5e5 0%, #fff5e5 100%);
    border-left: 5px solid var(--new-year-gold);
}

.news-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: linear-gradient(135deg, var(--new-year-gold), #ffed4e);
    color: var(--new-year-red);
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    animation: pulse-badge 2s infinite;
}

.news-card-full .news-title {
    font-size: 1.8rem;
    margin-bottom: 20px;
}

.news-card-full .news-excerpt {
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 25px;
}

.news-meta {
    display: flex;
    gap: 30px;
    margin-bottom: 20px;
    padding-top: 15px;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.news-meta span {
    color: var(--text-light);
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    gap: 8px;
}

.news-meta i {
    color: var(--secondary-color);
}

/* 分页样式 */
.pagination {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 60px;
}

.pagination-btn {
    padding: 12px 20px;
    border: 2px solid var(--gray-200);
    background: white;
    color: var(--text-dark);
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s;
    font-size: 1rem;
    display: flex;
    align-items: center;
    gap: 8px;
}

.pagination-btn:hover:not(:disabled) {
    border-color: var(--secondary-color);
    color: var(--secondary-color);
}

.pagination-btn.active {
    background: var(--secondary-color);
    color: white;
    border-color: var(--secondary-color);
}

.pagination-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

/* 平滑滚动 */
html {
    scroll-behavior: smooth;
}

/* 自定义滚动条 */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: var(--gray-100);
}

::-webkit-scrollbar-thumb {
    background: var(--secondary-color);
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--primary-color);
}
