    /* 基本样式 */
    .svipbody {
        font-family: Arial, sans-serif;
        background-color: #f8f9fa;
        display: flex;
        justify-content: center;
        align-items: center;
        flex-wrap: wrap;
        padding: 20px;
        margin: 0;
    }

    /* 卡片样式 */
    .svip-custom-card {
        max-width: 300px;
        margin: 10px;
        border-radius: 15px;
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
        transition: all 0.3s ease-in-out;
        background-color: white; /* 背景色 */
        overflow: hidden; /* 避免内容溢出 */
    }
    
    .svip-custom-card h5{
        display: block;
        font-size: 1.5em;
        font-weight: bold;
        
    }

    /* 卡片悬停效果 */
    .svip-custom-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3);
    }

    .svip-card-img-top {
        width: 100%; /* 图片宽度 */
        height: auto; /* 高度自适应 */
        border-radius: 15px 15px 0 0; /* 图片上圆角 */
    }

    .svip-card-body {
        padding: 15px;
    }

    .svip-card-title {
        font-size: 1.5rem;
        color: #333;
        margin: 0 0 10px; /* 下边距 */
    }

    .svip-card-text {
        font-size: 1.3rem;
        color: #666;
        margin: 0 0 15px; /* 下边距 */
    }

    .svip-card-footer {
        background-color: #f8f9fa;
        border-top: 1px solid #e1e1e1;
        padding: 10px;
    }

    .svip-btn-custom {
        background-color: #007bff;
        color: white;
        width: 100%;
        border: none; /* 去除边框 */
        border-radius: 10px;
        padding: 10px;
        cursor: pointer; /* 鼠标指针 */
        text-align: center; /* 居中 */
    }

    .svip-btn-custom:hover {
        background-color: #0056b3; /* 悬停效果 */
    }

    /* 响应式布局 */
    @media (max-width: 768px) {
        .svip-custom-card {
        max-width: 90%; /* 移动端宽度 */
        }
    }

    @media (min-width: 769px) {
        .svip-custom-card {
        flex: 1 0 calc(33.33% - 40px); /* 三列布局 */
        }
    }