/* 重要通知主体内容区样式 */
.content {

}

.banner {
    width: 100%;
    height: 240px;
    background-size: 100% 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.notice-container {
    width: 1400px;
    margin: 0 auto;
    padding-bottom: 108px;
}

.notice-item {
    width: 100%;
    height: 120px;
    padding: 20px 24px;
    border-radius: 8px 8px 0 0;
    border-bottom: 1px solid #F5F5F5;
    display: flex;
    justify-content: space-between;
    align-items: center;
    overflow: hidden;
    transition: all 0.1s;
}

.notice-item:hover {
    background-color: #0066ff;
}

a {
    color: #333;
    text-decoration: none;
}

.notice-item:hover .notice-item-title {
    color: #fff;
}

.notice-item:hover .notice-item-text {
    color: #fff;
}

.notice-item-left {
    display: flex;
    align-items: center;
}

.date-box {
    width: 80px;
    height: 80px;
    border: 1px solid #CCCCCC;
    border-radius: 4px;
    text-align: center;
    background-color: #fff;
    padding-top: 4px;
    user-select: none;
}

.date-day {
    font-size: 32px;
    font-weight: bold;
    color: #0066ff;
}

.date-month {
    font-size: 14px;
    color: #999;
}

.notice-item-content {
    margin-left: 16px;
}

.notice-item-title {
    width: 1000px;
    white-space: nowrap;
    font-size: 16px;
    font-weight: bold;
    color: #0047b2;
    transition: all 0.1s;
    cursor: default;
    overflow: hidden;
    text-overflow: ellipsis;
}

.notice-item-text {
    max-width: 1000px;
    line-height: 19px;
    height: 19px;
    margin-top: 12px;
    font-size: 14px;
    color: #666;
    width: 863px;
    transition: all 0.1s;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 1;
    overflow: hidden;
    text-overflow: ellipsis;
    cursor: default;
}

.notice-item-right {

}

.view-details-btn {
    width: 124px;
    height: 42px;
    line-height: 40px;
    text-align: center;
    background-color: #fff;
    border-radius: 44px;
    border: 1px solid #CCCCCC;
    font-size: 14px;
    color: #262626;
    cursor: pointer;
    user-select: none;
    transition: all 0.3s;
}

.view-details-btn:hover {
    border-color: #0066ff;
    color: #0066ff;
}