/* meeting.css - 论坛与活动页面专用样式 */
.page-container {
    padding-top: 116px;
}

.container-1400 {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
}

/* 头部banner */
.meeting-hero {
    position: relative;
    height: 500px;
    background: linear-gradient(135deg, 
        rgba(52, 150, 224, 0.45) 0%, 
        rgba(0, 68, 148, 0.4) 50%, 
        rgba(0, 168, 232, 0.45) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
}

.forum-detail-hero {
    position: relative;
    height: 500px;
    background: url('../images/banner_meet.jpg') center/cover;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.3);
}

.hero-content {
    position: relative;
    z-index: 2;
    width: 100%;
}

.hero-title {
    font-size: 2.8rem;
    font-weight: 700;
    line-height: 1.2;
    color: var(--primary);
    margin-bottom: 30px;
    text-shadow: 2px 2px 8px rgba(0,0,0,0.2);
    text-align: center;
}

.hero-subtitle {
    font-size: 1.5rem;
    font-family: 'Aleo';
    opacity: 0.9;
    font-weight: 300;
    letter-spacing: 1px;
    max-width: 800px;
    margin: 0 auto;
}

/* 内容区块 */
.content-section {
    padding: 50px 0;
}

.bg-light {
    background: #f8f9fa;
}

.section-header {
    margin-bottom: 60px;
}

.section-header.center {
    text-align: center;
}

.section-header h2 {
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 10px;
}

.section-header p {
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 15px;
    font-family: 'Aleo';
}

.divider {
    width: 80px;
    height: 3px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    margin: 0 auto;
}

/* 大事件图文区域 */
.big-event-section {
    margin-bottom: 80px;
}

.event-featured {
    display: grid;
    grid-template-columns: 1fr;
    gap: 50px;
    align-items: center;
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
}

.speak-detail {
    width: 110px !important;
    height: 110px !important;
}

.event-image {
    overflow: hidden;
}

.event-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.event-featured:hover .event-image img {
    transform: scale(1.05);
}

.event-content {
    padding: 0 40px;
}

.event-title {
    font-size: 2.2rem;
    color: var(--primary);
    margin-bottom: 25px;
    font-weight: 700;
    line-height: 1.3;
}

.event-desc {
    color: #555;
    line-height: 1.8;
    font-size: 1.1rem;
}

.event-desc p {
    margin-bottom: 20px;
}

/* 大会讲者区域 */
.speakers-section {
    position: relative;
}

.speakersSwiper {
    padding: 20px 10px 60px;
}

.speaker-slide {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
    background: white;
}

.speaker-slide:hover {
    transform: translateY(-10px);
}

.speaker-image {
    height: 300px;
    overflow: hidden;
}

.speaker-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.speaker-slide:hover .speaker-image img {
    transform: scale(1.05);
}

.speaker-info {
    padding: 25px;
    text-align: center;
}

.speaker-name {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 8px;
}

.speaker-title {
    color: var(--accent);
    font-size: 1rem;
    font-weight: 500;
    margin-bottom: 5px;
}

.speaker-company {
    color: #666;
    font-size: 0.95rem;
}

.swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    background: #ccc;
    opacity: 0.6;
}

.swiper-pagination-bullet-active {
    background: var(--primary);
    opacity: 1;
}

/* 分类入口 */
.category-entries {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.category-card {
    position: relative;
    height: 300px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
    transition: all 0.4s ease;
}

.category-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0,0,0,0.25);
}

.category-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    transition: transform 0.5s ease;
}

.category-card:hover .category-bg {
    transform: scale(1.1);
}

.category-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, 
        rgba(0, 102, 204, 0.85) 0%, 
        rgba(0, 68, 148, 0.8) 100%);
    transition: background 0.3s ease;
}

.category-card:hover .category-overlay {
    background: linear-gradient(135deg, 
        rgba(0, 102, 204, 0.75) 0%, 
        rgba(0, 168, 232, 0.8) 100%);
}

.category-content {
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 40px;
    color: white;
}

.category-title {
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 30px;
    text-shadow: 2px 2px 8px rgba(0,0,0,0.3);
}

.category-button {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: white;
    color: var(--primary);
    padding: 12px 30px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.category-button:hover {
    background: var(--accent);
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.3);
    gap: 15px;
}

/* ===== 现场回顾区域 ===== */
.review-section {
    background: white;
    margin-bottom: 40px;
}

.review-slide {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    height: 280px;
    border: 2px solid transparent;
}

.review-slide:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 35px rgba(0,0,0,0.15);
    border-color: var(--primary);
}

.review-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.review-slide:hover .review-image {
    transform: scale(1.05);
}

/* 分类导航 - 纯文字版本 */
.category-navigation {
    margin-bottom: 60px;
}

.category-tabs {
    display: flex;
    gap: 0;
    background: white;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
    overflow: hidden;
    border: 1px solid rgba(0,0,0,0.05);
}

.category-tab {
    flex: 1;
    text-align: center;
    padding: 20px 10px;
    text-decoration: none;
    color: #666;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    position: relative;
    background: white;
}

.category-tab:not(:last-child) {
    border-right: 1px solid rgba(0,0,0,0.08);
}

.category-tab.active {
    color: var(--primary);
    background: linear-gradient(135deg, rgba(0,102,204,0.05), rgba(0,168,232,0.05));
}

.category-tab.active::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
}

.category-tab:hover:not(.active) {
    color: var(--primary);
    background: rgba(0,102,204,0.03);
}

/* 二级标题 */
.section-subheader {
    margin-bottom: 40px;
}

.section-subheader h3 {
    font-size: 2rem;
    color: var(--primary);
    font-weight: 600;
    margin-bottom: 10px;
}

.section-subheader p {
    font-size: 1.1rem;
    color: #666;
    font-family: 'Aleo';
}

/* 论坛列表区域 */
.forum-list-section {
    margin-top: 40px;
}

.forum-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-bottom: 60px;
}

.forum-card {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
    transition: all 0.4s ease;
    border: 1px solid rgba(0,0,0,0.05);
    text-decoration: none;
    color: inherit;
    display: block;
}

.forum-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
    text-decoration: none;
    color: inherit;
}

.forum-image {
    position: relative;
    height: 250px;
    overflow: hidden;
}

.forum-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.forum-card:hover .forum-image img {
    transform: scale(1.05);
}

.forum-date {
    position: absolute;
    top: 15px;
    left: 15px;
    background: rgba(0,0,0,0.8);
    color: white;
    padding: 8px 15px;
    border-radius: 20px;
    font-size: 0.85rem;
    display: flex;
    align-items: center;
    gap: 5px;
    backdrop-filter: blur(10px);
}

.forum-date .iconfont {
    font-size: 0.9rem;
}

.forum-content {
    padding: 25px;
}

.forum-location {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.9rem;
    color: #d18610;
    margin-bottom: 12px;
    font-weight: 500;
}

.forum-location .iconfont {
    font-size: 1rem;
}

.forum-title {
    font-size: 1.3rem;
    color: var(--primary);
    margin-bottom: 15px;
    font-weight: 600;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.forum-desc {
    color: #666;
    line-height: 1.6;
    margin-bottom: 20px;
    font-size: 0.95rem;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.forum-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--primary);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

.forum-link:hover {
    gap: 12px;
    color: var(--secondary);
}

/* 分页样式 - 优化移动端 */
.pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
    margin-top: 60px;
    flex-wrap: wrap;
}

.page-prev,
.page-next {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: white;
    color: var(--primary);
    text-decoration: none;
    border-radius: 20px;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    border: 1px solid rgba(0,0,0,0.05);
    white-space: nowrap;
}

.page-prev:hover,
.page-next:hover {
    background: var(--primary);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0,102,204,0.3);
}

.page-numbers {
    display: flex;
    gap: 6px;
    align-items: center;
    flex-wrap: wrap;
    justify-content: center;
}

.page-number {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: white;
    color: #666;
    text-decoration: none;
    border-radius: 50%;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    font-size: 0.9rem;
}

.page-number.active {
    background: var(--primary);
    color: white;
    transform: scale(1.1);
    box-shadow: 0 4px 12px rgba(0,102,204,0.3);
}

.page-number:not(.active):hover {
    background: var(--light-blue);
    color: var(--primary);
    transform: translateY(-2px);
}

.page-ellipsis {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    color: #999;
    font-size: 0.9rem;
}

/* 论坛详情页样式 */
.forum-basic-info {
    background: white;
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    margin-bottom: 60px;
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.info-item {
    display: flex;
    align-items: center;
    gap: 20px;
}

.grey {
    color: #999 !important;
}

.info-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.info-icon .iconfont {
    font-size: 1.8rem;
    color: white;
}

.info-content {
    flex: 1;
}

.info-label {
    font-size: 0.95rem;
    color: #666;
    margin-bottom: 8px;
    font-weight: 500;
}

.info-value {
    font-size: 1.2rem;
    color: var(--primary);
    font-weight: 600;
    line-height: 1.4;
}

/* 论坛简介 */
.forum-intro {
    background: white;
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    margin-bottom: 60px;
}

.meet-title {
    font-size: 2rem;
    color: var(--primary);
    margin-bottom: 25px;
    font-weight: 700;
    position: relative;
    padding-bottom: 15px;
}

.meet-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
}

.intro-content {
    color: #555;
    line-height: 1.8;
    font-size: 1.1rem;
}

.intro-content p {
    margin-bottom: 20px;
}

/* 会议日程 - 统一数组结构 */
.forum-schedule {
    background: white;
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.schedule-timeline {
    position: relative;
}

.schedule-timeline::before {
    content: '';
    position: absolute;
    left: 30px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(to bottom, var(--primary), var(--secondary));
    opacity: 0.3;
}

.schedule-item {
    display: flex;
    margin-bottom: 25px;
    position: relative;
    transition: all 0.3s ease;
}

.schedule-item:hover {
    transform: translateX(5px);
}

.schedule-time {
    flex-shrink: 0;
    text-align: right;
    padding-right: 30px;
    position: relative;
}

.schedule-time::before {
    content: '';
    position: absolute;
    right: -6px;
    top: 8px;
    width: 12px;
    height: 12px;
    background: var(--primary);
    border-radius: 50%;
    border: 3px solid white;
    box-shadow: 0 0 0 2px var(--primary);
    z-index: 2;
}

.time-range {
    font-size: 1rem;
    color: var(--primary);
    font-weight: 600;
    background: white;
    padding: 6px 12px;
    border-radius: 15px;
    display: inline-block;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

.schedule-content {
    flex: 1;
    background: #f8f9fa;
    border-radius: 15px;
    padding: 25px;
    border-left: 4px solid transparent;
    transition: all 0.3s ease;
}

.schedule-item:hover .schedule-content {
    background: white;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

/* 议程类型样式 */
.agenda-type .schedule-content {
    border-left-color: var(--primary);
}

.agenda-type .schedule-type {
    color: var(--primary);
}

/* 休息类型样式 */
.break-type .schedule-content {
    border-left-color: var(--accent);
}

.break-type .schedule-type {
    color: var(--accent);
}

/* 专题讨论类型样式 */
.panel-type .schedule-content {
    border-left-color: #6f42c1;
}

.panel-type .schedule-type {
    color: #6f42c1;
}

.schedule-type {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 15px;
    padding: 6px 12px;
    background: white;
    border-radius: 15px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

.schedule-type .iconfont {
    font-size: 1rem;
}

.schedule-title {
    font-size: 1.3rem;
    color: #333;
    margin-bottom: 20px;
    font-weight: 600;
    line-height: 1.4;
}

/* 嘉宾列表 */
.speakers-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.speaker-item {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 15px;
    background: white;
    border-radius: 12px;
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

.speaker-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    border-color: var(--primary);
    color: inherit;
    text-decoration: none;
}

.speaker-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
}

.speaker-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.speakers-info {
    flex: 1;
}

.speaker-name {
    font-size: 1rem;
    color: var(--primary);
    font-weight: 600;
    margin-bottom: 4px;
}

.speaker-title {
    font-size: 0.85rem;
    color: #666;
    margin-bottom: 2px;
}

.speaker-company {
    font-size: 0.85rem;
    color: #999;
}

/* 主持人区域 */
.moderator-section {
    margin-top: 20px;
}

.moderator-label {
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 10px;
    font-weight: 600;
}

/* 响应式设计 */
@media (max-width: 1200px) {
    .forum-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .info-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .schedule-timeline::before {
        left: 20px;
    }
    
    .schedule-time {
        padding-right: 25px;
    }
}

@media (max-width: 992px) {
    .forum-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .category-entries {
        grid-template-columns: 1fr;
        margin: 0 20px;
    }
    
    .event-featured {
        grid-template-columns: 1fr;
        gap: 0;
        margin: 0 20px;
    }
    
    .event-image {
        height: 350px;
    }
    
    .event-content {
        padding: 40px;
    }
    
    .category-card {
        height: 250px;
    }
    
    .hero-title {
        font-size: 2.8rem;
    }
    
    .category-tabs {
        flex-wrap: wrap;
    }
    
    .category-tab {
        flex: 1 0 50%;
        border-right: none !important;
        border-bottom: 1px solid rgba(0,0,0,0.08);
    }
    
    .category-tab:nth-child(odd) {
        border-right: 1px solid rgba(0,0,0,0.08) !important;
    }
}

@media (max-width: 768px) {
    .infobg {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        width: 100%;
    }
    .forum-grid {
        grid-template-columns: 1fr;
    }

    .review-slide {
        height: 220px;
    }
    
    .meeting-hero {
        height: 400px;
    }
    
    .forum-detail-hero {
        height: 300px;
    }
    
    .hero-title {
        font-size: 2.2rem;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
    }
    
    .content-section {
        padding: 80px 0;
    }
    
    .section-header h2 {
        font-size: 2rem;
    }
    
    .section-subheader h3 {
        font-size: 1.8rem;
    }
    
    .event-title {
        font-size: 1.8rem;
    }
    
    .event-content {
        padding: 30px 25px;
    }
    
    .category-card {
        height: 220px;
    }
    
    .category-title {
        font-size: 1.8rem;
        margin-bottom: 25px;
    }
    
    .category-tab {
        flex: 1 0 100%;
        border-right: none !important;
    }
    
    .forum-basic-info,
    .forum-intro,
    .forum-schedule {
        padding: 30px 25px;
    }
    
    .schedule-item {
        flex-direction: column;
    }
    
    .schedule-time {
        width: 100%;
        text-align: left;
        padding-right: 0;
        padding-bottom: 15px;
        position: relative;
    }
    
    .schedule-time::before {
        right: auto;
        left: 0;
        top: 33%;
        width: 8px;
        height: 8px;
        transform: translateY(-50%);
    }
    
    .schedule-timeline::before {
        left: 6px;
    }
    
    .meet-title {
        font-size: 1.8rem;
    }
    
    .pagination {
        flex-direction: column;
        gap: 15px;
    }
    
    .page-numbers {
        order: -1;
    }
    .time-range {
        padding: 6px 12px 6px 25px;
    }
}

@media (max-width: 576px) {
    .forum-card {
        margin-bottom: 20px;
    }

    .review-slide {
        height: 180px;
    }
    
    .forum-content {
        padding: 20px;
    }
    
    .forum-title {
        font-size: 1.2rem;
    }
    
    .meeting-hero {
        height: 350px;
    }
    
    .forum-detail-hero {
        height: 250px;
    }
    
    .hero-title {
        font-size: 1.8rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .content-section {
        padding: 60px 20px;
    }
    
    .section-header {
        margin-bottom: 40px;
    }
    
    .section-header h2 {
        font-size: 1.7rem;
    }
    
    .section-subheader h3 {
        font-size: 1.6rem;
    }
    
    .event-title {
        font-size: 1.6rem;
    }
    
    .event-content {
        padding: 25px 20px;
    }
    
    .category-card {
        height: 200px;
    }
    
    .category-title {
        font-size: 1.6rem;
        margin-bottom: 20px;
    }
    
    .category-content {
        padding: 30px 20px;
    }
    
    .view-all-button {
        padding: 12px 25px;
        font-size: 0.95rem;
    }
    
    .forum-basic-info,
    .forum-intro,
    .forum-schedule {
        padding: 25px 20px;
        margin: 0 15px 25px 15px;
    }
    
    .info-item {
        flex-direction: column;
        text-align: center;
        gap: 15px;
        align-items: center;
    }
    
    .info-icon {
        align-self: center;
    }
    
    .schedule-content {
        padding: 20px;
    }
    
    .schedule-title {
        font-size: 1.2rem;
    }
    
    .speaker-item {
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }
    
    .meet-title {
        font-size: 1.6rem;
    }
    
    /* 移动端分页优化 */
    .pagination {
        gap: 8px;
        margin-top: 40px;
    }
    
    .page-prev,
    .page-next {
        padding: 8px 16px;
        font-size: 0.85rem;
        border-radius: 16px;
    }
    
    .page-numbers {
        gap: 4px;
    }
    
    .page-number {
        width: 36px;
        height: 36px;
        font-size: 0.85rem;
    }
    
    .page-ellipsis {
        width: 36px;
        height: 36px;
        font-size: 0.85rem;
    }
    
    .category-tab {
        padding: 16px 10px;
        font-size: 1rem;
    }
}

/* 超小屏幕优化 */
@media (max-width: 400px) {
    .pagination {
        gap: 6px;
    }
    
    .page-prev,
    .page-next {
        padding: 6px 12px;
        font-size: 0.8rem;
    }
    
    .page-number {
        width: 32px;
        height: 32px;
        font-size: 0.8rem;
    }
    
    .page-ellipsis {
        width: 32px;
        height: 32px;
        font-size: 0.8rem;
    }
}


/* 大会嘉宾网格布局 */
.speakers-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-bottom: 60px;
}

.speaker-card {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
    transition: all 0.4s ease;
    border: 1px solid rgba(0,0,0,0.05);
}

.speaker-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}

.speaker-image {
    height: 300px;
    overflow: hidden;
}

.speaker-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.speaker-card:hover .speaker-image img {
    transform: scale(1.05);
}

.speaker-info {
    padding: 25px;
    text-align: center;
}

.speaker-name {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 8px;
}

.speaker-title {
    color: var(--accent);
    font-size: 1rem;
    font-weight: 500;
    margin-bottom: 5px;
}

.speaker-company {
    color: #666;
    font-size: 0.95rem;
}

/* 响应式设计 */
@media (max-width: 1200px) {
    .speakers-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 992px) {
    .speakers-grid {
        grid-template-columns: repeat(2, 1fr);
        margin: 0 30px;
    }
}

@media (max-width: 768px) {
    .speakers-grid {
        grid-template-columns: 1fr;
    }
}