/*日历*/

.calendar * {
    box-sizing: border-box;
    font-size: 0.28rem;
}

.calendar {
    cursor: default;
    /* width: 1200px; */
    /* height: 342px; */
    /* margin: 30px auto */
    width: 100%;
    display: flex;
    align-items: flex-end;
    /* height: 100%; */
    justify-content: space-between;
}

.c-event-top-box {
    padding: 13px;
    background: none;
    border-radius: 2.75rem;
    opacity: 1;
    box-sizing: border-box;
    padding-top: 0.3rem;
    /* 品牌色 */
    /* border: 1px solid #003366; */
}

.c-event-top {
    /* width: 440px; */
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    padding-bottom: .18rem;
}


/*.calendar .c-pad-top{padding-top:3%}*/

.c-grid {
    /* width: 440px; */
    float: left;
    color: #003366;
    margin-top: 0;
}

.c-day {
    border-radius: 3px;
    width: calc(100% / 7);
    height: 0.84rem;
    line-height: 0.84rem;
    float: left;
    text-align: center;
    margin: 5px 0px 0px 0px;
    color: #003366;
    font-size: 28px;
    border: 1px solid transparent;
    position: relative;
    font-weight: 400;
    display: flex;
    justify-content: center;
}

.c-day i {
    font-style: normal;
    display: inline-block;
    position: relative;
    z-index: 3;
    height: 0.84rem;
    width: 0.84rem;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.6);
}

.c-day-previous-month i,
.c-day-next-month i {
    background: rgba(255, 255, 255, 0.6);
    height: 0.84rem;
    width: 0.84rem;
    border-radius: 12px;
    display: inline-block;
    font-style: normal;
    opacity: 0.3;
}

.c-day-previous-month {
    width: calc(100% / 7);
    height: 0.84rem;
    line-height: 0.84rem;
    float: left;
    text-align: center;
    color: gray;
    margin: 5px 0px 0px 0px;
    opacity: 0;
}

.c-day-next-month {
    width: calc(100% / 7);
    line-height: 0.84rem;
    float: left;
    text-align: center;
    color: gray;
    margin: 5px 0px 0px 0px;
    display: none;
    opacity: 0;
}

.c-week-day {
    width: calc(100% / 7);
    float: left;
    text-align: center;
    padding-top: 0.1rem;
    padding-bottom: 0.1rem;
    font-weight: normal;
}

.c-next {
    width: 0.4rem;
    height: 0.4rem;
    text-align: right;
    cursor: pointer;
    text-align: center;
    /* position: absolute;
    bottom: 0;
    right: 0; */
    color: #003366;
    font-size: 0.26rem;
    line-height: 0.4rem;
}

.c-next:before {
    content: '\e619';
    font-family: "iconfont" !important;
    font-style: normal;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.c-previous:before {
    content: '\e620';
    font-family: "iconfont" !important;
    font-style: normal;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.c-previous {
    color: #003366;
    font-size: 0.26rem;
    width: 0.4rem;
    height: 0.4rem;
    text-align: left;
    cursor: pointer;
    text-align: center;
    /* position: absolute;
    bottom: 0;
    left: 0; */
    line-height: 0.4rem;
}

.c-month {
    /* width: 100%; */
    height: inherit;
    text-align: center;
    padding-left: 0.35rem;
    padding-right: 0.35rem;
}

.c-month-top {
    font-size: 0.36rem;
    /* margin-bottom: 2rem; */
    line-height: 0.36rem;
}

.c-month-top b {
    font-size: 0.36rem;
    /* margin-bottom: 2rem; */
    line-height: 0.36rem;
    font-weight: normal;
}

.c-month-center {
    font-size: 5.75rem;
    color: #fff;
}

.c-month-bottom {
    font-size: 1.375rem;
    /* height: 30px */
}

.c-nav-btn-over {}

.c-today i {
    display: inline-block;
    /* color: #63CAE1; */
}

.c-today::before {}

.c-event {
    /* background-color: #00aeff; */
    /* color: #63CAE1; */
    font-weight: 400;
    cursor: pointer;
    position: relative;
    /* overflow: hidden; */
    user-select: none;
}

.c-event i {
    background: #F7E0D3;
}

.c-today i {
    border: 1px solid #3A3834;
}

.c-current i {
    background: #FFFFFF;
    border: 1px solid #3A3834;
}


/* .c-today::before {
    content: '';
    position: absolute;
    width: 2rem;
    height: 2rem;
    display: block;
    z-index: 1;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    border: 2px solid #ED1B2F;
    border-radius: 50%;
} */

.c-grid-title {
    float: left;
    color: #003366
}


/*.c-event-title{width:100%;height:12%;text-align:center;font-weight:700;background-color:#879bbc;color:#fff}*/


/* 日历 -- end-- */