/* 产品特性列表 - 整体容器 */
.custom-package-features {
    margin: 15px 0;
    padding: 0;
}

/* 移除列表的默认样式 */
.custom-package-features ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

/* 每个特性项 */
.custom-package-features li {
    display: flex;
    justify-content: space-between; /* 实现标签和数值两端对齐 */
    align-items: center;
    padding: 8px 0;
    border-bottom: 1px solid #e9ecef; /* 使用Bootstrap的浅灰色边框，与WHMCS风格保持一致 */
    font-size: 14px; /* 字体保持适中 */
}

/* 最后一个特性项去掉边框，更干净 */
.custom-package-features li:last-child {
    border-bottom: none;
}

/* 特性标签（左侧） */
.custom-package-features .feature-label {
    color: #6c757d; /* Bootstrap的次要文本颜色 */
    font-weight: 400;
}

/* 特性数值（右侧） */
.custom-package-features .feature-value {
    color: #212529; /* Bootstrap的主要文本颜色 */
    font-weight: 500;
}

/* 高亮特性（例如“年付八折优惠”） */
.custom-package-features .feature-highlight .feature-label {
    color: #28a745; /* Bootstrap的成功（绿色） */
    font-weight: 600;
}

.custom-package-features .feature-highlight .feature-value {
    color: #dc3545; /* Bootstrap的危险（红色） */
    font-weight: 700;
}