
body{
   overflow-x: hidden;
	margin: 0;
}
.main-wrap {
	position: relative;
	display: flex;
	flex-direction: column;
	width: 100%;
	background-color: #fff;
	background-repeat: no-repeat;
	background-position: 50% 10em;
}

/* Buttons */

.btn {
	margin: 0;
	padding: 0;
	cursor: pointer;
	border: none;
	background: none;
}

.btn:focus {
	outline: none;
}

.btn--search {
	font-size: 1.5em;
}

.btn--hidden {
	pointer-events: none;
	opacity: 0;
}


/* Reset Search Input */

#searchInput {
	border: 0;
	background: transparent;
	border-radius: 0;
	-webkit-appearance: none;
}

#searchInput:focus {
    outline-width:0 !important;
	outline: none !important;
}


/* Links */

.hidden {
	position: absolute;
	overflow: hidden;
	width: 0;
	height: 0;
	pointer-events: none;
}


/* Header */

.codrops-header {
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
	align-items: center;
	width: 100%;
	padding: 2.5em 2.75em 2.5em 1.5em;
	text-align: left;
}

.codrops-header__title {
	font-size: 1em;
	margin: 0;
	padding: 0 0.75em;
}

.codrops-header__side,
.search-wrap {
	margin: 0 0 0 auto;
}


/* Bottom nav */

.bottom-nav {
	position: relative;
	width: 100%;
	margin: auto 0 0 0;
	padding: 2.5em 2.75em 2.5em 2em;
}



/* Top Navigation Style */

.codrops-links {
	position: relative;
	display: flex;
	justify-content: center;
	text-align: center;
	white-space: nowrap;
}

.codrops-links::after {
	content: '';
	position: absolute;
	top: 15%;
	left: 50%;
	width: 2px;
	height: 70%;
	opacity: 0.1;
	background: currentColor;
	transform: rotate3d(0, 0, 1, 22.5deg);
}

.codrops-icon {
	display: inline-block;
	margin: 0.5em;
	padding: 0.5em;
}


@media screen and (max-width: 40em) {
	.codrops-header {
		display: block;
		padding: 4em 1em 0;
		text-align: center;
	}
	.codrops-header__side {
		margin: 0 auto;
	}
	.codrops-links {
		font-size: 0.85em;
		margin: 0 auto;
	}
	.search-wrap {
		font-size: 0.85em;
		position: absolute;
		top: 2.15em;
		right: 2em;
	}
	.bottom-nav {
		padding: 0.5em;
	}
	.codrops-demos {
		text-align: center;
	}
	.codrops-demos a {
		margin-bottom: 1em;
	}
	.codrops-demos span {
		display: block;
		margin: 0 auto 1em;
		text-align: center;
	}
}
.js .main-wrap::after {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	pointer-events: none;
	opacity: 0;
	background: rgba(0,0,0,0.3);
}

/* Layout for search container */
.search {
	padding: 3em;
}

.js .search {
	position: absolute;
	z-index: 1000;
	top: 0;
	left: 100%;
	overflow: hidden;
	width: 100%;
	height: 100vh;
	background: #fff;
}

.js .search::after {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: #fff;
}

.btn--search-close {
	font-size: 2em;
	position: fixed;
	z-index: 1001;
	top: 1.25em;
	right: 1.25em;
}

#searchInput {
	font-family: inherit;
	font-size: 4vw;
	line-height: 1;
	display: inline-block;
	box-sizing: border-box;
	width: 50%;
	padding: 0.05em 0;
	color: #42b983;
	border-bottom:2px solid  #111;
}

#searchInput::-webkit-input-placeholder {
	/* WebKit, Blink, Edge */
	color: #969696;
}

#searchInputt::-moz-placeholder {
	opacity: 1;
	/* Mozilla Firefox 19+ */
	color: #969696;
}

#searchInput:-ms-input-placeholder {
	/* Internet Explorer 10-11 */
	color: #969696;
}

#searchInput::-webkit-search-cancel-button,
#searchInput::-webkit-search-decoration {
	-webkit-appearance: none;
}

#searchInput::-ms-clear {
	display: none;
}

.search__info {
    font-size:20px;
	font-weight: bold;
	display: block;
	width: 50%;
	padding: 0.85em 0;
	color: #000;
}

.search__related {
	display: flex;
	width: 35%;
	padding: 4em 0 0 0;
	pointer-events: none;
}

.search__suggestion h2 {
	font-size: 2.3em;
	margin: 0;
}

.search__suggestion h2::before {
	content: '\21FE';
	display: inline-block;
	padding: 0 0.5em 0 0;
}
@media screen and (min-width:1400px) {
.search__suggestion p {
	font-size: 1.8em;
	line-height: 1.4;
	margin: 0.75em 0 0 0;
	color: #FC8C6A;
	font-weight:300;
	letter-spacing:2px;
}}
@media screen and (max-width:1399px) {
.search__suggestion p {
	font-size: 1.4em;
	line-height: 1.4;
	margin: 0.75em 0 0 0;
	color: #FC8C6A;
	font-weight:300;
	letter-spacing:2px;
}}
/************************/
/* Transitions 			*/
/************************/
.main-wrap--overlay {
	background:rgba(255,255,255,0.8);
}
.js .main-wrap::after {
	transition: opacity 0.3s;
	transition-timing-function: ease-out;
}

.js .main-wrap--overlay::after {
	opacity: 1;
	transition-delay: 0s;
}

.js .search {
	pointer-events: none;
	transition: transform 0.3s;
	transition-delay: 0.4s;
	transition-timing-function: ease-out;
}

.js .search--open {
	pointer-events: auto;
	transform: translate3d(-100%,0,0);
	transition-delay: 0s;
}

.js .search::after {
	transition: transform 0.3s;
	transition-timing-function: ease-out;
}

.js .search--open::after {
	transform: translate3d(100%,0,0);
	transition-delay: 0.4s;
}

.js .btn--search-close {
	transition: opacity 0.1s;
	transition-delay: 0.3s;
}

@media screen and (max-width: 40em) {
	.btn--search-close {
		font-size: 1.25em;
	}
	.search__related {
		font-size: 80%;
		width: 75%;
	}
	#searchInput {
		font-size: 2em;
		width: 90%;
	}
	.search__info {
		width: 90%;
	}
}

.drop-down-menu {
	position: absolute;
	display: none;
}

@media screen and (max-width:1399px) {
	.drop-down-menu {
		left: 231px
	}
}

@media screen and (min-width:1400px) {
	.drop-down-menu {
		left: 288px;
		font-size: 18px!important
	}
}

.drop-down-menu a {
	display: block;
	background: #f8f8f8;
	width: 140px;
	height: 40px;
	text-align:center;
	text-decoration: none;
	line-height: 40px
}

.drop-down-menu a:hover {
	color: #42b983!important
}

.drop-down-menu a:nth-child(2) {
	border-top-left-radius: 3px;
	border-top-right-radius: 3px
}

.drop-down-menu a:last-child {
	border-bottom-left-radius: 3px;
	border-bottom-right-radius: 3px
}

.arrow {
	width: 0;
	height: 0;
	margin-left: 50%;
	border-left: 7px solid transparent;
	border-right: 7px solid transparent;
	border-bottom: 9px solid #f8f8f8
}

svg.icon {
	width: 1em;
	height: 1em;
	vertical-align: -.15em;
	fill: currentColor;
	overflow: hidden
}

@media screen and (max-width:1399px) {
	svg.emoj {
		color:#e96900;
		font-size: 31px
	}
}

@media screen and (min-width:1400px) {
	svg.emoj {
		color: #e96900;
		font-size: 36px
	}
}
@media screen and (max-width:1399px) {
#postsContainer {
	min-height: calc(100vh - 10.7em);
    /* 避免内边距或边框搞乱高度的计算： */
    box-sizing: border-box;

	margin-top: -10px
}}
@media screen and (min-width:1400px) {
   #postsContainer {
	min-height: calc(100vh - 12.5em);
    /* 避免内边距或边框搞乱高度的计算： */
    box-sizing: border-box;

	margin-top: -10px
} 
}    
.grid--effect-castor {
	zoom: .9
}

a {
	text-decoration: none!important;
	outline: 0!important;
	color: #414a51;
    font-family:'Source Sans Pro','Helvetica Neue',Arial,sans-serif;
}

@media screen and (min-width:1400px) {
	#headerAndNav {
		display: block;
		min-height: 100px;
		padding: 10px 25% 0 25%
	}
}

@media screen and (max-width:1399px) {
	#headerAndNav {
		display: block;
		min-height: 77px;
		padding: 10px 21% 0 21%
	}
}

@media screen and (max-width:1399px) {
	#blog-title {
		position: relative;
		font-family: 'Source Sans Pro','Helvetica Neue',Arial,sans-serif;
		font-size: 18px;
		float: left;
		font-weight: 300;
		top: 7px;
		left: 0
	}
}

@media screen and (min-width:1400px) {
	#blog-title {
		position: relative;
		font-family:'Source Sans Pro','Helvetica Neue',Arial,sans-serif;
		font-size: 25px;
		float: left;
		font-weight: 300;
		top: 9px;
		left: -8px
	}
}

@media screen and (max-width:1399px) {
	#blog-title-img {
		position: relative;
		float: left;
		top: -6px;
		left: -13px
	}
}

@media screen and (min-width:1400px) {
	#blog-title-img {
		position: relative;
		float: left;
		left: -23px;
		top: 2px
	}
}

#blog-title-img img {
	display: block;
	cursor: pointer;
	width: 40px;
	height: 40px
}

#blog-name {
	position: relative;
	float: left;
	padding-top: 40px;
	display: block
}

@media screen and (max-width:1399px) {
	nav {
		-webkit-user-select: none;
		-moz-user-select: none;
		-ms-user-select: none;
		user-select: none;
		position: relative;
		float: right;
		left: 30px;
		top: 5px;
		font-size: 15px!important
	}
}

@media screen and (min-width:1400px) {
	nav {
		-webkit-user-select: none;
		-moz-user-select: none;
		-ms-user-select: none;
		user-select: none;
		position: relative;
		float: right;
		left: 15px;
		top: 5px;
		font-size: 19px!important
	}
}

nav a:not(.drop-down) {
	font-family: 'Source Sans Pro','Helvetica Neue',Arial,sans-serif;
	position: relative;
	display: inline-block;
	margin: 10px 10px;
	outline: 0;
	color: #414a51;
	letter-spacing: .5px;
	font-weight: 500;
	text-shadow: 0 0 1px rgba(255,255,255,.3)
}

nav a:not(.drop-down):focus,nav a:not(.drop-down):hover {
	color: #414a51!important
}

.cl-effect-4 a:not(.drop-down) {
	padding: 0 0 5px
}

.cl-effect-4 a:not(.drop-down)::after {
	position: absolute;
	top: 100%;
	left: 0;
	width: 100%;
	height: 1px;
	background: #42b983;
	content: '';
	opacity: 0;
	-webkit-transition: height .3s,opacity .3s,-webkit-transform .3s;
	-moz-transition: height .3s,opacity .3s,-moz-transform .3s;
	transition: height .3s,opacity .3s,transform .3s;
	-webkit-transform: translateY(-5px);
	-moz-transform: translateY(-5px);
	transform: translateY(-5px)
}

.cl-effect-4 a:not(.drop-down):focus::after,.cl-effect-4 a:not(.drop-down):hover::after {
	height: 3px;
	opacity: 1;
	-webkit-transform: translateY(0);
	-moz-transform: translateY(0);
	transform: translateY(0)
}

nav a:not(.drop-down).active {
	color: #42b983!important;
	opacity: .9!important
}

.hamburger {
	outline: 0;
	padding: 10px 15px;
	display: inline-block;
	cursor: pointer;
	transition-property: opacity,filter;
	transition-duration: .15s;
	transition-timing-function: linear;
	font: inherit;
	color: inherit;
	text-transform: none;
	background-color: transparent;
	border: 0;
	margin: 0;
	overflow: visible
}

.hamburger-box {
	width: 18px;
	height: 11px;
	display: inline-block;
	position: relative
}

.hamburger-inner {
	display: block;
	top: 50%;
	margin-top: -2px
}

.hamburger-inner,.hamburger-inner::after,.hamburger-inner::before {
	width: 18px;
	height: 2px;
	background-color: #777;
	border-radius: 2px;
	position: absolute;
	transition-property: transform;
	transition-duration: .15s;
	transition-timing-function: ease
}

.hamburger-inner::after,.hamburger-inner::before {
	content: "";
	display: block
}

.hamburger-inner::before {
	top: -6px
}

.hamburger-inner::after {
	bottom: -6px
}

.hamburger--spin .hamburger-inner {
	transition-duration: .22s;
	transition-timing-function: cubic-bezier(.55,.055,.675,.19)
}

.hamburger--spin .hamburger-inner::before {
	transition: top .1s .25s ease-in,opacity .1s ease-in
}

.hamburger--spin .hamburger-inner::after {
	transition: bottom .1s .25s ease-in,transform .22s cubic-bezier(.55,.055,.675,.19)
}

.hamburger--spin.is-active .hamburger-inner {
	background-color: #42b983;
	transform: rotate(225deg);
	transition-delay: .12s;
	transition-timing-function: cubic-bezier(.215,.61,.355,1)
}

.hamburger--spin.is-active .hamburger-inner::before {
	top: 0;
	opacity: 0;
	transition: top .1s ease-out,opacity .1s .12s ease-out
}

.hamburger--spin.is-active .hamburger-inner::after {
	background-color: #42b983;
	bottom: 0;
	transform: rotate(-90deg);
	transition: bottom .1s ease-out,transform .22s .12s cubic-bezier(.215,.61,.355,1)
}

::-webkit-scrollbar {
	width: 9px
}

::-webkit-scrollbar-track {
	border-radius: 1px
}

::-webkit-scrollbar-thumb {
	border-radius: 1px;
	background: rgba(0,0,0,.1)
}

#posts img {
	max-width: 100%
}

@media screen and (max-width:1399px) {
	#content,.desc {
		font-size: 15px;
		line-height: 24px
	}
}

@media screen and (min-width:1400px) {
	#content,.desc {
		font-size: 17px;
		line-height: 27px;
		font-weight: 300
	}

	.desc a {
		font-size: 18px!important
	}
}

.desc pre * {
	font-size: 16px
}

#content h1,.desc h1 {
	font-size: 30px
}

#content h2,.desc h2 {
	font-size: 24px
}

#content h3,.desc h3 {
	font-size: 18px
}

@media screen and (max-width:1399px) {
	#content h4,.desc h4 {
		font-size: 15px;
		margin: 15px 0 15px -5px
	}
}

@media screen and (min-width:1400px) {
	#content h4,.desc h4 {
		font-size: 18px;
		margin: 10px 0 10px -5px;
		padding: 10px 0 10px 0
	}
}

.pre-next-post {
	display: block
}

.pre-next-post a {
	background: #eee;
	overflow: hidden
}

.pre-next-post .article {
	float: left;
	width: 260px;
	overflow: hidden;
	display: table;
	opacity: 0;
	padding: 0;
	font-size: 18px;
	-webkit-backface-visibility: hidden;
	-webkit-transform: scale(1);
	-webkit-transition: all .3s ease 0s;
	-moz-transition: all .3s ease 0s;
	-o-transition: all .3s ease 0s;
	transition: all .3s ease 0s;
	height: 100%
}

.next-post .article div {
	padding-left: 10px
}

.pre-post .article {
	float: right
}

.pre-next-post .article div {
	display: table-cell;
	vertical-align: middle;
	font-size: 16px
}

.pre-next-post .icon {
	display: table;
	position: absolute;
	top: 0;
	right: 0;
	width: 30px;
	background: #f7f7f9;
	text-align: center;
	height: 100%;
	color: #ccc
}

.pre-next-post .icon i {
	display: table-cell;
	vertical-align: middle;
	font-size: 32px
}

.next-post,.pre-post {
	position: fixed;
	top: 60%;
	width: 30px;
	height: 100px;
	z-index: 3;
}

.pre-post {
	left: 0
}

.next-post {
	right: 0
}

.pre-post .icon {
	left: 0;
	right: auto
}

.pre-next-post a:hover {
	width: 300px;
	-webkit-transition: all .3s ease 0s;
	-moz-transition: all .3s ease 0s;
	-o-transition: all .3s ease 0s;
	transition: all .3s ease 0s
}

.pre-next-post a:hover .article {
	opacity: 1;
	-webkit-transition: all .3s ease .3s;
	-moz-transition: all .3s ease .3s;
	-o-transition: all .3s ease .3s;
	transition: all .3s ease .3s
}

.pre-next-post a:hover .icon {
	color: #000
}

@-webkit-keyframes dropdown {
	0% {
		margin-top: -25px;
		opacity: 0
	}

	90% {
		margin-top: 2px
	}

	100% {
		margin-top: 0;
		opacity: 1
	}
}

@-moz-keyframes dropdown {
	0% {
		margin-top: -25px;
		opacity: 0
	}

	90% {
		margin-top: 2px
	}

	100% {
		margin-top: 0;
		opacity: 1
	}
}

@-ms-keyframes dropdown {
	0% {
		margin-top: -25px;
		opacity: 0
	}

	90% {
		margin-top: 2px
	}

	100% {
		margin-top: 0;
		opacity: 1
	}
}

@keyframes dropdown {
	0% {
		margin-top: -25px;
		opacity: 0
	}

	90% {
		margin-top: 2px
	}

	100% {
		margin-top: 0;
		opacity: 1
	}
}

@-webkit-keyframes pulldown {
	0% {
		top: 0;
		opacity: 0
	}

	90% {
		top: 90%
	}

	100% {
		top: 100%;
		opacity: 1
	}
}

@-moz-keyframes pulldown {
	0% {
		top: 0;
		opacity: 0
	}

	90% {
		top: 90%
	}

	100% {
		top: 100%;
		opacity: 1
	}
}

@-ms-keyframes pulldown {
	0% {
		top: 0;
		opacity: 0
	}

	90% {
		top: 90%
	}

	100% {
		top: 100%;
		opacity: 1
	}
}

@keyframes pulldown {
	0% {
		top: 0;
		opacity: 0
	}

	90% {
		top: 90%
	}

	100% {
		top: 100%;
		opacity: 1
	}
}

.btn,a {
	-webkit-transition: all .2s ease;
	-moz-transition: all .2s ease;
	transition: all .2s ease
}

.btn:focus {
	outline: 0
}

ul.dropdown-menu {
	box-shadow: rgba(0,0,0,.172549) 0 6px 12px 0
}

ul.dropdown-menu {
	display: block;
	visibility: hidden;
	opacity: 0
}

.open ul.dropdown-menu {
	-webkit-animation: pulldown .2s;
	animation: pulldown .2s;
	visibility: visible;
	opacity: 1
}

.created-time .fa {
	color: #666
}
#blogNav {
  display: none;
  background-color: #eee;
  opacity: 0.7;
  position: fixed;
  z-index: 10;
  padding: 3px;
  border-radius: 3px;
}

#blogNavContent {
	overflow-y: auto;
	max-height: 250px;
	-webkit-overflow-scrolling: touch!important
}

#blogNavNav {
	cursor: pointer
}

#blogNav a {
	color: #666
}

#blogNav:hover {
	opacity: .9
}

#blogNav a:hover {
	color: #ce1f29
}

#blogNav ul {
	padding-left: 20px
}

#blogNav ul .nav-h2 {
	margin-left: 20px
}

#blogNav ul .nav-h3 {
	margin-left: 30px
}

#blogNav ul .nav-h4 {
	margin-left: 40px
}

#blogNav ul .nav-h5 {
	margin-left: 50px
}

.mobile-created-time {
	display: none
}

.navbar-brand {
	display: none
}

#themeList label {
	text-align: center;
	margin-bottom: 5px
}

#themeList .preview {
	display: block;
	width: 400px;
	background: #fff;
	border: 1px solid #ccc;
	padding: 5px;
	border-radius: 5px
}

::selection {
	background: #000;
	color: #fff
}

::-moz-selection {
	background: #000;
	color: #fff
}

::-webkit-selection {
	background: #000;
	color: #fff
}

*,body {
	font-family: 'Source Sans Pro','Helvetica Neue',Arial,sans-serif;
}

#headerContainer {
	margin: 0;
	width: 100%
}

@media screen and (max-width:1399px) {
	#posts {
		margin: auto;
		padding: 0 20% 0 20%
	}
}

@media screen and (min-width:1400px) {
	#posts {
		margin: auto;
		padding: 0 23% 0 23%
	}
}

#postsContainer {
	padding-bottom: 5px
}

.nav-search {
	display: inline-block
}

#header {
	color: #000;
	position: relative;
	margin-top: 65px;
	text-align: center
}

#header h1 {
	margin: 0
}

#header h1 a {
	font-size: 48px;
	font-weight: 700;
	color: #000;
	display: block
}

#header h1 .blog-logo {
	height: 90px;
	width: 90px;
	line-height: 90px;
	overflow: hidden;
	border-radius: 50%;
	margin: auto;
	border: 1px solid #eee
}

#header h1 .blog-logo img {
	width: 90px;
	display: inline-block
}

#header h1 a div {
	font-size: 24px;
	margin: 20px 0;
	font-weight: 700
}

#blogDesc {
	margin-top: 10px;
	color: rgba(0,0,0,.35);
	font-size: 1.25em
}

.menu {
	margin-top: 5px;
	font-size: 24px;
	cursor: pointer;
	position: absolute;
	left: 50%;
	margin-left: -15px
}

#nav {
	position: relative;
	background: 0;
	border: 0;
	margin-top: 10px
}

.nav-container {
	visibility: hidden;
	text-align: center
}

.navbar {
	margin-bottom: 0;
	border-radius: 0;
	border: 0;
	min-height: 40px
}

.nav li a:hover {
	background-color: #000!important;
	color: #fff!important
}

.nav li.active a {
	background: #000!important;
	color: #fff!important
}

.navbar-collapse {
	padding-left: 0;
	padding-right: 0
}

.navbar-form {
	padding: 0;
	margin: 0
}

.navbar-nav>li>a {
	padding: 10px 10px
}

.archive-title {
	margin-left: 10px
}

#posts {
	padding-top: 10px
}

#posts .each-post {
	margin-bottom: 20px;
	padding-bottom: 15px;
	border-bottom: 1px solid #ededed;
	position: relative
}

#posts .each-post:after {
	display: block;
	content: "";
	width: 7px;
	height: 7px;
	border: #ddd 1px solid;
	position: absolute;
	bottom: -4px;
	left: 50%;
	margin-left: -5px;
	background: #FFF;
	border-radius: 100%;
	box-shadow: #FFF 0 0 0 5px
}

@media screen and (max-width:1399px) {
	#posts .each-post .title {
		font-size: 17px;
		padding: 0 0 10px 0;
		text-align: left
	}
}

@media screen and (min-width:1400px) {
	#posts .each-post .title {
		font-size: 21px;
		color: #000;
		padding: 0 0 15px 0;
		text-align: left
	}
}

@media screen and (max-width:1399px) {
	#posts .each-post .title a {
		font-size: 17px;
		color: #414a51;
		padding: 0 0 15px 0;
		margin: 10px 0 24px 0
	}
}

@media screen and (min-width:1400px) {
	#posts .each-post .title a {
		font-size: 21px;
		color: #414a51;
		padding: 0 0 15px 0;
		margin: 10px 0 20px 0
	}
}

@media screen and (min-width:1400px) {
	#posts .each-post .created-time {
		padding-bottom: 3px;
		margin-bottom: 15px;
		text-align: left;
		margin-top: 10px;
		font-size: 17px
	}
}

@media screen and (max-width:1399px) {
	#posts .each-post .created-time {
		padding-bottom: 3px;
		margin-bottom: 10px;
		text-align: left;
		margin-top: 6px;
		font-size: 14px
	}
}

@media screen and (max-width:1399px) {
	#posts .each-post .created-time a {
		color: #42b983!important;
		font-size: 15px;
		letter-spacing: 1px
	}
}

@media screen and (min-width:1400px) {
	#posts .each-post .created-time a {
		color: #42b983!important;
		font-size: 16px;
		letter-spacing: 1px
	}
}

#moreContainer {
	text-align: left
}

#disqus_thread {
	border-top: 1px solid #eee;
	padding: 5px 0 0 0
}

@media screen and (max-width:600px) {
	body,html {
		overflow-x: hidden;
		background-color: #fbfcf7
	}
	#headerAndNav {
		display: block;
		min-height: 77px;
		padding: 10px 0;
	}
	#posts {
		padding:10px 10px;
	}
	#blog-title{
		left:20px;
	}
	.drop-down-menu {
		left: 60px;
	}
	nav{
		text-align: center;
		left:0;
	}

	* {
		font-size: 16px
	}

	#footerContainer,#headerContainer {
		background-color: #fbfcf7;
		margin: 10px 0
	}

	#posts .each-post,#postsContainer {
		background-color: #fbfcf7!important
	}

	img {
		max-width: 100%
	}

	#posts .each-post {
		padding: 10px
	}

	#posts .each-post .title {
		font-size: 24px;
		border-left: 5px solid #65bd77;
		font-weight: 700;
		padding: 5px 0;
		padding-left: 10px;
		margin-bottom: 10px
	}

	.container {
		padding-right: 10px;
		padding-left: 10px
	}

	.created-time {
		display: none
	}

	.mobile-created-time {
		display: block
	}

	.mobile-created-time #userLogo {
		display: inline-block;
		max-height: 40px;
		width: 40px;
		border-radius: 50%
	}

	#content {
		margin-top: 10px
	}

	.right-section .btn,.right-section .dropdown {
		display: none!important
	}

	#blogNav {
		left: initial!important;
		right: 10px!important
	}

	#footerContainer .container,#postsContainer .container {
		max-width: 100%
	}

	#postsContainer {
		margin: 0!important;
		max-width: 100%;
		padding-top: 10px;
		background: #f5f5f5 url(images/noise.png)
	}

	#posts {
		max-width: 100%!important
	}

	#footerContainer #footer a {
		padding: 3px
	}

	#footerContainer #footer a:focus,#footerContainer #footer a:hover {
		color: #65bd77
	}

	#headerAndNav {
		position: static;
		text-align: left;
		width: 100%;
		border-bottom: 2px dashed #ebeff2
	}

	#headerAndNav #headerContainer {
		width: 100%;
		height: auto;
		padding-top: 30px
	}

	#headerAndNav #header {
		margin: 0;
		padding: 0
	}

	#headerAndNav #header h1 {
		display: none
	}

	#headerAndNav .navbar-collapse {
		overflow-x: hidden
	}

	#headerAndNav #blogDesc {
		border: 0;
		margin-top: 20px;
		font-size: 24px
	}

	#headerAndNav .navbar-brand {
		display: inline-block;
		line-height: 50px;
		padding: 0;
		padding-left: 10px
	}

	#headerAndNav .navbar-brand img {
		height: 40px
	}

	#headerAndNav .navbar .container {
		width: auto;
		padding: 0 15px
	}

	#headerAndNav .navbar {
		position: fixed;
		top: 0;
		right: 0;
		left: 0;
		background: #fbfcf7;
		z-index: 1000;
		border-bottom: 1px solid #dedddf;
		box-shadow: 0 1px 2px rgba(0,0,0,.04),inset 0 1px 0 #fff;
		background-color: #fdfff5
	}

	#headerAndNav .navbar-nav {
		margin: 0 10px
	}

	#headerAndNav .navbar-nav a {
		padding-left: 10px;
		border-radius: 5px
	}

	#headerAndNav #search {
		width: 100%;
		margin: 10px
	}

	#headerAndNav .navbar-form {
		border: 0
	}

	#myTab,.tab-content {
		padding: 0 10px
	}

	.menu {
		display: none
	}

	.nav-container {
		visibility: visible
	}

	#nav {
		margin: 0
	}

	.nav-search {
		display: block
	}

	.input-group {
		width: 100%
	}

	#searchInput {
		height: 40px
	}
}

table {
	margin-bottom: 16px;
	width: 100%
}

table td,table th {
	padding: 6px 13px;
	border: 1px solid #ddd
}

table th {
	font-weight: 700
}

table tr {
	background-color: none;
	border-top: 1px solid #ccc
}

table tr:nth-child(2n) {
	background-color: #f7f7f9
}

.mce-item-table,.mce-item-table caption,.mce-item-table td,.mce-item-table th {
	border: 1px solid #ddd;
	border-collapse: collapse;
	padding: 6px 13px
}

#content *,.desc * {
	word-wrap: break-word
}

.desc a {
	color: #42b983!important
}

.desc ul li {
	margin: 1px 0;
}

.desc span[data-mce-style*=underline] {
	text-decoration: none!important;
	padding: 12px 24px 12px 30px;
	border-left: 4px solid #f66;
	background-color: #f8f8f8;
	position: relative;
	border-bottom-right-radius: 2px;
	border-top-right-radius: 2px;
	display: block;
	width: 100%!important
}

.desc span[data-mce-style*=underline]:before {
	position: absolute;
	top: 14px;
	left: -12px;
	background-color: #f66;
	color: #fff;
	content: "!";
	width: 20px;
	height: 20px;
	border-radius: 100%;
	text-align: center;
	line-height: 20px;
	font-weight: 700;
	font-family: lucida grande,lucida sans unicode,lucida,helvetica,Hiragino Sans GB,Microsoft YaHei,WenQuanYi Micro Hei,sans-serif;
	font-size: 14px
}

h4 {
	position: relative
}

@media screen and (min-width:1400px) {
	h4 {
		left: 30px
	}
}

@media screen and (max-width:1399px) {
	h4 {
		left: 25px
	}
}

@media screen and (min-width:1400px) {
	h4:before {
		font-family: Monaco,Menlo,Consolas,'Courier New',monospace;
		content: "#";
		color: #42b983;
		position: absolute;
		left: -.8em;
		top: 3px;
		font-size: 1.4em
	}
}

@media screen and (max-width:1399px) {
	h4:before {
		font-family: Monaco,Menlo,Consolas,'Courier New',monospace;
		content: "#";
		color: #42b983;
		position: absolute;
		left: -.8em;
		top: -4px;
		font-size: 1.4em
	}
}

@media screen and (max-width:1399px) {
	#content h4:before {
		font-family: Monaco,Menlo,Consolas,'Courier New',monospace;
		content: "#";
		color: #42b983;
		position: absolute;
		left: -.8em;
		top: -2px;
		font-size: 1.3em
	}
}

@media screen and (min-width:1400px) {
	#content h4:before {
		font-family: Monaco,Menlo,Consolas,'Courier New',monospace;
		content: "#";
		color: #42b983;
		position: absolute;
		left: -.8em;
		top: 3px;
		font-size: 1.4em
	}
}

pre {
	font-size: .8em;
	background-color: rgba(248,248,248,.8);
	font-family: 'Roboto Mono',Monaco,courier,monospace;
	padding: 1.2em 1.4em;
	line-height: 1.5em
}

code {
	color: #e96900;
	white-space: inherit;
	margin: 0 2px;
	padding: 3px 5px;
	border-radius: 2px;
	background-color: rgba(248,248,248,.8);
	font-family: 'Roboto Mono',Monaco,courier,monospace
}

.hidden {
	position: absolute;
	overflow: hidden;
	width: 0;
	height: 0;
	pointer-events: none
}

.message-mobile {
	font-size: .85em;
	display: none;
	width: 100%;
	padding: .5em;
	text-align: center;
	background: #ff3d53
}

.codrops-header {
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
	align-items: center;
	width: 100%;
	padding: 1.5em 1.5em 4em;
	text-align: left
}

.codrops-header__title {
	font-size: 1.15em;
	margin: 0;
	padding: 0 .5em
}

.codrops-header__tagline {
	font-size: .85em;
	width: 100%;
	margin: 0;
	color: #b0adad
}

.codrops-header__tagline::before {
	content: '> '
}

.codrops-links {
	position: relative;
	display: flex;
	justify-content: center;
	text-align: center;
	white-space: nowrap
}

.codrops-links::after {
	content: '';
	position: absolute;
	top: 20%;
	left: 50%;
	width: 1px;
	height: 60%;
	background: #b0adad;
	transform: rotate3d(0,0,1,22.5deg)
}

.codrops-icon {
	display: inline-block;
	margin: .25em 0 .25em .25em;
	padding: .35em 0 .35em .35em
}

.codrops-icon:first-child {
	margin: .25em .25em .25em 0;
	padding: .35em .35em .35em 0
}

.content {
	position: relative;
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	padding: 0 0 1em
}

.content.content--padded {
	padding: 4em 0 8em
}

.grid {
	position: relative;
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
	width: 100%;
	padding: 0 7em;
	perspective: 1000px;
	perspective-origin: 50% 100%
}

.grid__item {
	position: relative;
	display: block;
	flex: none;
	width: 250px;
	margin: 1.5em 2vw;
	cursor: default;
	transform-style: preserve-3d
}

.grid__item:focus,.grid__item:hover {
	outline: 0
}

.grid__item--c1,.grid__item--c1:focus,.grid__item--c1:hover {
	color: #52649e
}

.grid__item--c2,.grid__item--c2:focus,.grid__item--c2:hover {
	color: #ee7074
}

.grid__item--c3,.grid__item--c3:focus,.grid__item--c3:hover {
	color: #f7f295
}

.stack {
	position: relative;
	width: 100%;
	height: 200px;
	transform-style: preserve-3d
}

.stack__deco {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: #42b983!important;
	transform-origin: 50% 100%
}

.stack__deco:first-child {
	opacity: .2
}

.stack__deco:nth-child(2) {
	opacity: .4
}

.stack__deco:nth-child(3) {
	opacity: .6
}

.stack__deco:nth-child(4) {
	opacity: .8
}

.stack__figure {
	position: relative;
	display: flex;
	justify-content: center;
	align-items: center;
	overflow: hidden;
	width: 100%;
	height: 100%;
	cursor: pointer;
	transform-origin: 50% 100%
}

.stack__img {
	position: relative;
	display: block;
	flex: none
}

.grid__item-caption {
	position: relative;
	display: flex;
	flex-wrap: wrap;
	width: 100%;
	transform-style: preserve-3d
}

.grid__item-title {
	font-size: 19px;
	width: 100%;
	margin: 1em 0;
	text-align: left;
	color: #414a51
}

.column {
	width: 50%;
	padding: 0 .5em;
	opacity: 0
}

.column--left {
	text-align: right
}

.column--right {
	text-align: left
}

.column__text {
	font-size: .85em;
	display: block;
	color: #fff
}

.column--left .column__text {
	font-weight: 700
}

.column--right .column__text {
	color: #b0adad
}

.grid--effect-vega .column {
	opacity: 1
}

.grid--effect-castor .stack__deco,.grid--effect-castor .stack__figure {
	transform-origin: 50% 50%
}

.grid--effect-castor .column {
	opacity: 1
}

.grid--effect-hamal {
	perspective: none
}

.grid--effect-hamal .column {
	opacity: 1
}

.grid--effect-polaris {
	perspective-origin: 100% -100%
}

.grid--effect-polaris .column {
	opacity: 1
}

.grid--effect-alphard {
	perspective: none
}

.grid--effect-alphard .column {
	opacity: 1
}

.grid--effect-alphard .stack__deco,.grid--effect-alphard .stack__figure {
	transform-origin: 50% 150%
}

.grid--effect-altair {
	perspective-origin: 50% -50%
}

.grid--effect-altair .column {
	opacity: 1
}

.grid--effect-altair .stack__deco,.grid--effect-altair .stack__figure {
	transform-origin: 50% 100%
}

.grid--effect-rigel {
	perspective-origin: 50% 100%
}

.grid--effect-rigel .column {
	opacity: 1
}

.grid--effect-canopus {
	perspective-origin: 50% 0
}

.grid--effect-canopus .column {
	opacity: 1
}

.grid--effect-canopus .stack__deco,.grid--effect-canopus .stack__figure {
	transform-origin: 50% 100%
}

.grid--effect-pollux {
	perspective: 1000px;
	perspective-origin: 50% -70%
}

.grid--effect-pollux .column {
	opacity: 1
}

.grid--effect-pollux .stack__deco,.grid--effect-pollux .stack__figure {
	transform-origin: 50% 50%
}

.grid--effect-pollux .grid__item-caption>.grid__item-title {
	transform-origin: 50% -200%
}

.grid--effect-deneb {
	perspective: none
}

.grid--effect-deneb .stack__deco,.grid--effect-deneb .stack__figure {
	transform-origin: 50% 50%
}

.grid--effect-deneb .grid__item-caption>.column {
	transform-origin: 50% -200%
}

.content.content--related {
	font-weight: 700;
	justify-content: center;
	min-height: 0;
	padding-bottom: 10em;
	text-align: center;
	background: #5d5d66
}

.content--related a {
	color: #b0adad
}

.content--related a:focus,.content--related a:hover {
	color: #fff
}

.content--related p:first-child {
	padding: 6em 0 2em
}

.content--related p {
	width: 100%;
	color: #37373e
}

.media-item {
	font-size: .85em;
	display: inline-block;
	padding: 1em 2vw;
	vertical-align: top;
	transition: color .3s
}

.media-item__img {
	max-width: 100%;
	opacity: .6;
	transition: opacity .3s
}

.media-item:focus .media-item__img,.media-item:hover .media-item__img {
	opacity: 1
}

.media-item__title {
	font-size: 1em;
	margin: 0;
	padding: .5em
}

@media screen and (min-width:1400px) {
	#moreContainer {
		margin: 30px 0 15px 0
	}
}

@media screen and (min-width:1400px) {
	#moreContainer .more {
		text-transform: capitalize!important;
		font-size: 18px;
		color: #42b983!important;
		position: relative;
		display: inline-block
	}
}

@media screen and (max-width:1399px) {
	#moreContainer {
		margin: 20px 0 10px 0
	}

	#moreContainer .more {
		text-transform: capitalize!important;
		font-size: 15px;
		color: #42b983!important;
		position: relative;
		display: inline-block
	}
}

@media screen and (min-width:1400px) {
	#moreContainer a::after,#moreContainer a::before {
		position: absolute;
		top: 50%;
		left: 50%;
		width: 60px;
		height: 60px;
		border: 2px solid rgba(0,0,0,.1);
		border-radius: 50%;
		content: '';
		opacity: 0;
		-webkit-transition: -webkit-transform .3s,opacity .3s;
		-moz-transition: -moz-transform .3s,opacity .3s;
		transition: transform .3s,opacity .3s;
		-webkit-transform: translateX(-50%) translateY(-50%) scale(.2);
		-moz-transform: translateX(-50%) translateY(-50%) scale(.2);
		transform: translateX(-50%) translateY(-50%) scale(.2)
	}

	#moreContainer a::after {
		width: 50px;
		height: 50px;
		border-width: 5px;
		-webkit-transform: translateX(-50%) translateY(-50%) scale(.8);
		-moz-transform: translateX(-50%) translateY(-50%) scale(.8);
		transform: translateX(-50%) translateY(-50%) scale(.8)
	}
}

@media screen and (max-width:1399px) {
	#moreContainer a::after,#moreContainer a::before {
		position: absolute;
		top: 50%;
		left: 50%;
		width: 50px;
		height: 50px;
		border: 2px solid rgba(0,0,0,.1);
		border-radius: 50%;
		content: '';
		opacity: 0;
		-webkit-transition: -webkit-transform .3s,opacity .3s;
		-moz-transition: -moz-transform .3s,opacity .3s;
		transition: transform .3s,opacity .3s;
		-webkit-transform: translateX(-50%) translateY(-50%) scale(.2);
		-moz-transform: translateX(-50%) translateY(-50%) scale(.2);
		transform: translateX(-50%) translateY(-50%) scale(.2)
	}

	#moreContainer a::after {
		width: 40px;
		height: 40px;
		border-width: 5px;
		-webkit-transform: translateX(-50%) translateY(-50%) scale(.8);
		-moz-transform: translateX(-50%) translateY(-50%) scale(.8);
		transform: translateX(-50%) translateY(-50%) scale(.8)
	}
}

#moreContainer a:focus::after,#moreContainer a:focus::before,#moreContainer a:hover::after,#moreContainer a:hover::before {
	opacity: 1;
	-webkit-transform: translateX(-50%) translateY(-50%) scale(1);
	-moz-transform: translateX(-50%) translateY(-50%) scale(1);
	transform: translateX(-50%) translateY(-50%) scale(1)
}

#abstract-title a {
	display: inline-block;
	vertical-align: middle;
	transform: translateZ(0);
	backface-visibility: hidden;
	box-shadow: 0 0 1px transparent;
	position: relative;
	overflow: hidden
}

#abstract-title a:before {
	content: '';
	position: absolute;
	z-index: -1;
	height: 2px;
	bottom: 9px;
	left: 50%;
	right: 50%;
	background: #42b983!important;
	opacity: .7;
	transition-duration: .2s;
	transition-property: right,left;
	transition-timing-function: ease-out
}

#abstract-title {
	margin-bottom: -40px;
	margin-top: -10px
}


#abstract-title a:hover:before {
	right: 0;
	left: 0
}

.comment-body a:not(.op-link):not(.cancel-link),.needLogin a {
	color: #42b983!important
}

.comment-body a.op-link {
	color: #9d9e9f!important
}

.comment-body a.cancel-link {
	color: #e96900!important
}

.entry-controls {
	position: relative
}

.entry-controls .voters {
	position: relative;
	float: left
}

.grids {
	display: -webkit-flex;
	display: flex;
	-webkit-flex-wrap: wrap;
	flex-wrap: wrap;
	-webkit-justify-content: space-between;
	justify-content: space-between;
	padding: 0;
	list-style: none;
	margin: 8px 0 19px 0;
	position: relative;
	float: left
}

@media screen and (min-width:1400px) {
	span.siguoyi {
		font-family: 'Source Sans Pro','Helvetica Neue',Arial,sans-serif;
		font-size: 18px;
		position: relative;
		float: left;
		width: 100%;
		text-align: left;
		display: block;
		margin-bottom: 5px;
		opacity: .8
	}
}

@media screen and (max-width:1399px) {
	span.siguoyi {
		font-family: 'Source Sans Pro','Helvetica Neue',Arial,sans-serif;
		font-size: 15px;
		position: relative;
		float: left;
		width: 100%;
		text-align: left;
		display: block;
		margin-bottom: 5px;
		opacity: .8
	}
}

.content--related {
	font-weight: 700;
	padding: 8em 1em;
	margin: 15em 0 0;
	text-align: center;
	background: #26252a;
	color: #f0f0f0
}

.media-item {
	display: inline-block;
	padding: 1em;
	vertical-align: top;
	-webkit-transition: color .3s;
	transition: color .3s
}

.media-item__img {
	max-width: 100%;
	opacity: .3;
	-webkit-transition: opacity .3s;
	transition: opacity .3s
}

.media-item:focus .media-item__img,.media-item:hover .media-item__img {
	opacity: 1
}

.media-item:focus,.media-item:hover {
	color: #988ade
}

.media-item__title {
	font-size: 1em;
	margin: 0;
	padding: .5em
}

.github-corner svg {
	fill: #988ade;
	color: #fff;
	position: absolute;
	top: 0;
	border: 0;
	right: 0
}

.github-corner:hover .octo-arm {
	animation: octocat-wave 560ms ease-in-out
}

@keyframes octocat-wave {
	0%,100% {
		transform: rotate(0)
	}

	20%,60% {
		transform: rotate(-25deg)
	}

	40%,80% {
		transform: rotate(10deg)
	}
}

@media(max-width:40em) {
	.github-corner:hover .octo-arm {
		animation: none
	}

	.github-corner .octo-arm {
		animation: octocat-wave 560ms ease-in-out
	}
}

.icobutton {
	font-size: 21px;
	position: relative;
	margin: 0;
	padding: 0;
	color: #c0c1c3;
	border: 0;
	background: 0;
	overflow: visible;
	-webkit-tap-highlight-color: transparent
}

.icobutton .fa {
	display: block;
	padding: 0 .1em
}

.icobutton__text {
	font-size: .75em;
	position: absolute;
	top: 100%;
	left: -50%;
	width: 200%;
	text-align: center;
	line-height: 1.5;
	color: #a6a6a6
}

.icobutton__text--side {
	top: 0;
	left: 100%;
	width: 100%;
	width: auto;
	padding: 0 0 0 .25em
}

.icobutton svg {
	left: 0
}

.icobutton:focus,.icobutton:hover {
	outline: 0
}

.icobutton--unicorn svg {
	fill: #c0c1c3
}

button.icobutton.active span {
	color: #F66!important
}

.color-summer {
	color: #42b983!important
}

#footerContainer {
	background-color: rgba(0,0,0,.03)
}

#footer {
	padding-bottom: 10px;
	width: 700px
}

#footerContainer .footer-leanote {
	text-align: center;
	padding: 10px 0;
	font-size: 13px
}

#footerContainer .footer-leanote a {
	font-size: 13px
}

#footerContainer #footer ul {
	list-style: none;
	margin-bottom: 10px;
	padding-left: 20px
}
/*markdown style https://github.com/wecatch/markdown-css/blob/master/themes/simple.css*/
#content {
	color:#3e3e3e;
	font-size: 15px;
}

#content p{
	letter-spacing: 1px !important;
	line-height: 1.7 !important;
	min-height: 1em !important;
	box-sizing: border-box !important;
	word-wrap: break-word !important;
	text-align: justify;
	margin: 20px 0 !important;
}

#content blockquote {
	border-left: 10px solid rgba(128,128,128,0.075);
	background-color: rgba(128,128,128,0.05);
	padding: 13px 15px !important;
	margin: 0px;
}

#content blockquote p {
	color: #898989;
	margin: 0px;
}

#content strong {
	font-weight: normal;
	color: #FD5B03;
}


#content pre {
	background-color: #f8f8f8;
	border-radius: 3px;
	word-wrap: break-word;
	padding: 12px 13px;
	font-size: 13px;
}

#content h1,h2,h3,h4,h5,h6 {
	word-break: break-all !important;
	margin: 20px 0;
	line-height: 1.2;
	text-align: left;
	font-weight: bold;
	padding-left: 15px;
}

#content h1 {
	border-left: 6px solid #71BA51 !important;
	font-size: 20px !important;
}

#content h2 {
	border-left: 4px solid #71BA51 !important;
	font-size: 18px !important;
}

#content h3 {
	border-left: 4px solid #71BA51 !important;
}

#content a {
	color: #4183C4 !important;
	text-decoration: none !important;
}

#content ul, ol {
	padding-left: 30px;
}

#content li {
	line-height: 24px;
}

#content hr {
	height: 4px;
	padding: 0;
	margin: 16px 0;
	background-color: #e7e7e7;
	border: 0 none;
	overflow: hidden;
	box-sizing: content-box;
	border-bottom: 1px solid #ddd;
}

#content pre {
	background: #f2f2f2 !important;
	padding: 12px 13px;
}

#content code {
	color: #a71d5d;
}
