.material_wrap {
    max-width: 1440px;
    margin: 0 auto;
    padding: 50px 20px 70px;
    box-sizing: border-box;
}

/* 顶部说明文字 */
.material_intro {
    background: #fff;
    border-radius: 12px;
    padding: 36px 40px;
    margin-bottom: 40px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.06);
    border: 1px solid #f0f0f0;
    font-size: 15px;
    line-height: 1.9;
    color: #444;
}

.material_intro .mi-paragraph {
    margin: 0 0 20px;
    text-indent: 2em;
}

.material_intro .mi-lead {
    font-size: 16px;
    color: #333;
    font-weight: 500;
    text-indent: 2em;
    margin-bottom: 28px;
}

/* 产品主图 */
.material_intro .mi-hero-image {
    position: relative;
    margin: -10px 0 28px;
    text-align: center;
}

.material_intro .mi-hero-img-wrap {
    position: relative;
    display: inline-block;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(10, 153, 2, 0.15);
    border: 4px solid #fff;
    transition: all 0.4s ease;
    max-width: 700px;
    width: 100%;
}

.material_intro .mi-hero-img-wrap:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 50px rgba(10, 153, 2, 0.22);
}

.material_intro .mi-hero-img-wrap img {
    display: block;
    width: 100%;
    height: auto;
    vertical-align: middle;
}

.material_intro .mi-hero-badge {
    position: absolute;
    top: -6px;
    right: -6px;
    background: linear-gradient(135deg, #4ec548 0%, #0a9902 100%);
    color: #fff;
    padding: 10px 20px 10px 18px;
    border-radius: 0 14px 0 14px;
    font-size: 14px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 4px 14px rgba(10, 153, 2, 0.3);
    z-index: 2;
}

.material_intro .mi-hero-badge-icon {
    font-size: 18px;
    line-height: 1;
}

.material_intro strong {
    color: black;
    font-weight: 600;
}

.material_intro .mi-section {
    margin: 28px 0;
}

.material_intro .mi-section-title {
    font-size: 18px;
    font-weight: 700;
    color: #1a1a1a;
    margin: 0 0 16px;
    padding-left: 14px;
    border-left: 4px solid #4ec548;
    line-height: 1.4;
}

.material_intro .mi-step-list {
    list-style: none;
    padding: 0;
    margin: 0;
    counter-reset: step;
}

.material_intro .mi-step-list li {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 14px 18px;
    background: #fafcfa;
    border-radius: 8px;
    margin-bottom: 10px;
    border: 1px solid #e8f5e8;
    transition: all .25s ease;
}

.material_intro .mi-step-list li:last-child {
    margin-bottom: 0;
}

.material_intro .mi-step-list li:hover {
    background: #f0faf0;
    border-color: #4ec548;
    transform: translateX(4px);
}

.material_intro .mi-step-num {
    flex: 0 0 36px;
    width: 36px;
    height: 36px;
    background: linear-gradient(135deg, #4ec548, #0a9902);
    color: #fff;
    font-size: 16px;
    font-weight: 700;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
    flex-shrink: 0;
}

.material_intro .mi-step-content {
    flex: 1;
    line-height: 1.8;
    padding-top: 4px;
}

.material_intro .mi-price-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-top: 16px;
}

.material_intro .mi-price-card {
    background: #fff;
    border: 2px solid #e8f5e8;
    border-radius: 10px;
    padding: 24px;
    text-align: center;
    transition: all .3s ease;
    position: relative;
}

.material_intro .mi-price-card:hover {
    border-color: #4ec548;
    box-shadow: 0 8px 24px rgba(10,153,2,.12);
    transform: translateY(-3px);
}

.material_intro .mi-price-card.mi-price-featured {
    border-color: #4ec548;
    background: linear-gradient(180deg, #f8fdf8 0%, #fff 100%);
}

.material_intro .mi-price-card.mi-price-featured::before {
    content: "推荐";
    position: absolute;
    top: -10px;
    right: 20px;
    background: linear-gradient(135deg, #4ec548, #0a9902);
    color: #fff;
    font-size: 12px;
    padding: 3px 12px;
    border-radius: 20px;
    font-weight: 600;
}

.material_intro .mi-price-name {
    font-size: 16px;
    font-weight: 600;
    color: #333;
    margin-bottom: 12px;
}

.material_intro .mi-price-tag {
    font-size: 36px;
    font-weight: 800;
    color: #0a9902;
    line-height: 1.2;
    margin-bottom: 10px;
}

.material_intro .mi-price-tag span {
    font-size: 20px;
    font-weight: 500;
    margin: 0 4px;
}

.material_intro .mi-price-tag .mi-price-unit {
    font-size: 14px;
    font-weight: 500;
    color: #888;
    margin-left: 4px;
}

.material_intro .mi-price-desc {
    font-size: 13px;
    color: #888;
    line-height: 1.6;
}

.material_intro .mi-formula-box {
    margin-top: 28px;
    background: linear-gradient(135deg, #fff8ec 0%, #fffaf2 100%);
    border: 1px solid #ffe4b5;
    border-radius: 10px;
    padding: 22px 26px;
}

.material_intro .mi-formula-title {
    font-size: 16px;
    font-weight: 700;
    color: #d48806;
    margin-bottom: 10px;
}

.material_intro .mi-formula-content {
    font-size: 15px;
    color: #333;
    line-height: 1.8;
}

.material_intro .mi-formula-content strong {
    color: #d48806;
    font-weight: 600;
}

.material_intro .mi-quote-section {
    margin-top: 28px;
}

.material_intro .mi-quote-sub {
    font-size: 14px;
    color: #888;
    margin: -8px 0 14px 18px;
}

.material_intro .mi-quote-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 14px;
    border-top: 2px solid #333;
    border-bottom: 1px solid #e0e0e0;
}

.material_intro .mi-quote-table th {
    background: #f7f7f7;
    color: #333;
    font-weight: 600;
    padding: 12px 16px;
    text-align: left;
    font-size: 14px;
    border-bottom: 1px solid #e0e0e0;
}

.material_intro .mi-quote-table td {
    padding: 11px 16px;
    border-bottom: 1px solid #f0f0f0;
    color: #444;
    background: #fff;
}

.material_intro .mi-quote-table tbody tr:last-child td {
    border-bottom: none;
}

.material_intro .mi-quote-table tbody tr:hover td {
    background: #fafafa;
}

.material_intro .mi-quote-table .mi-quote-num {
    text-align: right;
    font-weight: 500;
    color: #333;
}

.material_intro .mi-quote-table tr.mi-quote-subtotal td {
    background: #fafafa;
    font-weight: 600;
    color: #333;
    border-top: 1px solid #ddd;
}

.material_intro .mi-quote-table tr.mi-quote-subtotal:hover td {
    background: #f5f5f5;
}

.material_intro .mi-quote-table tr.mi-quote-notax td {
    font-weight: 600;
    color: #333;
}

.material_intro .mi-quote-table tr.mi-quote-total td {
    background: #fff;
    font-weight: 700;
    color: #1a1a1a;
    font-size: 15px;
    padding: 13px 16px;
    border-top: 2px solid #333;
}

.material_intro .mi-quote-table tr.mi-quote-total .mi-quote-num {
    font-size: 18px;
    color: #1a1a1a;
    font-weight: 700;
}

.material_intro .mi-quote-note {
    margin: 14px 0 0;
    font-size: 13px;
    color: #888;
    line-height: 1.8;
    padding: 12px 16px;
    background: #fafafa;
    border-left: 3px solid #ddd;
    border-radius: 0 4px 4px 0;
}

.material_intro .mi-quote-note strong {
    color: #555;
    font-weight: 600;
}

.mi-cost-table-wrap {
    margin-top: 40px;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.mi-cost-table-title {
    text-align: center;
    font-size: 20px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 8px;
    letter-spacing: 2px;
}

.mi-cost-table-unit {
    text-align: right;
    font-size: 13px;
    color: #666;
    margin-bottom: 8px;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.mi-cost-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 13px;
    border: 1px solid #d0d0d0;
}

.mi-cost-table th {
    background: #f0f0f0;
    color: #333;
    font-weight: 600;
    padding: 10px 12px;
    text-align: center;
    border: 1px solid #d0d0d0;
    font-size: 13px;
    line-height: 1.4;
}

.mi-cost-table td {
    padding: 9px 12px;
    border: 1px solid #e0e0e0;
    color: #333;
    background: #fff;
    text-align: center;
}

.mi-cost-table td:first-child {
    text-align: center;
}

.mi-cost-table tbody tr:hover td {
    background: #fafafa;
}

.mi-cost-table .mi-cost-num {
    text-align: right;
    font-weight: 500;
    color: #333;
}

.mi-cost-table tr.mi-cost-subtotal td {
    background: #fff4c2;
    font-weight: 600;
    color: #333;
}

.mi-cost-table tr.mi-cost-subtotal:hover td {
    background: #ffeea8;
}

.mi-cost-table tr.mi-cost-subtotal .mi-cost-num {
    font-weight: 700;
    color: #d48806;
}

.mi-cost-table tr.mi-cost-notax td {
    background: #f6faf6;
    font-weight: 600;
    color: #333;
}

.mi-cost-table tr.mi-cost-notax:hover td {
    background: #eef8ee;
}

.mi-cost-table tr.mi-cost-total td {
    background: #f0f7ff;
    font-weight: 700;
    color: #1a1a1a;
}

.mi-cost-table tr.mi-cost-total:hover td {
    background: #e0effc;
}

.mi-cost-table tr.mi-cost-total .mi-cost-num {
    font-size: 15px;
    font-weight: 700;
    color: #1a66c9;
}
.list_banner{
    position: relative;
    width: 100%;
    height: 330px;
    overflow: hidden;
    box-sizing: border-box;
}
.list_banner_img{
    position: absolute;
    inset: 0;
}
.list_banner_img img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.list_banner_mask{
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(0,0,0,.55) 0%, rgba(0,0,0,.35) 100%);
}
.list_banner_text{
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 0 20px;
    color: #fff;
    box-sizing: border-box;
}
.list_banner_title{
    margin: 0 0 16px;
    font-size: 44px;
    font-weight: 700;
    letter-spacing: 4px;
    text-shadow: 0 2px 8px rgba(0,0,0,.35);
}
.list_banner_title::after{
    content: "";
    display: block;
    width: 70px;
    height: 4px;
    background: #4ec548;
    border-radius: 2px;
    margin-top: 14px;
    box-shadow: 0 2px 6px rgba(10,153,2,.4);
}
.list_banner_sub{
    margin: 0;
    font-size: 16px;
    opacity: .85;
    letter-spacing: 1px;
}

@media (max-width: 900px) {
    .list_banner{ height: 220px; }
    .list_banner_title{ font-size: 30px; letter-spacing: 2px; }
    .list_banner_title::after{ width: 50px; height: 3px; margin-top: 10px; }
    .list_banner_sub{ font-size: 14px; }
    .list_banner_text{ padding: 0 24px; }
}
@media (max-width: 560px) {
    .list_banner{ height: 180px; }
    .list_banner_title{ font-size: 24px; }
    .list_banner_sub{ font-size: 13px; }
}

:root {
    --lw-primary: #4ec548;
    --lw-primary-light: #e8f5e8;
    --lw-text: #1a1a1a;
    --lw-muted: #888;
    --lw-line: #ececec;
    --lw-radius: 10px;
    --lw-shadow: 0 2px 12px rgba(0,0,0,.04);
    --lw-shadow-hover: 0 8px 24px rgba(10,153,2,.18);
    --lw-max-width: 1200px;
}

/* 大标题 */
.material_title {
    font-size: 32px;
    font-weight: 800;
    color: #1a1a1a;
    text-align: center;
    margin: 0 0 12px;
    letter-spacing: 2px;
}

.material_subtitle {
    font-size: 18px;
    color: #f19b00;
    font-weight: 700;
    margin: 0 0 35px;
    padding-bottom: 18px;
    border-bottom: 3px solid #f19b00;
    display: inline-block;
}

.material_header {
    text-align: center;
    margin-bottom: 30px;
}

/* 表格容器：PC端最大宽度1200px，小屏可横向滚动 */
.material_table_box {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 6px 24px rgba(0,0,0,0.08);
    padding: 6px;
    box-sizing: border-box;
}

.material_table_box::-webkit-scrollbar {
    height: 8px;
}

.material_table_box::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 4px;
}

.material_table_box::-webkit-scrollbar-thumb {
    background: #c1c1c1;
    border-radius: 4px;
}

.material_table_box::-webkit-scrollbar-thumb:hover {
    background: #a1a1a1;
}

/* 表格本体 */
.material_table {
    width: 100%;
    table-layout: fixed;
    border-collapse: collapse;
    font-size: 14px;
    color: #333;
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
}

.material_table td,
.material_table th {
    padding: 14px 16px;
    border: 1px solid #e8e8e8;
    vertical-align: middle;
    line-height: 1.6;
}

/* 表头 */
.material_table thead td,
.material_table tr.firstRow td,
.material_table tr:first-child td {
    background: #444444;
    color: #fff;
    font-weight: 700;
    text-align: center;
    border-color: #333333;
    font-size: 15px;
}

.material_table thead td strong,
.material_table tr.firstRow td strong,
.material_table tr:first-child td strong {
    color: #fff;
    font-weight: 700;
}

/* 表头hover不变色 */
.material_table thead tr:hover td,
.material_table tr.firstRow:hover td,
.material_table tr:first-child:hover td {
    background: #444444 !important;
    color: #fff !important;
}

/* 第二行表头（甲：乙 / kg/m2 / kg/套） */
.material_table tbody tr:nth-child(1) td,
.material_table tbody tr:nth-child(2) td {
    background: #555555;
    color: #fff;
    font-weight: 600;
    text-align: center;
}

/* 第二行表头hover不变色 */
.material_table tbody tr:nth-child(1):hover td,
.material_table tbody tr:nth-child(2):hover td {
    background: #555555 !important;
    color: #fff !important;
}

/* 普通行 */
.material_table tbody tr td {
    background: #fff;
}


.material_table tbody tr:hover td {
    background: #fff8ec;
}


/* 序号列 */
.material_table tbody tr td:first-child {
    width: 50px;
    min-width: 50px;
    text-align: center;
    font-weight: 600;
    color: #666;
}

.material_table tbody tr.section_row td,
.material_table td[colspan="8"] {
    background: #fff5e6;
    font-weight: 700;
    color: #333;
    text-align: left !important;
    font-size: 16px;
    padding: 16px;
}

.material_table td[colspan="8"] strong {
    color: #f19b00;
    font-size: 16px;
}

/* 说明列 */
.material_table td:last-child {
    text-align: left;
    color: #555;
}

.material_table td:last-child p {
    margin: 0 0 6px;
    line-height: 1.7;
}

.material_table td:last-child p:last-child {
    margin-bottom: 0;
}

/* 各列宽度设置 */
.material_table td:nth-child(1) {
    width: 5%;
    min-width: 50px;
}

.material_table td:nth-child(2) {
    width: 20%;
    min-width: 100px;
    font-weight: 600;
    color: #1a1a1a;
}

.material_table td:nth-child(3) {
    width: 10%;
    min-width: 70px;
    white-space: nowrap;
}

.material_table td:nth-child(4) {
    width: 8%;
    min-width: 50px;
    white-space: nowrap;
}

.material_table td:nth-child(5) {
    width: 9%;
    min-width: 60px;
    white-space: nowrap;
}

.material_table td:nth-child(6) {
    width: 9%;
    min-width: 60px;
    white-space: nowrap;
}

.material_table td:nth-child(7) {
    width: 9%;
    min-width: 60px;
    white-space: nowrap;
}

.material_table td:nth-child(8) {
    width: 30%;
    min-width: 150px;
}

/* 备注行 */
.material_notes {
    margin-top: 30px;
    background: #f8f9fa;
    border-radius: 10px;
    padding: 24px 28px;
    border-left: 4px solid #f19b00;
    font-size: 14px;
    line-height: 2;
    color: #555;
}

.material_notes p {
    margin: 0;
}

/* Banner 标题调整 */
.park_banner_title {
    letter-spacing: 6px;
}

/* 响应式 */
@media (max-width: 1024px) {
    .material_wrap {
        padding: 35px 16px 50px;
    }
    .material_intro {
        padding: 24px 26px;
    }
    .material_intro .mi-hero-img-wrap {
        max-width: 560px;
        border-width: 3px;
    }
    .material_intro .mi-hero-badge {
        padding: 8px 16px 8px 14px;
        font-size: 13px;
    }
    .material_intro .mi-section-title {
        font-size: 17px;
    }
    .material_intro .mi-step-list li {
        padding: 12px 16px;
        gap: 12px;
    }
    .material_intro .mi-step-num {
        width: 32px;
        height: 32px;
        flex: 0 0 32px;
        font-size: 14px;
    }
    .material_intro .mi-price-tag {
        font-size: 30px;
    }
    .material_intro .mi-price-tag span {
        font-size: 18px;
    }
    .material_title {
        font-size: 26px;
    }
    .material_subtitle {
        font-size: 16px;
    }
}

@media (max-width: 768px) {
    .material_wrap {
        padding: 25px 12px 40px;
    }
    .material_intro {
        padding: 18px 16px;
        font-size: 14px;
    }
    .material_intro .mi-hero-image {
        margin: -4px 0 22px;
    }
    .material_intro .mi-hero-img-wrap {
        border-width: 3px;
        border-radius: 12px;
        max-width: 100%;
    }
    .material_intro .mi-hero-badge {
        top: -4px;
        right: -4px;
        padding: 6px 14px 6px 12px;
        font-size: 12px;
        border-radius: 0 10px 0 10px;
    }
    .material_intro .mi-hero-badge-icon {
        font-size: 14px;
    }
    .material_intro .mi-paragraph {
        margin-bottom: 16px;
    }
    .material_intro .mi-lead {
        font-size: 15px;
    }
    .material_intro .mi-section-title {
        font-size: 16px;
        padding-left: 12px;
    }
    .material_intro .mi-step-list li {
        padding: 10px 12px;
        gap: 10px;
    }
    .material_intro .mi-step-num {
        width: 28px;
        height: 28px;
        flex: 0 0 28px;
        font-size: 13px;
    }
    .material_intro .mi-price-grid {
        grid-template-columns: 1fr;
        gap: 14px;
    }
    .material_intro .mi-price-card {
        padding: 18px;
    }
    .material_intro .mi-price-tag {
        font-size: 26px;
    }
    .material_intro .mi-price-tag span {
        font-size: 16px;
    }
    .material_intro .mi-formula-box {
        padding: 16px 18px;
    }
    .material_intro .mi-formula-title {
        font-size: 15px;
    }
    .material_intro .mi-formula-content {
        font-size: 14px;
    }
    .material_intro .mi-quote-sub {
        font-size: 13px;
        margin-left: 14px;
    }
    .material_intro .mi-quote-table {
        font-size: 13px;
    }
    .material_intro .mi-quote-table th,
    .material_intro .mi-quote-table td {
        padding: 10px 12px;
    }
    .material_intro .mi-quote-table tr.mi-quote-total td {
        font-size: 14px;
        padding: 12px;
    }
    .material_intro .mi-quote-table tr.mi-quote-total .mi-quote-num {
        font-size: 18px;
    }
    .mi-cost-table-wrap {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        margin-top: 30px;
    }
    .mi-cost-table {
        min-width: 720px;
        font-size: 12px;
    }
    .mi-cost-table th,
    .mi-cost-table td {
        padding: 8px 10px;
    }
    .mi-cost-table-title {
        font-size: 18px;
    }
    .material_title {
        font-size: 22px;
    }
    .material_subtitle {
        font-size: 15px;
        margin-bottom: 22px;
    }
    .material_table td,
    .material_table th {
        padding: 10px 12px;
        font-size: 13px;
    }
    .material_notes {
        padding: 18px;
        font-size: 13px;
    }
    .material_table {
        min-width: 960px;
    }
}
