.u-stockarea .calendar-event__title {
  white-space: normal !important;
  display: -webkit-box !important;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  line-height: 1.5;
  word-break: break-word;
}
/*!
 * WFFW(Webfront Framework) of PPSS - ppss-0.5.5-beta Copyright©2023 W3
 *
 * style - 2023/09/20
 * 说明：自行修改样式文件
 * 用法：重写、追加样式
*/

/* 新闻列表样式 */
.u-news-list {
    margin: 0;
    padding: 0;
}

.u-news-list .loading-placeholder {
    text-align: center;
    padding: 20px;
    color: #999;
}

.u-news-item {
    border-bottom: 1px solid #f0f0f0;
    padding: 15px 0;
    display: flex;
    align-items: flex-start;
    transition: background-color 0.3s ease;
}

.u-news-item:hover {
    background-color: #f8f9fa;
}

.u-news-item:last-child {
    border-bottom: none;
}

.u-news-item .news-image {
    width: 80px;
    height: 60px;
    margin-right: 15px;
    border-radius: 4px;
    overflow: hidden;
    background: #f5f5f5;
    flex-shrink: 0;
}

.u-news-item .news-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.u-news-item .news-content {
    flex: 1;
    min-width: 0;
}

.u-news-item .news-title {
    font-size: 14px;
    font-weight: 500;
    color: #333;
    margin-bottom: 8px;
    line-height: 1.4;
    text-decoration: none;
    display: block;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.u-news-item .news-title:hover {
    color: #007bff;
    text-decoration: none;
}

.u-news-item .news-summary {
    font-size: 12px;
    color: #666;
    line-height: 1.4;
    margin-bottom: 8px;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.u-news-item .news-meta {
    font-size: 11px;
    color: #999;
    display: flex;
    align-items: center;
    gap: 12px;
}

.u-news-item .news-meta .news-source {
    color: #007bff;
}

.u-news-item .news-meta .news-time {
    color: #999;
}

.u-news-item .news-meta .news-views {
    color: #999;
}

.u-news-item .news-meta .news-views i {
    margin-right: 3px;
}

/* 移动端适配 */
@media (max-width: 768px) {
    .u-news-item {
        padding: 12px 0;
    }
    
    .u-news-item .news-image {
        width: 60px;
        height: 45px;
        margin-right: 10px;
    }
    
    .u-news-item .news-title {
        font-size: 13px;
    }
    
    .u-news-item .news-summary {
        font-size: 11px;
    }
    
    .u-news-item .news-meta {
        font-size: 10px;
        gap: 8px;
    }
}

/* 无数据状态 */
.u-news-list .no-news {
    text-align: center;
    padding: 30px 20px;
    color: #999;
    font-size: 14px;
}

.u-news-list .no-news i {
    font-size: 24px;
    margin-bottom: 10px;
    display: block;
    color: #ddd;
}

/* 交易所列表：定制交易所名称和logo链接样式 */
.exchange-item-link,
.exchange-item-link:hover {
    background: transparent !important;
    color: #333 !important; /* 设置为深灰色/黑色 */
    padding: 0 !important;
    border-radius: 0 !important;
    opacity: 1 !important;
}