* {
	padding: 0;
	margin: 0;
	border: 0;
}
@font-face {
	font-family: 'FZPingXYSK';
	src: url('../font/FZPingXYSK.TTF');
}
@font-face {
	font-family: 'FZZYSK';
	src: url('../font/FZZYSK.TTF');
}
body {
	font-family: 'FZPingXYSK';
}
.layout {
	width: 100%;
	max-width: 768px;
	margin: auto;
	box-sizing: border-box;
}
/**
 * 顶部
 */
.header {
	position: relative;
}
.header img.bg {
	width: 100%;
}
.header img.logo {
	width: 25vw;
    position: absolute;
    top: 3vw;
    left: 50%;
    transform: translateX(-50%);
}
/**
 * 标题
 */
.titleBox {
	width: 95%;
	margin-top: 5vw;
}
.titleBox .bTitle {
	color: #000000;
	font-size: 4.5vw;
	text-align: justify;
	word-break: break-all;
}
.titleBox .bInfo {
	font-size: 3.2vw;
	color: rgba(0,0,0,0.6);
	margin-top: 1.5vw;
}
/**
 * 列表
 */
.listBox {
	border-radius: 13px;
	padding: 3.5vw;
	box-sizing: border-box;
	box-shadow: 0 0px 5px rgba(0,0,0,.1);
	width: 95%;
	margin-top: 4vw;
	margin-bottom: 5vw;
}
.listBox .list {
	box-sizing: border-box;
}
.listBox .list .listItem {
    padding-left: 3vw;
    width: 100%;
    box-sizing: border-box;
    display: block;
    position: relative;
    padding-bottom: 6vw;
}
.listBox .list .listItem:before {
	content: '';
	display: block;
	background-image: url(../img/17.png);
	background-position: center center;
	background-repeat: no-repeat;
	background-size: contain;
	position: absolute;
	top: 2.3vw;
	left: 0;
	transform: translateY(-50%);
	width: 1.3vw;
	height: 1.3vw;
}
.listBox .list .listItem:after {
	content: '';
	display: block;
	width: 97%;
	height: 1px;
	background-color: #E5E5E5;
	position: absolute;
	bottom: 2.5vw;
	left: 3%;
	transform: scaleY(0.5);
}
@media screen and (-webkit-min-device-pixel-ratio: 2), screen and (min-device-pixel-ratio: 2) {
	.listBox .list .listItem:after {
		transform: scaleY(0.3);
	}
}
.listBox .list .listItem p {
	font-size: 4.5vw;
	color: #404040;
	margin-top: 1.8vw;
	overflow: hidden;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	word-break: break-all;
	text-align: justify;
}
.listBox .list .listItem img {
	width: 100%;
	height: 52vw;
	object-fit: cover;
	border-radius: 5px;
	margin-top: 2.5vw;
}
.listBox .list .listItem:last-child::after {
	display: none;
}
.listBox  .loadMore {
	text-align: center;
	font-size: 3.1vw;
	color: rgba(0,0,0,0.6);
	line-height: 10vw;
	cursor: pointer;
}