/*
 * @Author: liuying
 * @Crtime: 2026-06-26 10:00:00
 * @ModifyUser: liuying
 * @ModifyTime: 2026-07-06 14:30:00
*/

/* 全局背景 */
 

/* 联合会头部 */
.federation-header {
    position: relative;
    width: 100%;
    height: 380px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 20px 0;
}

.federation-header-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.federation-header-content {
    position: absolute;
    top: 30%;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    color: white;
    z-index: 10;
}

.federation-header-content h2 {
    font-size: 32px;
    font-weight: 600;
    margin: 0;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.federation-header-content p {
    font-size: 16px;
    margin: 10px 0 0 0;
    opacity: 0.9;
}

/* 会议Logo区域 */
.conference-logos {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.conference-logo {
    height: 50px;
    width: auto;
    object-fit: contain;
    filter: brightness(0) invert(1);
}

/* 会议标题 */
.conference-title {
    text-align: center;
    color: white;
    margin-bottom: 15px;
}

.conference-title .title-es {
    font-size: 16px;
    margin: 0 0 10px 0;
    opacity: 0.9;
}

.conference-title h2 {
    font-size: 28px;
    font-weight: 600;
    margin: 0 0 10px 0;
}

.conference-title .title-en {
    font-size: 16px;
    margin: 0;
    opacity: 0.9;
}

/* 会议信息 */
.conference-info {
    text-align: center;
    color: white;
    margin-bottom: 25px;
}

.conference-info p {
    font-size: 14px;
    margin: 5px 0;
    opacity: 0.85;
}

/* 会议导航 */
.conference-nav {
    display: flex;
    justify-content: center;
    background-color: rgba(255, 255, 255, 0.1);
    padding: 0;
    border-radius: 4px 4px 0 0;
}

.nav-sub-item {
    padding: 25px  20px;
    font-size: 24px;
    cursor: pointer;
    transition: all 0.3s ease;
    border-bottom: 3px solid transparent;
}

.nav-item:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

.nav-item.active {
    background-color: white;
    color: #0b265b;
    font-weight: 500;
}

/* 主内容区域 */
.main-content-section {
    background: linear-gradient(180deg, #0a275e 0%, #0d3a7a 100%);
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 40px 0;
}

.main-content-section .content-wrapper {
    max-width: 1400px;
    margin: 0 auto;
}

/* 区域标题 */
.section-title {
    color: white;
    font-size: 46px;
    font-weight: 900;
    text-align: center;
    margin-bottom: 15px;
}

/* 主内容卡片 */
.main-card {
    width: 100%;
    background-color: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    position: relative;
    display: flex;
    align-items: center;
}

/* 轮播导航按钮 */
.carousel-nav-btn {
    position: absolute;
    width: 50px;
    height: 50px;
    background-color: #0066cc;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 40px;
    font-weight: 900;
    color: white;
    z-index: 10;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.carousel-nav-btn:hover {
    background-color: #0055aa;
}

.carousel-nav-btn.left {
    left: 20px;
}

.carousel-nav-btn.right {
    right: 20px;
}

/* 轮播区域 */
.carousel-section {
    display: flex;
    padding: 30px 60px;
    width: 100%;
}

/* 轮播容器 */
.carousel-container {
    flex: 1.5;
    position: relative;
    padding: 40px ;
    min-height: 500px;
    display: flex;
    flex-direction: column;
    width: calc(7/11 * 100%);
}

/* 轮播轨道 */
.carousel-track {
    display: flex;
    transition: transform 0.5s ease;
    overflow: hidden;
    min-width: 0;
    border-radius: 8px;
    overflow: hidden;
}

/* 轮播项 */
.carousel-item {
    flex-shrink: 0;
    width: 100%;
    position: relative;
}

.carousel-item img {
    width: 100%;
    aspect-ratio: 8 / 5;
    object-fit: cover;
}

/* 轮播指示器 */
.carousel-indicators {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 20px;
    z-index: 10;
}

.indicator {
    width: 12px;
    height: 12px;
    background-color: #ccc;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.indicator.active {
    width: 36px;
    border-radius: 6px;
    background-color: #0059DE;
}

/* 右侧内容 */
.carousel-content {
    flex: 1;
    padding: 30px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.content-title {
    font-size: 30px;
    font-weight: 600;
    color: #0a275e;
    line-height: 1.5;
    margin-bottom: 20px;
}

.content-text {
    font-size: 14px;
    color: #666;
    line-height: 1.8;
    margin-bottom: 25px;
}

.read-more {
    text-align: right;
}

.read-more a {
    color: #0066cc;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

.read-more a:hover {
    text-decoration: underline;
}

/* 大会议程模块 */
.agenda-section {
    margin-top: 70px;
}

.agenda-section .agenda-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
}

.agenda-icon {
    width: 58px;
    height: 58px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.agenda-title {
    color: white;
    font-size: 46px;
    font-weight: 600;
    margin: 0;
}

.agenda-card {
    background-color: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

.location-bar {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 20px 30px; 
    font-size: 16px;
    border-bottom: 1px solid #0c275b;
}

.location-bar .location-icon {
    font-size: 18px;
}

.agenda-content {
    padding: 30px;
    position: relative;
}

.date-section {
    position: relative;
    padding-left: 30px;
    margin-bottom: 20px;
}

.date-header {
    display: flex;
    align-items: center;
    gap: 12px;
}

.date-dot {
    width: 12px;
    height: 12px;
    background-color: #0066cc;
    clip-path: polygon(50% 0%, 100% 50%, 50% 100%, 0% 50%);
    flex-shrink: 0;
}

.date-line {
    position: absolute;
    left: 5px;
    top: 28px;
    width: 2px;
    height: calc(100% - 28px);
    background-color: #ddd;
}

.date-section.active .date-line {
    background-color: #0066cc;
}

.date-title {
    font-size: 18px;
    font-weight: 600;
    color: #0a275e;
    margin: 0;
}

.date-desc {
    font-size: 14px;
    color: #666;
    margin: 8px 0 0 0;
    padding-bottom: 15px;
}

.session {
    padding-left: 5px;
    margin-top: 15px;
}

.session-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 12px;
}

.session-title {
    font-size: 16px;
    font-weight: 600;
    color: #333;
    margin: 0;
}

.session-divider {
    flex: 1;
    height: 1px;
    background: repeating-linear-gradient(90deg, #0066cc 0px, #0066cc 8px, transparent 8px, transparent 12px);
}

.session-info {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    padding-left: 5px;
}

.session-time {
    font-size: 14px;
    color: #666;
}

.session-host {
    font-size: 14px;
    color: #666;
}

.host-title {
    color: #999;
    margin-left: 5px;
}

.speakers-list {
    padding-left: 5px;
}

.speaker-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 0;
    border-bottom: 1px dashed #eee;
}

.speaker-item:last-child {
    border-bottom: none;
}

.speaker-role {
    font-size: 14px;
    color: #999;
    flex-shrink: 0;
}

.speaker-name {
    font-size: 14px;
    font-weight: 600;
    color: #333;
    flex-shrink: 0;
}

.speaker-action {
    font-size: 14px;
    color: #0066cc;
    flex-shrink: 0;
}

.speech-btn {
    margin-left: auto;
    padding: 6px 16px;
    background-color: #0066cc;
    color: white;
    border: none;
    border-radius: 4px;
    font-size: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.speech-btn:hover {
    background-color: #0055aa;
}

.session-time {
    font-size: 14px;
    color: #999;
    padding-bottom: 15px;
    border-bottom: 1px solid #eee;
    margin-bottom: 20px;
}

.speakers-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.speaker-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
    background-color: #f8fafc;
    border-radius: 8px;
}

.speaker-name {
    font-size: 15px;
    font-weight: 500;
    color: #333;
    margin-right: 15px;
}

.speaker-title {
    font-size: 13px;
    color: #666;
    flex: 1;
}

.speech-btn {
    padding: 6px 16px;
    background-color: #0066cc;
    color: white;
    border: none;
    border-radius: 15px;
    font-size: 12px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.speech-btn:hover {
    background-color: #0055aa;
}

/* 聚焦大会模块 */
.focus-conference {
    background-color: #fff;
    padding: 60px 30px;
    margin: 30px 8px;
    border-radius: 12px;
    width: 1580px
}

.focus-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 40px;
}

.focus-header-left {
    display: flex;
    align-items: center;
    gap: 15px;
}

.focus-more-link {
    font-size: 20px;
    font-weight: 500;
    color: #0a275e; 
}

.focus-more-link:hover {
    opacity: 0.7;
}

.focus-icon {
    width: 48px;
    height: 48px;
    border: 2px solid #0059DE;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.focus-icon span {
    font-size: 24px;
    color: #0059DE;
    font-weight: bold;
}

.focus-title {
    font-size: 36px;
    font-weight: 600;
    color: #0a275e;
    margin: 0;
}

.focus-cards {
    display: flex;
    gap: 24px;
}

.focus-card {
    flex: 0 0 calc((100% - 48px) / 3);
    background-color: #0059DE;
    border-radius: 8px;
    overflow: hidden;
}

.focus-card-image {
    height: 320px;
    overflow: hidden;
}

.focus-card-image img {
    width: 100%;
    height: 100%; 
}

.focus-card-content {
    padding: 20px;
}

.focus-card-title {
    font-size: 30px;
    font-weight: 600;
    color: #fff;
    margin: 0 0 15px 0;
    line-height: 1.5;
    min-height: 135px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

.focus-card-desc {
    font-size: 14px;
    color: rgba(255,255,255,0.8);
    line-height: 1.8;
    margin: 0 0 20px 0;
    min-height: 76px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

.focus-card-btn {
    padding: 8px 24px;
    background-color: #fff;
    color: #0059DE;
    border: none;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
}

/* 重要嘉宾模块 */
.important-guests {
    width: 1580px;
    background-color: #fff;
    padding: 60px 30px;
    margin: 30px 8px;
    border-radius: 12px;
}

.guests-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 40px;
}

.guests-icon {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #0a275e;
}

.guests-icon span {
    font-size: 24px;
    color: #fff;
}

.guests-title {
    font-size: 36px;
    font-weight: 600;
    color: #0a275e;
    margin: 0;
}

.guests-grid {
    margin: 180px 20px 0;
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 160px  20px ;
}

.guest-card {
    background-color: rgba(180, 210, 255, 0.3);
    border-radius: 18px;
    padding: 20px;
    padding-top: 50px;
    min-height: 240px;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
}

.guest-avatar {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    overflow: hidden;
    position: absolute;
    top: -50%;
    border: 3px solid #fff;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.guest-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.guest-name {
    font-size: 24px;
    font-weight: 600;
    color: #0a275e;
    margin: 40px 0 5px 0;
    word-wrap: break-word;
    word-break: break-all;
    text-align: center;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden; 
    cursor: pointer;
}

 
.guest-title {
    font-size: 20px;
    color: #414769;
    margin: 0;
    word-wrap: break-word;
    word-break: break-all;
    text-align: center;
     display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden; 
    cursor: pointer;
}

/* 现场图集模块 */
.gallery-section {
    width: 1580px; 
    padding: 60px 0;
    margin-top: 30px;
}

.gallery-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 40px;
}

.gallery-header-left {
    display: flex;
    align-items: center;
    gap: 15px;
}

.gallery-icon {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(255,255,255,0.1);
}

.gallery-icon img {
    width: 60px;
    height: 45px;
    object-fit: contain;
}

.gallery-title {
    font-size: 46px;
    font-weight: 600;
    color: #fff;
    margin: 0;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 20px;
} 
 

.gallery-item:nth-child(-n+2) {
    grid-column: span 3;
}

.gallery-item:nth-child(n+3) {
    grid-column: span 2;
}

.gallery-item  {
    overflow: hidden;
    border-radius: 8px;
    border: 2px solid #fff;
    position: relative;
}

.gallery-item:first-child,
.gallery-item:nth-child(2) {
    grid-column: span 3;
}

.gallery-image {
    width: 100%;
    height: 280px;
    object-fit: fill;
    display: block;
}

.gallery-item:first-child .gallery-image,
.gallery-item:nth-child(2) .gallery-image {
    height: 350px;
}

.gallery-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 20px;
    background-color: rgba(0, 39, 94, 0.706);
    color: #fff;
    font-size: 24px;
    font-weight: 500;
    margin: 0;
}

/* 媒体报道模块 */
.media-section {
    width: 1580px; 
    padding: 60px 30px;
    margin-top: 30px;
}

.media-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 40px;
}

.media-header-left {
    display: flex;
    align-items: center;
    gap: 15px;
}

.media-icon {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(255,255,255,0.1);
}

.media-icon img {
    width: 54px;
    height: 57px;
    object-fit: contain;
}

.media-title {
    font-size: 46px;
    font-weight: 600;
    color: #fff;
    margin: 0;
}

.media-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.media-card {
    background-color: #fff;
    border-radius: 8px;
    padding: 40px;
    border-left: 10px solid transparent;
    transition: all 0.3s ease;
    cursor: pointer;
}

.media-card:hover {
    border-left-color: #0066cc; 
}

.media-card-title {
    font-size: 24px;
    font-weight: 600; 
    margin: 0 0 20px 0;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    min-height: 72px;
}

.media-card-source {
    font-size: 14px;
    color: #666;
    margin: 0;
}

/* 响应式设计 */
@media (max-width: 1200px) {
    .carousel-section {
        flex-direction: column;
    }
    
    .carousel-content {
        width: 100%;
        padding: 30px;
    }
    
    .carousel-nav-btn.left {
        left: 15px;
        top: 50%;
        transform: translateY(-50%);
    }
    
    .carousel-nav-btn.right {
        right: 15px;
        top: 50%;
        transform: translateY(-50%);
    }
}

@media (max-width: 768px) {
    .section-title {
        font-size: 22px;
    }
    
    .carousel-item img {
        height: 280px;
    }
    
    .content-title {
        font-size: 16px;
    }
    
    .carousel-nav-btn {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }
    
    .federation-header-content h2 {
        font-size: 26px;
    }
}
/* 会议详情页脚 */
.footer {
    height: 400px;
    background:
        linear-gradient(rgba(0, 39, 94, 0.82), rgba(0, 39, 94, 0.82)),
        url('/files/pub/img/sjlycslhh/footerBg.png') !important;
    background-size: cover !important;
    background-position: center !important;
    background-repeat: no-repeat !important;
}