.page-title {
    font-size: 28px;
    font-weight: 800;
    margin-bottom: 25px;
    color: #3f3030;
}

.news-list {
    display: flex;
    flex-direction: column;
}

.news-item {
    display: flex;
    justify-content: space-between;
    padding: 24px 0;
    border-bottom: 1px solid #eee;
}

.news-text {
    flex: 1;
    padding-right: 24px;
    display: flex;
    flex-direction: column;
}

.n-title {
    font-size: 18px;
    font-weight: 700;
    line-height: 1.4;
    margin-bottom: 10px;
    color: #1d1d1f;
    cursor: pointer;
}

.n-title:hover {
    color: var(--primary-blue);
}

.n-desc {
    font-size: 14px;
    line-height: 1.6;
    color: #666;
    margin-bottom: 15px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-align: justify;
}

.n-meta {
    margin-top: auto;
    display: flex;
    gap: 20px;
    font-size: 12px;
    color: #86909c;
}

.n-meta span {
    display: flex;
    align-items: center;
    gap: 5px;
}

.n-img {
    width: 220px;
    height: 124px;
    border-radius: 4px;
    overflow: hidden;
    flex-shrink: 0;
    background: #f0f0f0;
}

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

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

.pagination-wrap {
    display: flex;
    justify-content: center;
    margin-top: 40px;
    margin-bottom: 20px;
}

.sidebar-title {
    font-size: 20px;
    font-weight: 800;
    margin-bottom: 20px;
    color: #111;
}

.daily-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.daily-card {
    display: flex;
    gap: 12px;
    padding: 16px;
    background: #fff;
    border: 1px solid #f2f2f2;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.2s ease-in-out;
    align-items: flex-start;
}

.daily-card:hover {
    border-color: var(--primary-blue);
    background-color: var(--hover-bg-blue);
    box-shadow: 0 4px 12px rgba(40, 103, 255, 0.1);
}

.rank-tag {
    font-size: 16px;
    font-weight: bold;
    line-height: 1.4;
    min-width: 20px;
}

.daily-text {
    font-size: 14px;
    color: #333;
    line-height: 1.5;
    font-weight: 500;
}

.daily-card:hover .daily-text {
    color: var(--primary-blue);
}

.rank-1 {
    color: #ff9a00;
}

.rank-2 {
    color: #2867ff;
}

.rank-3 {
    color: #00b578;
}

.rank-common {
    color: #ccc;
    font-weight: normal;
    font-size: 14px;
}