﻿/*date*/
#datebox {
    position: fixed;
    bottom: 0;
    left: 0;
    background: white;
    z-index: 105;
    width: 100%;
    height: 260px;
    display: none;
    opacity: 0;
    transition: all .3s linear 0s;
    box-sizing: border-box;
}

    #datebox * {
        box-sizing: border-box;
    }

    #datebox div.sel {
        background: #5b595a;
        color: white;
    }

    #datebox #dateboxheader {
        height: 50px;
        line-height: 50px;
        border-bottom: 2px solid #f1f1f1;
    }

        #datebox #dateboxheader #dateheaderleft {
            float: left;
            width: 25%;
            text-align: center;
            position: relative;
            border-right: 1px solid #f1f1f1;
        }

            #datebox #dateboxheader #dateheaderleft::after {
                content: "";
                height: 0;
                width: 0;
                border-top: 8px solid black;
                border-left: 8px solid transparent;
                border-right: 8px solid transparent;
                position: absolute;
                bottom: 4px;
                right: 0px;
                -webkit-transform: rotate(-45deg);
                transform: rotate(-45deg);
            }

            #datebox #dateboxheader #dateheaderleft.cant::after {
                content: none;
            }

            #datebox #dateboxheader #dateheaderleft .selectdatetypes {
                display: none;
                position: absolute;
                z-index: 100;
                top: 50px;
                left: 0;
                width: 100%;
                background: #e1e1e1;
            }

            #datebox #dateboxheader #dateheaderleft.hover .selectdatetypes {
                display: block;
            }

            #datebox #dateboxheader #dateheaderleft .selectdatetypes div {
                border-top: 1px solid black;
            }

        #datebox #dateboxheader #dateheadercontent {
            float: left;
            width: 50%;
            text-align: center;
            position: relative;
        }

        #datebox #dateboxheader .enabled::after {
            content: "";
            height: 0;
            width: 0;
            border-top: 5px solid black;
            border-left: 5px solid white;
            border-right: 5px solid white;
            position: absolute;
            bottom: 5px;
            left: 49%;
        }

        #datebox #dateboxheader #dateheaderright {
            float: right;
            width: 25%;
            text-align: center;
            border-left: 1px solid #f1f1f1;
        }
#dateboxisol {
z-index:104;
}

#yearbox {
    display: block;
}

    #yearbox .yearitem {
        float: left;
        width: 50%;
        height: 70px;
        line-height: 70px;
        text-align: center;
        border-bottom: 1px solid #f1f1f1;
    }

    #yearbox div.yearitem:nth-child(2n+1) {
        border-right: 1px solid #f1f1f1;
    }

#monthbox {
    display: none;
}

    #monthbox .monthitem {
        float: left;
        width: 25%;
        height: 70px;
        text-align: center;
        border-bottom: 1px solid #f1f1f1;
        border-right: 1px solid #f1f1f1;
    }

        #monthbox .monthitem div:first-child {
            font-size: 20px;
            height: 35px;
            line-height: 50px;
        }

        #monthbox .monthitem div:last-child {
            line-height: 30px;
            font-size: 10px;
        }

    #monthbox div.monthitem:nth-child(4n) {
        border-right: none;
    }

#daybox #dayboxweek {
    height: 25px;
    line-height: 25px;
    border-bottom: 1px solid #f1f1f1;
}

    #daybox #dayboxweek div {
        float: left;
        width: 14%;
        color: #999;
        text-align: center;
        font-size: 12px;
    }

#dayboxdays {
    display: block;
}

    #dayboxdays .dayitem {
        float: left;
        width: 14%;
        height: 37px;
        line-height: 37px;
        text-align: center;
        border-bottom: 1px solid #f1f1f1;
        border-right: 1px solid #f1f1f1;
    }

    #dayboxdays.six .dayitem {
        height: 30px;
        line-height: 30px;
    }

    #dayboxdays div.dayitem:nth-child(7n) {
        border-right: none;
    }
/*date end*/
