﻿#bg {
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    overflow: hidden;
    background-color:#ddf;
}
body{
    /*font-family: "Microsoft YaHei";*/
    font-family: "STKaiti","楷体","楷体_GB2312";
    box-sizing: border-box;
    margin:0;
}
a {
    text-decoration:none;
}
input {
    border: none;
    border-radius: 5px;
    background-color: transparent;
}
body div{
    scrollbar-width: none; /* Firefox */
    -ms-overflow-style: none; /* IE 10+ */
}
body div::-webkit-scrollbar {
    display: none;
}

button {
    border: none;
    border-radius: 5px;
    box-shadow: 1px 1px 4px #999;
}
.LabelBtn {
    cursor:pointer;
    user-select: none;
    -moz-user-select: none;
    -webkit-user-select: none;
    -ms-user-select: none;
}
    .LabelBtn:hover{
        box-shadow:1px 1px 4px #333;
    }
    .mycheckbox {
        position: relative;
        display: inline-block;
        width: 20px;
        height: 20px;
        border-radius: 20%;
        box-shadow: inset #aaa 1px 1px 4px;
        line-height: 120%;
        text-align: center;
        background-color: #fff;
        vertical-align: middle;
        cursor: pointer;
    }

.mycheckbox_checked {
    background-color: green;
    color: #fff;
}

.mycheckbox img {
    position: absolute;
    left: 15%;
    bottom: 0;
    width: 100%;
    height: 100%;
    display: none;
}
.mycheckbox_checked img {
    display: block;
}



#main_busy {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgb(0, 0, 0);
    opacity: 0.4;
    z-index: 100000;
    display: none;
}

#main_busy_canvas {
    position: absolute;
    top: 30%;
    left: 50%;
    margin-top: -70px;
    margin-left: -70px;
}

#main_busy_progress {
    position: absolute;
    top: 50%;
    margin-top: 80px;
    width: 100%;
    display: block;
    line-height: 20px;
    text-align: center;
    font-size: 20px;
    color: #666;
    display: none;
}

#div-message {
    position: fixed;
    top: 40%;
    right: 0px;
    width: 100%;
    max-width: 100%;
    background-color: transparent;
    z-index: 100001;
    text-align: center;
    pointer-events: none; /*超牛的一个属性，有了它就可以透过层操作被覆盖的元素*/
}

#div-message-ask {
    position: fixed;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(150, 150, 150, 0.5);
    z-index: 99999;
    text-align: center;
}

#div-message div {
    position:relative;
    margin:auto;
    margin-bottom:5px;
    display: none;
    text-align: left;
    border-radius: 8px;
    width:auto;
    max-width:300px;
    text-align:center;
    /*background-color:transparent;*/
}

#div-message-ask div {
    position: relative;
    margin: auto;
    top: 50%;
    width: 350px;
    margin-bottom:10px;
    display: none;
    text-align: center;
    border-radius: 8px;
    /*background-color:transparent;*/
    /*border:solid 2px rgba(240, 240, 240, 0.8);*/
    background-color: #fff;
    overflow: hidden;
}

.div-message-title {
    width: 100%;
    left: 10px;
    right: 10px;
    display: inline-block;
    text-align: left;
    vertical-align: bottom;
    line-height: 28px;
    vertical-align: middle;
    padding: 2px 20px 0 15px;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    box-shadow: var(--normal_box_shadow);
}

.div-message-buttons {
    width: 100%;
    display: inline-block;
    text-align: right;
    vertical-align: bottom;
    line-height: 30px;
    vertical-align: middle;
    padding: 2px 0 0 0;
    font-size: 14px;
    text-decoration: none;
}

.div-message-button {
    display: inline-block;
    text-align: center;
    vertical-align: bottom;
    line-height: 25px;
    vertical-align: middle;
    padding: 2px 20px;
    margin: 0 7px 7px 7px;
    text-decoration: none;
    border-radius: 3px;
    /*border:solid 1px #999;*/
    background-color: #39c0ba;
    color: #fff;
    box-shadow: var(--normal_box_shadow);
}

.div-message-ask-a {
    max-width: 100%;
    display: inline-block;
    text-align: left;
    font-size: 14px;
    vertical-align: bottom;
    line-height: 25px;
    vertical-align: middle;
    padding: 15px 20px;
    text-decoration: none;
    opacity: 0;
}

    .div-message-ask-a abbr {
        margin: 0 3px;
        font-weight: bold;
        color: var(--warn_color);
    }

.div-message-a {
    max-width: 100%;
    display: inline-block;
    text-align: left;
    line-height: 25px;
    vertical-align: middle;
    padding: 10px 15px;
    border-radius: 5px;
    text-decoration: none;
    opacity: 0;
    /*border:solid 1px rgba(240, 240, 240, 0.8);*/
}

.div-message-haslink {
    pointer-events: auto;
    /*text-decoration:underline;
    padding:20px;*/
}
/*
.div-message-red .div-message-title {
    background-color: red;
    color: #fff;
    font-size: 15px;
}
*/
.div-message-a.div-message-red {
    background-color: #fff;
    color: var(--delete_color);
    font-weight: bolder;
    font-size: 14px;
    box-shadow: var(--normal_box_shadow);
}
.div-message-a.div-message-yellow {
    background-color: var(--warn_color);
    color: #eee;
    font-weight: bolder;
    font-size: 14px;
    box-shadow: var(--normal_box_shadow);
}

.div-message-yellow .div-message-title {
    background-color: var(--warn_color);
    color: #fff;
    font-weight: bolder;
    font-size: 14px;
}

.div-message-green {
    background-color: rgba(50, 168, 50, 0.9);
    color: #fff;
    font-weight: bolder;
    font-size: 14px;
    box-shadow: var(--normal_box_shadow);
}

.div-message-cai {
    background: -moz-linear-gradient(top, rgba(49, 146, 4, 0.8) 0%, rgba(49, 146, 4, 0.8) 12.5%, rgba(229, 152, 47, 0.8) 37.5%, rgba(225, 121, 239, 0.8) 62.5%, rgba(80, 182, 223, 0.8) 87.5%, rgba(80, 182, 223, 0.8) 100%);
    background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,rgba(49, 146, 4, 0.8)),color-stop(12.5%,rgba(49, 146, 4, 0.8)), color-stop(37.5%,rgba(229, 152, 47, 0.8)), color-stop(62.5%,rgba(225, 121, 239, 0.8)), color-stop(87.5%,rgba(80, 182, 223, 0.8)), color-stop(100%,rgba(80, 182, 223, 0.8)));
    background: -webkit-linear-gradient(top, rgba(49, 146, 4, 0.8) 0%, rgba(49, 146, 4, 0.8) 12.5%, rgba(229, 152, 47, 0.8) 37.5%, rgba(225, 121, 239, 0.8) 62.5%, rgba(80, 182, 223, 0.8) 87.5%, rgba(80, 182, 223, 0.8) 100%);
    background: -o-linear-gradient(top,rgba(49, 146, 4, 0.8) 0%, rgba(49, 146, 4, 0.8) 12.5%, rgba(229, 152, 47, 0.8) 37.5%, rgba(225, 121, 239, 0.8) 62.5%, rgba(80, 182, 223, 0.8) 87.5%, rgba(80, 182, 223, 0.8) 100%);
    background: -ms-linear-gradient(top, rgba(49, 146, 4, 0.8) 0%, rgba(49, 146, 4, 0.8) 12.5%, rgba(229, 152, 47, 0.8) 37.5%, rgba(225, 121, 239, 0.8) 62.5%, rgba(80, 182, 223, 0.8) 87.5%, rgba(80, 182, 223, 0.8) 100%);
    /*background: linear-gradient(to bottom, #fff 0%,#319204 12.5%,#e5982f 37.5%,#e179ef 62.5%,#50b6df 87.5%,#fff 100%);*/
    background: linear-gradient(to bottom, rgba(49, 146, 4, 0.8) 0%, rgba(49, 146, 4, 0.8) 12.5%, rgba(229, 152, 47, 0.8) 37.5%, rgba(225, 121, 239, 0.8) 62.5%, rgba(80, 182, 223, 0.8) 87.5%, rgba(80, 182, 223, 0.8) 100%);
    color: #efe;
    text-shadow:0 0 4px #333;
    font-size: 14px;
}

.div-message-haslink a {
    opacity: 0;
}

.my_toast {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(1, 1, 1, 0.5);
    text-align: center;
    z-index: 100;
}

.my_toast_frame {
    position: relative;
    display: inline-block;
    margin: auto;
    padding: 10px;
    padding-top: 40px;
    top: 10%;
    width: auto;
    width: 400px;
    min-height: 30%;
    max-height: 70%;
    background-color: #fff;
    border-radius: 10px;
    overflow: hidden;
}

.my_toast_title {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 36px;
    line-height: 36px;
    text-align: center;
    background-color: #1b65b9;
    color: #fff;
}

.my_toast_x {
    position: absolute;
    top: 0;
    right: 0;
    width: 10px;
    height: 10px;
    padding: 13px;
    border-radius: 50%;
    cursor: pointer;
}

    .my_toast_x:hover {
        width: 12px;
        height: 12px;
        padding: 12px;
    }

.my_toast_content_r {
    position: relative;
    display: block;
    line-height: 25px;
    margin: 15px 10px;
    font-size: 16px;
    text-align: left;
    margin-left: 10px;
    color: #1b65b9;
}

    .my_toast_content_r abbr {
        position: absolute;
        left: -15px;
    }


.popUp {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    text-align: center;
    z-index: 100;
}
.popUpBg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    background-color: rgba(1, 1, 1, 0.5);
} 

.popUpTitle {
    position: absolute;
    display: block;
    top: -40px;
    left: 0;
    width: 100%;
    line-height: 40px;
    height: 40px;
    text-align: center;
    color: #fff;
    background-color: #1b65b9;
    font-weight: bold;
    border-radius: 10px 10px 0 0;
}

.popUpContent {
    position: relative;
    display: inline-block;
    margin: auto;
    top: 110px;
    width: auto;
    min-width: 400px;
    max-width: 90%;
    min-height: 30%;
    max-height: 70%;
    background-color: #fff;
    border-radius: 0 0 10px 10px;
    text-align:left;
}

.popUp_x {
    position: absolute;
    top: -37px;
    right: 5px;
    width: 10px;
    height: 10px;
    padding: 12px;
    background-color: #ddd;
    border-radius: 50%;
    cursor: pointer;
}

    .popUp_x:hover {
        width: 12px;
        height: 12px;
        padding: 11px;
    }

.popUpList {
    position: relative;
    display: block;
    overflow-y: auto;
    max-height: 70%;
}
.popUpRow {
    position: relative;
    width: 90%;
    padding: 0 3%;
    margin: 5px 2%;
    line-height: 40px;
    background-color: #eee;
    border-radius: 5px;
    text-align:left;
}

    .popUpRow .left {
        position: relative;
        display: inline-block;
        width: 50%;
    }

    .popUpRow .right {
        position: relative;
        width: 20%;
        float: right;
        text-align: center;
    }

#main-bottom {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    height: 40px;
    min-width: 350px;
    background-color: #1b65b90f;
    text-align: center;
    font-size: 12px;
    line-height: 15px;
}
.footer_beian {
    color: #000;
    display: inline-block;
    opacity: .5;
    margin-top: 5px;
    vertical-align: middle;
}

.footer_copyright {
    color: #000;
    display: inline-block;
    opacity: .5;
    margin-left: 10px;
    margin-top:5px;
    vertical-align: middle;
}