* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary: #6EC3F4;
    --secondary: #A2D9FF;
    --accent: #FFB74D;
    --text: #333;
    --light: #f8f9fa;
    --border: #e0e0e0;
}

/* 基础样式 */
html {/*
    scroll-behavior: smooth;
    scroll-padding-top: 100px;*/
}

body {
    font-family: 'Microsoft YaHei', sans-serif;
    background: linear-gradient(135deg, #e6f2ff 0%, #f0f8ff 100%);
    color: var(--text);
    line-height: 1.6;
    min-height: 100vh;
   /* padding-top: 100px;*/
}

/* 进度条 */
.progress-bar {
    height: 3px;
    background: var(--accent);
    position: fixed;
    top: 0;
    left: 0;
    z-index: 999;
    transition: width 0.3s ease;
}

/* 标题样式 */
.header {
    text-align: center;
    padding: 2rem 1rem;
    position: relative;
    margin-bottom: 2rem;
}

.header h1 {
    font-size: clamp(2rem, 6vw, 3rem);
    color: #2c3e50;
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 2rem;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 50px;
    box-shadow: 0 4px 20px rgba(74, 155, 255, 0.2);
}

/* 导航标签页 */
nav {
    max-width: 1200px;
    margin: 0 auto 3rem;
    padding: 0 1rem;
    position: sticky;
    top: 20px;
    z-index: 100;
}

.nav-tabs {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    justify-content: center;
}

.nav-item {
    padding: 1rem 2rem;
    border-radius: 30px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    color: white;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 0.8rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 15px rgba(110,195,244,0.3);
}

.nav-item.active {
    background: linear-gradient(135deg, var(--accent) 0%, #ffb74d 100%);
    transform: scale(1.05);
    box-shadow: 0 6px 20px rgba(255,183,77,0.4);
}

/* 选项卡切换样式 */
.section.hidden {
    display: none;
    opacity: 0;
    transform: translateY(30px);
}

.section.active {
    display: block;
    opacity: 1;
    transform: translateY(0);
}


/* 内容区块 */
.section {
    max-width: 1200px;
    margin: 3rem auto;
    padding: 2.5rem;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 20px;
    box-shadow: 0 8px 30px rgba(74, 155, 255, 0.1);
    position: relative;
    display: block;
    opacity: 1;
    transform: translateY(0);
    transition: all 0.6s ease-out;
}
/*
.section.visible {
    opacity: 1;
    transform: translateY(0);
}*/

.section::before {
    content: "";
    position: absolute;
    top: -10px;
    left: 50%;
    width: 80%;
    height: 4px;
    background: var(--primary);
    transform: translateX(-50%);
    border-radius: 2px;
}

.section h2 {
    color: var(--primary);
    margin-bottom: 1.8rem;
    padding-bottom: 0.8rem;
    border-bottom: 2px solid var(--secondary);
    font-size: 2rem;
}

/* 响应式设计 */
@media (max-width: 768px) {
    .nav-item {
        padding: 0.8rem 1.5rem;
        font-size: 0.9rem;
    }
    
    .section {
        margin: 2rem 1rem;
        padding: 1.5rem;
    }
    
    .header h1 {
        padding: 0.8rem 1.5rem;
    }
}

@media (max-width: 480px) {
    .nav-tabs {
        gap: 0.5rem;
    }
    
    .nav-item {
        padding: 0.6rem 1.2rem;
    }
}

/* PC端3列布局 */
@media (min-width: 1024px) {
    .interview-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .interview-image {
        height: 360px; /* 增大PC端图片高度 */
    }
}

/* 平板端2列布局 */
@media (min-width: 768px) and (max-width: 1023px) {
    .interview-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* 移动端垂直排列 */
@media (max-width: 767px) {
    .interview-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .interview-image {
        height: 280px; /* 调整移动端图片高度 */
    }
}



@keyframes popup {
    0% {
        opacity: 0;
        transform: translate(-50%, -45%) scale(0.9);
    }
    100% {
        opacity: 1;
        transform: translate(-50%, -50%) scale(1);
    }
}

/* 滚动条样式 */
.media-window::-webkit-scrollbar {
    width: 8px;
}
.media-window::-webkit-scrollbar-thumb {
    background: var(--primary);
    border-radius: 4px;
}

/* 个人简介 */
.bio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
    margin-top: 1.5rem;
}

.bio-column h3 {
    color: var(--accent);
    margin-bottom: 1.2rem;
    font-size: 1.5rem;
}

.bio-column p {
    margin-bottom: 1.2rem;
    text-align: justify;
    word-wrap: break-word;
    overflow-wrap: break-word;
    word-break: break-word;
    hyphens: auto;
}

@media (max-width: 768px) {
    .bio-column p {
        /* 移动端额外优化 */
        line-height: 1.8;
        font-size: 0.95rem;
        padding: 0 0.5rem;
    }
}

.bio-table {
    max-height: 800px;
    overflow-y: auto;
}

table {
    width: 100%;
    border-collapse: collapse;
}

th, td {
    padding: 15px 8px;
    text-align: left;
    border-bottom: 1px solid var(--border);
}

th {
    background-color: #f0f7ff;
    color: var(--primary);
    font-weight: 600;
}

tr:hover {
    background-color: #f5f9ff;
}

.achievements {
    list-style-type: none;
}

.achievements li {
    padding: 0.8rem 1rem;
    margin-bottom: 0.8rem;
    background: var(--light);
    border-left: 4px solid var(--primary);
    border-radius: 0 8px 8px 0;
}

@media (max-width: 480px) {
    .bio-column p {
        padding: 0 10px;
        line-height: 1.7;
    }
    
    .bio-column {
        padding: 0 10px;
    }
}

/* 针对超小屏幕（如折叠屏） */
@media (max-width: 400px) {
    .bio-column p {
        padding: 0 12px;
        font-size: 0.92rem;
        line-height: 1.8;
    }
    
    .bio-column {
        padding: 0 12px;
    }
    
    .section {
        margin: 1.5rem 0.5rem;
        padding: 1.2rem;
    }
}

@media (max-width: 360px) {
    .bio-column p {
        padding: 0 8px;
        font-size: 0.9rem;
    }
    
    .bio-column {
        padding: 0 8px;
    }
    
    .section {
        margin: 1rem 0.3rem;
        padding: 1rem;
    }
}
        
/* 比赛视频 */
.video-grid {
    display: grid;
    gap: 2.5rem;
    margin: 2rem 0;
}

.results-column, .videos-column {
    background: var(--light);
    padding: 1.8rem;
    border-radius: 15px;
}

.results-column h3, .videos-column h3 {
    color: var(--accent);
    margin-bottom: 1.5rem;
    font-size: 1.6rem;
}

.achievement-table {
    max-height: 400px;
    overflow-y: auto;
}

table {
    width: 100%;
    border-collapse: collapse;
}

th, td {
    padding: 12px 15px;
    text-align: left;
    border-bottom: 1px solid var(--border);
}

th {
    background-color: #f0f7ff;
    color: var(--primary);
    font-weight: 600;
}

tr:hover {
    background-color: #f5f9ff;
}

.video-collection {
    display: grid;
    gap: 1.5rem;
}

.video-item {
    display: flex;
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.08);
    text-decoration: none;
    color: inherit;
    transition: all 0.3s;
}

.video-thumb {
    position: relative;
    width: 40%;
    min-width: 300px;
    overflow: hidden;
}

.video-thumb img {
    width: 100%;
    height: 100%;
    min-height: 280px;
    object-fit: cover;
    transition: transform 0.3s;
}

.play-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    font-size: 2.8rem;
    opacity: 0.8;
    transition: all 0.3s;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.video-info {
    padding: 1.2rem;
    flex-grow: 1;
}

.video-info h4 {
    color: var(--primary);
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
}

.video-duration {
    display: inline-block;
    background: var(--accent);
    color: white;
    padding: 0.2rem 0.8rem;
    border-radius: 20px;
    font-size: 0.9rem;
    margin-top: 0.5rem;
}

.pan-link {
    display: inline-block;
    margin-top: 1.5rem;
    padding: 0.8rem 1.8rem;
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    color: white;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s;
    box-shadow: 0 4px 12px rgba(74, 155, 255, 0.3);
}

.pan-link:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 15px rgba(74, 155, 255, 0.4);
}

/* PC端：两栏并排 */
@media (min-width: 768px) {
    .video-grid {
        grid-template-columns: 1fr 1fr;
    }
    
    .results-column {
        border-right: 1px solid #eee;
        padding-right: 2rem;
    }
}

/* 移动端：垂直排列 */
@media (max-width: 767px) {
    .video-grid {
        grid-template-columns: 1fr;
    }
    
    .results-column {
        border-bottom: 1px solid #eee;
        padding-bottom: 2rem;
        margin-bottom: 1rem;
    }
}

@media (max-width: 1024px) {
    /* 视频卡片移动端适配 */
    .video-item {
        flex-direction: column;
    }
    
    .video-thumb {
        width: 100% !important;
        aspect-ratio: 4/3;
        min-width: 100%;
    }
    
    .video-thumb img {
        min-height: auto;
    }
}

/* 商务代言 */
.endorsement-grid {
    display: grid;
    gap: 1.8rem;
    margin-top: 1.5rem;
}

.endorsement-item {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.endorsement-link {
    display: block;
    text-decoration: none;
    color: inherit;
}

.endorsement-grid img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    display: block;
    transition: transform 0.3s;
}

.endorsement-caption {
    padding: 1.2rem;
    text-align: center;
    background: var(--light);
}

.endorsement-caption h3 {
    color: var(--primary);
    margin: 0;
    font-size: 1rem;
}

.endorsement-caption p {
    color: #666;
    font-size: 0.8rem;
    margin: 0.3rem 0 0;
}

/* 悬停效果 */
.endorsement-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

.endorsement-item:hover img {
    transform: scale(1.05);
}

/* 响应式布局 */
@media (min-width: 1200px) {
    .endorsement-grid {
        grid-template-columns: repeat(6, 1fr);
    }

    #endorsements .endorsement-grid {
        max-height: 600px;
        overflow-y: auto;
        padding-right: 10px;
    }
}

@media (min-width: 992px) and (max-width: 1199px) {
    .endorsement-grid {
        grid-template-columns: repeat(5, 1fr);
    }

    #endorsements .endorsement-grid {
        max-height: 600px;
        overflow-y: auto;
        padding-right: 10px;
    }
}

@media (min-width: 768px) and (max-width: 991px) {
    .endorsement-grid {
        grid-template-columns: repeat(4, 1fr);
    }

    #endorsements .endorsement-grid {
        max-height: 600px;
        overflow-y: auto;
        padding-right: 10px;
    }
}

@media (min-width: 576px) and (max-width: 767px) {
    .endorsement-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    #endorsements .endorsement-grid {
        max-height: 600px;
        overflow-y: auto;
        padding-right: 10px;
    }
}

@media (max-width: 575px) {
    .endorsement-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .endorsement-grid img {
        height: 150px;
    }

    #endorsements .endorsement-grid {
        max-height: 600px;
        overflow-y: auto;
        padding-right: 10px;
    }
}

/* 杂志媒体网格布局 */
.grow-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr); /* 默认PC端三列 */
    gap: 2rem;
    margin-top: 1.5rem;
    align-items: start;
}

/* 为杂志栏目添加固定高度和滚动 */
.grow-column {
    display: flex;
    flex-direction: column;
    height: 800px; /* 设置固定高度 */
    max-height: 800px;
    overflow-y: auto; /* 添加垂直滚动 */
    padding-right: 5px; /* 为滚动条留出空间 */
}

/* 滚动条样式 */
.grow-column::-webkit-scrollbar {
    width: 6px;
}
.grow-column::-webkit-scrollbar-thumb {
    background: var(--primary);
    border-radius: 3px;
}
.grow-column::-webkit-scrollbar-track {
    background: var(--light);
    border-radius: 3px;
}

.grow-column h3 {
    color: var(--accent);
    margin-bottom: 1.2rem;
    font-size: 1.5rem;
}

/* 杂志栏目固定标题样式 */
.column-header {
    position: sticky;
    top: 0;
    background: rgba(255, 255, 255, 0.95);
    z-index: 10;
    padding: 1rem 0;
    margin-bottom: 1rem;
    border-bottom: 2px solid var(--secondary);
}

.column-header h3 {
    margin: 0;
    padding: 0;
    color: var(--accent);
    font-size: 1.5rem;
}

/* 调整内容区域高度 */
.column-content {
    height: calc(100% - 80px); /* 减去标题高度 */
    overflow-y: auto;
    padding-right: 5px;
}




.media-category {
    background: rgba(255,255,255,0.95);
    border-radius: 12px;
    padding: 1.5rem;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    transition: transform 0.3s;
}

.media-category h3 {
    color: var(--primary);
    margin-bottom: 1.2rem;
    padding-bottom: 0.8rem;
    border-bottom: 2px solid var(--secondary);
}

.media-content {
    display: grid;
    gap: 1.2rem;
}

.media-item {
    display: flex;
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
    text-decoration: none;
    color: inherit;
    transition: all 0.3s;
}

.media-item img {
    width: 120px;
    height: 160px;
    object-fit: cover;
    flex-shrink: 0;
}

.media-info {
    padding: 1rem;
    flex-grow: 1;
}

.media-info h4 {
    color: #333;
    margin-bottom: 0.3rem;
    font-size: 1.05rem;
}

.media-info p {
    color: #666;
    font-size: 0.9rem;
    margin: 0;
}

.category-link {
    display: block;
    margin-top: 1.2rem;
    padding: 0.6rem;
    text-align: center;
    background: var(--secondary);
    color: white;
    border-radius: 6px;
    text-decoration: none;
    transition: background 0.3s;
}

.category-link:hover {
    background: var(--primary);
}

/* 悬停效果 */
.media-category:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
}

.media-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

/* PC端：三列布局 */
@media (min-width: 768px) {
    .grow-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* 移动端：三行布局 */
@media (max-width: 767px) {
    .grow-grid {
        grid-template-columns: 1fr;
    }
    
    .media-item img {
        width: 100px;
        height: 140px;
    }
}

.paper-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr); 
    gap: 10px; /* 设置列与行之间的间隙为10px */
}


.ttpaper-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr); 
    grid-template-rows: repeat(4, 180px); 
    gap: 20px; /* 设置列与行之间的间隙为10px */
}

.box {
    margin-bottom: 20px;
}

.box2 {
    margin-bottom: 40px;
}      

.scrollable-container {
    max-height: 800px;
    overflow-y: auto;
    padding-right: 5px;
}




/* 确保折叠面板网格填充可用空间 */
.collapsible-grid {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    flex-grow: 1;
}



.collapsible-item {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.collapsible-item:hover {
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.12);
}

.collapsible-item summary {
    list-style: none;
    padding: 0;
    cursor: pointer;
    transition: background-color 0.3s;
}

.collapsible-item summary::-webkit-details-marker {
    display: none;
}

.summary-content {
    display: flex;
    align-items: center;
    padding: 1rem;
    gap: 1rem;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.summary-content img {
    width: 80px;
    height: 100px;
    object-fit: cover;
    border-radius: 8px;
    flex-shrink: 0;
}

.summary-text {
    flex-grow: 1;
}

.summary-text h4 {
    color: var(--primary);
    margin: 0 0 0.3rem 0;
    font-size: 1.1rem;
}

.summary-text p {
    color: #666;
    margin: 0;
    font-size: 0.9rem;
}

.summary-content i {
    color: var(--primary);
    transition: transform 0.3s ease;
    flex-shrink: 0;
}

.collapsible-item[open] .summary-content i {
    transform: rotate(180deg);
}

.collapsible-item[open] .summary-content {
    background: linear-gradient(135deg, var(--secondary) 0%, #b3d9ff 100%);
}

/* 折叠内容区域 */
.collapsible-content {
    padding: 0;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease, padding 0.3s ease;
}

.collapsible-item[open] .collapsible-content {
    padding: 1.5rem;
    max-height: none;
    overflow: visible;
}

/* 图片网格布局 */
.image-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
}

.image-grid img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.image-grid a {
    display: block;
    text-decoration: none;
    color: inherit;
}

.image-grid img:hover {
    transform: scale(1.03);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

#media .grow-column:nth-child(1) .collapsible-content .image-grid,
#media .grow-column:nth-child(2) .collapsible-content .image-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
}

/* 平板和移动端两列 */
@media (max-width: 1024px) and (max-width: 768px) {
    #media .grow-column:nth-child(1) .collapsible-content .image-grid,
    #media .grow-column:nth-child(2) .collapsible-content .image-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}


/* 确保封面项目在三列布局中显示正常 */
#media .grow-column:nth-child(1) .cover-item,
#media .grow-column:nth-child(2) .cover-item {
    margin-bottom: 1rem;
}

#media .grow-column:nth-child(1) .cover-item img,
#media .grow-column:nth-child(2) .cover-item img {
    height: 120px; /* 可以适当调整高度 */
    object-fit: cover;
}

/* 封面项目样式 */
.cover-item {
    text-align: center;
    break-inside: avoid; /* 防止项目被分割 */
}

.cover-item a {
    display: block;
    text-decoration: none;
    color: inherit;
}

.cover-item img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    border-radius: 8px;
}

.cover-item span {
    display: block;
    margin-top: 0.5rem;
    font-size: 0.9rem;
    color: #666;
}

/* 响应式设计 */
@media (max-width: 768px) {
    .summary-content {
        padding: 0.8rem;
        gap: 0.8rem;
    }
    
    .summary-content img {
        width: 60px;
        height: 80px;
    }
    
    .summary-text h4 {
        font-size: 1rem;
    }
    
    .image-grid {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
        gap: 0.8rem;
    }
    
    .collapsible-item[open] .collapsible-content {
        padding: 1rem;
    }
    
    .cover-item img {
        height: 150px;
    }
}

@media (max-width: 480px) {
    .image-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .summary-content {
        flex-direction: column;
        text-align: center;
        gap: 0.5rem;
    }
    
    .summary-content img {
        width: 100px;
        height: 130px;
    }
}

/* PC端：三列布局 */
@media (max-width: 1024px) {
    .grow-grid {
        grid-template-columns: 1fr;
    }

    /* 平板和移动端取消固定高度 */
    .grow-column:first-child,
    .grow-column:nth-child(2) {
        max-height: none;
        overflow-y: visible;
    }
}

/* 移动端保持单列（移动端和平板一致） */
@media (max-width: 767px) {
    .grow-grid {
        gap: 1.5rem; /* 移动端间隙可以小一点 */
    }
}

/* 个人专访模块样式 */
.interview-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr); /* PC端默认三列 */
    gap: 1.5rem;
    margin-top: 1.5rem;
}

.interview-item {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    transition: transform 0.3s;
    background: white;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.interview-link {
    display: block;
    position: relative;
}

.interview-image {
    width: 100%;
    height: 320px;
    object-fit: cover;
    transition: transform 0.3s;
}

.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s;
}

.image-overlay span {
    color: white;
    font-size: 1.2rem;
    padding: 8px 16px;
    border: 2px solid white;
    border-radius: 25px;
}

.interview-caption {
    padding: 1rem;
    text-align: center;
}

.interview-caption h3 {
    color: #6EC3F4;
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
}

.interview-caption p {
    color: #666;
    font-size: 0.9rem;
}

/* 悬停效果 */
.interview-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.interview-item:hover .interview-image {
    transform: scale(1.05);
}

.interview-item:hover .image-overlay {
    opacity: 1;
}

/* 响应式设计 */
@media (max-width: 991px) {
    .interview-grid {
        grid-template-columns: repeat(2, 1fr); /* 平板端两列 */
    }
    
    .interview-image {
        height: 240px;
    }

    #interviews .interview-grid {
        max-height: 500px;
        overflow-y: auto;
        padding-right: 10px;
    }
}

@media (max-width: 768px) {
    .interview-grid {
        grid-template-columns: 1fr; /* 移动端一列 */
        gap: 1.5rem;
    }
    
    .interview-image {
        height: 200px;
    }

    #interviews .interview-grid {
        max-height: 500px;
        overflow-y: auto;
        padding-right: 10px;
    }
}

@media (min-width: 1024px) {
    .interview-image {
        height: 280px; /* 大屏幕增加高度 */
    }

    #interviews .interview-grid {
        max-height: 600px;
        overflow-y: auto;
        padding-right: 10px;
    }
}

footer {
    text-align: center;
    padding: 30px 0;
    color: var(--light-text);
    font-size: 0.95rem;
    border-top: 1px solid var(--secondary-color);
    margin-top: 20px;
}



/* 点滴收集网格布局 */
.memories-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr); /* PC端两列 */
    gap: 1.5rem;
    margin-top: 2rem;
    align-items: start; /* 确保顶部对齐 */
}

.memory-column {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

/* 响应式设计 - 移动端变为一列 */
@media (max-width: 768px) {
    .memories-grid {
        grid-template-columns: 1fr;
    }
}

/* 点滴收集项目样式 */
.memory-item {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    background: rgba(255, 255, 255, 0.95); /* 轻微半透明白色 */
    height: auto; /* 确保高度自适应 */
}

.memory-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.memory-item summary {
    padding: 1.2rem 1.5rem;
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    color: white;
    font-weight: 500;
    font-size: 1.1rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    list-style: none; /* 移除默认箭头 */
    position: relative;
}

.memory-item summary::after {
    content: '\f078'; /* FontAwesome向下箭头 */
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    font-size: 1rem;
    transition: transform 0.3s;
}

.memory-item[open] summary::after {
    transform: rotate(180deg);
}

.memory-count {
    background: rgba(255, 255, 255, 0.2);
    padding: 0.2rem 0.8rem;
    border-radius: 20px;
    font-size: 0.9rem;
}

.memory-links {
    padding: 1.2rem;
    display: grid;
    gap: 0.8rem;
    max-height: 400px;
    overflow-y: auto;
}

.memory-links a {
    display: block;
    padding: 0.8rem 1rem;
    background: #f9f9f9;
    border-radius: 8px;
    text-decoration: none;
    color: var(--text);
    transition: all 0.2s;
    position: relative;
    padding-left: 2.5rem;
    border-left: 3px solid var(--accent);
}

.memory-links a::before {
    content: '\f0a4'; /* FontAwesome箭头图标 */
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    left: 1rem;
    color: var(--primary);
}

.memory-links a:hover {
    background: #f0f7ff;
    transform: translateX(5px);
    box-shadow: 0 2px 8px rgba(110, 195, 244, 0.2);
}


/* 水印装饰 */
.watermark {
    position: fixed;
    opacity: 0.05;
    pointer-events: none;
    font-size: 20vw;
    z-index: -1;
}

footer {
    text-align: center;
    padding: 3rem 1rem;
    color: #666;
    font-size: 0.9rem;
    margin-top: 4rem;
    background: rgba(255, 255, 255, 0.8);
    border-top: 1px solid var(--border);
}

/* 加载指示器 */
.loader {
    position: relative;
    min-height: 200px;
}

.loader::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 40px;
    height: 40px;
    border: 4px solid var(--primary);
    border-radius: 50%;
    border-top-color: transparent;
    animation: spin 1s linear infinite;
    transform: translate(-50%, -50%);
}

@keyframes spin {
    to { transform: translate(-50%, -50%) rotate(360deg); }
}
