@charset "utf-8";

/* CSS Document */

.calendar {
    width: 630px;
    font-size: 14px;
    margin: 0 auto;
}
.calendar table thead {
    display: block;
    width: 630px;
    height: 40px;
    line-height: 40px;
    margin-top: 40px;
    box-sizing: border-box;

}

.calendar table tr th {
    display: inline-block;
    width: 40px;
    height: 40px;
    font-size:20px;
    margin-left: 44px;
}

.calendar table tr th span {
    display: block;
    width: 40px;
    height:40px;
    color: #333333;
    line-height: 30px;
}

.calendar table tbody {
    display: block;
}

.calendar table tr {
    display: block;
    height: 45px;
    line-height: 45px;
}
.calendar table tbody tr{
    margin-top: 11px;
}
.calendar table tr td {
    display: inline-block;
    text-align: center;
    line-height: 45px;
    height: 45px;
    width: 45px;
    color: #4f4f4f;
    cursor: pointer;
    box-sizing: border-box;
    margin-left: 40px;
    font-size: 20px;
}

.calendar table tr td.usual_day:hover {
    background: #fe8f2f;
    color: #ffffff;
    border-radius: 50%;
}


/*鼠标滑过*/

.bgHover {
    background: #fe8f2f !important;
    color: #fff !important;
    text-decoration: none !important;
    border-radius: 50%;
}

.bgHover_t {
    background: #015293;
    color: #fff !important;
    text-decoration: none !important;
}

.riqi {
    position: relative;
    z-index: 50;
    width: 45px;
    height: 45px;
}

.riqi .piaofu {
    border-radius: 5px;
    position: absolute;
    width: 320px;
    bottom: 60px;
    left: -147px;
    background: #ffffff;
    text-align: left;
    font-size: 12px;
    line-height: 18px;
    padding: 10px;
    display: none;
    z-index: 100;
    border: 1px solid #feaf66;
    box-sizing: border-box;
    box-shadow:0 0 10px #fff3dd inset;


}

.riqi.current .piaofu {
    display: block;
}

.riqi .piaofu span {
    display: block;
    width: 0;
    height: 0;
    position: absolute;
    bottom: -12px;
    left: 160px;
    border-left: 10px solid transparent;
    border-right: 10px solid transparent;
    border-top: 11px solid #fea351;

}

.riqi .piaofu span::after {
    content: '';
    width: 0;
    height: 0;
    border-left: 9px solid transparent;
    border-right: 9px solid transparent;
    border-top: 10px solid #ffffff;
    position: absolute;
    bottom: 2px;
    left: -9px;
    display: block;
}

.riqi .piaofu ul li {
    padding: 2px 0px 2px 8px;
    z-index: 100;
    padding-left: 10px;
    position: relative;
    line-height: 30px;
}

.riqi .piaofu ul li::after {
    display: block;
    content: '';
    width: 3px;
    height: 3px;
    border-radius: 50%;
    background: #fe8f2f;
    position: absolute;
    left: 0;
    top: 12px;
}

.riqi .piaofu ul li a {
    color: #fe8f2f;
    z-index: 100;
    font-family: "微软雅黑";
    font-size: 16px;
}

.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
}

.calendar table tr td .riqi.yesData {
    background: #eff4f8;
    color: #497dfc;
    border-radius:50%;
}

.calendar table tr td .riqi.bgHover_t {
    border-radius:40px;
    width: 45px;
    height: 45px;
    color: #ffffff !important;
    background: #fe8f2f !important;
}


/*选择日期*/

.calendar .choice {
    height: 53px;
    position: relative;
    overflow: hidden;
}

.calendar .choice .choice_l {
    width: 330px;
    height: 53px;
    float: left;
}

.calendar .choice .choice_l .year{
    width: 140px;
    height: 53px;
    border-radius: 30px;
    padding: 5px;
    float: left;
    box-sizing: border-box;
    background:#caddff;
}
.calendar .choice .choice_l .year .con{
    height: 43px;
    background: #ffffff;
    border-radius: 21px;
    line-height: 43px;
    font-size: 20px;
    color: #666666;
    text-align: center;
}
.calendar .choice .choice_l .year .button{
    display: inline-block;
    width: 7px;
    height: 13px;
    cursor: pointer;
}
.calendar .choice .choice_l .year .button.prev{
    margin-right: 10px;
}
.calendar .choice .choice_l .year .button.next{
    margin-left: 10px;
}
.calendar .choice .choice_l .month{
    width: 140px;
    height: 53px;
    border-radius: 30px;
    padding: 5px;
    float: left;
    margin-left: 20px;
    box-sizing: border-box;
    background:#caddff;
}
.calendar .choice .choice_l .month .con{
    height: 43px;
    background: #ffffff;
    border-radius: 21px;
    line-height: 43px;
    font-size: 20px;
    color: #666666;
    text-align: center;
}
.calendar .choice .choice_l .month .button{
    display: inline-block;
    width: 7px;
    height: 13px;
    cursor: pointer;
}
.calendar .choice .choice_l .month .button.prev{
    margin-right: 10px;
}
.calendar .choice .choice_l .month .button.next{
    margin-left: 10px;
}
.calendar .choice .fh{
    width: 80px;
    height: 53px;
    line-height: 53px;
    float: right;
    font-size: 20px;
    color: #bbd3ff;
    cursor: pointer;
}


