<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">.calendar{
    width: 100%;
    overflow: hidden;
}
.calendar .title{
    width: 100%;
    height: 40px;
    line-height: 40px;
    text-align: center;
    font-size: 20px;
    font-weight: bold;
}
.calendar .title .prev_month_btn{
    display: block;
    float: left;
    line-height: 40px;
    font-size: 15px;
    margin-left: 10px;
    text-decoration: none;
    cursor: pointer;
}
.calendar .title #month{
    color: #585858;
    font-weight: 200;
}
.calendar .title .next_month_btn{
    display: block;
    float: right;
    line-height: 40px;
    font-size: 15px;
    margin-right: 10px;
    text-decoration: none;
    cursor: pointer;
}
.calendar .calendars{
    width: 100%;
    margin: 0 auto;
    /*background: #FFCC99;*/
}
.calendar .calendars .table{
    border: 0;
    margin: 0;
    width: 100%;
    text-align: center;
}
.calendar .calendars .table .tr{
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.calendar .calendars .table .thead{
    color: #888888;
}
.calendar .calendars .table .td{
    border: 0;
    text-align: center;
    width: 40px;
    height: 40px;
    padding: 0;
    padding-top: 5px;
    position: relative;
    cursor: pointer;
    border-radius: 50%;
    color: #333;
}
.calendar .calendars .table .td.today{
    background-color: rgba(0,0,0,0.2);
    color: #000;
}
.calendar .calendars .table .td.active{
    background-color: #999;
    color: #fff;
}
.calendar .calendars .table .td .td1{
    width: 100%;
    height: 20px;
    line-height: 20px;
    text-align: center;
}
.calendar .calendars .table .td .td2{
    width: 100%;
    height: 15px;
    line-height: 15px;
    text-align: center;
    font-size: 12px;
}

.calendar .calendars .table .active-bg {
    background-color: #6a9bce;
    color: #fff;
}
.calendar .calendars .table  .today-bg {
    background-color: #134ebe;
    color: #fff;
}</pre></body></html>