/* Base Styles */
html,
body {
    margin: 0;
    padding: 0;
    font-family: PingFangSC, PingFang SC sans-serif;
    background-color: #FCEFDD; /* 浅色背景 */
    color: #333;
    overflow-x: hidden;
  		min-width: 0 !important;
}

ul, li, p {
    list-style: none;
    margin: 0;
    padding: 0;
}

a {
    text-decoration: none;
    color: inherit;
    transition: color 0.3s;
}

a:hover {
    color: #c01920;
}

* {
    box-sizing: border-box;
}

/* Container */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
}

/* Banner */
.banner {
    width: 100%;
    height: 1004px;
    background: url('./image/banner.png') center top / 1920px auto no-repeat;
}

/* Section Common */
.year-section {
    /* padding: 40px 0; */
}
.section-2026 {
    margin-top: -93px;
}
.section-2025 {
    padding-bottom: 0;
    margin-top: 27px;
}

.section-title {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
    margin-bottom: 40px;
}
.section-title .title-icon {
    width: 172px;
    height: 93px;
}
.section-title .title-icons {
    width: 197px;
    height: 93px;
}
.section-title h2 {
    color: #c01920;
    font-size: 32px;
    margin: 0;
    font-weight: bold;
}

.content-row {
    display: flex;
    justify-content: space-between;
    gap: 20px;
}

/* Video Card */
.video-card {
    display: block;
    width: 404px;
    background: #fff;
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
}

.video-img {
    position: relative;
    height: 227px;
    width: 100%;
    overflow: hidden;
}

.video-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}

.video-card:hover .video-img img {
    transform: scale(1.05);
}

.play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 50px;
    height: 50px;
    background: rgba(0, 0, 0, 0.5);
    border-radius: 50%;
    cursor: pointer;
    transition: background 0.3s;
}

.play-btn:hover {
    background: rgba(192, 25, 32, 0.8);
}

.play-btn::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 55%;
    transform: translate(-50%, -50%);
    border-left: 15px solid #fff;
    border-top: 10px solid transparent;
    border-bottom: 10px solid transparent;
}

.video-text {
    line-height: 69px;
    font-size: 16px;
    color: rgba(29, 34, 46, 1);
    text-align: center;
    height: 69px;
}

/* News List */
.news-list-box {
    width: 350px;
    background: #fff;
    padding: 30px 20px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
    display: flex;
}

.news-list-box ul {
    display: flex;
    flex-direction: column;
    /* gap: 20px; */
    justify-content: space-between;
}

.news-list-box li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding-bottom: 24px;
    position: relative;
}

.news-list-box li::after {
    content: '';
    width: 310px;
    height: 1px;
    background: url(./image/line.png) center center no-repeat;
    left: 0;
    bottom: 0;
    position: absolute;
    background-size: cover;
}

.news-list-box li:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.news-list-box li:last-child::after {
    display: none;
}

.news-list-box a {
    line-height: 1.6;
    font-size: 15px;
    display: block;
    margin-top: -3px;
}

/* Dots Icon (Red circle with white triangle inside) */
.dot {
    width: 18px;
    height: 18px;
    background: url('./image/dot.png') no-repeat center;
    background-size: contain;
    flex-shrink: 0;
    margin-top: 2px;
}

/* 2025 Red Bar */
.red-bar-bg {
    position: relative;
    width: 100%;
    margin-bottom: 50px;
}

.red-bar-bg::before {
    content: '';
    position: absolute;
    left: 50%;
    bottom: -50px;
    z-index: 0;
    width: 1920px;
    height: 204px;
    background: url('./image/red_bg.png') center bottom no-repeat;
    background-size: 1920px auto;
    transform: translateX(-50%);
    pointer-events: none;
}

.red-bar-bg > * {
    position: relative;
    z-index: 1;
}


/* Media Focus Section */
.media-section {
    padding: 60px 0 80px 0;
}

.media-content {
    display: flex;
    align-items: center;
}

/* Media Slider */
.media-slider-wrapper {
    width: 537px;
    position: relative;
    flex-shrink: 0;
}

.media-slider-bg {
    position: absolute;
    left: -30px;
    bottom: -30px;
    width: 100%;
    height: 100%;
    background-color: #c01920;
    z-index: 1;
}

.swiper {
    width: 100%;
    height: 302px;
    position: relative;
    z-index: 2;
}
.swiper-slide {
    display: block;
}
.swiper-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.slide-title {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background: rgba(0, 0, 0, 0.6);
    color: #fff;
    padding: 12px 20px;
    font-size: 16px;
    box-sizing: border-box;
}

/* Swiper Pagination Customization */
.swiper-pagination-bullet {
    background: #fff!important;
    opacity: 1!important;
}

.swiper-pagination-bullet-active {
    background: #FCDF8A!important;
    opacity: 1!important;
}

.swiper-pagination-horizontal {
    bottom: -25px!important;
    right: 60px!important;
    left: auto!important;
    width: auto!important;
}

/* Media Articles */
.media-articles {
    width: 660px;
    height: 302px;
    background: #fff;
    padding: 25px 33px 22px 41px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
}

.article-main-title {
    color: #C48030;
    font-size: 18px;
    text-align: center;
    margin-top: 0;
    margin-bottom: 20px;
}

.article-desc {
    font-size: 14px;
    color: #1D222E;
    line-height: 24px;
    padding-bottom: 20px;
}

.article-links {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 25px 20px;
    border-top: 1px dashed #ccc;
    padding-top: 30px;
}

.link-item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 15px;
    line-height: 1.5;
}

/* Responsive Design */
@media (max-width: 768px) {
    .container {
        width: 100%;
        padding: 0 16px;
    }

   .banner {
        height: calc(100vw * 492 / 750);
        background: url('./image/banner_m.png') center top / 100% auto no-repeat;
    }


    .section-2026 {
        margin-top: 5px;
    }

    .section-title {
        margin-bottom: 24px;
    }

    .section-title .title-icon,
    .section-title .title-icons {
        width: auto;
        height: 64px;
    }

    .content-row {
        flex-wrap: wrap;
        justify-content: center;
        gap: 16px;
    }

    .video-card,
    .news-list-box {
        width: 100%;
        margin-bottom: 0;
    }

    .video-img {
        height: auto;
        aspect-ratio: 404 / 227;
    }

    .video-text {
        height: auto;
        min-height: 52px;
        padding: 12px 14px;
        line-height: 28px;
    }

    .news-list-box {
        padding: 24px 16px;
    }

    .news-list-box ul {
        width: 100%;
        gap: 18px;
    }

    .news-list-box li {
        padding-bottom: 18px;
    }

    .news-list-box li::after {
        width: 100%;
    }

    .red-bar-bg {
        margin-bottom: 32px;
    }

    .red-bar-bg::before {
        width: 100vw;
        bottom: -32px;
        height: 160px;
        background-size: cover;
    }

    .media-section {
        padding: 36px 0 56px;
    }

    .media-content {
        flex-direction: column;
    }

    .media-slider-wrapper {
        width: 100%;
        max-width: none;
        margin-bottom: 24px;
    }

    .swiper {
        height: auto;
        aspect-ratio: 537 / 302;
    }

    .slide-title {
        padding: 10px 14px;
        font-size: 14px;
        line-height: 22px;
    }

    .swiper-pagination-horizontal {
        right: 10px!important;
        bottom: 10px!important;
    }

    .media-slider-bg {
        left: -8px;
        bottom: -8px;
    }

    .media-articles {
        width: 100%;
        height: auto;
        padding: 22px 16px 24px;
    }

    .article-main-title {
        margin-bottom: 14px;
        font-size: 17px;
        line-height: 26px;
    }

    .article-desc {
        padding-bottom: 18px;
    }

    .article-links {
        grid-template-columns: 1fr;
        gap: 16px;
        padding-top: 20px;
    }
      .kmsssjlchy_bottomBox {
        display: none;
      }
}
