/*
 * =========================================================================
 * APIClud - AUI UI 框架    流浪男  QQ：343757327  http://www.auicss.com
 * 日历样式表
 * Verson 0.0.1
 * =========================================================================
 */
table {
    border-spacing: 0;
    border-collapse: collapse;
    border-bottom: 1px #ccc solid;
    width: 90%;
    text-align: center;
    margin: 0 auto;
}
td,
th {
    padding: 5px;
    font-weight: 400;
    display: table-cell;
    vertical-align: inherit;
    font-weight: 900!important;
}
td{position:relative;border:1px #ccc solid;color:#757E83;}
tr {
    display: table-row;
    vertical-align: inherit;
    border-color: inherit;
}
.aui-calendar {
    /*padding: 10px;*/
    background: #ffffff;
    color: #999999;

}
.aui-calendar > table {
    margin-bottom: 15px;
    /*-webkit-animation: flipInX 0.3s;
        animation: flipInX 0.3s;*/
}
.aui-calendar th {
    padding: 5px 0;
}
.aui-calendar .aui-calendar-body td {
    padding: 10px 0;
    position: relative;
    touch-action: none;
}
.aui-calendar td p {
    font-size: 10px;
}
.aui-calendar .aui-calendar-header {
    position: relative;
    border-bottom: 1px solid #eeeeee;
}
.aui-calendar .aui-calendar-header > tr:first-child {
    font-size: 1.2em;
}
.aui-calendar .bandge {
    width: 6px;
    height: 6px;
    background: #ff9900;
    border-radius: 50%;
    position: absolute;
    top: 14px;
    left: 50%;
    margin-left: -3px;
}
.before-day{color:#ccc;}
.aui-calendar .before-day,
.aui-calendar .before-day p {
    color: #ccc !important;
    /*background: #fafafa;*/
}
.th-week{font-size: 12px;color:#349AFC;}
.today {
    background: #aaa;
    color:#fff;
}
.active {
    border: none;
    background: #349AFC;
    color: #fff;
    /*-webkit-animation: flipInX 0.3s;*/
    /*animation: flipInX 0.3s;*/
}
@-webkit-keyframes flipInX {
    from {
        -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
        transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
        -webkit-animation-timing-function: ease-in;
        animation-timing-function: ease-in;
        opacity: 0.8;
    }
    to {
        -webkit-transform: perspective(400px);
        transform: perspective(400px);
    }
}