
.zixun_box{
    width: 100%;
    padding-top: calc(19px + 5rem);
}
.zixun{
    max-width: 1480px;
    width: 90%;
    margin: auto;
 
}

/* 头部区域 */
.news-header {
    margin-bottom: 2rem; /* 40px */
}

.news-header .tag {
    font-size:calc(4px + 1rem); /* 16px */
    color: #c9a959;
    margin-bottom: 0.5rem;
    display: block;
}

.news-header h2 {
    font-size: calc(10px + 2rem); /* 24px，按要求设置 */
    color: #333333;
    font-weight: 500;
    margin-bottom: 1rem;
}

.tab-group {
    display: flex;
    gap: 1rem;
    justify-content: flex-end;
    margin-top: -3rem; /* 对齐到右上角 */
    margin-bottom: 1.5rem;
}

.tab-btn {
    width: calc(58px + 5rem);
    height: calc(20px + 2rem);
    background: #BFA151;
    border-radius: calc(10px + 1rem);
    border: 1px solid #BFA151;
    font-size: 1rem; /* 15px */
    transition: all 0.3s;
}
.tab-btn a{
 width: 100%;
 height: 100%;
 display: flex;
 justify-content: center;
align-items: center;
}

.tab-btn.active {
    background-color: #c9a959;
    color: white;
}

.tab-btn:not(.active) {
    background-color: #ffffff;
    color: #666;
    border: 1px solid #c9a959;
}

/* 新闻列表 */
.news-list {
    display: flex;
    flex-direction: column;
    gap: calc(16px + 2rem);
}

.news-item {
    width: 100%;
box-shadow: 0px 0px calc(8px + 0.5rem) 0px rgba(0,0,0,0.09);
border-radius: calc(5px + 0.25rem);
opacity: 0.8;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    background-color: #ffffff;
padding-right: calc(12px + 4rem);
gap: calc(13px + 2rem);

}

.news-item-img {
    width: 27.027%; /* 200px */
    height: calc(90px + 10rem); /* 120px */
    object-fit: cover;
    flex-shrink: 0;
}

.news-content {
    width: calc(180px + 30rem);
    display: flex;
    flex-direction: column;
    gap: calc(8px + 1.5rem);
    margin-right: calc(12px + 5rem);
}

.news-title {
    font-size: calc(4px + 1rem); /* 18px */
    color: #c9a959;
    font-weight: 600;
    line-height: 1.4;
}

.news-desc {
    font-size: calc(6px + 0.5rem); /* 14px */
    color: #666;
    line-height: calc(2px + 1.5rem);
}

.news-meta {
    display: flex;
    gap: 1rem;
    font-size: calc(4px + 0.5rem); /* 12px */
    color: #999;
    margin-top: auto;
}

.news-item .arrow-link {
    align-self: center;
    color: #999;
    font-size: 1rem;
}