#index
{
	display: flex;flex-wrap: wrap;
}
.index_link_box
{
	width: calc(25% - 15px);
	margin-bottom: 15px;
	margin-right: 15px;
	padding-bottom: 15px;
	background-color: #ffffff;
	border-radius: 2px;
	box-shadow: 0px 0px 8px rgba(0, 0, 0, 0.08);
}
.index_link
{
	color: #fff;
	font-size: 14px;
	background-color: var(--color-major);
	padding: 8px 13px;
	margin-bottom:10px;
	letter-spacing: 1px;
	border-radius: 2px 2px 0px 0px;
	position: relative;
	display:flex;
	justify-content:flex-start;
	align-items:center;
}
.index_link::after
{
	content:" ";
	position:absolute;
	left: 14px;
	bottom: -4px;
	width: 0;
	height: 0;
	border-style: solid;
	border-width: 5px 5px 0 5px;
	border-color: #474853 transparent transparent transparent;
}
.index_sublink
{
	display:block;
	padding:10px 15px;
	color:#333;
	font-size:15px;
	font-family: "Font Awesome 5 Free";
	position:relative;
}
.index_link_line_picture
{
	width:16px;
	height:16px;
	background-position:center;
	background-repeat:no-repeat;
	background-size:cover;
	border-radius:100%;
	margin-right:3px;
}