/* 日历 */
#dxlWapDatePicker {
    z-index: 1999;
    width: 320px;
    background: #fff;
    position: relative;
}
#dxlWapDatePicker .caleWordTop {
    background: #f5f5f5;
    text-align: center;
    font-size: 16px;
    color: #333;
    border-top: 1px solid #ccc;
    border-bottom: 1px solid #e5e5e5;
    line-height: 40px;
    position: relative;
}
#dxlWapDatePicker .caleWordTop span {
    font-size: 16px;
}
#dxlWapDatePicker .caleWordTop i {
    display: block;
    position: absolute;
    width: 50px;
    height: 40px;
    top: 0;
    background: url(/m/img/caleIcon.png) no-repeat center 11px;
    background-size: 10px auto;
}
#dxlWapDatePicker .caleWordTop i.iCloseSilde {
    background: none;
}
#dxlWapDatePicker .caleWordTop .iLeft {
    left: 10px;
    -ms-transform: rotate(-180deg);
    transform: rotate(-180deg);
    -webkit-transform: rotate(-180deg);
}
#dxlWapDatePicker .caleWordTop .iRight {
    right: 10px;
    background-position: center 11px;
}
#dxlWapDatePicker .caleWordTop i.closeSilde {} #dxlWapDatePicker .caleWeek {
    border-bottom: 1px solid #e9e9e9;
    padding-left: 21px;
}
#dxlWapDatePicker .caleWeek li {
    float: left;
    width: 40px;
    height: 40px;
    text-align: center;
    line-height: 45px;
    font-size: 16px;
}
#dxlWapDatePicker .caleWeek li:first-child,
#dxlWapDatePicker .caleWeek li:last-child {
    color: #ff6e6e;
}
#dxlWapDatePicker .caleDataCon {
    width: 280px;
    height: 225px;
    margin: 0 auto;
    overflow: hidden;
    position: relative;
}
#dxlWapDatePicker .caleDataCon .caleShowMain {
    width: 20000px;
    position: absolute;
    left: 0;
    top: 10px;
    height: 210px;
    overflow: hidden;
}
#dxlWapDatePicker .caleDataCon .caleShowMain ul {
    width: 280px;
    display: block;
    float: left;
    background: #fff;
}
#dxlWapDatePicker .caleShowMain li {
    float: left;
    width: 40px;
    height: 35px;
    text-align: center;
    line-height: 35px;
    position: relative;
    font-size: 16px;
    color: #c0bfbf;
}
#dxlWapDatePicker .caleShowMain li span {
    display: block;
    width: 30px;
    height: 30px;
    margin: 2px auto 0;
    border-radius: 8px;
    -webkit-border-radius: 8px;
}
#dxlWapDatePicker .caleShowMain li span.nowDay {
    background: #ff6e6e;
}
#dxlWapDatePicker .caleShowMain li span:hover,
#dxlWapDatePicker .caleShowMain li span.current {
    background: #fa4848;
}
#dxlWapDatePicker .caleShowMain li i {
    position: absolute;
    top: 0;
    left: 5px;
    width: 30px;
    height: 30px;
    color: #7a7a7a;
}
#dxlWapDatePicker .caleShowMain li i.colorWhite {
    color: #fff;
}
.goodInDown {
    animation: goodInDown .4s;
    -webkit-animation: goodInDown .4s;
}
.goodOutUp {
    animation: goodOutUp .6s;
    -webkit-animation: goodOutUp .6s;
}
/* 日历出现效果 */

@-webkit-keyframes goodInDown {
    from {
        opacity: 0;
        -webkit-transform: translateY(1000px);
        transform: translateY(1000px);
    }
    to {
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }
}
@keyframes goodInDown {
	from{
		opacity: 0;
		-webkit-transform: translateY(1000px);
		transform: translateY(1000px);
	}
	to{
		-webkit-transform: translateY(0);
		transform: translateY(0);
	}
}
@-webkit-keyframes goodOutUp {
    0{
		-webkit-transform: translateY(0);
		transform: translateY(0);
	}
	30%{
		opacity:.8;
		-webkit-transform: translateY(300px);
		transform: translateY(300px);
	}
	60%{
		opacity:.6;
		-webkit-transform: translateY(600px);
		transform: translateY(600px);
	}
	100%{
		opacity:0;
		-webkit-transform: translateY(1000px);
		transform: translateY(1000px);
	}
}
@keyframes goodOutUp {
    0{
		-webkit-transform: translateY(0);
		transform: translateY(0);
	}
	30%{
		opacity:.8;
		-webkit-transform: translateY(300px);
		transform: translateY(300px);
	}
	60%{
		opacity:.6;
		-webkit-transform: translateY(600px);
		transform: translateY(600px);
	}
	100%{
		opacity:0;
		-webkit-transform: translateY(1000px);
		transform: translateY(1000px);
	}
}





