﻿.ct {
    border-spacing: 0;
    width: 100%;
    margin-bottom: 20px;
    background-color: aliceblue;
    text-align: center;
    /* 全局圆角，按需修改数值 */
    border-radius: 8px;
    overflow: hidden;
}

    .ct .tr-month {
        border: none;
        text-align: center;
        padding: 3px;
        font-weight: normal;
        font-size: 0.5em;
    }

    .ct .tr-day td {
        padding-top: 5px;
        padding-bottom: 5px;
    }

    .ct .caption {
        font-size: 2.5em;
        text-align: center;
        padding: 10px;
    }

.week,
.mon,
.tue,
.wed,
.thu,
.fri,
.sat,
.sun {
    width: 12.5%;
    padding-top: 3px;
    padding-bottom: 3px;
    border-top: solid 1px gray;
    border-bottom: solid 1px gray;
}

.sat,
.sun {
    color: red;
}

.ct .day {
    padding-top: 5px;
    padding-bottom: 5px;
}

.ct .solar {
    text-align: center;
    color: black;
    font-size: 1.2em;
}

.ct .lunar {
    text-align: center;
    color: gray;
    font-size: 0.8em;
}

.ct .solar-term {
    color: green;
}

.ct .holiday {
    color: red;
}

.ct .rest {
    color: red;
    font-size: 0.8rem;
    padding-left: 2px;
}

.ct .work {
    color: blue;
    font-size: 0.8rem;
    padding-left: 2px;
}

.ct .cdown {
    text-align: center;
    color: gray;
    font-size: 0.85em;
}

.ct .gaokao-day {
    color: red;
    font-weight: bold;
}

.ct .active-day {
    border: solid 1px red;
    background-color: white;
}

.ct .empty-row {
    height: 10px;
}

/*#region WXCY 色块样式组 */
.color-cell-wrap {
    width: 100%;
    display: flex;
    justify-content: center;
}

.color-row {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    gap: 3px;
}

.td-white,
.td-green,
.td-black,
.td-red,
.td-yellow {
    width: 10px;
    height: 10px;
    border: 1px solid #333;
    flex: 0 0 10px;
}

.td-white {
    background-color: #ffffff;
}

.td-green {
    background-color: #28a745;
}

.td-black {
    background-color: #212121;
}

.td-red {
    background-color: #dc3545;
}

.td-yellow {
    background-color: #ffc107;
}
/*#endregion WXCY 色块样式组 */