@charset "UTF-8";

.calendar table {
    width: 100%;
    margin: 0 auto;
}

.calendar table tr:nth-child(even) {
    background-color: #fbfbfb;
    border-radius: 6px;
}

.calendar table tr th {
    height: 45px;
    line-height: 45px;
    text-align: center;
}

.calendar table tr th span {
    display: inline-block;
    width: 28px;
    height: 28px;
    text-align: center;
    line-height: 27px;
    background-color: #f5faff;
    border-radius: 2px;
    border: solid 1px #e5f1fc;
    font-weight: normal;
    color: #333333;
}

.calendar table tr td {
    height: 32px;
    text-align: center;
    line-height: 32px;
    font-size: 16px;
    color: #333;
    cursor: pointer;
}

/*鼠标滑过*/
.bgHover {
    background: #4c99da;
    color: #fff !important;
    text-decoration: none !important;
}

.riqi {
    position: relative;
    z-index: 9999999;
    height: 35px;
}

.riqi .piaofu {
    z-index: 100;
    position: absolute;
    bottom: 48px;
    left: -85px;
    width: 212px;
    border-radius: 6px;
    background: #4c99da;
    padding: 10px;
    text-align: left;
    font-size: 12px;
    line-height: 1.5;
    display: none;
}

.riqi.current .piaofu {
    display: block;
}

.riqi .piaofu span {
    /* z-index: 100; */
    display: block;
    position: absolute;
    bottom: -20px;
    left: 97px;
    width: 0;
    height: 0;
    border: 10px solid transparent;
    border-top-color: #1d6dc6;
}

.riqi .piaofu ul {
    padding-left: 13px;
}

.riqi .piaofu ul li {
    position: relative;
    float: none;
    margin: 0;
    margin-bottom: 8px;
    /* padding: 2px 0px 2px 8px; */
    /* list-style: disc !important; */
    text-align: left;
    /* z-index: 100; */
}

.riqi .piaofu ul li::before {
    position: absolute;
    top: 7px;
    left: -11px;
    content: '';
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background-color: #fff;
}

.riqi .piaofu ul li:nth-last-child(1) {
    margin-bottom: 0;
}

.riqi .piaofu ul li::marker {
    color: #fff;
    font-size: 1em;
    /* z-index: 100; */
}

.riqi .piaofu ul li a {
    color: #fff;
    /* z-index: 100; */
    font-size: 12px;
    border: none;
    padding: 0;
    margin: 0;
}

.riqi .piaofu ul li a:hover {
    text-decoration: underline;
    /* z-index: 100; */
}

/*非本月日期*/
.calendar table tr td.current_day {
    background: #cbcbcb;
}

.calendar table tr td.unselected_month {
    color: #b5b5b5;
}

.button {
    cursor: pointer;
}