.center .box {
    width: 100%;
    background-color: #fff;
    box-shadow: 4px 4px 4px rgba(0, 0, 0, .25);
    border-radius: 16px;
    font-size: 1.125rem;
    padding: 16px;
    margin-bottom: 32px;
}

.box .newsList li {
    width: 100%;
    border-bottom: 1px solid #666;
}
.box .newsBtn {
    display: block;
    padding: 4px 4px ;
    color: #000;
    margin:2px 0;
    text-overflow: ellipsis;
    overflow: hidden;
    white-space: nowrap;
    cursor: pointer;
}

.box .newsBtn:hover {
    background-color: #096DB3;
    color: #fff;
    
} 
#newsDetail{
    display: none;
}
#detailTitle{
    color: #1A2F6E;
    margin-bottom: 2%;
}
#detailTime{
    font-size: 0.75rem;
}
#detailContent{
    margin:2% 0 4%;
}
#backListBox{
    display: flex;
    justify-content: center;
    align-items: center;
}
#backList{
    display: block;
    cursor: pointer;
    width: 180px;
    height: 40px;
    border-radius: 40px;
    color: #000;
    background: #fff;
    font-weight: bold;
    text-align: center;
    line-height: 2;
    border : 1px solid #192F6E;
    margin-bottom: 2%;
}
#backList:hover{
    color: #fff;
    background: rgb(9, 109, 179);
    border-color :rgb(9, 109, 179);
}