/* ===================== 全局报纸容器基础 ===================== */
.news-paper-wrap {
    max-width: 1200px;
    margin: 40px auto;
    padding: 35px;
    background-color: #f6f1e4;
    /* 纸张纹理SVG背景 */
    background-image: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11 18c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm48 25c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm-43-7c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm63 31c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM34 90c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm56-76c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM12 86c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm28-65c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm23-11c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-6 60c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm29 22c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zM32 63c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm57-13c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-9-21c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM60 91c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM35 41c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM12 60c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2z' fill='%23d9cdb8' fill-opacity='0.2' fill-rule='evenodd'/%3E%3C/svg%3E");
    border: 1px solid #c9bfa7;
    box-shadow: 0 2px 12px rgba(90,70,40,0.15);
}

/* ===================== 顶部大图横幅 ===================== */
.news-banner {
    width: 100%;
    height: 420px;
    object-fit: cover;
    border: 3px double #775c44;
    margin-bottom: 28px;
    filter: sepia(18%);
}

/* ===================== 装饰分割线 ===================== */
.old-line-top {
    width: 100%;
    height: 2px;
    background: #33261a;
    margin-bottom: 12px;
    position: relative;
}
.old-line-top::after {
    content: "◆ ◆ ◆";
    display: block;
    text-align: center;
    color: #33261a;
    letter-spacing: 12px;
    margin: -10px 0 8px;
    font-size: 14px;
}

.old-line-middle {
    width: 80%;
    margin: 0 auto 30px;
    height: 1px;
    background: #554332;
}

/* ===================== 日期、标题 ===================== */
.news-date {
    font-family: Arial, sans-serif;
    font-style: italic;
    color: #604b38;
    font-size: 15px;
    letter-spacing: 1px;
    text-align: center;
    margin-bottom: 16px;
}

.news-title {
    font-family: Arial, sans-serif;
    font-size: 42px;
    font-weight: bold;
    text-align: center;
    line-height: 1.2;
    color: #1a130d;
    text-transform: capitalize;
    margin-bottom: 22px;
    letter-spacing: 2px;
}

/* ===================== 新闻正文排版 ===================== */
.news-content {
    column-count: 2;
    column-gap: 36px;
    column-rule: 1px solid #c2b4a1;
    font-family: Arial, sans-serif;
    font-size: 17px;
    line-height: 1.8;
    color: #2c2117;
    text-align: justify;
}
/* 首字下沉 */
.news-content p:first-of-type::first-letter {
    font-size: 62px;
    float: left;
    line-height: 0.8;
    padding-right: 8px;
    font-weight: bold;
}
.news-content p {
    margin: 0 0 18px;
}
.news-content h3 {
    margin:24px 0 10px;
    font-weight:bold;
}
.news-content h4 {
    margin:20px 0 8px;
    font-weight:bold;
}
.news-content table {
    width:100%;
    border-collapse: collapse;
    margin:16px 0;
}
.news-content table th,.news-content table td {
    border:1px solid #c2b4a1;
    padding:8px 12px;
}
.news-content ul, .news-content ol {
    padding-left:20px;
    margin:12px 0;
}

/* ===================== 通用图片占位框 ===================== */
.img-placeholder {
    width:100%;
    height:260px;
    background:#d9cdb8;
    display:flex;
    align-items:center;
    justify-content:center;
    margin:20px 0;
    border:2px double #775c44;
    color:#443322;
}

/* ===================== 产品模块 ===================== */
.product-item {
    margin-bottom: 36px;
    padding-bottom: 26px;
    border-bottom: 1px dashed #c2b4a1;
}
.product-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
}
.img-row {
    display: flex;
    gap: 12px;
    margin-bottom: 12px;
}
.img-row .img-placeholder {
    flex: 1;
    height: 200px;
    margin: 0;
}
.product-name {
    font-size:22px;
    font-weight:bold;
    margin: 8px 0;
    color:#1a130d;
}
.quick-view-link {
    color:#234e80;
    text-decoration:underline;
    font-size:16px;
}

/* ===================== 新闻列表模块 ===================== */
.news-list-item {
    margin-bottom: 32px;
    padding-bottom: 24px;
    border-bottom: 1px dashed #c2b4a1;
}
.news-list-item:last-child {
    border-bottom: none;
    margin-bottom:0;
}
.news-list-item .img-placeholder {
    height:220px;
    margin:0 0 14px;
}
.list-title {
    font-size:22px;
    font-weight:bold;
    color:#1a130d;
    margin:0 0 8px;
}
.list-date {
    font-style:italic;
    color:#604b38;
    font-size:15px;
    margin:0 0 10px;
}
.read-more-link {
    color:#234e80;
    text-decoration:underline;
}

/* ===================== 移动端统一适配（仅1段，无重复） ===================== */
@media screen and (max-width:768px) {
    .news-paper-wrap {
        margin: 20px 12px;
        padding: 20px;
    }
    .news-banner {
        height: 240px;
    }
    .news-title {
        font-size: 26px;
    }
    .news-content {
        column-count: 1;
        column-rule: none;
        font-size: 16px;
    }
    .news-content p:first-of-type::first-letter {
        font-size: 46px;
    }
    /* 产品模块移动端 */
    .img-row {
        flex-direction: column;
    }
    .product-name {
        font-size:19px;
    }
    /* 新闻列表移动端 */
    .list-title {
        font-size:19px;
    }
}
