/* ================= 全局重置 ================= */
* { margin: 0; padding: 0; box-sizing: border-box; }
body { 
    background-color: #fff; 
    color: #333;
    overflow-x: hidden; 
}
ul { list-style: none; }
a { text-decoration: none; color: inherit; transition: opacity 0.3s; }
a:hover { opacity: 0.8; }
img { display: block; width: 100%; height: auto; object-fit: cover; }
button { font-family: inherit; }

.container { width: 1200px; margin: 0 auto; position: relative; }

/* ================= 通用组件 ================= */
.btn-more {
    display: inline-block;
    background-color: #d93826;
    color: #fff;
    font-size: 13px;
    padding: 5px 12px;         
    cursor: pointer;
    border: none;
    line-height: 1.2;          
    vertical-align: middle;    
}

.arrow-text { color: #d93826; font-size: 13px; font-weight: normal; margin-left: 5px; cursor: pointer; }
.arrow-text:hover { text-decoration: underline; }

.more-button-wrapper {
    margin-top: 20px;
    display: flex;
    align-items: center; 
    justify-content: flex-end; 
    gap: 0;
}

/* ================= 头部 HERO ================= */
.hero-section {
    position: relative; 
    width: 100%; 
    height: 800px;
    background-color: #333;
    overflow: visible; 
    z-index: 10;
}

.hero-slider-container {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    z-index: 1; 
    overflow: hidden; 
}

.hero-slider-track {
    display: flex;
    width: 400%; 
    height: 100%;
    transition: transform 0.8s ease-in-out; 
}
.hero-slide-item {
    width: 25%; 
    height: 100%;
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
}

.hero-overlay {
    position: absolute; top: 0; left: 0; width: 100%; height: 100%;
    background: radial-gradient(circle at center, rgba(0,0,0,0) 0%, rgba(0,0,0,0.4) 100%); 
    pointer-events: none;
    z-index: 2; 
}

.top-tools { position: absolute; top: 10px; right: 15%; display: flex; align-items: center; gap: 40px; z-index: 50; color: #fff; }
.icon-search { width: 20px; height: 20px; cursor: pointer; }
.lang-en { border: 1px solid rgba(255,255,255,0.8); padding: 4px 8px; font-size: 12px; cursor: pointer; }

/* ================= 导航栏样式 ================= */
.nav-container {
    position: absolute; left: calc(50% - 600px); top: 0;
    width: 276px; height: calc(100% + 64px); z-index: 100;
    display: flex; flex-direction: column; box-shadow: 10px 10px 30px rgba(0,0,0,0.2);
}
.nav-item { 
    display: flex; 
    align-items: center;
    background-color: rgba(195, 63, 40, 0.85); 
    justify-content: center; 
    color: #fff; 
    cursor: pointer; 
    font-size: 20px; 
    letter-spacing: 2px;
    position: relative;
    transition: color 0.3s;
}
/* ================= 搜索栏样式 ================= */
.index-search-bar {
    position: absolute;
    top: 60px; /* 根据 .top-tools 位置调整 */
    left: 0;
    width: 100%;
    height: 213px;
    background-color: rgba(31, 31, 31, 0.9); /* 改为黑色背景 */
    z-index: 999;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 4px 10px rgba(0,0,0,0.3);
}

.search-container {
    width: 60%;
    max-width: 800px;
    position: relative;
    border-bottom: 2px solid #d93826; /* 改为红色下划线 */
}

.search-input {
    width: 100%;
    border: none;
    background: transparent;
    font-size: 18px;
    font-style: italic;
    padding: 10px 40px 10px 0;
    outline: none;
    color: #fff; /* 改为白色文字 */
    font-family: inherit;
}

.search-input::placeholder {
    color: #ccc; /* 浅灰色 placeholder */
    font-style: italic;
}

.search-submit {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    cursor: pointer;
    font-size: 20px;
    color: #ffffff; /* 改为红色图标 */
}

.search-toggle-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 20px;
    height: 20px;
    cursor: pointer;
}

.icon-close {
    font-size: 20px;
    color: #fff; /* 确保是白色 */
}

.nav-item::before {
    content: '';
    position: absolute;
    left: 0;
    width: 100%;
    height: 60px; 
    background-color: #000;
    top: 50%;
    transform: translateY(-50%); 
    opacity: 0;
    transition: opacity 0.3s;
    z-index: 0; 
    pointer-events: none;
}
.nav-item:hover::before { opacity: 1; }
.nav-item > * { position: relative; z-index: 2; }

.nav-home { height: 140px; flex-shrink: 0; color: #fff; }
.nav-home::before { opacity: 1; }
.nav-container:hover .nav-home { color: #fff; }
.nav-container:hover .nav-home::before { opacity: 0; }
.nav-container .nav-home:hover { color: #fff; }
.nav-container .nav-home:hover::before { opacity: 1; }

.burger-icon {
    position: absolute; right: 30px; top: 50%; transform: translateY(-50%);
    color: #fdb933; font-size: 24px; z-index: 2; opacity: 0; transition: opacity 0.3s ease;
}
.nav-item-with-sub:hover .burger-icon { opacity: 1; }

.nav-item-with-sub { position: relative; }
.nav-submenu {
    position: absolute; left: 100%; top: 50%; transform: translateY(-50%); 
    height: 60px; width: 0; background-color: rgba(30, 30, 30, 0.9);
    overflow: hidden; display: flex; align-items: center; opacity: 0;
    transition: all 0.4s; z-index: 200;
}
.nav-item-with-sub:hover .nav-submenu { width: 580px; opacity: 1; background-color: rgba(64, 64, 64, 0.85); }
.submenu-content { display: flex; width: 100%; justify-content: space-evenly; align-items: center; color: #ddd; font-size: 15px; padding: 0 15px; }
.submenu-item { cursor: pointer; transition: color 0.3s; white-space: nowrap; }
.submenu-item:hover { color: #fff; }
.submenu-divider { width: 1px; height: 14px; background: rgba(255,255,255,0.3); }

.nav-business { height: 60px; flex-shrink: 0; }
.nav-news-header { height: 140px; flex-shrink: 0; }
.nav-logo-box { height: 250px; flex-shrink: 0; background:rgba(220, 53, 22, 0.8); display: flex; align-items: center; justify-content: center; }
.nav-logo-box img { width: 100%; height: auto; object-fit: contain; }
.nav-bottom-group { flex: 1; display: flex; flex-direction: column; }
.nav-sub { flex: 1; justify-content: center; }

.hero-bottom-wrapper { position: absolute; right: 5%; bottom: 15%; display: flex; align-items: center; gap: 40px; z-index: 20; }
.hero-text-box { 
    background-color: rgba(0, 0, 0, 0.6); 
    padding: 20px 30px; 
    color: #fff; 
    font-size: 26px; 
    font-weight: 500; 
    line-height: 1.5; 
    text-shadow: 0 2px 4px rgba(0,0,0,0.5); 
    width: 43vw;
    transition: all 0.3s; 
}
.hero-text-box:hover { text-decoration: underline; background-color: rgba(0, 0, 0, 0.8); cursor: pointer; }
.scroll-control { display: flex; flex-direction: column; align-items: center; gap: 10px; margin-right: 15%; }

.scroll-arrow { 
    width: 44px; 
    height: 44px; 
    display: flex; 
    align-items: center; 
    justify-content: center; 
    cursor: pointer;
    transition: transform 0.2s ease, opacity 0.2s ease;
    border-radius: 50%;
}
.scroll-arrow:hover {
    transform: scale(1.1);
    opacity: 0.8;
}
.scroll-arrow:active {
    transform: scale(0.9);
    opacity: 0.6;
}

.scroll-track { width: 2px; height: 140px; background: rgba(255, 255, 255, 0.3); position: relative; display: flex; flex-direction: column; }

.scroll-segment {
    flex: 1;
    width: 100%;
    background: rgba(255, 255, 255, 0.3);
    transition: background-color 0.3s ease;
}
.scroll-segment.active {
    background: #ff4d4d;
}

/* ================= 标题区域 ================= */
.section-title-wrapper { width: 100%; height: 160px; padding-top: 0; padding-bottom: 30px; display: flex; flex-direction: column; justify-content: flex-end; align-items: center; position: relative; background: #fff; }
.section-main-title-img { width: auto !important; height: auto; max-height: 100px; display: block; }
.top-divider { width: 100%; height: 1px; background-color: #940404; margin-bottom: 0; }

/* ================= 集团动态 ================= */
.news-content-wrapper { width: 100%; background: #ffffff; }
.news-inner-container { width: 1200px; margin: 0 auto; display: flex; gap: 0; padding-bottom: 60px; }
.news-sidebar { width: 200px; padding-top: 30px; padding-right: 35px; text-align: right; border-right: 1px solid #ddd; margin-right: 50px; }
.sidebar-title { font-size: 22px; color: #333; font-weight: normal; }
.sidebar-title .underline { border-bottom: 2px solid #c84a3a; padding-bottom: 3px; font-weight: bold; }
.news-main-content { flex: 1; display: flex; gap: 50px; padding-top: 30px; }
.news-left-column { flex: 1; }
.news-title { cursor: pointer; transition: color 0.2s; }
.news-title:hover { text-decoration: underline; }
.news-item-large .news-title { font-size: 17px; font-weight: bold; line-height: 1.7; color: #333; margin-bottom: 12px; }
.news-date { display: inline-block; background-color: #f8eed8; color: #000; font-size: 12px; padding: 4px 14px; border-radius: 15px; margin-bottom: 15px; }

.news-image { width: 100%; height: 240px; object-fit: cover; margin-top: 10px; transition: transform 0.5s ease, box-shadow 0.5s ease; }
.news-image:hover { transform: scale(1.05); box-shadow: 0 5px 15px #1b1b1b; z-index: 10; position: relative; }

.news-right-column { flex: 1; display: flex; flex-direction: column; gap: 35px; }
.news-item-small { border-bottom: 1px solid #e5e5e5; padding-bottom: 0px; display: flex; justify-content: space-between; gap: 20px; }
.news-item-small:last-of-type { border-bottom: none; }
.news-text-wrapper { flex: 1; }
.news-text-wrapper .news-title { font-size: 17px; font-weight: bold; line-height: 1.6; color: #333; margin-bottom: 12px; }

.news-thumb { width: 200px; height: 120px; object-fit: cover; flex-shrink: 0; transition: transform 0.5s ease, box-shadow 0.5s ease; }
.news-thumb:hover { transform: scale(1.05); box-shadow: 0 5px 15px #1b1b1b; z-index: 10; position: relative; }

.news-section-more { margin-top: -2px !important; justify-content: flex-start; }

/* ================= 底部双栏区域 ================= */
.dual-section-wrapper { width: 100%; padding-bottom: 0; }
.dual-inner-container { width: 100%; margin: 0; display: flex; gap: 0; align-items: stretch; }
.half-column { flex: 1; display: flex; flex-direction: column; padding: 60px 0 80px; }
.half-column.industry { background-color: #f2f2f2; padding-left: calc((100vw - 1400px) / 2); padding-right: 50px; margin-right: 30px; border-radius: 0px 10px 0px 0px;  }
.half-column.special { background-color: #f2f2f2; padding-right: calc((100vw - 1400px) / 2); padding-left: 50px; margin-left: 30px; border-radius: 10px 0px 0px 0px;  }
.column-content { width: 570px; margin: 0 auto; display: flex; flex-direction: column; height: 100%; }
.column-header { font-size: 22px; color: #333; margin-bottom: 25px; position: relative; padding-bottom: 10px; flex-shrink: 0; }
.column-header .red-line { position: absolute; bottom: -1px; left: 45px; width: 45px; height: 3px; background-color: #c84a3a; }
.industry-row { display: flex; gap: 50px; margin-bottom: 20px; flex-shrink: 0; }
.industry-item { flex: 1; }

.ind-img { width: 100%; height: 140px; object-fit: cover; margin-bottom: 15px; transition: transform 0.5s ease, box-shadow 0.5s ease; }
.ind-img:hover { transform: scale(1.05); box-shadow: 0 5px 15px #1b1b1b; z-index: 10; position: relative; }

.ind-title { font-size: 17px; font-weight: bold; line-height: 1.5; color: #333; margin-bottom: 50px; height: 42px; display: -webkit-box; -webkit-box-orient: vertical; cursor: pointer; }
.ind-title:hover { text-decoration: underline; }

.ind-date { display: inline-block; background-color: #f8eed8; color: #666; font-size: 12px; padding: 2px 10px; border-radius: 10px; }

.special-main-img { width: 100%; height: 280px; object-fit: cover; flex-shrink: 0;transition: transform 0.5s ease, box-shadow 0.5s ease; }
.special-main-img:hover { transform: scale(1.05); box-shadow: 0 5px 15px #1b1b1b; z-index: 10; position: relative; }

.bottom-align-wrapper { margin-top: auto; display: flex; align-items: center; justify-content: flex-end; padding-top: 15px; }
.more-btn-group { display: flex; align-items: center; gap: 0; flex-shrink: 0;justify-content: center;height: 100%; }
.industry-more {margin-top: -40px !important;}
.special-bottom-area { width: 100%; display: flex; align-items: center; justify-content: space-between; }
.daren-title-box { position: relative; display: flex; align-items: center;flex-shrink: 0; width: 100%;}
.daren-title-box img { width: auto; height: 40px; max-height: 40px; display: block;}

/* ================= 核心业务 ================= */
.core-business-title-area { width: 100%; background: #fff; padding: 0; text-align: center; }
.core-business-bg { width: 100%; background: url('../img/bg-1-1.jpg') no-repeat top center; background-size: cover; background-color: #000; color: #fff; padding-top: 50px; padding-bottom: 80px; }
.cb-container { width: 1200px; margin: 0 auto; }
.cb-section-title { font-size: 18px; color: #ccc; margin-bottom: 20px; font-weight: bold; padding-bottom: 10px; width: 100%; line-height: 1; }
.cb-section-title img { width: auto; height: auto; max-height: 50px; display: inline-block; vertical-align: bottom; }
.cb-more-container { display: flex; justify-content: flex-end; margin-top: 50px; }
.cb-arts-section { margin-bottom: 60px; }
.arts-row { display: flex; gap: 20px; justify-content: flex-start; }

.arts-poster-wrapper { 
    width: 285px; height: 380px; padding: 10px; 
    border: 1px solid #333; box-sizing: border-box; 
    transition: border-color 0.3s; display: block;
    perspective: 1000px; /* 3D透视效果 */
}
.arts-poster-wrapper:hover { border-color: #fdc613; }
.arts-poster-inner { width: 100%; height: 100%; overflow: hidden; }
.arts-poster-img { 
    width: 100%; height: 100%; object-fit: cover; 
    transition: transform 0.5s ease; 
    transform-origin: right bottom; /* 从右下角开始变换 */
}
.arts-poster-wrapper:hover .arts-poster-img { transform: scale(1.05); }

/* 演艺轮播翻页动画 - 从右下角翻页进入 */
@keyframes artsFlipIn {
    0% {
        opacity: 0;
        transform: perspective(800px) rotateX(30deg) rotateY(-15deg) translateX(50px) translateY(50px) scale(0.8);
    }
    50% {
        opacity: 0.7;
    }
    100% {
        opacity: 1;
        transform: perspective(800px) rotateX(0deg) rotateY(0deg) translateX(0) translateY(0) scale(1);
    }
}

/* 反向翻页进入（向前翻页时使用） */
@keyframes artsFlipInReverse {
    0% {
        opacity: 0;
        transform: perspective(800px) rotateX(-30deg) rotateY(15deg) translateX(-50px) translateY(-50px) scale(0.8);
    }
    50% {
        opacity: 0.7;
    }
    100% {
        opacity: 1;
        transform: perspective(800px) rotateX(0deg) rotateY(0deg) translateX(0) translateY(0) scale(1);
    }
}

/* 退出动画 */
@keyframes artsFlipOut {
    0% {
        opacity: 1;
        transform: scale(1);
    }
    100% {
        opacity: 0;
        transform: scale(0.9) translateY(20px);
    }
}

.arts-poster-img.arts-flip-in {
    animation: artsFlipIn 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
}

.arts-poster-img.arts-flip-in-reverse {
    animation: artsFlipInReverse 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
}

.arts-poster-img.arts-flip-out {
    animation: artsFlipOut 0.2s ease-out forwards;
}

.arts-controls-row { position: relative; display: flex; justify-content: center; align-items: center; margin-top: 25px; width: 100%; }
.ac-center-group { display: flex; align-items: center; gap: 50px; }
.ac-num-box { font-size: 18px; letter-spacing: 2px; }
.num-red { color: #d93826; font-weight: bold; } 
.num-white { color: #fff; } 
.ac-arrows { display: flex; gap: 30px; font-size: 24px; }
.ac-arrow { 
    color: #fff; 
    cursor: pointer; 
    font-weight: bold;
    transition: color 0.3s ease;
}
.ac-arrow:hover { 
    color: #d93826; 
}
.arts-controls-row .cb-more-container { position: absolute; right: 0; top: 50%; transform: translateY(-50%); margin-top: 0; }

/* 展览 */
.cb-exhibit-section { margin-bottom: 60px; }
.exhibit-row { display: flex; gap: 0; } 
.exhibit-col { flex: 1; }
.exhibit-col.left-col { padding-right: 30px; }
.exhibit-col.right-col { padding-left: 30px; border-left: 1px solid #fdb933; }
.exhibit-header { display: flex; align-items: center; margin-bottom: 10px; position: relative; padding-bottom: 10px; }
.exhibit-header::after { content: ''; position: absolute; left: 0; bottom: 0; width: 100%; height: 1px; background: #fdb933; }
.sq-bullet { width: 10px; height: 10px; background-color: #fdb933; margin-right: 10px; }
.ex-title-text { font-size: 16px; color: #fdb933; }
.exhibit-img-wrapper {
    width: 100%; height: 220px;
    overflow: hidden; 
    margin-top: 5px;
}
.exhibit-img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.exhibit-col:hover .exhibit-img { transform: scale(1.05); }

/* 文旅 */
.cb-tourism-section { margin-bottom: 60px; }
.tourism-row { display: flex; gap: 40px; }
.tourism-card { 
    flex: 1; display: flex; height: 300px; position: relative; overflow: hidden; 
}
.tourism-card::before {
    content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 100%;
    background: url('../img/bg-1-3.jpg') no-repeat center center; background-size: cover;
    opacity: 0.4; z-index: 0; border-bottom-right-radius: 10px; 
}
.tourism-img-wrapper {
    width: 50%; height: 100%; overflow: hidden; 
    border-top: 2px solid #fdb933; position: relative; z-index: 1;
}
.tourism-img { width: 100%; height: 100%; object-fit: cover; border-top: none; transition: transform 0.5s ease; }
.tourism-card:hover .tourism-img { transform: scale(1.05); }

.tourism-info { width: 50%; padding: 30px; position: relative; z-index: 1; display: flex; flex-direction: column; border-top: 4px solid #fdb933; }
.tourism-header-deco { width: 30px; height: 2px; background: #fdb933; margin-bottom: 15px; }
.tourism-text { font-size: 17px; line-height: 1.6; color: #ddd; cursor: pointer; }
.tourism-text:hover { text-decoration: underline; }

/* 院线 */
.cb-cinema-section { margin-bottom: 30px; padding-top: 20px;}
.cinema-row { display: flex; align-items: center; justify-content: flex-start; gap: 60px; }
.cinema-btn-circle { 
    width: 100px; height: 100px; border-radius: 50%; background-color: #d93826; 
    display: flex; align-items: center; justify-content: center; flex-shrink: 0; 
    box-shadow: 0 5px 15px rgba(227, 70, 42, 0.4); cursor: pointer; transition: transform 0.3s ease; 
}
.cinema-btn-circle:hover { transform: scale(1.05); }
.cinema-icon { width: 100px; height: 100px; object-fit: contain; }

.cinema-link-text { color: #fff; font-size: 20px; letter-spacing: 1px; margin-left: -40px; cursor: pointer;font-weight: 500; letter-spacing: 4px;}
.cinema-link-text:hover { text-decoration: underline; }

.cinema-info-group { display: flex; align-items: center; gap: 30px; flex: 1; }
.cinema-logo-box { width: 120px; height: 120px; display: flex; align-items: center; transition: transform 0.3s ease; justify-content: center; border-radius: 4px; flex-shrink: 0; }
.cinema-logo-box img { width: 100%; height: 100%; object-fit: contain; }
.cinema-logo-box:hover { transform: scale(1.05); }
.cinema-desc { font-size: 16px; color: #fff; line-height: 1.5; max-width: 500px; cursor: pointer; }
.cinema-desc:hover { text-decoration: underline; }

.cinema-more { margin-bottom: -200px !important;  text-align: left;}

/* 企业介绍 */
.caeg-intro-section { margin-top: 100px; width: 100%; min-height: 450px; background: url('../img/bg-1-2.png') no-repeat center center; background-size: 100% 100%; position: relative; display: flex; align-items: center; justify-content: center; padding: 60px 0; }
.caeg-intro-container { width: 1200px; display: flex; align-items: center; justify-content: center; gap: 80px; }
.intro-content-box { flex: 1; max-width: 850px; }
.intro-text { font-size: 15px; line-height: 2; color: #444; text-align: justify; margin-bottom: 40px; font-weight: 500; cursor: pointer; }
.highlight-title { color: #e63e26; font-size: 20px; font-weight: bold; margin-right: 5px; }
.intro-text:hover { text-decoration: underline; }

.intro-tags { display: flex; justify-content: center; gap: 60px; margin-top: 10px; }
.intro-btn-img { height: 50px; width: auto; cursor: pointer; transition: transform 0.3s; }
.intro-btn-img:hover { transform: scale(1.05); }

/* ================= 品牌盛事 ================= */
.brand-section-wrapper { width: 1200px; margin: 0 auto 0px auto; }
.brand-content-row { display: flex; padding-top: 0; }
.brand-left-col { width: 400px; flex-shrink: 0; border-right: 1px solid #ddd; padding-right: 35px; margin-right: 50px; padding-top: 30px; }
.brand-sub-header { font-size: 20px; color: #333; margin-bottom: 25px; padding-bottom: 10px; }
.brand-sub-header .red-underline { border-bottom: 3px solid #c84a3a; padding-bottom: 10px; }

.celebration-poster { 
    width: 100%; 
    height: auto; 
    margin-bottom: 50px; 
    display: block; 
    box-shadow: 0 2px 8px rgba(0,0,0,0.1); 
    transition: transform 0.5s ease, box-shadow 0.5s ease; 
}
.celebration-poster:hover {
    transform: scale(1.05);
    box-shadow: 0 5px 15px #1b1b1b;
    z-index: 10;
    position: relative;
}

.brand-right-col { flex: 1; display: flex; flex-direction: column; padding-top: 30px; }
.brand-events-grid { display: flex; gap: 20px; margin-bottom: 40px; }

.event-card { flex: 1; background-color: #f5f5f5; padding-bottom: 20px; display: flex; flex-direction: column;border-radius: 0 0 10px 10px; }
.event-img-wrapper { width: 100%; height: 160px; overflow: hidden; }
.event-card-img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.event-card:hover .event-card-img { transform: scale(1.05); }

.event-black-bar { background-color: #000; color: #fff; padding: 8px 15px; font-size: 13px; width: 90%; margin-top: 20px; position: relative; z-index: 2; display: flex; justify-content: space-between; align-items: center; cursor: pointer; }
.event-black-bar:hover .event-title-text { text-decoration: underline; }

.arrow-gold { color: #c84a3a; font-weight: bold; }
.event-desc { font-size: 12px; font-weight: 700; color: #333; line-height: 1.6; padding: 15px 15px 5px 15px; min-height: 80px; text-align: justify; flex: 1; cursor: pointer; }
.event-desc:hover { text-decoration: underline; }

.event-card-bottom { padding: 0 15px; text-align: right; margin-bottom: 0; }
.exchange-year-section { background-color: #f5f5f5; padding: 25px 30px; border-radius: 4px; margin-top: 10px; margin-bottom: 40px; }
.exchange-year-section .brand-sub-header { border-bottom: none; margin-bottom: 20px; padding-left: 0; }
.exchange-imgs-row { display: flex; gap: 20px; }
.exchange-item { flex: 1; position: relative; height: 200px; overflow: hidden; }
.exchange-img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s; }
.exchange-item:hover .exchange-img { transform: scale(1.1); }
.exchange-more-btn{ text-align: right; padding-bottom: 10px; }

.honors-banner { 
    width: 100%; 
    height: 250px; 
    margin-top: 10px; 
    position: relative; 
    cursor: pointer;
}
.honors-banner img { 
    width: 100%; height: 100%; object-fit: cover; 
    transition: transform 0.5s ease, box-shadow 0.5s ease; 
}
.honors-banner:hover img {
    transform: scale(1.05);
    box-shadow: none; 
    z-index: 10;
    position: relative;
}

/* ================= CAEG艺廊 ================= */
.gallery-section-wrapper { width: 100%; margin-bottom: 0; padding-bottom: 0; }
.gallery-container { width: 1200px; margin: 0 auto; display: flex; height: 750px; }
.g-left-col { width: 50%; height: 100%; background: url('../img/pic-28.png') no-repeat center top; background-size: 100% 750px; position: relative; padding: 40px; padding-top: 120px; overflow: hidden; }
.g-right-col { width: 50%; background: url('../img/pic-29.png') no-repeat center top; background-size: 100% 100%; position: relative; display: flex; flex-direction: column; }
.g-art-display { display: flex; gap: 40px; position: relative; z-index: 2; }
.g-art-item { display: flex; flex-direction: column; }
.g-art-item.col-1 { width: 240px; margin-top: 120px; } 
.g-art-item.col-2 { width: 240px; margin-top: 120px; } 

.g-painting-wrapper { overflow: hidden; width: 100%; display: block; height: 300px; }
.g-painting-img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; display: block;}
.g-art-item:hover .g-painting-img { transform: scale(1.05); }

.g-caption { color: #fff; font-size: 17px; border-left: 2px solid #fff; padding-left: 8px; line-height: 1.2; opacity: 0.9;margin-bottom: 20px;margin-top: 20px; cursor: pointer; }
.g-caption:hover { text-decoration: underline; }

.g-gallery-img-box { 
    position: absolute; 
    top: 200px; 
    left: 40px; 
    right: 40px; 
    height: 400px; 
    z-index: 5; 
    overflow: hidden; 
}
.g-room-img { 
    width: 100%; 
    height: 100%; 
    margin-top: 0; 
    object-fit: cover; 
    transition: transform 0.5s ease; 
}
.g-gallery-img-box:hover .g-room-img { transform: scale(1.05); }

.g-gallery-desc { margin-top: 600px; padding: 20px 40px 40px 40px; font-size: 17px; color: #000; line-height: 1.6; font-weight: bold; cursor: pointer; }
.g-gallery-desc:hover { text-decoration: underline; }

