   i.fas:before {
        font-family: "Font Awesome 6 Free" !important;
        font-weight: 900 !important;
    }


    /* 右侧表单卡片 */
    .biaodan {
        flex: 1;
            /* background: rgba(255, 255, 255, 0.95); */
    backdrop-filter: blur(10px);
    border-radius: 32px;
    /* padding: 36px 32px; */
    /* box-shadow: 0 20px 35px -12px rgba(0, 0, 0, 0.2); */
    transition: transform 0.3s ease;
    /* margin: 25px; */
    }

    .biaodan:hover {
        /* transform: translateY(-4px); */
    }

    .shiting {
        font-size: 1.8rem;
        font-weight: 700;
        color: #0e325a;
        text-align: center;
        /* margin-bottom: 28px; */
        letter-spacing: -0.5px;
            padding: 36px 32px;
    }

    .shiting i {
        margin-right: 8px;
        color: #3453db;
        font-size: 1.8rem;
    }

     .biaodan .form-subtitle{
        position: relative;
        display: flex;
        justify-content: center;
    }

    .biaodan .form-subtitle .subtitle-line {
        width: 403px;
        height: 8px;
        background: linear-gradient(to bottom, rgb(0 0 0 / 53%), #486bf0, rgb(0 0 0 / 0%));
        clip-path: polygon(-32% 117%, 59% 0, 100% 50%, 60% 100%);
        clip-path: polygon(0 50%, 60% 0, 100% 50%, 60% 100%);
    }

    .biaodan .form-subtitle .subtitle-text {
        position: absolute;
        top: -9px;
        left: 39.4%;
        background: #fff;
        padding: 0 19px;
        font-size: 15px;
        font-weight: 600;
    }

    .biaodan form {
        display: flex;
        flex-direction: column;
        align-items: center;
        margin-top: 70px;
        padding: 30px 20px 20px 20px;
        /* box-shadow: 0px 0px 35px 0px rgba(0, 0, 0, 0.2); */
        border-radius: 10px;
    }

   

    .biaodan form .form-column {
        width: 100%;
        display: flex;
        gap: 100px;
    }



    .biaodan form span {
        display: block;
        margin-bottom: 20px;

        display: flex;
        flex-direction: column;
        width: 100%;
    }

    .biaodan label {
        display: block;
        font-weight: 600;
        color: #1e2f3e;
        margin-bottom: 8px;
        font-size: 1rem;
    }

    .biaodan select,
    .biaodan input {
        padding: 12px 16px;
        border: 1.5px solid #e2edf2;
        border-radius: 16px;
        font-size: 0.95rem;
        font-family: 'Inter', sans-serif;
        transition: all 0.2s;
        background: white;
    }

    .biaodan select {
        width: 100%;
    }

    .biaodan input {
        /* width: 92.8%; */
    }

    .biaodan select:focus,
    .biaodan input:focus {
        outline: none;
        border-color: #2B5F8A;
        box-shadow: 0 0 0 3px rgba(43, 95, 138, 0.1);
    }

    .biaodan button {
        width: 66%;
        background: linear-gradient(105deg, #2B5F8A, #4a6cf7);
        color: white;
        border: none;
        padding: 14px 20px;
        border-radius: 40px;
        font-size: 1rem;
        font-weight: 600;
        cursor: pointer;
        transition: all 0.2s;
        margin-top: 30px;
        font-family: 'Inter', sans-serif;
    }

    .biaodan button:hover {
        transform: translateY(-2px);
        box-shadow: 0 8px 20px rgba(43, 95, 138, 0.3);
    }

    .baoming-hint-list {
        display: grid;
        grid-template-columns: repeat(4, minmax(0, 1fr));
        margin-top: 50px;
        margin-bottom: 20px;
    }

    .baoming-hint-list .hint-item {
        display: flex;
        align-items: center;
        column-gap: 16px;
        padding: 10px;
    }
    .baoming-hint-list .hint-item:hover {
        background: #f0f5fd;
        border-radius: 6px;
    }
    .baoming-hint-list .hint-item:not(:first-child) {
        padding-left: 20px;
    }

    .baoming-hint-list .hint-item:not(:last-child) {
        border-right: 1px solid #e5ecf3;
    }

    .baoming-hint-list .hint-item .svg-box {
            padding: 10px;
    background: #e3ebfc;
    border-radius: 50%;
    }
    .baoming-hint-list .hint-item .svg-box svg {

    }

    .baoming-hint-list .hint-item .hint-label {
        display: flex;
        flex-direction: column;
    }

    .baoming-hint-list .hint-item .hint-label .hint-title {
        font-size: 17px;
        color: #1d2740;
        font-weight: 900;
    }

    .baoming-hint-list .hint-item .hint-label .sub-title {
        font-size: 13px;
        color: #6f737a;
        font-weight: 500;
    }

    /* 响应式布局 */
    @media (max-width: 968px) {
        .main_bg1 {
            padding: 60px 0;
        }

        .ckst {
            flex-direction: column;
            padding: 36px 28px;
        }

        .ckst-info {
            width: 100%;
            text-align: center;
            padding: 40px 24px;
            justify-content: center;
        }

        .info-features {
            align-items: center;
        }

        .biaodan {
            width: 100%;
            max-width: 480px;
            margin: 0 auto;
        }

        .shiting {
            font-size: 1.6rem;
        }
    }

    @media (max-width: 640px) {
        .ckst {
            padding: 28px 20px;
        }

        .biaodan {
            padding: 28px 20px;
        }

        .ckst-info h2 {
            font-size: 1.6rem;
        }

        .baoming-hint-list {
            display: grid;
            grid-template-columns: repeat(2, minmax(0, 1fr));
        }
    }