/* 新闻详情页的样式 */
.post-content {
    /* color: rgb(42,67,101); */
    letter-spacing: .025em;
    line-height: 1.5;
	padding: 20px 40px;
	font-size: 16px;
}
.post-content h3 {
	margin: 10px 0;
	font-weight: 800;
	font-size: 20px;
}
.post-content h5 {
	margin: 8px 0;
	font-weight: 800;
	font-size: 18px;
}
.post-content img {
   margin: 1em auto;
   width: 1080px;
   max-width: 100%;
}
.post-content p {
	text-indent: 2em;
}
/* 新闻详情页的样式 end */

.mask{
	position: fixed;
	top: 0; bottom: 0;
	width:100vw;
	height: 100vh;
	display: flex;
    align-items: center;
	justify-content: center;
	background-color: rgba(0, 0, 0, 0.3);
	z-index: 100;
	display: none;
}
.mask .show{
	width:900px;
    height:500px;
	border: 0;
	position: relative;
}
.mask .show :focus{
	outline: none;
}
.mask .show :hover{
	outline: none;
}
.mask .show video{
	width: 100%;
	height: 100%;
	z-index: 100;
}

.mask .show .pArea{
	float: left;
	width:calc(100% - 36px - 1em);
	margin-top: 36px;
}

/* contact message */
.ui-message {
	min-width: 380px;
	border-width: 1px;
	border-style: solid;
	border-color: #EBEEf5;
	background-color: #edf2fc;
	transform: translateX(-50%);
	position: fixed;
	left: 50%;
	top: 20px;
	transition: opacity 0.3s, transform 0.4s, top 0.4s;
	padding: 15px 15px 15px 20px;
	display: flex;
	align-items: center;
	border-radius: 4px;
	overflow: hidden;
  }
  
  .ui-message-center {
	justify-content: center;
  }
  
  .ui-message .message-content {
	margin-left: 16px;
	margin: 0;
	padding: 0;
	font-size: 14px;
	line-height: 1;
  }
  
  .ui-message-leave {
	opacity: 0;
	transform: translate(-50%, -100%);
  }
  
  .ui-message-enter {
	opacity: 1;
	transform: translate(-50%, -100%);
  }
  
  .ui-message-info .message-content {
	color: #909399;
  }
  
  .ui-message-success {
	background-color: #f0f9eb;
	border-color: #e1f3d8;
  }
  
  .ui-message-success .message-content {
	color: #67c23c;
  }
  
  .ui-message-warning {
	background-color: #fdf6ec;
	border-color: #faecd8;
  }
  
  .ui-message-warning .message-content {
	color: #e6a23c;
  }
  
  .ui-message-error {
	background-color: #fef0f0;
	border-color: #fde2e2;
  }
  
  .ui-message-error .message-content {
	color: #f56c6c;
  }
  