body {
	margin-left: 0px;
	margin-top: 0px;
	margin-right: 0px;
	margin-bottom: 0px;
	background-color: #fffcf6;
	font-family:"Microsoft Yahei","微软雅黑","Helvetica Neue","Luxi Sans","DejaVu Sans",Tahoma,"Hiragino Sans GB",STHeiti !important;
}


.dh2 {
	font-size: 16px;
	color: #0174de;
	line-height:22px;
	font-weight: bold;

}

.dh2 a:link {
	color: #0174de;
	text-decoration: none;
}
.dh2 a:visited {
	color: #0174de;
	text-decoration: none;
}
.dh2 a:hover {
	color: red;
	text-decoration: underline;
}
.leftlx {
	font-size: 16px;
	color: #666666;
	line-height:22px;
	font-weight: bold;

}

.right222 {
	font-size: 16px;
	color: #FF6608;
	line-height:22px;
	font-weight: bold;

}
.tdtd{
	border-bottom:1px solid #ffffff;

}
.foot {

	line-height: 38px;
	font-size:14px;
	color: #ffffff;
	text-decoration: none;
	
}

.foot a:link {
	color: #ffffff;
	font-size:14px;
	text-decoration: none;
}
.foot a:visited {
	color: #ffffff;
	text-decoration: none;
}
.foot a:hover {
	color: #ffffff;
	text-decoration: underline;
}

.top {

	line-height: 22px;
	font-size:12px;
	color: #3b3b3b;
	text-decoration: none;
}
.top a:link {
	color: #3b3b3b;
	font-size:12px;
	text-decoration: none;
}
.top a:visited {
	color: #3b3b3b;
	text-decoration: none;
}
.top a:hover {
	color: red;
	text-decoration: underline;
}

.con2 {

	line-height: 19px;
	font-size:12px;
	color: #2c2c2c;
	text-decoration: none;
}

.con {

	line-height: 22px;
	font-size:12px;
	color: #2c2c2c;
	text-decoration: none;
}
.con a:link {
	color: #2c2c2c;
	font-size:12px;
	text-decoration: none;
}
.con a:visited {
	color: #2c2c2c;
	text-decoration: none;
}
.con a:hover {
	color: red;
	text-decoration: underline;
}

.tdka {
	font-size: 12px;
	color: #999999;
	border: 1px solid #018BED;
}


.tdkb {
	font-size: 12px;
	color: #999999;
	padding:2px;
	border: 1px solid #018BED;
}
.xiaxuxian {
	border-bottom-width: 1px;
	border-bottom-style: dashed;
	border-bottom-color: #CCCCCC;
}



#app {
    width: 1200px;
    display: flex;
    justify-content: space-between;
    position: relative;
	margin:0 auto;
}

.box {
    width: 280px;
    overflow: hidden;
    background: #f6f6f6;
    box-sizing: border-box;
    padding: 0 15px 25px 15px;
}

.box a {
    display: flex;
    flex-direction: column;
    align-items: center;
    color: #535353;
    text-decoration: none;
}

.box a:hover {
    color: #ff6c00;
}

.imgBox {
    width: 280px;
    height: 186.67px;
    overflow: hidden;
}

.imgBox img {
    width: 100%;
    height: 100%;
    transition: all 0.6s linear;
}

.source {
    border: 1px solid #535353;
    padding: 6px 20px;
    border-radius: 25px;
    margin: 20px;
}

.title {
    margin-bottom: 10px;
    font-size:18px;
}

.detail {
    font-size: 14px;
    line-height: 160%;
    text-align: justify;
    width: 100%;
}

/*鼠标hover效果*/

.box>a::after {
    content: '';
    width: 280px;
    position: absolute;
    background: #ff6c00;
    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: #ff6c00;
    border-color: #e52d67;
    color: #ffffff;
}