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

/* 联合会华章视频轮1播模块 */
.federation-huazhang-section {
    padding: 60px 0;
    font-family: '思源黑体 Bold', '思源黑体 Regular', '思源黑体', sans-serif; 
    text-align: center; 
}

/* 标题 */
.huazhang-title {
    font-weight: 700;
    font-size: 44px;
    color: #fff;
    margin-bottom: 10px;
    font-style: normal; 
    text-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
}

.huazhang-subtitle { 
    margin-bottom: 50px; 
    font-weight: 400;
    font-style: normal;
    font-size: 18px;
    color: #FFFFFF;
    text-align: center;
}

.huazhang-title-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
}

.huazhang-title-icon {
    width: 119px;
    height: 95px;
}

.huazhang-title-icon-mirror {
    transform: scaleX(-1);
}

/* 视频轮播容器 */
.video-carousel-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    max-width: 1960px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
}

/* 导航箭头 */
.carousel-nav {
    width: 48px;
    height: 48px;
    background: transparent;
    border: 0;
    color: #fff;
    font-size: 60px;
    cursor: pointer;
    transition: all 0.3s ease; 
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin: 0 10px;
}

.carousel-nav:hover {
    background: rgba(255, 255, 255, 0.3);
}

/* 视频轮播内容区域 */
.video-carousel-container {
    flex: 1;
    overflow: visible;
}

.video-carousel {
    display: flex;
    justify-content: center;
    align-items: flex-end;
    gap: 20px;
    transition: transform 0.5s ease;
}

/* 视频项 */
.video-carousel-item {
    flex: 0 0 auto;
    transition: all 0.5s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.video-carousel-item:first-child,
.video-carousel-item:last-child {
    width: 380px;
    opacity: 0.85;
}

.video-carousel-item:nth-child(2) {
    width: 720px;
    opacity: 1;
}

/* 视频链接容器 */
.video-carousel-item a {
    display: block;
    width: 100%;
    margin-top: auto;
}

/* 视频缩略图 */
.video-thumbnail {
    width: 100%;
    height: auto;
    aspect-ratio: 5 / 4;
    object-fit: cover; 
}

/* 视频覆盖层 */
.video-overlay {
    position: relative;
    margin-top: -50%;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 0;
    pointer-events: auto;
}

/* 播放按钮 */
.play-button {
    width: 50px;
    height: 50px;
    background: transparent;
    border: 3px solid #fff;
    border-radius: 50%;
    font-size: 16px;
    color: #fff;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.video-carousel-item:nth-child(2) .play-button {
    width: 90px;
    height: 90px;
    font-size: 32px;
}

.play-button:hover {
    transform: scale(1.1);
    background: rgba(255, 255, 255, 0.2);
}

/* 视频标题 */
.video-title {
    margin-top: 15px;
    font-size: 14px;
    color: #fff;
    text-align: center;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* 分页指示器 */
.video-pagination {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 30px;
}

.pagination-dot {
    width: 12px;
    height: 12px;
    background: rgba(255, 255, 255, 0.4);
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
}

.pagination-dot.active {
    background: #fff;
    transform: scale(1.2);
}

.pagination-dot:hover {
    background: rgba(255, 255, 255, 0.7);
}

/* 查看更多按钮 */
.huazhang-more-btn {
    margin-top: 40px;
}

.more-button {
    padding: 12px 36px;
    background: #00275E;
    border: 0;
    color: #fff;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
    border-radius: 4px;
}

.more-button:hover {
    background:linear-gradient(92.5605807890438deg, rgba(0, 104, 199, 1) 1%, rgba(47, 185, 108, 1) 122%, rgba(69, 223, 66, 1) 179%);
}

/* 滑动动画 */
.video-carousel-item.slide-out-left {
    animation: slideOutLeft 0.4s ease forwards;
}

.video-carousel-item.slide-out-right {
    animation: slideOutRight 0.4s ease forwards;
}

@keyframes slideOutLeft {
    from {
        transform: translateX(0);
        opacity: 1;
    }
    to {
        transform: translateX(-100px);
        opacity: 0;
    }
}

@keyframes slideOutRight {
    from {
        transform: translateX(0);
        opacity: 1;
    }
    to {
        transform: translateX(100px);
        opacity: 0;
    }
}

/* 城韵映像模块 */
.cheng-yun-ying-xiang {
    padding: 60px 0;
    text-align: center; 
}

/* 标题 */
.cheng-yun-title {
    font-family: "思源黑体 Bold", "思源黑体 Regular", 思源黑体, sans-serif;
    font-weight: 700;
    font-size: 44px;
    color: #fff;
    margin-bottom: 10px;
}

.cheng-yun-subtitle {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 50px;
}

/* 城韵卡片列表 */
.cheng-yun-card-list {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

/* 城韵卡片 */
.cheng-yun-card {
    border:0;
    background: transparent; 
    display: flex; 
    position: relative;
}

.cheng-yun-card:last-child {
    margin-bottom: 0;
}

/* 分隔线 */
.cheng-yun-card::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 1px;
    bottom: 0;
    width: 2px;
    background: repeating-linear-gradient(
        0deg,
        rgba(255, 255, 255, 0.3) 0px,
        rgba(255, 255, 255, 0.3) 10px,
        transparent 10px,
        transparent 20px
    );
    transform: translateX(-50%);
}

/* 左列和右列 - 各占50%宽度 */
.cheng-yun-video-wrapper,
.cheng-yun-info {
    flex: 0 0 50%;
    padding: 30px 40px;
    box-sizing: border-box;
}

.cheng-yun-info {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    font-family: '思源黑体 Bold', '思源黑体 Regular', '思源黑体', sans-serif;
    background-size: 90% auto;
    background-repeat: no-repeat;
    position: relative;
}

/* info在右侧（card-left）：背景图距左侧（中间线方向）40px */
.cheng-yun-card-left .cheng-yun-info {
    background-position: left 40px center;
}
/* info在左侧（card-right）：背景图距右侧（中间线方向）40px */
.cheng-yun-card-right .cheng-yun-info {
    background-position: right 40px center;
}

/* 城市背景图 - 半透明遮罩保证文字可读性 */
.cheng-yun-info::before {
    content: '';
    position: absolute;
    inset: 0; 
    z-index: 0;
}

.cheng-yun-info > * {
    position: relative;
    z-index: 1;
}

/* 第1张：北京 */
.cheng-yun-card:nth-child(1) .cheng-yun-info {
    background-image: url('/files/pub/img/sjlycslhh/beijing.png');
}
/* 第2张：首尔 */
.cheng-yun-card:nth-child(2) .cheng-yun-info {
    background-image: url('/files/pub/img/sjlycslhh/shouer.png');
}
/* 第3张：柏林 */
.cheng-yun-card:nth-child(3) .cheng-yun-info {
    background-image: url('/files/pub/img/sjlycslhh/bolin.png');
}
/* 第4张：菲斯 */
.cheng-yun-card:nth-child(4) .cheng-yun-info {
    background-image: url('/files/pub/img/sjlycslhh/feisi.png');
}
/* 第5张：洛杉矶 */
.cheng-yun-card:nth-child(5) .cheng-yun-info {
    background-image: url('/files/pub/img/sjlycslhh/L.A.png');
}
/* 第6张：布宜诺斯艾利斯 */
.cheng-yun-card:nth-child(6) .cheng-yun-info {
    background-image: url('/files/pub/img/sjlycslhh/buyi.png');
}

/* 城韵视频包装 */
.cheng-yun-video-wrapper {
    position: relative;
}

.cheng-yun-video-img {
    width: 100%;
    height: 400px; 
}

/* 图片飞入动画 */
.cheng-yun-card-left .cheng-yun-video-wrapper {
    opacity: 0;
    transform: translateX(-300px);
    transition: opacity 1.2s ease, transform 1.2s cubic-bezier(0.25, 0.1, 0.25, 1);
}

.cheng-yun-card-right .cheng-yun-video-wrapper {
    opacity: 0;
    transform: translateX(300px);
    transition: opacity 1.2s ease, transform 1.2s cubic-bezier(0.25, 0.1, 0.25, 1);
}

.cheng-yun-card-left .cheng-yun-video-wrapper.fly-in {
    opacity: 1;
    transform: translateX(0);
}

.cheng-yun-card-right .cheng-yun-video-wrapper.fly-in {
    opacity: 1;
    transform: translateX(0);
}

/* 字体飞入动画 */
.cheng-yun-card-left .cheng-yun-info {
    opacity: 0;
    transform: translateX(300px);
    transition: opacity 1.2s ease 0.3s, transform 1.2s cubic-bezier(0.25, 0.1, 0.25, 1) 0.3s;
}

.cheng-yun-card-right .cheng-yun-info {
    opacity: 0;
    transform: translateX(-300px);
    transition: opacity 1.2s ease 0.3s, transform 1.2s cubic-bezier(0.25, 0.1, 0.25, 1) 0.3s;
}

.cheng-yun-card-left .cheng-yun-info.fly-in,
.cheng-yun-card-right .cheng-yun-info.fly-in {
    opacity: 1;
    transform: translateX(0);
}

/* 视频覆盖层 */
.cheng-yun-video-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    pointer-events: auto;
}

/* 播放按钮 */
.cheng-yun-play-button {
    width: 60px;
    height: 60px;
    background: transparent;
    border: 3px solid #fff;
    border-radius: 50%;
    font-size: 18px;
    color: #fff;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.cheng-yun-play-button:hover {
    transform: scale(1.1);
    background: rgba(255, 255, 255, 0.2);
}

/* 视频标题 */
.cheng-yun-video-title {
    position: absolute;
    bottom: 10px;
    left: 10px;
    right: 10px;
    font-size: 14px;
    color: #fff;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.5);
    text-align: left;
}

/* 菱形标记 */
.cheng-yun-diamond {
    width: 18px;
    height: 18px;
    background: #64B4FF;
    transform: rotate(45deg);
    margin-bottom: -39px;
    margin-left: -49px;
}

/* 城市名称 */
.cheng-yun-city-name { 
    font-weight: 700;
    font-style: normal;
    font-size: 42px;
    color: #64B4FF;
}

/* 城市描述 */
.cheng-yun-desc {
    font-size: 20px; 
    font-family: '思源黑体 CN', sans-serif;
    font-weight: 400;
    font-style: normal;
    line-height: 1.8;
    color: #fff;
    margin-bottom: 10px;
    /* text-indent: 2em;     */
    text-align: justify;
}

.cheng-yun-desc:last-child {
    margin-bottom: 0;
}

/* 右侧卡片的信息区域右对齐 */
.cheng-yun-card-right .cheng-yun-info {
    align-items: flex-end;
}

.cheng-yun-card-right .cheng-yun-city-name {
    text-align: right;
}

 
 

/* 全球会客厅模块 */
.global-living-room {
    max-width: 1960px;
    margin: 0 auto;
    padding: 0 180px;
}

/* 高端访谈主区域 */
.interview-main {
    display: flex;
    position: relative;
    background: #fff;
    margin-bottom: 50px;
}

/* 访谈主图 */
.interview-main-img {
    flex: 0 0 60%;
    width: 60%;
    height: auto;
    object-fit: cover;
}

/* 访谈标签 */
.interview-tag {
    background-image: url('/files/pub/img/sjlycslhh/interview-tag.svg');
    background-size: cover;
        font-weight: 500;
    font-style: oblique;
    font-family: '思源黑体 CN Medium Oblique', '思源黑体 CN Medium', '思源黑体 CN Regular', '思源黑体 CN', sans-serif;
    background-position: center;
    padding: 18px 68px; 
    position: absolute; 
    right: 0px; 
    color: #051833;
    font-size: 28px;
    font-weight: bold;
    z-index: 2;
}

/* 访谈内容 */
.interview-content {
    flex: 1;
    padding: 40px 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background-color: #00275E;
    opacity: 0.9;

    color: #FFFFFF;
    text-align: justify;
    text-justify: inter-word;
}

.interview-title {
    font-family: '思源黑体 CN Bold', '思源黑体 CN Regular', '思源黑体 CN', sans-serif;
    font-weight: 700;
    font-style: normal;
    font-size: 30px; 
    line-height: 50px;
    margin-top: 150px;
}

.interview-desc { 
    line-height: 1.8; 
    margin: 20px 0 60px;
    text-align: justify;
    font-size: 20px;
    line-height: 30px;
}  

.interview-date {
    font-size: 20px; 
    margin-bottom: 60px;
}

/* 导航箭头 */
.interview-nav {
    position: absolute;
    top: 50%;
    width: 40px;
    height: 60px;
    background: rgba(0, 0, 0, 0.5);
    border: none;
    color: #fff;
    font-size: 24px;
    cursor: pointer;
    transform: translateY(-50%);
    transition: all 0.3s ease;
}

/* .interview-nav:hover {
    background: rgba(0, 0, 0, 0.7);
} */

/* .interview-nav-left {
    left: 0;
}

.interview-nav-right {
    right: 0;
} */

/* 高层对话区域 */
.high-level-dialogue {
    display: flex;
    gap: 50px;
}

.dialogue-item {
    flex: 1;
    position: relative;
    background: #fff;
}

.dialogue-img {
    width: 100%; 
    height: 280px;
    object-fit: cover;
    display: block;
}

.dialogue-tag {
    position: absolute;
    top: 230px;
    right: 0px;
    padding: 6px 25px;
    background: #5B9BD5;
    color: #051833;
    font-size: 24px;
    font-weight: 500;
    font-style: oblique;
    z-index: 10; 
}

/* 对话信息区域 */
.dialogue-info {
    padding: 15px;
}

.dialogue-title { 
    margin-bottom: 12px;
    line-height: 1.5;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
        font-family: '思源黑体 CN Bold', '思源黑体 CN Regular', '思源黑体 CN', sans-serif;
    font-weight: 700;
    font-style: normal;
    font-size: 24px;
    color: #00275E;
    text-align: justify;
    text-justify: inter-word;
    line-height: 34px;
}

.dialogue-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.dialogue-date {
    font-size: 16px;
    color: #77B6EA;
    font-weight: 400;
    font-family: 'Arial Narrow', 'Arial', sans-serif;

}

.dialogue-arrow {
    font-size: 40px;
    color: #76dc5b;
}

/* 世界节庆轮播样式 */
.festival-carousel {
    margin-top: 20px;
}

.festival-container {
    overflow: hidden;
    position: relative;
    width: 1620px;
    margin: 0 auto;
}

.festival-track {
    display: flex;
    gap: 20px;
    transition: transform 0.5s ease;
    align-items: flex-end;
}

.festival-card {
    flex: 0 0 412px;
    cursor: pointer;
    transition: all 0.3s ease;
    opacity: 0.85;
    display: flex;
    flex-direction: column;
    position: relative;
}

.festival-card.active {
    flex: 0 0 756px;
    opacity: 1;
}

.festival-card img {
    width: 100%; 
    height: 348px;
    object-fit: cover;
    display: block;
}

.festival-card.active img {
    height: 440px;
}

.festival-card-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    pointer-events: none;
}

.festival-play-button {
    width: 60px;
    height: 60px;
    border: 3px solid #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 20px;
    background: rgba(0, 0, 0, 0.3);
}

.festival-card.active .festival-play-button {
    width: 90px;
    height: 90px;
    font-size: 32px;
}



.festival-card.active .festival-card-title {
    /* color: #0066cc;
    background: rgba(255, 255, 255, 0.9); */
}

.festival-card-content {
    padding: 30px;
    background: #fff;
    transition: all 0.3s ease;
}

.festival-card-title {
    padding-bottom: 30px; 
    font-size: 28px;
    border-bottom: 1px solid #ccc;
    font-weight: 400; 
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis; 
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 10px 15px;
    color: #fff; 
    /* background: rgba(0, 0, 0, 0.5); */ 
}
.festival-card-date {
    margin-top: 30px;
    font-size: 14px;
    color: #999;
}

.festival-card:hover .festival-card-content {
    background: linear-gradient(135deg, #0066aa, #00aa88);
}

.festival-card:hover .festival-card-title,
.festival-card:hover .festival-card-date {
    color: #64B4FF;
}

.festival-pagination {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 25px;
}

.festival-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #ccc;
    cursor: pointer;
    transition: all 0.3s ease;
}

.festival-dot.active {
    background: #0066aa;
}

.no-data {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 60px 0;
}

.no-data-icon {
    width: 60px;
    height: 60px;
    border: 2px solid #ccc;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
}

.no-data-icon::before {
    content: '×';
    font-size: 30px;
    color: #ccc;
}

.no-data-text {
    font-size: 16px;
    color: #999;
}