/* ============================================================
   图标核查列表 (icon-check-list)
   ============================================================ */

.icl-list {
	display: flex;
	flex-direction: column;
}

.icl-item {
	border-bottom: 0 solid transparent;
}

.icl-item.icl-has-divider {
	border-bottom-width: 1px;
	border-bottom-color: #E0E0E0;
	border-bottom-style: solid;
}

.icl-item + .icl-item {
	padding-top: 24px;
}

.icl-item {
	padding-bottom: 24px;
}

/* PC: 文本左 + 图标右，一行 */
.icl-row {
	display: flex;
	align-items: center;
	justify-content: space-between;
}

.icl-text {
	color: #222;
	font-size: 18px;
	line-height: 1.4;
}

.icl-icon {
	flex-shrink: 0;
	font-size: 28px;
	line-height: 1;
	color: #4CAF50;
}

.icl-icon svg {
	width: 1em;
	height: 1em;
	fill: currentColor;
}

/* 手机端: 文本一行在上方，图标在下方靠右 */
@media (max-width: 767px) {
	.icl-row {
		flex-direction: column;
		align-items: stretch;
	}

	.icl-text {
		white-space: nowrap;
	}

	.icl-icon {
		align-self: flex-end;
		margin-top: 8px;
	}
}
