/* css reset----------------------------------------------------------------- */
.futu-calendar{
  margin: 0;
  font-family: sans-serif; /* 1 */
  -ms-text-size-adjust: 100%; /* 2 */
  -webkit-text-size-adjust: 100%; /* 2 */
}

html{
    -webkit-tap-highlight-color: transparent;
}

.futu-calendar *{
    box-sizing: content-box!important;;
}

/**
 * 1. Remove gaps in links underline in iOS 8+ and Safari 8+.
 */
.futu-calendar a {
   -webkit-text-decoration-skip: objects; /* 2 */
}

/**
 * Remove the outline on focused links when they are also active or hovered
 * in all browsers (opinionated).
 */
.futu-calendar a,
.futu-calendar a:link,
.futu-calendar a:visited,
.futu-calendar a:hover,
.futu-calendar a:active {
    outline-width: 0;
    text-decoration:none;
}
.wrapper_{
	position:fixed;
	left:0px;
	width:100%;
	z-index:8888;
}
.futu-calendar ul,.futu-calendar div,.futu-calendar ul li{
    padding: 0;
    margin: 0;
}
.futu-calendar ul,.futu-calendar ul li{
    list-style-type: none;
}
.futu-calendar ul{
    display: -moz-box;
    display: -webkit-box;
    display: box;
}

.futu-calendar{
    font-size: 14px;
    font-family: Helvetica, Arial, sans-serif;
}
/* css reset----------------------------------------------------------------- */

/* mask---------------------------------------------------------------------- */
.futu-calendar-mask{
    position: fixed;
   /*  width:100%;
    height:100%; */
    left:0px;
    top:0px;
    right:0px;
    bottom:0px;
    z-index: 1200;
    background-color: rgba(0,0,0,.5);
    display: none;
    z-index:8889;
}
.futu-calendar.maskable{
    position: absolute;
    top: 0px;
    width: 100%;
    /* left: 2%; */
    z-index: 100;
    border-radius: 0.16rem;
    -webkit-border-radius: 0.16rem;
    background-color: rgba(0,0,0,0.8);
    color: #fff;
    overflow: hidden;
    z-index: 99999;
}
/* mask---------------------------------------------------------------------- */

/* 工具条部分---------------------------------------------------------------- */
.futu-calendar .tool-bar{
    /* background-color: #efeff4; */

    height: 0.34rem;
    padding: 0 10px;
}
.tool-bottom{
    height: 0.84rem;
    /* background-color: #efeff4; */
    width: 100%;
}
.futu-calendar .tool-bar a{
    text-decoration: none;
    color: #0a5ecc;
    outline: none;
}
/* .closeCalendar{
    background-image: url(../asserts/close.png);
    width: 0.5rem;
    height: 0.5rem;
    display: block;
    background-size: 100% 100%;
    float: right;
    margin-top: 0.2rem;
} */
/* 工具条部分---------------------------------------------------------------- */

/* 显示年月条---------------------------------------------------------------- */
.futu-calendar .startend-bar{
    display: none;
}
.multiple-select.futu-calendar .startend-bar{
    /* background-color: #efeff4; */
    height: 34px;
    line-height: 34px;
    margin: 0;
    padding: 0;
    text-align: center;
    display: block;
}
.futu-calendar .weekdate ul li,.futu-calendar .regular-date ul li{
    width: 1%;
    -moz-box-flex: 1;
    -webkit-box-flex: 1;
    box-flex: 1;
    text-align: center;
    color: rgba(255,255,255,0.4);
}
.weekdate ul li{
	color: rgba(255,255,255,1)!important;
}
.futu-calendar .time-bar{
    /* background-color: #efeff4; */
    height: 0.84rem;
    line-height: 0.84rem;
    text-align: center;
    margin-bottom: 0.2rem;
}
.futu-calendar .time-bar span{
    display: inline-block;
    height: 100%;
    position: relative;
}
.futu-calendar .time-bar span em{
    display: block;
    width: 20px;
    height: 100%;
    background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAADgAAAAgCAMAAABw3UvaAAAANlBMVEUAAAAMX8zF2fPI2/QKXswpctPN3/UebNDS4vYtddQXZ88RYs4kb9LD2PMxeNTK3fRPjNt7qeT1AjZ1AAAAAXRSTlMAQObYZgAAARdJREFUOMuVVNuyxCAIExAVvLT7/z97Lp3tTruiNi99YAIhDborUlbXRc7JDYAM2SCCkM0LEdhonBhiMudFH9Eq1t8i2U3DUI6kbiF7RjdAZZ87jUnAMu5jOcj2vR9IcBNsDPc9sVxXt+0rdNNZ0C2glotaUi91Qvk4pCeTGii5RaBC297zoJFbBjY4ZiJ7Y5450zP955of8Q4KujLI5yC3xTXg8JQYGMRh83nANFLd6t8HmiHWtPUYFRo8WRMjtHAmkHHd0tPNR7+EGBgvbTQs+aI3caQgtDBPvlIdBDTNeEk7107qS50dYzfVqUyOGQuUZDQcPR8UDUmTByvIICYkPifrafRCo/jC3q/sk1NI+6tfeO03KT/6MQfEZvsDxAAAAABJRU5ErkJggg==");
    background-repeat: no-repeat;
    background-size: 28px 16px;
    position: absolute;
    top: 0px;
}

/* 上一个月按钮 */
.futu-calendar .time-bar span em.emLeft {
    width: 0.8rem;
    height: 0.8rem;
    left: -1rem;
    background-image: url('../images/top.png');
    transform: rotate(-90deg);
    -webkit-transform: rotate(-90deg);
    -moz-transform: rotate(-90deg);
    -ms-transform: rotate(-90deg);
    background-size: 100% 100%;
}
/* 下一个月按钮 */
.futu-calendar .time-bar span em.emRight {
    /* background-position: -14px 50%; */
    width: 0.8rem;
    height: 0.8rem;
    right: -1rem;
    background-image: url('../images/top.png');
    transform: rotate(90deg);
    -webkit-transform: rotate(90deg);
    -moz-transform: rotate(90deg);
    -ms-transform: rotate(90deg);
    background-size: 100% 100%;
}
/* 显示年月条---------------------------------------------------------------- */

/* 日历部分------------------------------------------------------------------ */
/* 星期部分 */
.futu-calendar .weekdate{
    font-size: 14px;
    color: #959baa;
    height: 22px;
    line-height: 22px;
    /* background-color: #efeff4; */
}
.current-date{
    font-weight: 600;
}
.futu-calendar .regular-date{
    /* background-color: white; */
}
.futu-calendar .regular-date ul li{
    height: 30px;
    padding: 6px 0;
    border: none;
}

.futu-calendar .regular-date ul li span{
    display: inline-block;
    vertical-align: top;
    height: 0.6rem;
    width: 0.6rem;
    text-align: center;
    line-height: 0.6rem;
    -moz-border-radius: 50%;
    -webkit-border-radius: 50%;
    border-radius: 30px;
    border: none;
}

/* 当前显示的日历中其他月份的日期 */
.futu-calendar .regular-date li.othermonth{
    /* color: #aab0bf; */
    color: rgba(255,255,255,0.45);
}



/* selecteable */
.futu-calendar .regular-date li.selectable span{
    color: #fff;
/*     background-color: #e7e7ee; */
}

/* 选中的日期 */
.futu-calendar .regular-date li.selected span{
    color: #FFF!important;
    background-color: #da3f3f;
    font-weight: 700;
}
/* 今天 */
.futu-calendar .regular-date li.today span{
    color: #da3f3f;
    font-weight: 700;
/*     background-color:#e7e7ee; */
}
/* 表示是起始点之间的日期 */
.futu-calendar .regular-date li.startenditem span{
    color: #FFF;
    background-color: #03A9F4;
}

/* 表示是起始点 */
.futu-calendar .regular-date li.startendflag span{
    color: #FFF;
    background-color: orange;
}


/* 日历部分------------------------------------------------------------------ */
            .futu-calendar{
                margin: 0 auto;
            }
       .calendarValue{
			    width: 1rem;
			    height: 1rem;
			    background-image: url("../images/calenter.png");
			    background-size: 100% 100%;
			    position:absolute;
				right:0.2rem;
				z-index:99;

}
 #calendarValue{
  				width: 1rem;
			    height: 1rem;
 			    border: none;
			    outline: none;
			    border: 0;
			    background-color: transparent;
			      color: transparent;
 }
.back_t{
	display:none;
    width: 1rem;
    height: 1rem;
    position: fixed;
    right: 0.2rem;
    z-index: 99;
}