#post_content_part.loading:after {
	content: "";
	position: relative;
	display: inline-block;
	width: 100%;
	height: 50px;
	background-color: rgba(143, 189, 106, 0.3);
	background-image: url(../img/loader.gif);
	background-repeat: no-repeat;
	background-position: center;
	background-size: 25px 25px;
}

.content {
	position: relative;
	
	overflow-y: auto;
}
.content.scrolling_touch {
	-webkit-overflow-scrolling: touch;
}

.bg {
	display: inline-block;
	width: 100%;
	height: 100%;
	
	background-image: url(../img/bg/index_mobile.jpg);
	background-position: bottom;
	background-repeat: no-repeat;
	background-size: contain;
	background-size: auto 100%;
	
	opacity: 0.3;
	
	pointer-events: none;
}
.bg {
	position: fixed;
	bottom: 0;
}

.content_list {
	position: relative;
	width: 100%;
	
	padding: 20px 20px;
	border: 10px solid transparent;
}



.news_item {
	display: inline-block;
	display: flex;
	width: 100%;
	min-height: 127px;

	background: #FFFFFF;
	box-shadow: 0 0 10px 0 rgba(0,0,0,0.30);
	border-radius: 10px;
	
	padding: 10px;
	
	margin-bottom: 10px;
	
	user-select: none;
	
	cursor: pointer;
}
.news_item_img {
	flex: 0 0 auto;
	
	display: inline-block;
	width: 102.5px;
	height: 107px;
	
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
	
	margin-right: 10px;
}
.news_item_content {
	
}
.news_item_header {
	font-size: 18px;
	font-size: 20px;
	color: #4A4A4A;
	letter-spacing: 0;
}
.news_item_date {
	font-size: 16px;
	font-size: 18px;
	color: #9B9B9B;
	letter-spacing: 0;
	line-height: 19px;
	line-height: 21px;
	
	margin-top: 1px
}
.news_item_text {
	flex: 1 1 auto;
	
	font-size: 16px;
	font-size: 18px;
	color: #4A4A4A;
	letter-spacing: 0;
	text-align: justify;
	line-height: 21px;
	
	margin-top: 9px
}

/* after login */
.has_login .content {
	/*margin-top: 48px;*/
	height: calc(100% - 60px - 48px);
	/*height: calc(100vh - 60px - 48px);*/
	
	position: fixed;
    top: calc(60px + 48px);
}
.btn_news_type_bar {
	display: none;
}
.has_login .btn_news_type_bar {
	display: flex;
}
.btn_news_type {
	flex: 1 1 50%;
	
	display: flex;
    align-items: center;
    justify-content: center;
	height: 48px;
	
	background: #EA5E6F;
    box-shadow: inset 0 -4px 0 0 rgba(0,0,0,0.50);
    font-size: 22px;
    font-size: 24px;
    color: #FFFFFF;
    letter-spacing: 0;
    text-align: center;
    text-shadow: 0 2px 4px rgba(0,0,0,0.50);
}
.btn_news_type.selected {
	background: #3A3BB2;
	box-shadow: inset 0 4px 0 0 rgba(0,0,0,0.50);
}
.container_page > .btn_news_type_bar {
	position: relative;
    top: 0;
    left: 0;
    /*display: flex;*/
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 48px;
    z-index: 1;
}
/* after login end */