.news-remote-content .bbs-board .title-thumb .title-thumb-img {
	width: 100%;
	height: 200px;
	background-size: cover;
	background-position: center;
	background-color: #ececec;
	background-repeat: no-repeat;
}

@media (min-width: 1200px) {
	.news-remote-content .bbs-board .title-thumb {
		width: auto !important;
	}
	
	.news-remote-content .bbs-board .title-thumb .title-thumb-img {
		width: 180px;
		height: 100px;
	}
	
	.news-remote-content .title-thumb + .title-info {
		padding-top: 0;
		width: calc(100% - 180px) !important;
	}
}

.news-remote-content .title-info p {
	line-height: 1.6 !important;
}

.news-remote-content .title-info .t-cont {
	max-height: 3.2em;
	overflow: hidden;
}

.news-remote-content .title-info .info {
	margin-top: 5px;
}

.news-remote-content .bbs-board .title-info .info span:first-child:before {
	content: none;
}

.news-remote-content .bbs-board .title-info .info span:before {
	padding: 0 10px 0 9px;
}

.news-remote-content .list-loader-wrapper {
	display: flex !important;
	justify-content: center;
	align-items: center;
}

.news-remote-content .list-loader {
	display: inline-block;
	position: relative;
	width: 80px;
	height: 2rem;
}

.news-remote-content .list-loader div {
	position: absolute;
	top: 1rem;
	width: 8px;
	height: 8px;
	border-radius: 50%;
	background-color: #ddd;
	animation-timing-function: cubic-bezier(0, 1, 1, 0);
}

.news-remote-content .list-loader div:nth-child(1) {
	background-color: #173277;
	left: 8px;
	animation: news-remote-content-list-loader1 0.6s infinite;
}

.news-remote-content .list-loader div:nth-child(2) {
	background-color: #4284d9;
	left: 8px;
	animation: news-remote-content-list-loader2 0.6s infinite;
}

.news-remote-content .list-loader div:nth-child(3) {
	background-color: #7a9ef8;
	left: 32px;
	animation: news-remote-content-list-loader2 0.6s infinite;
}

.news-remote-content .list-loader div:nth-child(4) {
	background-color: #a1c5ec;
	left: 56px;
	animation: news-remote-content-list-loader3 0.6s infinite;
}

@keyframes news-remote-content-list-loader1 {
	0% {
		transform: scale(0);
	}
	100% {
		transform: scale(1);
	}
}

@keyframes news-remote-content-list-loader2 {
	0% {
		transform: translate(0, 0);
	}
	100% {
		transform: translate(24px, 0);
	}
}

@keyframes news-remote-content-list-loader3 {
	0% {
		transform: scale(1);
	}
	100% {
		transform: scale(0);
	}
}