@charset "UTF-8";
/**
    登录页面
 */
.title-bar {
    width: 100%;
    height: 15%;
    background: url(../images/login-check-bar.png) no-repeat center /100% 100%;;
    font-size: 20px;
}

/* 弹窗背景 */
.modal {
    /* 默认隐藏 */
    display: none;
    /* 固定定位 */
    position: fixed;
    /* 设置在顶层 */
    z-index: 1000;
    /* 设置位置 */
    left: 35%;
    top: 33%;
    width: 30%;
    height: 34%;
    min-width: 360px;
    min-height: 320px;
    margin: auto;
    overflow: auto;
    color: white;
    background: whitesmoke;
    border-radius: 2px;
}
.text-bar {
    padding-top: 1.3%;
    padding-left: 2%;
}
.center-content {
    color: black;
    padding-top: 15%;
    text-align: center;
    font-size: 20px;
    margin: auto;
    font-family: 微软雅黑, Arial, Helvetica, Tahoma, Verdana, sans-serif;
}
.button-bar {
    font-family: 微软雅黑, Arial, Helvetica, Tahoma, Verdana, sans-serif;
    display: flex;
    justify-content: center;
    align-content: center;
    color: #f1f1f1;
}
.submit1 {
    display: flex;
    height: 50px;
    width: 120px;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    margin: 15% 10% 0 0;
    background-color: #e35811;
    line-height: 20px;
    font-size: 18px;
}

.cancel {
    display: flex;
    float: left;
    height: 50px;
    width: 120px;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    margin: 15% 0 0 10%;
    background-color: #e35811;
    line-height: 20px;
    font-size: 18px;
}

.radio {
    margin: 0.5rem;
    display: inline;
}
.radio input[type=radio] {
    position: absolute;
    opacity: 0;
}
.radio input[type=radio] + .radio-label:before {
    content: "";
    background: #f4f4f4;
    border-radius: 100%;
    border: 1px solid #b4b4b4;
    display: inline-block;
    width: 1.4em;
    height: 1.4em;
    position: relative;
    top: -0.2em;
    margin-right: 1em;
    vertical-align: top;
    cursor: pointer;
    text-align: center;
    transition: all 250ms ease;
}
.radio input[type=radio]:checked + .radio-label:before {
    background-color: #3197EE;
    box-shadow: inset 0 0 0 4px #f4f4f4;
}
.radio input[type=radio]:focus + .radio-label:before {
    outline: none;
    border-color: #3197EE;
}
.radio input[type=radio]:disabled + .radio-label:before {
    box-shadow: inset 0 0 0 4px #f4f4f4;
    border-color: #b4b4b4;
    background: #b4b4b4;
}
.radio input[type=radio] + .radio-label:empty:before {
    margin-right: 0;
}


@media (max-width: 768px) {
    .title-bar {
        width: 100%;
        height: 15%;
        background: url(../images/login-check-bar.png) no-repeat center /100% 100%;
    }
    .modal {
        /* 默认隐藏 */
        display: none;
        /* 固定定位 */
        position: fixed;
        /* 设置在顶层 */
        z-index: 1000;
        /* 设置位置 */
        left: 0;
        top: 20%;
        width: 100%;
        height: 40%;
        margin: auto;
        overflow: auto;
        color: white;
        background: whitesmoke;
        border-radius: 2px;
    }
    .submit1 {
        display: flex;
        float: left;
        height: 30px;
        width: 60px;
        align-items: center;
        justify-content: center;
        cursor: pointer;
        margin: 10% 10% 0 0;
        background-color: #e35811;
        line-height: 20px;
    }

    .cancel {
        display: flex;
        float: left;
        height: 30px;
        width: 60px;
        align-items: center;
        justify-content: center;
        cursor: pointer;
        margin: 10% 0 0 10%;
        background-color: #e35811;
        line-height: 20px;
    }
    .center-content {
        color: black;
        padding-top: 20%;
        text-align: center;
        font-size: 15px;
        margin: auto;
        font-family: 微软雅黑, Arial, Helvetica, Tahoma, Verdana, sans-serif;
    }
    .text-bar {
        font-size: 15px;
    }
}
