@charset "utf-8";

html, body {

    margin: 0px;
    padding: 0px;
    width: 100%;

    background-color: white;

    cursor: default;

    font-size: 16px;

    overflow-x: hidden;

    font-family: 'Microsoft Yahei', '微软雅黑', 'PingFang SC', '苹方', 'SimSun', '宋体';

}

a {
    cursor: pointer;
    color: inherit;
    text-decoration: inherit;
}

h1, h2, h3 {
    font-weight: normal;
}

button {
    outline: none;
}

#page {
    position: relative;
    width: 1200px;
    margin: 0 auto;
    min-width: 1200px;
}

.avatar {
    width: 70px;
    height: 70px;
    background-color: #fff;
    border: solid 1px #DE1620;
    border-radius: 40px;
}

.modal-view {
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    z-index: 9999;
    display: none;
}

.modal-view.visible {
    display: block;
}

.modal-view .dialog {
    position: absolute;
    background-image: url("../images/login2/modal.png");
    background-repeat: no-repeat;
    background-size: contain;
    left: 50%;
    width: 400px;
    margin-left: -200px;
    height: 550px;
    top: 50%;
    margin-top: -300px;
    border-radius: 6px;
}

/* .modal-view .dialog #dialog-icon {
    width: 140px;
    height: 140px;
    background-image: url('../images/dialog-icon.png');
    background-size: 54px 54px;
    background-repeat: no-repeat;
    background-position: center 60px;
    margin: 0 auto;
    margin-top: -25px;
    background-color: #fff;
    border-radius: 80px;
} */

.modal-view .dialog #dialog-title {
    color: #DE1620;
    font-size: 22px;
    text-align: center;
    margin-bottom: 40px;
    margin-top: 150px;
}

.modal-view .dialog #dialog-text {
    font-size: 28px;
    text-align: center;
    margin-bottom: 40px;
    color: #5D5D5D;
}

.modal-view .dialog #dialog-subtext {
    font-size: 20px;
    text-align: center;
    margin-bottom: 40px;
    color: #bbb;
}

.modal-view .dialog #dialog-input {
    width: 304px;
    border: solid 1px #BCBCBC;
    height: 50px;
    font-size: 16px;
    padding-left: 10px;
    padding-right: 10px;
    margin: 0 auto;
    display: block;
    outline: none;
    text-align: center;
    vertical-align: middle;
    border-radius: 40px;
}

.modal-view .dialog #dialog-input::placeholder {
    color: #ccc;
    line-height: 50px;
}

.modal-view .dialog .dialog-button {
    background-color: #DE1620;
    /* background-image: url('../images/header-bar.jpg'); */
    background-repeat: repeat-x;
    background-size: contain;
    width: 264px;
    height: 60px;
    border-radius: 100px;
    color: #fff;
    line-height: 60px;
    text-align: center;
    font-size: 18px;
    margin: 50px auto 30px auto;
    cursor: pointer;
}

.modal-view .dialog .dialog-cancel {
    margin: 0 auto;
    font-size: 18px;
    color: #DE1620;
    text-align: center;
    cursor: pointer;
    text-decoration: underline;
}

#calendar {
    position: fixed;
    border: solid 1px #bbb;
    background-color: #fff;
    font-size: 14px;
    line-height: 2;
    box-shadow: 0px 2px 5px rgba(0, 0, 0, 0.3);
    z-index: 99999;
    opacity: 0;
    pointer-events: none;
    left: -1000px;
    top: -1000px;
}

#calendar.visible {
    opacity: 1;
    pointer-events: auto;
}

#calendar #bar {
    margin: 2px;
}

#calendar #bar div {
    text-align: center;
    font-size: 14px;
}

#calendar #bar select {
    font-size: 14px;
    background-color: #fff;
    border: none;
}

#calendar #bar .button {
    display: inline-block;
    width: 24px;
    text-align: center;
    border-radius: 2px;
    line-height: 2;
    height: auto;
    margin: 0;
    background-image: none;
    padding: 0;
    font-size: 14px;
    font-weight: bold;
    background-color: #888;
}

#calendar table {
    border-collapse: collapse;
    width: 100%;
}

#calendar th {
    background-color: #eee;
    font-weight: bold;
}

#calendar td {
    background-color: #f8f8f8;
    color: #ddd;
}

#calendar th,
#calendar td {
    border: none;
    margin: 0;
    text-align: center;
    width: 30px;
    line-height: 2;
}

#calendar td.current {
    background-color: #fff;
    color: #666;
}

#calendar td.selected {
    background-color: #444;
    color: #fff;
    border-radius: 2px;
}
