/*新闻资讯*/
.information{
    min-width: 1200px;
    height: 551.3px;
    background-image:url('../img/objectCase.png');
    background-size:100% 100%;
    background-repeat:no-repeat;
    position: relative;
}

.information h1{
    position: absolute;
    left: 50%;
    transform: translate(-50%);
    top: 166px;
    font-size: 48px;
    font-family: Microsoft YaHei;
    font-weight: bold;
    color: #FFFFFF;
    margin: 0px;
}

.information p{
    min-width: 864px;
    position: absolute;
    left: 50%;
    transform: translate(-50%);
    top: 254px;
    font-size: 24px;
    font-family: Microsoft YaHei;
    font-weight: 400;
    color: #FFFFFF;
}

.information_btn{
    position: absolute;
    left: 50%;
    transform: translate(-50%);
    top: 319px;
    width: 222px;
    height: 65px;
    background: #DC1A1A;
    border-radius: 33px;
    font-size: 24px;
    font-family: Microsoft YaHei;
    font-weight: 400;
    color: #FFFFFF;
    line-height: 65px;
    text-align: center;
}

/*宇清新闻展示*/
.yuQingInformation{
    width: 1200px;
    margin: 45px auto 40px;
}

.news_item{
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    /* justify-content: space-between; */
    margin-top: 21px;
}

.news_item_Single{
    width: 387px;
    margin-bottom: 30px;
  	margin-right: 13px;
    position: relative;
    overflow: hidden;
}

  /*.news_item_Single:hover>.news_item_Single_content{
    display: block;
  animation-duration: 1.5s;
    animation-name: fadeinB;
}*/

.news_item_Single_img img {
    cursor: pointer;
    transition: all 1.5s;
}

.news_item_Single_img:hover>img{
    transform: scale(1.2);
}

.news_item_Single_content{
    /*display: none;*/
    width: 387px;
    height: 80px;
    position: absolute;
    bottom: 0px;
    background-color: rgba(255, 255, 255,0.6);
}


.news_item_Single_text{
    padding-top: 14px;
    padding-left: 10px;
    font-size: 16px;
    font-family: Microsoft YaHei;
    font-weight: 400;
    color: #000000;
}

.news_item_Single_date{
    position: absolute;
    right: 16px;
    bottom: 11px;
    font-size: 14px;
    font-family: Microsoft YaHei;
    font-weight: 400;
    color: #000000;
}

/*点击按钮出现更多新闻*/
.news_btn{
    text-align: center;
    margin: auto 10px;
    background: #FFFFFF;
    font-size: 14px;
    font-family: Microsoft YaHei;
    font-weight: 400;
    color: #000000;
}

.news_btn a{
    font-size: 14px;
    padding: 13px 44px;
    font-family: Microsoft YaHei;
    font-weight: 400;
    color: #000000;
    text-decoration:none;
    border: 1px solid #030000;
}


.news_btn_ul {
	display: flex;
    align-items: center;
    justify-content: center;
}

/*动画效果自下往上*/
@keyframes fadeinB {
    0% {
        opacity: 0;
        transform: translateY(100px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}


/*动画效果自上而下*/
@-webkit-keyframes fadeinC {
    0% {
        transform: translateY(0);
    }

    20% {
        opacity: 1;
        transform: translateY(-20px);
    }

    100% {
        opacity: 0;
        transform: translateY(100px);
    }
}



