* {
    margin: 0;
    padding: 0;
}

#app {
    width: 100%;
    height: 100%;
    background-image: url('../assets/loginBg.jpg');
    background-repeat: no-repeat;
    background-size: 100% 100%;
    display: flex;
    flex-direction: column;
    padding-bottom: 14px;
    box-sizing: border-box;
}

.flex-warp {
    flex: 1;
    min-height: 0;
}

.title {
    display: flex;
    align-items: center;
    padding: 1vw 0 0 6vw;
}

    .title img {
        width: 2.5vw;
        height: auto;
        margin-right: 10px;
    }

    .title p {
        font-size: 1.8vw;
        color: #fff;
        font-weight: bold;
    }

.footer_box {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: #fff;
    font-size: 12px;
}

.cp:hover {
    cursor: pointer;
    opacity: 0.7;
}

.scrollbarMini {
    overflow-x: hidden;
    overflow-y: auto;
}
    /*滚动条样式*/
    .scrollbarMini::-webkit-scrollbar {
        width: 5px;
        /*height: 4px;*/
    }

    .scrollbarMini::-webkit-scrollbar-thumb {
        /* border-radius: 10px; */
        -webkit-box-shadow: inset 0 0 5px rgba(0, 0, 0, 0.2);
        background: rgba(48, 46, 46, 0.2);
    }

    .scrollbarMini::-webkit-scrollbar-track {
        -webkit-box-shadow: inset 0 0 5px rgba(0, 0, 0, 0.2);
        border-radius: 0;
        background: rgba(0, 186, 186, 0.5);
    }

select {
    /* -webkit-appearance: none !important;
    -moz-appearance: none;
    appearance: none; */

    border: none !important;
    background-color: #F0F3FB !important;
    color: #999999 !important;
    font-size: 14px !important;
    width: 200px;
}

    select:focus {
        box-shadow: none !important;
        border: 1px solid #009FFF !important;
    }

    /* 美化select的下拉箭头 */
    select:after {
        color: #999999 !important;
    }
