/* 草稿和文章的目录*/
	.article-lists {
		position: fixed;
	    top: 41px;
	    bottom: 0;
	    left: 0;
	    width: 300px;
	    background: #fff;
	    z-index: 2;
	    border-right: 1px solid #ddd;
	}
/* 草稿和文章的目录切换 */
	.lists-toggle {
		display: flex;
		border-bottom: 1px solid #ddd;
	}
	.lists-toggle > div {
		width: 50%;
		box-sizing: border-box;
		padding: 0 20px;
		display: flex;
		align-items: center;
		justify-content: center;
		font-size: 14px;
		position: relative;
		cursor: pointer;
		user-select: none;
		height: 40px;
	}
	.lists-toggle > div:after{
		content: "";
	    position: absolute;
	    bottom: 0px;
	    width: 60px;
	    left: 50%;
	    margin-left: -30px;
	    height: 3px;
	    background: #1E90FF;
	    opacity: 0;
	    transition: .5s;
	}
	.lists-toggle > div:hover:after{
		opacity: 1;
	}
	.toggle-draft:before{
		content: '';
		position: absolute;
		right: 0;
		top: 50%;
		margin-top: -10px;
		height: 20px;
		border-right: 1px solid #ddd;
	}
	.toggle-draft > span{
	   	font-size: 12px;
		margin-left: auto;
		vertical-align: top;
		color: #ccc;
		font-weight: 100;
	}
	.toggle-default {
		font-weight: bold;
	}
	.toggle-default:after{
	    opacity: 1 !important;
	}
	.create-draft {
		height: 60px;
		font-size: 12px;
		padding: 0 20px;
		line-height: 60px;
		cursor:pointer;
		color: #1E90FF;
	}
	.create-draft:hover{
		background: rgba(30,144,255,.1);
	}
	.create-draft > span {
		font-size: 20px;
		vertical-align: top;
		margin-right: 10px;
	}
	.lists-cont {
		position: absolute;
		top: 100px;
		left: 0;
		right: 0;
		bottom: 0;
		overflow: hidden;
	}
	.article-lists:hover .lists-cont{
		overflow: visible;
	}
	.lists-box {
		position: absolute;
		top: 0;
		left: 0;
		bottom: 0;
		overflow-x: none;
		overflow-y: auto;
		width: 320px;
	}
	.lists-box > ul > li {
		height: 70px;
		padding: 0 20px;
		display: flex;
		justify-content: center;
		flex-direction: column;
		cursor: pointer;
		box-sizing: border-box;
		width: 300px;
	}
	.lists-box > ul > li:hover{
		background: #f1f3f4;
	}
	.lists-box > ul > li:hover > .article-title {
		color: #1E90FF;
	}
	.lists-box > ul > li:hover > .article-oper > span {
		display: inline;
	}
	.lists-box > ul > li > div {
		margin: 3px 0;
	}
	.article-title {
		font-size: 14px;
		white-space: nowrap;
		overflow: hidden;
		text-overflow: ellipsis;
	}
	.article-oper {
		height: 26px;
		line-height: 26px;
	}
	.article-oper > span {
		float: right;
		font-size: 16px;
		display: none;
		font-weight: bold;
		color: #888;
		user-select: none;
	}
	.article-oper > span:hover{
		color: #1E90FF;
	}
	.text-lists {
		display: none;
	}
	.lists-default {
		background: #f1f3f4;
	}
	.article-cont {
		position: fixed;
		top: 41px;
		left: 301px;
		right: 0px;
		bottom: 0px;
		background: #F1F3F4;
	}
	.article-box {
		position: absolute;
		background: #fff;
		border: 1px solid #ddd;
		top: 20px;
		bottom: 70px;
		left: 50%;
		width: 800px;
		margin-left: -401px;
		overflow: hidden;
	}
	.article-box:hover {
		overflow: visible;
	}
	.article-box-after {
		position: absolute;
		top: 0;
		left: 0;
		right: 0;
		bottom: 0;
		z-index: 2;
		background: rgba(255,255,255,.3);
	}
	.article-document {
		position: absolute;
		left: 0;
		top: 0;
		bottom: 0;
		width: 820px;
		overflow-x: hidden;
		overflow-y: auto;
	}
	.article-write {
		width: 800px;
	}
	.write-title {
		margin: 40px;
		position: relative;
	}
	.write-title > textarea {
		height: 100px;
		width: 620px;
		resize: none;
		font-size: 32px;
		font-weight: bold;
		line-height: 50px;
		border: none;
		color: #000;
	}
	.title-count {
		position: absolute;
		width: 100px;
		text-align: center;
		right: 0px;
		bottom: 0px;
		line-height: 40px;
		font-size: 14px;
		color: #ccc;
	}
	.write-lead {
		margin: 0 40px 40px 40px;
		position: relative;
		font-size: 14px;
		height: 160px;
	}
	.write-lead > textarea {
		width: 100%;
		height: 100%;
		box-sizing: border-box;
		resize: none;
		background: #F1F3F4;
		border: none;
		padding: 18px;
		overflow: hidden;
		line-height: 26px;
		color: #000;
	}
	.write-oper {
		height: 40px;
		display: flex;
		align-items: center;
		background: #F1F3F4;
		padding: 0 10px;
		width: 800px;
		box-sizing: border-box;
		position: relative;
	}
	.write-oper-after{
		position: absolute;
		top: 0;
		left: 0;
		right: 0;
		bottom: 0;
		background: rgba(255,255,255,.5);
		z-index: 2;
	}
	.write-icon {
		font-size: 16px;
		margin: 0 5px;
		cursor: pointer;
		user-select: none;
	}
	.write-icon:hover{
		color: #1E90FF;
	}
	.write-icon-separate {
		border-left: 1px solid #ccc;
		height: 20px;
		margin: 0 5px;
	}
	.write-icon-color {
		margin: 0 5px;
		width: 24px;
		height: 20px;
		position: relative;
		cursor: pointer;
		user-select: none;
	}
	.write-icon-color:before{
		content: '';
		position: absolute;
		top: 3px;
		right: 0;
		border-top: 4px solid #888;
		border-left: 4px solid #fff;
		border-right: 4px solid #fff;
		border-bottom: 4px solid #fff;
	}
	.write-icon-color > p {
		position: absolute;
		top: 0;
		left: 0;
		font-size: 14px;
		height: 16px;
		line-height: 15px;
	}
	.write-icon-color-default {
		width: 9px;
		height: 3px;
		background: #555555;
		position: absolute;
		bottom: 1px;
		left: 0;
	}
	.write-icon-color-cont {
		position: absolute;
		top: 20px;
		width: 194px;
		padding: 15px 15px 5px 15px;
		border: 1px solid #ccc;
		box-shadow: 0 0 5px #ccc;
		box-sizing: border-box;
		background: #fff;
		left: -85px;
		display: none;
		z-index: 1000;
	}
	.write-icon-color-cont > p {
		margin-bottom: 10px;
	}
	.write-icon-color-cont-top {
		display: flex;
		align-items: center;
		padding: 2px;
		cursor: pointer;
	}
	.write-icon-color-cont-top:hover{
		background: rgba(30,144,255,.1);
	}
	.write-icon-color-cont-top > span {
		width: 14px;
		height: 14px;
		background: #000000;
		border-radius: 2px;
		margin-right: 5px;
	}
	.write-icon-color-cont-title {
		padding: 2px;
		background: #f1f3f4;
	}
	.write-icon-color-cont-color {
		display: flex;
		padding: 0 2px;
		justify-content: space-between;
	}
	.write-icon-color-cont-color > span {
		width: 14px;
		height: 14px;
		border-radius: 2px;
	}
	.write-icon-color-cont-color > span:hover{
		outline: #D24A35 solid thin;
		outline-offset: 1px;
	}
	.write-icon-title {
		border: 1px solid #ccc;
		height: 26px;
		width: 60px;
		font-size: 14px;
		line-height: 26px;
		padding: 0 10px;
		background: #fff;
		position: relative;
		cursor: pointer;
	}
	.write-icon-title:before{
		position: absolute;
		content: '';
		border: 4px solid;
		border-top-color: #1E90FF;
		border-left-color: #fff;
		border-right-color: #fff;
		border-bottom-color: #fff;
		right: 10px;
		top: 12px;
	}
	.write-icon-title:hover{
		border: 1px solid #1E90FF;
	}
	.write-icon-title-select {
		position: absolute;
		left: -1px;
		top: 27px;
		border: 1px solid #ccc;
		box-shadow: 0 0 5px #ccc;
		display: none;
		z-index: 1000;
		background: #fff;
	}
	.write-icon-title-select > input {
		white-space: nowrap;
		padding: 5px 15px;
	}
	.write-icon-title-select > input:first-of-type{
		padding: 10px 15px;
	}
	.write-icon-title-select > input:hover{
		color: #1E90FF;
		background: #f1f3f4;
	}
	#write {
		margin: 40px;
	    min-height: 500px;
	    line-height: 30px;
	    outline-style:none;
		font-size: 16px;
	    text-align: justify;
	    color: #000;
	}
	#write:empty:before {
		content: attr(placeholder);
		color: #888;
	}
	#write h1 {
		font-size: 32px;
		line-height: 60px;
		font-weight: 400;
	}
	#write h2 {
		font-size: 24px;
		line-height: 40px;
		font-weight: 400;
	}
	#write p {
		font-size: 16px;
		line-height: 30px;
	}
	#write ul li,
	#write ul{
		list-style:disc inside;
	}
	#write ol li,
	#write ol{
		list-style:decimal inside;
	}  
	#write img {
		display: block;
		max-width: 100%;
		margin: 0 auto;
	}
	fieldset {
		border: none;
		border-top: 1px solid #ccc;
	}
	fieldset > legend {
		padding: 0 10px;
		margin: 0 auto;
	}
	.article-crop {
		margin: 40px;
	}
	.crop-title {
		font-size: 16px;
	}
	.crop-img {
		margin: 40px 60px;
		position: relative;
	}
	.crop-img > label {
		width: 300px;
		height: 150px;
		display: flex;
		box-sizing: border-box;
		flex-direction: column;
		justify-content: center;
		align-items: center;
		cursor: pointer;
		user-select: none;
	}
	.crop-img > label > span:first-of-type{
		font-size: 30px;
		margin-bottom: 10px;
	}
	.crop-img > label > span:last-of-type{
		margin-top: 10px;
		font-size: 16px;
	}
	.crop-create {
		color: #888;
		border: 2px dashed #ccc;
		background: #f1f3f4;
	}
	.crop-create:hover{
		border-color: #1E90FF;
	}
	.crop-create:hover > span {
		color: #1E90FF;
	}
	.crop-img > img {
		width: 300px;
		height: 150px;
		display: block;
	}
	.crop-update {
		position: absolute;
		width: 300px;
		height: 150px;
		top: 0;
		left: 0;
		color: #fff;
		box-shadow: 0 0 10px #000 inset;
	}
	.crop-update > span {
		display: none;
	}
	.crop-update:hover{
		background: rgba(0,0,0,.3);
	}
	.crop-update:hover > span {
		display: block;
	}

/* 裁剪图片 */
	#crop-img .back-box{
		width: 600px;
		height: 400px;
	}
	#crop-img .cont {
		border: 1px solid #ccc;
		width: 450px;
		height: 250px;
		background: #f1f3f4;
		margin: 20px auto;
	}
	#crop-img .cont img {
		max-width: 100%;
		max-height: 100%;
	}
	#crop-img .btn {
		height: 60px;
		display: flex;
		justify-content: center;
		align-items: center;
	}
	#crop-img .btn > span {
		width: 70px;
		height: 40px;
		text-align: center;
		line-height: 40px;
		border: 1px solid #ccc;
		border-radius: 2px;
		cursor: pointer;
		user-select: none;
		box-sizing: border-box;
		margin: 0 20px;
	}
	#crop-img .btn > span:first-of-type{
		border: 1px solid #1E90FF;
		background: #1E90FF;
		color: #fff;
	}
	#crop-img .btn > span:last-of-type:hover{
		border: 1px solid #1E90FF;
		background: #fff;
		color: #1E90FF;
	}
	#crop-img .btn > span:first-of-type:hover{
		background: #1F77BE;
		border: 1px solid #1F77BE;
	}
/* 裁剪图片 */
	.article-btn {
		position: absolute;
		left: 0;
		right: 0;
		bottom: 0px;
		background: #fff;
		border: 1px solid #ccc;
	}
	.btn-box {
		width: 802px;
		margin: 0 auto;
		height: 60px;
		display: flex;
		justify-content: flex-end;
		align-items: center;
	}
	.btn-box > div {
		width: 70px;
		height: 40px;
		border: 1px solid #ccc;
		box-sizing: border-box;
		line-height: 40px;
		text-align: center;
		margin-left: 40px;
		font-size: 14px;
		cursor: pointer;
		user-select: none;
		border-radius: 3px;
	}
	.btn-box > div:hover{
		border: 1px solid #1E90FF;
		color: #1E90FF;
	}
	.btn-box > div:last-of-type{
		border: 1px solid #1E90FF;
		background: #1E90FF;
		color: #fff;
	}
	.btn-box > div:last-of-type:hover{
		background: #1D86D9;
	}
/* 打开文章 */
	/* 电脑屏 */
	@media screen and (min-width: 1000px){
		.article-show {
			background: rgba(30,144,255,.3);
			padding: 20px 0;
		}
		.article-show-text {
			padding: 0 150px 200px;
		}
		.article-show-title {
			font-size: 32px;
			font-weight: bold;
			line-height: 2;
			padding: 30px 0;
			color: #000;
		}
		.article-show-lead {
			font-size: 16px;
			background: #f1f3f4;
			margin-bottom: 20px;
			text-align: justify;
			padding: 30px;
			line-height: 30px;
			color: #555;
		}
		.article-show-text-cont {
			font-size: 16px;
			text-align: justify;
			line-height: 30px;
			color: #000000;
		}
		.article-show-text-cont h1 {
			font-size: 32px;
			line-height: 60px;
			font-weight: 400;
		}
		.article-show-text-cont h2 {
			font-size: 24px;
			line-height: 40px;
			font-weight: 400;
		}
		.article-show-text-cont p {
			font-size: 16px;
			line-height: 30px;
		}
		.article-show-text-cont img {
			max-width: 700px;
		}
		.article-show-text-cont ul li,
		.article-show-text-cont ul{
			list-style:disc inside;
		}
		.article-show-text-cont ol li,
		.article-show-text-cont ol{
			list-style:decimal inside;
		}  
		.article-show-text-cont img {
			display: block;
			max-width: 100%;
			margin: 0 auto;
		}
		.bshare-custom {
			position: fixed;
			right: 100px;
			bottom: 100px;
		}
	}
	/* 手机屏 */
	@media screen and (max-width: 1000px){
		.article-show-text {padding: 0 10px 200px;
		}
		.article-show-title {font-size: 20px;font-weight: bold;line-height: 2;padding: 20px 0;color: #000;
		}
		.article-show-lead {font-size: 14px;background: #f1f3f4;margin-bottom: 20px;text-align: justify;padding: 10px 10px;line-height: 2;color: #555;
		}
		.article-show-text-cont {text-align: justify;color: #000000;
		}
		.article-show-text-cont h1 {font-size: 20px;line-height: 2;font-weight: 400;
		}
		.article-show-text-cont h2 {font-size: 18px;line-height: 2;font-weight: 400;
		}
		.article-show-text-cont p {font-size: 14px;line-height: 2;word-break: break-all;
		}
		.article-show-text-cont ul li,
		.article-show-text-cont ul{list-style:disc inside;
		}
		.article-show-text-cont ol li,
		.article-show-text-cont ol{list-style:decimal inside;
		}  
		.article-show-text-cont img {display: block;max-width: 100%;margin: 0 auto;
		}
		.bshare-custom {display: none;
		}
	}
	.article-show-cont {
		max-width: 1000px;
		margin: 0 auto;
		box-shadow: 0 0 2px rgba(0,0,0,0.2);
	    background: #fff;
	}
	.article-show-cont > img {
		width: 100%;
		display: block;
	}
	.article-show-infor {
		height: 60px;
		display: flex;
		flex-wrap: wrap;
		align-items: center;
		padding-bottom: 20px;
	}
	.article-show-infor li {
		padding: 0 15px;
		border-left: 1px solid #ddd;
	}
	.article-show-infor li:first-of-type{
		display: flex;
		align-items: center;
		padding-left: 0;
		border-left: none;
	}
	.article-show-infor li:last-of-type{
		margin-left: auto;
		border-left: none;
	}
	
	.article-show-infor img {
		display: block;
		border-radius: 50%;
		width: 30px;
		height: 30px;
		margin-right: 10px;
	}
	.article-show-infor .del {
		cursor: pointer;
		user-select: none;
	}
	.article-show-infor .del:hover{
		color: #0074E8;
	}
	
	.win-jiaxuejiyin {
		position: fixed;
		left: 0;
		right: 0;
		bottom: 0;
		background: #fff;
		padding: 0 10px;
		box-shadow: 0 -3px 8px #888;
	}
	.win-jiaxuejiyin .box {
		height: 44px;
		padding-bottom: 16px;
		display: flex;
		align-items: center;
		max-width: 1000px;
		margin: 0 auto;
	}
	.win-jiaxuejiyin .box img {
		width: 100px;
		margin-right: 10px;
	}
	.win-jiaxuejiyin .box span {
		font-size: 12px;
		height: 30px;
		line-height: 40px;
	}
	.win-jiaxuejiyin .box a {
		margin: 8px 0 0 auto;
		height: 26px;
		width: 80px;
		text-align: center;
		line-height: 26px;
		font-size: 12px;
		background-color: #418eff;
		background-image: -webkit-linear-gradient(left, #418eff, #4566ff);
		background-image: -o-linear-gradient(left, #418eff, #4566ff);
		background-image: linear-gradient(to right, #418eff, #4566ff);
		color: #fff;
	}


/* 打开文章 */
/* 文章列表 */
	.article-nav {
		margin-bottom: 100px;
	}
	.article-nav .box {
		margin: -10px;
		display: flex;
		flex-wrap: wrap;
	}
	.article-nav .box li {
		box-sizing: border-box;
		width: 285px;
		margin: 10px;
	}
	.article-nav .box li img {
		width: 100%;
		display: block;
		background: #f1f3f4;
	}
	.article-nav .box li .infor {
		padding: 20px;
		background: #f1f3f4;
	}
	.article-nav .box li .infor .title {
		font-size: 18px;
		text-align: justify;
		line-height: 36px;
		min-height: 72px;
		font-weight: bold;
		overflow: hidden;
		display: -webkit-box;
		-webkit-line-clamp: 2;
		-webkit-box-orient: vertical;
	}
	.article-nav .box li .infor .u-t {
		padding: 5px 0;
		font-size: 14px;
	}
	.article-nav .box li .infor .u-t .user {
		color: #0074E8;
		padding-right: 10px;
		border-right: 1px solid #ccc;
		margin-right: 10px;
	}
/* 文章列表 */