.analysis-board {
    max-width: 900px;
    margin: 30px auto;
    padding: 0 20px;
    font-family: sans-serif;
}

.board-title {
    font-size: 1.2rem;
    font-weight: bold;
    color: #020636;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 20px;
}

.board-title .subtitle {
    font-size: 0.8rem;
    color: #888;
    font-weight: normal;
}

.analysis-list {
    display: flex;
    flex-direction: column;
    gap: 19px;
}

.analysis-item {
    background: rgba(255, 255, 255, 0.8);
    border: 1px dashed #0014FC; /* 使用虚线更有“剪报”和“解析”的感觉 */
    border-radius: 12px;
    transition: all 0.3s ease;
}

.analysis-item:hover {
    background: #fff;
    transform: translateX(5px);
    box-shadow: 0 4px 15px rgba(0, 20, 252, 0.1);
    border-style: solid;
}

.analysis-link {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
    text-decoration: none;
    color: #333;
}

.analysis-info h3 {
    margin: 0 0 5px 0;
    font-size: 1.0rem;
    color: #1b1a1d;
}

.analysis-info p {
    margin: 0;
    font-size: 0.9rem;
    color: #666;
    line-height: 1.4;
}

.analysis-arrow {
    font-size: 0.85rem;
    color: #020636;
    font-weight: bold;
    white-space: nowrap;
    margin-left: 20px;
}

/* 移动端适配 */
@media (max-width: 600px) {
    .analysis-link { flex-direction: column; align-items: flex-start; }
    .analysis-arrow { margin-left: 0; margin-top: 10px; }
}