* {
    margin: 0;
    padding: 0;
    font-family: Arial, sans-serif;
}

html,
body {
    overflow-x: hidden;
    width: 100%;
}

.headerBg {
    width: 100%;
    height: 550px;
    overflow: hidden;
    position: relative;
}

.headerImg {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.modelName {
    width: 320px;
    height: 182px;
    background: #a4201cbf;
    position: absolute;
    top: 90px;
    left: 214px;
    color: #ffffff;
    font-family: "Microsoft YaHei";
    font-size: 38px;
    font-style: normal;
    font-weight: 700;
    line-height: 32px;
    line-height: 182px;
    text-align: center;
}

.container {
    display: flex;
    justify-content: space-between;
    padding: 50px 20px 100px 20px;
    font-size: 16px;
    max-width: 1400px;
    margin: 0 auto;
}

.news-list {
    width: 68%;
}

.news-item {
    background-color: #f4f4f4;
    margin-bottom: 10px;
    padding: 10px;
    display: flex;
    align-items: center;
}

.date {
    color: #ff0000;
    font-size: 24px;
    margin-right: 10px;
    border-left: 4px solid #A4201C;
    padding-left: 38px;
}

.date span {
    font-size: 12px;
    color: #666;
}

.content {
    flex: 1;
}

.hot-news {
    width: 28%;
    background-color: #fff;
    /* padding: 10px; */
}

.hot-news h2 {
    background-color: #A4201D;
    color: #fff;
    padding-left: 28px;
    height: 99px;
    line-height: 99px;
}

.hot-news ul {
    list-style: none;
}

.hot-news li {
    padding: 0 30px;
    height: 100px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    border-bottom: 1px solid #a4201c33;
    background: #F7F5F5;
}
.hot-news li:hover{
    background-color: #a4201c;
}

.hot-news li .date-row {
    display: flex;
    align-items: center;
    margin-bottom: 5px;
}

.news-icon {
    width: 16px;
    height: 16px;
    margin-right: 8px;
    object-fit: contain;
}

.hot-news li span {
    color: #9C2421;
    margin-right: 10px;
}
.hot-news li:hover span,
.hot-news li:hover p {
    color: #FFFFFF;
}


.hot-news li p {
    color: #000000;
    font-family: "Microsoft YaHei";
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 32px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 100%;
}

.card-item {
    display: flex;
    align-items: center;
    background: #F7F5F5;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    width: 100%;
    height: 120px;
    margin-bottom: 25px;
}

/* 悬停效果 */
.card-item:hover {
    background-color: #a4201c;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

/* 日期框 */
.date-box {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-right: 16px;
    min-width: 40px;
    border-right: 1px solid #A4201C;
    padding-right: 30px;
}

.card-item:hover .day,
.card-item:hover .month,
.card-item:hover .content {
    color: #FFFFFF;
}

/* 日期数字 */
.day {
    /* font-size: 24px;
    font-weight: bold;
    color: #a4201c;
    margin-bottom: 4px; */
    color: #a4201c;
    font-family: "Microsoft YaHei";
    font-size: 35px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    border-left: 4px solid #A4201C;
    padding-left: 38px;
}
.card-item:hover .date-box {
    border-right-color: #FFFFFF;
}

.card-item:hover .day {
    border-left-color: #FFFFFF;
}
/* 月份 */
.month {
    /* font-size: 12px;
    color: #666; */
    color: #a4201c;
    font-family: "Microsoft YaHei";
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    padding-left: 42px;
}

/* 内容区域 */
.content {
    /* font-size: 14px;
    color: #333;
    line-height: 1.5;
    flex: 1; */
    color: #000000;
    font-family: "Microsoft YaHei";
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    padding-left: 30px;
}
.icon-hover {
    display: none;
}

/* hover 时切换 */
.hot-news li:hover .icon-default {
    display: none;
}

.hot-news li:hover .icon-hover {
    display: block;
}