@charset "utf-8";

.cq-thread-widget {
	width: 100%;
	box-sizing: border-box;
	margin: 0;
	padding: 12px 16px 4px;
	background: linear-gradient(135deg, #fff5f0, #ffeee5);
	border: 1px solid #ffd7c2;
	border-radius: 10px;
}
.cq-thread-head {
	display: flex;
	align-items: center;
	gap: 6px;
	margin-bottom: 6px;
	font-size: 11px;
	font-weight: 700;
	color: #d9480f;
	letter-spacing: 0.3px;
}
.cq-live-dot {
	width: 6px;
	height: 6px;
	border-radius: 50%;
	background: #ff3b30;
	display: inline-block;
	animation: cq-pulse 1.4s ease-in-out infinite;
	flex-shrink: 0;
}
@keyframes cq-pulse {
	0%   { box-shadow: 0 0 0 0 rgba(255,59,48,0.5); }
	70%  { box-shadow: 0 0 0 5px rgba(255,59,48,0); }
	100% { box-shadow: 0 0 0 0 rgba(255,59,48,0); }
}
.cq-thread-ticker {
	overflow: hidden;
	position: relative;
	width: 100%;
}
.cq-thread-list {
	list-style: none;
	margin: 0;
	padding: 0;
	animation-timing-function: linear;
	animation-iteration-count: infinite;
}
.cq-thread-list li {
	height: var(--cq-line-h);
	line-height: var(--cq-line-h);
	display: flex;
	align-items: center;
	gap: 8px;
	border-bottom: 1px dashed #ffd7c2;
}
.cq-thread-list li:last-child {
	border-bottom: none;
}
.cq-thread-rank {
	flex: 0 0 auto;
	width: 18px;
	height: 18px;
	border-radius: 50%;
	background: #d9480f;
	color: #fff;
	font-size: 10px;
	font-weight: 700;
	display: flex;
	align-items: center;
	justify-content: center;
}
.cq-thread-list li a {
	flex: 1 1 auto;
	min-width: 0;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
	color: #333;
	font-size: 13px;
	text-decoration: none;
}
.cq-thread-list li a:hover {
	color: #d9480f;
	text-decoration: underline;
}
.cq-thread-none {
	padding: 20px 0;
	text-align: center;
	color: #999;
	font-size: 13px;
}

@media (max-width: 480px) {
	.responsive .cq-thread-widget {
		padding: 10px 12px 2px;
		border-radius: 8px;
	}
	.responsive .cq-thread-list li a {
		font-size: 12.5px;
	}
}