.banner img {
	height: 2.28rem;
}
.banner-title-box {
	display: flex;
	align-items: center;
	justify-content: start;
	position: absolute;
	top: 0.8rem;
	left: 0;
	right: 0;
	height: 1.48rem;
	margin: 0 auto;
}

.banner-title {
	flex: 1;
	display: flex;
	align-items: end;
	max-width: 12rem;
	margin: 0 auto;
	color: #fff;
	font-size: 0.16rem;
}

.banner-title h1 {
	margin-right: 0.2rem;
	font-size: 0.3rem;
	line-height: 1.2;
}

.news-categories-container {
	width: 100%;
	height: 0.7rem;
	background: #fff;
}

.news-categories-list {
	max-width: 12rem;
	height: 100%;
	margin: 0 auto;
	display: flex;
	align-items: center;
	justify-content: space-between;
}

.news-categories-item {
	flex: 1;
	display: flex;
	align-items: center;
	flex-direction: column;
	height: 100%;
	font-size: 0.16rem;
}

.news-categories-item > div {
	position: relative;
	line-height: 0.7rem;
	cursor: pointer;
	transition: color 0.3s;
}

.news-categories-item > div::after {
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	content: '';
	width: 100%;
	height: 0.03rem;
	margin: 0 auto;
	background: transparent;
}

.news-categories-item.active > div::after {
	background: #ae8f62;
}

.news-categories-item.active > div,
.news-categories-item:hover > div {
	color: #bf9c5c;
}

.news-list-container {
	width: 100%;
	padding: 0.2rem;
	background: #f5f5f5;
}

.news-list {
	width: 12rem;
	padding: 0.3rem 0;
	margin: 0 auto;
	background: #fff;
}

.news-list-item {
	display: flex;
	padding-top: 0.2rem;
	margin: 0 0.5rem;
}

.news-list-item-cover {
	width: 2.2rem;
	flex: 0 0 2.2rem;
	height: 1.37rem;
	margin-right: 0.3rem;
}

.news-list-item-content {
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	flex: 1;
	width: 100%;
	font-size: 0.15rem;
	color: #6c6c6c;
	border-bottom: 0.01rem solid #ebedf0;
	padding-bottom: 0.25rem;
	overflow: hidden;
}

.news-list-item-content h3 {
	font-size: 0.22rem;
	color: #333;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}

.news-list-item-content > p {
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
	word-break: break-all;
}

.news-list-item-content-footer {
	margin-top: 0.2rem;
	display: flex;
	justify-content: space-between;
	align-items: center;
	font-size: 0.14rem;
	color: #969696;
}

.news-list-item-content-view-btn {
	color: #2d71e1;
	cursor: pointer;
}

.pagination-container {
	display: flex;
	justify-content: center;
	padding: 0.2rem 0 0.5rem;
	width: 12rem;
	margin: 0 auto;
	background: #fff;
}

.pagination {
	display: flex;
	align-items: center;
}

.pagination span {
	padding: 0.06rem 0.12rem;
	margin: 0 0.04rem;
	font-size: 0.14rem;
	color: #333;
	cursor: pointer;
	transition: color 0.3s;
	user-select: none;
}

.pagination span:hover {
	color: #2d71e1;
}

.pagination span.active:hover {
	color: #fff;
}

.pagination .active {
	background: #2d71e1;
	color: #fff;
	cursor: default;
}

#DETAIL-POPUP {
	display: none;
	position: relative;
	z-index: 11;
}

.popup-mask {
	position: fixed;
	top: 0;
	right: 0;
	left: 0;
	bottom: 0;
	background: rgba(0, 0, 0, 0.7);
	z-index: 5;
}

.detail-popup-container {
	display: flex;
	flex-direction: column;
	position: fixed;
	top: 50%;
	/* bottom: 0; */
	left: 50%;
	/* right: 0; */
	width: 10rem;
	/* height: 9.2rem; */
	min-height: 3rem;
    max-height: 80vh;
	margin: 0 auto;
	background: #fff;
	border-radius: 0.1rem;
	transform: translate(-50%, -50%);
	z-index: 6;
}

.detail-popup-title {
	margin: 0 0.6rem;
	padding-top: 0.2rem;
	padding-bottom: 0.15rem;
	border-bottom: 0.01rem solid #e9e9e9;
}

.detail-popup-title h2 {
	font-size: 0.2rem;
	color: #333;
	word-break: break-all;
	word-wrap: break-word;
}

.detail-popup-title .time {
	font-size: 0.14rem;
	color: #969696;
}

#detail-popup-close {
	position: absolute;
	top: .25rem;
	right: .2rem;
	width: 0.19rem;
	height: 0.19rem;
	background: url(../images/close.png) no-repeat center/cover;
    cursor: pointer;
}

.detail-popup-content {
	padding: 0.2rem 0.6rem;
	font-size: 0.15rem;
	overflow: auto;
	word-break: break-all;
	word-wrap: break-word;
    overflow: auto;
}
