.section{
  color: #333;
  text-align: center;
}


.sec1{
	background-color: #fbfbfb;
}
.sec1 .scroll-box{
	display: flex;
	align-items: stretch;
	justify-content: center;
	flex-direction: row;
	overflow-y: hidden;
	overflow-x: auto;
}
.sec1 a{
	flex-shrink: 0;
	margin-right: 2.75em;
	width: 10.625em;
	padding: 3.5em 0 3em;
	transition: background-color 0.5s;
}
.sec1 a:last-child{
	margin-right: 0;
}
.sec1 a.active{
	background-color: #ededed;
}
.sec1 a .icon-box{
	margin: 0 auto 1.375em;
	border-radius: 0.3125em;
	border: 2px solid rgba(208,24,24,0.2);
	transition: background-color 0.5s,border-color 0.5s;
	width: 3.75em;
}
.sec1 a.active .icon-box{
	background-color: var(--theme-red);
	border-color: var(--theme-red);
}
.sec1 a .icon-box img{
	background-repeat: no-repeat;
	background-size: auto 200%;
	background-position: center top;
}
.sec1 a.active .icon-box img{
	background-position: center bottom;
}
.sec1 a .icon-box .icon1{
	background-image: url(../images/honor_sec1_icon1.png);
}
.sec1 a .icon-box .icon2{
	background-image: url(../images/honor_sec1_icon2.png);
}
.sec1 a .icon-box .icon3{
	background-image: url(../images/honor_sec1_icon3.png);
}
.sec1 a .icon-box .icon4{
	background-image: url(../images/honor_sec1_icon4.png);
}
.sec1 a .icon-box .icon5{
	background-image: url(../images/honor_sec1_icon5.png);
}
.sec1 a p{
	font-size: 1.125em;
}
.sec1 a.active p{
	font-weight: bold;
}



.sec2{
	padding-top: 3.125%;
}
.sec2 .scroll-box{
	display: flex;
	align-items: flex-start;
	justify-content: center;
	flex-direction: row;
	overflow-y: hidden;
	overflow-x: auto;
	padding-top: 2.5em;
	padding-bottom: 0.5em;
}
.sec2 .year-box li{
	flex-shrink: 0;
	position: relative;
	cursor: pointer;
	padding: 0 0.5em;
	margin-right: 10.75em;
}
.sec2 .year-box li:last-child{
	margin-right: 0;
}
.sec2 .year-box li::before{
	content: "";
	width: 10.75em;
	height: 1px;
	background-color: #cacaca;
	position: absolute;
	left: 100%;
	top: 50%;
}
.sec2 .year-box li:last-child::before{
	display: none;
}
.sec2 .year-box p{
	font-size: 1.25em;
	position: absolute;
	left: 50%;
	bottom: 100%;
	margin-bottom: 1em;
	transform: translateX(-50%);
}
.sec2 .year-box li.active p{
	color: var(--theme-red);
	font-weight: 600;
}
.sec2 .year-box .point{
	width: 0.5em;
	height: 0.5em;
	border-radius: 50%;
	background-color: var(--theme-red);
	position: relative;
}
.sec2 .year-box .point .cir{
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	border-radius: 50%;
	background-color: var(--theme-red);
	opacity: 0.5;
}
.sec2 .year-box li.active .point .cir{
	animation: cirani 3s linear infinite;
}
@keyframes cirani{
	0%{
		transform: scale(0);
		opacity: 0.5;
	}
	100%{
		transform: scale(3);
		opacity: 0;
	}
}
.sec2 .year-box li.active .point .cir:nth-child(2){
	animation-delay: 1s;
}
.sec2 .year-box li.active .point .cir:nth-child(3){
	animation-delay: 2s;
}



.sec3{
	padding: 8% 0 9.9%;
}
.sec3 .list-box{
	display: none;
	align-items: flex-start;
	justify-content: flex-start;
	flex-direction: row;
	flex-wrap: wrap;
}
.sec3 .list-box.active{
	display: flex;
}
.sec3 .list-box li{
	width: 20.3125%;
	margin-bottom: 5.625%;
	margin-right: 6.25%;
}
.sec3 .list-box li:nth-child(4n){
	margin-right: 0;
}
.sec3 .list-box img{
	margin-bottom: 1.25em;
}
.sec3 .list-box p{
	line-height: 1.5;
}

@media only screen and (min-width:1024px){
	.sec1 a:hover{
		background-color: #ededed;
	}
	.sec1 a:hover .icon-box{
		background-color: var(--theme-red);
		border-color: var(--theme-red);
	}
	.sec1 a:hover .icon-box img{
		background-position: center bottom;
	}
	.sec1 a:hover p{
		font-weight: bold;
	}
}

@media only screen and (max-width:1024px){
	.sec1 .scroll-box{
		font-size: 0.75em;
		justify-content: flex-start;
		padding: 0 4%;
	}
	.sec1 a{
		margin-right: 0;
		width: 10.625em;
	}


	.sec2{
		padding-top: 10%;
	}
	.sec2 .scroll-box{
		justify-content: flex-start;
		font-size: 0.75em;
		padding-left: 6%;
		padding-right: 6%;
	}


	.sec3{
		padding: 15% 0;
	}
	.sec3 .list-box li{
		width: 48%;
		margin-bottom: 10%;
		margin-right: 4%;
		font-size: 0.75em;
	}
	.sec3 .list-box li:nth-child(even){
		margin-right: 0;
	}

}
