.plan-finish-btns {
    width: 100%;
    padding: .8rem 0.3rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

    .plan-finish-btns li {
        width: 3rem;
        height: 0.84rem;
        background: rgba(21, 188, 195, 0.11);
        border-radius: 0.42rem;
        display: flex;
        justify-content: center;
        align-items: center;
        font-size: 0.32rem;
        color: #15BCC3;
    }

        .plan-finish-btns li:last-child {
            background: #15BCC3;
            color: #fff;
        }


/* 日历 */

.calendar {
    height: auto;
    font-size: 16px;
    background: #fff;
    margin: 5vw auto;
}

    .calendar .month {
        display: flex;
        justify-content: space-between;
        align-items: center;
        white-space: nowrap;
    }

        .calendar .month li {
            text-transform: uppercase;
            letter-spacing: 0;
        }

        .calendar .month .arrow {
            color: #333;
            width: .6rem;
            font-size: 0.24rem;
            display: flex;
            justify-content: center;
            align-items: center;
        }

    .calendar .mintui-arrowright {
        width: 0.16rem;
        height: 0.16rem;
        border-top: 2px solid #ffdd9c;
        border-right: 2px solid #ffdd9c;
        transform: rotate(45deg);
    }

    .calendar .arrowleft {
        transform: rotate(-135deg);
    }

    .calendar .month .year-month {
        flex: 1;
        display: flex;
        justify-content: center;
        align-items: center;
        font-size: 0.24rem;
        color: #ffdd9c;
    }

    .calendar .weekdays {
        /*头部星期*/
        display: flex;
        flex-wrap: wrap;
        justify-content: space-around;
        margin-bottom: 0.1rem;
        border-bottom: 1px #ffdd9c solid;
        color: #ffdd9c;
        padding-bottom: .2rem;
        margin-top: .3rem;
    }

        .calendar .weekdays li {
            display: inline-block;
            text-align: center;
        }

    .calendar .days {
        /*日期*/
        display: flex;
        flex-wrap: wrap;
        align-items: center;
        justify-content: flex-start;
    }

        .calendar .days li {
            width: 14.2%;
            box-sizing: border-box;
            text-align: center;
            color: #ffdd9c;
            display: flex;
            justify-content: center;
            align-items: center;
            padding: .05rem 0;
        }

            .calendar .days li .day-li {
                position: relative;
                width: 0.5rem;
                height: 0.5rem;
                display: flex;
                align-items: center;
                justify-content: center;
                font-size: 1vw;
                border-radius: 50%;
            }

                .calendar .days li .day-li .day-span {
                    position: relative;
                    width: 0.5rem;
                    height: 0.5rem;
                    display: flex;
                    align-items: center;
                    justify-content: center;
                    font-size: 1vw;
                    border: 2px solid #011f5b;
                    border-radius: 50%;
                    color: #ffdd9c;
                }

            .calendar .days li .day-checked .day-span {
                border: 2px solid #ffdd9c;
            }

    .calendar .other {
        opacity: .5;
    }

    .calendar .days li .day-li .day-sign {
        /*签到的日期*/
        background-color: #ffdd9c;
        color: #011f5b;
    }

    .calendar .days li .day-li .day-signed {
        background-color: #ffdd9c;
        color: #011f5b;
        cursor: pointer;
        border-width: 0;
    }

    .calendar .days li .day-checked .day-signed::after {
        content: '';
        position: absolute;
        right: -12px;
        top: 50%;
        width: 0;
        height: 0;
        border-top: 12px transparent solid;
        border-bottom: 12px transparent solid;
        border-right: 12px #ffdd9c solid;
        z-index: 11;
        transform: translateY(-50%);
        -webkit-transform: translateY(-50%);
        -moz-transform: translateY(-50%);
        -ms-transform: translateY(-50%);
        -o-transform: translateY(-50%);
    }

.plan-calendar-info {
    padding: 0.32rem 0;
    position: absolute;
    top: 2rem;
    right: -6.2rem;
    width: 6.2rem;
    height: 3.7rem;
    background: url(../images/date-bg.jpg)no-repeat center;
    background-size: cover;
    padding: .4rem .9rem 0 .9rem;
    display: none;
    box-shadow: 0 0 .2rem rgba(1, 31, 91, .4);
}

    .plan-calendar-info.on {
        display: block;
    }

.calendar-info-title {
    color: #011f5b;
    font-size: 0.28rem;
    font-weight: bold;
    text-transform: uppercase;
    line-height: 1.6;
}

.calendar-info-list {
    border-top: 1px #dea84d solid;
    margin-top: .2rem;
}

    .calendar-info-list > div {
        margin-top: .2rem;
        line-height: 1.8;
        color: rgba(0, 0, 0, 0.6);
        font-size: 1vw;
        padding-left: .4rem;
        background-position: left center;
        background-repeat: no-repeat;
    }

    .calendar-info-list .time {
        background-image: url(../images/time.png);
        background-size: .22rem;
    }

    .calendar-info-list .address {
        background-image: url(../images/address.png);
        background-size: .22rem;
    }

    .calendar-info-list .lecturer {
        background-image: url(../images/ren.png);
        background-size: .24rem;
    }

@media (max-width:1199px) {
    .calendar .month .year-month,
    .calendar-info-list > div {
        font-size: 14px;
    }

    .calendar .days li .day-li .day-span {
        font-size: 12px;
    }
}

@media (max-width:767px) {
    .calendar {
        margin-top: 0;
        padding-top: .3rem;
        padding-bottom: .3rem;
        height: auto;
        padding-left: .2rem;
        padding-right: .2rem;
    }

    .plan-calendar-info {
        right: auto;
        top: auto;
        left: 0 !important;
        width: 100%;
        height: auto;
        padding-bottom: .4rem;
    }

    .calendar-info-title {
        font-size: 18px;
    }

    .calendar .days li .day-checked .day-signed::after {
        display: none;
    }

    .plan-calendar-info::after {
        left: 50%;
        top: -12px;
        transform: translateX(-50%);
        -webkit-transform: translateX(-50%);
        -moz-transform: translateX(-50%);
        -ms-transform: translateX(-50%);
        -o-transform: translateX(-50%);
        border-right: 12px transparent solid;
        border-left: 12px transparent solid;
        border-bottom: 12px #ffdd9c solid;
        z-index: 2;
    }
}
