﻿/*年月控件的样式*/
.SimpleCanleder_Year_Month {
    border: 1px solid #ddd;
    border-radius: 4px;
    box-sizing: border-box;
    position: absolute;
    /*left: 0px;
            top: 0px;*/
    min-width: 212px;
    min-height: 210px;
    max-width: 212px;
    max-height: 210px;
    z-index: 100;
    display: none;
    padding: 5px;
    background-color: #fff;
}

    .SimpleCanleder_Year_Month > div.title {
        display: table;
        width: 100%;
        padding: 5px;
    }

        .SimpleCanleder_Year_Month > div.title > button.button {
            border: 1px solid #ddd;
            background-color: #eee;
            text-align: center;
            display: table-cell;
            width: 30px;
            height: 30px;
            cursor: pointer;
        }

        .SimpleCanleder_Year_Month > div.title > button.button-enable {
            color: #666;
        }

            .SimpleCanleder_Year_Month > div.title > button.button-enable:hover {
                border: 1px solid #888;
                background-color: #ddd;
            }

        .SimpleCanleder_Year_Month > div.title > button.button-disabled {
            color: #ddd;
        }

            .SimpleCanleder_Year_Month > div.title > button.button-disabled:hover {
                /*border: 1px solid #888;
                background-color: #ddd;*/
            }

        .SimpleCanleder_Year_Month > div.title > div.select {
            border: 1px solid #fff;
            text-align: center;
            display: inline-block;
            height: 30px;
            width:110px;
            margin-left:10px;
            margin-right:10px;
            cursor: pointer;
        }

            .SimpleCanleder_Year_Month > div.title > div.select > select {
                height: 30px;
                width: 90px;
                font-size: 16px;
                padding-left: 10px;
            }

                .SimpleCanleder_Year_Month > div.title > div.select > select:hover {
                    height: 30px;
                     width: 90px;
                    font-size: 16px;
                }

    .SimpleCanleder_Year_Month > div.body {
        width: 100%;
        height: 125px;
    }

        .SimpleCanleder_Year_Month > div.body > div.month {
            border: 1px solid #eee;
            text-align: center;
            vertical-align: middle;
            float: left;
            width: 40px;
            height: 30px;
            margin: 5px;
            padding: 2px;
            cursor: pointer;
        }

            .SimpleCanleder_Year_Month > div.body > div.month:hover {
                background-color: #337ab7;
                color: #fff;
            }

        .SimpleCanleder_Year_Month > div.body > div.cur {
            background-color: #f0ad4e;
            color: #fff;
        }

    .SimpleCanleder_Year_Month > div.bottom {
        float: right;
        padding-right: 6px;
    }

        .SimpleCanleder_Year_Month > div.bottom > button {
            border: 1px solid #ddd;
            border-radius: 2px;
            height: 30px;
            width: 60px;
            background-color: #eee;
            margin-left: 5px;
        }

            .SimpleCanleder_Year_Month > div.bottom > button:hover {
                border: 1px solid #888;
                background-color: #ddd;
            }
