@charset "utf-8";
/* CSS Document */
*{font-size:14px;font-family:"微软雅黑" !important;color:#333;}
body,dl,dd,p{margin:0;}
a{text-decoration:none;transition:all .3s ease;}
img{display:block;}
input{margin:0;padding:0;border:none;}
textaea{margin:0;padding:0;outline:none;}
h1,h2,h3{font-weight:normal;margin:0;}
ul{margin:0;padding:0;}
li{list-style:none;}
.clearfix{clear:both;}
a:hover{color:#079c0e;}
[v-cloak]{display:none;}
body{background-image: linear-gradient(#0a4cad, #1e7dcf);}
/* body{background:#f4f8f9;} */

.finance-container{
	max-width: 1200px!important;
	margin: 0 auto;
	position: relative;
}

.calendar_box{
	margin-top:46px;
}

/*头部*/
.calendar_box .calendar_header{
	display:flex;
	justify-content:space-between;
	padding:20px 100px;
}
.calendar_box .header_l, .calendar_box .header_r{
	flex:0 0 30%;
}
.calendar_box .header_l h1{
	font-size:30px;
	color:#fff;
	letter-spacing:5px;
	line-height:48px;
}
.calendar_box .header_l p{
	color:#eee;
	letter-spacing:5px;
}
.calendar_box .header_time, .calendar_box .header_btn{
	display:flex;
	justify-content:space-around;
}
.calendar_box .header_r{
	display:flex;
	justify-content:space-between;
}
.calendar_box .header_time{
	flex:0 0 50%;
}
.calendar_box .header_time li{
	flex:50%;
	font-size:30px;
	font-weight:bold;
	color:#fff;
	display:flex;
    justify-content:center;
    flex-direction:column;
}
.calendar_box .header_time li:first-child{
	border-right:#ccc solid 1px;
	text-align:right;
	padding-right:20px;
}
.calendar_box .header_time li:last-child{
	text-align:left;
	padding-left:20px;
}
.calendar_box .header_btn{
	flex:0 0 40%;
}
.calendar_box .header_btn li{
	display:flex;
    justify-content:center;
    flex-direction:column;
	cursor:pointer;
}
.calendar_box .header_btn li img{
	filter:contrast(50%);
	transition:all .3s ease;
}
.calendar_box .header_btn li:hover img{
	filter:contrast(100%);
}

/*日历*/
.calendar_box .calendar_bg{
	padding:0 100px 50px 100px;
}
.calendar_box .calendar_label{
	margin:10px 0 20px 0;
}
.calendar_box .calendar_label, .calendar_box .calendar_label li{
	display:flex;
}
.calendar_box .calendar_label li{
	color:#fff;
	margin-right:30px;
}
.calendar_box .calendar_label li span{
	width:20px;
	height:20px;
	display:block;
	margin-right:8px;
}
.calendar_box .calendar_label li:first-child span, .calendar_box .calendar_day .calendar_tab .a1{
	background:#69bc82;
}
.calendar_box .calendar_label li:nth-child(2) span, .calendar_box .calendar_day .calendar_tab .a2{
	background:#e73446;
}
.calendar_box .calendar_label li:nth-child(3) span, .calendar_box .calendar_day .calendar_tab .a3{
	background:dodgerblue;
}
.calendar_box .calendar_label li:nth-child(4) span, .calendar_box .calendar_day .calendar_tab .a4{
	background:#ff9900;
}
.calendar_box .calendar_week, .calendar_box .calendar_day{
	display:flex;
	flex-wrap:wrap;
	justify-content:space-between;
	background:#fff;
}
.calendar_box .calendar_week li{
	flex:1;
	font-size:20px;
	font-weight:bold;
	background:#c8c8d2;
	text-align:center;
	line-height:2.5;
	letter-spacing:2px;
}
.calendar_box .calendar_week li:nth-last-child(1), .calendar_box .calendar_week li:nth-last-child(2){
	color:#fff;
	background:#ea3836;
}
.calendar_box .calendar_day .calendar_tab{
	flex:0 0 14.285%;
	height:140px;
	border:#c9c9c9 solid 1px;
	border-top:none;
	border-right:none;
	box-sizing:border-box;
	overflow:scroll;
    overflow-x:hidden;
	overflow-y:auto;
}
.calendar_box .calendar_day .calendar_tab:nth-child(7n+7){
	border-right:#c9c9c9 solid 1px;
}
.calendar_box .calendar_day .calendar_tab h1{
	font-size:24px;
	color:#666;
	padding:5px 10px;
}
.calendar_box .calendar_day .calendar_tab span{
	opacity:0;
}
.calendar_box .calendar_day .calendar_tab .today{
	font-size:30px;
	font-weight:bold;
	color:#ea3836;
	padding:0 10px;
}
.calendar_box .abox{
	display:flex;
	flex-wrap:wrap;
}
.calendar_box .abox a{
	font-size:12px;
	color:#fff;
	margin:2px;
	padding:2px 4px;
	cursor:pointer;
}

.finance-footer{
	display:none;
}

@media(max-width:768px){
	.calendar_box{
		margin-bottom:20px;
	}
	.calendar_box .calendar_header{
		display:inherit;
		padding:0;
	}
	.calendar_box .header_l{
		text-align:center;
	}
	.calendar_box .header_l h1{
		font-size:24px;
		line-height:40px;
	}
	.calendar_box .header_r{
		justify-content:space-around;
		margin:20px 0;
	}
	.calendar_box .header_time{
		flex:0 0 40%;
	}
	.calendar_box .header_time li{
		font-size:20px;
	}
	.calendar_box .header_btn{
		flex:0 0 50%;
	}
	.calendar_box .calendar_bg{
		padding:0 20px;
	}
	.calendar_box .calendar_label{
		justify-content:space-around;
		margin:10px 0;
	}
	.calendar_box .calendar_label li{
		font-size:12px;
		margin-right:0;
	}
	.calendar_box .calendar_label li span{
		width:15px;
		height:15px;
	}
	.calendar_box .calendar_week{
		display:none;
	}
	.calendar_box .calendar_day{
		display:inherit;
	}
	.calendar_box .calendar_day .calendar_tab{
	    height:auto;
		border:none;
	}
	.calendar_box .calendar_day .calendar_tab:nth-child(7n+7){
	    border-right:none;
	}
	.calendar_box .calendar_day li{
		border:#c9c9c9 solid 1px;
		border-top:none;
	    border-right:none;
		box-sizing:border-box;
		padding-bottom:10px;
	}
	.calendar_box .calendar_day li:nth-child(7n+7){
	    border-right:#c9c9c9 solid 1px;
	}
	.calendar_box .calendar_day .calendar_tab span{
		color:#888;
		opacity:1;
		padding-left:10px;
	}
}