﻿/*弹框*/
.box_div, #box_div {
    display: none;
}

.box_hei {
    position: fixed;
    z-index: 20000000;
    width: 100%;
    height: 100%;
    top: 0px;
    left: 0px;
    background-color: #181818;
    opacity: 0.5;
}


.box_loading {
    position: fixed;
    z-index: 20000001;
    width: 60px;
    height: 60px;
    top: 50%;
    left: 50%;
    margin-top: -30px;
    margin-left: -30px;
    text-align: center;
    font-size: 12px;
    color: #ffffff;
    background-color: #000;
    border-radius: 50%;
}

    .box_loading img {
        max-width: 100%;
        margin: 0 auto;
        animation: loadingShow 1s linear infinite;
    }

@keyframes loadingShow {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

.box_loading_zi {
    position: fixed;
    z-index: 20000001;
    width: 200px;
    height: 40px;
    top: 50%;
    left: 50%;
    margin-top: -40px;
    margin-left: -100px;
    color: #ffffff;
    text-align: center;
}

    .box_loading_zi img {
        max-width: 100%;
        margin: 0 auto;
    }

.box_loadingImg {
    position: fixed;
    z-index: 20000001;
    width: 220px;
    height: 150px;
    top: 50%;
    left: 50%;
    margin-top: -75px;
    margin-left: -110px;
    color: #fff;
    font-size: 16px;
    line-height: 28px;
    font-weight: bold;
    text-align: center;
}

.box_top {
    height: 30px;
    font-size: 13px;
    background-color: #f0eded;
    line-height: 13px;
}

    .box_top span {
        float: left;
        width: 150px;
        margin: 9px 5px;
    }

.box_but {
    text-align: right;
    overflow: hidden;
    margin-bottom: 15px;
}

.but_box {
    cursor: pointer;
    width: 80px;
    height: 28px;
    background-color: #303346;
    color: #fff;
    border: 0px;
    border-radius: 3px;
    margin-right: 18px;
}

/*隐藏层*/
.up_div, .jiazhai, .jiazhai_zi, .jiazhai_img {
    display: none;
}

.up_hei2, .up_hei3 {
    position: fixed;
    z-index: 1;
    width: 100%;
    height: 100%;
    top: 0px;
    left: 0px;
    background-color: #181818;
    opacity: 0.5;
}

.up_hei {
    position: fixed;
    z-index: 20000000;
    width: 100%;
    height: 100%;
    top: 0px;
    left: 0px;
    background-color: #fff;
    opacity: 0.1;
}

.up_loading {
    position: fixed;
    z-index: 20000001;
    width: 37px;
    height: 37px;
    top: 50%;
    left: 50%;
    margin-top: -18px;
    margin-left: -18px;
}

/*分页*/
.pageBut {
    font-family: Arial;
    font-size: 12px;
    text-align: center;
}

    .pageBut span {
        float: left;
        /*禁止光标选中*/
        -webkit-user-select: none;
        -moz-user-select: none;
        -ms-user-select: none;
        user-select: none;
    }

    .pageBut a {
        float: left;
        display: block;
        min-width: 15px;
        min-height: 15px;
        line-height: 15px;
        padding: 5px;
        margin-left: 3px;
        margin-right: 3px;
        color: #5e5d5d;
        background-color: #ffffff;
        border: 1px #dddddd solid;
        text-decoration: none;
        /*禁止光标选中*/
        -webkit-user-select: none;
        -moz-user-select: none;
        -ms-user-select: none;
        user-select: none;
    }

        .pageBut a:hover {
            color: #fff;
            background-color: #528bcb;
            border: 1px #528bcb solid;
        }

        .pageBut a.current {
            color: #fff;
            background-color: #528bcb;
            border: 1px #528bcb solid;
        }

            .pageBut a.current:hover {
                color: #fff;
                background-color: #528bcb;
                border: 1px #528bcb solid;
            }
