/*
style.css by ccizm
site:http://ccizm.cn
*/
html {
	background: #e6e9e9;
	background-image: linear-gradient(270deg, rgb(230, 233, 233) 0%, rgb(216, 221, 221) 100%);
	-webkit-font-smoothing: antialiased;
}

body {
	background: #fff;
	box-shadow: 0 0 2px rgba(0, 0, 0, 0.06);
	color: #545454;
	font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
	font-size: 16px;
	line-height: 1.5;
	margin: 0 auto;
	max-width: 800px;
	min-height: 200px;
	height: 100%;
	padding-top: 50px;
}

a:hover,
a:active {
	color: #ADD8E6;
}

a:focus {
	color: #ADD8E6;
	-webkit-box-shadow: 0 0 0 1px #ADD8E6,
		0 0 2px 1px rgba(30, 140, 190, .8);
	box-shadow: 0 0 0 1px #ADD8E6,
		0 0 2px 1px rgba(30, 140, 190, .8);
}

h1, h2, h3, h4, h5, h6 {
	color: #222;
	font-weight: 600;
	line-height: 1.3;
}

h2 {
	margin-top: 1.3em;
}

a {
	color: #0073aa;
	text-decoration: none;
}

b, strong {
	font-weight: 600;
}

samp {
	display: none;
}

blockquote {
	font: 14px/22px normal helvetica, sans-serif;
	margin-top: 5px;
	margin-bottom: 5px;
	margin-left: 25px;
	padding-left: 10px;
	padding-top: 5px;
	padding-bottom: 5px;
	border-left: 4px solid #ddd;
	background-color: #f1f1f1
}

pre {
	font: 14px/22px normal helvetica, sans-serif;
	padding-left: 5px;
	padding-top: 5px;
	padding-right: 5px;
	padding-bottom: 5px;
	background-color: #f1f1f1
	white-space: pre-wrap;
	word-wrap: break-word;
}

  table {
    border: 1px solid #ccc;
    width: 80%;
    margin:0;
    padding:0;
    border-collapse: collapse;
    border-spacing: 0;
    margin: 0 auto;
  }

  table tr {
    border: 1px solid #ddd;
    padding: 5px;
  }

  table th, table td {
    padding: 10px;
    text-align: center;
  }

  table th {
    text-transform: uppercase;
    font-size: 14px;
    letter-spacing: 1px;
  }

  @media screen and (max-width: 600px) {

    table {
      border: 0;
    }

    table thead {
      display: none;
    }

    table tr {
      margin-bottom: 10px;
      display: block;
      border-bottom: 2px solid #ddd;
    }

    table td {
      display: block;
      text-align: right;
      font-size: 13px;
      border-bottom: 1px dotted #ccc;
    }

    table td:last-child {
      border-bottom: 0;
    }

    table td:before {
      content: attr(data-label);
      float: left;
      text-transform: uppercase;
      font-weight: bold;
    }
  }


@keyframes colorize {
	0% {
		-webkit-filter: grayscale(100%);
		filter: grayscale(100%);
	}

	100% {
		-webkit-filter: grayscale(0%);
		filter: grayscale(0%);
	}
}

nav {
	height: 50px;
	background-color: #00868B;
	position: fixed;
	top: 0px;
	width: 100%;
	max-width: 800px;
	box-shadow: 0px 0px 12px #ADD8E6;
}

nav li {
	list-style: none;
	line-height: 1.2em;
	padding: 0;
	margin-right: 1.2em;
	float: left;
}

nav li a {
	text-decoration: none;
	color: #fff;
}

footer {
	height: 25px;
	background-color: #00868B;
	position: fixed;
	bottom: 0px;
	width: 100%;
	max-width: 800px;
	box-shadow: 0px 0px 12px #ADD8E6;
	text-align: center;
	color: #fff;
}

footer a {
	color: #fff;
}

.post {
	padding: 1em 1em 1.5em;
	border-bottom: 1px solid #EEE;
}

.post img {
	max-width: 520px;
	width: 100%;
}

.post-title {
	margin: .80em 0;
	margin-top: 0.5em;
	font-size: 1.4em;
}

.post-meta {
	margin-top: 0.5em;
	padding: 0;
	color: #999;
	font-size: .92857em;
	height: 20px;
}

.post-meta li {
	list-style: none;
	line-height: 1.2em;
	padding: 0;
	margin-right: 0.8em;
	float: left;
}

.post-content, .comment-content {
	line-height: 1.5;
}

::selection {
	background-color: #ddd;
}

::-moz-selection {
	background-color: #ddd;
}

.page-navigator li {
	text-align: center;
	list-style: none;
	line-height: 1.2em;
	float: left;
	padding: 1em 1em 2em;
}

#comments {
	padding: 1.5em 1.5em 2em;
	margin: 15px auto;
}

#comments .page-navigator {
	margin: 1rem 0 0
}

#comments a {
	color: #aaa
}

#comments a:hover {
	color: #00868B
}

.comment-list {
	padding-left: 0;
	list-style-type: none;
	margin: 0
}

.avatar {
	display: block;
	float: left;
	width: 40px;
	height: 40px;
	margin: 1.4rem 1rem 0 0;
	border-radius: 50%
}

.response {
	color: #999;
	font-weight: 400;
	font-size: .9rem
}

.comment-num {
	color: #999;
	font-weight: 400;
	font-size: .9rem
}

.comment-main {
	overflow: hidden;
	padding: 1rem 0;
	border-bottom: 1px #e0e0e0
}

.comment-main p {
	margin: 0
}

.comment-meta,.cancel-comment-reply {
	font-size: .8rem;
	margin-top: 1rem;
	color: #aaa
}

.comment-meta .comment-reply {
	float: right
}

.comment-reply {
	float: right;
	display: none
}

.comment-main:hover .comment-reply {
	display: block
}

.comment-author {
	padding: .1rem .25rem;
	border-radius: .25rem;
	background: #eee;
	font-size: .7rem
}

.comment-author:hover,.comment-author:hover a,.comment-author a:hover {
	color: #00868B !important;
	background: rgba(0,134,139,0.1)
}

.comment-time:before,.comment-reply a:before {
	margin: 0 .5rem
}

.comment-parent>.comment-children {
	margin-left: 1rem;
	padding-left: 40px
}

.form-control {
	width: 98%;
	margin: 15px 0;
	padding: 6px 12px;
	background-color: #fff;
	border: 1px solid #ddd;
}

.form-control,output {
	font-size: 14px;
	line-height: 1.42857;
	color: #555;
	display: block
}

.form-control:focus {
	border-color: #00868B;
	outline: 0
}
