#news {
    width: 100%;
    overflow: hidden;
    background: #F9FBFF;
}


#news > .headerBox {
    width: 100%;
    position: relative;
}

#news > .headerBox > img {
    width: 100%; /* 设置为自动适应 */
    height: auto; /* 设置为自动适应 */
    max-width: 100%; /* 最大宽度限制为容器宽度的百分之百 */
    max-height: 100%; /* 最大高度限制为容器高度的百分之百 */
}

#news > .headerBox > .headerContent {
    position: absolute;
    width: 1200px;
    height: 100%;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    justify-content: center;
}

#news > .headerBox > .headerContent > .headerLine {
    width: 46px;
    height: 4px;
    background: #1969F1;
    border-radius: 8px;
    margin-bottom: 32px;
}

#news > .headerBox > .headerContent > h2 {
    font-size: 46px;
    font-weight: 500;
    color: #FFFFFF;
    line-height: 65px;
}


#news > .container {
    width: 1200px;
    margin: 0 auto;
    /*overflow: hidden;*/
}

#news > .container > .add {
    width: 100%;
    height: 24px;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    margin-top: 32px;
}

#news > .container > .add > a{
    margin-right: 16px;
}


#news > .container > ul {
    width: 100%;
    display: flex;
    flex-direction: column;
    margin: 32px 0;
    padding: 0;
    list-style: none;
}

#news > .container > ul > li {
    width: 100%;
    height: 112px;
    background: #FFFFFF;
    margin-bottom: 16px;
    cursor: pointer;
    position: relative;
}

#news > .container > ul > li:last-of-type {
    margin-bottom: 0;
}

#news > .container > ul > li::after {
    content: "";
    display: block;
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    transition: .5s;
    background: #0866FF;
}
/*#news > .container > ul > li:hover{*/
/*    box-shadow: 0 7px 6px 2px rgba(8,102,255,0.08);*/
/*}*/

#news > .container > ul > li:hover::after {
    width: 1200px
}

#news > .container > ul > li:hover > a:first-of-type > .time > i {
    color: #0866FF;

}


#news > .container > ul > li > a:first-of-type {
    width: 100%;
    height: 100%;
    display: block;
    padding: 0 36px;
    box-sizing: border-box;
}

#news > .container > ul > li > a.edit {
    position: absolute;
    left: -50px;
    top: 0;
}

#news > .container > ul > li > a.delete{
    position: absolute;
    left: -50px;
    top: 24px;
    color: red;
}


#news > .container > ul > li > a:first-of-type > .time {
    float: left;
    display: flex;
    flex-direction: column;
    align-items: center;
    height: 100%;
    justify-content: center;
    margin-right: 36px;
}

#news > .container > ul > li > a:first-of-type > .time > i {
    line-height: normal;
    font-size: 32px;
    font-weight: normal;
    color: #595959;
}

#news > .container > ul > li > a:first-of-type > .time > span {
    line-height: normal;
    font-size: 12px;
    font-weight: 400;
    color: #6B7381;

}

#news > .container > ul > li > a:first-of-type > .name {
    float: left;
    line-height: 112px;
    font-size: 16px;
    font-weight: 500;
    color: #6B7381;
    letter-spacing: 1px;
}

#news > .container > ul > li > a:first-of-type > span {
    float: right;
    line-height: 112px;
    font-size: 16px;
    font-weight: 500;
    color: #6B7381;
}