
    .priceList-box {
        font-family: 'STSong', 'SimSun', '宋体', serif;
        background: #f5f2eb;
        border: 1px solid rgba(0, 0, 0, 0.08);
        padding: 40px;
        margin: 40px 0;
        position: relative;
    }

    .priceList-box::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 6px;
        height: 100%;
        background: linear-gradient(180deg, #8b2500, #b8860b);
    }

    .priceList-box h2 {
        font-family: 'STXingkai', '华文行楷', 'KaiTi', '楷体', cursive;
        font-size: 32px;
        color: #8b2500;
        text-align: center;
        margin-bottom: 40px;
        position: relative;
    }

    .priceList-box h2::after {
        content: '';
        position: absolute;
        bottom: -10px;
        left: 50%;
        transform: translateX(-50%);
        width: 80px;
        height: 3px;
        background: linear-gradient(90deg, transparent, #8b2500, transparent);
    }

    .info-series ul {
        display: grid;
        grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
        gap: 20px;
        list-style: none;
        padding: 0;
        margin: 0;
    }

    .info-series li {
        background: #e8e4d9;
        border: 1px solid rgba(0, 0, 0, 0.08);
        padding: 20px;
        border-radius: 8px;
        transition: all 0.3s ease;
        display: flex;
        flex-direction: column;
        gap: 10px;
        overflow: hidden;
    }

    .info-series li:hover {
        transform: translateY(-5px);
        box-shadow: 0 10px 30px rgba(139, 37, 0, 0.15);
        border-color: rgba(139, 37, 0, 0.3);
    }

    .info-series li > p:first-child {
        text-align: center;
        margin: 0;
        padding: 0;
    }

    .info-series li > p:first-child img {
        width: 100%;
        height: 140px;
        object-fit: contain;
        background: white;
        padding: 10px;
        border-radius: 4px;
    }

    .info-series li p {
        margin: 0;
        font-size: 13px;
        color: #1a1a1a;
        line-height: 1.5;
        word-break: break-word;
    }

    .info-series li p:nth-child(2) {
        font-weight: bold;
        color: #8b2500;
        font-size: 14px;
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
        overflow: hidden;
    }

    .info-series li p:nth-child(3),
    .info-series li p:nth-child(4) {
        color: #b8860b;
        font-weight: 500;
    }

    .info-series li p:nth-child(4) {
        text-align: right;
    }

    .end-link {
        color: #8b2500;
        text-decoration: none;
        font-size: 13px;
        transition: color 0.3s ease;
        display: inline-block;
        margin-top: auto;
    }

    .end-link:hover {
        color: #b8860b;
    }

    @media (max-width: 768px) {
        .priceList-box {
            padding: 20px;
        }

        .priceList-box h2 {
            font-size: 24px;
            margin-bottom: 20px;
        }

        .info-series ul {
            grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
            gap: 15px;
        }

        .info-series li {
            padding: 15px;
        }

        .info-series li > p:first-child img {
            height: 120px;
        }
    }

    @media (max-width: 480px) {
        .info-series ul {
            grid-template-columns: 1fr;
        }
    }
