/* 全局字体与行距 */
body {
    font-size: 14px;
    line-height: 1.5em;
    font-family: '微软雅黑', '宋体', sans-serif;
}


/* 顶部链接区样式 */
.navbar-toplinks {
    font-size: 14px;
    height: 30px;
    line-height: 30px;
    color: #959595;
    gap: 0.8rem;
    margin-bottom: 0.1rem;
}
.navbar-toplinks a {
    color: #d5d5d5;
    text-decoration: none;
    transition: color 0.2s;
}
.navbar-toplinks a:hover {
    color: #f5f5f5;
}
.navbar-toplinks .topbar-sep {
    color: #959595;
    opacity: 0.5;
}


/* 导航栏紧随topbar下方固定 */
.navbar{
    padding: 0;
}
.navbar.fixed-top {
    position: fixed !important;
    top: 45px;
    left: 0;
    width: 100%;
    z-index: 1050;
}

/* 导航栏深色到透明渐变 */
.nav-gradient {
    background: linear-gradient(180deg, #111 0%, rgb(0 0 0 / 35%) 60%, rgba(0, 0, 0, 0) 100%) !important;
    transition: background 0.3s;
    z-index: 10;
    
}

/* 默认绝对定位，距顶部45px */
.navbar {
    position: absolute;
    top: 0px;
    left: 0;
    right: 0;
    z-index: 10;
    height: 100px;
    display: flex;
    align-items: center;
    transition: all 0.4s ease;
}

/* 吸顶时fixed定位，从顶部弹出 */
.navbar.sticky-top {
    position: fixed !important;
    top: -100px;
    background: #fff !important;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    transition: all 0.4s ease;
    animation: slideDown 0.4s ease forwards;
}

@keyframes slideDown {
    from {
        top: -100px;
    }
    to {
        top: 0;
    }
}

.navbar.sticky-top .nav-link {
    color: #333333 !important;
    text-shadow: none !important;
}

.navbar.sticky-top .nav-link.active, 
.navbar.sticky-top .nav-link:hover {
    color: #891b21 !important;
}

/* logo切换效果 */
.navbar.sticky-top .logo-light {
    display: none !important;
}

.navbar.sticky-top .logo-dark {
    display: inline-block !important;
}

/* 当navbar吸顶时（Bootstrap自动添加sticky-top类） */
.navbar.sticky-top.sticky-top .logo-light {
    display: none !important;
}

.navbar.sticky-top.sticky-top .logo-dark {
    display: inline-block !important;
}

/* sticky-top 状态下导航高度和隐藏顶部链接 */
.navbar.sticky-top {
    height: 80px !important;
}
.navbar.sticky-top #navbarNav {
    height: 45px !important;
}
.navbar.sticky-top .navbar-toplinks {
    display: none !important;
}

/* slider内容下移恢复为原始 */
#mainSlider {
    margin-top: 0;
}
.carousel-item img {
    height: 80vh;
    object-fit: cover;
    width: 100%;
}
/* slider放大动画 */
.slider-zoom img {
    animation: sliderZoom 5s linear forwards;
}
@keyframes sliderZoom {
    0% { transform: scale(1); }
    100% { transform: scale(1.08); }
}

.carousel-indicators{
    bottom: 1.2rem;
}

.carousel-indicators [data-bs-target]{
    height: 16px;
    width: 16px;
    border:2px solid #fff;
    border-radius: 50%;
    margin-right: 8px;
    margin-left: 8px;
    background: transparent;
}
.carousel-indicators [data-bs-target].active{
    background: #fff;
}

/* 新闻区 */

.news-section .carousel-item img {
    height: 300px;
    object-fit: cover;
}
.news-section .carousel-caption {
    bottom: 0.5rem;
    left: 0.5rem;
    right: 0.5rem;
    padding: 0.5rem 1rem;
}

/* footer */
.footer {
    font-size: 0.95rem;
    background: #20468b;
}
.footer a {
    color: #ffd700;
    text-decoration: none;
}
.footer a:hover {
    text-decoration: underline;
} 
.footer .bottom-logo img{
    height: 60px;
}
.footer .footer-info {
    font-size: 0.92em;
    color: #fff;
    opacity: 0.65;
}
.footer .footer-info .iconfont {
    font-size: 1.2rem;
    margin-right: 0.8rem;
}

.footer .copyright-info {
    font-size: 0.92em;
    color: #fff;
    opacity: 0.65;
}

.sep-line {
    width: 100%;
    height: 1px;
    background-color: #4f69b1;
    opacity: 0.65;
    margin-top: 10px;
    margin-bottom: 10px;
}

.navbar-brand img {
    height: 60px !important;
}

.navbar .nav-link {
    font-size: 18px !important;
    font-weight: 600;
    text-shadow: 0px 0px 3px rgba(0, 0, 0, .3);
    color: #fff !important;
    display: flex;
    align-items: center;
    height: 42px;
    /* padding: 0 1rem; */
    padding-left: 2rem !important;
    padding-right: 0 !important;
}

.navbar .nav-link.active{

}

.navbar .nav-link:hover {
    color: #ffd700 !important;
} 

/* 新闻部分样式 */
.news-section {
    padding: 80px 0 100px;
    position: relative;
}
.news-section-bg01 {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    background: url('../images/bg01.png') bottom left no-repeat;
    background-size: 558px 400px;
    filter: grayscale(1);
    opacity: .25;
    pointer-events: none;
}
.news-section-bg02 {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    background: url('../images/bg12.png') bottom right no-repeat;
    background-size: 507px 320px;
    opacity: .25;
    pointer-events: none;
}

/* 新闻轮播样式 - 重写 */
.news-carousel-wrapper {
    width: 100%;
    height: 400px;
    position: relative;
    overflow: hidden;
    background: #eee;
}

.carousel-container {
    width: 100%;
    height: 100%;
    position: relative;
}

.carousel-slides {
    width: 100%;
    height: 100%;
    position: relative;
}

.carousel-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
}

.carousel-slide.active {
    opacity: 1;
}

.carousel-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.carousel-bottom-bar {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 80px;
    background: linear-gradient(to bottom, rgba(0,34,77,0.0) 0%, rgba(0,34,77,0.95) 100%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    z-index: 2;
    padding: 0 0 0 0;
}

.carousel-title {
    font-size: 16px;
    font-weight: 600;
    color: #fff;
    padding: 0 24px 12px 24px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    margin: 0;
}

.carousel-title a{
    color: #fff;
    text-decoration: none;
}

.carousel-title a:hover{
    color: #ffd700 !important;
    text-decoration: underline !important;
}

.carousel-indicators-custom {
    position: absolute;
    right: 24px;
    bottom: 18px;
    display: flex;
    gap: 10px;
    z-index: 3;
}

.carousel-indicator-dot {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: transparent;
    border: 2px solid #fff;
    cursor: pointer;
    transition: background 0.2s, border 0.2s;
    box-sizing: border-box;
}

.carousel-indicator-dot.active {
    background: #ffffff;
    border: 2px solid #ffffff;
}

.carousel-controls {
    display: flex;
    gap: 10px;
}

.carousel-btn {
    width: 40px;
    height: 40px;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
}

.carousel-btn.prev-btn {
    background: #ffd700;
    color: #333;
}

.carousel-btn.next-btn {
    background: #0056b3;
    color: #fff;
}

.carousel-btn:hover {
    transform: scale(1.05);
}

.carousel-btn:active {
    transform: scale(0.95);
}

/* 删除原有的Bootstrap轮播样式 */
#newsCarousel,
.carousel-caption-bottom,
.custom-carousel-btn {
    display: none;
}

.carousel-caption-bottom h5 {
    margin: 0;
    font-size: 18px;
    font-weight: 500;
    letter-spacing: 1px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    flex: 1;
}

/* 右侧文字新闻列表样式 - 重写 */
.news-list-wrapper {
    display: flex;
    flex-direction: column;
}

.news-list-title {
    display: flex;
    align-items: center;
    margin-bottom: 25px;
}

.news-list-title h3 {
    color: #333;
    font-size: 24px;
    font-weight: bold;
    margin: 0;
    display: flex;
    align-items: center;
}

.title-bracket {
    color: #0056b3;
    font-size: 28px;
    font-weight: bold;
    margin-right: 12px;
    line-height: 1;
}

.news-more-link {
    color: #0056b3;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s;
}

.news-more-link:hover {
    color: #003d82;
    text-decoration: underline;
}

/* 头条新闻样式 */
.news-headline-section {
    margin-bottom: 25px;
}

.news-headline-title {
    color: #333;
    font-size: 16px;
    font-weight: bold;
    margin-bottom: 12px;
    line-height: 1.4;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.news-headline-summary {
    color: #959595;
    font-size: 14px;
    line-height: 1.8;
    margin: 0;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

.news-headline-link {
    color: #353535;
    font-size: 20px;
    text-decoration: none;
    transition: color 0.2s;
}
.news-headline-link:hover {
    color: #9f2325;
    text-decoration: underline;
}

/* 新闻列表样式 */
.news-list {
    list-style: none;
    padding: 0;
    margin: 0;
    flex: 1;
}

.news-item {
    display: flex;
    align-items: flex-start;
    padding: 12px 0;
    border-bottom: 1px solid #f0f0f0;
}

.news-item:last-child {
    border-bottom: none;
}

.news-icon {
    color: #0056b3;
    width: 18px;
    height: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 10px;
    margin-right: 12px;
    flex-shrink: 0;
    margin-top: 2px;
}

.news-link {
    font-size: 16px;
    color: #353535;
    text-decoration: none;
    transition: color 0.2s;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    display: inline-block;
    max-width: 90%;
    vertical-align: middle;
}
.news-link:hover {
    color: #9f2325;
    text-decoration: underline;
}

/* 轮播控制按钮样式 */
#newsCarousel .carousel-control-prev,
#newsCarousel .carousel-control-next {
    width: 40px;
    height: 40px;
    background: rgba(255,255,255,0.2);
    border-radius: 50%;
    top: 50%;
    transform: translateY(-50%);
    border: 2px solid rgba(255,255,255,0.3);
}

#newsCarousel .carousel-control-prev {
    left: -20px;
}

#newsCarousel .carousel-control-next {
    right: -20px;
}

#newsCarousel .carousel-control-prev-icon,
#newsCarousel .carousel-control-next-icon {
    width: 20px;
    height: 20px;
}

#newsCarousel .carousel-control-prev:hover,
#newsCarousel .carousel-control-next:hover {
    background: rgba(255,255,255,0.3);
    border-color: rgba(255,255,255,0.5);
}

/* 会议场景轮播样式 */
.conference-slide {
    background: linear-gradient(135deg, #0056b3 0%, #007bff 50%, #0056b3 100%);
    height: 300px;
    position: relative;
    overflow: hidden;
    border-radius: 6px;
    display: flex;
    flex-direction: column;
}

.conference-header {
    padding: 15px 20px 10px;
    text-align: center;
    color: #fff;
}

.conference-logo {
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 8px;
}

.conference-slogan {
    font-size: 14px;
    line-height: 1.4;
    margin-bottom: 5px;
    font-weight: 500;
}

.conference-date {
    font-size: 12px;
    opacity: 0.9;
}

.conference-content {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 20px;
    position: relative;
}

.conference-side-text {
    writing-mode: vertical-rl;
    text-orientation: mixed;
    color: #fff;
    font-size: 16px;
    font-weight: bold;
    padding: 10px 5px;
    background: rgba(255,255,255,0.1);
    border-radius: 4px;
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.conference-side-text.left {
    transform: rotate(180deg);
}

.conference-main-image {
    flex: 1;
    height: 120px;
    margin: 0 15px;
    border-radius: 6px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0,0,0,0.3);
}

.conference-main-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.conference-banner {
    background: linear-gradient(90deg, #dc3545 0%, #c82333 100%);
    color: #fff;
    padding: 12px 20px;
    text-align: center;
    position: relative;
}

.banner-text {
    font-size: 14px;
    font-weight: bold;
    margin-bottom: 2px;
}

.banner-subtext {
    font-size: 12px;
    opacity: 0.9;
} 

/* media-section整体布局 */
.media-section {
    width: 100%;
    padding: 0;
    position: relative;
    background: #f4f6fa;
}

.media-section-bg01 {
    content: '';
    background: #f4f6fa url('../images/bg02.png') bottom left no-repeat;
    background-size: 730px 320px;
    position: absolute;
    left: 0;
    top: 0;
    right: 50%;
    bottom: 0;
    opacity: .25;
}

.media-section-bg02 {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    right: 0;
    background: #2056a8;
}

.media-section-bg02::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: url('../images/bg03.png') bottom right no-repeat;
    background-size: 520px 400px;
    opacity: .25;
    pointer-events: none;
}

.media-news-list {
    flex: 1;
    padding-top: 80px;
    padding-bottom: 80px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}



.media-title {
    font-size: 28px;
    font-weight: bold;
    color: #222;
    margin-bottom: 32px;
}

.media-news-items {
    list-style: none;
    padding: 0;
    margin: 0;
}

.media-news-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 32px;
    border-bottom: 1px dashed #e0e3e8;
    padding-bottom: 24px;
    overflow: hidden;
}

.media-news-item:last-child {
    margin-bottom: 0;
    border-bottom: none;
    padding-bottom: 0;
}

.media-news-img {
    width: 140px;
    height: 90px;
    object-fit: cover;
    margin-right: 24px;
    flex-shrink: 0;
    transition: transform 0.4s cubic-bezier(.4,2,.6,1);
    overflow: hidden;
}
.media-news-item:hover .media-news-img {
    transform: scale(1.08);
    z-index: 1;
}

.media-news-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    min-width: 0;
    max-width: 100%;
    overflow: hidden;
}

.media-news-headline {
    font-size: 18px;
    font-weight: 500;
    color: #222;
    margin-bottom: 10px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.media-news-headline a{
    color: #353535;
    text-decoration: none;
}

.media-news-headline a:hover{
    color: #9f2325;
    text-decoration: underline;
}

.media-news-summary {
    font-size: 14px;
    color: #959595;
    line-height: 1.6;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* 右侧时间轴 */
.media-timeline {
    flex: 1;
    color: #fff;
    padding-top: 80px;
    padding-bottom: 80px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    position: relative;
}

.media-timeline .media-title {
    color: #fff;
    margin-bottom: 32px;
}

.timeline-list {
    position: relative;
    padding-left: 0px;
    margin: 0;
    list-style: none;
}
/* 时间轴竖线 */
.timeline-list::before {
    content: '';
    position: absolute;
    left: 94px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: #fff;
    opacity: 0.2;
}
.timeline-item {
    position: relative;
    margin-bottom: 38px;
    display: flex;
    align-items: flex-start;
}
.timeline-item:last-child {
    margin-bottom: 0;
}
.timeline-dot {
    position: absolute;
    left: 87px;
    top: 0px;
    font-size: 18px;
    color: #ffffff;
    z-index: 2;
    /* background: #20468b; */
    opacity: 0.8;
}
.timeline-date {
    min-width: 70px;
    text-align: right;
    margin-right: 46px;
    position: relative;
    z-index: 2;
}
.timeline-day {
    font-size: 22px;
    font-weight: bold;
    display: block;
    line-height: 1.1;
}
.timeline-year {
    font-size: 14px;
    opacity: 0.7;
    display: block;
    margin-top: 6px;
}
.timeline-main {
    flex: 1;
    text-align: left;
    z-index: 2;
    max-width: 100%;
    overflow: hidden;
}
.timeline-title {
    font-size: 18px;
    color: #fff;
    font-weight: 500;
    text-decoration: none;
    transition: color 0.2s;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    display: block;
    max-width: 100%;
    vertical-align: middle;
}
.timeline-title:hover {
    color: #ffffff;
    text-decoration: underline;
}
.timeline-detail {
    color: #94b0f1;
    font-size: 14px;
    margin-top: 8px;
    line-height: 1.4;
}



.review-section{
    padding-top: 80px;
    padding-bottom: 100px;
    position: relative;
}

.review-section-bg01 {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    right: 50%;
    height: 100%;
    background: url('../images/bg09.png') bottom left no-repeat;
    background-size: 800px 320px;
    opacity: .25;
    pointer-events: none;
}

.review-section-bg02 {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    right: 0;
    height: 100%;
    background: url('../images/bg12.png') bottom right no-repeat;
    background-size: 507px 320px;
    opacity: .25;
    pointer-events: none;
}

.section-title {
    position: relative;
    font-family: 'Microsoft YaHei', '微软雅黑', Arial, sans-serif;
    font-size: 28px;
    font-weight: bold;
    text-align: left;
    margin-bottom: 1rem;
    z-index: 1;
    letter-spacing: 2px;
    line-height: 1.2;
    display: inline-block;
}

.section-title .section-title-main {
    position: relative;
    z-index: 2;
    background: transparent;
    /* font-family: '宋体'; */
}

.section-title .section-title-main em{
    font-style: normal;
    color: #9f2325;
}

.section-title .section-title-bg {
    position: absolute;
    left: 10px;
    top: 30px;
    transform: translateY(-50%);
    font-size: 28px;
    color: #8dcaf6;
    font-weight: bold;
    z-index: 0;
    pointer-events: none;
    user-select: none;
    white-space: nowrap;
    letter-spacing: 0px;
    opacity: 0.25;
}

.section-title .section-title-symbol {
    position: absolute;
    left: 7.5rem;
    top: -1.4rem;
    font-size: 2.4rem;
    color: #9f2325;
    z-index: 2;
    font-weight: normal;
    pointer-events: none;
    user-select: none;
}

.section-title-light {
    position: relative;
    font-family: 'Microsoft YaHei', '微软雅黑', Arial, sans-serif;
    font-size: 28px;
    font-weight: bold;
    text-align: left;
    margin-bottom: 1rem;
    z-index: 1;
    letter-spacing: 2px;
    line-height: 1.2;
    display: inline-block;
}
.section-title-light .section-title-main{
    color: #fff;
}
.section-title-light .section-title-main em{
    color: #fff;
    font-style: normal;
}
.section-title-light .section-title-bg {
    position: absolute;
    left: 10px;
    top: 30px;
    transform: translateY(-50%);
    font-size: 28px;
    color: #20a2ff;
    font-weight: bold;
    z-index: 0;
    pointer-events: none;
    user-select: none;
    white-space: nowrap;
    letter-spacing: 0px;
    opacity: 0.25;
    z-index: -99;
}
.section-title-light .section-title-symbol {
    position: absolute;
    left: 7.5rem;
    top: -1.4rem;
    font-size: 2.4rem;
    color: #fff;
    z-index: 2;
    font-weight: normal;
    pointer-events: none;
    user-select: none;
}

.col-lg-6.image-cube{
    padding-left: 0px !important;
}

.image-cube-caption-bg {
    background: linear-gradient(180deg, rgba(0,0,0,0) 0%, rgba(0,0,0,0.85) 100%);
    font-size: 1rem;
    opacity: 1;
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.image-cube-img-link img {
    transition: transform 0.4s cubic-bezier(.4,2,.6,1);
}
.image-cube-img-link:hover img {
    transform: scale(1.08);
    z-index: 1;
}

.image-cube-inner {
    display: flex;
    width: 100%;
}
.image-cube-main-img-wrap {
    width: 60%;
    min-height: 260px;
}
.image-cube-main-img-inner {
    height: 100%;
    overflow: hidden;
}
.image-cube-main-img {
    min-height: 260px;
}
.image-cube-side-imgs {
    width: 40%;
    min-height: 260px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.image-cube-side-img-wrap {
    height: calc(50% - 8px);
    position: relative;
    overflow: hidden;
}
.image-cube-side-img {
    min-height: 0;
}

#navbarNav .navbar-nav {
    height: 100%;
    display: flex;
    align-items: center;
}

/* 统一Bootstrap网格系统左右间距 */
.container {
    padding-left: 24px !important;
    padding-right: 24px !important;
}
.row {
    margin-left: -12px !important;
    margin-right: -12px !important;
}
[class^="col-"], [class*=" col-"] {
    padding-left: 32px !important;
    padding-right: 32px !important;
}




.section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    position: relative;
}

.section-more {
    font-size: 0.95rem;
    color: #003f88;
    text-decoration: none;
    position: relative;
    transition: color 0.2s;
    cursor: pointer;
    display: flex;
    align-items: flex-start;
}

.section-more-bgicon {
    font-size: 5em !important;
    color: #edf1f7;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: rotate(180deg);
    pointer-events: none;
    user-select: none;
    opacity: 1;
    z-index: -99;
}
.section-more {
    z-index: 1;
}

.section-more-icon {
    font-size: 1.6em !important;
    color: #003f88;
    position: absolute;
    right: 0.6em;
    top: -0.6em;
    transition: transform 0.4s cubic-bezier(.4,2,.6,1);
    pointer-events: none;
}

.section-more:hover .section-more-icon {
    transform: translateX(8px);
    color: #9f2325;
}
.section-more:hover {
    color: #9f2325;
}



.section-more-light {
    font-size: 0.95rem;
    color: #8fbbed;
    text-decoration: none;
    position: relative;
    transition: color 0.2s;
    cursor: pointer;
    display: flex;
    align-items: flex-start;
    z-index: 1;
}

.section-more-light-icon {
    font-size: 1.6em !important;
    color: #8fbbed;
    position: absolute;
    right: 0.6em;
    top: -0.6em;
    transition: transform 0.4s cubic-bezier(.4,2,.6,1);
    pointer-events: none;
}

.section-more-light:hover .section-more-light-icon {
    transform: translateX(8px);
    color: #ffffff;
}
.section-more-light:hover {
    color: #ffffff;
}

.review-section .news-list-block {
    display: flex;
    flex-direction: column;
    gap: 32px;
    margin: 0;
    padding: 0;
}
.review-section .news-list-item {
    margin-bottom: 0;
}
.review-section .news-list-title {
    font-size: 18px;
    color: #353535;
    margin-bottom: 12px;
    line-height: 1.2;
    word-break: break-all;
}
.review-section .news-list-title-icon {
    color: #0056b3;
    font-size: 18px;
    margin-right: 10px;
    vertical-align: middle;
}
.review-section .news-list-summary {
    font-size: 14px;
    color: #959595;
    line-height: 1.6;
    margin: 0;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    word-break: break-all;
}
.review-section .news-list-link {
    color: #353535;
    font-size: 18px;
    text-decoration: none;
    transition: color 0.2s;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    display: inline-block;
    max-width: 90%;
    vertical-align: middle;
}
.review-section .news-list-link:hover {
    color: #9f2325;
    text-decoration: underline;
}


.page-banner {
    height: 420px;
    position: relative;
    display: flex;
    align-items: center;
}
.banner-content {
    position: relative;
    z-index: 2;
    text-align: left;
    margin-top: 180px;
}
.banner-title {
    color: #fff;
    font-size: 2.2rem;
    font-weight: bold;
    letter-spacing: 2px;
    margin-bottom: 1.2rem;
    text-align: left;
}
.banner-breadcrumb {
    color: #fff;
    font-size: 1.1rem;
    opacity: 0.85;
    text-align: left;
    display: flex;
    align-items: center;
    gap: 8px;
}
.banner-breadcrumb-link {
    color: #fff;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: color 0.2s;
}
.banner-breadcrumb-link:hover {
    color: #ffd700;
}
.banner-breadcrumb .iconfont {
    font-size: 1.1em;
    margin-right: 4px;
}
.banner-overlay {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(32,70,139,0.32);
    z-index: 1;
}

.news-list-rows {
    margin-bottom: 2.5rem;
}
.news-list-row {
    padding-bottom: 24px;
    margin-bottom: 24px;
    border-bottom: 1px solid #e6eaf3;
    gap: 18px;
    align-items: center;
}
.news-thumb-wrap, .news-list-date {
    width: 128px;
    height: 96px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    background: #f4f6fa;
    margin-right: 18px;
    flex-shrink: 0;
    overflow: hidden;
}
.news-thumb-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 0;
    display: block;
    transition: transform 0.4s cubic-bezier(.4,2,.6,1);
}
.news-list-row:hover .news-thumb-img {
    transform: scale(1.08);
    z-index: 1;
}
.news-thumb-date-tag {
    position: absolute;
    left: 8px;
    top: 8px;
    background: #20468b;
    color: #fff;
    font-size: 13px;
    border-radius: 4px;
    padding: 2px 10px;
    z-index: 2;
    opacity: 0.92;
    pointer-events: none;
}
.news-list-date {
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    background: #f4f6fa;
    border-radius: 0;
    box-shadow: 0 2px 8px 0 rgba(32,70,139,0.06);
    margin-right: 18px;
    position: relative;
    padding-top: 16px;
    padding-bottom: 8px;
}
.news-list-date-month {
    font-size: 0.95rem;
    color: #888;
    margin-bottom: 8px;
    font-weight: 500;
    letter-spacing: 1px;
}
.news-list-date-day {
    font-size: 2.1rem;
    color: #20468b;
    font-weight: bold;
    line-height: 1;
}
.news-list-info {
    flex-grow: 1;
    margin-left: 12px;
}
.news-list-row-title {
    font-size: 18px;
    color: #20468b;
    font-weight: 600;
    text-decoration: none;
    transition: color 0.2s;
    display: block;
    margin-bottom: 6px;
    overflow: hidden;
    text-overflow: ellipsis;
}
.news-list-row-title:hover {
    color: #9f2325;
    text-decoration: underline;
}
.news-list-row-meta {
    font-size: 13px;
    color: #888;
}
.news-list-row-summary {
    font-size: 15px;
    color: #555;
    line-height: 1.7;
    margin-top: 2px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}
@media (max-width: 767.98px) {
    .news-thumb-wrap, .news-list-date {
        width: 96px;
        height: 72px;
        margin-right: 10px;
    }
    .news-list-info {
        margin-left: 8px;
    }
    .news-list-date-day {
        font-size: 1.2rem;
    }
    .news-list-date-month {
        font-size: 0.8rem;
        margin-bottom: 4px;
    }
}

.news-detail-page {
    max-width: 820px;
    margin-left: auto;
    margin-right: auto;
}
.news-detail-title {
    font-size: 2.1rem;
    font-weight: 700;
    color: #20468b;
    line-height: 1.3;
    margin-bottom: 1.2rem;
}
.news-detail-meta {
    color: #888;
    font-size: 1rem;
    display: flex;
    gap: 2.5rem;
    align-items: center;
    margin-bottom: 1.5rem;
}
.news-detail-img {
    max-width: 100%;
    border-radius: 8px;
    box-shadow: 0 4px 24px 0 rgba(32,70,139,0.10);
    margin-bottom: 2rem;
}
.news-detail-content {
    font-size: 1.13rem;
    line-height: 2.1;
    color: #333;
}


.footer-justify {
    justify-content: flex-end;
}


.navbar-toggler {
    color: #fff !important;
    border-color: rgba(255,255,255,0.6) !important;
}

.sticky-top .navbar-toggler {
    color: #9f2325 !important;
    border-color: #9f2325 !important;
    background-color: #9f2325 !important;
}


@media (min-width: 1200px) {
    .navbar .nav-link {
        font-size: 16px !important;
    }

    .media-news-list{
        padding-right:54px !important;
    }

    .media-timeline{
        padding-left: 54px !important;
    }
}

@media (max-width: 1199.98px) {
    .navbar .navbar-brand img {
        height: 40px !important;
    }
    .navbar .nav-link {
        font-size: 14px !important;
    }
    .footer .bottom-logo img {
        height: 42px !important;
    }

    .footer-info {
        padding-left: 0px;
        padding-top: 0px;
    }

    .footer-justify {
        justify-content: flex-end;
    }
}


@media (max-width: 991.98px) {

    .navbar-toplinks { display: none !important; }

    .navbar {
        height: 60px !important;
        min-height: 60px;
        padding-top: 0;
        padding-bottom: 0;
    }
    .navbar .navbar-brand img {
        height: 38px;
    }
    .navbar .navbar-brand {
        padding: 0;
        margin-right: 1rem;
    }
    .navbar .navbar-toggler {
        margin-left: auto;
        margin-right: 0;
    }
    .navbar .navbar-collapse {
        left: 0;
        right: 0;
        top: 60px;
        position: absolute;
        background: #8c2323;
        padding: 0.5rem 1rem;
        border-radius: 0 0 8px 8px;
    }
    #navbarNav {
        height: auto !important;
    }
    .navbar.sticky-top #navbarNav {
        height: auto !important;
    }

    .navbar-nav li{
        width: 100%;
    }
    .navbar-nav .nav-link {
        color: #fff !important;
        padding: 0.8rem 0 !important;
        font-size: 16px !important;
        display: block;
        text-align: center;
    }
    .navbar.sticky-top .navbar-nav .nav-link {
        color: #fff !important;
    }
    .navbar-toplinks {
        display: none !important;
    }
    
    .image-cube{
        padding-left: 32px;
    }
    .media-news-list{
        padding-left: 32px !important;
    }

    .news-list-wrapper {
        padding-top: 60px !important;
    }

    .media-section-bg01 {
        right: 0;
        height: 50%;
    }
    .media-section-bg02 {
        top: 50%;
        left: 0;
        bottom: 0;
    }

    .image-cube {
        padding-top: 60px;
    }

    .footer-info {
        padding-left: 0px;
        padding-top: 30px;
    }

    .footer-justify {
        justify-content: flex-start;
    }
    
}


@media (max-width: 767.98px) {

    [class^="col-"], [class*=" col-"] {
        padding-left: 0px !important;
        padding-right: 0px !important;
    }

    .navbar-toggler-icon {
        height: 1em;
        width: 1em;
    }

    .news-detail-page {
        padding-left: 0.5rem;
        padding-right: 0.5rem;
    }
    .news-detail-title {
        font-size: 1.3rem;
    }
    .news-detail-meta {
        font-size: 0.95rem;
        gap: 1.2rem;
    }
    .news-detail-content {
        font-size: 1rem;
    }

    .timeline-list {
        padding-left: 0px;
    }
    .timeline-list::before {
        left: 74px;
    }
    .timeline-date {
        min-width: 48px;
        margin-right: 40px;
    }
    .timeline-dot {
        left: 66px;
        font-size: 15px;
    }
    .timeline-day {
        font-size: 20px;
    }
    .timeline-main {
        font-size: 15px;
    }

    .review-section .news-list-title {
        font-size: 20px;
    }
    .review-section .news-list-summary {
        font-size: 14px;
    }
    .review-section .news-list-block {
        gap: 24px;
    }

    .media-news-list {
        padding-left: 0px !important;
    }
    .media-timeline {
        padding-right: 0px !important;
    }

}




