@charset "UTF-8";
/*新闻模块*/
.news-content {
    padding: 0;
    padding-top: 50px;
    width: 1200px;
    margin: 0 auto;
    text-align: left;
    min-height:500px;
}

.news-content .news-title{
  font-size:20px;
  font-weight:600;
}

.news-line{
	text-align:center;
	margin-bottom:10px;
}

.news-line span{
	font-size:16px;
	color:#969696;
	transition: 0.2s;
    transform: scale(1);
   	cursor:pointer;
}

.news-line span:hover{
	color:black;
	transform: scale(1.05);
}

.news-line .news-ng{
	font-size:16px;
	color:#ddd;
}

.box1 {
    position: relative;
    transition: 0.5s;
    transform: scale(1);
    z-index: 1;
    height: 180px;
    margin: 40px;
}

.box1:hover{
    transform: scale(1.05);
}

.box1 .desc {
    position: relative;
    width: 700px;
    height: 180px;
    border: 1px solid #dddddd;
    border-left: none;
    background: #fff;
    padding: 30px;
}
.box1:hover .desc .title{
    color:#44BBFF;
}

.box1 .desc .title {
    font-weight: bold;
    color: #333;
    line-height: 28px;
    font-size: 22px;
}
.box1 .desc .title a{
   color:#666;
}

.box1 .desc .txt {
    width: 550px;
    color: #999;
    margin-top:10px;
    line-height: 22px;
    font-size: 14px;
}
.box1 .desc .time{
	position: absolute;
    right: 10px;
    bottom: 0px;
}
.box1 a{
 color: #999;
}
.box1 a:hover{
 text-decoration: none;
}

/*新闻模块*/