.fullYearPicker,
.fullYearPicker table {
    font-size: 12px;
    -moz-user-select: none;
    -webkit-user-select: none;
    user-select: none;
}

.fullYearPicker div.year {
    text-align: center
}

.fullYearPicker div.year a {
    margin-right: 30px
}

.fullYearPicker div.year a.next {
    margin-right: 0;
    margin-left: 30px
}

.fullYearPicker table {
    border: 1px solid #dedede;
    margin-top: 10px;
    float: left;
    margin-right: 10px;
    width: 250px;
    height: 240px;
}

.fullYearPicker table.right {
    margin-right: 10px;
}

.fullYearPicker table th.head {
    height: 40px;
    font-size: 16px;
    text-align: center;
    line-height: 13px;
    cursor: default;
    background: #fff;
    color: #666666;
    border-bottom: 1px solid #dedede;
}

.fullYearPicker table td {
    background: #fff;
    text-align: center;
    line-height: 13px;
    cursor: pointer;
    color: #666666;
}

.fullYearPicker table th {
    text-align: center;
    color: #a9a9a9;
}

.fullYearPicker table td.weekend,
.fullYearPicker table th.weekend {}

.fullYearPicker table td.disabled {
    color: #2b2929;
    /* text-decoration:line-through; */
    cursor: not-allowed;
}

.fullYearPicker table td{
    border-radius:50%;
}

.fullYearPicker table td.selected {
    background: #b6151d;
    boder-radius: 50%;
    color: #ffffff;
}

.fullYearPicker table td.empty {
    cursor: default
}

.fullYearPicker br {
    clear: both
}

.year {
    display: none;
}

/* 该样式为取消勾选动画*/
.arrow_box {
    /* animation: glow 800ms ease-out infinite alternate; */
}

@keyframes glow {
    0% {
        border-color: red;
        box-shadow: 0 0 5px red, inset 0 0 5px red, 0 1px red;
    }

    100% {
        border-color: red;
        box-shadow: 0 0 20px red, inset 0 0 10px red, 0 1px 0 red;
    }
}