@CHARSET "UTF-8";
.brand .list {
	width: 768px;
	margin: 10px auto;
}
.brand .link {
	display: flex;
	flex-wrap: wrap;
}
.brand .link a {
	display: block;
	width: calc(100%/12);
	background: #93c47d;
	border-left: solid 1px #fff;
	border-bottom: solid 1px #fff;
}
.brand .link a.nolink {
	background: #eee;
}
.brand .link a:last-child {
	width: calc((100%/12)*2);
}
.brand .link a p {
	width: 100%;
	padding: 5px;
	font-weight: bold;
}
.brand .link a.nolink,
.brand .link a:hover {
	box-shadow: none;
}
.brand .link a.nolink p {
	font-weight: 500;
}
.brand .link a.nolink:hover {
	opacity: 1;
	cursor: default;
}
.brand .content {
	margin-top: 20px;
}
.brand .content ul {
	margin-top: 15px;
	display: flex;
	flex-wrap: wrap;
}
.brand .content ul li {
	display: flex;
	align-items: center;
	width: calc(100%/4 - 10px);
	min-height: 50px;
	text-align: left;
	margin: 5px;
	padding: 0.5em;
	font-size: 12px;
	font-weight: 900;
	border-top: solid 6px #274e13;
	border-bottom: solid 2px #dadada;
	background: #f5f5f5;
}
@media only screen and (max-width: 1100px) {
	
}
@media only screen and (max-width: 768px) {
	.brand .list {
		width: 95%;
	}
	.brand .link {
		width: 100%;
		margin: 0 auto;
	}
	.brand .link a {
		width: calc(100%/8);
	}
	.brand .link a:last-child {
		width: calc((100%/8)*2);
	}
	.brand .content ul li {
		width: calc(100%/2 - 10px);
	}
}
@media only screen and (max-width: 428px) {
	.brand .link a {
		width: calc(100%/6);
	}
	.brand .link a:last-child {
		width: calc((100%/6)*2);
	}
	.brand .content ul li {
		font-size: 12px;
	}
}






