@charset "utf-8";



/*新闻列表 css*/
.list_item_container {
	float: left;
	width: 100%;
	border-top: 0.2rem solid rgb(240, 240, 240);
	background: #ffffff;
}

.list_item_container .list_item_card {
	float: left;
	width: 100%;
}

.list_item_container .list_item_card ul {
	width: 100%;
	list-style-type: none;
	padding: 0;
	margin: 0;
}

.list_item_container .list_item_card ul li {
	float: left;
	width: calc(100% - 0.4rem);
	padding: 0.2rem;
	height: var(--item-img-height);
	border-bottom: 0.001rem solid #e3e3e3;
	position: relative;
	overflow: hidden;
}

.list_item_container .list_item_card ul li:last-child {
	border-bottom: 0.000rem solid transparent;
}

/*列表中的旅游置顶 css*/
.list_item_container .list_item_card .news_pinned {
	float: left;
	height: auto;
}

.news_pinned .pinned_top_card {
	float: left;
	width: 100%;
}

.news_pinned .pinned_top_card .pinned_title {
	font-size: var(--item-font-size);
	font-weight: normal;
	text-align: left;
	display: block;
}

.news_pinned .pinned_top_card .pinned_title a {
	text-decoration: none;
	color: #333333;
	cursor: pointer;
}

.news_pinned .pinned_top_card .pinned_bar {
	float: left;
	width: calc(100% - 0.4rem);
	padding-top: 0.1rem;
	padding-bottom: 0.2rem;
	border-bottom: 0.00rem dashed #eeeeee;
	color: #888888;
	font-size: var(--label-font-size);
}

.news_pinned .pinned_top_card .pinned_bar b {
	padding-right: 0.4rem;
	font-weight: normal;
}

.news_pinned .pinned_photo_card {
	float: left;
	width: 100%;
	height: 4.2rem;
	padding-bottom: 0.1rem;
}

.news_pinned .pinned_photo_card .news_advert_left {
	float: left;
	width: calc(50% - 0.1rem);
	height: 100%;
	margin-left: 0.0rem;
	border-radius: 0.1rem;
	overflow: hidden;
}

.news_pinned .pinned_photo_card .news_advert_left img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	background-size: cover;
	vertical-align: middle;
	-webkit-transition: all 1s;
	-moz-transition: all 1s;
	transition: all 1s;
	cursor: pointer;
}

.news_pinned .pinned_photo_card .news_advert_left img:hover {
	-webkit-transform: scale(1.05);
	-moz-transform: scale(1.05);
	-ms-transform: scale(1.05);
	transform: scale(1.05);
}

.news_pinned .pinned_photo_card .news_advert_right {
	float: right;
	width: calc(50% - 0.1rem);
	height: 100%;
	margin-right: 0.0rem;
	border-radius: 0.1rem;
	overflow: hidden;
}


.news_pinned .pinned_photo_card .advert_right_photo {
	display: block;
	width: 100%;
	height: 2.0rem;
	border-radius: 0.1rem;
	overflow: hidden;
}

.news_pinned .pinned_photo_card .news_advert_right .advert_right_photo img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	background-size: cover;
	vertical-align: middle;
	-webkit-transition: all 1s;
	-moz-transition: all 1s;
	transition: all 1s;
	cursor: pointer;
}

.news_pinned .pinned_photo_card .news_advert_right .advert_right_photo img:hover {
	-webkit-transform: scale(1.05);
	-moz-transform: scale(1.05);
	-ms-transform: scale(1.05);
	transform: scale(1.05);
}

.news_pinned .pinned_photo_card .news_advert_right .advert_line {
	display: block;
	width: 100%;
	height: 0.2rem;
	background: transparent;
}


/*分类为视频css*/

.list_item_container .list_item_card .preview_photo .video {
	position: absolute;
	background: url(./../../img/icon_play.png);
	background-size: 100% 100%;
	left: calc( calc(var(--item-img-width) - var(--video-icon-size) + 0.4rem) / 2);
	top: calc( calc(var(--item-img-height) - var(--video-icon-size) + 0.4rem) / 2);
	z-index: 1;
	width: var(--video-icon-size);
	height: var(--video-icon-size);
	color: #ffffff;
	cursor: pointer;
}


.list_item_container .list_item_card .blank_photo {
	float: left;
	width: var(--item-img-width);
	height: var(--item-img-height);
	display: flex;
	align-items: center;
	justify-content: center;
	background: rgb(240, 240, 240);
}

.list_item_container .list_item_card .blank_photo img {
	width: var(--blank-img-width);
	height: var(--blank-img-height);
	object-fit: cover;
}

.list_item_container .list_item_card .preview_photo {
	float: left;
	width: var(--item-img-width);
	height: var(--item-img-height);
	background: rgb(240, 240, 240);
}

.list_item_container .list_item_card .recommend_photo {
	position: relative;
	overflow: hidden;
}

.list_item_container .list_item_card .recommend_photo::before {
	content: "推荐";
	position: absolute;
	top: -0.12rem;
	left: -0.5rem;
	z-index: 1;
	padding: 0.3rem 0.5rem 0.1rem 0.5rem;
	background-color: rgb(237, 119, 87);
	transform: rotate(-45deg);
	font-size: 0.24rem;
	color: #ffffff;
}


.list_item_container .list_item_card .preview_photo img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.list_item_container .list_item_card .news_info {
	float: left;
	width: calc(100% - var(--item-img-width) - 0.4rem);
	height: var(--item-img-height);
	padding-left: 0.2rem;
	padding-right: 0.2rem;
	font-size: 0.40rem;
}

.list_item_container .list_item_card .news_info .txt {
	height: var(--item-text-height);
    margin-top: calc(calc(var(--item-title-height) - var(--item-text-height)) / 2);
    margin-bottom: calc(calc(var(--item-title-height) - var(--item-text-height)) / 2);
	font-size: var(--item-font-size);
	display: -webkit-box;
    align-items:center;
    justify-content: center;
	/* 将对象作为弹性伸缩盒子模型显示 */
	line-clamp: 2;
	-webkit-line-clamp: 2;
	/* 行数，值可以改，表示展示X行后多余的缩略展示 */
	-webkit-box-orient: vertical;
	/* 设置或检索伸缩盒对象的子元素的排列方式 */
	word-break: break-all;
	text-overflow: ellipsis;
	overflow: hidden;
}

.list_item_container .list_item_card .news_info .date {
	width: 100%;
	height: var(--item-label-height);
	line-height: var(--item-label-height);
	font-size: var(--label-font-size);
	font-weight: normal;
	color: #999;
}

.list_item_container .list_item_card .news_info .date b {
	font-weight: normal;
}

.list_item_container .list_item_card .news_info .date .time {
	padding-left: 0.4rem;
}


/*加载更新资讯 css*/
.list_item_container .list_item_more {
	float: left;
	margin: 0.2rem;
	width: calc(100% - 0.4rem);
	height: 1.0rem;
	line-height: 1.0rem;
	text-align: center;
	font-size: var(--font-size);
	background: rgb(240, 240, 240);
	border-radius: 0.05rem;
	color: #333333;
	cursor: pointer;

	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: center;
	-webkit-box-align: center;
	-webkit-justify-content: center;
	-ms-flex-pack: center;
	justify-content: center;
	-webkit-align-items: center;
	-ms-flex-align: center;
	align-items: center;

}

.list_item_container .list_item_more i {
	display: block;
	width: 0.3rem;
	height: 0.3rem;
	background-repeat: no-repeat;
	background-size: 100%;
}

.list_item_container .list_item_more.more_add i {
	background-image: url(../img/icon_more_black.png);
}


.list_item_container .list_item_more.more_loading i {
	background-image: url(../img/icon_loading.gif);
}

.list_item_container .list_item_more span {
	display: block;
	font-size: var(--font-size);
	text-align: center;
	padding-left: 0.14rem;
	color: #333333;
	line-height: 0.8rem;
}

.list_item_container .list_item_more.more_loading span {
	color: #999999;
}

/*搜索没有结果 css*/
.list_item_container .page_blank_card {
	float: left;
	width: 100%;

}

.page_blank_card .page_blank_content {
	width: calc(100% - 0.4rem);
	display: flex;
	margin: 0 auto;
	padding: 0.2rem;
	text-align: center;
	align-items: center;
	justify-content: center;
	border-bottom: 0.02rem dotted #dddddd;

}

.page_blank_card img {
	float: left;
	width: 1.2rem;
	height: 1.2rem;
}

.page_blank_card .blank_info {
	float: left;
	max-width: calc(100% - 1.4rem);
	text-align: left;
	padding-left: 0.2rem;
	font-size: 0.36rem;
}

.page_blank_card .blank_info span {
	display: block;
	padding-top: 0.1rem;
	padding-bottom: 0.1rem;
	overflow: hidden;
	word-spacing: normal;
}

.page_blank_card .blank_info .s_keyword {
	padding-left: 0.1rem;
	padding-right: 0.1rem;
	color: rgb(237, 119, 87);
}