* {
    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;
}

/* 卡片容器 */
.card-container {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    /* padding: 40px; */
    max-width: 1460px;
    margin: 0 auto;
    padding: 105px 0;
}
.card-container a {
    display: block;
    text-decoration: none;
    color: inherit;
    width: 46%;
    margin-bottom: 40px;
}

/* 调整 card-item 去除 margin */
.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: 0;
}
/* 卡片项 */
/* .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: 46%;
    height: 120px;
    margin-bottom: 40px;
} */

/* 悬停效果 */
.card-item:hover {
    background-color: #a4201c;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    background-image: url('https://zzyyzy.dahe.cn/file/4113000050/images/continBg.png');
}

/* 日期框 */
.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 .date-box{
     border-right: 1px solid #ffffff80;
}

/* 日期数字 */
.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;
}

/* 月份 */
.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;
}

/* 悬停时的内容颜色 */
.card-item:hover .content {
    color: white;
}

/* 悬停时的日期颜色 */
.card-item:hover .day {
    color: white;
}

/* 悬停时的月份颜色 */
.card-item:hover .month {
    color: rgba(255, 255, 255, 0.8);
}