* {
    margin: 0;
    padding: 0;
    /*box-sizing: border-box;*/
}

body {
    /* font-size: 14px; */
    /* font-family: Microsoft YaHei, sans-serif; */
    color: #333;
    font: 14px/1.5 "Microsoft YaHei", sans-serif;
    /*background-color: #f9f9f9;*/
}

em,
i {
    font-style: normal
}

li {
    list-style: none
}

img {
    border: 0;
    vertical-align: middle
}

.fn-fl {
    float: left;
}

.fn-fr {
    float: right;
}

a {
    text-decoration: none;
    color: #0195ff;
}

    a:active {
        color: #333;
    }

.hid {
    display: none !important;
}

.disb {
    display: block !important;
    margin-right: 0 !important;
}

.mr0 {
    margin-right: 0 !important;
}

.ml5 {
    margin-left: 5px;
}

.ml10 {
    margin-left: 10px;
}

.ml50 {
    margin-left: 50px !important;
}

.mr10 {
    margin-right: 10px;
}

.pl10 {
    padding-left: 10px;
}

.pdt0 {
    padding-top: 10px !important;
}

.pt22 {
    padding-top: 22px !important;
}

/* 清除浮动 */

.fn-clearfix:after {
    visibility: hidden;
    clear: both;
    display: block;
    content: "";
    height: 0
}

.fn-clearfix {
    *zoom: 1
}

/* 设置全局变量 */

:root {
    /* 圆角为2px */
    --border-r: 2px;
}

/* *号样式 */

.color-red {
    color: #ff0000;
}

.curs {
    cursor: pointer;
}

/* 表单样式 */

input,
select {
    /* width: 192px; */
    height: 32px;
    /* line-height: 32px; */
    padding-left: 10px;
    color: #333;
    border-radius: var(--border-r);
    outline: none;
    border: solid 1px #cccccc;
    /* vertical-align: top; */
    vertical-align: middle;
    font-size: 14px;
    font-family: "Microsoft YaHei";
}

    textarea::placeholder,
    input::placeholder {
        color: #999;
    }

    select,
    input[type="text"] {
        width: 192px;
    }

textarea {
    padding: 0 10px;
    line-height: 22px;
    outline: none;
    border-radius: var(--border-r);
    color: #333;
    font-size: 14px;
    border: solid 1px #cccccc;
    padding-top: 5px;
    font-family: "Microsoft YaHei";
}

/* 按钮样式 */

input[type="button"],
input[type="reset"],
.btn {
    display: inline-block;
    height: 32px;
    line-height: 32px;
    font-size: 14px;
    padding: 0 16px;
    border-radius: var(--border-r);
    border: unset;
    cursor: pointer;
    outline: none;
}

.btn-primary {
    color: #fff;
    background-color: #0195ff;
}

    .btn-primary:hover {
        opacity: 0.8;
    }

input[type="button"].btn-plain,
input[type="reset"].btn-plain {
    color: #333;
    border: 1px #ccc solid;
    background-color: #fff;
}

    input[type="button"].btn-plain:hover,
    input[type="reset"].btn-plain:hover {
        color: #0195ff;
    }

    input[type="button"]:disabled,
    input[type="button"].btn-plain:disabled,
    input[type="button"].btn-primary:disabled {
        color: #fff;
        background-color: #ccc;
    }

        input[type="button"].btn-primary:disabled:hover {
            opacity: unset;
        }

/* 单选框样式 */
.radio-box {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

    .radio-box label {
        /* margin-left: 10px; */
        margin-right: 25px;
        padding-left: 30px;
        position: relative;
    }

    .radio-box input[type="radio"] {
        display: none;
    }

    .radio-box label::before {
        content: "";
        display: inline-block;
        width: 14px;
        height: 14px;
        border: 1px solid #ccc;
        border-radius: 50%;
        position: absolute;
        top: 3px;
        left: 6px;
    }

    .radio-box input[type="radio"]:checked + label::before {
        border: 1px solid #0195ff;
    }

    .radio-box input[type="radio"]:checked + label:after {
        content: "";
        display: inline-block;
        width: 6px;
        height: 6px;
        border-radius: 50%;
        background: #0195ff;
        position: absolute;
        top: 8px;
        left: 11px;
    }

/* 开关按钮样式 */
.switch-button {
    width: 54px;
    height: 26px;
    display: inline-block;
}

    .switch-button .toggle-btn {
        display: none;
    }

    .switch-button .toggle-button-label {
        position: relative;
        display: inline-block;
        width: 54px;
        height: 26px;
        background-color: #ccc;
        border-radius: 13px;
        overflow: hidden;
    }

/* .switch-button .toggle-button-label:active {
  box-shadow: 0 0 0 4px rgb(24 144 255 / 20%);
} */

.toggle-button-label .circle {
    position: absolute;
    top: 3px;
    left: 3px;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background-color: #fff;
}

.toggle-button-label .text {
    line-height: 26px;
    font-size: 14px;
    text-shadow: 0 0 2px #ddd;
}

.toggle-button-label .on {
    color: #fff;
    display: none;
    position: absolute;
    top: 0;
    left: 10px;
}

.toggle-button-label .off {
    color: #fff;
    display: inline-block;
    position: absolute;
    top: 0;
    right: 10px;
}

.toggle-button-label.close .circle {
    left: 3px;
    transition: all 0.36s;
}

.toggle-btn:checked + label.toggle-button-label.close .circle {
    left: 31px;
}

.toggle-btn:checked + label.toggle-button-label.close .on {
    display: inline-block;
}

.toggle-btn:checked + label.toggle-button-label.close .off {
    display: none;
}

.toggle-btn:checked + label.toggle-button-label.close {
    background-color: #0195ff;
}

.switch-button .toggle-button-label.open {
    background-color: #0195ff;
}

.toggle-button-label.open .circle {
    left: 31px;
    transition: all 0.36s;
}

.toggle-btn:checked + label.toggle-button-label.open .circle {
    left: 3px;
}

.toggle-btn + label.toggle-button-label.open .on {
    display: inline-block;
}

.toggle-btn:checked + label.toggle-button-label.open .on {
    display: none;
}

.toggle-btn + label.toggle-button-label.open .off {
    display: none
}

.toggle-btn:checked + label.toggle-button-label.open .off {
    display: inline-block;
}

.toggle-btn:checked + label.toggle-button-label.open {
    background-color: #ccc;
}


/* ############### 报名开始结束、故障页、空态页 ################## */
.otherpage-wrap {
    width: 100%;
    min-height: calc(100vh - 50px);
    /* min-height: 95vh; */
    background-color: #fff;
}

.inner {
    width: 1080px;
    margin: auto;
}

.otherpage-wrap .otherpage-hd {
    position: fixed;
    top: 0;
    width: 100%;
    height: 50px;
    line-height: 50px;
    background-color: #fff;
    box-shadow: 0px 4px 10px 0px rgb(51 51 51 / 10%);
}

    .otherpage-wrap .otherpage-hd h3 {
        font-size: 20px;
        font-weight: normal;
    }

.otherpage-wrap .otherpage-bd {
    margin-top: 50px;
}

/* 报名开始结束占位 */

.apply-bg {
    width: 970px;
    height: 954px;
    margin: auto;
    margin-top: 50px;
    background: url(../images/bg-not-begin.png) no-repeat center;
}

    .apply-bg .apply-content {
        width: 100%;
        height: 100%;
        padding-top: 130px;
        display: flex;
        justify-content: center;
        overflow: hidden;
    }

        .apply-bg .apply-content .apply-left {
            width: 500px;
            height: 640px;
            background: url(../images/bg-apply-left.png) no-repeat center;
            overflow: hidden;
            /* padding: 0 30px; */
            box-shadow: 2px 0px 10px 0px rgba(0, 0, 0, 0.1);
            z-index: 2;
        }

            .apply-bg .apply-content .apply-left .img-wrap {
                width: 497px;
                height: 166px;
                background-color: #f5f5f5;
                margin-top: 85px;
                display: flex;
                justify-content: center;
                align-items: center;
            }

            .apply-bg .apply-content .apply-left p {
                font-size: 18px;
                text-align: justify;
                margin-top: 19px;
                padding: 0 30px;
            }

        .apply-bg .apply-content .apply-right {
            margin-left: -3px;
        }

            .apply-bg .apply-content .apply-right .right-item {
                width: 180px;
                height: 60px;
                background: url(../images/bg-right-item.png) no-repeat center;
                box-shadow: 0px 2px 10px 0px rgba(0, 0, 0, 0.1);
                margin-bottom: 21px;
                line-height: 60px;
                font-size: 20px;
                position: relative;
                /* padding-left: 50px; */
            }

                .apply-bg .apply-content .apply-right .right-item a {
                    display: block;
                    padding-left: 50px;
                    width: 100%;
                    height: 100%;
                }

                .apply-bg .apply-content .apply-right .right-item::before {
                    position: absolute;
                    top: 0;
                    left: 20px;
                    content: "";
                    width: 8px;
                    height: 24px;
                    background: #4db4fe;
                }

                .apply-bg .apply-content .apply-right .right-item:first-child {
                    margin-top: 51px;
                    width: 200px;
                    height: 70px;
                }

                    .apply-bg .apply-content .apply-right .right-item:first-child a {
                        padding-left: 55px;
                    }

/* 故障页 */

.error-content {
    width: 699px;
    margin: auto;
    padding-top: 150px;
}

    .error-content .error-text {
        margin: auto;
        margin-top: -90px;
        text-align: center;
    }

        .error-content .error-text p {
            margin-bottom: 39px;
            color: #666;
        }

        .error-content .error-text input[type="button"] {
            color: #666;
        }

            .error-content .error-text input[type="button"]:hover {
                color: #0195ff;
            }

/* 空态页 */
.empty-wrap {
    width: 100%;
    background-color: #fff;
    display: flex;
    justify-content: space-around;
    text-align: center;
    color: #666;
}

    .empty-wrap .not-begin,
    .empty-wrap .apply-end {
        margin-top: 272px;
    }

    .empty-wrap .sys-error {
        margin-top: 260px;
    }

    .empty-wrap p {
        font-size: 20px;
        line-height: 60px;
    }

/* 加载中 */
.loading-msg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, .3);
    z-index: 111;
}

    .loading-msg img {
        width: 100px;
        height: 100px;
    }

    .loading-msg .loading {
        background: #fff;
        width: 200px;
        height: 150px;
        text-align: center;
        position: absolute;
        left: 45%;
        top: 60%;
        margin-top: -230px;
        padding-top: 5px;
        border-radius: var(--border-r);
    }

        .loading-msg .loading p {
            color: #4a71fa;
            font-size: 16px;
            font-weight: bold;
        }

/* 饿了么下拉框 */
.el-select .el-input--suffix input::placeholder {
    color: #333;
}

.el-select .el-input--suffix .el-input__inner {
    height: 32px;
}

.el-select .el-input .el-select__caret {
    line-height: 32px;
}

.el-select .el-input.is-focus .el-input__inner {
    border-color: #0195ff;
}

.el-select .el-input__inner:focus {
    border-color: #0195ff;
}

.el-select-dropdown.is-multiple .el-select-dropdown__item.selected {
    color: #0195ff;
}

.el-select-dropdown .el-select-dropdown__item.selected {
    color: #0195ff;
}

.audit-time span {
    color: #0195FF;
    font-size: 16PX;
}
