.section {
        padding: 80px 20px;
        background: white;
        margin: 40px auto;
        max-width: 1290px;
        border-radius: 12px;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    }

    .section .tip{
        display:flex;
        align-items:center;
        justify-content:center;
        margin-bottom:50px;
    }

    .section h2 {
        text-align: center;
        font-size: 28px;
        margin-bottom: 50px;
        color: #222;
    }

    .layui-tabs-header li,
    .layui-tabs-header a {
        font-size: 16px;
        font-weight: bold;
    }

    .badge {
        margin-right:8px;
        margin-bottom:8px;
        display:inline-block;
    }

    .category-tip {
            display: flex;
            align-items: center;
            gap: 8px;
            margin-bottom: 12px;
            padding: 10px 16px;
            background: #f6f8fa;
            border-radius: 8px;
        }
        .category-tip span {
            font-size: 15px;
            color: #222;
            font-weight: 500;
        }

    .why-choose {}

    .why-choose .feature-item {
        background: white;
        border-radius: 16px;
        padding: 30px;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
        transition: all 0.3s;
    }

    .why-choose .feature-item:hover {
        transform: translateY(-6px);
        box-shadow: 0 6px 16px rgba(0, 0, 0, 0.1);
    }

    .why-choose .feature-icon {
        font-size: 40px;
        color: #4e73df;
        margin-bottom: 15px;
    }

    .why-choose .feature-title {
        font-size: 20px;
        font-weight: 600;
        margin-bottom: 10px;
    }

    .why-choose .feature-desc {
        color: #666;
        font-size: 15px;
        line-height: 1.6;
    }

    .feature {
        display: flex;
        flex-wrap: wrap;
        align-items: center;
        justify-content: space-between;
        margin-bottom: 80px;
        background: #f8fbff;
        border-radius: 12px;
        box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
        padding: 32px 24px;
    }

    .feature:nth-child(even) {
        flex-direction: row-reverse;
    }

    .feature img {
        width: 50%;
        border-radius: 16px;
        box-shadow: 0 8px 32px rgba(15, 98, 254, 0.10), 0 2px 12px rgba(0, 0, 0, 0.04);
        border: 2px solid #eaf0fa;
        transition: transform 0.25s, box-shadow 0.25s;
    }

    .feature img:hover {
        transform: scale(1.04);
        box-shadow: 0 12px 40px rgba(15, 98, 254, 0.18), 0 4px 16px rgba(0, 0, 0, 0.08);
    }

    .feature .text {
        width: 45%;
    }

    .feature .text h3 {
        font-size: 22px;
        color: #000000;
        margin-bottom: 15px;
    }

    .feature .text p {
        font-size: 16px;
        color: #555;
        line-height: 1.7;
    }

    .feature-btn {
        display: inline-block;
        margin-top: 24px;
        padding: 10px 28px;
        background: #0f62fe;
        color: #fff;
        border: none;
        border-radius: 24px;
        font-size: 16px;
        font-weight: 500;
        box-shadow: 0 2px 8px rgba(15, 98, 254, 0.08);
        cursor: pointer;
        transition: background 0.2s, box-shadow 0.2s;
        text-decoration: none;
    }

    .feature-btn:hover {
        background: #0846b7;
        box-shadow: 0 4px 16px rgba(15, 98, 254, 0.18);
    }

    .section.cta {
        background: #f4f8ff;
        box-shadow: 0 4px 20px rgba(15, 98, 254, 0.06);
    }

    @media (max-width: 768px) {
        .section {
            padding: 30px 8px;
            margin: 20px auto;
            max-width: 100%;
            border-radius: 8px;
        }

        .section h2 {
            font-size: 22px;
            margin-bottom: 30px;
        }

        .feature {
            flex-direction: column !important;
            margin-bottom: 40px;
            box-shadow: none;
            padding: 18px 6px;
            border-radius: 8px;
        }

        .feature img {
            width: 100%;
            margin-bottom: 18px;
            border-radius: 12px;
            border: 1px solid #eaf0fa;
            box-shadow: 0 4px 16px rgba(15, 98, 254, 0.10), 0 2px 8px rgba(0, 0, 0, 0.04);
        }

        .feature .text {
            width: 100%;
            text-align: left;
        }

        .feature .text h3 {
            font-size: 18px;
            margin-bottom: 10px;
        }

        .feature .text p {
            font-size: 15px;
            line-height: 1.6;
        }

        .feature-btn {
            display: block;
            width: 90%;
            margin: 18px auto 18px auto;
            font-size: 15px;
            padding: 10px 0;
            text-align: center;
        }
    }