.elec-list {
	display: flex;
	flex-wrap: wrap;
	align-items: flex-start;
	justify-content: space-between;
}
.elec-item {
	color: #fff;
	height: 160px;
	padding: 10px 16px 10px 16px;
	box-sizing: border-box;
	margin: 0px 0px 16px 0px;
	flex-shrink: 0;
	position: relative;
	transition: 0.2s;
}
.elec-item:hover {
	filter: brightness(1.1);
}
.elec-item:nth-child(2n),
.elec-item:nth-child(3n) {
	width: calc(35% - 8px);
	background: #E66A25;
}
.elec-item:nth-child(1),
.elec-item:nth-child(4n) {
	width: calc(65% - 8px);
	background: #0066A6;
}
.elec-list.ravn .elec-item {
	width: calc(50% - 8px);
}
.elec-name {
	font-size: 1.6em;
}
.elec-ico {
	position: absolute;
	right: 16px;
	bottom: 16px;
	width: 80px;
}
.elec-item a {
	position: absolute;
	top: 0px;
	left: 0px;
	display: block;
	width: 100%;
	height: 100%;
}
