    /* 重置 */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: "Microsoft YaHei", "SimSun", sans-serif;
    font-size: 14px;
    color: #333;
    background-color: #f5f5f5;
    line-height: 1.5;
}

a {
    text-decoration: none;
    color: #333;
}

a:hover {
    color: #d00;
    text-decoration: underline;
}

ul {
    list-style: none;
}

/* 布局 */
.container {
    width: 1000px;
    margin: 20px auto;
    background-color: #fff;
    padding: 20px;
    border: 1px solid #ddd;
}
/* =========================================
   新增部分（顶部焦点图与网格）
   ========================================= */

/* 顶部焦点图容器 */
.feature-wrapper {
    display: flex;
    gap: 20px;
    margin-bottom: 15px;
    padding-bottom: 15px;
}

/* 焦点图左侧（图片区） */
.feature-left {
    width: 640px; /* 根据需要调整宽度 */
    flex-shrink: 0;
    position: relative; overflow: hidden;
}

.feature-img-placeholder {
    width: 100%;
    height: 260px;
    background-color: #009944; /* 图片中的绿色背景 */
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff;
    font-size: 24px;
    border: 1px solid #ddd;
}

.img-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.6);
    color: #fff;
    padding: 8px 10px;
    font-size: 14px;
    text-align: center;
}

/* 焦点图右侧（新闻区） */
.feature-right {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.main-headline {
    font-size: 22px;
    font-weight: bold;
    color: #d00;
    margin-bottom: 10px;
    line-height: 1.4;
}

.main-headline a {
    color: #d00;
}

.headline-summary {
    font-size: 13px;
    color: #666;
    margin-bottom: 15px;
    line-height: 1.6;
    text-indent: 2em;
}

/* 焦点图列表样式 */
.feature-list {
    margin-top: auto; /* 如果空间允许，推到底部 */
}

.feature-list li {
    display: flex;
    align-items: center;
    padding: 6px 0;
    font-size: 14px;
}

.feature-list li a {
    flex: 1;
    color: #333;
    margin-right: 10px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.feature-list .date {
    color: #999;
    font-size: 12px;
}

/* 徽章（例如 [政策解读]） */
.badge {
    display: inline-block;
    padding: 1px 5px;
    font-size: 12px;
    color: #fff;
    border-radius: 2px;
    margin-right: 8px;
    line-height: 1.2;
}

.badge.red {
    background-color: #b22222; /* 深红色 */
}

/* 红色分割线 */
.red-divider {
    height: 2px;
    background-color: #d00;
    margin-bottom: 20px;
    width: 100%;
}

/* 网格布局（6个盒子） */
.grid-wrapper {
    display: grid;
    grid-template-columns: repeat(3, 1fr); /* 3列 */
    gap: 20px; /* 盒子之间的间距 */
    margin-bottom: 20px;
}

.grid-box {
    background: #fff;
    border: 1px solid #eee; /* 非常浅的边框 */
}

/* 特定网格标题样式（白底、红字、红下划线） */
.grid-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 5px;
    border-top: 2px solid #d00;
    margin-bottom: 10px;
    background-color: #f9f9f9;
    border-bottom: 1px solid #ddd;
}

.grid-header h3 {
    font-size: 16px;
    font-weight: bold;
    color: #d00;
    margin: 0;
    padding-left: 5px;
}

.grid-header a {
    font-size: 12px;
    color: #999;
    padding-right: 5px;
}

/* 网格列表样式 */
.grid-list {
    padding: 0 5px 10px 5px;
}

.grid-list li {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 6px 0;
    font-size: 12px;
    color: #666;
}

.grid-list li a {
    flex: 1;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    margin-right: 10px;
}

.grid-list li a:hover {
    color: #d00;
    text-decoration: underline;
}

.grid-list .date {
    color: #bbb;
    font-size: 12px;
    white-space: nowrap;
}

.main-content {
    display: flex;
    gap: 20px;
}

.section {
    background: #fff;
}

/* Columns */
.left-column {
    width: 380px;
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.right-column {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 20px;
    min-width: 0; /* Prevent flex overflow */
}

/* Adjust existing sections */
.news-section {
    width: 100%; /* Override fixed width */
    flex: 1; /* Stretch to fill remaining height */
    display: flex;
    flex-direction: column;
    border: 1px solid #ddd;
    border-top: none;
}

.nav-section {
    width: 100%;
    flex: 1; /* Stretch to fill remaining height */
    display: flex;
    flex-direction: column;
    border: 1px solid #ddd;
    border-top: none;
}


/* 标题 */
.section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 15px;
    background-color: #f9f9f9;
    border-bottom: 1px solid #ddd;
    border-top: 2px solid #d00;
    
}

.section-title {
    font-size: 16px;
    font-weight: bold;
    color: #d00;
}

.more-link {
    font-size: 12px;
    color: #999;
}

/* 新闻列表 */
.news-list {
    padding: 10px 15px;
}

.news-list li {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 4px 0;
    border-bottom: 1px dotted #ddd;
    font-size: 13px;
}

.news-list li:last-child {
    border-bottom: none;
}

.news-list li::before {
    content: "■"; /* 方形符号 */
    color: #d00;
    margin-right: 8px;
    font-size: 8px; /* 较小的方形 */
    line-height: 1;
    position: relative;
    top: -1px;
}

.news-list li a {
    flex: 1;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    margin-right: 10px;
}

.news-list .date {
    color: #999;
    font-size: 12px;
    white-space: nowrap;
}

/* 机构导航 */
.nav-content {
    padding: 15px;
    display: flex;
    gap: 15px;
}

.select-group {
    width: 380px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 18px;
}

.select-group select {
    width: 100%;
    padding: 5px;
    border: 1px solid #ccc;
    font-size: 14px;
    color: #333;
}

.logo-grid {
    flex: 1;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
}

.logo-box-img {
    display: block;
    width: 100%;
    height: 90px;
    border: 1px solid #eee;
    overflow: hidden;
}

.logo-box-img img {
    width: 100%;
    height: 100%;
    object-fit: fill;
}

/* =========================================
   新增：专家观点与经济人物
   ========================================= */

/* Expert Section */
.expert-section {
    background: #fff;
    border: 1px solid #ddd;
    border-top: none;
}

.expert-list {
    padding: 15px;
    height: 285px; /* Fixed height for consistency */
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.expert-item {
    display: flex;
    gap: 15px;
    border-bottom: 1px dotted #ddd;
    padding-bottom: 15px;
}

.expert-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.expert-img {
    width: 100px;
    height: 110px;
    flex-shrink: 0;
    border: 1px solid #eee;
    padding: 2px;
}

.expert-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.expert-info {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.expert-info h3 {
    font-size: 15px;
    font-weight: bold;
    color: #d00;
    margin-bottom: 10px;
    line-height: 1.4;
}

.expert-info h3 a {
    color: #d00;
}
.expert-info h3 a:hover {
    color: #d00;
    text-decoration: underline;
}

.expert-info p {
    font-size: 13px;
    color: #666;
    line-height: 1.6;
    /* Limit to 3 lines */
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* Figures Section */
.figures-section {
    background: #fff;
    border: 1px solid #ddd;
    border-top: none;
    overflow: hidden;
}

.figures-scroll-container {
    width: 100%;
    overflow: hidden;
    padding: 15px 0; /* No side padding to allow flush scroll if desired, or add padding */
    background: #fff;
    height: 285px; /* Match expert-list height */
    display: flex;
    align-items: center; /* Center images vertically */
}

.figures-scroll-wrapper {
    display: flex;
    width: max-content;
    gap: 15px; /* Spacing between images */
    animation: scroll 20s linear infinite;
    padding-left: 15px; /* Initial offset matching gap */
}

.figures-scroll-wrapper:hover {
    animation-play-state: paused;
}

.figure-item {
    display: block;
    width: 180px; /* Increased width */
    height: 255px; /* Increased height to fill container (285 - 30 padding) */
    flex-shrink: 0;
    border: 1px solid #eee;
    overflow: hidden;
}

.figure-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.figure-item:hover img {
    transform: scale(1.05);
}

@keyframes scroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); } /* Assuming content is duplicated once */
}
