/* 定义字体 */
@font-face {
    font-family: 'Poppins';
    src: url('/static/index/fonts/Poppins-Medium.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

.main-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    width: 100%;
}

.content-container {
    flex: 1;
    width: 100%;
    background-size: cover;
    /*background: black;*/
    color: #402070;
    /*max-width: 700px;*/
    font-family: 'Poppins', sans-serif;
    font-size: 13px;
    background-image: url("/static/index/images/bg.png");
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.alert {
    width: 100%;
    text-align: center;
}

.content-container .container {
    min-height: 550px;
}

.logo {
    height: auto;
    width: 100%;
    display: inline-block;
}

.main-footer {
    height: auto;
    position: relative;
    bottom: 0;
    width: 100%;
}

.agenda {
    height: auto;
    width: 96%;
}

.thanks {
    height: auto;
    width: 96%;
}

.indexForm {
    margin-right: 4%;
}

.indexForm label {
    /*padding-top: 1rem;*/
}

.indexForm input {
    width: 100%;
    height: 2rem;
    text-indent: 8px;
    outline: none;
    /*border: none !important;*/
    border: 2px solid #402070 !important;
    border-radius: 8px !important;
    background: transparent !important;
    color: #402070 !important;
}

.indexForm textarea {
    width: 100%;
    /*height: 2rem;*/
    text-indent: 8px;
    outline: none;
    /*border: none !important;*/
    border: 2px solid #402070 !important;
    border-radius: 8px !important;
    background: transparent !important;
    color: #402070 !important;
}

.indexForm select {
    width: 100%;
    height: 2rem;
    text-indent: 8px;
    outline: none;
    /*border: none !important;*/
    border: 2px solid #402070 !important;
    border-radius: 8px !important;
    background: transparent !important;
    color: #402070 !important;
}

.indexForm select option {
    background: white;
}

.indexForm .radio {
    width: 1rem !important;
    height: 1rem !important;
}

.btn-submit {
    background: #402070;
    height: 2.5rem;
    font-weight: bold;
    color: white;
    border-radius: 1.3rem;
    border: none;
    cursor: pointer;
    padding: 0 2rem;
}

.tip {
    font-size: 0.75rem;
    /*font-style: italic;*/
}

.required::after {
    content: "*";
    color: red;
    font-weight: bold;
}

.thanks-footer {
    position: absolute;
    bottom: 0;
}

.radio-answer {
    font-size: 0.8rem;
}

.radio-wrap {
    /*border-bottom: 1px dotted grey;*/
    /*padding-bottom: 1rem;*/
}

@media (min-width: 700px) {
    .main-container {
    }

    .alert {
        width: 60%;
    }

    .content-container {
        font-size: 16px;
        background-image: url("/static/index/images/pc/bg.png");
    }

    .content-container .container {
        max-width: 700px;
        min-height: 600px;
    }

    .radio-answer {
        display: flex;
        flex: auto;
        align-items: center;
        justify-content: center;
    }

    .radio-item {
        flex: auto;
    }

    .agenda {
        height: auto;
        width: 50%;
    }

    .thanks {
        height: auto;
        width: 50%;
    }

    .logo {
        width: 100%;
    }

    .main-footer {
        width: 100%;
    }
}


