   .custom-pricing-container {
            max-width: 1200px;
            margin: auto;
            padding: 20px;
        }
        .custom-tabs {
            display: flex;
            justify-content: center;
            margin-bottom: 20px;
            border-bottom: 2px solid #ddd;
        }
        .custom-tab {
            flex: 1;
            padding: 10px 20px;
            text-align: center;
            cursor: pointer;
            background: #f8f8f8;
            border: 1px solid #ddd;
            margin: 0 5px;
            border-radius: 5px 5px 0 0;
            transition: background 0.3s ease;
        }
        .custom-tab:hover, .custom-tab.custom-active {
            background: #dd3b5b;
            border-bottom: none;
			color: #ffffff;
        }
        .custom-pricing-table {
            display: flex;
            justify-content: center;
            flex-wrap: wrap;
        }
        .custom-plan {
            background: #ffffff;
            border: 1px solid #ddd;
            border-radius: 10px;
            text-align: center;
            padding: 20px;
            margin: 10px;
            flex: 1;
            min-width: 280px;
            max-width: 400px;
            position: relative;
            box-shadow: 0 0 10px rgba(0,0,0,0.1);
        }
        
.custom-plan.custom-popular h2,
.custom-plan.custom-popular .custom-price,
.custom-plan.custom-popular .custom-save,
.custom-plan.custom-popular p,
.custom-plan.custom-popular .custom-features li,
.custom-plan.custom-popular .custom-checkmark {
    color: #ffffff; /* 确保所有文字为白色 */
}

.custom-plan.custom-popular .custom-features li {
    border-bottom-color: rgba(255, 255, 255, 0.5); /* 将分隔线颜色调为白色的半透明 */
}

/* 如果想保持 .custom-plan.custom-popular 整体背景和边框一致性，只需对外层容器处理 */
.custom-plan.custom-popular {
    border: 2px solid #dd3b5b;
    background-color: #dd3b5b;
    color: #ffffff;
}
        .custom-plan .custom-save {
            color: #dd3b5b;
            font-weight: bold;
        }
        .custom-plan .custom-price {
            font-size: 24px;
            margin: 10px 0;
        }
        .custom-plan .custom-button {
    background-color: #000; /* 初始背景颜色 */
    color: #ffffff; /* 初始文本颜色 */
    border: none;
    padding: 10px;
    border-radius: 5px;
    cursor: pointer;
    margin: 10px 0;
    text-decoration: none;
    display: inline-block;
    transition: background-color 0.3s ease; /* 确保过渡效果存在 */
}

.custom-plan .custom-button:hover {
    background-color: #dd3b5b !important; /* 使用 !important 提升优先级 */
    color: #ffffff !important; /* 保持文本颜色为白色 */
}
        .custom-plan .custom-features {
            list-style: none;
            padding: 0;
            text-align: left;
            margin-top: 20px;
        }
        .custom-plan .custom-features li {
            padding: 10px 0;
            border-bottom: 1px solid #ddd;
        }
        .custom-plan .custom-features li:last-child {
            border-bottom: none;
        }
		ion-icon {
  font-size: 24px;
  font-weight:bold;
}
        .custom-checkmark {
            color: #dd3b5b;
            float: right;
        }
		.custom-checkmark2 {
            color: #ffffff;
            float: right;
        }
        .custom-crossmark {
            color: red;
            float: right;
        }
        @media (max-width: 768px) {
            .custom-plan {
                min-width: 100%;
            }
        }

.white{
	color:#fff;
}

/* 默认按钮样式 */
    .btn-payment {
        border-color: #ccc; /* 初始边框颜色 */
    }

    /* 按钮点击（激活）后的样式 */
    .btn-payment:active {
        border-color: black; /* 点击后变为黑色 */
    }