/* 通知公告部分开始 */
.noticeList{
    width: 100%;
    height: auto;}

.noticeItem{
    width: 100%;
    height: auto;
    box-sizing: border-box;
    padding: 1.5em;
    background: white;
    margin-bottom: 1em;
    transition: all 1s;
    border: 1px solid white;}

.dateL{
    width: 6em;
    position: relative;}

.dateL::after{
    content: '';
    width: 1px;
    height: 5em;
    background: rgba(129, 110, 93, 0.22);
    position: absolute;
    right: 20%;
    top: 50%;
    transform: translateY(-50%);}

.infoR{
    width: calc(100% - 6em);}

.dateL h3{
    font-size: 2.3em;
    font-family: SourceHanSerifSC;
    font-weight: bold;
    color: #816E5D;
    line-height: 1.5em;}

.dateL p{
    font-size: 0.8em;
    font-family: SourceHanSerifSC;
    color: #918A84;
    line-height: 1.5em;}

.infoR h3{
    font-size: 1.1em;
    font-family: SourceHanSerifSC;
    font-weight: bold;
    color: #816E5D;
    line-height: 3em;}

.infoR p{
    max-height: 2.8em;
    font-size: 0.8em;
    font-family: SourceHanSerifSC;
    color: #918A84;
    line-height: 1.5em;}

.noticeItem:hover{
    background: rgba(240, 234, 229, 0.98);
    border: 1px solid #B39A84;
    box-shadow: 2px 5px 10px 0px rgba(136, 134, 133, 0.07);}

.noticeItem:hover .dateL h3{
    color: #A5190E;}

.noticeItem:hover .dateL p{
    color: #A5190E;}

.noticeItem:hover .infoR h3{
    color: #A5190E;}

.noticeItem:hover .infoR p{
    color: #333333;}

/* 通知公告部分结束 */

/* 新闻详情部分开始 */
.newsInfo{
    width: 100%;
    height: auto;}

.newsTitle{
    width: 100%;
    height: auto;
    text-align: center;
    border-bottom: 1px solid rgba(217, 217, 217, 0.52);
    padding: 1em 0;
    margin-bottom: 2em;}

.newsTitle h3{
    font-size: 1.7em;
    font-family: SourceHanSerifSC;
    font-weight: bold;
    color: #333333;
    margin-bottom: 1em;
    line-height: 1.5em;}

.newsD img{
    width: 1.1em;
    height: 1.1em;
    margin: 0 0.2em 0 1.5em;}

.newsD img:first-child{
    margin-left: 0 !important;}

.newsD p{
    font-size: 0.8em;
    font-family: Microsoft YaHei;
    color: #9F9E9E;}

.newsC p{
    font-size: 1em;
    font-family: SourceHanSerifSC;
    font-weight: 400;
    color: #333333;
    line-height: 2.2em;
    margin-bottom: 1em;}

.newsT{
    border-top: 1px solid rgba(217, 217, 217, 0.52);
    margin-top: 2em;}

.newsT p{
    width: 45%;
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
    font-size: 1em;
    color: #AFAFAF;
    line-height: 3em;
    transition: all 1s;}

.newsT p a{
    color: #333333;
    transition: all 1s;}

.newsT p:hover{
    color: #17328C;}

.newsT p:hover a{
    color: #17328C;}

/* 新闻详情部分结束 */


/* 响应式处理开始 */
@media screen and (max-width: 460px) {
    .newsD{
        font-size: 16px;}

    .newsC p{
        font-size: 1.4em;}

    .dateL{
        width: 6em;}

    .dateR{
        width: calc(100% - 6em);}

    .noticeItem{
        font-size: 14px;}

    .dateL p, .infoR p{
        font-size: 1em;}

    .newsD img{
        margin-left: 1em;}

    .newsT{
        display: block;}

    .newsT p{
        width: 100%;}
}

@media screen and (max-width: 400px) {
    .newsD{
        flex-wrap: wrap;}

    .newsD img{
        margin-left: 0.8em;}

    .newsC img{
        max-width: 100% !important;}
}
/* 响应式处理结束 */