/* CSS Document */
body,html{
	font-size: 14px;
	color: #262626;
	/*min-width: 1366px;*/
}
.notice-pop{
	width: 280px;
	box-shadow: 0px 4px 16px 0px rgba(0, 0, 0, 0.18);
	position: absolute;
	background: #fff;
	bottom: 0;
	right: 20px;
	height: 194px;
	z-index: 1000;

}
.dialog-title span{
	font-size: 16px;
}
.pop-content{
	width: 100%;
	box-sizing: border-box;
	padding: 0px 24px 24px 24px;
	height:90px ;
}

.pop-news{
	width: 100%;
	overflow: hidden;
}

.pop-news span{
	display: block;
	width: 20px;
	margin-right: 10px;
}
.c1{
	margin-top: 0px;
}
.pop-news p{
	width: calc(100% - 30px);
	line-height: 24px;
	font-size: 14px;
	cursor: pointer;
}
.pop-news p:hover{
	color: #2170d9;
}
.pop-news label{
	width: calc(100% - 30px);
	line-height: 24px;
	font-size: 14px;
}
.pop-footer{
	width: 100%;
	box-sizing: border-box;
	padding: 0 24px;
	height: 50px;
	line-height: 50px;
	border-top: 1px solid #e6e6e6;
	overflow: hidden;
}
.pop-footer .pop-btn{
	color: #2170d9;
	margin-left: 24px;
	cursor: pointer;
}
.pop-footer .pop-btn:hover{
	color: #1e65c3;
}
.gray{
	color: grey !important;
}


#toggle-button{
	display: none;
}
.button-label{
	position: relative;
	display: inline-block;
	width: 42px;
	height: 23px;
	background-color: #f2f2f2;
	border: 1px solid #f2f2f2;
	border-radius: 30px;
	cursor: pointer;
}
.circle{
	position: absolute;
	top: 0;
	left: 0;
	width: 22px;
	height: 22px;
	border-radius: 50%;
	background-color: #fff;
}
.button-label .text {
	line-height: 30px;
	font-size: 18px;

	/*
    用来阻止页面文字被选中，出现蓝色
    可以将下面两行代码注释掉来查看区别
    */
	-webkit-user-select: none;
	user-select: none;
}
.on {
	color: #fff;
	display: none;
	text-indent: 10px;
}
.off {
	color: #fff;
	display: inline-block;
	text-indent: 53px;
}
.button-label .circle{
	left: 0;
	transition: all 0.3s;/*transition过度，时间为0.3秒*/
}

/*
以下是checked被选中后，紧跟checked标签后面label的样式。
例如：div+p 选择所有紧接着<div>元素之后的<p>元素
*/
#toggle-button:checked + label.button-label .circle{
	left: 19px;
}
#toggle-button:checked + label.button-label .on{
	display: inline-block;
}
#toggle-button:checked + label.button-label .off{
	display: none;
}
#toggle-button:checked + label.button-label{
	background-color: #2170d9 ;
}



input[type=checkbox]+label{
	position: relative;
	display: inline-block;
	width: 48px;
	height: 24px;
	background-color: grey;
	border: none;
	border-radius: 12px;
	overflow: hidden;
}
#toggle-button {
	display: none;
}
#toggle-button:checked + label.button-label .circle {
	left: 23px;
}
.button-label .circle {
	left: 2px;
	transition: all 0.3s;
	box-shadow: 0px 3px 5px 0px rgba(153, 153, 153, 0.15);
}
.circle {
	position: absolute;
	top: 0;
	left: 0;
	width: 23px;
	height: 23px;
	border-radius: 50%;
	background-color: #fff;
}

input[type=checkbox]:checked+label{
	background:none;
}

#messagecon{
	display: -webkit-box;
	overflow: hidden;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 3;
}






