@charset "utf-8";
/*——————————————————————日期start——————————————————————————————*/
.calendar {
    width: 91%;
    margin: 0 auto;
    overflow: hidden;
    text-align: center;
    background-color: #FFFFFF;
    /* border-radius: 30px; */
}

/*月份的上下翻页*/
.calendar-year {
    color: #333333;
    text-align: center;
    font-size: 18px;
    margin: 0;
    padding-top: 8px;
    margin: 0 13px;
    color: #FF3900;
    /* font-size: 30px; */
}

.calendar-year a {

}

.rowlr {
    display: flex;
    justify-content: center;
}

/*月*/
.calendar-months {
    overflow: hidden;
    position: relative;
    /* height: 35px; */
    margin-left: 15px;
    margin-right: 15px;
    border-bottom: 1px solid #FF3900;
}

.calendar-months ul {
    position: absolute;
    width: 100%;
    overflow-x: auto;
    margin: 0;
    padding: 0;
    font-size: 0;
    display: none;
}

.calendar-months ul li {
    display: inline-block;
    font-size: 16px;
    height: 32px;
    line-height: 32px;
    box-sizing: border-box;
    -moz-box-sizing: border-box;
    ms-box-sizing: border-box;
    width: 14.28571428571429%;
}

.calendar-months ul li:hover, .calendar-months ul li.months-cur {
    color: #2f87c1;
}

.calendar-btn {
    text-decoration: none;
    font-size: 22px;
    color: #FF3900;
}

.calendar-btn:hover {
    color: #2f87c1
}

.calendar-btn-l {
    margin-left: -10px;
    padding: 5px 3px 5px 10px;
}

.calendar-btn-r {
    margin-right: -10px;
    padding: 5px 10px 5px 0px;
}

/*日期中的天*/
.calendar-day {
    overflow: hidden
}

/*星期一到日*/
.week {
    text-align: left;
    display: inline-table;
    margin: 0;
    padding: 0;
    list-style: none;
    font-size: 0;
    overflow: hidden;
    width: 100%;
    box-sizing: border-box;
    -moz-box-sizing: border-box;
    ms-box-sizing: border-box;
    color: #FF3900;
}

.week li {
    margin-left: -1px;
    font-size: 16px;
    height: 100%;
    display: inline-block;
    width: 14.28571428571429%;
    text-align: center;
    color: #333;
    box-sizing: border-box;
    -moz-box-sizing: border-box;
    ms-box-sizing: border-box;
}

.week li:nth-child(7n) {
}

/*加边框*/
/* .week-b {
	border: 1px solid #bcbcbc;
}
.week-b li {
	border-left: 1px solid #bcbcbc;
} */
.week-hd {
    height: 35px;
    line-height: 35px;
}

.week-hd li:first-of-type,
.week-hd li:last-of-type,
.week-day li:first-of-type,
.week-day li:last-of-type {

}

/*每一天的样式*/
.week-day {
    border-bottom: 0;
}

.week-day li {
    height: 40px;
    padding: 5px 0;
    vertical-align: middle;
}

.week-day li p {
    margin: 0;
    padding-top: 5px;
    font-size: 14px;
}

.week-day li.duty-full p { /*自己的值班日*/
    cursor: pointer;
    color: red;
}

.week-day li.duty-cur span { /*当前值班日*/
    background-image: url('<%=websiteUrl %>/project/pc/images/btn.png');
    background-repeat: no-repeat;
    background-size: 25px 0;
    background: -webkit-gradient(radial, 25 25, 0, 25 25, 25, from(#FD8C59), to(#E55344));
    border-radius: 50%;
    padding: 3px;
    display: inline-block;
    width: 25px;
    color: #fff;
    cursor: pointer;
}

.week-day-b li {
    /* border-bottom: 1px solid #bcbcbc; */
}

.title-full {
    display: none;
    border-top: 1px solid #bcbcbc;
    border-bottom: 1px solid #bcbcbc;
    background-color: #fff;
    padding: 10px;
    font-size: 18px;
}

/*——————————————————————日期end——————————————————————————————*/
/*----------------------- 签到css ---------------------------*/
.signpop .signcontent {
    position: fixed;
    top: 50%;
    left: 50%;
    height: auto;
    width: 50%;
    transform: translate(-50%, -50%);
    z-index: 10009;
    overflow: hidden;
    overflow: hidden;
    padding-bottom: 8px;
}

.signpop .signcontent .contentitle {
    /* display: flex;
    justify-content: center; */
    text-align: center;
    position: relative;
}

.signpop .signcontent .contentitle .closerimg {
    position: absolute;
    right: 9px;
    top: 2px;
}

.signpop .signcontent .contitle {
    font-size: 5.5vw;
    text-align: center;
    color: transparent;
    -webkit-text-fill-color: #FFFFFF; /*文字的填充色*/
    -webkit-text-stroke: 2.2px #F58661;
    font-weight: bolder;
    transform: translateX(18px);
}

.signpop .signcontent .bgborder {
    width: 95%;
    border-radius: 15px;
    margin: 0 auto;
    border: 6px solid #FEB779;
}

.signpop .signcontent .calendarbg {
    background-color: #FFFFFF;
    width: 100%;
    border-radius: 9px;
    margin: 0 auto;
    padding-bottom: 1px;
}

.signpop .signcontent .calendarbg .calendarbtn {
    width: 30vw;
    height: 5vh;
    font-size: 19px;
    background-repeat: no-repeat;
    margin: 0 auto;
    color: #FFFFFF;
    margin-bottom: 15px;
    padding: 3px 2px;
    cursor: pointer;
    display: flex;
    justify-content: space-around;
    align-items: center;
    white-space: nowrap;
    background-size: 100% 100%;
    font-size: 1.5vw;
}

.signpop .signcontent .calendarbg .calendarbtn span:first-child {
    margin-left: 3px;
}

.signpop .signcontent .calendarbg .calendarbtn span:last-child {
    /* margin-left: 20px; */
}