* {
    padding: 0;
    margin: 0;
}


header {
    font-size: 35px;
    font-weight: bold;
    color: #14409d;
	    text-align: center;
    line-height: 55px;
}

#app {
    width: 975px;
    display: flex;
    justify-content: space-between;
    position: relative;
	float:right;
}

.box {
    width: 280px;
    overflow: hidden;
    background: #f6f6f6;
    box-sizing: border-box;
    padding: 0 15px 0 15px;
}

.box a {
    display: flex;
    flex-direction: column;
    align-items: center;
    color: #535353;
    text-decoration: none;
}

.box a:hover {
    color: #14409d;
}

.imgBox {
    width: 280px;
    height: 180px;
    overflow: hidden;
}

.imgBox img {
    width: 100%;
    height: 180px;
    transition: all 0.6s linear;
}

.source {
    border: 1px solid #535353;
    padding: 6px 20px;
    border-radius: 25px;
	font-size: 16px;
	font-weight: bold;
}

.title {
    margin-bottom: 20px;
    font-size: 20px;
}

.detail {
    font-size: 14px;
    line-height: 160%;
    text-align: justify;
    width: 100%;
	margin-top: 20px;
	height: 120px;
}

/*鼠标hover效果*/

.box>a::after {
    content: '';
    width: 225px;
    position: absolute;
    background: #14409d;
    bottom: 0;
    height: 0px;
    transition: height 0.3s linear;
    /*利用伪类高度，实现动画效果*/
}

.box>a:hover::after {
    height: 10px;
}

.box:hover img {
    transform: scale(1.15);
}

.box:hover .source {
    background: #14409d;
    border-color: #14409d;
    color: #ffffff;
}


#apd {
    width: 975px;
    display: flex;
    justify-content: space-between;
    position: relative;
	float:right;
}

#apq {
    width: 975px;
    display: flex;
    justify-content: space-between;
    position: relative;
	float:right;
}