﻿/*设置滚动条样式*/
/*
::-webkit-scrollbar {
    width: 10px;
    height: 8px;
    background-color: transparent;
    -webkit-transition: background-color .3s ease-in-out;
    transition: background-color .3s ease-in-out;
}

::-webkit-scrollbar-thumb {
    background-color: transparent;
    height: 50px;
    -webkit-border-radius: 5px;
    border-radius: 5px;
    border-right: 1px solid transparent;
    border-left: 1px solid transparent;
    -webkit-transition: background-color .3s ease-in-out;
    transition: background-color .3s ease-in-out;
}

    ::-webkit-scrollbar-thumb:hover,
    ::-webkit-scrollbar-thumb:active {
        background-color: transparent;
        border-radius: 5px;
    }

::-webkit-scrollbar-track {
    background-color: transparent;
}
*/
* {
    margin: 0;
    padding: 0;
}

.layout {
    width: 100%;
    position: relative;
    display: flex;
    flex-direction: column;
}

.header {
    /*
    background: #515a6e;
    line-height: 80px;
    text-align: center;
    color: hsla(0,0%,100%,.7);
        */
}

.layoutMain {
    width: 100%;
    height: calc(100vh - 70px);
    display: flex;
    align-items: stretch;
}

    .layoutMain .layoutSider {
        width: 250px;
        background: #fff;
        color: #fff;
        overflow-x: hidden;
        overflow-y: auto;
    }

    .layoutMain .layoutContent {
        position: relative;
        height: 100%;
        flex: 1;
        overflow-y: auto;
    }

        .layoutMain .layoutContent .pageTop {
            text-align: center;
            position: absolute;
            top: 20px;
            width: 100%;
        }

        .layoutMain .layoutContent .pageContent {
            width: 100%;
        }

.pageMain {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

    .pageMain > div {
        flex: 1;
    }

    .pageMain .paginationbox {
        height: 30px;
        flex: 0;
    }

.copyright {
    text-align: center;
    display:none;
}


.show_left {
    width:50px !important;
}

a {
cursor:pointer;
}