/* + articleInfo1
*----------------------------------------------------------------------------*/
#articleInfo1 {
	overflow: hidden;
	position: relative;
}

#articleInfo1 .topBar {
    position: absolute;
    width: 100%;
    padding: 10px 16px;
    color: #fff;
    font-size: 1.4em;
    line-height: 1.6em;
	background: #03a9f4;
    margin: 0;
    z-index: 10;
	top: 0;
	transition: all 0.3s;
}

#articleInfo1:hover .topBar {
	top: 15px;
}

#articleInfo1 .topBar:after {
    content: "";
    position: absolute;
    left: 0;
    width: 0;
    border: 8px #01579b solid;
    border-bottom-color: transparent;
    border-left-color: transparent;
	bottom: -16px;
}

#articleInfo1 .topBar .box {
	display: inline-block;
	width: 15%;
	text-align: center;
}

#articleInfo1 .topBar .box i {
	font-size: 60px;
}

#articleInfo1 .topBar .box:first-child {
	animation-duration: 2s;
	animation-name: blink;
	animation-iteration-count: infinite;
	animation-direction: alternate;
	animation-timing-function: ease-in-out;
}

@keyframes blink {
	0% {
		color: #f00;
		opacity: 1;
	}
	20% {
		color: #fff;
		opacity: 0;
	}
	40% {
		color: #ff8000;
		opacity: 1;
	}
	60% {
		color: #fff;
		opacity: 0;
	}
	80% {
		color: #ffea00;
		opacity: 1;
	}
	100% {
		color: #fff;
		opacity: 0;
	}
}

#articleInfo1 .topBar .box .tit {
	overflow: hidden;
	height: 49px;
	animation-duration: 1.5s;
	animation-name: blink2;
	animation-iteration-count: infinite;
	animation-direction: alternate;
	animation-timing-function: ease-in-out;
}

@keyframes blink2 {
	0% {
		font-size: 25px;
	}
	50% {
		font-size: 30px;
	}
	100% {
		font-size: 25px;
	}
}

#articleInfo1 .topBar .box:last-child {
	margin-left: 4%;
	width: 80%;
	text-align: left;
}

#articleInfo1 .infoWrap {
	overflow: hidden;
	transition: all 0.3s;
}

#articleInfo1:hover .infoWrap {
}

#articleInfo1 .infoWrap ul li {
	padding: 5px 0;
	overflow: hidden;
}


#articleInfo1 .infoWrap ul li h5 {
	font-size: 17px;
	color: #0e0e0e;
	margin: 0;
	float: left;
	width: 100px;
	background-color: #fff;
	text-align: center;
	padding: 5px 0;
}


#articleInfo1 .infoWrap ul li p {
	font-size: 16px;
	float: left;
	width: calc(100% - 120px);
	margin-left: 20px;
	padding: 5px 0;
}


#articleInfo1 .iconBtn i {
	display: inline-block;
	line-height: 45px;
}


/************ = 適應性 = ************/
/* +width:640 ↓
*----------------------------------------------------------------------------*/
@media screen and (max-width: 640px) {
	#articleInfo1 .topBar .box:last-child {
		margin-left: 3%;
	}
}


/* +width:450 ↓
*----------------------------------------------------------------------------*/
@media screen and (max-width: 450px) {
	#articleInfo1 .topBar .box:first-child ,
	#articleInfo1 .iconBtn {
		display: none;
	}
}