/* 资讯搜索 */
/*.search-container {*/
/*    width: 1200px;*/  
/*    padding: 20px 0;*/
/*    margin: 0 auto;*/
/*    display: flex;*/
/*    flex-direction: row-reverse;*/
/*}*/

.search-container .search-box {
    width: 315px;
    height: 30px;
    display: flex;
    align-items: center;
    background: rgba(240, 240, 240, 1);
    border-radius: 20px;
    padding: 0 20px;

}

.search-container .search-input {
    flex: 1;
    border: none;
    outline: none;
    font-size: 16px;
    color: #333;
    background: transparent;
    padding-right: 15px;
    font-size: 14px;
    font-weight: 400;
    letter-spacing: 0px;
    line-height: 20.27px;
    color: rgba(166, 166, 166, 1);
    text-align: left;
}

.search-container .search-input::placeholder {
    color: #999;
}

.search-container .search-button {
    width: 30px;
    height: 30px;
    background: transparent;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

.search-container .search-icon {
    width: 20px;
    height: 20px;
    position: relative;
}

.search-container .search-icon::before {
    content: '';
    position: absolute;
    width: 16px;
    height: 15px;
    border: 2px solid #666;
    border-radius: 50%;
    left: 6px;
    top: 0;
}

.search-container .search-icon::after {
    content: '';
    position: absolute;
    width: 2px;
    height: 8px;
    background: #666;
    transform: rotate(-45deg);
    bottom: -1px;
    right: -2px;
}

/* 资讯正文 */
.newListBox {
    width: 1200px;
    margin: 0 auto;
}

.newListBox .newList {
    overflow: hidden;
    padding: 1rem;
    width: 100%;
    height: 140px;
    padding-bottom: 25px;
    margin-bottom: 25px;
    border-bottom: 1px solid #eaeaea;
    transition: all .5s ease;
}

.newListBox .newList {
    height: 105px;
    padding: 0 0 5px 0;
}

.newListBox .leftTimeBox {
    width: 104px;
    height: 99px;
    padding-left: 14px;
    background: rgba(232, 243, 255, 1);
}

.newListBox .newLinkBox {
    position: relative;
    display: flex;
    flex-wrap: nowrap;
    width: 100%;
    height: 100%;
    overflow: hidden;
}


.newListBox .centerContentBox {
    flex: 1;
    padding-left: 3%;
}

.newListBox .newData {
    font-size: 60px;
    font-weight: 900;
    letter-spacing: 0px;
    line-height: 70px;
    color: rgba(0, 69, 147, 1);
    text-align: left;
    vertical-align: top;
}

.newListBox .newList .newYearMon {
    font-size: 16px;
    font-weight: 500;
    letter-spacing: 0px;
    color: rgba(0, 69, 147, 1);
    text-align: left;
    padding-left: 6px;
}

.newListBox .newList a {
    display: flex;
}

.newListBox .newTitle {
    font-size: 20px;
    font-weight: 700;
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
    transition: all .5s ease;
    letter-spacing: 0px;
    color: rgba(0, 0, 0, 1);
    text-align: left;
    vertical-align: top;
    margin-bottom: .2rem;

}

.newListBox .newToolBox {
    margin: 5px 0;
    color: #b4b4b4;
    display: none;
}

.newListBox .newSummry {
    font-size: 14px;
    font-weight: 400;
    letter-spacing: 0px;
    line-height: 20.27px;
    color: rgba(166, 166, 166, 1);
    text-align: left;
}

.newListBox .rIcon {
    position: absolute;
    top: 0px;
    left: 0px;
    display: block;
    width: auto;
    height: 98%;
    transition: all .5s ease;
}

.newListBox .redIcon {
    opacity: 0;
}

.newListBox .whiteIcon {
    opacity: 1;
}



.newListBox .newList:hover {
    height: 110px;
}

.newListBox .newList:hover .leftTimeBox {
    background: #0065c0;
    color: #fff;
}

.newListBox .newList:hover .newData {
    color: #fff;
}

.newListBox .newList:hover .newYearMon {
    color: #fff;
}

.newListBox .newList:hover .newTitle {
    color: #0065c0;
}

.newListBox .newList:hover .redIcon {
    opacity: 1;
}

.newListBox .newList:hover .whiteIcon {
    opacity: 0;
}
@media only screen and (max-width: 1024px) {
    .newListBox{
        width: 92%;
    }
.newListBox .newList {
  height: 2rem;
}
.newListBox .leftTimeBox {
  width: 25%;
  padding: 0.3rem;
}
.newListBox .newData {
  font-size: .6rem;
  text-align: center;
  line-height: .7rem;
}
.newListBox .newList .newYearMon {

  padding: 0;
  font-size: .24rem;
}
.newListBox .newSummry{
    font-size: 0.24rem;
    overflow: hidden;
    text-overflow: ellipsis;
    height: 1.2rem;
}
.newListBox .centerContentBox{
    width: 65%;
}
.newListBox .newTitle{
    font-size: 0.26rem;
    margin-bottom: .1rem;
}
}