body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f0f7ff;
}

.input-label {
    color: #404040;
    display: flex !important;
    align-items: center;
    font-size: 16px;
    font-weight: normal !important;
}

.flex {
    display: flex;
}

.jsb {
    justify-content: space-between;
}

.form-box {
    width: 1200px;
    margin: 0 auto;
    transform: translateY(-20px);
    margin-top: -200px;
    ;
}

.head-text,
.advice-form-outer {
    background-color: #c6efff;
    border: 3px solid #fff;
    border-radius: 20px;
    padding: 20px;
    color: #003046;
    position: relative;
    box-shadow: 0px 0px 10px 1px rgba(151, 151, 151, 0.36);
}

.banner-mobyle,
.link1 {
    display: none;
}

.advice-form-outer {
    margin-top: 3%;
}

.require {
    color: red;
    font-weight: bold;
    margin-left: 6px;
}

.label-img {
    width: 20%;
    position: absolute;
    top: -3px;
    left: 50%;
    transform: translateX(-50%);
}

.icon {
    margin-right: 6px;
}

input,
textarea {
    background-color: rgba(230, 243, 255, 0.45);
    border: none !important;
    outline: none;
}

.form-group {
    width: 100% !important;
}

.form-group.name {
    margin-right: 60px;
}

.head-text .link1 {
    z-index: 2;
    width: 50%;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
}

.head-text .link {
    z-index: 2;
    width: 520px;
    position: absolute;
    bottom: -60px;
    left: 50%;
    transform: translateX(-50%);
}

.inner-box {
    font-family: Source Han Sans CN, Source Han Sans CN;
    font-size: 18px;
    color: #003046;
    line-height: 32px;
    text-align: left;
    font-style: normal;
    text-transform: none;
    text-indent: 1em;
    /* font-weight: bold; */
}

.inner-box,
.advice-form-inner {

    background-color: #fff;
    border-radius: 12px;
    padding: 20px 28px;
    font-family: Source Han Sans CN-Medium;
}

.advice-error {
    margin-left: 120px;
}

.advice-form-inner {
    padding: 70px 50px 40px;
    font-size: 16px;
}

.form-group {
    margin-bottom: 15px;
}

label {
    display: block;
    margin-bottom: 5px;
}

input[type="text"],
input[type="email"],
input[type="password"],
textarea,
select {
    width: 100%;
    padding: 8px;
    border: 1px solid #ddd;
    border-radius: 4px;
    box-sizing: border-box;
}

.error {
    color: red;
    font-size: 14px;
    margin-top: 5px;
}

.radio-group {
    margin: 10px 0;
    display: flex;
    align-items: flex-start;
}

.radio-options {
    width: calc(100% - 120px);
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-top: 5px;
}

.radio-option {
    display: flex;
    align-items: center;
}

.radio-option input {
    margin-right: 8px;
    transform: translateY(-7px);
}

.radio-option label {
    transform: translateY(-5px);
}

.radio-label {
    align-items: center;
    display: flex;
    width: 120px;
}

.radio-group,
.checkbox-group {
    margin: 10px 0;
    display: flex;
    align-items: flex-start;
    position: relative;
}

.radio-options,
.checkbox-options {
    width: calc(100% - 120px);
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
}

.radio-option,
.checkbox-option {
    display: flex;
    align-items: center;
}

.radio-option input,
.checkbox-option input {
    margin-right: 5px;
}

.advice-textarea {
    display: none;
    width: 100%;
}

.advice-textarea textarea {
    width: 100%;
    padding: 8px;
    border: 1px solid #ddd;
    border-radius: 4px;
    min-height: 160px;
}

/* 修改单选框样式为圆形 */
input[type="checkbox"] {
    transform: translateY(-2px);
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    width: 14px;
    height: 14px;
    background-color: #fff;
    border: 1px solid #666 !important;
    border-radius: 50%;
    outline: none;
    cursor: pointer;
    margin-right: 5px;
    position: relative;
    vertical-align: middle;
}

input[type="checkbox"]:checked {
    background-color: #fff;
    border-color: #2196f3;
}

input[type="checkbox"]:checked::after {
    content: "";
    position: absolute;
    top: 2px;
    left: 2px;
    width: 8px;
    height: 8px;
    background-color: #2196f3;
    border-radius: 50%;
}

.tips-label {
    width: 64px;
    height: 20px;
    background: url('/images/label1.png');
    color: #fff;
    font-size: 14px;
    text-align: center;
    position: absolute;
    top: 24px;
    left: 25px;
}


.btn-group {
    width: 100%;
    display: flex;
    justify-content: center;
    margin-top: 30px;
}

button {
   /* width: 98px;
    height: 32px;*/
    background: linear-gradient(to top, #067CC7 0%, #00B2F5 100%);
    border-radius: 4px 4px 4px 4px;
    border: none;
    color: #fff;
    font-weight: bold;
    font-size: 16px;
    opacity: 0.8;
    cursor: pointer;
}

button:hover {
    opacity: 1;
}

.cancel-btn {
    background: linear-gradient(to top, #B4B4B4 0%, #D4D4D4 100%);
    margin-left: 30px;
}



@media (max-width: 760px) {

    /* 在屏幕宽度 ≤ 760px 时生效 */
    .banner-mobyle,
    .link1 {
        display: block;
    }

    .banner,
    .link {
        display: none;
    }

    .form-box {
        width: 92%;
        margin: 0 auto;
        transform: translateY(-20px);
    }

    .head-text,
    .advice-form-outer {
        border-radius: 10px;
        padding: 10px;
        border-width: 2px;
        position: relative;
    }

    .advice-form-outer {
        margin-top: 1.8%;
    }


    .label-img {
        width: 32%;
        top: -2px;
    }

    .inner-box,
    .advice-form-inner {
        border-radius: 6px;
        padding: 10px 14px;
        font-size: 16px;
        text-align: justify;
    }



    .input-label {
        color: #404040;
        display: block !important;
        font-size: 16px;
    }

    .input-box {
        display: block;
        margin-top: 30px;
    }

    .form-group {
        margin-bottom: 28px;
    }


    .radio-group,
    .checkbox-group {
        margin: 10px 0;
        display: block;
    }

    .radio-label {
        margin-bottom: 8px;
    }

    .radio-options,
    .checkbox-options {
        margin-left: 25px;
        width: calc(100% - 30px);
    }

    .tips-label {
        background: url('/imgs/label.png');
        top: 2px;
        left: 115px;
    }

    button {
        width: 80px;
        height: 32px;
    }

    textarea {
        width: 100%;
        min-height: 160px;
    }

    .cancel-btn {
        margin-left: 18%;
    } }