/* 研究院概况页面样式 */

/* 栏目图区域 */
.about-banner-section {
    width: 100%;
    /* margin-top: 80px; */
}

.about-banner-image {
    width: 100%;
    height: 400px;
    overflow: hidden;
    position: relative;
}

.about-banner-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

/* 主要内容区域 */
.about-main-content {
    padding: 60px 0;
}

.about-main-content .container {
    max-width: 1500px;
    margin: 0 auto;
    padding: 0 20px;
}

/* 内容头部区域 */
.about-content-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 50px;
    gap: 40px;
}

/* 左侧栏目标题 */
.about-section-title {
    flex: 0 0 auto;
}

.about-title-decoration {
    display: flex;
    align-items: center;
    gap: 15px;
}

.about-title-bar {
    width: 4px;
    height: 40px;
    background-color: #ffffff;
    border-radius: 2px;
}

.about-title-decoration h2 {
    font-size: 32px;
    font-weight: 700;
    color: #333333;
    margin: 0;
    white-space: nowrap;
}

.about-title-arrow {
    font-size: 24px;
    color: #005BAC;
    font-weight: bold;
    margin-left: 10px;
}

/* 右侧模块导航 */
.about-module-nav {
    flex: 1;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 30px;
    flex-wrap: wrap;
}

.about-nav-item {
    display: inline-block;
    padding: 12px 24px;
    background-color: #f8f9fa;
    border: 2px solid #e9ecef;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    text-decoration: none;
    color: inherit;
}

.about-nav-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(0, 91, 172, 0.1), transparent);
    transition: left 0.5s ease;
}

.about-nav-item:hover::before {
    left: 100%;
}

.about-nav-item span {
    font-size: 16px;
    font-weight: 500;
    color: #666666;
    transition: color 0.3s ease;
    position: relative;
    z-index: 1;
}

.about-nav-item:hover {
    border-color: #005BAC;
    background-color: rgba(0, 91, 172, 0.05);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 91, 172, 0.15);
}

.about-nav-item:hover span {
    color: #005BAC;
}

.about-nav-item.active {
    background-color: #005BAC;
    border-color: #005BAC;
    box-shadow: 0 4px 12px rgba(0, 91, 172, 0.3);
}

.about-nav-item.active span {
    color: #ffffff;
    font-weight: 600;
}

.about-nav-item.active:hover {
    background-color: #004494;
    border-color: #004494;
}

/* 研究院简介模块 */
.about-intro-section {
    margin-top: 40px;
    padding: 0;
}

.about-intro-content {
    display: flex;
    gap: 60px;
    align-items: flex-start;
}

/* 左侧文字内容 */
.about-intro-text {
    flex: 1;
    max-width: 60%;
}

.about-intro-title {
    font-size: 28px;
    font-weight: 700;
    color: #333333;
    margin: 0 0 20px 0;
    line-height: 1.4;
}

.about-intro-line {
    width: 80px;
    height: 4px;
    background-color: #005BAC;
    margin: 0 0 30px 0;
    border-radius: 2px;
}

.about-intro-description {
    color: #666666;
    line-height: 1.8;
}

.about-intro-description p {
    font-size: 16px;
    margin: 0 0 20px 0;
    text-align: justify;
}

.about-intro-description p:last-child {
    margin-bottom: 0;
}

/* 右侧图片 */
.about-intro-image {
    flex: 0 0 auto;
    max-width: 40%;
}

.about-intro-image img {
    width: 100%;
    max-width: 649px;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.about-intro-image img:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

/* 响应式基础样式 */
@media (max-width: 1200px) {
    .about-intro-content {
        gap: 50px;
    }
    
    .about-intro-title {
        font-size: 26px;
    }
    
    .about-intro-description p {
        font-size: 15px;
    }
}

@media (max-width: 992px) {
    .about-intro-content {
        gap: 40px;
    }
    
    .about-intro-text {
        max-width: 58%;
    }
    
    .about-intro-image {
        max-width: 42%;
    }
    
    .about-intro-title {
        font-size: 24px;
    }
}

@media (max-width: 768px) {
    .about-intro-content {
        flex-direction: column;
        gap: 25px;
    }
    
    .about-intro-text,
    .about-intro-image {
        max-width: 100%;
    }
    
    .about-intro-image img:hover {
        transform: none;
    }
}

/* 主要任务模块样式 */
.about-tasks-section {
    margin-top: 80px;
    padding: 0 20px;
}

.about-tasks-header {
    text-align: center;
    margin-bottom: 60px;
}

.about-tasks-title {
    font-size: 32px;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 20px;
    letter-spacing: 1px;
}

.about-tasks-line {
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #2563eb, #3b82f6);
    margin: 0 auto;
    border-radius: 2px;
}

.about-tasks-content {
    display: flex;
    gap: 30px;
    justify-content: space-between;
    align-items: stretch;
}

.task-card {
    flex: 1;
    background: #ffffff;
    border: 2px solid #3b82f6;
    border-radius: 16px;
    padding: 30px 20px;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(59, 130, 246, 0.1);
    position: relative;
    overflow: hidden;
}

.task-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #2563eb, #3b82f6);
}

.task-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(59, 130, 246, 0.2);
    border-color: #2563eb;
}

.task-number {
    margin-bottom: 20px;
}

.task-number img {
    width: 60px;
    height: 60px;
    object-fit: contain;
    filter: drop-shadow(0 2px 8px rgba(59, 130, 246, 0.3));
}

.task-title {
    font-size: 20px;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 16px;
    line-height: 1.3;
}

.task-description {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
    margin: 0;
    text-align: left;
}

/* 主要任务模块响应式样式 */
@media (max-width: 1200px) {
    .about-tasks-content {
        gap: 20px;
    }
    
    .task-card {
        padding: 25px 15px;
    }
    
    .task-title {
        font-size: 18px;
    }
    
    .task-description {
        font-size: 13px;
    }
}

@media (max-width: 992px) {
    .about-tasks-section {
        margin-top: 60px;
    }
    
    .about-tasks-content {
        flex-wrap: wrap;
        gap: 25px;
    }
    
    .task-card {
        flex: 0 0 calc(50% - 12.5px);
        min-height: 280px;
    }
    
    .task-card:nth-child(5) {
        flex: 0 0 100%;
        max-width: 400px;
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    .about-tasks-section {
        margin-top: 50px;
        padding: 0 10px;
    }
    
    .about-tasks-header {
        margin-bottom: 40px;
    }
    
    .about-tasks-title {
        font-size: 26px;
    }
    
    .about-tasks-line {
        width: 60px;
        height: 3px;
    }
    
    .about-tasks-content {
        flex-direction: column;
        gap: 20px;
    }
    
    .task-card {
        flex: none;
        padding: 25px 20px;
        min-height: auto;
    }
    
    .task-card:hover {
        transform: translateY(-4px);
    }
    
    .task-number img {
        width: 50px;
        height: 50px;
    }
    
    .task-title {
        font-size: 18px;
        margin-bottom: 14px;
    }
    
    .task-description {
        font-size: 14px;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .about-tasks-section {
        margin-top: 40px;
        padding: 0 5px;
    }
    
    .about-tasks-title {
        font-size: 22px;
    }
    
    .task-card {
        padding: 20px 15px;
        border-radius: 12px;
    }
    
    .task-number {
        margin-bottom: 15px;
    }
    
    .task-number img {
        width: 45px;
        height: 45px;
    }
    
    .task-title {
        font-size: 16px;
        margin-bottom: 12px;
    }
    
    .task-description {
        font-size: 13px;
        line-height: 1.5;
    }
}

/* 发展历程模块样式 */
.about-history-section {
    margin-top: 80px;
    padding: 0 20px;
}

.about-history-header {
    text-align: center;
    margin-bottom: 40px;
}

.about-history-title {
    font-size: 32px;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 20px;
    letter-spacing: 1px;
}

.about-history-line {
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #2563eb, #3b82f6);
    margin: 0 auto;
    border-radius: 2px;
}

.about-history-content {
    max-width: 100%;
    margin: 0 auto;
    overflow-x: auto;
    padding-bottom: 20px;
}

.timeline-horizontal {
    display: flex;
    flex-wrap: nowrap;
    gap: 30px;
    padding: 0 40px;
    min-width: max-content;
}

.timeline-item-horizontal {
    flex: 0 0 280px;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    padding-bottom: 40px;
}

.timeline-date-horizontal {
    margin-bottom: 15px;
    z-index: 2;
}

.date-text-horizontal {
    display: inline-block;
    background: linear-gradient(135deg, #3b82f6, #2563eb);
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 15px;
    font-weight: 600;
    box-shadow: 0 4px 12px rgba(59, 130, 246, 0.3);
}

.timeline-dot-horizontal {
    width: 14px;
    height: 14px;
    background: #ffffff;
    border: 3px solid #3b82f6;
    border-radius: 50%;
    margin-bottom: 15px;
    z-index: 2;
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.2);
}

.timeline-card-horizontal {
    background: #ffffff;
    border: 2px solid #e5e7eb;
    border-radius: 12px;
    padding: 20px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    width: 100%;
    min-height: 180px;
    display: flex;
    align-items: center;
}

.timeline-card-horizontal:hover {
    border-color: #3b82f6;
    box-shadow: 0 6px 25px rgba(59, 130, 246, 0.15);
    transform: translateY(-3px);
}

.timeline-description-horizontal {
    font-size: 14px;
    color: #374151;
    line-height: 1.6;
    margin: 0;
    text-align: center;
}

/* 连接线 */
.timeline-item-horizontal:not(:last-child)::after {
    content: '';
    position: absolute;
    top: 28px;
    left: calc(100% + 15px);
    width: 30px;
    height: 2px;
    background: linear-gradient(90deg, #3b82f6, #2563eb);
    z-index: 1;
}

/* 响应式设计 */
@media (max-width: 1200px) {
    .timeline-item-horizontal {
        flex: 0 0 240px;
    }
    
    .timeline-card-horizontal {
        min-height: 200px;
    }
}

@media (max-width: 992px) {
    .about-history-section {
        margin-top: 60px;
    }
    
    .timeline-horizontal {
        gap: 25px;
        padding: 0 30px;
    }
    
    .timeline-item-horizontal {
        flex: 0 0 220px;
    }
    
    .timeline-card-horizontal {
        min-height: 220px;
        padding: 18px;
    }
    
    .timeline-description-horizontal {
        font-size: 13px;
    }
}

@media (max-width: 768px) {
    .about-history-section {
        margin-top: 50px;
        padding: 0 10px;
    }
    
    .about-history-title {
        font-size: 26px;
    }
    
    .about-history-line {
        width: 60px;
        height: 3px;
    }
    
    .timeline-horizontal {
        gap: 20px;
        padding: 0 20px;
    }
    
    .timeline-item-horizontal {
        flex: 0 0 200px;
    }
    
    .date-text-horizontal {
        padding: 6px 12px;
        font-size: 14px;
    }
    
    .timeline-card-horizontal {
        min-height: 200px;
        padding: 15px;
    }
    
    .timeline-item-horizontal:not(:last-child)::after {
        width: 20px;
        left: calc(100% + 10px);
    }
}

@media (max-width: 576px) {
    .about-history-content {
        padding-bottom: 15px;
    }
    
    .timeline-horizontal {
        gap: 15px;
        padding: 0 15px;
    }
    
    .timeline-item-horizontal {
        flex: 0 0 180px;
        padding-bottom: 30px;
    }
    
    .timeline-card-horizontal {
        min-height: 180px;
        padding: 12px;
    }
    
    .timeline-description-horizontal {
        font-size: 12px;
        line-height: 1.5;
    }
    
    .timeline-dot-horizontal {
        width: 12px;
        height: 12px;
        border-width: 2px;
    }
    
    .timeline-item-horizontal:not(:last-child)::after {
        width: 15px;
        left: calc(100% + 7px);
    }
}

/* 组织架构模块样式 */
.about-structure-section {
    margin-top: 50px;
    padding: 0 15px;
}

.about-structure-header {
    text-align: center;
    margin-bottom: 40px;
}

.about-structure-title {
    font-size: 32px;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 20px;
    letter-spacing: 1px;
}

.about-structure-content {
    display: flex;
    flex-direction: column;
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
}

.about-structure-content::before {
    content: "";
    position: absolute;
    inset: 0;
    background: url(../images/line.png) center/cover no-repeat;
    background-size: 530px 540px;
    background-position: 340px 241px;
    transform: rotate(90deg);
    /* 顺时针 90° */
    transform-origin: center;
    z-index: -1;
}

@media (max-width: 1240px) {
    .about-structure-content::before {
        background-position: 340px 241px;
    }
}

@media (max-width: 750px) {
    .about-structure-content::before {
        display: none;
    }
}

/* 行布局 */
.structure-row {
    display: flex;
    justify-content: center;
    gap: 30px;
}

.structure-card {
    background: #ffffff;
    border-radius: 10px;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    transition: all 0.3s ease;
    width: 220px;
    text-align: center;
}

.structure-card.deputy,
.structure-card.secretary {
    width: 180px;
    transform: scale(0.9);
}

.structure-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.structure-card.deputy:hover,
.structure-card.secretary:hover {
    transform: translateY(-5px) scale(0.9);
}

.structure-image {
    width: 100%;
    height: 240px;
    overflow: hidden;
}

/* 副院长和秘书长图片高度调整 */
.structure-column-stack .structure-image,
.structure-column-center:last-child .structure-image {
    height: 200px;
}

.structure-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.structure-card:hover .structure-image img {
    transform: scale(1.05);
}

.structure-info {
    padding: 15px;
    text-align: center;
}

.structure-name {
    font-size: 16px;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 4px;
}

.structure-position {
    font-size: 14px;
    color: #3b82f6;
    font-weight: 500;
}

/* 组织架构模块响应式样式 */
@media (max-width: 992px) {
    .about-structure-section {
        margin-top: 60px;
    }

    .structure-row {
        gap: 20px;
    }

    .structure-card {
        width: 200px;
    }

    .structure-image {
        height: 220px;
    }
}

/* ==================== 精彩瞬间模块样式 ==================== */
.about-moments-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
}

.about-moments-header {
    text-align: center;
    margin-bottom: 60px;
}

.about-moments-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 20px;
    position: relative;
}

.about-moments-line {
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #3b82f6, #1d4ed8);
    margin: 0 auto;
    border-radius: 2px;
}

/* 轮播容器 */
.moments-carousel-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
}

.moments-carousel {
    overflow: hidden;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.moments-track {
    display: flex;
    transition: transform 0.5s ease-in-out;
    will-change: transform;
}

.moments-slide {
    flex: 0 0 25%;
    padding: 0 10px;
    box-sizing: border-box;
}

.moments-slide img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 10px;
    transition: transform 0.3s ease;
}

.moments-slide img:hover {
    transform: scale(1.05);
}

/* 导航按钮 */
.moments-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.9);
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.moments-nav:hover {
    background: rgba(255, 255, 255, 1);
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.moments-nav-prev {
    left: -25px;
}

.moments-nav-next {
    right: -25px;
}

.moments-nav svg {
    color: #374151;
}

/* 指示器 */
.moments-indicators {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 30px;
}

.moments-indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(59, 130, 246, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
}

.moments-indicator.active {
    background: #3b82f6;
    transform: scale(1.2);
}

/* 响应式设计 */
@media (max-width: 992px) {
    .about-moments-section {
        padding: 60px 0;
    }
    
    .about-moments-title {
        font-size: 2rem;
    }
    
    .moments-slide {
        flex: 0 0 50%;
    }
    
    .moments-slide img {
        height: 200px;
    }
    
    .moments-nav {
        width: 40px;
        height: 40px;
    }
    
    .moments-nav-prev {
        left: -20px;
    }
    
    .moments-nav-next {
        right: -20px;
    }
}

@media (max-width: 768px) {
    .about-moments-section {
        padding: 40px 0;
    }
    
    .about-moments-title {
        font-size: 1.8rem;
    }
    
    .moments-carousel-container {
        padding: 0 15px;
    }
    
    .moments-slide {
        flex: 0 0 100%;
        padding: 0 5px;
    }
    
    .moments-slide img {
        height: 180px;
    }
    
    .moments-nav {
        display: none;
    }
}

@media (max-width: 480px) {
    .about-moments-title {
        font-size: 1.5rem;
    }
    
    .moments-slide img {
        height: 160px;
    }
}

@media (max-width: 768px) {
    .about-structure-section {
        margin-top: 50px;
        padding: 0 10px;
    }
    
    .about-structure-title {
        font-size: 26px;
    }
    
    .about-structure-content {
        flex-direction: column;
        align-items: center;
        gap: 25px;
        min-height: auto;
    }
    
    .structure-column {
        width: 100%;
        max-width: 250px;
    }
    
    .structure-column-center,
    .structure-column-stack {
        align-items: center;
        justify-content: center;
    }
    
    .structure-column-stack {
        gap: 30px;
    }
    
    .structure-column-center .structure-card {
        max-width: 280px;
    }
    
    .structure-column-stack .structure-card,
    .structure-column-center:last-child .structure-card {
        max-width: 220px;
        transform: scale(0.85);
    }
    
    .structure-column-center .structure-image {
        height: 240px;
    }
    
    .structure-column-stack .structure-image,
    .structure-column-center:last-child .structure-image {
        height: 200px;
    }
    
    .structure-info {
        padding: 15px;
    }
    
    .structure-name {
        font-size: 16px;
    }
    
    .structure-position {
        font-size: 14px;
    }
}

@media (max-width: 576px) {
    .about-structure-content {
        gap: 20px;
    }
    
    .structure-column {
        max-width: 200px;
    }
    
    .structure-column-center .structure-card {
        max-width: 180px;
    }
    
    .structure-column-stack .structure-card,
    .structure-column-center:last-child .structure-card {
        max-width: 150px;
        transform: scale(0.9);
    }
    
    .structure-column-center .structure-image {
        height: 200px;
    }
    
    .structure-column-stack .structure-image,
    .structure-column-center:last-child .structure-image {
        height: 170px;
    }
    
    .structure-info {
        padding: 12px;
    }
    
    .structure-name {
        font-size: 15px;
    }
    
    .structure-position {
        font-size: 13px;
    }
    
    .structure-column-stack {
        gap: 10px;
    }
}

/* ==================== 精彩瞬间模块样式 ==================== */
.about-moments-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
}

.about-moments-header {
    text-align: center;
    margin-bottom: 60px;
}

.about-moments-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 20px;
    position: relative;
}

.about-moments-line {
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #3b82f6, #1d4ed8);
    margin: 0 auto;
    border-radius: 2px;
}

/* 轮播容器 */
.moments-carousel-container {
    max-width: 1500px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
}

.moments-carousel {
    overflow: hidden;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.moments-track {
    display: flex;
    transition: transform 0.5s ease-in-out;
    will-change: transform;
}

.moments-slide {
    flex: 0 0 25%;
    padding: 0 10px;
    box-sizing: border-box;
}

.moments-slide img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 10px;
    transition: transform 0.3s ease;
}

.moments-slide img:hover {
    transform: scale(1.05);
}

/* 导航按钮 */
.moments-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.9);
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.moments-nav:hover {
    background: rgba(255, 255, 255, 1);
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.moments-nav-prev {
    left: -25px;
}

.moments-nav-next {
    right: -25px;
}

.moments-nav svg {
    color: #374151;
}

/* 指示器 */
.moments-indicators {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 30px;
}

.moments-indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(59, 130, 246, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
}

.moments-indicator.active {
    background: #3b82f6;
    transform: scale(1.2);
}

/* 响应式设计 */
@media (max-width: 992px) {
    .about-moments-section {
        padding: 60px 0;
    }
    
    .about-moments-title {
        font-size: 2rem;
    }
    
    .moments-slide {
        flex: 0 0 50%;
    }
    
    .moments-slide img {
        height: 200px;
    }
    
    .moments-nav {
        width: 40px;
        height: 40px;
    }
    
    .moments-nav-prev {
        left: -20px;
    }
    
    .moments-nav-next {
        right: -20px;
    }
}

@media (max-width: 768px) {
    .about-moments-section {
        padding: 40px 0;
    }
    
    .about-moments-title {
        font-size: 1.8rem;
    }
    
    .moments-carousel-container {
        padding: 0 15px;
    }
    
    .moments-slide {
        flex: 0 0 100%;
        padding: 0 5px;
    }
    
    .moments-slide img {
        height: 180px;
    }
    
    .moments-nav {
        display: none;
    }
}

@media (max-width: 480px) {
    .about-moments-title {
        font-size: 1.5rem;
    }
    
    .moments-slide img {
        height: 160px;
    }
}