﻿#loadingDialog {
    text-align: center;
    display: block;
}

    #loadingDialog, #loadingDialog div {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
    }

        #loadingDialog div {
            z-index: 888;
            opacity: 0.50;
            filter: alpha(opacity=50);
            background-color: #000000;
        }

        #loadingDialog img {
            margin-top: 150px;
        }

#messageDialog {
    position: fixed;
    top: 10px;
    width: 100%;
    text-align: center;
    display: none;
}

    #messageDialog #messageContent {
        border-style: solid;
        padding: 2px 20px 2px 20px;
    }

body {
    margin: 0
}

.hight10px {
    height: 10px;
}

.hight30px {
    height: 30px;
}

.hight100px {
    height: 100px;
}

table.solid {
    width: 100%;
    background-color: inherit;
}

    table.solid th, table.solid td {
        border: 1px solid red;
        margin: 0 0;
        padding: 0 0;
        text-align: center;
        background-color: inherit;
        color: darkred
    }

.background-color-gray {
    background-color: #cccccc;
}

.border-solid {
    border-style: solid
}

.solid {
    border-style: solid
}

.border-radius {
    border-radius: 15px
}

.button {
    cursor: pointer;
    border: 1px double #000000;
    padding: 4px;
    margin: 2px;
    text-align: center;
    align-content: center;
    text-decoration: none;
}

.disable {
    pointer-events: none;
}

.display-inline-block {
    display: inline-block
}

.float-left {
    float: left;
}

.float-right {
    float: right;
}

.float-clear {
    clear: both;
}

.hidden {
    display: none;
}

.noborder {
    border-width: 0px;
}

.pointer {
    cursor: pointer;
}

.font-blod {
    font: bold;
}

.font-color-red, color-red, .red {
    color: red;
}

.underline {
    text-decoration: underline;
}

.width10pe {
    width: 10%
}

.width20pe {
    width: 20%
}

.width30pe {
    width: 30%
}

.width40pe {
    width: 40%
}

.width49pe {
    width: 49%
}

.width50pe {
    width: 50%
}

.width60pe {
    width: 60%
}

.width70pe {
    width: 70%
}

.width80pe {
    width: 80%
}

.width90pe {
    width: 90%
}

.width100pe {
    width: 100%;
}

.width50px {
    width: 50px;
}

.width100px {
    width: 100px;
}

.width360px {
    width: 360px;
}

.width300px {
    width: 300px;
}

.width400px {
    width: 400px;
}

.width460px {
    width: 460px;
}

.width500px {
    width: 500px;
}

.width560px {
    width: 560px;
}

.width600px {
    width: 600px;
}

.width700px {
    width: 700px;
}

.width800px {
    width: 800px;
}

.width1000px {
    width: 1000px;
}

.height3px {
    height: 3px;
}

.height5px {
    height: 5px;
}

.height10px {
    height: 10px;
}

.height50px {
    height: 50px;
}

.height60px {
    height: 60px;
}

.height80px {
    height: 80px;
}

.height90px {
    height: 90px;
}

.height100px {
    height: 100px;
}

.height150px {
    height: 150px;
}

.height200px {
    height: 200px;
}

.height300px {
    height: 300px;
}

.height500px {
    height: 500px;
}

.height600px {
    height: 600px;
}

.margin50px {
    margin: 50px 50px 50px 50px;
}

.margin100px {
    margin: 100px;
}

.margin-auto {
    margin: auto;
}

/*好像没啥用，外面套个align-center-container吧*/
.align-center {
    width: 1000px; /*必须定义宽度才有效*/
    margin: auto;
}

.align-center-container,
.center-middle-container {
    text-align: center;
    align-self: center;
}

.valign-middle {
    vertical-align: middle;
}

.valign-middle-container,
.center-middle-container {
    display: table-cell;
}

    .valign-middle-container img,
    .valign-middle-container button,
    .center-middle-container img,
    .center-middle-container button {
        vertical-align: middle;
    }

.valign-bottom {
    vertical-align: bottom;
}

.margin-left-10px {
    margin-left: 10px
}

.margin-right-10px {
    margin-right: 10px
}

.margin-left-20px {
    margin-left: 20px
}

.padding-left-10px {
    padding-left: 10px
}

.padding-left-20px {
    padding-left: 20px
}

.margin-horizontal-15px {
    margin-left: 15px;
    margin-right: 15px
}

.padding-horizontal-15px {
    padding-left: 15px;
    padding-right: 15px
}

.font-blod {
    font-weight: bold;
}

.scroll {
    overflow-wrap: break-word;
    overflow-y: scroll
}

/* 水平镜像翻转 */
.rotateY, .mirror {
    transform: rotateY(180deg);
    -webkit-transform: rotateY(180deg); /* Safari 和 Chrome */
    -moz-transform: rotateY(180deg);
}

.rotateX {
    transform: rotateX(180deg); /* 垂直镜像翻转 */
}

.window {
    width: 360px;
    min-height: 760px;
    align-self: center;
    margin-left: auto;
    margin-right: auto;
    position: absolute;
    top: 10%;
    left: calc(50% - 180px);
    border-style: solid;
    border-top-width: 30px;
    border-color: blue;
    background-color: #cccccc;
    border-radius: 10px;
}


button.close {
    background-position-x: center;
    background-position-y: center;
    background-size: 25px 25px;
    background-image: url(close.png);
    float: right;
    position: relative;
    top: -25px;
    left: -5px;
    width: 25px;
    height: 25px;
}
