@charset "utf-8";
.datemm {
    border-top: 1px solid #ddd;
}

.datemm * {
    margin: 0px;
    padding: 0px;
}

.datemm ul {
    list-style: none;
    overflow: hidden;
    background: #f8f8f8;
    border-bottom: 1px solid #ddd;
}

.datemm li {
    float: left;
    text-align: center;
    background-color: #f8f8f8;
    width: 10%;
    height: 28px;
    line-height: 26px;
    position: relative;
    cursor: pointer;
}

.datemm li:before {
    content: ' ';
    position: absolute;
    left: 50%;
    bottom: 0;
    width: 1px;
    height: 6px;
    background: #ccc;
}

.datemm ul.month li {
    width: 8.333333%;
}

.datemm ul.quarter li {
    width: 25%;
}

.datemm ul.year li {
    width: 9%;
}
.datemm .year .prev,
.datemm .year .next {
    width: 5%;
}
.datemm .year .prev:after,
.datemm .year .next:after {
    content: ' ';
    position: absolute;
    left: 50%;
    bottom: 8px;
    border-top: 6px solid transparent;
    border-bottom: 6px solid transparent;
    margin-left: -4px;
}
.datemm .year .prev:after {
    border-right: 8px solid #d00;
}
.datemm .year .next:after {
    border-left: 8px solid #d00;
}
.datemm .year .prev.disable:after {
    border-right-color: #888;
}
.datemm .year .next.disable:after {
    border-left-color: #888;
}

.datemm li.selected:after {
    content: ' ';
    position: absolute;
    left: 50%;
    bottom: 0;
    width: 0;
    height: 0;
    border-bottom: 6px solid #d00;
    border-left: 6px solid transparent;
    border-right: 6px solid transparent;
    margin-left: -6px;
}

#mapDiv {
    top: 56px;
    position: absolute;
    width: 100%;
    height: calc(100vh - 268px);
    overflow: hidden;
    z-index: 3;
}

.mapTitle {
    position: absolute;
    top: 61px;
    left: 0;
    z-index: 4;
    height: 26px;
    width: 500px;
}

.mapTitle li {
    padding: 0 10px;
    border: 1px solid #0279ad;
    float: left;
    height: 24px;
    line-height: 20px;
    display: inline;
    margin-left: 6px;
    color: #fff;
    cursor: pointer;
    background: #0086c0;
    border-radius: 3px;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.3), 0 1px 3px rgba(0, 0, 0, 0.2);
    background: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(20%, #58b4db), color-stop(100%, #0279ad)), #0086c0;
    background: -webkit-linear-gradient(#58b4db 20%, #0279ad), #0086c0;
    background: -moz-linear-gradient(#58b4db 20%, #0279ad), #0086c0;
    background: -o-linear-gradient(#58b4db 20%, #0279ad), #0086c0;
    background: linear-gradient(#58b4db 20%, #0279ad), #0086c0;
    text-shadow: 0 1px 1px rgba(0, 0, 0, 0.4);
    font-family: "Microsoft YaHei", Helvetica, sans-serif;
}

.mapTitle li:hover {
    background: #0086c0
}

.mapTitle li:active {
    background: #0086c0;
    box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.2)
}