﻿
.test-box {
    background-color: #fff;
    padding: 0 20px;
}

    .test-box .title {
        font-size: 20px;
        font-weight: bold;
        padding: 40px 0px 30px;
        border-bottom: 1px solid #D3D4D8;
    }

    .test-box .school-info {
        padding: 40px 0;
        border-bottom: 1px dashed #D3D4D8;
        display: flex;
    }

        .test-box .school-info > img {
            width: 180px;
            height: 120px;
            border-radius: 6px;
        }

        .test-box .school-info .flex-info {
            display: flex;
            flex-direction: column;
            justify-content: space-between;
            flex: 1;
            margin-left: 30px;
            font-size: 16px;
            font-weight: 400;
            color: #161A27;
        }

            .test-box .school-info .flex-info .name {
                font-size: 24px;
                font-weight: bold;
            }


        .test-box .school-info .btn-visit {
            width: 160px;
            height: 50px;
            background: #FF5A5F;
            border-radius: 6px;
            font-size: 16px;
            font-weight: 400;
            color: #FFFFFF;
            display: flex;
            justify-content: center;
            align-items: center;
        }


    .test-box .visit-content {
        padding: 40px 0;
        font-size: 16px;
        font-weight: 400;
        color: #161A27;
        line-height: 30px;
        text-indent: 2em;
    }

    .test-box .test-form {
        padding: 40px 140px 40px 50px;
        font-size: 16px;
        font-weight: 400;
        color: #161A27;
    }

        .test-box .test-form .input-box {
            display: flex;
            align-items: center;
            margin-bottom: 20px;
        }

            .test-box .test-form .input-box > label {
                font-size: 16px;
                font-weight: 400;
                color: #161A27;
                flex-shrink: 0;
                width: 170px;
                text-align: right;
                padding-right:20px;
            }

            .test-box .test-form .input-box > input[type=text] {
                flex: 1;
                height: 40px;
                background: #FFFFFF;
                border: 1px solid #DFDFDF;
                border-radius: 2px;
                padding: 0 1em;
                outline: none;
            }

                .test-box .test-form .input-box > input[type=text].input-tips {
                    flex: 1;
                    font-size: 16px;
                    font-weight: 400;
                    color: #FF5A5F;
                    padding: 0 1em;
                    border: none;
                }

        .test-box .test-form .input-area-box {
            display: flex;
            align-items: flex-start;
            margin-bottom: 20px;
        }

            .test-box .test-form .input-area-box > label {
                font-size: 16px;
                font-weight: 400;
                width: 80px;
                color: #161A27;
                flex-shrink: 0;
            }

            .test-box .test-form .input-area-box > .input-area {
                flex: 1;
                border: 1px solid #DFDFDF;
                border-radius: 2px;
                outline: none;
                padding: 1em 1em;
                resize: none;
            }

        .test-box .test-form .radio-box {
            padding: 0 !important;
            display: flex;
            align-items: center;
        }

            .test-box .test-form .radio-box input[type=radio] {
                display: none;
            }

            .test-box .test-form .radio-box label {
                display: flex;
                align-items: center;
                margin-right: 85px;
                cursor: pointer;
                height: 16px;
            }

                .test-box .test-form .radio-box label::before {
                    content: "";
                    width: 16px;
                    height: 16px;
                    background: #FFFFFF;
                    border: 1px solid #DFDFDF;
                    border-radius: 50%;
                    margin-right: 10px;
                    box-sizing: border-box;
                    padding: 3px;
                    flex-shrink: 0;
                    box-sizing: border-box;
                }

            .test-box .test-form .radio-box input[type=radio]:checked + label::before {
                border: 1px solid #161A27;
                background-color: #FF5A5F;
                box-shadow: inset 0 0 0 3px #fff;
            }

        .test-box .test-form .input-btn {
            display: flex;
            align-items: center;
            padding-left: 170px;
            padding-top: 40px;
        }

            .test-box .test-form .input-btn .btn-submit {
                display: flex;
                justify-content: center;
                align-items: center;
                width: 400px;
                height: 50px;
                background: #FF5A5F;
                border-radius: 6px;
                border: none;
                outline: none;
                font-size: 16px;
                font-weight: 400;
                color: #FFFFFF;
                cursor: pointer;
            }
