#messages{
	position: fixed;
	top: 41px;
	left: 0;
	right: 0;
	bottom: 0;
	background: #F1F3F4;
	z-index: 1;
}
.message-title {
	display: flex;
	height: 50px;
	align-items: center;
	padding: 0 20px;
	background: #fff;
}
.message-title > span:first-of-type{
	font-size: 18px;
	font-weight: bold;
	margin-right: 25px;
}
.message-title > span:last-of-type{
	font-size: 12px;
}
.message-title a {
	color: #0074E8;
}
.message-opers {
	width: 80%;
	min-width: 1000px;
	margin: 0 auto;
	font-size: 12px;
	display: flex;
	padding: 20px 20px 10px;
}
.message-opers-btn {
	height: 30px;
	padding: 0 20px;
	line-height: 30px;
	text-align: center;
	border: 1px solid #ddd;
	background: #fff;
	cursor: pointer;
}
.message-opers-btn:hover{
	background: #F1F3F4;
}
.message-opers > span {
	margin-right: 10px;
}

.message-opers > input{
	border: 1px solid #ddd;
	height: 30px;
	margin-left: auto;
	text-indent: 10px;
	border-right: none;
	background: #fff;
	width: 150px;
}
.message-opers > input:focus{
	border: 1px solid #2196F3;
	border-right: none;
}
.message-opers > input:focus + label{
	border-top: 1px solid #2196F3;
	border-bottom: 1px solid #2196F3;
}
.message-opers > input:focus + label + img{
	border: 1px solid #2196F3;
	border-left: none;
}
.message-search-all {
	border-top: 1px solid #ddd;
	border-bottom: 1px solid #ddd;
	width: 30px;
	height: 30px;
	background: #fff;
	display: flex;
	justify-content: center;
	align-items: center;
}
.message-search-all > span {
	border: 1px solid #aaa;
	border-radius: 50%;
	width: 0px;
	height: 0px;
	background: #aaa;
	color: #fff;
	text-align: center;
	line-height: 12px;
	font-size: 14px;
	cursor: pointer;
	display: none;
}


.message-opers > img {
	width: 20px;
	height: 20px;
	padding: 5px;
	border: 1px solid #ddd;
	border-left: none;
	background: #fff;
	cursor: pointer;
}
.message-opers > img:hover{
	background: #F1F3F4;
}
.message-opers > p:last-of-type{
	border-right: 1px solid #ddd;
}
.message-cont{
	width: 80%;
	min-width: 1000px;
	margin: 0 auto;
	font-size: 12px;
	padding: 0 20px;
}
.message-cont input[type=checkbox]{
	display: none;
}
.message-cont > div {
	border-bottom: 1px solid #ddd;
	border-left: 1px solid #ddd;
	border-right: 1px solid #ddd;
	background: #fff;
	height: 40px;
	display: flex;
	align-items: center;
}
.message-cont > div:hover:not(:first-of-type){
	background: #F1F3F4;
}
.message-cont label {
	width: 14px;
    height: 14px;
    cursor: pointer;
    border: 1px solid #bbb;
    margin: 0 15px 0 10px;
    text-align: center;
    line-height: 14px;
    color: #fff;
}
.message-cont label:after{
	content: "\2714";
}
.message-cont input[type=checkbox]:checked + label {
	background: #2196F3;
	border: 1px solid #2196F3;
}
.message-cont .envelope {
	width: 22px;
	margin-right: 10px;
}
.message-cont .envelope-open {
	width: 20px;
	padding: 1px;
	margin-right: 10px;
}
.message-cont span:first-of-type {
	margin-left: auto;
	width: 200px;
}
.message-cont span:last-of-type {
	width: 300px;
}
.envelope-a {
	color: #006eff;
}
.message-cont a {
	max-width: 410px;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}
.message-cont a:hover{
	text-decoration: underline;
}
.message-bold {
	font-weight: bold;
}
.message-page {
	width: 80%;
	min-width: 1000px;
	margin: 0 auto;
	font-size: 12px;
	padding: 0 20px;
}
.message-page-box {
	background: #fff;
	border-bottom: 1px solid #ddd;
	border-left: 1px solid #ddd;
	border-right: 1px solid #ddd;
	padding: 15px 10px 20px 10px;
	display: flex;
	justify-content: space-between;
}
.message-page-box > p{
	display: flex;
	align-items: center;
}
.message-page-box > p:first-of-type > span {
	padding: 0 5px;
}
.message-page-box > p > select{
	border: none;
	margin: 0 10px;
	cursor: pointer;
}
.message-page-box > p > img {
	width: 10px;
	height: 10px;
	padding: 7px;
	border-left: 1px solid #ddd;
	border-top: 1px solid #ddd;
	border-bottom: 1px solid #ddd;
	cursor: pointer;
}
.message-page-box > p > img:last-of-type{
	border-right: 1px solid #ddd;
}
.message-page-box > p > img:hover{
	background: #f1f3f4;
}
.message-page-box > p > input[type=text]{
	border: 1px solid #ddd;
	height: 24px;
	width: 60px;
	text-align: center;
}
.message-page-box > p > input[type=text]:focus{
	border: 1px solid #2196F3;
}
.message-page-box > p:last-of-type > span {
	border-top: 1px solid #ddd;
	border-bottom: 1px solid #ddd;
	height: 24px;
	line-height: 24px;
	padding: 0 15px;
	background: #f1f3f4;
}
.message-unfocus {
	color: #ccc;
	cursor: not-allowed;
}
.message-unfocus:hover{
	background: #fff;
}


.message-load {
	width: 80%;
	min-width: 1000px;
	margin: 0 auto;
	background: #fff;
}
.message-prompt {
	width: 100%;
	text-align: center;
	line-height: 100px;
}
.message-allowed {
	cursor: not-allowed !important;
}


/* 消息中心单页 */
.me-page{
	position: fixed;
	top: 41px;
	left: 0;
	right: 0;
	bottom: 0;
	background: #F1F3F4;
}
.me-page-title {
	display: flex;
	height: 50px;
	background: #fff;
	padding: 0 20px;
	align-items: center;
	color: #000;
}
.me-page-title-return {
	font-size: 18px;
	color: #1E90FF;
	margin-right: 30px;
}
.me-page-title > p {
	font-size: 16px;
	font-weight: bold;
}
.me-page-title > span {
	font-size: 12px;
	margin-left: 20px;
}
.me-page-title-del {
	border: 1px solid #ddd;
	background: #fff;
	margin-left: auto;
	height: 30px;
	padding: 0 20px;
	cursor: pointer;
	line-height: 30px;
}
.me-page-title > a:hover{
	background: #F1F3F4;
}
.me-page-data {
	position: absolute;
	background: #fff;
	top: 80px;
	left: 30px;
	right: 30px;
	bottom: 30px;
	overflow: auto;
}
.me-page-data-box {
	border: 30px solid #F7F8FA;
	width: 600px;
	background: #fff;
	margin: 30px auto;
}
.me-page-cont {
	border-top: 2px solid #00A4FF;
	box-shadow: rgba(122, 55, 55, 0.2) 0px 1px 1px 0px;
	padding: 30px;
}
.me-page-cont-title{
	font-size: 20px;
	margin-bottom: 30px;
	font-weight: bold;
	color: #000;
}
.me-page-cont-data {
	white-space: pre-wrap;
	word-wrap: break-word;
	line-height: 26px;
	font-size: 14px;
	text-align: justify;
	color: #222;
}
.me-page-cont-foor {
	padding: 40px 0 50px 0;
}
.me-page-cont-foor > p{
	line-height: 26px;
	font-weight: bold;
	color: #000;
}
.me-page-cont-foor > p:first-of-type{
	font-size: 14px;
}
.me-page-cont-foor > p:last-of-type{
	font-size: 16px;
}



/* 消息中心单页 */