.main-grid {
    display: grid;
    gap: 24px;
    padding-bottom: 48px;
}
.flash-meta .iconfont{
    font-weight: 550;
}
@media (min-width: 1024px) { .main-grid { grid-template-columns: 1fr 340px; } }
/* Flash Detail Card */
.flash-detail-card {
    background-color: var(--bg-primary);
    border-radius: var(--radius-md);
    border: 1px solid var(--border-color);
    overflow: hidden;
}
/* Flash Header */
.flash-header {
    padding: 24px;
    border-bottom: 1px solid var(--border-color);
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.05), rgba(124, 58, 237, 0.05));
}
@media (min-width: 768px) { .flash-header { padding: 32px; } }
.flash-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: var(--color-primary);
    color: #fff;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    margin-bottom: 16px;
}
.flash-badge i { font-size: 10px; }
.flash-title {
    font-size: 22px;
    font-weight: 700;
    line-height: 1.4;
    color: var(--text-primary);
    margin-bottom: 16px;
}
@media (min-width: 768px) { .flash-title { font-size: 28px; } }
.flash-tag {
    background: rgba(37, 99, 235, 0.1);
    color: var(--color-primary);
    padding: 3px 10px;
    border-radius: 12px;
    font-size: 11px;
    font-weight: 500;
}
/* Flash Content */
.flash-content {
    padding: 24px;
}
@media (min-width: 768px) { .flash-content { padding: 32px; } }
.flash-content p {
    font-size: 15px;
    line-height: 1.9;
    color: var(--text-secondary);
    margin-bottom: 20px;
}
.flash-image {
    margin: 24px 0;
    border-radius: var(--radius-md);
    overflow: hidden;
}
.flash-image-caption {
    font-size: 12px;
    color: var(--text-muted);
    text-align: center;
    padding: 12px;
    background: var(--bg-secondary);
}
.flash-quote {
    margin: 24px 0;
    padding: 20px 24px;
    background: var(--bg-secondary);
    border-left: 4px solid var(--color-primary);
    border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
}
.flash-quote p {
    margin: 0;
    font-style: italic;
    color: var(--text-secondary);
}
.flash-quote-source {
    margin-top: 12px;
    font-size: 13px;
    color: var(--text-muted);
}
/* Flash Data Box */
.data-box {
    background: var(--bg-secondary);
    border-radius: var(--radius-md);
    padding: 20px;
    margin: 24px 0;
}
.data-box-title {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 16px;
}
.data-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}
@media (min-width: 640px) { .data-grid { grid-template-columns: repeat(4, 1fr); } }
.data-item {
    text-align: center;
}
.data-label {
    font-size: 12px;
    color: var(--text-muted);
    margin-bottom: 6px;
}
.data-value {
    font-size: 18px;
    font-weight: 700;
    color: var(--text-primary);
    font-family: "DIN Alternate", "DIN", "Helvetica Neue", Arial, sans-serif;
}
.data-change {
    font-size: 12px;
    margin-top: 4px;
}
.data-change.up { color: var(--color-green); }
.data-change.down { color: var(--color-red); }
/* Flash Footer */
.flash-footer {
    padding: 20px 24px;
    border-top: 1px solid var(--border-color);
    background: var(--bg-secondary);
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    align-items: center;
}
@media (min-width: 768px) { .flash-footer { padding: 20px 32px; } }
.flash-actions {
    display: flex;
    gap: 12px;
}
.flash-action-btn {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 8px 16px;
    background: var(--bg-primary);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    font-size: 13px;
    color: var(--text-secondary);
    transition: all var(--transition-fast);
}
.flash-action-btn:hover {
    border-color: var(--color-primary);
    color: var(--color-primary);
}
.flash-action-btn.liked {
    background: var(--color-primary);
    border-color: var(--color-primary);
    color: #fff;
}
.flash-action-btn i { font-size: 14px; }
.share-section {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-left: auto;
}
.share-label { font-size: 13px; color: var(--text-muted); }
.share-btn {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--transition-fast);
    border: 1px solid var(--border-color);
    background: var(--bg-primary);
}
.share-btn:hover { transform: translateY(-2px); }
.share-btn.wechat:hover { background: #07c160; border-color: #07c160; }
.share-btn.weibo:hover { background: #e6162d; border-color: #e6162d; }
.share-btn.link:hover { background: #1da1f2; border-color: #1da1f2; }
.share-btn:hover i { color: #fff; }
.share-btn i { font-size: 14px; color: var(--text-secondary); }
/* Related Flashes */
.related-section {
    margin-top: 24px;
    background-color: var(--bg-primary);
    border-radius: var(--radius-md);
    border: 1px solid var(--border-color);
    overflow: hidden;
}
.related-header {
    padding: 20px 24px;
    border-bottom: 1px solid var(--border-color);
}
.related-title {
    font-size: 16px;
    font-weight: 700;
    color: var(--text-primary);
}
.related-list {
    padding: 16px 24px;
}
.related-item {
    display: flex;
    gap: 16px;
    padding: 16px 0;
    border-bottom: 1px solid var(--border-color);
    cursor: pointer;
    transition: all var(--transition-fast);
}
.related-item:last-child { border-bottom: none; }
.related-item:hover { padding-left: 8px; }
.related-time {
    font-size: 12px;
    color: var(--color-primary);
    font-weight: 500;
    white-space: nowrap;
    flex-shrink: 0;
}
.related-content { flex: 1; }
.related-text {
    font-size: 14px;
    line-height: 1.6;
    color: var(--text-primary);
    margin-bottom: 6px;
}
.related-item:hover .related-text { color: var(--color-primary); }
/* Sidebar */
.sidebar { display: flex; flex-direction: column; gap: 20px; }
.sidebar-section {
    background-color: var(--bg-primary);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    padding: 20px;
}
.sidebar-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 16px;
}
.sidebar-title { font-size: 16px; font-weight: 700; color: var(--text-primary); }
.sidebar-more { font-size: 13px; color: var(--text-muted); display: flex; align-items: center; gap: 4px; }
.sidebar-more:hover { color: var(--color-primary); }
/* Latest Flashes */
.latest-list { display: flex; flex-direction: column; gap: 14px; }
.latest-item {
    display: flex;
    gap: 12px;
    cursor: pointer;
    transition: all var(--transition-fast);
    padding: 10px;
    border-radius: var(--radius-sm);
    margin: -10px;
}
.latest-item:hover { background: var(--bg-secondary); }
.latest-time {
    font-size: 12px;
    color: var(--color-primary);
    font-weight: 500;
    white-space: nowrap;
    flex-shrink: 0;
    background: rgba(37, 99, 235, 0.08);
    padding: 3px 8px;
    border-radius: 4px;
    height: fit-content;
}
.latest-content { flex: 1; }
.latest-text {
    font-size: 13px;
    line-height: 1.6;
    color: var(--text-primary);
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.latest-item:hover .latest-text { color: var(--color-primary); }
.market-list { display: flex; flex-direction: column; gap: 12px; }
.market-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px;
    background: var(--bg-secondary);
    border-radius: var(--radius-sm);
}
.market-name { font-size: 14px; font-weight: 600; }
.market-price { font-size: 14px; font-weight: 600; font-family: "DIN Alternate", "DIN", "Helvetica Neue", Arial, sans-serif; }
.market-change {
    font-size: 12px;
    font-weight: 600;
    padding: 3px 8px;
    border-radius: 4px;
}
.market-change.up { color: var(--color-green); background: rgba(16, 185, 129, 0.1); }
.market-change.down { color: var(--color-red); background: rgba(239, 68, 68, 0.1); }
.photo {
    margin-top: 20px;
    padding-left: 20px;
}
.photo:after, .photo:before {
    display: table;
    content: "";
}
.photo:after {
    clear: both;
}
.photo figure {
    display: block;
    float: left;
    width: 210px;
    max-height: 85px;
    margin: 0 6px 6px 0;
    border-radius: 4px;
    overflow: hidden;
}
.photo img {
    width: 100%;
    height: 100%;
    transition: transform .15s ease-in;
    will-change: transform;
    cursor: zoom-in;
}
.weixin {
    position: relative;
}
.weixin-code {
    background-color: #fff;
    display: none;
    position: absolute;
    top: -186px;
    width: 147px;
    border-radius: 12px;
}
.weixin-code .qr_code{
    display: block;
    text-align: center;
    padding-top: 10px;
}
.weixin-code .text {
    display: block;
    font-size: 14px;
    font-weight: 400;
    text-align: center;
    margin-bottom: 20px !important;
    color: #b2b2b2;
}
