
    .senseng-details-wrapper * {
        margin: 0;
        padding: 0;
        box-sizing: border-box;
        font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    }
    
    .senseng-details-wrapper {
        width: 100%;
        background: #f8f9fa;
        padding: 40px 20px;
    }

    /* 使用 auto-fit 实现真正智能的响应式网格，单列卡片最小宽度 260px，绝不挤压文字 */
    .senseng-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
        gap: 25px;
        max-width: 1300px;
        margin: 0 auto;
    }
    
    .senseng-card {
        background: #ffffff;
        border-radius: 12px;
        padding: 30px 25px;
        box-shadow: 0 4px 15px rgba(0,0,0,0.05);
        border: 1px solid #eaeaea;
        position: relative;
        overflow: hidden;
        display: flex;
        flex-direction: column;
        transition: transform 0.3s ease, box-shadow 0.3s ease;
    }

    .senseng-card:before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 4px;
        background: #000000;
    }
    
    .senseng-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 10px 25px rgba(0,0,0,0.1);
    }
    
    .senseng-card-title {
        font-size: 20px;
        font-weight: 700;
        color: #111111;
        margin-bottom: 20px;
        display: flex;
        align-items: center;
        gap: 12px;
        letter-spacing: 0.5px;
        border-bottom: 1px solid #f0f0f0;
        padding-bottom: 12px;
    }
    
    .senseng-card-title i {
        color: #111111;
        font-size: 20px;
    }

    .senseng-list {
        list-style: none;
        padding: 0;
        margin: 0;
    }

    .senseng-list li {
        margin-bottom: 14px;
        position: relative;
        padding-left: 20px;
        font-size: 15px;
        color: #444444;
        line-height: 1.6;
    }

    /* 使用精细的小方点/打勾标记替代笨重的原生 bullet */
    .senseng-list li::before {
        content: "•";
        color: #000000;
        font-weight: bold;
        font-size: 18px;
        position: absolute;
        left: 0;
        top: -2px;
    }

    .senseng-list li strong {
        color: #111111;
    }

    .care-sublist {
        margin-top: 8px;
        padding-left: 5px;
        list-style: none;
    }

    .care-sublist li {
        font-size: 14px;
        margin-bottom: 6px;
        color: #666666;
        padding-left: 15px;
    }

    .care-sublist li::before {
        content: "-";
        position: absolute;
        left: 0;
        top: 0;
        font-weight: normal;
    }

    /* 移动端专属微调 */
    @media (max-width: 600px) {
        .senseng-details-wrapper {
            padding: 20px 10px;
        }
        .senseng-card {
            padding: 20px 18px;
        }
        .senseng-card-title {
            font-size: 18px;
        }
    }
