.time-select{
	display: inline-block;
    width: 160px;
    height: 40px;
    line-height: 40px;
    position: absolute;
    right: 0;
    top: -15px;
    background-color: #fff;
    cursor: pointer;
    z-index: 200;
}
.time-select .choose-box{
    position: relative;
}
.time-select .choose-type{
    color: rgba(0, 0, 0, 0.6); 
    font-size: 14px;
    padding-left: 30px;
 }
 /* 小三角 */
 .time-select .icon{
    width: 0;
    height: 0;
    border-left: 6px solid transparent;
    border-right: 6px solid transparent;
    border-top: 6px solid #666;
    position: absolute;
    right: 20px;
    top: 17px;
 }

.calendar{
    width: 200px;
    height: 190px;
    font-size: 0;
    overflow-y: hidden;
    background-color: #fff;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.1);
    position: absolute;
    right: 0;
    top: 40px;
}
.calendar > .year{
    height: 40px;
    line-height: 40px;
    font-size: 0;
    box-sizing: border-box;
}
.calendar > .year > span{
    display: inline-block; 
    text-align: center;
}
.calendar .current-year{
    width: 120px;
    font-size: 14px;
    color: #000;
}
.year .lr-arrow{
    width: 40px;
    font-size: 14px;
    color: rgba(0, 0, 0, 0.7);
}
/* 右箭头hover样式 */
.arrow-hover:hover{
    color: rgba(0, 0, 0, 1);
}
/* 右箭头禁用样式 */
.disabled-color{
    color: rgba(0, 0, 0, 0.3) !important;
}
/* 当前月份样式 */
.current-choose{
    color: #2AB1E8 !important;
}
.calendar > li{
    display: inline-block;
    font-size: 14px;
    width: 50px;
    height: 50px;
    line-height: 50px;
    box-sizing: border-box;
    text-align: center;
    color: rgba(0, 0, 0, 0.7);
    cursor: pointer;
}
.calendar > li:hover{
    box-shadow:0px 0px 5px rgba(0, 0, 0, 0.3)
}
.month-msg{
    position: absolute;
    width:150px;
    bottom: -60px;
    left: 50px;
    color: red;
    z-index: 200;
    font-size: 12px;
}
