/* 全局样式 */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Microsoft YaHei', sans-serif;
    line-height: 1.6;
    background-color: #f5f5f5;
    padding-top: 80px; /* 为固定导航栏留出空间 */
}

/* 导航栏样式 */
.navbar {
    background-color: rgba(255, 255, 255, 0.95);
    padding: 15px 30px;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.5rem;
    font-weight: bold;
    color: #ff69b4;
}

.logo img {
    height: 40px;
    width: auto;
}

.nav-links {
    display: flex;
    gap: 20px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav-links a {
    color: #333;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: #ff69b4;
}

/* 手风琴轮播图样式 */
.accordion-slider {
    height: 100vh;
    display: flex;
    overflow: hidden;
    margin-top: 60px;
}

.slide {
    position: relative;
    min-width: 20%;
    transition: all 0.5s ease;
    background-size: cover;
    background-position: center;
    filter: brightness(0.7);
    cursor: pointer;
}

.slide.active {
    min-width: 40%;
    filter: brightness(1);
}

.slide-content {
    position: absolute;
    bottom: 20%;
    left: 20px;
    right: 20px;
    color: white;
    opacity: 0;
    transition: opacity 0.3s ease;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.slide.active .slide-content {
    opacity: 1;
}

.slide-content h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.btn {
    display: inline-block;
    padding: 0.8rem 1.5rem;
    background-color: #ff69b4;
    color: white;
    text-decoration: none;
    border-radius: 25px;
    margin-top: 1rem;
    transition: background-color 0.3s;
}

.btn:hover {
    background-color: #ff1493;
}

/* 页脚样式 */
footer {
    background-color: #f8f8f8;
    padding: 40px 0;
    margin-top: 50px;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.contact-info {
    margin-bottom: 20px;
}

.contact-info h3 {
    color: #ff69b4;
    font-size: 1.5em;
    margin-bottom: 15px;
}

.contact-info p {
    color: #666;
    margin: 5px 0;
}

.social-media {
    margin: 20px 0;
}

.social-media a {
    color: #ff69b4;
    font-size: 24px;
    margin: 0 10px;
    transition: color 0.3s ease;
}

.social-media a:hover {
    color: #ff4da6;
}

.copyright {
    color: #888;
    font-size: 0.9em;
    margin-top: 20px;
}

/* 通用样式 */
.section-title {
    text-align: center;
    font-size: 2.5em;
    color: #333;
    margin: 50px 0 30px;
    position: relative;
}

.section-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background: #ff69b4;
    margin: 10px auto;
}

/* 最新资讯 */
.news-section {
    padding: 40px 20px;
    background: #fff;
}

.news-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.news-card {
    background: #fff;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.news-card:hover {
    transform: translateY(-5px);
}

.news-image {
    position: relative;
    height: 200px;
}

.news-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.news-tag {
    position: absolute;
    top: 10px;
    right: 10px;
    background: #ff69b4;
    color: #fff;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.9em;
}

.news-content {
    padding: 20px;
}

.news-content h3 {
    margin: 0 0 10px;
    color: #333;
    font-size: 1.2em;
}

.news-date {
    color: #888;
    font-size: 0.9em;
}

/* 创作团队 */
.team-section {
    padding: 40px 20px;
    background: #f9f9f9;
}

.team-carousel {
    display: flex;
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
    overflow-x: auto;
    padding: 20px 0;
    scrollbar-width: none;
}

.team-carousel::-webkit-scrollbar {
    display: none;
}

.team-member {
    flex: 0 0 300px;
    background: #fff;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.member-image {
    height: 200px;
}

.member-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.member-info {
    padding: 20px;
    text-align: center;
}

.member-role {
    color: #ff69b4;
    font-weight: bold;
    margin: 5px 0;
}

.member-description {
    color: #666;
    font-size: 0.9em;
    line-height: 1.6;
}

/* 粉丝互动区 */
.fan-section {
    padding: 40px 20px;
    background: #fff;
}

.fan-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.fan-art h3, .fan-comments h3 {
    color: #333;
    margin-bottom: 20px;
    text-align: center;
}

.art-gallery {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
}

.art-item {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
}

.art-item img {
    width: 100%;
    height: 150px;
    object-fit: cover;
}

.artist {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0,0,0,0.7);
    color: #fff;
    padding: 5px;
    font-size: 0.8em;
    text-align: center;
}

.submit-btn {
    display: block;
    width: 150px;
    margin: 20px auto 0;
    padding: 10px;
    background: #ff69b4;
    color: #fff;
    text-align: center;
    border-radius: 25px;
    text-decoration: none;
    transition: background 0.3s ease;
}

.submit-btn:hover {
    background: #ff4da6;
}

.comments-wall {
    display: grid;
    gap: 20px;
}

.comment-card {
    background: #f9f9f9;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.comment-card p {
    color: #333;
    font-style: italic;
    margin-bottom: 10px;
}

.comment-author {
    color: #888;
    font-size: 0.9em;
}

/* 周边商品 */
.merchandise-section {
    padding: 40px 20px;
    background: #f9f9f9;
}

.merchandise-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.merchandise-item {
    background: #fff;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    text-align: center;
    transition: transform 0.3s ease;
}

.merchandise-item:hover {
    transform: translateY(-5px);
}

.merchandise-item img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.merchandise-item h3 {
    margin: 15px 0 10px;
    padding: 0 15px;
    color: #333;
    font-size: 1.1em;
}

.price {
    color: #ff69b4;
    font-size: 1.2em;
    font-weight: bold;
    margin: 10px 0;
}

.buy-btn {
    display: inline-block;
    padding: 8px 25px;
    margin: 10px 0 20px;
    background: #ff69b4;
    color: #fff;
    text-decoration: none;
    border-radius: 25px;
    transition: background 0.3s ease;
}

.buy-btn:hover {
    background: #ff4da6;
}

/* 活动日历 */
.calendar-section {
    padding: 40px 20px;
    background: #fff;
}

.calendar-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.calendar-event {
    display: flex;
    align-items: center;
    background: #f9f9f9;
    border-radius: 15px;
    padding: 20px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.event-date {
    background: #ff69b4;
    color: #fff;
    padding: 15px;
    border-radius: 10px;
    text-align: center;
    margin-right: 20px;
}

.event-date .month {
    display: block;
    font-size: 0.9em;
}

.event-date .day {
    display: block;
    font-size: 1.8em;
    font-weight: bold;
    line-height: 1;
}

.event-info h3 {
    color: #333;
    margin: 0 0 10px;
}

.event-info p {
    color: #666;
    margin: 5px 0;
    font-size: 0.9em;
}

/* 导语部分样式 */
.intro-section {
    background: linear-gradient(rgba(255, 105, 180, 0.1), rgba(255, 255, 255, 0.9));
    padding: 40px 20px;
    text-align: center;
    margin-bottom: 20px;
    margin-top: 20px;
}

.intro-content {
    max-width: 800px;
    margin: 0 auto;
}

.intro-content h1 {
    color: #ff69b4;
    font-size: 2.5em;
    margin-bottom: 20px;
    font-weight: 700;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
}

.intro-content p {
    color: #666;
    font-size: 1.2em;
    line-height: 1.6;
}

/* 轮播图样式 */
.carousel {
    position: relative;
    width: 100%;
    max-width: 1200px;
    margin: 2rem auto;
    padding: 2rem;
    overflow: hidden;
}

.carousel-inner {
    display: flex;
    transition: transform 0.5s ease-in-out;
    gap: 1rem;
    padding: 1rem;
}

.carousel-item {
    min-width: calc(25% - 0.75rem);
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
    transition: all 0.5s ease;
    transform-origin: center center;
    cursor: pointer;
}

.carousel-item.active {
    transform: scale(1.05);
    box-shadow: 0 15px 30px rgba(0,0,0,0.2);
    z-index: 2;
}

.carousel-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0,0,0,0.1), rgba(0,0,0,0.7));
    z-index: 1;
}

.carousel-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.2);
}

.carousel-item img {
    width: 100%;
    height: 400px;
    object-fit: cover;
}

.carousel-content {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 2rem;
    color: white;
    z-index: 2;
    transform: translateY(0);
    transition: transform 0.3s ease;
}

.carousel-item:hover .carousel-content {
    transform: translateY(-10px);
}

.carousel-content h2 {
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.carousel-content p {
    font-size: 1rem;
    margin-bottom: 1.5rem;
    opacity: 0.9;
}

.carousel-content .btn {
    display: inline-block;
    padding: 0.8rem 1.5rem;
    background: linear-gradient(45deg, #ff69b4, #ff8dc2);
    color: white;
    text-decoration: none;
    border-radius: 25px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.carousel-content .btn:hover {
    transform: scale(1.05);
    box-shadow: 0 5px 15px rgba(255,105,180,0.4);
}

.carousel-nav {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 2rem;
}

.carousel-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #ddd;
    cursor: pointer;
    transition: all 0.3s ease;
}

.carousel-dot.active {
    background: #ff69b4;
    transform: scale(1.2);
}

.carousel-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    background: rgba(255,255,255,0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 3;
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.carousel-arrow:hover {
    background: white;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.carousel-arrow.prev {
    left: 1rem;
}

.carousel-arrow.next {
    right: 1rem;
}

/* 响应式设计 */
@media (max-width: 1024px) {
    .carousel-item {
        min-width: calc(33.333% - 0.667rem);
    }
}

@media (max-width: 768px) {
    .carousel-item {
        min-width: calc(50% - 0.5rem);
    }
    
    .carousel {
        padding: 1rem;
    }
}

@media (max-width: 480px) {
    .carousel-item {
        min-width: calc(100% - 2rem);
    }
}

@media (max-width: 768px) {
    .fan-content {
        grid-template-columns: 1fr;
    }

    .art-gallery {
        grid-template-columns: repeat(2, 1fr);
    }

    .team-carousel {
        padding: 20px;
    }

    .calendar-event {
        flex-direction: column;
        text-align: center;
    }

    .event-date {
        margin: 0 0 15px;
    }

    .footer-content {
        padding: 0 15px;
    }

    .contact-info h3 {
        font-size: 1.3em;
    }

    .social-media a {
        font-size: 20px;
        margin: 0 8px;
    }

    .carousel {
        height: 300px;
        margin-bottom: 30px;
    }

    .carousel-content h2 {
        font-size: 1.8em;
    }

    .carousel-content p {
        font-size: 1em;
    }

    .navbar {
        padding: 10px 20px;
    }

    body {
        padding-top: 60px;
    }

    .intro-section {
        padding: 30px 15px;
    }

    .intro-content h1 {
        font-size: 2em;
    }

    .intro-content p {
        font-size: 1.1em;
    }
}

@media (max-width: 480px) {
    .art-gallery {
        grid-template-columns: 1fr;
    }

    .news-grid {
        grid-template-columns: 1fr;
    }

    .merchandise-grid {
        grid-template-columns: 1fr;
    }

    .carousel {
        height: 250px;
        margin-bottom: 20px;
    }

    .carousel-content h2 {
        font-size: 1.5em;
    }

    .carousel-content p {
        font-size: 0.9em;
    }
} 