.newsArea{
    padding: 128px 0;
    padding-top: 32px;
}
.newsTable{
    display: table;
    max-width: 1200px;
    margin: 0 auto;
    font-size: 18px;
    font-weight: bold;
    color: #666;
}
.newsTable > .tr > .td{
    padding: 8px 16px;
}

.newsTable > .tr > .td1{
    width: 200px;
}

.newsDate{
    text-align: right;
    padding-right: 32px;
    border-right: #194A7B 2px solid;
    background-color: #eee;
}

.worksArea{
    padding: 128px 0;
    background-color: #f8f8ff;
}

.worksFlex{
    display: flex;
    margin: 0 auto;
    width: 1144px;
    margin: 0 auto;
    gap: 32px;
    flex-wrap: wrap;
}
.worksItem{
    width: 360px;
}

.worksImage{
    border-top-left-radius: 16px;
    border-top-right-radius: 16px;
    border-bottom-left-radius: 16px;
    border-bottom-right-radius: 16px;
    position: relative;
    aspect-ratio: 4 / 3;
    overflow: hidden;
}
.worksImageFile{
    background-size: cover;
    background-position: center;
    transition: 300ms;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}
.worksImageFile:hover{
    top: -32px;
    left: -32px;
    right: -32px;
    bottom: -32px;
}
.worksImageFile:hover:after{
    display: block;
    content: '';
    position: absolute;
    top: 0px;
    left: 0px;
    right: 0px;
    bottom: 0px;
    opacity: 0.5;
    background-color: #194A7B;
}

.worksTitle{
    padding: 8px 0;
    font-weight: bold;
    font-size: 17px;
}
.worksContent{
    padding: 8px 0;
    color: #444;
}