body {
    margin: 0;
    font-family: "Arial", sans-serif;
}

.section {
    padding: 0.5rem 0rem;
    box-sizing: border-box;
}

#section5 {
    background-image: url('/images/新闻咨询背景@2x.png');
    background-size: cover;
    background-position: center;

}

.section5-content {
    border-radius: 0.125rem;
    max-width: 20rem;
    width: 100%;
    margin: 0 auto;
    overflow: hidden;
}

.bottom-content5 {
    display: flex;
    flex-wrap: wrap;
    gap: 0.375rem;
}

.left-part {
    flex: 1.5;
    min-height: 11.25rem;
    border-radius: 0.1rem;
    margin-top: -0.5rem;
}

.right-part {
    flex: 1;
    min-width: 8.75rem;
    min-height: 11.25rem;
    border-radius: 0.1rem;
    margin-left: -0.375rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    margin-top: -3.75rem;
}


.left-image {
    margin-top: 0.5rem;
    width: 100%;
    height: 6.25rem;
    object-fit: cover;
    border-radius: 0.1rem;
    margin-bottom: 0.1875rem;
}

.left-text {
    margin-top: 0.25rem;
    font-size: 0.275rem;
    color: #333;
    line-height: 1.6;
}

.main-text {
    font-size: 0.325rem;
    font-weight: bold;
    margin-bottom: 0.1rem;
    color: #222;
}

.sub-text {
    font-size: 0.225rem;
    color: #666;
}

.news-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 0.5rem;
}

.news-date {
    width: 0.875rem;
    background-color: #0066ff;
    color: #fff;
    padding: 0.075rem 0.125rem;
    border-radius: 0.05rem;
    text-align: center;
    flex-shrink: 0;
    margin-left: 0.75rem;
    margin-right: 0.15rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}


.day-month {
    font-weight: bold;
    font-size: 0.225rem;
}

.year {
    font-weight: bold;
    font-size: 0.225rem;
    margin-top: 0.025rem;
}

.news-title {
    margin-left: 0.875rem;
    margin-top: 0.1125rem;
    font-size: 0.3rem;
    color: #464646;
    line-height: 1.4;
    flex: 1;
}



.news-title {
    margin-left: 0.5rem;
    margin-top: 0.1125rem;
    font-size: 0.3rem;
    color: #464646;
    line-height: 1.4;
    flex: 1;
    position: relative;
    cursor: pointer;
    transition: color 0.3s ease;
}

.news-title:hover {
    color: #0066ff;
    /* 悬停变蓝 */
}

.news-title:hover::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -0.05rem;
    /* 横线距离文字底部的距离 */
    width: 100%;
    height: 0.025rem;
    background-color: #0066ff;
    /* 横线颜色 */
}