/* 头部样式 */
.title{
    height: 500px;
    background: url(../images/news.png) no-repeat;
    overflow: hidden;
    background-size: cover;
}
.title p{
    margin-top: 174px;
    font-weight: bold;
    font-size: 40px;
    color: #FFFFFF;
}
.title .search{
    margin-top: 59px;
}
.title .search form{
    font-size: 0px;
    display: flex;
    align-items: center;
}
.title .search input{
    width: 444px;
    height: 50px;
    box-sizing: border-box;
    border: 1px solid #C4C4C4;
    border-right: none;
    background: url(../img/news2.png)no-repeat;
    background-position: 15px 15px;
    padding-left: 44px;
    outline: none;
    color: #A8A8A8;
    background-color: #FFFFFF;
}
.title .search button{
    width: 80px;
    height: 50px;
    box-sizing: border-box;
    background: #A8875A;
    border: none;
    font-size: 15px;
    color: #FFFFFF;
    cursor: pointer;
}

/* 新闻列表样式 */
.list{
  margin-bottom: 85px;
}
.list>p span{
    font-weight: bold;
    font-size: 34px;
    color: #999999;
    display: inline-block;
    margin-right: 60px;
    margin-top: 52px;
}
.list>p .black{
  color: #333333;
}
.list>p span:hover a{
    color: #333;
}

.list .dynamicState li{
    padding: 60px 0px;
    /* border-bottom: 1px solid #C4C4C4; */
    box-sizing: border-box;
}
.list .dynamicState .pic{
    width: 440px;
    height: 260px;
    overflow: hidden;
    display: inline-block;
}

.list .dynamicState .imgBg{
    height: 260px;
    transition: .3s all ease-in-out;
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
}

.list .dynamicState li:hover .imgBg{
    transform: scale(1.2,1.2);
}
.list .dynamicState li:hover p:nth-child(1){
    color: #A8875A;
}
.list .dynamicState div:nth-child(2){
    width: 900px;
    height: 260px;
    position: relative;
}
.list .dynamicState p:nth-child(1){
    font-weight: bold;
}
.list .dynamicState p:nth-child(2){
    color: #666666;
    margin-top: 25px;
    line-height: 28px;
}
.list .dynamicState span{
    color: #999999; 
    position: absolute;
    bottom: 5px;
}

.list .vidio{
    margin-top: 50px;
}
.list .vidio li{
    width: 440px;
    height: 380px;
    margin:0 40px 20px 0;
    position: relative;
    float: left;
}
.list .vidio li:nth-child(3n){
    margin-right: 0;
}
.list .vidio li .pic{
    width: 440px;
    height: 250px;
    overflow: hidden;
    position: relative;
}

.list .vidio li .imgBg{
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
    cursor: pointer;
    transition: all .3s ease-in-out;
    height: 250px;
}
.list .vidio li:hover .imgBg{
    transform: scale(1.2,1.2);
}
.list .vidio li:hover p{
    color: #A8875A;
}
.list .vidio li:nth-child(3n){
    margin-right: 0px;
}
.list .vidio .player{
    position: absolute;
    top: 0px;
    bottom: 0px;
    left: 0px;
    right: 0px;
    margin: auto;
    cursor: pointer;
}
.list .vidio p{
    font-weight: bold;
    margin-top: 20px;
}