* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

a {
    text-decoration: none;
    /* 去掉默认下划线 */
    color: inherit;
    /* 继承父元素的文本颜色（或指定具体颜色，如 #333） */
}

body {
    font-family: "Microsoft YaHei", "SimSun", Arial, sans-serif;
    /* background-color: #f5e6d3; */
    /* min-height: 100vh; */
    position: relative;
    overflow-x: hidden;
}

.m-1400 {
    max-width: 1280px;
    margin: 0 auto;
}

/* 顶部标题区域 */
.header {
    position: relative;
}

.header-main {
    position: absolute;
    top: 12%;
    left: 0;
    right: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.header-title {
    width: 86%;
    z-index: 2;
}

.header-cehua {
    width: 86%;
    display: flex;
    justify-content: flex-end;
    margin-top: 28px;
}

.header-cehua .header-badge {
    width: 210px;
}


/* 主内容区域 */
.main-content {
    width: 100%;
    height: 100%;
    background-image: url("bj.png");
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    margin-top: -132px;
}

.main-content .main-item {
    padding: 0 20px;
    position: relative;
    padding-top: 150px;
}

/* 第一部分：英雄区域 */
.hero-section {
    position: relative;
    z-index: 10;
    /* border: 1px solid #c8b49a; */
    background: #fff;
}

.hero-container {
    display: flex;
    gap: 0;
    background: transparent;
    border-radius: 0;
    overflow: visible;
    box-shadow: none;
}

.hero-left {
    flex: 0 0 57%;
    width: 57%;
    position: relative;
    overflow: hidden;
    background: #c41e3a;
}

.leader-main {
    position: relative;
}

.leader-text {
    width: 100%;
    position: absolute;
    bottom: 0;
    color: #fff;
    padding: 15px;
    background: rgba(0, 0, 0, 0.5);
}

.leader-text span {
    width: 90%;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    font-size: 17px;
}

.leader-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Swiper 轮播指示点覆盖 */
.hero-pagination {
    bottom: 12px !important;
    display: flex;
    justify-content: flex-end;
    padding-right: 10px;
}

.hero-pagination .swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    background: rgba(255, 255, 255, 0.55);
    opacity: 1;
    border-radius: 50%;
    transition: all 0.3s;
}

.hero-pagination .swiper-pagination-bullet-active {
    background: #c41e3a;
    width: 24px;
    border-radius: 5px;
}

.hero-right {
    flex: 1;
    padding: 0;
    background: #ffffff;
    margin-left: 0;
    display: flex;
    flex-direction: column;
}

.hero-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    height: 100%;
    margin: 0 20px;
}

.hero-list li {
    flex: 1;
    font-size: 17px;
    color: #444545;
    font-weight: 500;
    padding: 0 10px;
    border-bottom: 1px dashed #d4c5b0;
    display: flex;
    align-items: center;
    line-height: 1.5;
    cursor: pointer;
}

.hero-list li a {
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

.hero-list li:last-child {
    border-bottom: none;
}

.hero-list li:hover {
    background-color: #F8F6EE;
}

/* 第二部分：贯彻落实 */
.implementation-section {
    margin-top: 60px;
}

.section-header {
    display: grid;
    /* 左右两栏分配相同的剩余空间(1fr)，中间栏自适应内容(auto) */
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    margin-bottom: 40px;
}

.side-left {
    justify-self: end;
    /* 左侧装饰靠右对齐，紧贴文字 */
    padding-right: 15px;
    /* 文字与左图片的间距 */
}

.title-text {
    text-align: center;
}

.side-right {
    justify-self: start;
    /* 右侧装饰靠左对齐，紧贴文字 */
    padding-left: 15px;
    /* 文字与右图片的间距 */
}

.deco-book,
.deco-line {
    max-width: 100%;
    height: auto;
    display: block;
}

.title-flag {
    font-size: 24px;
}

.title-text {
    font-size: 25px;
    font-weight: bold;
    color: #c41e3a;
    letter-spacing: 3px;
}

.cards-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    margin-bottom: 60px;
}

.card-item {
    background: #ffffff;
    border-radius: 0;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    padding: 15px 35px;
}

.card-content-left {
    display: flex;
    align-items: center;
    gap: 20px;
}

.card-image {
    width: 35%;
}

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

.card-content-left a {
    width: 65%;
    margin-bottom: 20px;
}

.card-content-left h3 {
    font-size: 18px;
    color: #2c5aa0;
    line-height: 1.8;
    font-weight: 600;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

.card-list {
    list-style: none;
}

.card-list li a {
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    line-height: 2.2;
}

.card-list li {
    font-size: 16px;
    padding: 5px 0;
    color: #060606;
}

/* 第三部分：理论解读和媒体评论 */
.theory-section {
    margin-top: 60px;
}

.theory-row {
    /* display: flex; */
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}

.theory-box {
    position: relative;
    padding: 0;
    min-height: 350px;
}

.theory-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 0;
}

.box-bg-image {
    width: 100%;
    height: 100%;
    object-fit: fill;
}

.box-content {
    position: relative;
    z-index: 1;
    padding: 30px 40px;
}

.box-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 0 0 25px 34px;
    padding-bottom: 10px;
}

.box-flag {
    font-size: 22px;
}

.box-title {
    font-size: 20px;
    font-weight: bold;
    color: #c41e3a;
    letter-spacing: 2px;
}

.box-more {
    margin-left: auto;
    font-size: 15px;
    color: #060203;
    cursor: pointer;
}

.theory-list {
    list-style: none;
}

.theory-list li {
    font-size: 16px;
    line-height: 1.5;
    color: #060606;
    padding: 8px 0;
    display: flex;
    align-items: center;
    gap: 10px;
}

.theory-list-text {
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

.list-marker {
    flex-shrink: 0;
    color: #d4a574;
    font-size: 16px;
    margin-top: 2px;
}

/* 第四部分：库安之声 */
.voice-section {
    margin-top: 40px;
    padding-bottom: 80px;
}

.voice-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-bottom: 50px;
}

.voice-deco {
    width: 405px;
    height: auto;
}

.voice-title-box {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 0 10px;
}

.voice-icon {
    width: 100%;
    height: auto;
}

.voice-text-icon {
    width: 100%;
    height: auto;
}

.voice-text {
    font-size: 24px;
    font-weight: bold;
    color: #CC0000;
    letter-spacing: 3px;
    white-space: nowrap;
}

.voice-content {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 50px;
}

.voice-column {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 0;
    padding: 35px 40px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
}

.voice-list {
    list-style: none;
}
.voice-list li a{
    line-height: 1.5;
     display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}
.voice-list li {
    font-size: 16px;
    color: #060606;
    padding: 10px 0;
   
}

.voice-list li:last-child {
    border-bottom: none;
}


/* @media (max-width: 768px) {
    .m-1400 {
        width: 100% !important;
        max-width: 100% !important;
        margin: 0 !important;
    }

    .header {
        width: 100% !important;
    }

    .header .header-bj {
        width: 100% !important;
    }

    .header-title {
        width: 55% !important;
    }

    .header-cehua {
        width: 55% !important;
        margin-top: 7px !important
    }

    .header-cehua .header-badge {
        width: 75px !important;
    }
    .hero-section{
        background:none !important
    }
    .hero-list li a{
        line-height: 1.8 !important;
    }
    .main-content .main-item {
        padding: 150px 15px 0 15px !important;
    }

    .hero-container {
        flex-direction: column !important;
    }

    .hero-left {
        width: 100% !important;
        flex: 0 0 100% !important;
    }

    .hero-right {
        width: 100% !important;
        margin-top: 10px !important;
    }

    .hero-list {
        margin: 0 !important;
    }

    .leader-text {
        padding: 10px !important;
    }

    .leader-text span {
        font-size: 12px !important;
    }

    .hero-list li {
        font-size: 12px !important;
        padding: 5px 8px !important;
    }

    .deco-book {
        width: 30px !important;
    }

    .title-text {
        font-size: 16px !important;
    }

    .implementation-section,
    .theory-section,
    .voice-section {
        margin-top: 20px !important;
    }

    .cards-row {
        grid-template-columns: repeat(1, 1fr);
    }

    .card-image img {
        height: 57px !important;
    }

    .card-content-left h3 {
        font-size: 14px !important;
        -webkit-line-clamp: 2 !important;
    }

    .card-list li {
        font-size: 12px !important;
    }

    .theory-row {
        grid-template-columns: repeat(1, 1fr);
        gap: 20px !important;
    }

    .box-bg-image {
        height: auto !important;
    }

    .box-more {
        font-size: 12px !important;
    }

    .box-header {
        margin: 0 0 14px 19px !important;
    }

    .theory-list li {
        font-size: 12px !important;
        line-height: 1.8 !important;
    }

    .voice-header {
        gap: 10px !important;
        margin-bottom: 20px !important;
    }

    .voice-icon {
        width: 30px !important;
    }

    .voice-text-icon {
        width: 44px !important;
    }

    .voice-text {
        font-size: 20px !important;
    }

    .voice-deco {
        width: 120px !important;
    }

    .voice-title-box {
        padding: 0px !important;
    }

    .voice-content {
        grid-template-columns: repeat(1, 1fr);
        gap: 20px !important;
    }

    .voice-column {
        padding: 15px 20px !important;
    }

    .voice-list li {
        font-size: 12px !important;
    }

    .voice-section {
        padding-bottom: 20px !important;
    }
    .card-item,
    .box-content{
        padding: 15px 20px !important;
    }
    .card-list li a{
        line-height: 1.8 !important;
    }
    .voice-list li{
        padding: 5px 0 !important;
    }
    .voice-list li a{
        font-size: 12px !important;
        line-height: 1.8 !important;
    }
} */