﻿a {
    text-decoration: none;
}

.registration .title {
    height: 55px;
    line-height: 55px;
    border-bottom: 1px solid #F4F4F4;
}

.title #registration-prev {
    float: left;
    transform: rotate(90deg);
}

.title #registration-year {
    float: left;
}

.title #registration-title {
    float: right;
}

.title #registration-next {
    transform: rotate(-90deg);
    float: right;
}

.calendar .title {
    height: 55px;
    line-height: 55px;
    border-bottom: 1px solid #F4F4F4;
}

.title .prev {
    float: left;
    transform: rotate(90deg);
}

.title .year-month {
    float: left;
    width: 170px;
    height: 45px;
    line-height: 45px;
    text-align: center;
    margin: 0 30px;
    padding:0 30px;
    margin-top: 6px;
    cursor: pointer;
}

    .title .year-month div {
        height: 45px;
        line-height: 45px;
    }

    .year-month:hover {
        background: #F4F4F4;
        border-radius: 8px;
        color: #00BBFF;
    }

.title .years {
    float: left;
}

.title .months {
    float: right;

}

.title .next {
    transform: rotate(-90deg);
    float: left;
}



.calendar .body {
    margin-top: 10px;
    height: 217px;
    width: 274px;
}

.calendar .body .body-list ul {
    width: 274px;
    margin-left: 8px;
    font-family: arial;
    font-weight: bold;
    font-size: 14px;
}

.calendar .body .body-list ul li {
    all: initial;
    width: 36px;
    height: 31px;
    line-height: 31px;
    list-style-type: none;
    display: block;
    box-sizing: border-box;
    float: left;
    text-align: center;
}

.days .lightgrey {
    color: #a8a8a8 !important;
    /*浅灰色*/
}

.days .darkgrey {
    color: #565656 !important;
    /*深灰色*/
}

.days .green {
    color: #333333 !important;
    /*绿色*/
}

.days .greenbox {
    font-size: 14px !important;
    background: #00577B !important;
    font-weight: 500 !important;
    color: #FFFFFF !important;
    /*浅绿色背景*/
}

.days li {
    cursor: pointer !important;
}

/*选择年月*/
.select-date {
    display: none;
    position: absolute;
    top: 53px;
    left: 42px;
    z-index: 101;
    width: 180px;
    height: 200px !important;
    background: #FFFFFF;
    border-radius: 8px;
    box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.1);
}

.select-date .select-year {
    display: inline-block;
    width: 49%;
    height: 200px;
    overflow-y: hidden;
}

.select-date .select-month {
    display: inline-block;
    width: 48%;
    height: 200px;
    overflow-y: hidden;
}

.select-date div div {
    height: 30px;
    line-height: 30px;
    cursor: pointer;
    width: 70px;
    text-align: center;
    margin: 5px auto;
    border-radius: 8px;
}

.select-date div div:hover {
    background: #F4F4F4;
}

.select-date div .date-selecting {
    background: #F4F4F4;
    color: #00BBFF;
}

.select-date div::-webkit-scrollbar {
    /*滚动条整体样式*/
    width: 4px; /*高宽分别对应横竖滚动条的尺寸*/
    height: 1px;
}

.select-date div::-webkit-scrollbar-thumb {
    /*滚动条里面小方块*/
    border-radius: 10px;
    background-color: skyblue;
    background-image: -webkit-linear-gradient( 45deg, rgba(255, 255, 255, 0.2) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.2) 50%, rgba(255, 255, 255, 0.2) 75%, transparent 75%, transparent );
}

.select-date div::-webkit-scrollbar-track {
    /*滚动条里面轨道*/
    box-shadow: inset 0 0 5px rgba(0, 0, 0, 0.2);
    background: #ededed;
    border-radius: 8px;
}
