/* http://meyerweb.com/eric/tools/css/reset/ 
   v2.0 | 20110126
   License: none (public domain)
*/

html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed, 
figure, figcaption, footer, header, hgroup, 
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	font: inherit;
	vertical-align: baseline;
	box-sizing:border-box;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
	display: block;
}
body {
	line-height: 1;
}
ol, ul {
	list-style: none;
}
blockquote, q {
	quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
	content: '';
	content: none;
}
table {
	border-collapse: collapse;
	border-spacing: 0;
}


#background {
	z-index:-1;
	width:100%;
	height:100%;
	position:fixed;
	background:url('../image/bg.jpg') center 0 no-repeat;
	background-size:cover;
}

#content {
	width:100%;
	padding:0 0 15px;
	max-width:1200px;
	margin:0 auto;
	overflow:hidden;
}

#logo {
	width:100%;
	padding:1% 0 0;
}

#logo img {
	border-radius:6px;
	width:100%;
}

#article ._li {
	float:left;
	width:32.66666%;
	box-sizing:border-box;
	margin-top:10px;
}

#article ._li:nth-child(3n+2) {
	margin:10px 1% 0;

}

#article h2.title {
	height:50px;
	line-height:50px;
	background:#0b3173;
	color:#fff;
	font-size:1.2em;
	text-align:center;
	border-radius:6px 6px 0 0;
	border:1px solid #0b6573;
	text-overflow: ellipsis;
	overflow:hidden;
	width:100%;
	display:inline-block;
	white-space:nowrap;
}

#article .rcode {
	color:#ffa500
}

#article .img {
	height:235px;
	background-size:cover;
	background-position:center top;
	background-repeat:no-repeat;	
	border:1px solid #0b6573;
	border-top:0;
	border-bottom:0;
}

#article .link {
	height:50px;
	line-height:50px;
	background:#0b3173;
	border-radius:0 0 6px 6px;
	border:1px solid #0b6573;
}

#article .link a {
	display:block;
	text-align:center;
	color:#fff;
	text-decoration:none;
	font-size:1.2em;
}

#article .link a:hover {
	color:red;
	font-weight:bold;
}

@media screen and (max-width: 1200px) {
	#logo {
		width:100%;
		border-radius:6px;
		padding:1% 1% 0;
	}

	#article h2.title {
		font-size:1em;
	}


	#article ._li {
		float:left;
		width:48%;
		margin:10px 1% 0;
		
	}

}

