.react-datepicker{
    position: relative;
    display: inline-block;
    width: 100%;
}
.react-datepicker__input-container{
    position: relative;
    display: inline-block;
    width: 100%;
}
.panel-container {
    display: inline-block;
    text-align: center;
    background: #fff;
    border: 1px solid #f0f0f0;
    border-radius: 2px;
    outline: none;
    position: absolute;
    top: 30px;
    left: 0;
    z-index: 1000;
}
.picker-header{
    width: 280px;
    text-align: center;
    height: 40px;
    line-height: 30px;
    border-bottom: 1px solid #f0f0f0;
    font-size: 15px;
}
.decade-btn{
    width: 200px;
    display: inline-block;
    font-weight: 500;
}
.picker-header button{
    padding: 0;
    color: rgba(0,0,0,.25);
    line-height: 40px;
    background: 0 0;
    border: 0;
    cursor: pointer;
    -webkit-transition: color .3s;
    transition: color .3s;
}
.picker-header button:focus{
    outline: none!important;
}
.picker-header button:hover .anticon ,.react-datepicker__year-container-text:hover {
    color: #409eff;
}
.react-datepicker__year-container {
    text-align: center;
    width: 280px;
}
.activeYear{
    background: #409eff;
    color: #fff;
}
.disableYear,.disableYear:hover{
    color: #ccc;
}
.disableYear:hover{
    background: #fff;
}
.activeYear:hover{
    color: #fff;
}
.react-datepicker__year-container-text {
    width: 46px;
    padding: 10px 10px;
    margin: 10px 12px;
    height: 28px;
    display: inline-block;
    line-height: 8px;

    /* margin: 0 auto; */
    cursor: pointer;
    border-radius: 6px;
}
.react-datepicker__input-container .anticon {
    cursor: pointer;
}