body {
    min-height: 100%;
    background-color: #eff1ff;
}

a {
    color: #5469d4;
    text-decoration: unset;
}

    a:hover {
        color: #000;
    }

* {
    transition: all .3s;
}
/*------login*/
.login-root {
    background: #fff;
    display: flex;
    width: 100%;
    min-height: 100vh;
    overflow: hidden;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    align-content: flex-start;
}

.loginbg {
    background: url(bg01.jpg) top center no-repeat;
    background-size: 100% 100%;
}

h1 {
    display: block;
    letter-spacing: 1px;
    color: #455cd1;
    text-align: center;
    font-size: 3.2rem;
    font-weight: 500;
    padding: 7rem 0 2.5rem;
}

.formbg {
    margin: 0px auto;
    width: 100%;
    max-width: 44.8rem;
    background: white;
    border-radius: 4px;
    box-shadow: rgba(60, 66, 87, 0.18) 0px 7px 14px 0px, rgba(0, 0, 0, 0.12) 0px 3px 6px 0px;
}

h2 {
    display: block;
    font-size: 2.4rem;
    font-weight: 500;
    line-height: 1.5;
    color: #1a1f36;
}

.field label {
    margin-bottom: 10px;
}

.reset-pass a, .field label {
    font-size: 1.4rem;
    font-weight: 400;
    display: block;
}

.reset-pass > a {
    text-align: right;
    margin-bottom: 10px;
}

.grid-50-50 {
    display: grid;
    grid-template-columns: 50% 50%;
    align-items: center;
}

.field input {
    font-size: 1.6rem;
    line-height: 2.8rem;
    padding: .8rem 1.6rem;
    width: 100%;
    min-height: 4.4rem;
    border: unset;
    border-radius: 4px;
    outline-color: rgb(84 105 212 / 0.5);
    background-color: rgb(255, 255, 255);
    box-shadow: rgba(0, 0, 0, 0) 0px 0px 0px 0px, rgba(0, 0, 0, 0) 0px 0px 0px 0px, rgba(0, 0, 0, 0) 0px 0px 0px 0px, rgba(60, 66, 87, 0.16) 0px 0px 0px 1px, rgba(0, 0, 0, 0) 0px 0px 0px 0px, rgba(0, 0, 0, 0) 0px 0px 0px 0px, rgba(0, 0, 0, 0) 0px 0px 0px 0px;
}

input[type="submit"], input[type="button"] {
    background-color: rgb(84, 105, 212);
    box-shadow: rgba(0, 0, 0, 0) 0px 0px 0px 0px, rgba(0, 0, 0, 0) 0px 0px 0px 0px, rgba(0, 0, 0, 0.12) 0px 1px 1px 0px, rgb(84, 105, 212) 0px 0px 0px 1px, rgba(0, 0, 0, 0) 0px 0px 0px 0px, rgba(0, 0, 0, 0) 0px 0px 0px 0px, rgba(60, 66, 87, 0.08) 0px 2px 5px 0px;
    color: #fff;
    font-weight: 600;
    cursor: pointer;
    letter-spacing: 5px;
}

.field-checkbox input {
    width: 2.0rem;
    height: 1.5rem;
    margin-right: 5px;
    box-shadow: unset;
    min-height: unset;
}

.field-checkbox label {
    display: flex;
    align-items: center;
    margin: 0;
}

a.ssolink {
    display: block;
    text-align: center;
    font-weight: 600;
}
/*------header*/
header {
    flex: 0 0 auto;
    background: #fff;
    height: 6.4rem;
    width: 100%;
    padding: 1.5rem;
    box-shadow: 0 2px 8px 0 rgb(95 101 105 / 20%);
    z-index: 10;
    position: fixed;
    display: flex;
    align-items: center;
    justify-content: space-between;
    top: 0;
}

    header h2 {
        font-size: 2.0rem;
    }

        header h2 span {
            font-size: 1.6rem;
            margin-left: 2rem;
            padding-left: 2rem;
            border-left: #1a1f36 solid 1px;
        }

    header nav {
        font-size: 1.4rem;
    }

        header nav span {
            padding: 0 1rem;
        }

        header nav a {
            background-color: #dde2ff;
            margin-right: 2rem;
            border-radius: .5rem;
            padding: .3rem .5rem;
            font-size: 1.2rem;
        }

            header nav a:hover {
                background-color: rgb(84, 105, 212);
                color: #fff;
            }

.left-line {
    border-left: #1a1f36 solid 1px;
}

/*------box*/
.outer {
    background: #fff;
    width: 98%;
    min-width: 112rem;
    padding: 1.5rem;
    margin: auto;
    margin-top: 7rem;
    z-index: 0;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
}

/*------upload*/
.upload {
    position: relative;
    width: 90%;
    height: 12rem;
    font-size: 1.4rem;
    color: #9c9c9c;
    background: #fafafa;
    border: 1px dashed #d9d9d9;
    border-radius: 2px;
    cursor: pointer;
    margin: 2rem 0 4rem;
}

    .upload:hover {
        border-color: rgb(84, 105, 212);
        color: #000;
        background: #eff1ff;
    }

    .upload form {
        width: 100%;
        height: 100%;
        display: flex;
        justify-content: center;
        align-items: center;
    }

.fileMessage {
    position: absolute;
    color: #d71001;
    bottom: -3rem;
    left: 0;
}

/*------search*//*
.search {
    width: 100%;
    min-width: 100%;
    height: 3.2rem;
    display: flex;
    justify-content: flex-end;
    font-size: 1.4rem;
    margin: 2rem 0;
}

    .search form {
        width: 25rem;
        display: flex;
        ;
        justify-content: flex-end;
    }

    .search label {
        min-height: 3.4rem;
        display: flex;
        align-items: center;
    }

    .search input {
        font-size: 1.4rem;
        color: #9c9c9c;
        line-height: 1;
        padding: .5rem 1.0rem;
        width: 20rem;
        min-height: 3.2rem;
        border: unset;
        border-radius: .2rem;
        outline-color: rgb(84 105 212 / 0.5);
        background-color: rgb(255, 255, 255);
        box-shadow: rgba(0, 0, 0, 0) 0px 0px 0px 0px, rgba(0, 0, 0, 0) 0px 0px 0px 0px, rgba(0, 0, 0, 0) 0px 0px 0px 0px, rgba(60, 66, 87, 0.16) 0px 0px 0px 1px, rgba(0, 0, 0, 0) 0px 0px 0px 0px, rgba(0, 0, 0, 0) 0px 0px 0px 0px, rgba(0, 0, 0, 0) 0px 0px 0px 0px;
    }

    .search em {
        background-color: rgb(84, 105, 212);
        border-radius: .5rem;
        font-size: 1.4rem;
        margin-right: 3rem;
    }

        .search em a {
            display: block;
            width: 100%;
            height: 100%;
            border-radius: .5rem;
            color: #fff;
            padding: 0 1.5rem;
            display: flex;
            align-items: center;
        }

    .search .num {
        color: #000;
        line-height: 3.5;
    }

        .search .num span {
            color: #5469d4;
            margin: 0 1rem;
            letter-spacing: 0.3rem;
            font-weight: 600;
        }*/
/*------table*/


/*------search*/
.search {
    width: 100%;
    min-width: 100%;
    height: 3.2rem;
    display: flex;
    justify-content: flex-end;
    font-size: 1.4rem;
    margin: 2rem 0;
}

    .search form {
        width: auto;
        display: flex;
        ;
        justify-content: flex-end;
        align-items: center;
        padding-right: 1rem;
    }

    .search label {
        min-height: 3.4rem;
        display: flex;
        align-items: center;
    }

    .search input {
        font-size: 1.4rem;
        color: #9c9c9c;
        line-height: 1;
        padding: .5rem 1.0rem;
        width: 20rem;
        min-height: 3.2rem;
        border: unset;
        border-radius: .2rem;
        outline-color: rgb(84 105 212 / 0.5);
        background-color: rgb(255, 255, 255);
        box-shadow: rgba(0, 0, 0, 0) 0px 0px 0px 0px, rgba(0, 0, 0, 0) 0px 0px 0px 0px, rgba(0, 0, 0, 0) 0px 0px 0px 0px, rgba(60, 66, 87, 0.16) 0px 0px 0px 1px, rgba(0, 0, 0, 0) 0px 0px 0px 0px, rgba(0, 0, 0, 0) 0px 0px 0px 0px, rgba(0, 0, 0, 0) 0px 0px 0px 0px;
    }

input[type="radio"] {
    box-shadow: none;
    width: 1.2rem;
    height: 1.2rem;
    margin: 0 .5rem 0 2rem;
}

.search em {
    background-color: rgb(84, 105, 212);
    border-radius: .5rem;
    font-size: 1.4rem;
    margin-right: 5rem;
}

    .search em a {
        display: block;
        width: 100%;
        height: 100%;
        border-radius: .5rem;
        color: #fff;
        padding: 0 1.5rem;
        display: flex;
        align-items: center;
    }

.search .num {
    color: #000;
    line-height: 3.5;
    letter-spacing: 0.1rem;
}

    .search .num span {
        color: #5469d4;
        margin: 0 1.5rem 0 0;
        letter-spacing: 0.2rem;
        font-weight: 600;
    }
/*------table*/


.table-yh {
    width: 100%;
}

table {
    border-collapse: collapse;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    background-color: #fff;
    font-size: 1.6rem;
}

th, td {
    border-bottom: 1px solid #d7dfe9;
    text-align: center;
    padding: 1.2rem 1rem;
    white-space: nowrap;
}

th {
    background-color: #e5e9ff;
}

    th:first-child {
        width: 5rem;
    }

.table01 td:nth-child(2), .table01 td:nth-child(5) {
    white-space: normal;
    text-align: left;
}

tr:hover {
    background-color: #f5f7fe;
    color: #000;
}

th a {
    display: block;
    width: 10rem;
    position: relative;
    color: #333;
    cursor: pointer;
}

th i {
    display: block;
    position: absolute;
    cursor: pointer;
    width: 1rem;
    height: .6rem;
    right: 0;
    opacity: .4;
}

th .up {
    background: url(arrow-up.png);
    top: 0.5rem;
}

th .down {
    background: url(arrow-down.png);
    top: 1.3rem;
}

th .on {
    opacity: 1;
}

td em {
    display: block;
    width: 6rem;
    background-color: #dde2ff;
    border-radius: .5rem;
    padding: .3rem .5rem;
    font-size: 1.2rem;
    margin: auto;
    text-align: center;
}

.al-down {
    background-color: #f4f4f4;
    color: #a0a0a0;
}

    .al-down:hover {
        background-color: #f4f4f4;
        color: #000;
    }

    .al-down a {
        color: #a0a0a0;
    }

    .ac01, .ac02, .al-down .ac01, .al-down .ac02 {
        background-color: rgb(84, 105, 212);
        color: #fff;
        border-radius: .5rem;
        padding: .3rem .5rem;
        font-size: 1.2rem;
        margin: auto;
    }

        .ac01:hover, .ac02:hover, .search em:hover a {
            background-color: #404cfd;
            color: #fee368;
        }

.ac01 {
    display: inline-block;
    width: 4rem;
    margin: 0 0.5rem;
}

.ac02 {
    display: block;
    width: 6rem;
    text-align: center;
}

.table02 td {
    white-space: normal;
    text-align: left;
}

.table03 td:nth-child(2) {
    white-space: normal;
    text-align: left;
}

.table02 td p {
    font-size: 1.4rem;
    line-height: 1.8;
    text-align: center;
}

/*------pagination*/
.pagination {
    margin: auto;
    width: auto;
    display: inline-block;
}

    .pagination a {
        color: black;
        float: left;
        padding: .5rem 1.2rem;
        text-decoration: none;
        font-size: 1.4rem;
    }

        .pagination a.active {
            background-color: rgb(84, 105, 212);
            color: #fff;
        }

        .pagination a:hover:not(.active) {
            background-color: #e5e9ff;
        }

/*------footer*/
.footer-link {
    font-size: 1.2rem;
    text-align: center;
    padding: 100px 0 10px 0;
    flex-grow: 1;
}

    .footer-link a {
        color: #455cd1;
        text-decoration: underline;
        margin-left: 3.0rem;
    }

/*==============弹出页*/
.pop-outer {
    width: 100%;
    background: #fff;
    padding: 2rem;
    z-index: 100;
}

.pop-box {
    width: 100%;
    margin: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    align-content: flex-start;
}

    .pop-box h2 {
        text-align: center;
        margin-bottom: 3rem;
    }

    .pop-box p {
        font-size: 1.6rem;
        line-height: 2;
        background-color: #fafafa;
        padding: 1rem 1.5rem;
        ;
        border-radius: 1.5rem;
        color: #5469d4;
        margin-bottom: 3rem;
    }

        .pop-box p a {
            margin-right: 3rem;
            text-decoration: underline;
        }

    .pop-box form {
        width: 90%;
    }

.pop-item {
    display: flex;
    justify-content: center;
    align-items: center;
    line-height: 1.2;
    margin-bottom: 3rem;
}

.pop-item01 {
    justify-content: flex-end;
}

.pop-item label {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: .8rem 1.6rem;
    font-size: 1.6rem;
}

.pop-item input, .pop-item textarea {
    font-size: 1.6rem;
    padding: .8rem 1.6rem;
    width: 70%;
    border: unset;
    border-radius: .4rem;
    outline-color: rgb(84 105 212 / 0.5);
    background-color: rgb(255, 255, 255);
    box-shadow: rgba(0, 0, 0, 0) 0px 0px 0px 0px, rgba(0, 0, 0, 0) 0px 0px 0px 0px, rgba(0, 0, 0, 0) 0px 0px 0px 0px, rgba(60, 66, 87, 0.16) 0px 0px 0px 1px, rgba(0, 0, 0, 0) 0px 0px 0px 0px, rgba(0, 0, 0, 0) 0px 0px 0px 0px, rgba(0, 0, 0, 0) 0px 0px 0px 0px;
}

    .pop-item input[type="button"], .pop-item01 input[type="button"] {
        width: 7rem;
        background-color: rgb(84, 105, 212);
        box-shadow: rgba(0, 0, 0, 0) 0px 0px 0px 0px, rgba(0, 0, 0, 0) 0px 0px 0px 0px, rgba(0, 0, 0, 0.12) 0px 1px 1px 0px, rgb(84, 105, 212) 0px 0px 0px 1px, rgba(0, 0, 0, 0) 0px 0px 0px 0px, rgba(0, 0, 0, 0) 0px 0px 0px 0px, rgba(60, 66, 87, 0.08) 0px 2px 5px 0px;
        color: #fff;
        text-align: center;
        margin: 0 1rem;
        cursor: pointer;
        letter-spacing: 5px;
        font-weight: 500;
        font-size: 1.6rem;
    }

.pop-w01 {
    width: 100%;
    max-width: 50rem;
}

.pop-w02 {
    width: 100%;
    max-width: 60rem;
}

.pop-h01 {
    height: 4.4rem;
}

.pop-h02 {
    height: 10rem;
}

.flex-rb {
    justify-content: space-between;
}

/*==============help*/
.hbox {
    background-color: #fff;
    width: 100rem;
    margin: auto;
    padding: 3rem;
    line-height: 1.8;
    font-size: 1.6rem;
}

    .hbox h2 {
        font-size: 3.2rem;
        line-height: 2;
        padding-bottom: 2rem;
        text-align: center;
        font-weight: 600;
    }

    .hbox p {
        margin-bottom: 1.5rem;
    }
