* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Noto Sans SC', sans-serif;
}

body {
    color: white;
    overflow-x: hidden;
    background: #000;
}

/* 导航栏样式 - 新增部分 */
nav {
    display: flex;
    justify-content: center; /* 水平居中 */
    align-items: center; /* 垂直居中 */
    padding: 20px 0;
    background: rgba(0, 0, 0, 0.5); /* 半透明背景 */
    position: relative; /* 确保导航栏在最上层 */
    z-index: 100;
    width: 100%;
}

nav a {
    color: white;
    text-decoration: none;
    margin: 0 15px;
    font-weight: bold;
    padding: 8px 15px;
    border-radius: 20px;
    transition: all 0.3s ease;
}

nav a:hover {
    background: rgba(255, 255, 255, 0.2);
}

/* 季节展示区 */
.seasons-container {
    display: flex;
    height: 96vh;
    margin-top: -60px; /* 抵消导航栏高度 */
    padding-top: 60px; /* 确保内容不被导航栏遮挡 */
}

.season-column {
    flex: 1;
    position: relative;
    overflow: hidden;
    transition: all 0.5s ease;
    cursor: pointer;
}

.season-column:hover {
    flex: 1.2;
}

.season-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.season-column:hover .season-image {
    transform: scale(1.05);
}

.season-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
    padding: 30px;
    text-align: center;
}

.season-title {
    font-size: 2.5rem;
    margin-bottom: 10px;
    text-shadow: 0 2px 5px rgba(0,0,0,0.5);
}

.season-desc {
    font-size: 1.1rem;
    opacity: 0.9;
}

/* 响应式设计 */
@media (max-width: 768px) {
    .seasons-container {
        flex-direction: column;
        height: auto;
        margin-top: 0;
        padding-top: 0;
    }
    
    .season-column {
        height: 25vh;
    }
    
    .season-title {
        font-size: 1.8rem;
    }
    
    nav {
        flex-direction: column;
        padding: 15px 0;
    }
    
    nav a {
        margin: 5px 0;
        padding: 5px 10px;
    }
}
.qinquan p{
             color: #ffffff;
             text-align: center;
        }
        .qinquan a {
              color: red;
        }
